index.js.flow 282 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194
  1. // @flow
  2. export type StandardLonghandProperties<TLength = string | 0> = {
  3. accentColor?: AccentColorProperty,
  4. alignContent?: AlignContentProperty,
  5. alignItems?: AlignItemsProperty,
  6. alignSelf?: AlignSelfProperty,
  7. alignTracks?: AlignTracksProperty,
  8. animationComposition?: GlobalsString,
  9. animationDelay?: GlobalsString,
  10. animationDirection?: AnimationDirectionProperty,
  11. animationDuration?: GlobalsString,
  12. animationFillMode?: AnimationFillModeProperty,
  13. animationIterationCount?: AnimationIterationCountProperty,
  14. animationName?: AnimationNameProperty,
  15. animationPlayState?: AnimationPlayStateProperty,
  16. animationTimeline?: AnimationTimelineProperty,
  17. animationTimingFunction?: AnimationTimingFunctionProperty,
  18. appearance?: AppearanceProperty,
  19. aspectRatio?: AspectRatioProperty,
  20. backdropFilter?: BackdropFilterProperty,
  21. backfaceVisibility?: BackfaceVisibilityProperty,
  22. backgroundAttachment?: BackgroundAttachmentProperty,
  23. backgroundBlendMode?: BackgroundBlendModeProperty,
  24. backgroundClip?: BackgroundClipProperty,
  25. backgroundColor?: BackgroundColorProperty,
  26. backgroundImage?: BackgroundImageProperty,
  27. backgroundOrigin?: BackgroundOriginProperty,
  28. backgroundPositionX?: BackgroundPositionXProperty<TLength>,
  29. backgroundPositionY?: BackgroundPositionYProperty<TLength>,
  30. backgroundRepeat?: BackgroundRepeatProperty,
  31. backgroundSize?: BackgroundSizeProperty<TLength>,
  32. blockOverflow?: BlockOverflowProperty,
  33. blockSize?: BlockSizeProperty<TLength>,
  34. borderBlockColor?: BorderBlockColorProperty,
  35. borderBlockEndColor?: BorderBlockEndColorProperty,
  36. borderBlockEndStyle?: BorderBlockEndStyleProperty,
  37. borderBlockEndWidth?: BorderBlockEndWidthProperty<TLength>,
  38. borderBlockStartColor?: BorderBlockStartColorProperty,
  39. borderBlockStartStyle?: BorderBlockStartStyleProperty,
  40. borderBlockStartWidth?: BorderBlockStartWidthProperty<TLength>,
  41. borderBlockStyle?: BorderBlockStyleProperty,
  42. borderBlockWidth?: BorderBlockWidthProperty<TLength>,
  43. borderBottomColor?: BorderBottomColorProperty,
  44. borderBottomLeftRadius?: BorderBottomLeftRadiusProperty<TLength>,
  45. borderBottomRightRadius?: BorderBottomRightRadiusProperty<TLength>,
  46. borderBottomStyle?: BorderBottomStyleProperty,
  47. borderBottomWidth?: BorderBottomWidthProperty<TLength>,
  48. borderCollapse?: BorderCollapseProperty,
  49. borderEndEndRadius?: BorderEndEndRadiusProperty<TLength>,
  50. borderEndStartRadius?: BorderEndStartRadiusProperty<TLength>,
  51. borderImageOutset?: BorderImageOutsetProperty<TLength>,
  52. borderImageRepeat?: BorderImageRepeatProperty,
  53. borderImageSlice?: BorderImageSliceProperty,
  54. borderImageSource?: BorderImageSourceProperty,
  55. borderImageWidth?: BorderImageWidthProperty<TLength>,
  56. borderInlineColor?: BorderInlineColorProperty,
  57. borderInlineEndColor?: BorderInlineEndColorProperty,
  58. borderInlineEndStyle?: BorderInlineEndStyleProperty,
  59. borderInlineEndWidth?: BorderInlineEndWidthProperty<TLength>,
  60. borderInlineStartColor?: BorderInlineStartColorProperty,
  61. borderInlineStartStyle?: BorderInlineStartStyleProperty,
  62. borderInlineStartWidth?: BorderInlineStartWidthProperty<TLength>,
  63. borderInlineStyle?: BorderInlineStyleProperty,
  64. borderInlineWidth?: BorderInlineWidthProperty<TLength>,
  65. borderLeftColor?: BorderLeftColorProperty,
  66. borderLeftStyle?: BorderLeftStyleProperty,
  67. borderLeftWidth?: BorderLeftWidthProperty<TLength>,
  68. borderRightColor?: BorderRightColorProperty,
  69. borderRightStyle?: BorderRightStyleProperty,
  70. borderRightWidth?: BorderRightWidthProperty<TLength>,
  71. borderSpacing?: BorderSpacingProperty<TLength>,
  72. borderStartEndRadius?: BorderStartEndRadiusProperty<TLength>,
  73. borderStartStartRadius?: BorderStartStartRadiusProperty<TLength>,
  74. borderTopColor?: BorderTopColorProperty,
  75. borderTopLeftRadius?: BorderTopLeftRadiusProperty<TLength>,
  76. borderTopRightRadius?: BorderTopRightRadiusProperty<TLength>,
  77. borderTopStyle?: BorderTopStyleProperty,
  78. borderTopWidth?: BorderTopWidthProperty<TLength>,
  79. bottom?: BottomProperty<TLength>,
  80. boxDecorationBreak?: BoxDecorationBreakProperty,
  81. boxShadow?: BoxShadowProperty,
  82. boxSizing?: BoxSizingProperty,
  83. breakAfter?: BreakAfterProperty,
  84. breakBefore?: BreakBeforeProperty,
  85. breakInside?: BreakInsideProperty,
  86. captionSide?: CaptionSideProperty,
  87. caretColor?: CaretColorProperty,
  88. clear?: ClearProperty,
  89. clipPath?: ClipPathProperty,
  90. color?: ColorProperty,
  91. colorAdjust?: PrintColorAdjustProperty,
  92. colorScheme?: ColorSchemeProperty,
  93. columnCount?: ColumnCountProperty,
  94. columnFill?: ColumnFillProperty,
  95. columnGap?: ColumnGapProperty<TLength>,
  96. columnRuleColor?: ColumnRuleColorProperty,
  97. columnRuleStyle?: ColumnRuleStyleProperty,
  98. columnRuleWidth?: ColumnRuleWidthProperty<TLength>,
  99. columnSpan?: ColumnSpanProperty,
  100. columnWidth?: ColumnWidthProperty<TLength>,
  101. contain?: ContainProperty,
  102. content?: ContentProperty,
  103. contentVisibility?: ContentVisibilityProperty,
  104. counterIncrement?: CounterIncrementProperty,
  105. counterReset?: CounterResetProperty,
  106. counterSet?: CounterSetProperty,
  107. cursor?: CursorProperty,
  108. direction?: DirectionProperty,
  109. display?: DisplayProperty,
  110. emptyCells?: EmptyCellsProperty,
  111. filter?: FilterProperty,
  112. flexBasis?: FlexBasisProperty<TLength>,
  113. flexDirection?: FlexDirectionProperty,
  114. flexGrow?: GlobalsNumber,
  115. flexShrink?: GlobalsNumber,
  116. flexWrap?: FlexWrapProperty,
  117. float?: FloatProperty,
  118. fontFamily?: FontFamilyProperty,
  119. fontFeatureSettings?: FontFeatureSettingsProperty,
  120. fontKerning?: FontKerningProperty,
  121. fontLanguageOverride?: FontLanguageOverrideProperty,
  122. fontOpticalSizing?: FontOpticalSizingProperty,
  123. fontSize?: FontSizeProperty<TLength>,
  124. fontSizeAdjust?: FontSizeAdjustProperty,
  125. fontSmooth?: FontSmoothProperty<TLength>,
  126. fontStretch?: FontStretchProperty,
  127. fontStyle?: FontStyleProperty,
  128. fontSynthesis?: FontSynthesisProperty,
  129. fontVariant?: FontVariantProperty,
  130. fontVariantAlternates?: FontVariantAlternatesProperty,
  131. fontVariantCaps?: FontVariantCapsProperty,
  132. fontVariantEastAsian?: FontVariantEastAsianProperty,
  133. fontVariantLigatures?: FontVariantLigaturesProperty,
  134. fontVariantNumeric?: FontVariantNumericProperty,
  135. fontVariantPosition?: FontVariantPositionProperty,
  136. fontVariationSettings?: FontVariationSettingsProperty,
  137. fontWeight?: FontWeightProperty,
  138. forcedColorAdjust?: ForcedColorAdjustProperty,
  139. gridAutoColumns?: GridAutoColumnsProperty<TLength>,
  140. gridAutoFlow?: GridAutoFlowProperty,
  141. gridAutoRows?: GridAutoRowsProperty<TLength>,
  142. gridColumnEnd?: GridColumnEndProperty,
  143. gridColumnStart?: GridColumnStartProperty,
  144. gridRowEnd?: GridRowEndProperty,
  145. gridRowStart?: GridRowStartProperty,
  146. gridTemplateAreas?: GridTemplateAreasProperty,
  147. gridTemplateColumns?: GridTemplateColumnsProperty<TLength>,
  148. gridTemplateRows?: GridTemplateRowsProperty<TLength>,
  149. hangingPunctuation?: HangingPunctuationProperty,
  150. height?: HeightProperty<TLength>,
  151. hyphenateCharacter?: HyphenateCharacterProperty,
  152. hyphens?: HyphensProperty,
  153. imageOrientation?: ImageOrientationProperty,
  154. imageRendering?: ImageRenderingProperty,
  155. imageResolution?: ImageResolutionProperty,
  156. initialLetter?: InitialLetterProperty,
  157. inlineSize?: InlineSizeProperty<TLength>,
  158. inputSecurity?: InputSecurityProperty,
  159. inset?: InsetProperty<TLength>,
  160. insetBlock?: InsetBlockProperty<TLength>,
  161. insetBlockEnd?: InsetBlockEndProperty<TLength>,
  162. insetBlockStart?: InsetBlockStartProperty<TLength>,
  163. insetInline?: InsetInlineProperty<TLength>,
  164. insetInlineEnd?: InsetInlineEndProperty<TLength>,
  165. insetInlineStart?: InsetInlineStartProperty<TLength>,
  166. isolation?: IsolationProperty,
  167. justifyContent?: JustifyContentProperty,
  168. justifyItems?: JustifyItemsProperty,
  169. justifySelf?: JustifySelfProperty,
  170. justifyTracks?: JustifyTracksProperty,
  171. left?: LeftProperty<TLength>,
  172. letterSpacing?: LetterSpacingProperty<TLength>,
  173. lineBreak?: LineBreakProperty,
  174. lineHeight?: LineHeightProperty<TLength>,
  175. lineHeightStep?: LineHeightStepProperty<TLength>,
  176. listStyleImage?: ListStyleImageProperty,
  177. listStylePosition?: ListStylePositionProperty,
  178. listStyleType?: ListStyleTypeProperty,
  179. marginBlock?: MarginBlockProperty<TLength>,
  180. marginBlockEnd?: MarginBlockEndProperty<TLength>,
  181. marginBlockStart?: MarginBlockStartProperty<TLength>,
  182. marginBottom?: MarginBottomProperty<TLength>,
  183. marginInline?: MarginInlineProperty<TLength>,
  184. marginInlineEnd?: MarginInlineEndProperty<TLength>,
  185. marginInlineStart?: MarginInlineStartProperty<TLength>,
  186. marginLeft?: MarginLeftProperty<TLength>,
  187. marginRight?: MarginRightProperty<TLength>,
  188. marginTop?: MarginTopProperty<TLength>,
  189. maskBorderMode?: MaskBorderModeProperty,
  190. maskBorderOutset?: MaskBorderOutsetProperty<TLength>,
  191. maskBorderRepeat?: MaskBorderRepeatProperty,
  192. maskBorderSlice?: MaskBorderSliceProperty,
  193. maskBorderSource?: MaskBorderSourceProperty,
  194. maskBorderWidth?: MaskBorderWidthProperty<TLength>,
  195. maskClip?: MaskClipProperty,
  196. maskComposite?: MaskCompositeProperty,
  197. maskImage?: MaskImageProperty,
  198. maskMode?: MaskModeProperty,
  199. maskOrigin?: MaskOriginProperty,
  200. maskPosition?: MaskPositionProperty<TLength>,
  201. maskRepeat?: MaskRepeatProperty,
  202. maskSize?: MaskSizeProperty<TLength>,
  203. maskType?: MaskTypeProperty,
  204. mathDepth?: MathDepthProperty,
  205. mathShift?: MathShiftProperty,
  206. mathStyle?: MathStyleProperty,
  207. maxBlockSize?: MaxBlockSizeProperty<TLength>,
  208. maxHeight?: MaxHeightProperty<TLength>,
  209. maxInlineSize?: MaxInlineSizeProperty<TLength>,
  210. maxLines?: MaxLinesProperty,
  211. maxWidth?: MaxWidthProperty<TLength>,
  212. minBlockSize?: MinBlockSizeProperty<TLength>,
  213. minHeight?: MinHeightProperty<TLength>,
  214. minInlineSize?: MinInlineSizeProperty<TLength>,
  215. minWidth?: MinWidthProperty<TLength>,
  216. mixBlendMode?: MixBlendModeProperty,
  217. motionDistance?: OffsetDistanceProperty<TLength>,
  218. motionPath?: OffsetPathProperty,
  219. motionRotation?: OffsetRotateProperty,
  220. objectFit?: ObjectFitProperty,
  221. objectPosition?: ObjectPositionProperty<TLength>,
  222. offsetAnchor?: OffsetAnchorProperty<TLength>,
  223. offsetDistance?: OffsetDistanceProperty<TLength>,
  224. offsetPath?: OffsetPathProperty,
  225. offsetRotate?: OffsetRotateProperty,
  226. offsetRotation?: OffsetRotateProperty,
  227. opacity?: OpacityProperty,
  228. order?: GlobalsNumber,
  229. orphans?: GlobalsNumber,
  230. outlineColor?: OutlineColorProperty,
  231. outlineOffset?: OutlineOffsetProperty<TLength>,
  232. outlineStyle?: OutlineStyleProperty,
  233. outlineWidth?: OutlineWidthProperty<TLength>,
  234. overflowAnchor?: OverflowAnchorProperty,
  235. overflowBlock?: OverflowBlockProperty,
  236. overflowClipBox?: OverflowClipBoxProperty,
  237. overflowClipMargin?: OverflowClipMarginProperty<TLength>,
  238. overflowInline?: OverflowInlineProperty,
  239. overflowWrap?: OverflowWrapProperty,
  240. overflowX?: OverflowXProperty,
  241. overflowY?: OverflowYProperty,
  242. overscrollBehaviorBlock?: OverscrollBehaviorBlockProperty,
  243. overscrollBehaviorInline?: OverscrollBehaviorInlineProperty,
  244. overscrollBehaviorX?: OverscrollBehaviorXProperty,
  245. overscrollBehaviorY?: OverscrollBehaviorYProperty,
  246. paddingBlock?: PaddingBlockProperty<TLength>,
  247. paddingBlockEnd?: PaddingBlockEndProperty<TLength>,
  248. paddingBlockStart?: PaddingBlockStartProperty<TLength>,
  249. paddingBottom?: PaddingBottomProperty<TLength>,
  250. paddingInline?: PaddingInlineProperty<TLength>,
  251. paddingInlineEnd?: PaddingInlineEndProperty<TLength>,
  252. paddingInlineStart?: PaddingInlineStartProperty<TLength>,
  253. paddingLeft?: PaddingLeftProperty<TLength>,
  254. paddingRight?: PaddingRightProperty<TLength>,
  255. paddingTop?: PaddingTopProperty<TLength>,
  256. pageBreakAfter?: PageBreakAfterProperty,
  257. pageBreakBefore?: PageBreakBeforeProperty,
  258. pageBreakInside?: PageBreakInsideProperty,
  259. paintOrder?: PaintOrderProperty,
  260. perspective?: PerspectiveProperty<TLength>,
  261. perspectiveOrigin?: PerspectiveOriginProperty<TLength>,
  262. placeContent?: PlaceContentProperty,
  263. pointerEvents?: PointerEventsProperty,
  264. position?: PositionProperty,
  265. printColorAdjust?: PrintColorAdjustProperty,
  266. quotes?: QuotesProperty,
  267. resize?: ResizeProperty,
  268. right?: RightProperty<TLength>,
  269. rotate?: RotateProperty,
  270. rowGap?: RowGapProperty<TLength>,
  271. rubyAlign?: RubyAlignProperty,
  272. rubyMerge?: RubyMergeProperty,
  273. rubyPosition?: RubyPositionProperty,
  274. scale?: ScaleProperty,
  275. scrollBehavior?: ScrollBehaviorProperty,
  276. scrollMargin?: ScrollMarginProperty<TLength>,
  277. scrollMarginBlock?: ScrollMarginBlockProperty<TLength>,
  278. scrollMarginBlockEnd?: ScrollMarginBlockEndProperty<TLength>,
  279. scrollMarginBlockStart?: ScrollMarginBlockStartProperty<TLength>,
  280. scrollMarginBottom?: ScrollMarginBottomProperty<TLength>,
  281. scrollMarginInline?: ScrollMarginInlineProperty<TLength>,
  282. scrollMarginInlineEnd?: ScrollMarginInlineEndProperty<TLength>,
  283. scrollMarginInlineStart?: ScrollMarginInlineStartProperty<TLength>,
  284. scrollMarginLeft?: ScrollMarginLeftProperty<TLength>,
  285. scrollMarginRight?: ScrollMarginRightProperty<TLength>,
  286. scrollMarginTop?: ScrollMarginTopProperty<TLength>,
  287. scrollPadding?: ScrollPaddingProperty<TLength>,
  288. scrollPaddingBlock?: ScrollPaddingBlockProperty<TLength>,
  289. scrollPaddingBlockEnd?: ScrollPaddingBlockEndProperty<TLength>,
  290. scrollPaddingBlockStart?: ScrollPaddingBlockStartProperty<TLength>,
  291. scrollPaddingBottom?: ScrollPaddingBottomProperty<TLength>,
  292. scrollPaddingInline?: ScrollPaddingInlineProperty<TLength>,
  293. scrollPaddingInlineEnd?: ScrollPaddingInlineEndProperty<TLength>,
  294. scrollPaddingInlineStart?: ScrollPaddingInlineStartProperty<TLength>,
  295. scrollPaddingLeft?: ScrollPaddingLeftProperty<TLength>,
  296. scrollPaddingRight?: ScrollPaddingRightProperty<TLength>,
  297. scrollPaddingTop?: ScrollPaddingTopProperty<TLength>,
  298. scrollSnapAlign?: ScrollSnapAlignProperty,
  299. scrollSnapMargin?: ScrollMarginProperty<TLength>,
  300. scrollSnapMarginBottom?: ScrollMarginBottomProperty<TLength>,
  301. scrollSnapMarginLeft?: ScrollMarginLeftProperty<TLength>,
  302. scrollSnapMarginRight?: ScrollMarginRightProperty<TLength>,
  303. scrollSnapMarginTop?: ScrollMarginTopProperty<TLength>,
  304. scrollSnapStop?: ScrollSnapStopProperty,
  305. scrollSnapType?: ScrollSnapTypeProperty,
  306. scrollbarColor?: ScrollbarColorProperty,
  307. scrollbarGutter?: ScrollbarGutterProperty,
  308. scrollbarWidth?: ScrollbarWidthProperty,
  309. shapeImageThreshold?: ShapeImageThresholdProperty,
  310. shapeMargin?: ShapeMarginProperty<TLength>,
  311. shapeOutside?: ShapeOutsideProperty,
  312. tabSize?: TabSizeProperty<TLength>,
  313. tableLayout?: TableLayoutProperty,
  314. textAlign?: TextAlignProperty,
  315. textAlignLast?: TextAlignLastProperty,
  316. textCombineUpright?: TextCombineUprightProperty,
  317. textDecorationColor?: TextDecorationColorProperty,
  318. textDecorationLine?: TextDecorationLineProperty,
  319. textDecorationSkip?: TextDecorationSkipProperty,
  320. textDecorationSkipInk?: TextDecorationSkipInkProperty,
  321. textDecorationStyle?: TextDecorationStyleProperty,
  322. textDecorationThickness?: TextDecorationThicknessProperty<TLength>,
  323. textEmphasisColor?: TextEmphasisColorProperty,
  324. textEmphasisPosition?: GlobalsString,
  325. textEmphasisStyle?: TextEmphasisStyleProperty,
  326. textIndent?: TextIndentProperty<TLength>,
  327. textJustify?: TextJustifyProperty,
  328. textOrientation?: TextOrientationProperty,
  329. textOverflow?: TextOverflowProperty,
  330. textRendering?: TextRenderingProperty,
  331. textShadow?: TextShadowProperty,
  332. textSizeAdjust?: TextSizeAdjustProperty,
  333. textTransform?: TextTransformProperty,
  334. textUnderlineOffset?: TextUnderlineOffsetProperty<TLength>,
  335. textUnderlinePosition?: TextUnderlinePositionProperty,
  336. top?: TopProperty<TLength>,
  337. touchAction?: TouchActionProperty,
  338. transform?: TransformProperty,
  339. transformBox?: TransformBoxProperty,
  340. transformOrigin?: TransformOriginProperty<TLength>,
  341. transformStyle?: TransformStyleProperty,
  342. transitionDelay?: GlobalsString,
  343. transitionDuration?: GlobalsString,
  344. transitionProperty?: TransitionPropertyProperty,
  345. transitionTimingFunction?: TransitionTimingFunctionProperty,
  346. translate?: TranslateProperty<TLength>,
  347. unicodeBidi?: UnicodeBidiProperty,
  348. userSelect?: UserSelectProperty,
  349. verticalAlign?: VerticalAlignProperty<TLength>,
  350. visibility?: VisibilityProperty,
  351. whiteSpace?: WhiteSpaceProperty,
  352. widows?: GlobalsNumber,
  353. width?: WidthProperty<TLength>,
  354. willChange?: WillChangeProperty,
  355. wordBreak?: WordBreakProperty,
  356. wordSpacing?: WordSpacingProperty<TLength>,
  357. wordWrap?: WordWrapProperty,
  358. writingMode?: WritingModeProperty,
  359. zIndex?: ZIndexProperty,
  360. zoom?: ZoomProperty,
  361. };
  362. export type StandardShorthandProperties<TLength = string | 0> = {
  363. all?: Globals,
  364. animation?: AnimationProperty,
  365. background?: BackgroundProperty<TLength>,
  366. backgroundPosition?: BackgroundPositionProperty<TLength>,
  367. border?: BorderProperty<TLength>,
  368. borderBlock?: BorderBlockProperty<TLength>,
  369. borderBlockEnd?: BorderBlockEndProperty<TLength>,
  370. borderBlockStart?: BorderBlockStartProperty<TLength>,
  371. borderBottom?: BorderBottomProperty<TLength>,
  372. borderColor?: BorderColorProperty,
  373. borderImage?: BorderImageProperty,
  374. borderInline?: BorderInlineProperty<TLength>,
  375. borderInlineEnd?: BorderInlineEndProperty<TLength>,
  376. borderInlineStart?: BorderInlineStartProperty<TLength>,
  377. borderLeft?: BorderLeftProperty<TLength>,
  378. borderRadius?: BorderRadiusProperty<TLength>,
  379. borderRight?: BorderRightProperty<TLength>,
  380. borderStyle?: BorderStyleProperty,
  381. borderTop?: BorderTopProperty<TLength>,
  382. borderWidth?: BorderWidthProperty<TLength>,
  383. columnRule?: ColumnRuleProperty<TLength>,
  384. columns?: ColumnsProperty<TLength>,
  385. flex?: FlexProperty<TLength>,
  386. flexFlow?: FlexFlowProperty,
  387. font?: FontProperty,
  388. gap?: GapProperty<TLength>,
  389. grid?: GridProperty,
  390. gridArea?: GridAreaProperty,
  391. gridColumn?: GridColumnProperty,
  392. gridRow?: GridRowProperty,
  393. gridTemplate?: GridTemplateProperty,
  394. lineClamp?: LineClampProperty,
  395. listStyle?: ListStyleProperty,
  396. margin?: MarginProperty<TLength>,
  397. mask?: MaskProperty<TLength>,
  398. maskBorder?: MaskBorderProperty,
  399. motion?: OffsetProperty<TLength>,
  400. offset?: OffsetProperty<TLength>,
  401. outline?: OutlineProperty<TLength>,
  402. overflow?: OverflowProperty,
  403. overscrollBehavior?: OverscrollBehaviorProperty,
  404. padding?: PaddingProperty<TLength>,
  405. placeItems?: PlaceItemsProperty,
  406. placeSelf?: PlaceSelfProperty,
  407. textDecoration?: TextDecorationProperty<TLength>,
  408. textEmphasis?: TextEmphasisProperty,
  409. transition?: TransitionProperty,
  410. };
  411. export type StandardProperties<TLength = string | 0> = StandardLonghandProperties<TLength> & StandardShorthandProperties<TLength>;
  412. export type VendorLonghandProperties<TLength = string | 0> = {
  413. MozAnimationDelay?: GlobalsString,
  414. MozAnimationDirection?: AnimationDirectionProperty,
  415. MozAnimationDuration?: GlobalsString,
  416. MozAnimationFillMode?: AnimationFillModeProperty,
  417. MozAnimationIterationCount?: AnimationIterationCountProperty,
  418. MozAnimationName?: AnimationNameProperty,
  419. MozAnimationPlayState?: AnimationPlayStateProperty,
  420. MozAnimationTimingFunction?: AnimationTimingFunctionProperty,
  421. MozAppearance?: MozAppearanceProperty,
  422. MozBackfaceVisibility?: BackfaceVisibilityProperty,
  423. MozBorderBottomColors?: MozBorderBottomColorsProperty,
  424. MozBorderEndColor?: BorderInlineEndColorProperty,
  425. MozBorderEndStyle?: BorderInlineEndStyleProperty,
  426. MozBorderEndWidth?: BorderInlineEndWidthProperty<TLength>,
  427. MozBorderLeftColors?: MozBorderLeftColorsProperty,
  428. MozBorderRightColors?: MozBorderRightColorsProperty,
  429. MozBorderStartColor?: BorderInlineStartColorProperty,
  430. MozBorderStartStyle?: BorderInlineStartStyleProperty,
  431. MozBorderTopColors?: MozBorderTopColorsProperty,
  432. MozBoxSizing?: BoxSizingProperty,
  433. MozColumnCount?: ColumnCountProperty,
  434. MozColumnFill?: ColumnFillProperty,
  435. MozColumnRuleColor?: ColumnRuleColorProperty,
  436. MozColumnRuleStyle?: ColumnRuleStyleProperty,
  437. MozColumnRuleWidth?: ColumnRuleWidthProperty<TLength>,
  438. MozColumnWidth?: ColumnWidthProperty<TLength>,
  439. MozContextProperties?: MozContextPropertiesProperty,
  440. MozFontFeatureSettings?: FontFeatureSettingsProperty,
  441. MozFontLanguageOverride?: FontLanguageOverrideProperty,
  442. MozHyphens?: HyphensProperty,
  443. MozImageRegion?: MozImageRegionProperty,
  444. MozMarginEnd?: MarginInlineEndProperty<TLength>,
  445. MozMarginStart?: MarginInlineStartProperty<TLength>,
  446. MozOrient?: MozOrientProperty,
  447. MozOsxFontSmoothing?: FontSmoothProperty<TLength>,
  448. MozPaddingEnd?: PaddingInlineEndProperty<TLength>,
  449. MozPaddingStart?: PaddingInlineStartProperty<TLength>,
  450. MozPerspective?: PerspectiveProperty<TLength>,
  451. MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength>,
  452. MozStackSizing?: MozStackSizingProperty,
  453. MozTabSize?: TabSizeProperty<TLength>,
  454. MozTextBlink?: MozTextBlinkProperty,
  455. MozTextSizeAdjust?: TextSizeAdjustProperty,
  456. MozTransformOrigin?: TransformOriginProperty<TLength>,
  457. MozTransformStyle?: TransformStyleProperty,
  458. MozTransitionDelay?: GlobalsString,
  459. MozTransitionDuration?: GlobalsString,
  460. MozTransitionProperty?: TransitionPropertyProperty,
  461. MozTransitionTimingFunction?: TransitionTimingFunctionProperty,
  462. MozUserFocus?: MozUserFocusProperty,
  463. MozUserModify?: MozUserModifyProperty,
  464. MozUserSelect?: UserSelectProperty,
  465. MozWindowDragging?: MozWindowDraggingProperty,
  466. MozWindowShadow?: MozWindowShadowProperty,
  467. msAccelerator?: MsAcceleratorProperty,
  468. msBlockProgression?: MsBlockProgressionProperty,
  469. msContentZoomChaining?: MsContentZoomChainingProperty,
  470. msContentZoomLimitMax?: GlobalsString,
  471. msContentZoomLimitMin?: GlobalsString,
  472. msContentZoomSnapPoints?: GlobalsString,
  473. msContentZoomSnapType?: MsContentZoomSnapTypeProperty,
  474. msContentZooming?: MsContentZoomingProperty,
  475. msFilter?: GlobalsString,
  476. msFlexDirection?: FlexDirectionProperty,
  477. msFlexPositive?: GlobalsNumber,
  478. msFlowFrom?: MsFlowFromProperty,
  479. msFlowInto?: MsFlowIntoProperty,
  480. msGridColumns?: MsGridColumnsProperty<TLength>,
  481. msGridRows?: MsGridRowsProperty<TLength>,
  482. msHighContrastAdjust?: MsHighContrastAdjustProperty,
  483. msHyphenateLimitChars?: MsHyphenateLimitCharsProperty,
  484. msHyphenateLimitLines?: MsHyphenateLimitLinesProperty,
  485. msHyphenateLimitZone?: MsHyphenateLimitZoneProperty<TLength>,
  486. msHyphens?: HyphensProperty,
  487. msImeAlign?: MsImeAlignProperty,
  488. msLineBreak?: LineBreakProperty,
  489. msOrder?: GlobalsNumber,
  490. msOverflowStyle?: MsOverflowStyleProperty,
  491. msOverflowX?: OverflowXProperty,
  492. msOverflowY?: OverflowYProperty,
  493. msScrollChaining?: MsScrollChainingProperty,
  494. msScrollLimitXMax?: MsScrollLimitXMaxProperty<TLength>,
  495. msScrollLimitXMin?: MsScrollLimitXMinProperty<TLength>,
  496. msScrollLimitYMax?: MsScrollLimitYMaxProperty<TLength>,
  497. msScrollLimitYMin?: MsScrollLimitYMinProperty<TLength>,
  498. msScrollRails?: MsScrollRailsProperty,
  499. msScrollSnapPointsX?: GlobalsString,
  500. msScrollSnapPointsY?: GlobalsString,
  501. msScrollSnapType?: MsScrollSnapTypeProperty,
  502. msScrollTranslation?: MsScrollTranslationProperty,
  503. msScrollbar3dlightColor?: MsScrollbar3dlightColorProperty,
  504. msScrollbarArrowColor?: MsScrollbarArrowColorProperty,
  505. msScrollbarBaseColor?: MsScrollbarBaseColorProperty,
  506. msScrollbarDarkshadowColor?: MsScrollbarDarkshadowColorProperty,
  507. msScrollbarFaceColor?: MsScrollbarFaceColorProperty,
  508. msScrollbarHighlightColor?: MsScrollbarHighlightColorProperty,
  509. msScrollbarShadowColor?: MsScrollbarShadowColorProperty,
  510. msScrollbarTrackColor?: MsScrollbarTrackColorProperty,
  511. msTextAutospace?: MsTextAutospaceProperty,
  512. msTextCombineHorizontal?: TextCombineUprightProperty,
  513. msTextOverflow?: TextOverflowProperty,
  514. msTouchAction?: TouchActionProperty,
  515. msTouchSelect?: MsTouchSelectProperty,
  516. msTransform?: TransformProperty,
  517. msTransformOrigin?: TransformOriginProperty<TLength>,
  518. msTransitionDelay?: GlobalsString,
  519. msTransitionDuration?: GlobalsString,
  520. msTransitionProperty?: TransitionPropertyProperty,
  521. msTransitionTimingFunction?: TransitionTimingFunctionProperty,
  522. msUserSelect?: MsUserSelectProperty,
  523. msWordBreak?: WordBreakProperty,
  524. msWrapFlow?: MsWrapFlowProperty,
  525. msWrapMargin?: MsWrapMarginProperty<TLength>,
  526. msWrapThrough?: MsWrapThroughProperty,
  527. msWritingMode?: WritingModeProperty,
  528. WebkitAlignContent?: AlignContentProperty,
  529. WebkitAlignItems?: AlignItemsProperty,
  530. WebkitAlignSelf?: AlignSelfProperty,
  531. WebkitAnimationDelay?: GlobalsString,
  532. WebkitAnimationDirection?: AnimationDirectionProperty,
  533. WebkitAnimationDuration?: GlobalsString,
  534. WebkitAnimationFillMode?: AnimationFillModeProperty,
  535. WebkitAnimationIterationCount?: AnimationIterationCountProperty,
  536. WebkitAnimationName?: AnimationNameProperty,
  537. WebkitAnimationPlayState?: AnimationPlayStateProperty,
  538. WebkitAnimationTimingFunction?: AnimationTimingFunctionProperty,
  539. WebkitAppearance?: WebkitAppearanceProperty,
  540. WebkitBackdropFilter?: BackdropFilterProperty,
  541. WebkitBackfaceVisibility?: BackfaceVisibilityProperty,
  542. WebkitBackgroundClip?: BackgroundClipProperty,
  543. WebkitBackgroundOrigin?: BackgroundOriginProperty,
  544. WebkitBackgroundSize?: BackgroundSizeProperty<TLength>,
  545. WebkitBorderBeforeColor?: WebkitBorderBeforeColorProperty,
  546. WebkitBorderBeforeStyle?: WebkitBorderBeforeStyleProperty,
  547. WebkitBorderBeforeWidth?: WebkitBorderBeforeWidthProperty<TLength>,
  548. WebkitBorderBottomLeftRadius?: BorderBottomLeftRadiusProperty<TLength>,
  549. WebkitBorderBottomRightRadius?: BorderBottomRightRadiusProperty<TLength>,
  550. WebkitBorderImageSlice?: BorderImageSliceProperty,
  551. WebkitBorderTopLeftRadius?: BorderTopLeftRadiusProperty<TLength>,
  552. WebkitBorderTopRightRadius?: BorderTopRightRadiusProperty<TLength>,
  553. WebkitBoxDecorationBreak?: BoxDecorationBreakProperty,
  554. WebkitBoxReflect?: WebkitBoxReflectProperty<TLength>,
  555. WebkitBoxShadow?: BoxShadowProperty,
  556. WebkitBoxSizing?: BoxSizingProperty,
  557. WebkitClipPath?: ClipPathProperty,
  558. WebkitColumnCount?: ColumnCountProperty,
  559. WebkitColumnFill?: ColumnFillProperty,
  560. WebkitColumnRuleColor?: ColumnRuleColorProperty,
  561. WebkitColumnRuleStyle?: ColumnRuleStyleProperty,
  562. WebkitColumnRuleWidth?: ColumnRuleWidthProperty<TLength>,
  563. WebkitColumnSpan?: ColumnSpanProperty,
  564. WebkitColumnWidth?: ColumnWidthProperty<TLength>,
  565. WebkitFilter?: FilterProperty,
  566. WebkitFlexBasis?: FlexBasisProperty<TLength>,
  567. WebkitFlexDirection?: FlexDirectionProperty,
  568. WebkitFlexGrow?: GlobalsNumber,
  569. WebkitFlexShrink?: GlobalsNumber,
  570. WebkitFlexWrap?: FlexWrapProperty,
  571. WebkitFontFeatureSettings?: FontFeatureSettingsProperty,
  572. WebkitFontKerning?: FontKerningProperty,
  573. WebkitFontSmoothing?: FontSmoothProperty<TLength>,
  574. WebkitFontVariantLigatures?: FontVariantLigaturesProperty,
  575. WebkitHyphenateCharacter?: HyphenateCharacterProperty,
  576. WebkitHyphens?: HyphensProperty,
  577. WebkitInitialLetter?: InitialLetterProperty,
  578. WebkitJustifyContent?: JustifyContentProperty,
  579. WebkitLineBreak?: LineBreakProperty,
  580. WebkitLineClamp?: WebkitLineClampProperty,
  581. WebkitMarginEnd?: MarginInlineEndProperty<TLength>,
  582. WebkitMarginStart?: MarginInlineStartProperty<TLength>,
  583. WebkitMaskAttachment?: WebkitMaskAttachmentProperty,
  584. WebkitMaskBoxImageOutset?: MaskBorderOutsetProperty<TLength>,
  585. WebkitMaskBoxImageRepeat?: MaskBorderRepeatProperty,
  586. WebkitMaskBoxImageSlice?: MaskBorderSliceProperty,
  587. WebkitMaskBoxImageSource?: MaskBorderSourceProperty,
  588. WebkitMaskBoxImageWidth?: MaskBorderWidthProperty<TLength>,
  589. WebkitMaskClip?: WebkitMaskClipProperty,
  590. WebkitMaskComposite?: WebkitMaskCompositeProperty,
  591. WebkitMaskImage?: WebkitMaskImageProperty,
  592. WebkitMaskOrigin?: WebkitMaskOriginProperty,
  593. WebkitMaskPosition?: WebkitMaskPositionProperty<TLength>,
  594. WebkitMaskPositionX?: WebkitMaskPositionXProperty<TLength>,
  595. WebkitMaskPositionY?: WebkitMaskPositionYProperty<TLength>,
  596. WebkitMaskRepeat?: WebkitMaskRepeatProperty,
  597. WebkitMaskRepeatX?: WebkitMaskRepeatXProperty,
  598. WebkitMaskRepeatY?: WebkitMaskRepeatYProperty,
  599. WebkitMaskSize?: WebkitMaskSizeProperty<TLength>,
  600. WebkitMaxInlineSize?: MaxInlineSizeProperty<TLength>,
  601. WebkitOrder?: GlobalsNumber,
  602. WebkitOverflowScrolling?: WebkitOverflowScrollingProperty,
  603. WebkitPaddingEnd?: PaddingInlineEndProperty<TLength>,
  604. WebkitPaddingStart?: PaddingInlineStartProperty<TLength>,
  605. WebkitPerspective?: PerspectiveProperty<TLength>,
  606. WebkitPerspectiveOrigin?: PerspectiveOriginProperty<TLength>,
  607. WebkitPrintColorAdjust?: PrintColorAdjustProperty,
  608. WebkitRubyPosition?: RubyPositionProperty,
  609. WebkitScrollSnapType?: ScrollSnapTypeProperty,
  610. WebkitShapeMargin?: ShapeMarginProperty<TLength>,
  611. WebkitTapHighlightColor?: WebkitTapHighlightColorProperty,
  612. WebkitTextCombine?: TextCombineUprightProperty,
  613. WebkitTextDecorationColor?: TextDecorationColorProperty,
  614. WebkitTextDecorationLine?: TextDecorationLineProperty,
  615. WebkitTextDecorationSkip?: TextDecorationSkipProperty,
  616. WebkitTextDecorationStyle?: TextDecorationStyleProperty,
  617. WebkitTextEmphasisColor?: TextEmphasisColorProperty,
  618. WebkitTextEmphasisPosition?: GlobalsString,
  619. WebkitTextEmphasisStyle?: TextEmphasisStyleProperty,
  620. WebkitTextFillColor?: WebkitTextFillColorProperty,
  621. WebkitTextOrientation?: TextOrientationProperty,
  622. WebkitTextSizeAdjust?: TextSizeAdjustProperty,
  623. WebkitTextStrokeColor?: WebkitTextStrokeColorProperty,
  624. WebkitTextStrokeWidth?: WebkitTextStrokeWidthProperty<TLength>,
  625. WebkitTextUnderlinePosition?: TextUnderlinePositionProperty,
  626. WebkitTouchCallout?: WebkitTouchCalloutProperty,
  627. WebkitTransform?: TransformProperty,
  628. WebkitTransformOrigin?: TransformOriginProperty<TLength>,
  629. WebkitTransformStyle?: TransformStyleProperty,
  630. WebkitTransitionDelay?: GlobalsString,
  631. WebkitTransitionDuration?: GlobalsString,
  632. WebkitTransitionProperty?: TransitionPropertyProperty,
  633. WebkitTransitionTimingFunction?: TransitionTimingFunctionProperty,
  634. WebkitUserModify?: WebkitUserModifyProperty,
  635. WebkitUserSelect?: UserSelectProperty,
  636. WebkitWritingMode?: WritingModeProperty,
  637. };
  638. export type VendorShorthandProperties<TLength = string | 0> = {
  639. MozAnimation?: AnimationProperty,
  640. MozBorderImage?: BorderImageProperty,
  641. MozColumnRule?: ColumnRuleProperty<TLength>,
  642. MozColumns?: ColumnsProperty<TLength>,
  643. MozTransition?: TransitionProperty,
  644. msContentZoomLimit?: GlobalsString,
  645. msContentZoomSnap?: MsContentZoomSnapProperty,
  646. msFlex?: FlexProperty<TLength>,
  647. msScrollLimit?: GlobalsString,
  648. msScrollSnapX?: GlobalsString,
  649. msScrollSnapY?: GlobalsString,
  650. msTransition?: TransitionProperty,
  651. WebkitAnimation?: AnimationProperty,
  652. WebkitBorderBefore?: WebkitBorderBeforeProperty<TLength>,
  653. WebkitBorderImage?: BorderImageProperty,
  654. WebkitBorderRadius?: BorderRadiusProperty<TLength>,
  655. WebkitColumnRule?: ColumnRuleProperty<TLength>,
  656. WebkitColumns?: ColumnsProperty<TLength>,
  657. WebkitFlex?: FlexProperty<TLength>,
  658. WebkitFlexFlow?: FlexFlowProperty,
  659. WebkitMask?: WebkitMaskProperty<TLength>,
  660. WebkitMaskBoxImage?: MaskBorderProperty,
  661. WebkitTextEmphasis?: TextEmphasisProperty,
  662. WebkitTextStroke?: WebkitTextStrokeProperty<TLength>,
  663. WebkitTransition?: TransitionProperty,
  664. };
  665. export type VendorProperties<TLength = string | 0> = VendorLonghandProperties<TLength> & VendorShorthandProperties<TLength>;
  666. export type ObsoleteProperties<TLength = string | 0> = {
  667. azimuth?: AzimuthProperty,
  668. boxAlign?: BoxAlignProperty,
  669. boxDirection?: BoxDirectionProperty,
  670. boxFlex?: GlobalsNumber,
  671. boxFlexGroup?: GlobalsNumber,
  672. boxLines?: BoxLinesProperty,
  673. boxOrdinalGroup?: GlobalsNumber,
  674. boxOrient?: BoxOrientProperty,
  675. boxPack?: BoxPackProperty,
  676. clip?: ClipProperty,
  677. gridColumnGap?: GridColumnGapProperty<TLength>,
  678. gridGap?: GridGapProperty<TLength>,
  679. gridRowGap?: GridRowGapProperty<TLength>,
  680. imeMode?: ImeModeProperty,
  681. offsetBlock?: InsetBlockProperty<TLength>,
  682. offsetBlockEnd?: InsetBlockEndProperty<TLength>,
  683. offsetBlockStart?: InsetBlockStartProperty<TLength>,
  684. offsetInline?: InsetInlineProperty<TLength>,
  685. offsetInlineEnd?: InsetInlineEndProperty<TLength>,
  686. offsetInlineStart?: InsetInlineStartProperty<TLength>,
  687. scrollSnapCoordinate?: ScrollSnapCoordinateProperty<TLength>,
  688. scrollSnapDestination?: ScrollSnapDestinationProperty<TLength>,
  689. scrollSnapPointsX?: ScrollSnapPointsXProperty,
  690. scrollSnapPointsY?: ScrollSnapPointsYProperty,
  691. scrollSnapTypeX?: ScrollSnapTypeXProperty,
  692. scrollSnapTypeY?: ScrollSnapTypeYProperty,
  693. KhtmlBoxAlign?: BoxAlignProperty,
  694. KhtmlBoxDirection?: BoxDirectionProperty,
  695. KhtmlBoxFlex?: GlobalsNumber,
  696. KhtmlBoxFlexGroup?: GlobalsNumber,
  697. KhtmlBoxLines?: BoxLinesProperty,
  698. KhtmlBoxOrdinalGroup?: GlobalsNumber,
  699. KhtmlBoxOrient?: BoxOrientProperty,
  700. KhtmlBoxPack?: BoxPackProperty,
  701. KhtmlLineBreak?: LineBreakProperty,
  702. KhtmlOpacity?: OpacityProperty,
  703. KhtmlUserSelect?: UserSelectProperty,
  704. MozBackgroundClip?: BackgroundClipProperty,
  705. MozBackgroundInlinePolicy?: BoxDecorationBreakProperty,
  706. MozBackgroundOrigin?: BackgroundOriginProperty,
  707. MozBackgroundSize?: BackgroundSizeProperty<TLength>,
  708. MozBinding?: MozBindingProperty,
  709. MozBorderRadius?: BorderRadiusProperty<TLength>,
  710. MozBorderRadiusBottomleft?: BorderBottomLeftRadiusProperty<TLength>,
  711. MozBorderRadiusBottomright?: BorderBottomRightRadiusProperty<TLength>,
  712. MozBorderRadiusTopleft?: BorderTopLeftRadiusProperty<TLength>,
  713. MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength>,
  714. MozBoxAlign?: BoxAlignProperty,
  715. MozBoxDirection?: BoxDirectionProperty,
  716. MozBoxFlex?: GlobalsNumber,
  717. MozBoxOrdinalGroup?: GlobalsNumber,
  718. MozBoxOrient?: BoxOrientProperty,
  719. MozBoxPack?: BoxPackProperty,
  720. MozBoxShadow?: BoxShadowProperty,
  721. MozFloatEdge?: MozFloatEdgeProperty,
  722. MozForceBrokenImageIcon?: MozForceBrokenImageIconProperty,
  723. MozOpacity?: OpacityProperty,
  724. MozOutline?: OutlineProperty<TLength>,
  725. MozOutlineColor?: OutlineColorProperty,
  726. MozOutlineRadius?: MozOutlineRadiusProperty<TLength>,
  727. MozOutlineRadiusBottomleft?: MozOutlineRadiusBottomleftProperty<TLength>,
  728. MozOutlineRadiusBottomright?: MozOutlineRadiusBottomrightProperty<TLength>,
  729. MozOutlineRadiusTopleft?: MozOutlineRadiusTopleftProperty<TLength>,
  730. MozOutlineRadiusTopright?: MozOutlineRadiusToprightProperty<TLength>,
  731. MozOutlineStyle?: OutlineStyleProperty,
  732. MozOutlineWidth?: OutlineWidthProperty<TLength>,
  733. MozTextAlignLast?: TextAlignLastProperty,
  734. MozTextDecorationColor?: TextDecorationColorProperty,
  735. MozTextDecorationLine?: TextDecorationLineProperty,
  736. MozTextDecorationStyle?: TextDecorationStyleProperty,
  737. MozUserInput?: MozUserInputProperty,
  738. msImeMode?: ImeModeProperty,
  739. OAnimation?: AnimationProperty,
  740. OAnimationDelay?: GlobalsString,
  741. OAnimationDirection?: AnimationDirectionProperty,
  742. OAnimationDuration?: GlobalsString,
  743. OAnimationFillMode?: AnimationFillModeProperty,
  744. OAnimationIterationCount?: AnimationIterationCountProperty,
  745. OAnimationName?: AnimationNameProperty,
  746. OAnimationPlayState?: AnimationPlayStateProperty,
  747. OAnimationTimingFunction?: AnimationTimingFunctionProperty,
  748. OBackgroundSize?: BackgroundSizeProperty<TLength>,
  749. OBorderImage?: BorderImageProperty,
  750. OObjectFit?: ObjectFitProperty,
  751. OObjectPosition?: ObjectPositionProperty<TLength>,
  752. OTabSize?: TabSizeProperty<TLength>,
  753. OTextOverflow?: TextOverflowProperty,
  754. OTransform?: TransformProperty,
  755. OTransformOrigin?: TransformOriginProperty<TLength>,
  756. OTransition?: TransitionProperty,
  757. OTransitionDelay?: GlobalsString,
  758. OTransitionDuration?: GlobalsString,
  759. OTransitionProperty?: TransitionPropertyProperty,
  760. OTransitionTimingFunction?: TransitionTimingFunctionProperty,
  761. WebkitBoxAlign?: BoxAlignProperty,
  762. WebkitBoxDirection?: BoxDirectionProperty,
  763. WebkitBoxFlex?: GlobalsNumber,
  764. WebkitBoxFlexGroup?: GlobalsNumber,
  765. WebkitBoxLines?: BoxLinesProperty,
  766. WebkitBoxOrdinalGroup?: GlobalsNumber,
  767. WebkitBoxOrient?: BoxOrientProperty,
  768. WebkitBoxPack?: BoxPackProperty,
  769. WebkitScrollSnapPointsX?: ScrollSnapPointsXProperty,
  770. WebkitScrollSnapPointsY?: ScrollSnapPointsYProperty,
  771. };
  772. export type SvgProperties<TLength = string | 0> = {
  773. alignmentBaseline?: AlignmentBaselineProperty,
  774. baselineShift?: BaselineShiftProperty<TLength>,
  775. clip?: ClipProperty,
  776. clipPath?: ClipPathProperty,
  777. clipRule?: ClipRuleProperty,
  778. color?: ColorProperty,
  779. colorInterpolation?: ColorInterpolationProperty,
  780. colorRendering?: ColorRenderingProperty,
  781. cursor?: CursorProperty,
  782. direction?: DirectionProperty,
  783. display?: DisplayProperty,
  784. dominantBaseline?: DominantBaselineProperty,
  785. fill?: FillProperty,
  786. fillOpacity?: GlobalsNumber,
  787. fillRule?: FillRuleProperty,
  788. filter?: FilterProperty,
  789. floodColor?: FloodColorProperty,
  790. floodOpacity?: GlobalsNumber,
  791. font?: FontProperty,
  792. fontFamily?: FontFamilyProperty,
  793. fontSize?: FontSizeProperty<TLength>,
  794. fontSizeAdjust?: FontSizeAdjustProperty,
  795. fontStretch?: FontStretchProperty,
  796. fontStyle?: FontStyleProperty,
  797. fontVariant?: FontVariantProperty,
  798. fontWeight?: FontWeightProperty,
  799. glyphOrientationVertical?: GlyphOrientationVerticalProperty,
  800. imageRendering?: ImageRenderingProperty,
  801. letterSpacing?: LetterSpacingProperty<TLength>,
  802. lightingColor?: LightingColorProperty,
  803. lineHeight?: LineHeightProperty<TLength>,
  804. marker?: MarkerProperty,
  805. markerEnd?: MarkerEndProperty,
  806. markerMid?: MarkerMidProperty,
  807. markerStart?: MarkerStartProperty,
  808. mask?: MaskProperty<TLength>,
  809. opacity?: OpacityProperty,
  810. overflow?: OverflowProperty,
  811. paintOrder?: PaintOrderProperty,
  812. pointerEvents?: PointerEventsProperty,
  813. shapeRendering?: ShapeRenderingProperty,
  814. stopColor?: StopColorProperty,
  815. stopOpacity?: GlobalsNumber,
  816. stroke?: StrokeProperty,
  817. strokeDasharray?: StrokeDasharrayProperty<TLength>,
  818. strokeDashoffset?: StrokeDashoffsetProperty<TLength>,
  819. strokeLinecap?: StrokeLinecapProperty,
  820. strokeLinejoin?: StrokeLinejoinProperty,
  821. strokeMiterlimit?: GlobalsNumber,
  822. strokeOpacity?: GlobalsNumber,
  823. strokeWidth?: StrokeWidthProperty<TLength>,
  824. textAnchor?: TextAnchorProperty,
  825. textDecoration?: TextDecorationProperty<TLength>,
  826. textRendering?: TextRenderingProperty,
  827. unicodeBidi?: UnicodeBidiProperty,
  828. vectorEffect?: VectorEffectProperty,
  829. visibility?: VisibilityProperty,
  830. whiteSpace?: WhiteSpaceProperty,
  831. wordSpacing?: WordSpacingProperty<TLength>,
  832. writingMode?: WritingModeProperty,
  833. };
  834. export type Properties<TLength = string | 0> = StandardProperties<TLength> & VendorProperties<TLength> & ObsoleteProperties<TLength> & SvgProperties<TLength>;
  835. export type StandardLonghandPropertiesHyphen<TLength = string | 0> = {
  836. "accent-color"?: AccentColorProperty,
  837. "align-content"?: AlignContentProperty,
  838. "align-items"?: AlignItemsProperty,
  839. "align-self"?: AlignSelfProperty,
  840. "align-tracks"?: AlignTracksProperty,
  841. "animation-composition"?: GlobalsString,
  842. "animation-delay"?: GlobalsString,
  843. "animation-direction"?: AnimationDirectionProperty,
  844. "animation-duration"?: GlobalsString,
  845. "animation-fill-mode"?: AnimationFillModeProperty,
  846. "animation-iteration-count"?: AnimationIterationCountProperty,
  847. "animation-name"?: AnimationNameProperty,
  848. "animation-play-state"?: AnimationPlayStateProperty,
  849. "animation-timeline"?: AnimationTimelineProperty,
  850. "animation-timing-function"?: AnimationTimingFunctionProperty,
  851. appearance?: AppearanceProperty,
  852. "aspect-ratio"?: AspectRatioProperty,
  853. "backdrop-filter"?: BackdropFilterProperty,
  854. "backface-visibility"?: BackfaceVisibilityProperty,
  855. "background-attachment"?: BackgroundAttachmentProperty,
  856. "background-blend-mode"?: BackgroundBlendModeProperty,
  857. "background-clip"?: BackgroundClipProperty,
  858. "background-color"?: BackgroundColorProperty,
  859. "background-image"?: BackgroundImageProperty,
  860. "background-origin"?: BackgroundOriginProperty,
  861. "background-position-x"?: BackgroundPositionXProperty<TLength>,
  862. "background-position-y"?: BackgroundPositionYProperty<TLength>,
  863. "background-repeat"?: BackgroundRepeatProperty,
  864. "background-size"?: BackgroundSizeProperty<TLength>,
  865. "block-overflow"?: BlockOverflowProperty,
  866. "block-size"?: BlockSizeProperty<TLength>,
  867. "border-block-color"?: BorderBlockColorProperty,
  868. "border-block-end-color"?: BorderBlockEndColorProperty,
  869. "border-block-end-style"?: BorderBlockEndStyleProperty,
  870. "border-block-end-width"?: BorderBlockEndWidthProperty<TLength>,
  871. "border-block-start-color"?: BorderBlockStartColorProperty,
  872. "border-block-start-style"?: BorderBlockStartStyleProperty,
  873. "border-block-start-width"?: BorderBlockStartWidthProperty<TLength>,
  874. "border-block-style"?: BorderBlockStyleProperty,
  875. "border-block-width"?: BorderBlockWidthProperty<TLength>,
  876. "border-bottom-color"?: BorderBottomColorProperty,
  877. "border-bottom-left-radius"?: BorderBottomLeftRadiusProperty<TLength>,
  878. "border-bottom-right-radius"?: BorderBottomRightRadiusProperty<TLength>,
  879. "border-bottom-style"?: BorderBottomStyleProperty,
  880. "border-bottom-width"?: BorderBottomWidthProperty<TLength>,
  881. "border-collapse"?: BorderCollapseProperty,
  882. "border-end-end-radius"?: BorderEndEndRadiusProperty<TLength>,
  883. "border-end-start-radius"?: BorderEndStartRadiusProperty<TLength>,
  884. "border-image-outset"?: BorderImageOutsetProperty<TLength>,
  885. "border-image-repeat"?: BorderImageRepeatProperty,
  886. "border-image-slice"?: BorderImageSliceProperty,
  887. "border-image-source"?: BorderImageSourceProperty,
  888. "border-image-width"?: BorderImageWidthProperty<TLength>,
  889. "border-inline-color"?: BorderInlineColorProperty,
  890. "border-inline-end-color"?: BorderInlineEndColorProperty,
  891. "border-inline-end-style"?: BorderInlineEndStyleProperty,
  892. "border-inline-end-width"?: BorderInlineEndWidthProperty<TLength>,
  893. "border-inline-start-color"?: BorderInlineStartColorProperty,
  894. "border-inline-start-style"?: BorderInlineStartStyleProperty,
  895. "border-inline-start-width"?: BorderInlineStartWidthProperty<TLength>,
  896. "border-inline-style"?: BorderInlineStyleProperty,
  897. "border-inline-width"?: BorderInlineWidthProperty<TLength>,
  898. "border-left-color"?: BorderLeftColorProperty,
  899. "border-left-style"?: BorderLeftStyleProperty,
  900. "border-left-width"?: BorderLeftWidthProperty<TLength>,
  901. "border-right-color"?: BorderRightColorProperty,
  902. "border-right-style"?: BorderRightStyleProperty,
  903. "border-right-width"?: BorderRightWidthProperty<TLength>,
  904. "border-spacing"?: BorderSpacingProperty<TLength>,
  905. "border-start-end-radius"?: BorderStartEndRadiusProperty<TLength>,
  906. "border-start-start-radius"?: BorderStartStartRadiusProperty<TLength>,
  907. "border-top-color"?: BorderTopColorProperty,
  908. "border-top-left-radius"?: BorderTopLeftRadiusProperty<TLength>,
  909. "border-top-right-radius"?: BorderTopRightRadiusProperty<TLength>,
  910. "border-top-style"?: BorderTopStyleProperty,
  911. "border-top-width"?: BorderTopWidthProperty<TLength>,
  912. bottom?: BottomProperty<TLength>,
  913. "box-decoration-break"?: BoxDecorationBreakProperty,
  914. "box-shadow"?: BoxShadowProperty,
  915. "box-sizing"?: BoxSizingProperty,
  916. "break-after"?: BreakAfterProperty,
  917. "break-before"?: BreakBeforeProperty,
  918. "break-inside"?: BreakInsideProperty,
  919. "caption-side"?: CaptionSideProperty,
  920. "caret-color"?: CaretColorProperty,
  921. clear?: ClearProperty,
  922. "clip-path"?: ClipPathProperty,
  923. color?: ColorProperty,
  924. "color-adjust"?: PrintColorAdjustProperty,
  925. "color-scheme"?: ColorSchemeProperty,
  926. "column-count"?: ColumnCountProperty,
  927. "column-fill"?: ColumnFillProperty,
  928. "column-gap"?: ColumnGapProperty<TLength>,
  929. "column-rule-color"?: ColumnRuleColorProperty,
  930. "column-rule-style"?: ColumnRuleStyleProperty,
  931. "column-rule-width"?: ColumnRuleWidthProperty<TLength>,
  932. "column-span"?: ColumnSpanProperty,
  933. "column-width"?: ColumnWidthProperty<TLength>,
  934. contain?: ContainProperty,
  935. content?: ContentProperty,
  936. "content-visibility"?: ContentVisibilityProperty,
  937. "counter-increment"?: CounterIncrementProperty,
  938. "counter-reset"?: CounterResetProperty,
  939. "counter-set"?: CounterSetProperty,
  940. cursor?: CursorProperty,
  941. direction?: DirectionProperty,
  942. display?: DisplayProperty,
  943. "empty-cells"?: EmptyCellsProperty,
  944. filter?: FilterProperty,
  945. "flex-basis"?: FlexBasisProperty<TLength>,
  946. "flex-direction"?: FlexDirectionProperty,
  947. "flex-grow"?: GlobalsNumber,
  948. "flex-shrink"?: GlobalsNumber,
  949. "flex-wrap"?: FlexWrapProperty,
  950. float?: FloatProperty,
  951. "font-family"?: FontFamilyProperty,
  952. "font-feature-settings"?: FontFeatureSettingsProperty,
  953. "font-kerning"?: FontKerningProperty,
  954. "font-language-override"?: FontLanguageOverrideProperty,
  955. "font-optical-sizing"?: FontOpticalSizingProperty,
  956. "font-size"?: FontSizeProperty<TLength>,
  957. "font-size-adjust"?: FontSizeAdjustProperty,
  958. "font-smooth"?: FontSmoothProperty<TLength>,
  959. "font-stretch"?: FontStretchProperty,
  960. "font-style"?: FontStyleProperty,
  961. "font-synthesis"?: FontSynthesisProperty,
  962. "font-variant"?: FontVariantProperty,
  963. "font-variant-alternates"?: FontVariantAlternatesProperty,
  964. "font-variant-caps"?: FontVariantCapsProperty,
  965. "font-variant-east-asian"?: FontVariantEastAsianProperty,
  966. "font-variant-ligatures"?: FontVariantLigaturesProperty,
  967. "font-variant-numeric"?: FontVariantNumericProperty,
  968. "font-variant-position"?: FontVariantPositionProperty,
  969. "font-variation-settings"?: FontVariationSettingsProperty,
  970. "font-weight"?: FontWeightProperty,
  971. "forced-color-adjust"?: ForcedColorAdjustProperty,
  972. "grid-auto-columns"?: GridAutoColumnsProperty<TLength>,
  973. "grid-auto-flow"?: GridAutoFlowProperty,
  974. "grid-auto-rows"?: GridAutoRowsProperty<TLength>,
  975. "grid-column-end"?: GridColumnEndProperty,
  976. "grid-column-start"?: GridColumnStartProperty,
  977. "grid-row-end"?: GridRowEndProperty,
  978. "grid-row-start"?: GridRowStartProperty,
  979. "grid-template-areas"?: GridTemplateAreasProperty,
  980. "grid-template-columns"?: GridTemplateColumnsProperty<TLength>,
  981. "grid-template-rows"?: GridTemplateRowsProperty<TLength>,
  982. "hanging-punctuation"?: HangingPunctuationProperty,
  983. height?: HeightProperty<TLength>,
  984. "hyphenate-character"?: HyphenateCharacterProperty,
  985. hyphens?: HyphensProperty,
  986. "image-orientation"?: ImageOrientationProperty,
  987. "image-rendering"?: ImageRenderingProperty,
  988. "image-resolution"?: ImageResolutionProperty,
  989. "initial-letter"?: InitialLetterProperty,
  990. "inline-size"?: InlineSizeProperty<TLength>,
  991. "input-security"?: InputSecurityProperty,
  992. inset?: InsetProperty<TLength>,
  993. "inset-block"?: InsetBlockProperty<TLength>,
  994. "inset-block-end"?: InsetBlockEndProperty<TLength>,
  995. "inset-block-start"?: InsetBlockStartProperty<TLength>,
  996. "inset-inline"?: InsetInlineProperty<TLength>,
  997. "inset-inline-end"?: InsetInlineEndProperty<TLength>,
  998. "inset-inline-start"?: InsetInlineStartProperty<TLength>,
  999. isolation?: IsolationProperty,
  1000. "justify-content"?: JustifyContentProperty,
  1001. "justify-items"?: JustifyItemsProperty,
  1002. "justify-self"?: JustifySelfProperty,
  1003. "justify-tracks"?: JustifyTracksProperty,
  1004. left?: LeftProperty<TLength>,
  1005. "letter-spacing"?: LetterSpacingProperty<TLength>,
  1006. "line-break"?: LineBreakProperty,
  1007. "line-height"?: LineHeightProperty<TLength>,
  1008. "line-height-step"?: LineHeightStepProperty<TLength>,
  1009. "list-style-image"?: ListStyleImageProperty,
  1010. "list-style-position"?: ListStylePositionProperty,
  1011. "list-style-type"?: ListStyleTypeProperty,
  1012. "margin-block"?: MarginBlockProperty<TLength>,
  1013. "margin-block-end"?: MarginBlockEndProperty<TLength>,
  1014. "margin-block-start"?: MarginBlockStartProperty<TLength>,
  1015. "margin-bottom"?: MarginBottomProperty<TLength>,
  1016. "margin-inline"?: MarginInlineProperty<TLength>,
  1017. "margin-inline-end"?: MarginInlineEndProperty<TLength>,
  1018. "margin-inline-start"?: MarginInlineStartProperty<TLength>,
  1019. "margin-left"?: MarginLeftProperty<TLength>,
  1020. "margin-right"?: MarginRightProperty<TLength>,
  1021. "margin-top"?: MarginTopProperty<TLength>,
  1022. "mask-border-mode"?: MaskBorderModeProperty,
  1023. "mask-border-outset"?: MaskBorderOutsetProperty<TLength>,
  1024. "mask-border-repeat"?: MaskBorderRepeatProperty,
  1025. "mask-border-slice"?: MaskBorderSliceProperty,
  1026. "mask-border-source"?: MaskBorderSourceProperty,
  1027. "mask-border-width"?: MaskBorderWidthProperty<TLength>,
  1028. "mask-clip"?: MaskClipProperty,
  1029. "mask-composite"?: MaskCompositeProperty,
  1030. "mask-image"?: MaskImageProperty,
  1031. "mask-mode"?: MaskModeProperty,
  1032. "mask-origin"?: MaskOriginProperty,
  1033. "mask-position"?: MaskPositionProperty<TLength>,
  1034. "mask-repeat"?: MaskRepeatProperty,
  1035. "mask-size"?: MaskSizeProperty<TLength>,
  1036. "mask-type"?: MaskTypeProperty,
  1037. "math-depth"?: MathDepthProperty,
  1038. "math-shift"?: MathShiftProperty,
  1039. "math-style"?: MathStyleProperty,
  1040. "max-block-size"?: MaxBlockSizeProperty<TLength>,
  1041. "max-height"?: MaxHeightProperty<TLength>,
  1042. "max-inline-size"?: MaxInlineSizeProperty<TLength>,
  1043. "max-lines"?: MaxLinesProperty,
  1044. "max-width"?: MaxWidthProperty<TLength>,
  1045. "min-block-size"?: MinBlockSizeProperty<TLength>,
  1046. "min-height"?: MinHeightProperty<TLength>,
  1047. "min-inline-size"?: MinInlineSizeProperty<TLength>,
  1048. "min-width"?: MinWidthProperty<TLength>,
  1049. "mix-blend-mode"?: MixBlendModeProperty,
  1050. "motion-distance"?: OffsetDistanceProperty<TLength>,
  1051. "motion-path"?: OffsetPathProperty,
  1052. "motion-rotation"?: OffsetRotateProperty,
  1053. "object-fit"?: ObjectFitProperty,
  1054. "object-position"?: ObjectPositionProperty<TLength>,
  1055. "offset-anchor"?: OffsetAnchorProperty<TLength>,
  1056. "offset-distance"?: OffsetDistanceProperty<TLength>,
  1057. "offset-path"?: OffsetPathProperty,
  1058. "offset-rotate"?: OffsetRotateProperty,
  1059. "offset-rotation"?: OffsetRotateProperty,
  1060. opacity?: OpacityProperty,
  1061. order?: GlobalsNumber,
  1062. orphans?: GlobalsNumber,
  1063. "outline-color"?: OutlineColorProperty,
  1064. "outline-offset"?: OutlineOffsetProperty<TLength>,
  1065. "outline-style"?: OutlineStyleProperty,
  1066. "outline-width"?: OutlineWidthProperty<TLength>,
  1067. "overflow-anchor"?: OverflowAnchorProperty,
  1068. "overflow-block"?: OverflowBlockProperty,
  1069. "overflow-clip-box"?: OverflowClipBoxProperty,
  1070. "overflow-clip-margin"?: OverflowClipMarginProperty<TLength>,
  1071. "overflow-inline"?: OverflowInlineProperty,
  1072. "overflow-wrap"?: OverflowWrapProperty,
  1073. "overflow-x"?: OverflowXProperty,
  1074. "overflow-y"?: OverflowYProperty,
  1075. "overscroll-behavior-block"?: OverscrollBehaviorBlockProperty,
  1076. "overscroll-behavior-inline"?: OverscrollBehaviorInlineProperty,
  1077. "overscroll-behavior-x"?: OverscrollBehaviorXProperty,
  1078. "overscroll-behavior-y"?: OverscrollBehaviorYProperty,
  1079. "padding-block"?: PaddingBlockProperty<TLength>,
  1080. "padding-block-end"?: PaddingBlockEndProperty<TLength>,
  1081. "padding-block-start"?: PaddingBlockStartProperty<TLength>,
  1082. "padding-bottom"?: PaddingBottomProperty<TLength>,
  1083. "padding-inline"?: PaddingInlineProperty<TLength>,
  1084. "padding-inline-end"?: PaddingInlineEndProperty<TLength>,
  1085. "padding-inline-start"?: PaddingInlineStartProperty<TLength>,
  1086. "padding-left"?: PaddingLeftProperty<TLength>,
  1087. "padding-right"?: PaddingRightProperty<TLength>,
  1088. "padding-top"?: PaddingTopProperty<TLength>,
  1089. "page-break-after"?: PageBreakAfterProperty,
  1090. "page-break-before"?: PageBreakBeforeProperty,
  1091. "page-break-inside"?: PageBreakInsideProperty,
  1092. "paint-order"?: PaintOrderProperty,
  1093. perspective?: PerspectiveProperty<TLength>,
  1094. "perspective-origin"?: PerspectiveOriginProperty<TLength>,
  1095. "place-content"?: PlaceContentProperty,
  1096. "pointer-events"?: PointerEventsProperty,
  1097. position?: PositionProperty,
  1098. "print-color-adjust"?: PrintColorAdjustProperty,
  1099. quotes?: QuotesProperty,
  1100. resize?: ResizeProperty,
  1101. right?: RightProperty<TLength>,
  1102. rotate?: RotateProperty,
  1103. "row-gap"?: RowGapProperty<TLength>,
  1104. "ruby-align"?: RubyAlignProperty,
  1105. "ruby-merge"?: RubyMergeProperty,
  1106. "ruby-position"?: RubyPositionProperty,
  1107. scale?: ScaleProperty,
  1108. "scroll-behavior"?: ScrollBehaviorProperty,
  1109. "scroll-margin"?: ScrollMarginProperty<TLength>,
  1110. "scroll-margin-block"?: ScrollMarginBlockProperty<TLength>,
  1111. "scroll-margin-block-end"?: ScrollMarginBlockEndProperty<TLength>,
  1112. "scroll-margin-block-start"?: ScrollMarginBlockStartProperty<TLength>,
  1113. "scroll-margin-bottom"?: ScrollMarginBottomProperty<TLength>,
  1114. "scroll-margin-inline"?: ScrollMarginInlineProperty<TLength>,
  1115. "scroll-margin-inline-end"?: ScrollMarginInlineEndProperty<TLength>,
  1116. "scroll-margin-inline-start"?: ScrollMarginInlineStartProperty<TLength>,
  1117. "scroll-margin-left"?: ScrollMarginLeftProperty<TLength>,
  1118. "scroll-margin-right"?: ScrollMarginRightProperty<TLength>,
  1119. "scroll-margin-top"?: ScrollMarginTopProperty<TLength>,
  1120. "scroll-padding"?: ScrollPaddingProperty<TLength>,
  1121. "scroll-padding-block"?: ScrollPaddingBlockProperty<TLength>,
  1122. "scroll-padding-block-end"?: ScrollPaddingBlockEndProperty<TLength>,
  1123. "scroll-padding-block-start"?: ScrollPaddingBlockStartProperty<TLength>,
  1124. "scroll-padding-bottom"?: ScrollPaddingBottomProperty<TLength>,
  1125. "scroll-padding-inline"?: ScrollPaddingInlineProperty<TLength>,
  1126. "scroll-padding-inline-end"?: ScrollPaddingInlineEndProperty<TLength>,
  1127. "scroll-padding-inline-start"?: ScrollPaddingInlineStartProperty<TLength>,
  1128. "scroll-padding-left"?: ScrollPaddingLeftProperty<TLength>,
  1129. "scroll-padding-right"?: ScrollPaddingRightProperty<TLength>,
  1130. "scroll-padding-top"?: ScrollPaddingTopProperty<TLength>,
  1131. "scroll-snap-align"?: ScrollSnapAlignProperty,
  1132. "scroll-snap-margin"?: ScrollMarginProperty<TLength>,
  1133. "scroll-snap-margin-bottom"?: ScrollMarginBottomProperty<TLength>,
  1134. "scroll-snap-margin-left"?: ScrollMarginLeftProperty<TLength>,
  1135. "scroll-snap-margin-right"?: ScrollMarginRightProperty<TLength>,
  1136. "scroll-snap-margin-top"?: ScrollMarginTopProperty<TLength>,
  1137. "scroll-snap-stop"?: ScrollSnapStopProperty,
  1138. "scroll-snap-type"?: ScrollSnapTypeProperty,
  1139. "scrollbar-color"?: ScrollbarColorProperty,
  1140. "scrollbar-gutter"?: ScrollbarGutterProperty,
  1141. "scrollbar-width"?: ScrollbarWidthProperty,
  1142. "shape-image-threshold"?: ShapeImageThresholdProperty,
  1143. "shape-margin"?: ShapeMarginProperty<TLength>,
  1144. "shape-outside"?: ShapeOutsideProperty,
  1145. "tab-size"?: TabSizeProperty<TLength>,
  1146. "table-layout"?: TableLayoutProperty,
  1147. "text-align"?: TextAlignProperty,
  1148. "text-align-last"?: TextAlignLastProperty,
  1149. "text-combine-upright"?: TextCombineUprightProperty,
  1150. "text-decoration-color"?: TextDecorationColorProperty,
  1151. "text-decoration-line"?: TextDecorationLineProperty,
  1152. "text-decoration-skip"?: TextDecorationSkipProperty,
  1153. "text-decoration-skip-ink"?: TextDecorationSkipInkProperty,
  1154. "text-decoration-style"?: TextDecorationStyleProperty,
  1155. "text-decoration-thickness"?: TextDecorationThicknessProperty<TLength>,
  1156. "text-emphasis-color"?: TextEmphasisColorProperty,
  1157. "text-emphasis-position"?: GlobalsString,
  1158. "text-emphasis-style"?: TextEmphasisStyleProperty,
  1159. "text-indent"?: TextIndentProperty<TLength>,
  1160. "text-justify"?: TextJustifyProperty,
  1161. "text-orientation"?: TextOrientationProperty,
  1162. "text-overflow"?: TextOverflowProperty,
  1163. "text-rendering"?: TextRenderingProperty,
  1164. "text-shadow"?: TextShadowProperty,
  1165. "text-size-adjust"?: TextSizeAdjustProperty,
  1166. "text-transform"?: TextTransformProperty,
  1167. "text-underline-offset"?: TextUnderlineOffsetProperty<TLength>,
  1168. "text-underline-position"?: TextUnderlinePositionProperty,
  1169. top?: TopProperty<TLength>,
  1170. "touch-action"?: TouchActionProperty,
  1171. transform?: TransformProperty,
  1172. "transform-box"?: TransformBoxProperty,
  1173. "transform-origin"?: TransformOriginProperty<TLength>,
  1174. "transform-style"?: TransformStyleProperty,
  1175. "transition-delay"?: GlobalsString,
  1176. "transition-duration"?: GlobalsString,
  1177. "transition-property"?: TransitionPropertyProperty,
  1178. "transition-timing-function"?: TransitionTimingFunctionProperty,
  1179. translate?: TranslateProperty<TLength>,
  1180. "unicode-bidi"?: UnicodeBidiProperty,
  1181. "user-select"?: UserSelectProperty,
  1182. "vertical-align"?: VerticalAlignProperty<TLength>,
  1183. visibility?: VisibilityProperty,
  1184. "white-space"?: WhiteSpaceProperty,
  1185. widows?: GlobalsNumber,
  1186. width?: WidthProperty<TLength>,
  1187. "will-change"?: WillChangeProperty,
  1188. "word-break"?: WordBreakProperty,
  1189. "word-spacing"?: WordSpacingProperty<TLength>,
  1190. "word-wrap"?: WordWrapProperty,
  1191. "writing-mode"?: WritingModeProperty,
  1192. "z-index"?: ZIndexProperty,
  1193. zoom?: ZoomProperty,
  1194. };
  1195. export type StandardShorthandPropertiesHyphen<TLength = string | 0> = {
  1196. all?: Globals,
  1197. animation?: AnimationProperty,
  1198. background?: BackgroundProperty<TLength>,
  1199. "background-position"?: BackgroundPositionProperty<TLength>,
  1200. border?: BorderProperty<TLength>,
  1201. "border-block"?: BorderBlockProperty<TLength>,
  1202. "border-block-end"?: BorderBlockEndProperty<TLength>,
  1203. "border-block-start"?: BorderBlockStartProperty<TLength>,
  1204. "border-bottom"?: BorderBottomProperty<TLength>,
  1205. "border-color"?: BorderColorProperty,
  1206. "border-image"?: BorderImageProperty,
  1207. "border-inline"?: BorderInlineProperty<TLength>,
  1208. "border-inline-end"?: BorderInlineEndProperty<TLength>,
  1209. "border-inline-start"?: BorderInlineStartProperty<TLength>,
  1210. "border-left"?: BorderLeftProperty<TLength>,
  1211. "border-radius"?: BorderRadiusProperty<TLength>,
  1212. "border-right"?: BorderRightProperty<TLength>,
  1213. "border-style"?: BorderStyleProperty,
  1214. "border-top"?: BorderTopProperty<TLength>,
  1215. "border-width"?: BorderWidthProperty<TLength>,
  1216. "column-rule"?: ColumnRuleProperty<TLength>,
  1217. columns?: ColumnsProperty<TLength>,
  1218. flex?: FlexProperty<TLength>,
  1219. "flex-flow"?: FlexFlowProperty,
  1220. font?: FontProperty,
  1221. gap?: GapProperty<TLength>,
  1222. grid?: GridProperty,
  1223. "grid-area"?: GridAreaProperty,
  1224. "grid-column"?: GridColumnProperty,
  1225. "grid-row"?: GridRowProperty,
  1226. "grid-template"?: GridTemplateProperty,
  1227. "line-clamp"?: LineClampProperty,
  1228. "list-style"?: ListStyleProperty,
  1229. margin?: MarginProperty<TLength>,
  1230. mask?: MaskProperty<TLength>,
  1231. "mask-border"?: MaskBorderProperty,
  1232. motion?: OffsetProperty<TLength>,
  1233. offset?: OffsetProperty<TLength>,
  1234. outline?: OutlineProperty<TLength>,
  1235. overflow?: OverflowProperty,
  1236. "overscroll-behavior"?: OverscrollBehaviorProperty,
  1237. padding?: PaddingProperty<TLength>,
  1238. "place-items"?: PlaceItemsProperty,
  1239. "place-self"?: PlaceSelfProperty,
  1240. "text-decoration"?: TextDecorationProperty<TLength>,
  1241. "text-emphasis"?: TextEmphasisProperty,
  1242. transition?: TransitionProperty,
  1243. };
  1244. export type StandardPropertiesHyphen<TLength = string | 0> = StandardLonghandPropertiesHyphen<TLength> & StandardShorthandPropertiesHyphen<TLength>;
  1245. export type VendorLonghandPropertiesHyphen<TLength = string | 0> = {
  1246. "-moz-animation-delay"?: GlobalsString,
  1247. "-moz-animation-direction"?: AnimationDirectionProperty,
  1248. "-moz-animation-duration"?: GlobalsString,
  1249. "-moz-animation-fill-mode"?: AnimationFillModeProperty,
  1250. "-moz-animation-iteration-count"?: AnimationIterationCountProperty,
  1251. "-moz-animation-name"?: AnimationNameProperty,
  1252. "-moz-animation-play-state"?: AnimationPlayStateProperty,
  1253. "-moz-animation-timing-function"?: AnimationTimingFunctionProperty,
  1254. "-moz-appearance"?: MozAppearanceProperty,
  1255. "-moz-backface-visibility"?: BackfaceVisibilityProperty,
  1256. "-moz-border-bottom-colors"?: MozBorderBottomColorsProperty,
  1257. "-moz-border-end-color"?: BorderInlineEndColorProperty,
  1258. "-moz-border-end-style"?: BorderInlineEndStyleProperty,
  1259. "-moz-border-end-width"?: BorderInlineEndWidthProperty<TLength>,
  1260. "-moz-border-left-colors"?: MozBorderLeftColorsProperty,
  1261. "-moz-border-right-colors"?: MozBorderRightColorsProperty,
  1262. "-moz-border-start-color"?: BorderInlineStartColorProperty,
  1263. "-moz-border-start-style"?: BorderInlineStartStyleProperty,
  1264. "-moz-border-top-colors"?: MozBorderTopColorsProperty,
  1265. "-moz-box-sizing"?: BoxSizingProperty,
  1266. "-moz-column-count"?: ColumnCountProperty,
  1267. "-moz-column-fill"?: ColumnFillProperty,
  1268. "-moz-column-rule-color"?: ColumnRuleColorProperty,
  1269. "-moz-column-rule-style"?: ColumnRuleStyleProperty,
  1270. "-moz-column-rule-width"?: ColumnRuleWidthProperty<TLength>,
  1271. "-moz-column-width"?: ColumnWidthProperty<TLength>,
  1272. "-moz-context-properties"?: MozContextPropertiesProperty,
  1273. "-moz-font-feature-settings"?: FontFeatureSettingsProperty,
  1274. "-moz-font-language-override"?: FontLanguageOverrideProperty,
  1275. "-moz-hyphens"?: HyphensProperty,
  1276. "-moz-image-region"?: MozImageRegionProperty,
  1277. "-moz-margin-end"?: MarginInlineEndProperty<TLength>,
  1278. "-moz-margin-start"?: MarginInlineStartProperty<TLength>,
  1279. "-moz-orient"?: MozOrientProperty,
  1280. "-moz-osx-font-smoothing"?: FontSmoothProperty<TLength>,
  1281. "-moz-padding-end"?: PaddingInlineEndProperty<TLength>,
  1282. "-moz-padding-start"?: PaddingInlineStartProperty<TLength>,
  1283. "-moz-perspective"?: PerspectiveProperty<TLength>,
  1284. "-moz-perspective-origin"?: PerspectiveOriginProperty<TLength>,
  1285. "-moz-stack-sizing"?: MozStackSizingProperty,
  1286. "-moz-tab-size"?: TabSizeProperty<TLength>,
  1287. "-moz-text-blink"?: MozTextBlinkProperty,
  1288. "-moz-text-size-adjust"?: TextSizeAdjustProperty,
  1289. "-moz-transform-origin"?: TransformOriginProperty<TLength>,
  1290. "-moz-transform-style"?: TransformStyleProperty,
  1291. "-moz-transition-delay"?: GlobalsString,
  1292. "-moz-transition-duration"?: GlobalsString,
  1293. "-moz-transition-property"?: TransitionPropertyProperty,
  1294. "-moz-transition-timing-function"?: TransitionTimingFunctionProperty,
  1295. "-moz-user-focus"?: MozUserFocusProperty,
  1296. "-moz-user-modify"?: MozUserModifyProperty,
  1297. "-moz-user-select"?: UserSelectProperty,
  1298. "-moz-window-dragging"?: MozWindowDraggingProperty,
  1299. "-moz-window-shadow"?: MozWindowShadowProperty,
  1300. "-ms-accelerator"?: MsAcceleratorProperty,
  1301. "-ms-block-progression"?: MsBlockProgressionProperty,
  1302. "-ms-content-zoom-chaining"?: MsContentZoomChainingProperty,
  1303. "-ms-content-zoom-limit-max"?: GlobalsString,
  1304. "-ms-content-zoom-limit-min"?: GlobalsString,
  1305. "-ms-content-zoom-snap-points"?: GlobalsString,
  1306. "-ms-content-zoom-snap-type"?: MsContentZoomSnapTypeProperty,
  1307. "-ms-content-zooming"?: MsContentZoomingProperty,
  1308. "-ms-filter"?: GlobalsString,
  1309. "-ms-flex-direction"?: FlexDirectionProperty,
  1310. "-ms-flex-positive"?: GlobalsNumber,
  1311. "-ms-flow-from"?: MsFlowFromProperty,
  1312. "-ms-flow-into"?: MsFlowIntoProperty,
  1313. "-ms-grid-columns"?: MsGridColumnsProperty<TLength>,
  1314. "-ms-grid-rows"?: MsGridRowsProperty<TLength>,
  1315. "-ms-high-contrast-adjust"?: MsHighContrastAdjustProperty,
  1316. "-ms-hyphenate-limit-chars"?: MsHyphenateLimitCharsProperty,
  1317. "-ms-hyphenate-limit-lines"?: MsHyphenateLimitLinesProperty,
  1318. "-ms-hyphenate-limit-zone"?: MsHyphenateLimitZoneProperty<TLength>,
  1319. "-ms-hyphens"?: HyphensProperty,
  1320. "-ms-ime-align"?: MsImeAlignProperty,
  1321. "-ms-line-break"?: LineBreakProperty,
  1322. "-ms-order"?: GlobalsNumber,
  1323. "-ms-overflow-style"?: MsOverflowStyleProperty,
  1324. "-ms-overflow-x"?: OverflowXProperty,
  1325. "-ms-overflow-y"?: OverflowYProperty,
  1326. "-ms-scroll-chaining"?: MsScrollChainingProperty,
  1327. "-ms-scroll-limit-x-max"?: MsScrollLimitXMaxProperty<TLength>,
  1328. "-ms-scroll-limit-x-min"?: MsScrollLimitXMinProperty<TLength>,
  1329. "-ms-scroll-limit-y-max"?: MsScrollLimitYMaxProperty<TLength>,
  1330. "-ms-scroll-limit-y-min"?: MsScrollLimitYMinProperty<TLength>,
  1331. "-ms-scroll-rails"?: MsScrollRailsProperty,
  1332. "-ms-scroll-snap-points-x"?: GlobalsString,
  1333. "-ms-scroll-snap-points-y"?: GlobalsString,
  1334. "-ms-scroll-snap-type"?: MsScrollSnapTypeProperty,
  1335. "-ms-scroll-translation"?: MsScrollTranslationProperty,
  1336. "-ms-scrollbar-3dlight-color"?: MsScrollbar3dlightColorProperty,
  1337. "-ms-scrollbar-arrow-color"?: MsScrollbarArrowColorProperty,
  1338. "-ms-scrollbar-base-color"?: MsScrollbarBaseColorProperty,
  1339. "-ms-scrollbar-darkshadow-color"?: MsScrollbarDarkshadowColorProperty,
  1340. "-ms-scrollbar-face-color"?: MsScrollbarFaceColorProperty,
  1341. "-ms-scrollbar-highlight-color"?: MsScrollbarHighlightColorProperty,
  1342. "-ms-scrollbar-shadow-color"?: MsScrollbarShadowColorProperty,
  1343. "-ms-scrollbar-track-color"?: MsScrollbarTrackColorProperty,
  1344. "-ms-text-autospace"?: MsTextAutospaceProperty,
  1345. "-ms-text-combine-horizontal"?: TextCombineUprightProperty,
  1346. "-ms-text-overflow"?: TextOverflowProperty,
  1347. "-ms-touch-action"?: TouchActionProperty,
  1348. "-ms-touch-select"?: MsTouchSelectProperty,
  1349. "-ms-transform"?: TransformProperty,
  1350. "-ms-transform-origin"?: TransformOriginProperty<TLength>,
  1351. "-ms-transition-delay"?: GlobalsString,
  1352. "-ms-transition-duration"?: GlobalsString,
  1353. "-ms-transition-property"?: TransitionPropertyProperty,
  1354. "-ms-transition-timing-function"?: TransitionTimingFunctionProperty,
  1355. "-ms-user-select"?: MsUserSelectProperty,
  1356. "-ms-word-break"?: WordBreakProperty,
  1357. "-ms-wrap-flow"?: MsWrapFlowProperty,
  1358. "-ms-wrap-margin"?: MsWrapMarginProperty<TLength>,
  1359. "-ms-wrap-through"?: MsWrapThroughProperty,
  1360. "-ms-writing-mode"?: WritingModeProperty,
  1361. "-webkit-align-content"?: AlignContentProperty,
  1362. "-webkit-align-items"?: AlignItemsProperty,
  1363. "-webkit-align-self"?: AlignSelfProperty,
  1364. "-webkit-animation-delay"?: GlobalsString,
  1365. "-webkit-animation-direction"?: AnimationDirectionProperty,
  1366. "-webkit-animation-duration"?: GlobalsString,
  1367. "-webkit-animation-fill-mode"?: AnimationFillModeProperty,
  1368. "-webkit-animation-iteration-count"?: AnimationIterationCountProperty,
  1369. "-webkit-animation-name"?: AnimationNameProperty,
  1370. "-webkit-animation-play-state"?: AnimationPlayStateProperty,
  1371. "-webkit-animation-timing-function"?: AnimationTimingFunctionProperty,
  1372. "-webkit-appearance"?: WebkitAppearanceProperty,
  1373. "-webkit-backdrop-filter"?: BackdropFilterProperty,
  1374. "-webkit-backface-visibility"?: BackfaceVisibilityProperty,
  1375. "-webkit-background-clip"?: BackgroundClipProperty,
  1376. "-webkit-background-origin"?: BackgroundOriginProperty,
  1377. "-webkit-background-size"?: BackgroundSizeProperty<TLength>,
  1378. "-webkit-border-before-color"?: WebkitBorderBeforeColorProperty,
  1379. "-webkit-border-before-style"?: WebkitBorderBeforeStyleProperty,
  1380. "-webkit-border-before-width"?: WebkitBorderBeforeWidthProperty<TLength>,
  1381. "-webkit-border-bottom-left-radius"?: BorderBottomLeftRadiusProperty<TLength>,
  1382. "-webkit-border-bottom-right-radius"?: BorderBottomRightRadiusProperty<TLength>,
  1383. "-webkit-border-image-slice"?: BorderImageSliceProperty,
  1384. "-webkit-border-top-left-radius"?: BorderTopLeftRadiusProperty<TLength>,
  1385. "-webkit-border-top-right-radius"?: BorderTopRightRadiusProperty<TLength>,
  1386. "-webkit-box-decoration-break"?: BoxDecorationBreakProperty,
  1387. "-webkit-box-reflect"?: WebkitBoxReflectProperty<TLength>,
  1388. "-webkit-box-shadow"?: BoxShadowProperty,
  1389. "-webkit-box-sizing"?: BoxSizingProperty,
  1390. "-webkit-clip-path"?: ClipPathProperty,
  1391. "-webkit-column-count"?: ColumnCountProperty,
  1392. "-webkit-column-fill"?: ColumnFillProperty,
  1393. "-webkit-column-rule-color"?: ColumnRuleColorProperty,
  1394. "-webkit-column-rule-style"?: ColumnRuleStyleProperty,
  1395. "-webkit-column-rule-width"?: ColumnRuleWidthProperty<TLength>,
  1396. "-webkit-column-span"?: ColumnSpanProperty,
  1397. "-webkit-column-width"?: ColumnWidthProperty<TLength>,
  1398. "-webkit-filter"?: FilterProperty,
  1399. "-webkit-flex-basis"?: FlexBasisProperty<TLength>,
  1400. "-webkit-flex-direction"?: FlexDirectionProperty,
  1401. "-webkit-flex-grow"?: GlobalsNumber,
  1402. "-webkit-flex-shrink"?: GlobalsNumber,
  1403. "-webkit-flex-wrap"?: FlexWrapProperty,
  1404. "-webkit-font-feature-settings"?: FontFeatureSettingsProperty,
  1405. "-webkit-font-kerning"?: FontKerningProperty,
  1406. "-webkit-font-smoothing"?: FontSmoothProperty<TLength>,
  1407. "-webkit-font-variant-ligatures"?: FontVariantLigaturesProperty,
  1408. "-webkit-hyphenate-character"?: HyphenateCharacterProperty,
  1409. "-webkit-hyphens"?: HyphensProperty,
  1410. "-webkit-initial-letter"?: InitialLetterProperty,
  1411. "-webkit-justify-content"?: JustifyContentProperty,
  1412. "-webkit-line-break"?: LineBreakProperty,
  1413. "-webkit-line-clamp"?: WebkitLineClampProperty,
  1414. "-webkit-margin-end"?: MarginInlineEndProperty<TLength>,
  1415. "-webkit-margin-start"?: MarginInlineStartProperty<TLength>,
  1416. "-webkit-mask-attachment"?: WebkitMaskAttachmentProperty,
  1417. "-webkit-mask-box-image-outset"?: MaskBorderOutsetProperty<TLength>,
  1418. "-webkit-mask-box-image-repeat"?: MaskBorderRepeatProperty,
  1419. "-webkit-mask-box-image-slice"?: MaskBorderSliceProperty,
  1420. "-webkit-mask-box-image-source"?: MaskBorderSourceProperty,
  1421. "-webkit-mask-box-image-width"?: MaskBorderWidthProperty<TLength>,
  1422. "-webkit-mask-clip"?: WebkitMaskClipProperty,
  1423. "-webkit-mask-composite"?: WebkitMaskCompositeProperty,
  1424. "-webkit-mask-image"?: WebkitMaskImageProperty,
  1425. "-webkit-mask-origin"?: WebkitMaskOriginProperty,
  1426. "-webkit-mask-position"?: WebkitMaskPositionProperty<TLength>,
  1427. "-webkit-mask-position-x"?: WebkitMaskPositionXProperty<TLength>,
  1428. "-webkit-mask-position-y"?: WebkitMaskPositionYProperty<TLength>,
  1429. "-webkit-mask-repeat"?: WebkitMaskRepeatProperty,
  1430. "-webkit-mask-repeat-x"?: WebkitMaskRepeatXProperty,
  1431. "-webkit-mask-repeat-y"?: WebkitMaskRepeatYProperty,
  1432. "-webkit-mask-size"?: WebkitMaskSizeProperty<TLength>,
  1433. "-webkit-max-inline-size"?: MaxInlineSizeProperty<TLength>,
  1434. "-webkit-order"?: GlobalsNumber,
  1435. "-webkit-overflow-scrolling"?: WebkitOverflowScrollingProperty,
  1436. "-webkit-padding-end"?: PaddingInlineEndProperty<TLength>,
  1437. "-webkit-padding-start"?: PaddingInlineStartProperty<TLength>,
  1438. "-webkit-perspective"?: PerspectiveProperty<TLength>,
  1439. "-webkit-perspective-origin"?: PerspectiveOriginProperty<TLength>,
  1440. "-webkit-print-color-adjust"?: PrintColorAdjustProperty,
  1441. "-webkit-ruby-position"?: RubyPositionProperty,
  1442. "-webkit-scroll-snap-type"?: ScrollSnapTypeProperty,
  1443. "-webkit-shape-margin"?: ShapeMarginProperty<TLength>,
  1444. "-webkit-tap-highlight-color"?: WebkitTapHighlightColorProperty,
  1445. "-webkit-text-combine"?: TextCombineUprightProperty,
  1446. "-webkit-text-decoration-color"?: TextDecorationColorProperty,
  1447. "-webkit-text-decoration-line"?: TextDecorationLineProperty,
  1448. "-webkit-text-decoration-skip"?: TextDecorationSkipProperty,
  1449. "-webkit-text-decoration-style"?: TextDecorationStyleProperty,
  1450. "-webkit-text-emphasis-color"?: TextEmphasisColorProperty,
  1451. "-webkit-text-emphasis-position"?: GlobalsString,
  1452. "-webkit-text-emphasis-style"?: TextEmphasisStyleProperty,
  1453. "-webkit-text-fill-color"?: WebkitTextFillColorProperty,
  1454. "-webkit-text-orientation"?: TextOrientationProperty,
  1455. "-webkit-text-size-adjust"?: TextSizeAdjustProperty,
  1456. "-webkit-text-stroke-color"?: WebkitTextStrokeColorProperty,
  1457. "-webkit-text-stroke-width"?: WebkitTextStrokeWidthProperty<TLength>,
  1458. "-webkit-text-underline-position"?: TextUnderlinePositionProperty,
  1459. "-webkit-touch-callout"?: WebkitTouchCalloutProperty,
  1460. "-webkit-transform"?: TransformProperty,
  1461. "-webkit-transform-origin"?: TransformOriginProperty<TLength>,
  1462. "-webkit-transform-style"?: TransformStyleProperty,
  1463. "-webkit-transition-delay"?: GlobalsString,
  1464. "-webkit-transition-duration"?: GlobalsString,
  1465. "-webkit-transition-property"?: TransitionPropertyProperty,
  1466. "-webkit-transition-timing-function"?: TransitionTimingFunctionProperty,
  1467. "-webkit-user-modify"?: WebkitUserModifyProperty,
  1468. "-webkit-user-select"?: UserSelectProperty,
  1469. "-webkit-writing-mode"?: WritingModeProperty,
  1470. };
  1471. export type VendorShorthandPropertiesHyphen<TLength = string | 0> = {
  1472. "-moz-animation"?: AnimationProperty,
  1473. "-moz-border-image"?: BorderImageProperty,
  1474. "-moz-column-rule"?: ColumnRuleProperty<TLength>,
  1475. "-moz-columns"?: ColumnsProperty<TLength>,
  1476. "-moz-transition"?: TransitionProperty,
  1477. "-ms-content-zoom-limit"?: GlobalsString,
  1478. "-ms-content-zoom-snap"?: MsContentZoomSnapProperty,
  1479. "-ms-flex"?: FlexProperty<TLength>,
  1480. "-ms-scroll-limit"?: GlobalsString,
  1481. "-ms-scroll-snap-x"?: GlobalsString,
  1482. "-ms-scroll-snap-y"?: GlobalsString,
  1483. "-ms-transition"?: TransitionProperty,
  1484. "-webkit-animation"?: AnimationProperty,
  1485. "-webkit-border-before"?: WebkitBorderBeforeProperty<TLength>,
  1486. "-webkit-border-image"?: BorderImageProperty,
  1487. "-webkit-border-radius"?: BorderRadiusProperty<TLength>,
  1488. "-webkit-column-rule"?: ColumnRuleProperty<TLength>,
  1489. "-webkit-columns"?: ColumnsProperty<TLength>,
  1490. "-webkit-flex"?: FlexProperty<TLength>,
  1491. "-webkit-flex-flow"?: FlexFlowProperty,
  1492. "-webkit-mask"?: WebkitMaskProperty<TLength>,
  1493. "-webkit-mask-box-image"?: MaskBorderProperty,
  1494. "-webkit-text-emphasis"?: TextEmphasisProperty,
  1495. "-webkit-text-stroke"?: WebkitTextStrokeProperty<TLength>,
  1496. "-webkit-transition"?: TransitionProperty,
  1497. };
  1498. export type VendorPropertiesHyphen<TLength = string | 0> = VendorLonghandPropertiesHyphen<TLength> & VendorShorthandPropertiesHyphen<TLength>;
  1499. export type ObsoletePropertiesHyphen<TLength = string | 0> = {
  1500. azimuth?: AzimuthProperty,
  1501. "box-align"?: BoxAlignProperty,
  1502. "box-direction"?: BoxDirectionProperty,
  1503. "box-flex"?: GlobalsNumber,
  1504. "box-flex-group"?: GlobalsNumber,
  1505. "box-lines"?: BoxLinesProperty,
  1506. "box-ordinal-group"?: GlobalsNumber,
  1507. "box-orient"?: BoxOrientProperty,
  1508. "box-pack"?: BoxPackProperty,
  1509. clip?: ClipProperty,
  1510. "grid-column-gap"?: GridColumnGapProperty<TLength>,
  1511. "grid-gap"?: GridGapProperty<TLength>,
  1512. "grid-row-gap"?: GridRowGapProperty<TLength>,
  1513. "ime-mode"?: ImeModeProperty,
  1514. "offset-block"?: InsetBlockProperty<TLength>,
  1515. "offset-block-end"?: InsetBlockEndProperty<TLength>,
  1516. "offset-block-start"?: InsetBlockStartProperty<TLength>,
  1517. "offset-inline"?: InsetInlineProperty<TLength>,
  1518. "offset-inline-end"?: InsetInlineEndProperty<TLength>,
  1519. "offset-inline-start"?: InsetInlineStartProperty<TLength>,
  1520. "scroll-snap-coordinate"?: ScrollSnapCoordinateProperty<TLength>,
  1521. "scroll-snap-destination"?: ScrollSnapDestinationProperty<TLength>,
  1522. "scroll-snap-points-x"?: ScrollSnapPointsXProperty,
  1523. "scroll-snap-points-y"?: ScrollSnapPointsYProperty,
  1524. "scroll-snap-type-x"?: ScrollSnapTypeXProperty,
  1525. "scroll-snap-type-y"?: ScrollSnapTypeYProperty,
  1526. "-khtml-box-align"?: BoxAlignProperty,
  1527. "-khtml-box-direction"?: BoxDirectionProperty,
  1528. "-khtml-box-flex"?: GlobalsNumber,
  1529. "-khtml-box-flex-group"?: GlobalsNumber,
  1530. "-khtml-box-lines"?: BoxLinesProperty,
  1531. "-khtml-box-ordinal-group"?: GlobalsNumber,
  1532. "-khtml-box-orient"?: BoxOrientProperty,
  1533. "-khtml-box-pack"?: BoxPackProperty,
  1534. "-khtml-line-break"?: LineBreakProperty,
  1535. "-khtml-opacity"?: OpacityProperty,
  1536. "-khtml-user-select"?: UserSelectProperty,
  1537. "-moz-background-clip"?: BackgroundClipProperty,
  1538. "-moz-background-inline-policy"?: BoxDecorationBreakProperty,
  1539. "-moz-background-origin"?: BackgroundOriginProperty,
  1540. "-moz-background-size"?: BackgroundSizeProperty<TLength>,
  1541. "-moz-binding"?: MozBindingProperty,
  1542. "-moz-border-radius"?: BorderRadiusProperty<TLength>,
  1543. "-moz-border-radius-bottomleft"?: BorderBottomLeftRadiusProperty<TLength>,
  1544. "-moz-border-radius-bottomright"?: BorderBottomRightRadiusProperty<TLength>,
  1545. "-moz-border-radius-topleft"?: BorderTopLeftRadiusProperty<TLength>,
  1546. "-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength>,
  1547. "-moz-box-align"?: BoxAlignProperty,
  1548. "-moz-box-direction"?: BoxDirectionProperty,
  1549. "-moz-box-flex"?: GlobalsNumber,
  1550. "-moz-box-ordinal-group"?: GlobalsNumber,
  1551. "-moz-box-orient"?: BoxOrientProperty,
  1552. "-moz-box-pack"?: BoxPackProperty,
  1553. "-moz-box-shadow"?: BoxShadowProperty,
  1554. "-moz-float-edge"?: MozFloatEdgeProperty,
  1555. "-moz-force-broken-image-icon"?: MozForceBrokenImageIconProperty,
  1556. "-moz-opacity"?: OpacityProperty,
  1557. "-moz-outline"?: OutlineProperty<TLength>,
  1558. "-moz-outline-color"?: OutlineColorProperty,
  1559. "-moz-outline-radius"?: MozOutlineRadiusProperty<TLength>,
  1560. "-moz-outline-radius-bottomleft"?: MozOutlineRadiusBottomleftProperty<TLength>,
  1561. "-moz-outline-radius-bottomright"?: MozOutlineRadiusBottomrightProperty<TLength>,
  1562. "-moz-outline-radius-topleft"?: MozOutlineRadiusTopleftProperty<TLength>,
  1563. "-moz-outline-radius-topright"?: MozOutlineRadiusToprightProperty<TLength>,
  1564. "-moz-outline-style"?: OutlineStyleProperty,
  1565. "-moz-outline-width"?: OutlineWidthProperty<TLength>,
  1566. "-moz-text-align-last"?: TextAlignLastProperty,
  1567. "-moz-text-decoration-color"?: TextDecorationColorProperty,
  1568. "-moz-text-decoration-line"?: TextDecorationLineProperty,
  1569. "-moz-text-decoration-style"?: TextDecorationStyleProperty,
  1570. "-moz-user-input"?: MozUserInputProperty,
  1571. "-ms-ime-mode"?: ImeModeProperty,
  1572. "-o-animation"?: AnimationProperty,
  1573. "-o-animation-delay"?: GlobalsString,
  1574. "-o-animation-direction"?: AnimationDirectionProperty,
  1575. "-o-animation-duration"?: GlobalsString,
  1576. "-o-animation-fill-mode"?: AnimationFillModeProperty,
  1577. "-o-animation-iteration-count"?: AnimationIterationCountProperty,
  1578. "-o-animation-name"?: AnimationNameProperty,
  1579. "-o-animation-play-state"?: AnimationPlayStateProperty,
  1580. "-o-animation-timing-function"?: AnimationTimingFunctionProperty,
  1581. "-o-background-size"?: BackgroundSizeProperty<TLength>,
  1582. "-o-border-image"?: BorderImageProperty,
  1583. "-o-object-fit"?: ObjectFitProperty,
  1584. "-o-object-position"?: ObjectPositionProperty<TLength>,
  1585. "-o-tab-size"?: TabSizeProperty<TLength>,
  1586. "-o-text-overflow"?: TextOverflowProperty,
  1587. "-o-transform"?: TransformProperty,
  1588. "-o-transform-origin"?: TransformOriginProperty<TLength>,
  1589. "-o-transition"?: TransitionProperty,
  1590. "-o-transition-delay"?: GlobalsString,
  1591. "-o-transition-duration"?: GlobalsString,
  1592. "-o-transition-property"?: TransitionPropertyProperty,
  1593. "-o-transition-timing-function"?: TransitionTimingFunctionProperty,
  1594. "-webkit-box-align"?: BoxAlignProperty,
  1595. "-webkit-box-direction"?: BoxDirectionProperty,
  1596. "-webkit-box-flex"?: GlobalsNumber,
  1597. "-webkit-box-flex-group"?: GlobalsNumber,
  1598. "-webkit-box-lines"?: BoxLinesProperty,
  1599. "-webkit-box-ordinal-group"?: GlobalsNumber,
  1600. "-webkit-box-orient"?: BoxOrientProperty,
  1601. "-webkit-box-pack"?: BoxPackProperty,
  1602. "-webkit-scroll-snap-points-x"?: ScrollSnapPointsXProperty,
  1603. "-webkit-scroll-snap-points-y"?: ScrollSnapPointsYProperty,
  1604. };
  1605. export type SvgPropertiesHyphen<TLength = string | 0> = {
  1606. "alignment-baseline"?: AlignmentBaselineProperty,
  1607. "baseline-shift"?: BaselineShiftProperty<TLength>,
  1608. clip?: ClipProperty,
  1609. "clip-path"?: ClipPathProperty,
  1610. "clip-rule"?: ClipRuleProperty,
  1611. color?: ColorProperty,
  1612. "color-interpolation"?: ColorInterpolationProperty,
  1613. "color-rendering"?: ColorRenderingProperty,
  1614. cursor?: CursorProperty,
  1615. direction?: DirectionProperty,
  1616. display?: DisplayProperty,
  1617. "dominant-baseline"?: DominantBaselineProperty,
  1618. fill?: FillProperty,
  1619. "fill-opacity"?: GlobalsNumber,
  1620. "fill-rule"?: FillRuleProperty,
  1621. filter?: FilterProperty,
  1622. "flood-color"?: FloodColorProperty,
  1623. "flood-opacity"?: GlobalsNumber,
  1624. font?: FontProperty,
  1625. "font-family"?: FontFamilyProperty,
  1626. "font-size"?: FontSizeProperty<TLength>,
  1627. "font-size-adjust"?: FontSizeAdjustProperty,
  1628. "font-stretch"?: FontStretchProperty,
  1629. "font-style"?: FontStyleProperty,
  1630. "font-variant"?: FontVariantProperty,
  1631. "font-weight"?: FontWeightProperty,
  1632. "glyph-orientation-vertical"?: GlyphOrientationVerticalProperty,
  1633. "image-rendering"?: ImageRenderingProperty,
  1634. "letter-spacing"?: LetterSpacingProperty<TLength>,
  1635. "lighting-color"?: LightingColorProperty,
  1636. "line-height"?: LineHeightProperty<TLength>,
  1637. marker?: MarkerProperty,
  1638. "marker-end"?: MarkerEndProperty,
  1639. "marker-mid"?: MarkerMidProperty,
  1640. "marker-start"?: MarkerStartProperty,
  1641. mask?: MaskProperty<TLength>,
  1642. opacity?: OpacityProperty,
  1643. overflow?: OverflowProperty,
  1644. "paint-order"?: PaintOrderProperty,
  1645. "pointer-events"?: PointerEventsProperty,
  1646. "shape-rendering"?: ShapeRenderingProperty,
  1647. "stop-color"?: StopColorProperty,
  1648. "stop-opacity"?: GlobalsNumber,
  1649. stroke?: StrokeProperty,
  1650. "stroke-dasharray"?: StrokeDasharrayProperty<TLength>,
  1651. "stroke-dashoffset"?: StrokeDashoffsetProperty<TLength>,
  1652. "stroke-linecap"?: StrokeLinecapProperty,
  1653. "stroke-linejoin"?: StrokeLinejoinProperty,
  1654. "stroke-miterlimit"?: GlobalsNumber,
  1655. "stroke-opacity"?: GlobalsNumber,
  1656. "stroke-width"?: StrokeWidthProperty<TLength>,
  1657. "text-anchor"?: TextAnchorProperty,
  1658. "text-decoration"?: TextDecorationProperty<TLength>,
  1659. "text-rendering"?: TextRenderingProperty,
  1660. "unicode-bidi"?: UnicodeBidiProperty,
  1661. "vector-effect"?: VectorEffectProperty,
  1662. visibility?: VisibilityProperty,
  1663. "white-space"?: WhiteSpaceProperty,
  1664. "word-spacing"?: WordSpacingProperty<TLength>,
  1665. "writing-mode"?: WritingModeProperty,
  1666. };
  1667. export type PropertiesHyphen<TLength = string | 0> = StandardPropertiesHyphen<TLength> &
  1668. VendorPropertiesHyphen<TLength> &
  1669. ObsoletePropertiesHyphen<TLength> &
  1670. SvgPropertiesHyphen<TLength>;
  1671. export type StandardLonghandPropertiesFallback<TLength = string | 0> = {
  1672. accentColor?: AccentColorProperty | AccentColorProperty[],
  1673. alignContent?: AlignContentProperty | AlignContentProperty[],
  1674. alignItems?: AlignItemsProperty | AlignItemsProperty[],
  1675. alignSelf?: AlignSelfProperty | AlignSelfProperty[],
  1676. alignTracks?: AlignTracksProperty | AlignTracksProperty[],
  1677. animationComposition?: GlobalsString | GlobalsString[],
  1678. animationDelay?: GlobalsString | GlobalsString[],
  1679. animationDirection?: AnimationDirectionProperty | AnimationDirectionProperty[],
  1680. animationDuration?: GlobalsString | GlobalsString[],
  1681. animationFillMode?: AnimationFillModeProperty | AnimationFillModeProperty[],
  1682. animationIterationCount?: AnimationIterationCountProperty | AnimationIterationCountProperty[],
  1683. animationName?: AnimationNameProperty | AnimationNameProperty[],
  1684. animationPlayState?: AnimationPlayStateProperty | AnimationPlayStateProperty[],
  1685. animationTimeline?: AnimationTimelineProperty | AnimationTimelineProperty[],
  1686. animationTimingFunction?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
  1687. appearance?: AppearanceProperty | AppearanceProperty[],
  1688. aspectRatio?: AspectRatioProperty | AspectRatioProperty[],
  1689. backdropFilter?: BackdropFilterProperty | BackdropFilterProperty[],
  1690. backfaceVisibility?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
  1691. backgroundAttachment?: BackgroundAttachmentProperty | BackgroundAttachmentProperty[],
  1692. backgroundBlendMode?: BackgroundBlendModeProperty | BackgroundBlendModeProperty[],
  1693. backgroundClip?: BackgroundClipProperty | BackgroundClipProperty[],
  1694. backgroundColor?: BackgroundColorProperty | BackgroundColorProperty[],
  1695. backgroundImage?: BackgroundImageProperty | BackgroundImageProperty[],
  1696. backgroundOrigin?: BackgroundOriginProperty | BackgroundOriginProperty[],
  1697. backgroundPositionX?: BackgroundPositionXProperty<TLength> | BackgroundPositionXProperty<TLength>[],
  1698. backgroundPositionY?: BackgroundPositionYProperty<TLength> | BackgroundPositionYProperty<TLength>[],
  1699. backgroundRepeat?: BackgroundRepeatProperty | BackgroundRepeatProperty[],
  1700. backgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
  1701. blockOverflow?: BlockOverflowProperty | BlockOverflowProperty[],
  1702. blockSize?: BlockSizeProperty<TLength> | BlockSizeProperty<TLength>[],
  1703. borderBlockColor?: BorderBlockColorProperty | BorderBlockColorProperty[],
  1704. borderBlockEndColor?: BorderBlockEndColorProperty | BorderBlockEndColorProperty[],
  1705. borderBlockEndStyle?: BorderBlockEndStyleProperty | BorderBlockEndStyleProperty[],
  1706. borderBlockEndWidth?: BorderBlockEndWidthProperty<TLength> | BorderBlockEndWidthProperty<TLength>[],
  1707. borderBlockStartColor?: BorderBlockStartColorProperty | BorderBlockStartColorProperty[],
  1708. borderBlockStartStyle?: BorderBlockStartStyleProperty | BorderBlockStartStyleProperty[],
  1709. borderBlockStartWidth?: BorderBlockStartWidthProperty<TLength> | BorderBlockStartWidthProperty<TLength>[],
  1710. borderBlockStyle?: BorderBlockStyleProperty | BorderBlockStyleProperty[],
  1711. borderBlockWidth?: BorderBlockWidthProperty<TLength> | BorderBlockWidthProperty<TLength>[],
  1712. borderBottomColor?: BorderBottomColorProperty | BorderBottomColorProperty[],
  1713. borderBottomLeftRadius?: BorderBottomLeftRadiusProperty<TLength> | BorderBottomLeftRadiusProperty<TLength>[],
  1714. borderBottomRightRadius?: BorderBottomRightRadiusProperty<TLength> | BorderBottomRightRadiusProperty<TLength>[],
  1715. borderBottomStyle?: BorderBottomStyleProperty | BorderBottomStyleProperty[],
  1716. borderBottomWidth?: BorderBottomWidthProperty<TLength> | BorderBottomWidthProperty<TLength>[],
  1717. borderCollapse?: BorderCollapseProperty | BorderCollapseProperty[],
  1718. borderEndEndRadius?: BorderEndEndRadiusProperty<TLength> | BorderEndEndRadiusProperty<TLength>[],
  1719. borderEndStartRadius?: BorderEndStartRadiusProperty<TLength> | BorderEndStartRadiusProperty<TLength>[],
  1720. borderImageOutset?: BorderImageOutsetProperty<TLength> | BorderImageOutsetProperty<TLength>[],
  1721. borderImageRepeat?: BorderImageRepeatProperty | BorderImageRepeatProperty[],
  1722. borderImageSlice?: BorderImageSliceProperty | BorderImageSliceProperty[],
  1723. borderImageSource?: BorderImageSourceProperty | BorderImageSourceProperty[],
  1724. borderImageWidth?: BorderImageWidthProperty<TLength> | BorderImageWidthProperty<TLength>[],
  1725. borderInlineColor?: BorderInlineColorProperty | BorderInlineColorProperty[],
  1726. borderInlineEndColor?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[],
  1727. borderInlineEndStyle?: BorderInlineEndStyleProperty | BorderInlineEndStyleProperty[],
  1728. borderInlineEndWidth?: BorderInlineEndWidthProperty<TLength> | BorderInlineEndWidthProperty<TLength>[],
  1729. borderInlineStartColor?: BorderInlineStartColorProperty | BorderInlineStartColorProperty[],
  1730. borderInlineStartStyle?: BorderInlineStartStyleProperty | BorderInlineStartStyleProperty[],
  1731. borderInlineStartWidth?: BorderInlineStartWidthProperty<TLength> | BorderInlineStartWidthProperty<TLength>[],
  1732. borderInlineStyle?: BorderInlineStyleProperty | BorderInlineStyleProperty[],
  1733. borderInlineWidth?: BorderInlineWidthProperty<TLength> | BorderInlineWidthProperty<TLength>[],
  1734. borderLeftColor?: BorderLeftColorProperty | BorderLeftColorProperty[],
  1735. borderLeftStyle?: BorderLeftStyleProperty | BorderLeftStyleProperty[],
  1736. borderLeftWidth?: BorderLeftWidthProperty<TLength> | BorderLeftWidthProperty<TLength>[],
  1737. borderRightColor?: BorderRightColorProperty | BorderRightColorProperty[],
  1738. borderRightStyle?: BorderRightStyleProperty | BorderRightStyleProperty[],
  1739. borderRightWidth?: BorderRightWidthProperty<TLength> | BorderRightWidthProperty<TLength>[],
  1740. borderSpacing?: BorderSpacingProperty<TLength> | BorderSpacingProperty<TLength>[],
  1741. borderStartEndRadius?: BorderStartEndRadiusProperty<TLength> | BorderStartEndRadiusProperty<TLength>[],
  1742. borderStartStartRadius?: BorderStartStartRadiusProperty<TLength> | BorderStartStartRadiusProperty<TLength>[],
  1743. borderTopColor?: BorderTopColorProperty | BorderTopColorProperty[],
  1744. borderTopLeftRadius?: BorderTopLeftRadiusProperty<TLength> | BorderTopLeftRadiusProperty<TLength>[],
  1745. borderTopRightRadius?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
  1746. borderTopStyle?: BorderTopStyleProperty | BorderTopStyleProperty[],
  1747. borderTopWidth?: BorderTopWidthProperty<TLength> | BorderTopWidthProperty<TLength>[],
  1748. bottom?: BottomProperty<TLength> | BottomProperty<TLength>[],
  1749. boxDecorationBreak?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
  1750. boxShadow?: BoxShadowProperty | BoxShadowProperty[],
  1751. boxSizing?: BoxSizingProperty | BoxSizingProperty[],
  1752. breakAfter?: BreakAfterProperty | BreakAfterProperty[],
  1753. breakBefore?: BreakBeforeProperty | BreakBeforeProperty[],
  1754. breakInside?: BreakInsideProperty | BreakInsideProperty[],
  1755. captionSide?: CaptionSideProperty | CaptionSideProperty[],
  1756. caretColor?: CaretColorProperty | CaretColorProperty[],
  1757. clear?: ClearProperty | ClearProperty[],
  1758. clipPath?: ClipPathProperty | ClipPathProperty[],
  1759. color?: ColorProperty | ColorProperty[],
  1760. colorAdjust?: PrintColorAdjustProperty | PrintColorAdjustProperty[],
  1761. colorScheme?: ColorSchemeProperty | ColorSchemeProperty[],
  1762. columnCount?: ColumnCountProperty | ColumnCountProperty[],
  1763. columnFill?: ColumnFillProperty | ColumnFillProperty[],
  1764. columnGap?: ColumnGapProperty<TLength> | ColumnGapProperty<TLength>[],
  1765. columnRuleColor?: ColumnRuleColorProperty | ColumnRuleColorProperty[],
  1766. columnRuleStyle?: ColumnRuleStyleProperty | ColumnRuleStyleProperty[],
  1767. columnRuleWidth?: ColumnRuleWidthProperty<TLength> | ColumnRuleWidthProperty<TLength>[],
  1768. columnSpan?: ColumnSpanProperty | ColumnSpanProperty[],
  1769. columnWidth?: ColumnWidthProperty<TLength> | ColumnWidthProperty<TLength>[],
  1770. contain?: ContainProperty | ContainProperty[],
  1771. content?: ContentProperty | ContentProperty[],
  1772. contentVisibility?: ContentVisibilityProperty | ContentVisibilityProperty[],
  1773. counterIncrement?: CounterIncrementProperty | CounterIncrementProperty[],
  1774. counterReset?: CounterResetProperty | CounterResetProperty[],
  1775. counterSet?: CounterSetProperty | CounterSetProperty[],
  1776. cursor?: CursorProperty | CursorProperty[],
  1777. direction?: DirectionProperty | DirectionProperty[],
  1778. display?: DisplayProperty | DisplayProperty[],
  1779. emptyCells?: EmptyCellsProperty | EmptyCellsProperty[],
  1780. filter?: FilterProperty | FilterProperty[],
  1781. flexBasis?: FlexBasisProperty<TLength> | FlexBasisProperty<TLength>[],
  1782. flexDirection?: FlexDirectionProperty | FlexDirectionProperty[],
  1783. flexGrow?: GlobalsNumber | GlobalsNumber[],
  1784. flexShrink?: GlobalsNumber | GlobalsNumber[],
  1785. flexWrap?: FlexWrapProperty | FlexWrapProperty[],
  1786. float?: FloatProperty | FloatProperty[],
  1787. fontFamily?: FontFamilyProperty | FontFamilyProperty[],
  1788. fontFeatureSettings?: FontFeatureSettingsProperty | FontFeatureSettingsProperty[],
  1789. fontKerning?: FontKerningProperty | FontKerningProperty[],
  1790. fontLanguageOverride?: FontLanguageOverrideProperty | FontLanguageOverrideProperty[],
  1791. fontOpticalSizing?: FontOpticalSizingProperty | FontOpticalSizingProperty[],
  1792. fontSize?: FontSizeProperty<TLength> | FontSizeProperty<TLength>[],
  1793. fontSizeAdjust?: FontSizeAdjustProperty | FontSizeAdjustProperty[],
  1794. fontSmooth?: FontSmoothProperty<TLength> | FontSmoothProperty<TLength>[],
  1795. fontStretch?: FontStretchProperty | FontStretchProperty[],
  1796. fontStyle?: FontStyleProperty | FontStyleProperty[],
  1797. fontSynthesis?: FontSynthesisProperty | FontSynthesisProperty[],
  1798. fontVariant?: FontVariantProperty | FontVariantProperty[],
  1799. fontVariantAlternates?: FontVariantAlternatesProperty | FontVariantAlternatesProperty[],
  1800. fontVariantCaps?: FontVariantCapsProperty | FontVariantCapsProperty[],
  1801. fontVariantEastAsian?: FontVariantEastAsianProperty | FontVariantEastAsianProperty[],
  1802. fontVariantLigatures?: FontVariantLigaturesProperty | FontVariantLigaturesProperty[],
  1803. fontVariantNumeric?: FontVariantNumericProperty | FontVariantNumericProperty[],
  1804. fontVariantPosition?: FontVariantPositionProperty | FontVariantPositionProperty[],
  1805. fontVariationSettings?: FontVariationSettingsProperty | FontVariationSettingsProperty[],
  1806. fontWeight?: FontWeightProperty | FontWeightProperty[],
  1807. forcedColorAdjust?: ForcedColorAdjustProperty | ForcedColorAdjustProperty[],
  1808. gridAutoColumns?: GridAutoColumnsProperty<TLength> | GridAutoColumnsProperty<TLength>[],
  1809. gridAutoFlow?: GridAutoFlowProperty | GridAutoFlowProperty[],
  1810. gridAutoRows?: GridAutoRowsProperty<TLength> | GridAutoRowsProperty<TLength>[],
  1811. gridColumnEnd?: GridColumnEndProperty | GridColumnEndProperty[],
  1812. gridColumnStart?: GridColumnStartProperty | GridColumnStartProperty[],
  1813. gridRowEnd?: GridRowEndProperty | GridRowEndProperty[],
  1814. gridRowStart?: GridRowStartProperty | GridRowStartProperty[],
  1815. gridTemplateAreas?: GridTemplateAreasProperty | GridTemplateAreasProperty[],
  1816. gridTemplateColumns?: GridTemplateColumnsProperty<TLength> | GridTemplateColumnsProperty<TLength>[],
  1817. gridTemplateRows?: GridTemplateRowsProperty<TLength> | GridTemplateRowsProperty<TLength>[],
  1818. hangingPunctuation?: HangingPunctuationProperty | HangingPunctuationProperty[],
  1819. height?: HeightProperty<TLength> | HeightProperty<TLength>[],
  1820. hyphenateCharacter?: HyphenateCharacterProperty | HyphenateCharacterProperty[],
  1821. hyphens?: HyphensProperty | HyphensProperty[],
  1822. imageOrientation?: ImageOrientationProperty | ImageOrientationProperty[],
  1823. imageRendering?: ImageRenderingProperty | ImageRenderingProperty[],
  1824. imageResolution?: ImageResolutionProperty | ImageResolutionProperty[],
  1825. initialLetter?: InitialLetterProperty | InitialLetterProperty[],
  1826. inlineSize?: InlineSizeProperty<TLength> | InlineSizeProperty<TLength>[],
  1827. inputSecurity?: InputSecurityProperty | InputSecurityProperty[],
  1828. inset?: InsetProperty<TLength> | InsetProperty<TLength>[],
  1829. insetBlock?: InsetBlockProperty<TLength> | InsetBlockProperty<TLength>[],
  1830. insetBlockEnd?: InsetBlockEndProperty<TLength> | InsetBlockEndProperty<TLength>[],
  1831. insetBlockStart?: InsetBlockStartProperty<TLength> | InsetBlockStartProperty<TLength>[],
  1832. insetInline?: InsetInlineProperty<TLength> | InsetInlineProperty<TLength>[],
  1833. insetInlineEnd?: InsetInlineEndProperty<TLength> | InsetInlineEndProperty<TLength>[],
  1834. insetInlineStart?: InsetInlineStartProperty<TLength> | InsetInlineStartProperty<TLength>[],
  1835. isolation?: IsolationProperty | IsolationProperty[],
  1836. justifyContent?: JustifyContentProperty | JustifyContentProperty[],
  1837. justifyItems?: JustifyItemsProperty | JustifyItemsProperty[],
  1838. justifySelf?: JustifySelfProperty | JustifySelfProperty[],
  1839. justifyTracks?: JustifyTracksProperty | JustifyTracksProperty[],
  1840. left?: LeftProperty<TLength> | LeftProperty<TLength>[],
  1841. letterSpacing?: LetterSpacingProperty<TLength> | LetterSpacingProperty<TLength>[],
  1842. lineBreak?: LineBreakProperty | LineBreakProperty[],
  1843. lineHeight?: LineHeightProperty<TLength> | LineHeightProperty<TLength>[],
  1844. lineHeightStep?: LineHeightStepProperty<TLength> | LineHeightStepProperty<TLength>[],
  1845. listStyleImage?: ListStyleImageProperty | ListStyleImageProperty[],
  1846. listStylePosition?: ListStylePositionProperty | ListStylePositionProperty[],
  1847. listStyleType?: ListStyleTypeProperty | ListStyleTypeProperty[],
  1848. marginBlock?: MarginBlockProperty<TLength> | MarginBlockProperty<TLength>[],
  1849. marginBlockEnd?: MarginBlockEndProperty<TLength> | MarginBlockEndProperty<TLength>[],
  1850. marginBlockStart?: MarginBlockStartProperty<TLength> | MarginBlockStartProperty<TLength>[],
  1851. marginBottom?: MarginBottomProperty<TLength> | MarginBottomProperty<TLength>[],
  1852. marginInline?: MarginInlineProperty<TLength> | MarginInlineProperty<TLength>[],
  1853. marginInlineEnd?: MarginInlineEndProperty<TLength> | MarginInlineEndProperty<TLength>[],
  1854. marginInlineStart?: MarginInlineStartProperty<TLength> | MarginInlineStartProperty<TLength>[],
  1855. marginLeft?: MarginLeftProperty<TLength> | MarginLeftProperty<TLength>[],
  1856. marginRight?: MarginRightProperty<TLength> | MarginRightProperty<TLength>[],
  1857. marginTop?: MarginTopProperty<TLength> | MarginTopProperty<TLength>[],
  1858. maskBorderMode?: MaskBorderModeProperty | MaskBorderModeProperty[],
  1859. maskBorderOutset?: MaskBorderOutsetProperty<TLength> | MaskBorderOutsetProperty<TLength>[],
  1860. maskBorderRepeat?: MaskBorderRepeatProperty | MaskBorderRepeatProperty[],
  1861. maskBorderSlice?: MaskBorderSliceProperty | MaskBorderSliceProperty[],
  1862. maskBorderSource?: MaskBorderSourceProperty | MaskBorderSourceProperty[],
  1863. maskBorderWidth?: MaskBorderWidthProperty<TLength> | MaskBorderWidthProperty<TLength>[],
  1864. maskClip?: MaskClipProperty | MaskClipProperty[],
  1865. maskComposite?: MaskCompositeProperty | MaskCompositeProperty[],
  1866. maskImage?: MaskImageProperty | MaskImageProperty[],
  1867. maskMode?: MaskModeProperty | MaskModeProperty[],
  1868. maskOrigin?: MaskOriginProperty | MaskOriginProperty[],
  1869. maskPosition?: MaskPositionProperty<TLength> | MaskPositionProperty<TLength>[],
  1870. maskRepeat?: MaskRepeatProperty | MaskRepeatProperty[],
  1871. maskSize?: MaskSizeProperty<TLength> | MaskSizeProperty<TLength>[],
  1872. maskType?: MaskTypeProperty | MaskTypeProperty[],
  1873. mathDepth?: MathDepthProperty | MathDepthProperty[],
  1874. mathShift?: MathShiftProperty | MathShiftProperty[],
  1875. mathStyle?: MathStyleProperty | MathStyleProperty[],
  1876. maxBlockSize?: MaxBlockSizeProperty<TLength> | MaxBlockSizeProperty<TLength>[],
  1877. maxHeight?: MaxHeightProperty<TLength> | MaxHeightProperty<TLength>[],
  1878. maxInlineSize?: MaxInlineSizeProperty<TLength> | MaxInlineSizeProperty<TLength>[],
  1879. maxLines?: MaxLinesProperty | MaxLinesProperty[],
  1880. maxWidth?: MaxWidthProperty<TLength> | MaxWidthProperty<TLength>[],
  1881. minBlockSize?: MinBlockSizeProperty<TLength> | MinBlockSizeProperty<TLength>[],
  1882. minHeight?: MinHeightProperty<TLength> | MinHeightProperty<TLength>[],
  1883. minInlineSize?: MinInlineSizeProperty<TLength> | MinInlineSizeProperty<TLength>[],
  1884. minWidth?: MinWidthProperty<TLength> | MinWidthProperty<TLength>[],
  1885. mixBlendMode?: MixBlendModeProperty | MixBlendModeProperty[],
  1886. motionDistance?: OffsetDistanceProperty<TLength> | OffsetDistanceProperty<TLength>[],
  1887. motionPath?: OffsetPathProperty | OffsetPathProperty[],
  1888. motionRotation?: OffsetRotateProperty | OffsetRotateProperty[],
  1889. objectFit?: ObjectFitProperty | ObjectFitProperty[],
  1890. objectPosition?: ObjectPositionProperty<TLength> | ObjectPositionProperty<TLength>[],
  1891. offsetAnchor?: OffsetAnchorProperty<TLength> | OffsetAnchorProperty<TLength>[],
  1892. offsetDistance?: OffsetDistanceProperty<TLength> | OffsetDistanceProperty<TLength>[],
  1893. offsetPath?: OffsetPathProperty | OffsetPathProperty[],
  1894. offsetRotate?: OffsetRotateProperty | OffsetRotateProperty[],
  1895. offsetRotation?: OffsetRotateProperty | OffsetRotateProperty[],
  1896. opacity?: OpacityProperty | OpacityProperty[],
  1897. order?: GlobalsNumber | GlobalsNumber[],
  1898. orphans?: GlobalsNumber | GlobalsNumber[],
  1899. outlineColor?: OutlineColorProperty | OutlineColorProperty[],
  1900. outlineOffset?: OutlineOffsetProperty<TLength> | OutlineOffsetProperty<TLength>[],
  1901. outlineStyle?: OutlineStyleProperty | OutlineStyleProperty[],
  1902. outlineWidth?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[],
  1903. overflowAnchor?: OverflowAnchorProperty | OverflowAnchorProperty[],
  1904. overflowBlock?: OverflowBlockProperty | OverflowBlockProperty[],
  1905. overflowClipBox?: OverflowClipBoxProperty | OverflowClipBoxProperty[],
  1906. overflowClipMargin?: OverflowClipMarginProperty<TLength> | OverflowClipMarginProperty<TLength>[],
  1907. overflowInline?: OverflowInlineProperty | OverflowInlineProperty[],
  1908. overflowWrap?: OverflowWrapProperty | OverflowWrapProperty[],
  1909. overflowX?: OverflowXProperty | OverflowXProperty[],
  1910. overflowY?: OverflowYProperty | OverflowYProperty[],
  1911. overscrollBehaviorBlock?: OverscrollBehaviorBlockProperty | OverscrollBehaviorBlockProperty[],
  1912. overscrollBehaviorInline?: OverscrollBehaviorInlineProperty | OverscrollBehaviorInlineProperty[],
  1913. overscrollBehaviorX?: OverscrollBehaviorXProperty | OverscrollBehaviorXProperty[],
  1914. overscrollBehaviorY?: OverscrollBehaviorYProperty | OverscrollBehaviorYProperty[],
  1915. paddingBlock?: PaddingBlockProperty<TLength> | PaddingBlockProperty<TLength>[],
  1916. paddingBlockEnd?: PaddingBlockEndProperty<TLength> | PaddingBlockEndProperty<TLength>[],
  1917. paddingBlockStart?: PaddingBlockStartProperty<TLength> | PaddingBlockStartProperty<TLength>[],
  1918. paddingBottom?: PaddingBottomProperty<TLength> | PaddingBottomProperty<TLength>[],
  1919. paddingInline?: PaddingInlineProperty<TLength> | PaddingInlineProperty<TLength>[],
  1920. paddingInlineEnd?: PaddingInlineEndProperty<TLength> | PaddingInlineEndProperty<TLength>[],
  1921. paddingInlineStart?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
  1922. paddingLeft?: PaddingLeftProperty<TLength> | PaddingLeftProperty<TLength>[],
  1923. paddingRight?: PaddingRightProperty<TLength> | PaddingRightProperty<TLength>[],
  1924. paddingTop?: PaddingTopProperty<TLength> | PaddingTopProperty<TLength>[],
  1925. pageBreakAfter?: PageBreakAfterProperty | PageBreakAfterProperty[],
  1926. pageBreakBefore?: PageBreakBeforeProperty | PageBreakBeforeProperty[],
  1927. pageBreakInside?: PageBreakInsideProperty | PageBreakInsideProperty[],
  1928. paintOrder?: PaintOrderProperty | PaintOrderProperty[],
  1929. perspective?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
  1930. perspectiveOrigin?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
  1931. placeContent?: PlaceContentProperty | PlaceContentProperty[],
  1932. pointerEvents?: PointerEventsProperty | PointerEventsProperty[],
  1933. position?: PositionProperty | PositionProperty[],
  1934. printColorAdjust?: PrintColorAdjustProperty | PrintColorAdjustProperty[],
  1935. quotes?: QuotesProperty | QuotesProperty[],
  1936. resize?: ResizeProperty | ResizeProperty[],
  1937. right?: RightProperty<TLength> | RightProperty<TLength>[],
  1938. rotate?: RotateProperty | RotateProperty[],
  1939. rowGap?: RowGapProperty<TLength> | RowGapProperty<TLength>[],
  1940. rubyAlign?: RubyAlignProperty | RubyAlignProperty[],
  1941. rubyMerge?: RubyMergeProperty | RubyMergeProperty[],
  1942. rubyPosition?: RubyPositionProperty | RubyPositionProperty[],
  1943. scale?: ScaleProperty | ScaleProperty[],
  1944. scrollBehavior?: ScrollBehaviorProperty | ScrollBehaviorProperty[],
  1945. scrollMargin?: ScrollMarginProperty<TLength> | ScrollMarginProperty<TLength>[],
  1946. scrollMarginBlock?: ScrollMarginBlockProperty<TLength> | ScrollMarginBlockProperty<TLength>[],
  1947. scrollMarginBlockEnd?: ScrollMarginBlockEndProperty<TLength> | ScrollMarginBlockEndProperty<TLength>[],
  1948. scrollMarginBlockStart?: ScrollMarginBlockStartProperty<TLength> | ScrollMarginBlockStartProperty<TLength>[],
  1949. scrollMarginBottom?: ScrollMarginBottomProperty<TLength> | ScrollMarginBottomProperty<TLength>[],
  1950. scrollMarginInline?: ScrollMarginInlineProperty<TLength> | ScrollMarginInlineProperty<TLength>[],
  1951. scrollMarginInlineEnd?: ScrollMarginInlineEndProperty<TLength> | ScrollMarginInlineEndProperty<TLength>[],
  1952. scrollMarginInlineStart?: ScrollMarginInlineStartProperty<TLength> | ScrollMarginInlineStartProperty<TLength>[],
  1953. scrollMarginLeft?: ScrollMarginLeftProperty<TLength> | ScrollMarginLeftProperty<TLength>[],
  1954. scrollMarginRight?: ScrollMarginRightProperty<TLength> | ScrollMarginRightProperty<TLength>[],
  1955. scrollMarginTop?: ScrollMarginTopProperty<TLength> | ScrollMarginTopProperty<TLength>[],
  1956. scrollPadding?: ScrollPaddingProperty<TLength> | ScrollPaddingProperty<TLength>[],
  1957. scrollPaddingBlock?: ScrollPaddingBlockProperty<TLength> | ScrollPaddingBlockProperty<TLength>[],
  1958. scrollPaddingBlockEnd?: ScrollPaddingBlockEndProperty<TLength> | ScrollPaddingBlockEndProperty<TLength>[],
  1959. scrollPaddingBlockStart?: ScrollPaddingBlockStartProperty<TLength> | ScrollPaddingBlockStartProperty<TLength>[],
  1960. scrollPaddingBottom?: ScrollPaddingBottomProperty<TLength> | ScrollPaddingBottomProperty<TLength>[],
  1961. scrollPaddingInline?: ScrollPaddingInlineProperty<TLength> | ScrollPaddingInlineProperty<TLength>[],
  1962. scrollPaddingInlineEnd?: ScrollPaddingInlineEndProperty<TLength> | ScrollPaddingInlineEndProperty<TLength>[],
  1963. scrollPaddingInlineStart?: ScrollPaddingInlineStartProperty<TLength> | ScrollPaddingInlineStartProperty<TLength>[],
  1964. scrollPaddingLeft?: ScrollPaddingLeftProperty<TLength> | ScrollPaddingLeftProperty<TLength>[],
  1965. scrollPaddingRight?: ScrollPaddingRightProperty<TLength> | ScrollPaddingRightProperty<TLength>[],
  1966. scrollPaddingTop?: ScrollPaddingTopProperty<TLength> | ScrollPaddingTopProperty<TLength>[],
  1967. scrollSnapAlign?: ScrollSnapAlignProperty | ScrollSnapAlignProperty[],
  1968. scrollSnapMargin?: ScrollMarginProperty<TLength> | ScrollMarginProperty<TLength>[],
  1969. scrollSnapMarginBottom?: ScrollMarginBottomProperty<TLength> | ScrollMarginBottomProperty<TLength>[],
  1970. scrollSnapMarginLeft?: ScrollMarginLeftProperty<TLength> | ScrollMarginLeftProperty<TLength>[],
  1971. scrollSnapMarginRight?: ScrollMarginRightProperty<TLength> | ScrollMarginRightProperty<TLength>[],
  1972. scrollSnapMarginTop?: ScrollMarginTopProperty<TLength> | ScrollMarginTopProperty<TLength>[],
  1973. scrollSnapStop?: ScrollSnapStopProperty | ScrollSnapStopProperty[],
  1974. scrollSnapType?: ScrollSnapTypeProperty | ScrollSnapTypeProperty[],
  1975. scrollbarColor?: ScrollbarColorProperty | ScrollbarColorProperty[],
  1976. scrollbarGutter?: ScrollbarGutterProperty | ScrollbarGutterProperty[],
  1977. scrollbarWidth?: ScrollbarWidthProperty | ScrollbarWidthProperty[],
  1978. shapeImageThreshold?: ShapeImageThresholdProperty | ShapeImageThresholdProperty[],
  1979. shapeMargin?: ShapeMarginProperty<TLength> | ShapeMarginProperty<TLength>[],
  1980. shapeOutside?: ShapeOutsideProperty | ShapeOutsideProperty[],
  1981. tabSize?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
  1982. tableLayout?: TableLayoutProperty | TableLayoutProperty[],
  1983. textAlign?: TextAlignProperty | TextAlignProperty[],
  1984. textAlignLast?: TextAlignLastProperty | TextAlignLastProperty[],
  1985. textCombineUpright?: TextCombineUprightProperty | TextCombineUprightProperty[],
  1986. textDecorationColor?: TextDecorationColorProperty | TextDecorationColorProperty[],
  1987. textDecorationLine?: TextDecorationLineProperty | TextDecorationLineProperty[],
  1988. textDecorationSkip?: TextDecorationSkipProperty | TextDecorationSkipProperty[],
  1989. textDecorationSkipInk?: TextDecorationSkipInkProperty | TextDecorationSkipInkProperty[],
  1990. textDecorationStyle?: TextDecorationStyleProperty | TextDecorationStyleProperty[],
  1991. textDecorationThickness?: TextDecorationThicknessProperty<TLength> | TextDecorationThicknessProperty<TLength>[],
  1992. textEmphasisColor?: TextEmphasisColorProperty | TextEmphasisColorProperty[],
  1993. textEmphasisPosition?: GlobalsString | GlobalsString[],
  1994. textEmphasisStyle?: TextEmphasisStyleProperty | TextEmphasisStyleProperty[],
  1995. textIndent?: TextIndentProperty<TLength> | TextIndentProperty<TLength>[],
  1996. textJustify?: TextJustifyProperty | TextJustifyProperty[],
  1997. textOrientation?: TextOrientationProperty | TextOrientationProperty[],
  1998. textOverflow?: TextOverflowProperty | TextOverflowProperty[],
  1999. textRendering?: TextRenderingProperty | TextRenderingProperty[],
  2000. textShadow?: TextShadowProperty | TextShadowProperty[],
  2001. textSizeAdjust?: TextSizeAdjustProperty | TextSizeAdjustProperty[],
  2002. textTransform?: TextTransformProperty | TextTransformProperty[],
  2003. textUnderlineOffset?: TextUnderlineOffsetProperty<TLength> | TextUnderlineOffsetProperty<TLength>[],
  2004. textUnderlinePosition?: TextUnderlinePositionProperty | TextUnderlinePositionProperty[],
  2005. top?: TopProperty<TLength> | TopProperty<TLength>[],
  2006. touchAction?: TouchActionProperty | TouchActionProperty[],
  2007. transform?: TransformProperty | TransformProperty[],
  2008. transformBox?: TransformBoxProperty | TransformBoxProperty[],
  2009. transformOrigin?: TransformOriginProperty<TLength> | TransformOriginProperty<TLength>[],
  2010. transformStyle?: TransformStyleProperty | TransformStyleProperty[],
  2011. transitionDelay?: GlobalsString | GlobalsString[],
  2012. transitionDuration?: GlobalsString | GlobalsString[],
  2013. transitionProperty?: TransitionPropertyProperty | TransitionPropertyProperty[],
  2014. transitionTimingFunction?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[],
  2015. translate?: TranslateProperty<TLength> | TranslateProperty<TLength>[],
  2016. unicodeBidi?: UnicodeBidiProperty | UnicodeBidiProperty[],
  2017. userSelect?: UserSelectProperty | UserSelectProperty[],
  2018. verticalAlign?: VerticalAlignProperty<TLength> | VerticalAlignProperty<TLength>[],
  2019. visibility?: VisibilityProperty | VisibilityProperty[],
  2020. whiteSpace?: WhiteSpaceProperty | WhiteSpaceProperty[],
  2021. widows?: GlobalsNumber | GlobalsNumber[],
  2022. width?: WidthProperty<TLength> | WidthProperty<TLength>[],
  2023. willChange?: WillChangeProperty | WillChangeProperty[],
  2024. wordBreak?: WordBreakProperty | WordBreakProperty[],
  2025. wordSpacing?: WordSpacingProperty<TLength> | WordSpacingProperty<TLength>[],
  2026. wordWrap?: WordWrapProperty | WordWrapProperty[],
  2027. writingMode?: WritingModeProperty | WritingModeProperty[],
  2028. zIndex?: ZIndexProperty | ZIndexProperty[],
  2029. zoom?: ZoomProperty | ZoomProperty[],
  2030. };
  2031. export type StandardShorthandPropertiesFallback<TLength = string | 0> = {
  2032. all?: Globals | Globals[],
  2033. animation?: AnimationProperty | AnimationProperty[],
  2034. background?: BackgroundProperty<TLength> | BackgroundProperty<TLength>[],
  2035. backgroundPosition?: BackgroundPositionProperty<TLength> | BackgroundPositionProperty<TLength>[],
  2036. border?: BorderProperty<TLength> | BorderProperty<TLength>[],
  2037. borderBlock?: BorderBlockProperty<TLength> | BorderBlockProperty<TLength>[],
  2038. borderBlockEnd?: BorderBlockEndProperty<TLength> | BorderBlockEndProperty<TLength>[],
  2039. borderBlockStart?: BorderBlockStartProperty<TLength> | BorderBlockStartProperty<TLength>[],
  2040. borderBottom?: BorderBottomProperty<TLength> | BorderBottomProperty<TLength>[],
  2041. borderColor?: BorderColorProperty | BorderColorProperty[],
  2042. borderImage?: BorderImageProperty | BorderImageProperty[],
  2043. borderInline?: BorderInlineProperty<TLength> | BorderInlineProperty<TLength>[],
  2044. borderInlineEnd?: BorderInlineEndProperty<TLength> | BorderInlineEndProperty<TLength>[],
  2045. borderInlineStart?: BorderInlineStartProperty<TLength> | BorderInlineStartProperty<TLength>[],
  2046. borderLeft?: BorderLeftProperty<TLength> | BorderLeftProperty<TLength>[],
  2047. borderRadius?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
  2048. borderRight?: BorderRightProperty<TLength> | BorderRightProperty<TLength>[],
  2049. borderStyle?: BorderStyleProperty | BorderStyleProperty[],
  2050. borderTop?: BorderTopProperty<TLength> | BorderTopProperty<TLength>[],
  2051. borderWidth?: BorderWidthProperty<TLength> | BorderWidthProperty<TLength>[],
  2052. columnRule?: ColumnRuleProperty<TLength> | ColumnRuleProperty<TLength>[],
  2053. columns?: ColumnsProperty<TLength> | ColumnsProperty<TLength>[],
  2054. flex?: FlexProperty<TLength> | FlexProperty<TLength>[],
  2055. flexFlow?: FlexFlowProperty | FlexFlowProperty[],
  2056. font?: FontProperty | FontProperty[],
  2057. gap?: GapProperty<TLength> | GapProperty<TLength>[],
  2058. grid?: GridProperty | GridProperty[],
  2059. gridArea?: GridAreaProperty | GridAreaProperty[],
  2060. gridColumn?: GridColumnProperty | GridColumnProperty[],
  2061. gridRow?: GridRowProperty | GridRowProperty[],
  2062. gridTemplate?: GridTemplateProperty | GridTemplateProperty[],
  2063. lineClamp?: LineClampProperty | LineClampProperty[],
  2064. listStyle?: ListStyleProperty | ListStyleProperty[],
  2065. margin?: MarginProperty<TLength> | MarginProperty<TLength>[],
  2066. mask?: MaskProperty<TLength> | MaskProperty<TLength>[],
  2067. maskBorder?: MaskBorderProperty | MaskBorderProperty[],
  2068. motion?: OffsetProperty<TLength> | OffsetProperty<TLength>[],
  2069. offset?: OffsetProperty<TLength> | OffsetProperty<TLength>[],
  2070. outline?: OutlineProperty<TLength> | OutlineProperty<TLength>[],
  2071. overflow?: OverflowProperty | OverflowProperty[],
  2072. overscrollBehavior?: OverscrollBehaviorProperty | OverscrollBehaviorProperty[],
  2073. padding?: PaddingProperty<TLength> | PaddingProperty<TLength>[],
  2074. placeItems?: PlaceItemsProperty | PlaceItemsProperty[],
  2075. placeSelf?: PlaceSelfProperty | PlaceSelfProperty[],
  2076. textDecoration?: TextDecorationProperty<TLength> | TextDecorationProperty<TLength>[],
  2077. textEmphasis?: TextEmphasisProperty | TextEmphasisProperty[],
  2078. transition?: TransitionProperty | TransitionProperty[],
  2079. };
  2080. export type StandardPropertiesFallback<TLength = string | 0> = StandardLonghandPropertiesFallback<TLength> & StandardShorthandPropertiesFallback<TLength>;
  2081. export type VendorLonghandPropertiesFallback<TLength = string | 0> = {
  2082. MozAnimationDelay?: GlobalsString | GlobalsString[],
  2083. MozAnimationDirection?: AnimationDirectionProperty | AnimationDirectionProperty[],
  2084. MozAnimationDuration?: GlobalsString | GlobalsString[],
  2085. MozAnimationFillMode?: AnimationFillModeProperty | AnimationFillModeProperty[],
  2086. MozAnimationIterationCount?: AnimationIterationCountProperty | AnimationIterationCountProperty[],
  2087. MozAnimationName?: AnimationNameProperty | AnimationNameProperty[],
  2088. MozAnimationPlayState?: AnimationPlayStateProperty | AnimationPlayStateProperty[],
  2089. MozAnimationTimingFunction?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
  2090. MozAppearance?: MozAppearanceProperty | MozAppearanceProperty[],
  2091. MozBackfaceVisibility?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
  2092. MozBorderBottomColors?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[],
  2093. MozBorderEndColor?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[],
  2094. MozBorderEndStyle?: BorderInlineEndStyleProperty | BorderInlineEndStyleProperty[],
  2095. MozBorderEndWidth?: BorderInlineEndWidthProperty<TLength> | BorderInlineEndWidthProperty<TLength>[],
  2096. MozBorderLeftColors?: MozBorderLeftColorsProperty | MozBorderLeftColorsProperty[],
  2097. MozBorderRightColors?: MozBorderRightColorsProperty | MozBorderRightColorsProperty[],
  2098. MozBorderStartColor?: BorderInlineStartColorProperty | BorderInlineStartColorProperty[],
  2099. MozBorderStartStyle?: BorderInlineStartStyleProperty | BorderInlineStartStyleProperty[],
  2100. MozBorderTopColors?: MozBorderTopColorsProperty | MozBorderTopColorsProperty[],
  2101. MozBoxSizing?: BoxSizingProperty | BoxSizingProperty[],
  2102. MozColumnCount?: ColumnCountProperty | ColumnCountProperty[],
  2103. MozColumnFill?: ColumnFillProperty | ColumnFillProperty[],
  2104. MozColumnRuleColor?: ColumnRuleColorProperty | ColumnRuleColorProperty[],
  2105. MozColumnRuleStyle?: ColumnRuleStyleProperty | ColumnRuleStyleProperty[],
  2106. MozColumnRuleWidth?: ColumnRuleWidthProperty<TLength> | ColumnRuleWidthProperty<TLength>[],
  2107. MozColumnWidth?: ColumnWidthProperty<TLength> | ColumnWidthProperty<TLength>[],
  2108. MozContextProperties?: MozContextPropertiesProperty | MozContextPropertiesProperty[],
  2109. MozFontFeatureSettings?: FontFeatureSettingsProperty | FontFeatureSettingsProperty[],
  2110. MozFontLanguageOverride?: FontLanguageOverrideProperty | FontLanguageOverrideProperty[],
  2111. MozHyphens?: HyphensProperty | HyphensProperty[],
  2112. MozImageRegion?: MozImageRegionProperty | MozImageRegionProperty[],
  2113. MozMarginEnd?: MarginInlineEndProperty<TLength> | MarginInlineEndProperty<TLength>[],
  2114. MozMarginStart?: MarginInlineStartProperty<TLength> | MarginInlineStartProperty<TLength>[],
  2115. MozOrient?: MozOrientProperty | MozOrientProperty[],
  2116. MozOsxFontSmoothing?: FontSmoothProperty<TLength> | FontSmoothProperty<TLength>[],
  2117. MozPaddingEnd?: PaddingInlineEndProperty<TLength> | PaddingInlineEndProperty<TLength>[],
  2118. MozPaddingStart?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
  2119. MozPerspective?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
  2120. MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
  2121. MozStackSizing?: MozStackSizingProperty | MozStackSizingProperty[],
  2122. MozTabSize?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
  2123. MozTextBlink?: MozTextBlinkProperty | MozTextBlinkProperty[],
  2124. MozTextSizeAdjust?: TextSizeAdjustProperty | TextSizeAdjustProperty[],
  2125. MozTransformOrigin?: TransformOriginProperty<TLength> | TransformOriginProperty<TLength>[],
  2126. MozTransformStyle?: TransformStyleProperty | TransformStyleProperty[],
  2127. MozTransitionDelay?: GlobalsString | GlobalsString[],
  2128. MozTransitionDuration?: GlobalsString | GlobalsString[],
  2129. MozTransitionProperty?: TransitionPropertyProperty | TransitionPropertyProperty[],
  2130. MozTransitionTimingFunction?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[],
  2131. MozUserFocus?: MozUserFocusProperty | MozUserFocusProperty[],
  2132. MozUserModify?: MozUserModifyProperty | MozUserModifyProperty[],
  2133. MozUserSelect?: UserSelectProperty | UserSelectProperty[],
  2134. MozWindowDragging?: MozWindowDraggingProperty | MozWindowDraggingProperty[],
  2135. MozWindowShadow?: MozWindowShadowProperty | MozWindowShadowProperty[],
  2136. msAccelerator?: MsAcceleratorProperty | MsAcceleratorProperty[],
  2137. msBlockProgression?: MsBlockProgressionProperty | MsBlockProgressionProperty[],
  2138. msContentZoomChaining?: MsContentZoomChainingProperty | MsContentZoomChainingProperty[],
  2139. msContentZoomLimitMax?: GlobalsString | GlobalsString[],
  2140. msContentZoomLimitMin?: GlobalsString | GlobalsString[],
  2141. msContentZoomSnapPoints?: GlobalsString | GlobalsString[],
  2142. msContentZoomSnapType?: MsContentZoomSnapTypeProperty | MsContentZoomSnapTypeProperty[],
  2143. msContentZooming?: MsContentZoomingProperty | MsContentZoomingProperty[],
  2144. msFilter?: GlobalsString | GlobalsString[],
  2145. msFlexDirection?: FlexDirectionProperty | FlexDirectionProperty[],
  2146. msFlexPositive?: GlobalsNumber | GlobalsNumber[],
  2147. msFlowFrom?: MsFlowFromProperty | MsFlowFromProperty[],
  2148. msFlowInto?: MsFlowIntoProperty | MsFlowIntoProperty[],
  2149. msGridColumns?: MsGridColumnsProperty<TLength> | MsGridColumnsProperty<TLength>[],
  2150. msGridRows?: MsGridRowsProperty<TLength> | MsGridRowsProperty<TLength>[],
  2151. msHighContrastAdjust?: MsHighContrastAdjustProperty | MsHighContrastAdjustProperty[],
  2152. msHyphenateLimitChars?: MsHyphenateLimitCharsProperty | MsHyphenateLimitCharsProperty[],
  2153. msHyphenateLimitLines?: MsHyphenateLimitLinesProperty | MsHyphenateLimitLinesProperty[],
  2154. msHyphenateLimitZone?: MsHyphenateLimitZoneProperty<TLength> | MsHyphenateLimitZoneProperty<TLength>[],
  2155. msHyphens?: HyphensProperty | HyphensProperty[],
  2156. msImeAlign?: MsImeAlignProperty | MsImeAlignProperty[],
  2157. msLineBreak?: LineBreakProperty | LineBreakProperty[],
  2158. msOrder?: GlobalsNumber | GlobalsNumber[],
  2159. msOverflowStyle?: MsOverflowStyleProperty | MsOverflowStyleProperty[],
  2160. msOverflowX?: OverflowXProperty | OverflowXProperty[],
  2161. msOverflowY?: OverflowYProperty | OverflowYProperty[],
  2162. msScrollChaining?: MsScrollChainingProperty | MsScrollChainingProperty[],
  2163. msScrollLimitXMax?: MsScrollLimitXMaxProperty<TLength> | MsScrollLimitXMaxProperty<TLength>[],
  2164. msScrollLimitXMin?: MsScrollLimitXMinProperty<TLength> | MsScrollLimitXMinProperty<TLength>[],
  2165. msScrollLimitYMax?: MsScrollLimitYMaxProperty<TLength> | MsScrollLimitYMaxProperty<TLength>[],
  2166. msScrollLimitYMin?: MsScrollLimitYMinProperty<TLength> | MsScrollLimitYMinProperty<TLength>[],
  2167. msScrollRails?: MsScrollRailsProperty | MsScrollRailsProperty[],
  2168. msScrollSnapPointsX?: GlobalsString | GlobalsString[],
  2169. msScrollSnapPointsY?: GlobalsString | GlobalsString[],
  2170. msScrollSnapType?: MsScrollSnapTypeProperty | MsScrollSnapTypeProperty[],
  2171. msScrollTranslation?: MsScrollTranslationProperty | MsScrollTranslationProperty[],
  2172. msScrollbar3dlightColor?: MsScrollbar3dlightColorProperty | MsScrollbar3dlightColorProperty[],
  2173. msScrollbarArrowColor?: MsScrollbarArrowColorProperty | MsScrollbarArrowColorProperty[],
  2174. msScrollbarBaseColor?: MsScrollbarBaseColorProperty | MsScrollbarBaseColorProperty[],
  2175. msScrollbarDarkshadowColor?: MsScrollbarDarkshadowColorProperty | MsScrollbarDarkshadowColorProperty[],
  2176. msScrollbarFaceColor?: MsScrollbarFaceColorProperty | MsScrollbarFaceColorProperty[],
  2177. msScrollbarHighlightColor?: MsScrollbarHighlightColorProperty | MsScrollbarHighlightColorProperty[],
  2178. msScrollbarShadowColor?: MsScrollbarShadowColorProperty | MsScrollbarShadowColorProperty[],
  2179. msScrollbarTrackColor?: MsScrollbarTrackColorProperty | MsScrollbarTrackColorProperty[],
  2180. msTextAutospace?: MsTextAutospaceProperty | MsTextAutospaceProperty[],
  2181. msTextCombineHorizontal?: TextCombineUprightProperty | TextCombineUprightProperty[],
  2182. msTextOverflow?: TextOverflowProperty | TextOverflowProperty[],
  2183. msTouchAction?: TouchActionProperty | TouchActionProperty[],
  2184. msTouchSelect?: MsTouchSelectProperty | MsTouchSelectProperty[],
  2185. msTransform?: TransformProperty | TransformProperty[],
  2186. msTransformOrigin?: TransformOriginProperty<TLength> | TransformOriginProperty<TLength>[],
  2187. msTransitionDelay?: GlobalsString | GlobalsString[],
  2188. msTransitionDuration?: GlobalsString | GlobalsString[],
  2189. msTransitionProperty?: TransitionPropertyProperty | TransitionPropertyProperty[],
  2190. msTransitionTimingFunction?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[],
  2191. msUserSelect?: MsUserSelectProperty | MsUserSelectProperty[],
  2192. msWordBreak?: WordBreakProperty | WordBreakProperty[],
  2193. msWrapFlow?: MsWrapFlowProperty | MsWrapFlowProperty[],
  2194. msWrapMargin?: MsWrapMarginProperty<TLength> | MsWrapMarginProperty<TLength>[],
  2195. msWrapThrough?: MsWrapThroughProperty | MsWrapThroughProperty[],
  2196. msWritingMode?: WritingModeProperty | WritingModeProperty[],
  2197. WebkitAlignContent?: AlignContentProperty | AlignContentProperty[],
  2198. WebkitAlignItems?: AlignItemsProperty | AlignItemsProperty[],
  2199. WebkitAlignSelf?: AlignSelfProperty | AlignSelfProperty[],
  2200. WebkitAnimationDelay?: GlobalsString | GlobalsString[],
  2201. WebkitAnimationDirection?: AnimationDirectionProperty | AnimationDirectionProperty[],
  2202. WebkitAnimationDuration?: GlobalsString | GlobalsString[],
  2203. WebkitAnimationFillMode?: AnimationFillModeProperty | AnimationFillModeProperty[],
  2204. WebkitAnimationIterationCount?: AnimationIterationCountProperty | AnimationIterationCountProperty[],
  2205. WebkitAnimationName?: AnimationNameProperty | AnimationNameProperty[],
  2206. WebkitAnimationPlayState?: AnimationPlayStateProperty | AnimationPlayStateProperty[],
  2207. WebkitAnimationTimingFunction?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
  2208. WebkitAppearance?: WebkitAppearanceProperty | WebkitAppearanceProperty[],
  2209. WebkitBackdropFilter?: BackdropFilterProperty | BackdropFilterProperty[],
  2210. WebkitBackfaceVisibility?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
  2211. WebkitBackgroundClip?: BackgroundClipProperty | BackgroundClipProperty[],
  2212. WebkitBackgroundOrigin?: BackgroundOriginProperty | BackgroundOriginProperty[],
  2213. WebkitBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
  2214. WebkitBorderBeforeColor?: WebkitBorderBeforeColorProperty | WebkitBorderBeforeColorProperty[],
  2215. WebkitBorderBeforeStyle?: WebkitBorderBeforeStyleProperty | WebkitBorderBeforeStyleProperty[],
  2216. WebkitBorderBeforeWidth?: WebkitBorderBeforeWidthProperty<TLength> | WebkitBorderBeforeWidthProperty<TLength>[],
  2217. WebkitBorderBottomLeftRadius?: BorderBottomLeftRadiusProperty<TLength> | BorderBottomLeftRadiusProperty<TLength>[],
  2218. WebkitBorderBottomRightRadius?: BorderBottomRightRadiusProperty<TLength> | BorderBottomRightRadiusProperty<TLength>[],
  2219. WebkitBorderImageSlice?: BorderImageSliceProperty | BorderImageSliceProperty[],
  2220. WebkitBorderTopLeftRadius?: BorderTopLeftRadiusProperty<TLength> | BorderTopLeftRadiusProperty<TLength>[],
  2221. WebkitBorderTopRightRadius?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
  2222. WebkitBoxDecorationBreak?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
  2223. WebkitBoxReflect?: WebkitBoxReflectProperty<TLength> | WebkitBoxReflectProperty<TLength>[],
  2224. WebkitBoxShadow?: BoxShadowProperty | BoxShadowProperty[],
  2225. WebkitBoxSizing?: BoxSizingProperty | BoxSizingProperty[],
  2226. WebkitClipPath?: ClipPathProperty | ClipPathProperty[],
  2227. WebkitColumnCount?: ColumnCountProperty | ColumnCountProperty[],
  2228. WebkitColumnFill?: ColumnFillProperty | ColumnFillProperty[],
  2229. WebkitColumnRuleColor?: ColumnRuleColorProperty | ColumnRuleColorProperty[],
  2230. WebkitColumnRuleStyle?: ColumnRuleStyleProperty | ColumnRuleStyleProperty[],
  2231. WebkitColumnRuleWidth?: ColumnRuleWidthProperty<TLength> | ColumnRuleWidthProperty<TLength>[],
  2232. WebkitColumnSpan?: ColumnSpanProperty | ColumnSpanProperty[],
  2233. WebkitColumnWidth?: ColumnWidthProperty<TLength> | ColumnWidthProperty<TLength>[],
  2234. WebkitFilter?: FilterProperty | FilterProperty[],
  2235. WebkitFlexBasis?: FlexBasisProperty<TLength> | FlexBasisProperty<TLength>[],
  2236. WebkitFlexDirection?: FlexDirectionProperty | FlexDirectionProperty[],
  2237. WebkitFlexGrow?: GlobalsNumber | GlobalsNumber[],
  2238. WebkitFlexShrink?: GlobalsNumber | GlobalsNumber[],
  2239. WebkitFlexWrap?: FlexWrapProperty | FlexWrapProperty[],
  2240. WebkitFontFeatureSettings?: FontFeatureSettingsProperty | FontFeatureSettingsProperty[],
  2241. WebkitFontKerning?: FontKerningProperty | FontKerningProperty[],
  2242. WebkitFontSmoothing?: FontSmoothProperty<TLength> | FontSmoothProperty<TLength>[],
  2243. WebkitFontVariantLigatures?: FontVariantLigaturesProperty | FontVariantLigaturesProperty[],
  2244. WebkitHyphenateCharacter?: HyphenateCharacterProperty | HyphenateCharacterProperty[],
  2245. WebkitHyphens?: HyphensProperty | HyphensProperty[],
  2246. WebkitInitialLetter?: InitialLetterProperty | InitialLetterProperty[],
  2247. WebkitJustifyContent?: JustifyContentProperty | JustifyContentProperty[],
  2248. WebkitLineBreak?: LineBreakProperty | LineBreakProperty[],
  2249. WebkitLineClamp?: WebkitLineClampProperty | WebkitLineClampProperty[],
  2250. WebkitMarginEnd?: MarginInlineEndProperty<TLength> | MarginInlineEndProperty<TLength>[],
  2251. WebkitMarginStart?: MarginInlineStartProperty<TLength> | MarginInlineStartProperty<TLength>[],
  2252. WebkitMaskAttachment?: WebkitMaskAttachmentProperty | WebkitMaskAttachmentProperty[],
  2253. WebkitMaskBoxImageOutset?: MaskBorderOutsetProperty<TLength> | MaskBorderOutsetProperty<TLength>[],
  2254. WebkitMaskBoxImageRepeat?: MaskBorderRepeatProperty | MaskBorderRepeatProperty[],
  2255. WebkitMaskBoxImageSlice?: MaskBorderSliceProperty | MaskBorderSliceProperty[],
  2256. WebkitMaskBoxImageSource?: MaskBorderSourceProperty | MaskBorderSourceProperty[],
  2257. WebkitMaskBoxImageWidth?: MaskBorderWidthProperty<TLength> | MaskBorderWidthProperty<TLength>[],
  2258. WebkitMaskClip?: WebkitMaskClipProperty | WebkitMaskClipProperty[],
  2259. WebkitMaskComposite?: WebkitMaskCompositeProperty | WebkitMaskCompositeProperty[],
  2260. WebkitMaskImage?: WebkitMaskImageProperty | WebkitMaskImageProperty[],
  2261. WebkitMaskOrigin?: WebkitMaskOriginProperty | WebkitMaskOriginProperty[],
  2262. WebkitMaskPosition?: WebkitMaskPositionProperty<TLength> | WebkitMaskPositionProperty<TLength>[],
  2263. WebkitMaskPositionX?: WebkitMaskPositionXProperty<TLength> | WebkitMaskPositionXProperty<TLength>[],
  2264. WebkitMaskPositionY?: WebkitMaskPositionYProperty<TLength> | WebkitMaskPositionYProperty<TLength>[],
  2265. WebkitMaskRepeat?: WebkitMaskRepeatProperty | WebkitMaskRepeatProperty[],
  2266. WebkitMaskRepeatX?: WebkitMaskRepeatXProperty | WebkitMaskRepeatXProperty[],
  2267. WebkitMaskRepeatY?: WebkitMaskRepeatYProperty | WebkitMaskRepeatYProperty[],
  2268. WebkitMaskSize?: WebkitMaskSizeProperty<TLength> | WebkitMaskSizeProperty<TLength>[],
  2269. WebkitMaxInlineSize?: MaxInlineSizeProperty<TLength> | MaxInlineSizeProperty<TLength>[],
  2270. WebkitOrder?: GlobalsNumber | GlobalsNumber[],
  2271. WebkitOverflowScrolling?: WebkitOverflowScrollingProperty | WebkitOverflowScrollingProperty[],
  2272. WebkitPaddingEnd?: PaddingInlineEndProperty<TLength> | PaddingInlineEndProperty<TLength>[],
  2273. WebkitPaddingStart?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
  2274. WebkitPerspective?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
  2275. WebkitPerspectiveOrigin?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
  2276. WebkitPrintColorAdjust?: PrintColorAdjustProperty | PrintColorAdjustProperty[],
  2277. WebkitRubyPosition?: RubyPositionProperty | RubyPositionProperty[],
  2278. WebkitScrollSnapType?: ScrollSnapTypeProperty | ScrollSnapTypeProperty[],
  2279. WebkitShapeMargin?: ShapeMarginProperty<TLength> | ShapeMarginProperty<TLength>[],
  2280. WebkitTapHighlightColor?: WebkitTapHighlightColorProperty | WebkitTapHighlightColorProperty[],
  2281. WebkitTextCombine?: TextCombineUprightProperty | TextCombineUprightProperty[],
  2282. WebkitTextDecorationColor?: TextDecorationColorProperty | TextDecorationColorProperty[],
  2283. WebkitTextDecorationLine?: TextDecorationLineProperty | TextDecorationLineProperty[],
  2284. WebkitTextDecorationSkip?: TextDecorationSkipProperty | TextDecorationSkipProperty[],
  2285. WebkitTextDecorationStyle?: TextDecorationStyleProperty | TextDecorationStyleProperty[],
  2286. WebkitTextEmphasisColor?: TextEmphasisColorProperty | TextEmphasisColorProperty[],
  2287. WebkitTextEmphasisPosition?: GlobalsString | GlobalsString[],
  2288. WebkitTextEmphasisStyle?: TextEmphasisStyleProperty | TextEmphasisStyleProperty[],
  2289. WebkitTextFillColor?: WebkitTextFillColorProperty | WebkitTextFillColorProperty[],
  2290. WebkitTextOrientation?: TextOrientationProperty | TextOrientationProperty[],
  2291. WebkitTextSizeAdjust?: TextSizeAdjustProperty | TextSizeAdjustProperty[],
  2292. WebkitTextStrokeColor?: WebkitTextStrokeColorProperty | WebkitTextStrokeColorProperty[],
  2293. WebkitTextStrokeWidth?: WebkitTextStrokeWidthProperty<TLength> | WebkitTextStrokeWidthProperty<TLength>[],
  2294. WebkitTextUnderlinePosition?: TextUnderlinePositionProperty | TextUnderlinePositionProperty[],
  2295. WebkitTouchCallout?: WebkitTouchCalloutProperty | WebkitTouchCalloutProperty[],
  2296. WebkitTransform?: TransformProperty | TransformProperty[],
  2297. WebkitTransformOrigin?: TransformOriginProperty<TLength> | TransformOriginProperty<TLength>[],
  2298. WebkitTransformStyle?: TransformStyleProperty | TransformStyleProperty[],
  2299. WebkitTransitionDelay?: GlobalsString | GlobalsString[],
  2300. WebkitTransitionDuration?: GlobalsString | GlobalsString[],
  2301. WebkitTransitionProperty?: TransitionPropertyProperty | TransitionPropertyProperty[],
  2302. WebkitTransitionTimingFunction?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[],
  2303. WebkitUserModify?: WebkitUserModifyProperty | WebkitUserModifyProperty[],
  2304. WebkitUserSelect?: UserSelectProperty | UserSelectProperty[],
  2305. WebkitWritingMode?: WritingModeProperty | WritingModeProperty[],
  2306. };
  2307. export type VendorShorthandPropertiesFallback<TLength = string | 0> = {
  2308. MozAnimation?: AnimationProperty | AnimationProperty[],
  2309. MozBorderImage?: BorderImageProperty | BorderImageProperty[],
  2310. MozColumnRule?: ColumnRuleProperty<TLength> | ColumnRuleProperty<TLength>[],
  2311. MozColumns?: ColumnsProperty<TLength> | ColumnsProperty<TLength>[],
  2312. MozTransition?: TransitionProperty | TransitionProperty[],
  2313. msContentZoomLimit?: GlobalsString | GlobalsString[],
  2314. msContentZoomSnap?: MsContentZoomSnapProperty | MsContentZoomSnapProperty[],
  2315. msFlex?: FlexProperty<TLength> | FlexProperty<TLength>[],
  2316. msScrollLimit?: GlobalsString | GlobalsString[],
  2317. msScrollSnapX?: GlobalsString | GlobalsString[],
  2318. msScrollSnapY?: GlobalsString | GlobalsString[],
  2319. msTransition?: TransitionProperty | TransitionProperty[],
  2320. WebkitAnimation?: AnimationProperty | AnimationProperty[],
  2321. WebkitBorderBefore?: WebkitBorderBeforeProperty<TLength> | WebkitBorderBeforeProperty<TLength>[],
  2322. WebkitBorderImage?: BorderImageProperty | BorderImageProperty[],
  2323. WebkitBorderRadius?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
  2324. WebkitColumnRule?: ColumnRuleProperty<TLength> | ColumnRuleProperty<TLength>[],
  2325. WebkitColumns?: ColumnsProperty<TLength> | ColumnsProperty<TLength>[],
  2326. WebkitFlex?: FlexProperty<TLength> | FlexProperty<TLength>[],
  2327. WebkitFlexFlow?: FlexFlowProperty | FlexFlowProperty[],
  2328. WebkitMask?: WebkitMaskProperty<TLength> | WebkitMaskProperty<TLength>[],
  2329. WebkitMaskBoxImage?: MaskBorderProperty | MaskBorderProperty[],
  2330. WebkitTextEmphasis?: TextEmphasisProperty | TextEmphasisProperty[],
  2331. WebkitTextStroke?: WebkitTextStrokeProperty<TLength> | WebkitTextStrokeProperty<TLength>[],
  2332. WebkitTransition?: TransitionProperty | TransitionProperty[],
  2333. };
  2334. export type VendorPropertiesFallback<TLength = string | 0> = VendorLonghandPropertiesFallback<TLength> & VendorShorthandPropertiesFallback<TLength>;
  2335. export type ObsoletePropertiesFallback<TLength = string | 0> = {
  2336. azimuth?: AzimuthProperty | AzimuthProperty[],
  2337. boxAlign?: BoxAlignProperty | BoxAlignProperty[],
  2338. boxDirection?: BoxDirectionProperty | BoxDirectionProperty[],
  2339. boxFlex?: GlobalsNumber | GlobalsNumber[],
  2340. boxFlexGroup?: GlobalsNumber | GlobalsNumber[],
  2341. boxLines?: BoxLinesProperty | BoxLinesProperty[],
  2342. boxOrdinalGroup?: GlobalsNumber | GlobalsNumber[],
  2343. boxOrient?: BoxOrientProperty | BoxOrientProperty[],
  2344. boxPack?: BoxPackProperty | BoxPackProperty[],
  2345. clip?: ClipProperty | ClipProperty[],
  2346. gridColumnGap?: GridColumnGapProperty<TLength> | GridColumnGapProperty<TLength>[],
  2347. gridGap?: GridGapProperty<TLength> | GridGapProperty<TLength>[],
  2348. gridRowGap?: GridRowGapProperty<TLength> | GridRowGapProperty<TLength>[],
  2349. imeMode?: ImeModeProperty | ImeModeProperty[],
  2350. offsetBlock?: InsetBlockProperty<TLength> | InsetBlockProperty<TLength>[],
  2351. offsetBlockEnd?: InsetBlockEndProperty<TLength> | InsetBlockEndProperty<TLength>[],
  2352. offsetBlockStart?: InsetBlockStartProperty<TLength> | InsetBlockStartProperty<TLength>[],
  2353. offsetInline?: InsetInlineProperty<TLength> | InsetInlineProperty<TLength>[],
  2354. offsetInlineEnd?: InsetInlineEndProperty<TLength> | InsetInlineEndProperty<TLength>[],
  2355. offsetInlineStart?: InsetInlineStartProperty<TLength> | InsetInlineStartProperty<TLength>[],
  2356. scrollSnapCoordinate?: ScrollSnapCoordinateProperty<TLength> | ScrollSnapCoordinateProperty<TLength>[],
  2357. scrollSnapDestination?: ScrollSnapDestinationProperty<TLength> | ScrollSnapDestinationProperty<TLength>[],
  2358. scrollSnapPointsX?: ScrollSnapPointsXProperty | ScrollSnapPointsXProperty[],
  2359. scrollSnapPointsY?: ScrollSnapPointsYProperty | ScrollSnapPointsYProperty[],
  2360. scrollSnapTypeX?: ScrollSnapTypeXProperty | ScrollSnapTypeXProperty[],
  2361. scrollSnapTypeY?: ScrollSnapTypeYProperty | ScrollSnapTypeYProperty[],
  2362. KhtmlBoxAlign?: BoxAlignProperty | BoxAlignProperty[],
  2363. KhtmlBoxDirection?: BoxDirectionProperty | BoxDirectionProperty[],
  2364. KhtmlBoxFlex?: GlobalsNumber | GlobalsNumber[],
  2365. KhtmlBoxFlexGroup?: GlobalsNumber | GlobalsNumber[],
  2366. KhtmlBoxLines?: BoxLinesProperty | BoxLinesProperty[],
  2367. KhtmlBoxOrdinalGroup?: GlobalsNumber | GlobalsNumber[],
  2368. KhtmlBoxOrient?: BoxOrientProperty | BoxOrientProperty[],
  2369. KhtmlBoxPack?: BoxPackProperty | BoxPackProperty[],
  2370. KhtmlLineBreak?: LineBreakProperty | LineBreakProperty[],
  2371. KhtmlOpacity?: OpacityProperty | OpacityProperty[],
  2372. KhtmlUserSelect?: UserSelectProperty | UserSelectProperty[],
  2373. MozBackgroundClip?: BackgroundClipProperty | BackgroundClipProperty[],
  2374. MozBackgroundInlinePolicy?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
  2375. MozBackgroundOrigin?: BackgroundOriginProperty | BackgroundOriginProperty[],
  2376. MozBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
  2377. MozBinding?: MozBindingProperty | MozBindingProperty[],
  2378. MozBorderRadius?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
  2379. MozBorderRadiusBottomleft?: BorderBottomLeftRadiusProperty<TLength> | BorderBottomLeftRadiusProperty<TLength>[],
  2380. MozBorderRadiusBottomright?: BorderBottomRightRadiusProperty<TLength> | BorderBottomRightRadiusProperty<TLength>[],
  2381. MozBorderRadiusTopleft?: BorderTopLeftRadiusProperty<TLength> | BorderTopLeftRadiusProperty<TLength>[],
  2382. MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
  2383. MozBoxAlign?: BoxAlignProperty | BoxAlignProperty[],
  2384. MozBoxDirection?: BoxDirectionProperty | BoxDirectionProperty[],
  2385. MozBoxFlex?: GlobalsNumber | GlobalsNumber[],
  2386. MozBoxOrdinalGroup?: GlobalsNumber | GlobalsNumber[],
  2387. MozBoxOrient?: BoxOrientProperty | BoxOrientProperty[],
  2388. MozBoxPack?: BoxPackProperty | BoxPackProperty[],
  2389. MozBoxShadow?: BoxShadowProperty | BoxShadowProperty[],
  2390. MozFloatEdge?: MozFloatEdgeProperty | MozFloatEdgeProperty[],
  2391. MozForceBrokenImageIcon?: MozForceBrokenImageIconProperty | MozForceBrokenImageIconProperty[],
  2392. MozOpacity?: OpacityProperty | OpacityProperty[],
  2393. MozOutline?: OutlineProperty<TLength> | OutlineProperty<TLength>[],
  2394. MozOutlineColor?: OutlineColorProperty | OutlineColorProperty[],
  2395. MozOutlineRadius?: MozOutlineRadiusProperty<TLength> | MozOutlineRadiusProperty<TLength>[],
  2396. MozOutlineRadiusBottomleft?: MozOutlineRadiusBottomleftProperty<TLength> | MozOutlineRadiusBottomleftProperty<TLength>[],
  2397. MozOutlineRadiusBottomright?: MozOutlineRadiusBottomrightProperty<TLength> | MozOutlineRadiusBottomrightProperty<TLength>[],
  2398. MozOutlineRadiusTopleft?: MozOutlineRadiusTopleftProperty<TLength> | MozOutlineRadiusTopleftProperty<TLength>[],
  2399. MozOutlineRadiusTopright?: MozOutlineRadiusToprightProperty<TLength> | MozOutlineRadiusToprightProperty<TLength>[],
  2400. MozOutlineStyle?: OutlineStyleProperty | OutlineStyleProperty[],
  2401. MozOutlineWidth?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[],
  2402. MozTextAlignLast?: TextAlignLastProperty | TextAlignLastProperty[],
  2403. MozTextDecorationColor?: TextDecorationColorProperty | TextDecorationColorProperty[],
  2404. MozTextDecorationLine?: TextDecorationLineProperty | TextDecorationLineProperty[],
  2405. MozTextDecorationStyle?: TextDecorationStyleProperty | TextDecorationStyleProperty[],
  2406. MozUserInput?: MozUserInputProperty | MozUserInputProperty[],
  2407. msImeMode?: ImeModeProperty | ImeModeProperty[],
  2408. OAnimation?: AnimationProperty | AnimationProperty[],
  2409. OAnimationDelay?: GlobalsString | GlobalsString[],
  2410. OAnimationDirection?: AnimationDirectionProperty | AnimationDirectionProperty[],
  2411. OAnimationDuration?: GlobalsString | GlobalsString[],
  2412. OAnimationFillMode?: AnimationFillModeProperty | AnimationFillModeProperty[],
  2413. OAnimationIterationCount?: AnimationIterationCountProperty | AnimationIterationCountProperty[],
  2414. OAnimationName?: AnimationNameProperty | AnimationNameProperty[],
  2415. OAnimationPlayState?: AnimationPlayStateProperty | AnimationPlayStateProperty[],
  2416. OAnimationTimingFunction?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
  2417. OBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
  2418. OBorderImage?: BorderImageProperty | BorderImageProperty[],
  2419. OObjectFit?: ObjectFitProperty | ObjectFitProperty[],
  2420. OObjectPosition?: ObjectPositionProperty<TLength> | ObjectPositionProperty<TLength>[],
  2421. OTabSize?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
  2422. OTextOverflow?: TextOverflowProperty | TextOverflowProperty[],
  2423. OTransform?: TransformProperty | TransformProperty[],
  2424. OTransformOrigin?: TransformOriginProperty<TLength> | TransformOriginProperty<TLength>[],
  2425. OTransition?: TransitionProperty | TransitionProperty[],
  2426. OTransitionDelay?: GlobalsString | GlobalsString[],
  2427. OTransitionDuration?: GlobalsString | GlobalsString[],
  2428. OTransitionProperty?: TransitionPropertyProperty | TransitionPropertyProperty[],
  2429. OTransitionTimingFunction?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[],
  2430. WebkitBoxAlign?: BoxAlignProperty | BoxAlignProperty[],
  2431. WebkitBoxDirection?: BoxDirectionProperty | BoxDirectionProperty[],
  2432. WebkitBoxFlex?: GlobalsNumber | GlobalsNumber[],
  2433. WebkitBoxFlexGroup?: GlobalsNumber | GlobalsNumber[],
  2434. WebkitBoxLines?: BoxLinesProperty | BoxLinesProperty[],
  2435. WebkitBoxOrdinalGroup?: GlobalsNumber | GlobalsNumber[],
  2436. WebkitBoxOrient?: BoxOrientProperty | BoxOrientProperty[],
  2437. WebkitBoxPack?: BoxPackProperty | BoxPackProperty[],
  2438. WebkitScrollSnapPointsX?: ScrollSnapPointsXProperty | ScrollSnapPointsXProperty[],
  2439. WebkitScrollSnapPointsY?: ScrollSnapPointsYProperty | ScrollSnapPointsYProperty[],
  2440. };
  2441. export type SvgPropertiesFallback<TLength = string | 0> = {
  2442. alignmentBaseline?: AlignmentBaselineProperty | AlignmentBaselineProperty[],
  2443. baselineShift?: BaselineShiftProperty<TLength> | BaselineShiftProperty<TLength>[],
  2444. clip?: ClipProperty | ClipProperty[],
  2445. clipPath?: ClipPathProperty | ClipPathProperty[],
  2446. clipRule?: ClipRuleProperty | ClipRuleProperty[],
  2447. color?: ColorProperty | ColorProperty[],
  2448. colorInterpolation?: ColorInterpolationProperty | ColorInterpolationProperty[],
  2449. colorRendering?: ColorRenderingProperty | ColorRenderingProperty[],
  2450. cursor?: CursorProperty | CursorProperty[],
  2451. direction?: DirectionProperty | DirectionProperty[],
  2452. display?: DisplayProperty | DisplayProperty[],
  2453. dominantBaseline?: DominantBaselineProperty | DominantBaselineProperty[],
  2454. fill?: FillProperty | FillProperty[],
  2455. fillOpacity?: GlobalsNumber | GlobalsNumber[],
  2456. fillRule?: FillRuleProperty | FillRuleProperty[],
  2457. filter?: FilterProperty | FilterProperty[],
  2458. floodColor?: FloodColorProperty | FloodColorProperty[],
  2459. floodOpacity?: GlobalsNumber | GlobalsNumber[],
  2460. font?: FontProperty | FontProperty[],
  2461. fontFamily?: FontFamilyProperty | FontFamilyProperty[],
  2462. fontSize?: FontSizeProperty<TLength> | FontSizeProperty<TLength>[],
  2463. fontSizeAdjust?: FontSizeAdjustProperty | FontSizeAdjustProperty[],
  2464. fontStretch?: FontStretchProperty | FontStretchProperty[],
  2465. fontStyle?: FontStyleProperty | FontStyleProperty[],
  2466. fontVariant?: FontVariantProperty | FontVariantProperty[],
  2467. fontWeight?: FontWeightProperty | FontWeightProperty[],
  2468. glyphOrientationVertical?: GlyphOrientationVerticalProperty | GlyphOrientationVerticalProperty[],
  2469. imageRendering?: ImageRenderingProperty | ImageRenderingProperty[],
  2470. letterSpacing?: LetterSpacingProperty<TLength> | LetterSpacingProperty<TLength>[],
  2471. lightingColor?: LightingColorProperty | LightingColorProperty[],
  2472. lineHeight?: LineHeightProperty<TLength> | LineHeightProperty<TLength>[],
  2473. marker?: MarkerProperty | MarkerProperty[],
  2474. markerEnd?: MarkerEndProperty | MarkerEndProperty[],
  2475. markerMid?: MarkerMidProperty | MarkerMidProperty[],
  2476. markerStart?: MarkerStartProperty | MarkerStartProperty[],
  2477. mask?: MaskProperty<TLength> | MaskProperty<TLength>[],
  2478. opacity?: OpacityProperty | OpacityProperty[],
  2479. overflow?: OverflowProperty | OverflowProperty[],
  2480. paintOrder?: PaintOrderProperty | PaintOrderProperty[],
  2481. pointerEvents?: PointerEventsProperty | PointerEventsProperty[],
  2482. shapeRendering?: ShapeRenderingProperty | ShapeRenderingProperty[],
  2483. stopColor?: StopColorProperty | StopColorProperty[],
  2484. stopOpacity?: GlobalsNumber | GlobalsNumber[],
  2485. stroke?: StrokeProperty | StrokeProperty[],
  2486. strokeDasharray?: StrokeDasharrayProperty<TLength> | StrokeDasharrayProperty<TLength>[],
  2487. strokeDashoffset?: StrokeDashoffsetProperty<TLength> | StrokeDashoffsetProperty<TLength>[],
  2488. strokeLinecap?: StrokeLinecapProperty | StrokeLinecapProperty[],
  2489. strokeLinejoin?: StrokeLinejoinProperty | StrokeLinejoinProperty[],
  2490. strokeMiterlimit?: GlobalsNumber | GlobalsNumber[],
  2491. strokeOpacity?: GlobalsNumber | GlobalsNumber[],
  2492. strokeWidth?: StrokeWidthProperty<TLength> | StrokeWidthProperty<TLength>[],
  2493. textAnchor?: TextAnchorProperty | TextAnchorProperty[],
  2494. textDecoration?: TextDecorationProperty<TLength> | TextDecorationProperty<TLength>[],
  2495. textRendering?: TextRenderingProperty | TextRenderingProperty[],
  2496. unicodeBidi?: UnicodeBidiProperty | UnicodeBidiProperty[],
  2497. vectorEffect?: VectorEffectProperty | VectorEffectProperty[],
  2498. visibility?: VisibilityProperty | VisibilityProperty[],
  2499. whiteSpace?: WhiteSpaceProperty | WhiteSpaceProperty[],
  2500. wordSpacing?: WordSpacingProperty<TLength> | WordSpacingProperty<TLength>[],
  2501. writingMode?: WritingModeProperty | WritingModeProperty[],
  2502. };
  2503. export type PropertiesFallback<TLength = string | 0> = StandardPropertiesFallback<TLength> &
  2504. VendorPropertiesFallback<TLength> &
  2505. ObsoletePropertiesFallback<TLength> &
  2506. SvgPropertiesFallback<TLength>;
  2507. export type StandardLonghandPropertiesHyphenFallback<TLength = string | 0> = {
  2508. "accent-color"?: AccentColorProperty | AccentColorProperty[],
  2509. "align-content"?: AlignContentProperty | AlignContentProperty[],
  2510. "align-items"?: AlignItemsProperty | AlignItemsProperty[],
  2511. "align-self"?: AlignSelfProperty | AlignSelfProperty[],
  2512. "align-tracks"?: AlignTracksProperty | AlignTracksProperty[],
  2513. "animation-composition"?: GlobalsString | GlobalsString[],
  2514. "animation-delay"?: GlobalsString | GlobalsString[],
  2515. "animation-direction"?: AnimationDirectionProperty | AnimationDirectionProperty[],
  2516. "animation-duration"?: GlobalsString | GlobalsString[],
  2517. "animation-fill-mode"?: AnimationFillModeProperty | AnimationFillModeProperty[],
  2518. "animation-iteration-count"?: AnimationIterationCountProperty | AnimationIterationCountProperty[],
  2519. "animation-name"?: AnimationNameProperty | AnimationNameProperty[],
  2520. "animation-play-state"?: AnimationPlayStateProperty | AnimationPlayStateProperty[],
  2521. "animation-timeline"?: AnimationTimelineProperty | AnimationTimelineProperty[],
  2522. "animation-timing-function"?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
  2523. appearance?: AppearanceProperty | AppearanceProperty[],
  2524. "aspect-ratio"?: AspectRatioProperty | AspectRatioProperty[],
  2525. "backdrop-filter"?: BackdropFilterProperty | BackdropFilterProperty[],
  2526. "backface-visibility"?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
  2527. "background-attachment"?: BackgroundAttachmentProperty | BackgroundAttachmentProperty[],
  2528. "background-blend-mode"?: BackgroundBlendModeProperty | BackgroundBlendModeProperty[],
  2529. "background-clip"?: BackgroundClipProperty | BackgroundClipProperty[],
  2530. "background-color"?: BackgroundColorProperty | BackgroundColorProperty[],
  2531. "background-image"?: BackgroundImageProperty | BackgroundImageProperty[],
  2532. "background-origin"?: BackgroundOriginProperty | BackgroundOriginProperty[],
  2533. "background-position-x"?: BackgroundPositionXProperty<TLength> | BackgroundPositionXProperty<TLength>[],
  2534. "background-position-y"?: BackgroundPositionYProperty<TLength> | BackgroundPositionYProperty<TLength>[],
  2535. "background-repeat"?: BackgroundRepeatProperty | BackgroundRepeatProperty[],
  2536. "background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
  2537. "block-overflow"?: BlockOverflowProperty | BlockOverflowProperty[],
  2538. "block-size"?: BlockSizeProperty<TLength> | BlockSizeProperty<TLength>[],
  2539. "border-block-color"?: BorderBlockColorProperty | BorderBlockColorProperty[],
  2540. "border-block-end-color"?: BorderBlockEndColorProperty | BorderBlockEndColorProperty[],
  2541. "border-block-end-style"?: BorderBlockEndStyleProperty | BorderBlockEndStyleProperty[],
  2542. "border-block-end-width"?: BorderBlockEndWidthProperty<TLength> | BorderBlockEndWidthProperty<TLength>[],
  2543. "border-block-start-color"?: BorderBlockStartColorProperty | BorderBlockStartColorProperty[],
  2544. "border-block-start-style"?: BorderBlockStartStyleProperty | BorderBlockStartStyleProperty[],
  2545. "border-block-start-width"?: BorderBlockStartWidthProperty<TLength> | BorderBlockStartWidthProperty<TLength>[],
  2546. "border-block-style"?: BorderBlockStyleProperty | BorderBlockStyleProperty[],
  2547. "border-block-width"?: BorderBlockWidthProperty<TLength> | BorderBlockWidthProperty<TLength>[],
  2548. "border-bottom-color"?: BorderBottomColorProperty | BorderBottomColorProperty[],
  2549. "border-bottom-left-radius"?: BorderBottomLeftRadiusProperty<TLength> | BorderBottomLeftRadiusProperty<TLength>[],
  2550. "border-bottom-right-radius"?: BorderBottomRightRadiusProperty<TLength> | BorderBottomRightRadiusProperty<TLength>[],
  2551. "border-bottom-style"?: BorderBottomStyleProperty | BorderBottomStyleProperty[],
  2552. "border-bottom-width"?: BorderBottomWidthProperty<TLength> | BorderBottomWidthProperty<TLength>[],
  2553. "border-collapse"?: BorderCollapseProperty | BorderCollapseProperty[],
  2554. "border-end-end-radius"?: BorderEndEndRadiusProperty<TLength> | BorderEndEndRadiusProperty<TLength>[],
  2555. "border-end-start-radius"?: BorderEndStartRadiusProperty<TLength> | BorderEndStartRadiusProperty<TLength>[],
  2556. "border-image-outset"?: BorderImageOutsetProperty<TLength> | BorderImageOutsetProperty<TLength>[],
  2557. "border-image-repeat"?: BorderImageRepeatProperty | BorderImageRepeatProperty[],
  2558. "border-image-slice"?: BorderImageSliceProperty | BorderImageSliceProperty[],
  2559. "border-image-source"?: BorderImageSourceProperty | BorderImageSourceProperty[],
  2560. "border-image-width"?: BorderImageWidthProperty<TLength> | BorderImageWidthProperty<TLength>[],
  2561. "border-inline-color"?: BorderInlineColorProperty | BorderInlineColorProperty[],
  2562. "border-inline-end-color"?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[],
  2563. "border-inline-end-style"?: BorderInlineEndStyleProperty | BorderInlineEndStyleProperty[],
  2564. "border-inline-end-width"?: BorderInlineEndWidthProperty<TLength> | BorderInlineEndWidthProperty<TLength>[],
  2565. "border-inline-start-color"?: BorderInlineStartColorProperty | BorderInlineStartColorProperty[],
  2566. "border-inline-start-style"?: BorderInlineStartStyleProperty | BorderInlineStartStyleProperty[],
  2567. "border-inline-start-width"?: BorderInlineStartWidthProperty<TLength> | BorderInlineStartWidthProperty<TLength>[],
  2568. "border-inline-style"?: BorderInlineStyleProperty | BorderInlineStyleProperty[],
  2569. "border-inline-width"?: BorderInlineWidthProperty<TLength> | BorderInlineWidthProperty<TLength>[],
  2570. "border-left-color"?: BorderLeftColorProperty | BorderLeftColorProperty[],
  2571. "border-left-style"?: BorderLeftStyleProperty | BorderLeftStyleProperty[],
  2572. "border-left-width"?: BorderLeftWidthProperty<TLength> | BorderLeftWidthProperty<TLength>[],
  2573. "border-right-color"?: BorderRightColorProperty | BorderRightColorProperty[],
  2574. "border-right-style"?: BorderRightStyleProperty | BorderRightStyleProperty[],
  2575. "border-right-width"?: BorderRightWidthProperty<TLength> | BorderRightWidthProperty<TLength>[],
  2576. "border-spacing"?: BorderSpacingProperty<TLength> | BorderSpacingProperty<TLength>[],
  2577. "border-start-end-radius"?: BorderStartEndRadiusProperty<TLength> | BorderStartEndRadiusProperty<TLength>[],
  2578. "border-start-start-radius"?: BorderStartStartRadiusProperty<TLength> | BorderStartStartRadiusProperty<TLength>[],
  2579. "border-top-color"?: BorderTopColorProperty | BorderTopColorProperty[],
  2580. "border-top-left-radius"?: BorderTopLeftRadiusProperty<TLength> | BorderTopLeftRadiusProperty<TLength>[],
  2581. "border-top-right-radius"?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
  2582. "border-top-style"?: BorderTopStyleProperty | BorderTopStyleProperty[],
  2583. "border-top-width"?: BorderTopWidthProperty<TLength> | BorderTopWidthProperty<TLength>[],
  2584. bottom?: BottomProperty<TLength> | BottomProperty<TLength>[],
  2585. "box-decoration-break"?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
  2586. "box-shadow"?: BoxShadowProperty | BoxShadowProperty[],
  2587. "box-sizing"?: BoxSizingProperty | BoxSizingProperty[],
  2588. "break-after"?: BreakAfterProperty | BreakAfterProperty[],
  2589. "break-before"?: BreakBeforeProperty | BreakBeforeProperty[],
  2590. "break-inside"?: BreakInsideProperty | BreakInsideProperty[],
  2591. "caption-side"?: CaptionSideProperty | CaptionSideProperty[],
  2592. "caret-color"?: CaretColorProperty | CaretColorProperty[],
  2593. clear?: ClearProperty | ClearProperty[],
  2594. "clip-path"?: ClipPathProperty | ClipPathProperty[],
  2595. color?: ColorProperty | ColorProperty[],
  2596. "color-adjust"?: PrintColorAdjustProperty | PrintColorAdjustProperty[],
  2597. "color-scheme"?: ColorSchemeProperty | ColorSchemeProperty[],
  2598. "column-count"?: ColumnCountProperty | ColumnCountProperty[],
  2599. "column-fill"?: ColumnFillProperty | ColumnFillProperty[],
  2600. "column-gap"?: ColumnGapProperty<TLength> | ColumnGapProperty<TLength>[],
  2601. "column-rule-color"?: ColumnRuleColorProperty | ColumnRuleColorProperty[],
  2602. "column-rule-style"?: ColumnRuleStyleProperty | ColumnRuleStyleProperty[],
  2603. "column-rule-width"?: ColumnRuleWidthProperty<TLength> | ColumnRuleWidthProperty<TLength>[],
  2604. "column-span"?: ColumnSpanProperty | ColumnSpanProperty[],
  2605. "column-width"?: ColumnWidthProperty<TLength> | ColumnWidthProperty<TLength>[],
  2606. contain?: ContainProperty | ContainProperty[],
  2607. content?: ContentProperty | ContentProperty[],
  2608. "content-visibility"?: ContentVisibilityProperty | ContentVisibilityProperty[],
  2609. "counter-increment"?: CounterIncrementProperty | CounterIncrementProperty[],
  2610. "counter-reset"?: CounterResetProperty | CounterResetProperty[],
  2611. "counter-set"?: CounterSetProperty | CounterSetProperty[],
  2612. cursor?: CursorProperty | CursorProperty[],
  2613. direction?: DirectionProperty | DirectionProperty[],
  2614. display?: DisplayProperty | DisplayProperty[],
  2615. "empty-cells"?: EmptyCellsProperty | EmptyCellsProperty[],
  2616. filter?: FilterProperty | FilterProperty[],
  2617. "flex-basis"?: FlexBasisProperty<TLength> | FlexBasisProperty<TLength>[],
  2618. "flex-direction"?: FlexDirectionProperty | FlexDirectionProperty[],
  2619. "flex-grow"?: GlobalsNumber | GlobalsNumber[],
  2620. "flex-shrink"?: GlobalsNumber | GlobalsNumber[],
  2621. "flex-wrap"?: FlexWrapProperty | FlexWrapProperty[],
  2622. float?: FloatProperty | FloatProperty[],
  2623. "font-family"?: FontFamilyProperty | FontFamilyProperty[],
  2624. "font-feature-settings"?: FontFeatureSettingsProperty | FontFeatureSettingsProperty[],
  2625. "font-kerning"?: FontKerningProperty | FontKerningProperty[],
  2626. "font-language-override"?: FontLanguageOverrideProperty | FontLanguageOverrideProperty[],
  2627. "font-optical-sizing"?: FontOpticalSizingProperty | FontOpticalSizingProperty[],
  2628. "font-size"?: FontSizeProperty<TLength> | FontSizeProperty<TLength>[],
  2629. "font-size-adjust"?: FontSizeAdjustProperty | FontSizeAdjustProperty[],
  2630. "font-smooth"?: FontSmoothProperty<TLength> | FontSmoothProperty<TLength>[],
  2631. "font-stretch"?: FontStretchProperty | FontStretchProperty[],
  2632. "font-style"?: FontStyleProperty | FontStyleProperty[],
  2633. "font-synthesis"?: FontSynthesisProperty | FontSynthesisProperty[],
  2634. "font-variant"?: FontVariantProperty | FontVariantProperty[],
  2635. "font-variant-alternates"?: FontVariantAlternatesProperty | FontVariantAlternatesProperty[],
  2636. "font-variant-caps"?: FontVariantCapsProperty | FontVariantCapsProperty[],
  2637. "font-variant-east-asian"?: FontVariantEastAsianProperty | FontVariantEastAsianProperty[],
  2638. "font-variant-ligatures"?: FontVariantLigaturesProperty | FontVariantLigaturesProperty[],
  2639. "font-variant-numeric"?: FontVariantNumericProperty | FontVariantNumericProperty[],
  2640. "font-variant-position"?: FontVariantPositionProperty | FontVariantPositionProperty[],
  2641. "font-variation-settings"?: FontVariationSettingsProperty | FontVariationSettingsProperty[],
  2642. "font-weight"?: FontWeightProperty | FontWeightProperty[],
  2643. "forced-color-adjust"?: ForcedColorAdjustProperty | ForcedColorAdjustProperty[],
  2644. "grid-auto-columns"?: GridAutoColumnsProperty<TLength> | GridAutoColumnsProperty<TLength>[],
  2645. "grid-auto-flow"?: GridAutoFlowProperty | GridAutoFlowProperty[],
  2646. "grid-auto-rows"?: GridAutoRowsProperty<TLength> | GridAutoRowsProperty<TLength>[],
  2647. "grid-column-end"?: GridColumnEndProperty | GridColumnEndProperty[],
  2648. "grid-column-start"?: GridColumnStartProperty | GridColumnStartProperty[],
  2649. "grid-row-end"?: GridRowEndProperty | GridRowEndProperty[],
  2650. "grid-row-start"?: GridRowStartProperty | GridRowStartProperty[],
  2651. "grid-template-areas"?: GridTemplateAreasProperty | GridTemplateAreasProperty[],
  2652. "grid-template-columns"?: GridTemplateColumnsProperty<TLength> | GridTemplateColumnsProperty<TLength>[],
  2653. "grid-template-rows"?: GridTemplateRowsProperty<TLength> | GridTemplateRowsProperty<TLength>[],
  2654. "hanging-punctuation"?: HangingPunctuationProperty | HangingPunctuationProperty[],
  2655. height?: HeightProperty<TLength> | HeightProperty<TLength>[],
  2656. "hyphenate-character"?: HyphenateCharacterProperty | HyphenateCharacterProperty[],
  2657. hyphens?: HyphensProperty | HyphensProperty[],
  2658. "image-orientation"?: ImageOrientationProperty | ImageOrientationProperty[],
  2659. "image-rendering"?: ImageRenderingProperty | ImageRenderingProperty[],
  2660. "image-resolution"?: ImageResolutionProperty | ImageResolutionProperty[],
  2661. "initial-letter"?: InitialLetterProperty | InitialLetterProperty[],
  2662. "inline-size"?: InlineSizeProperty<TLength> | InlineSizeProperty<TLength>[],
  2663. "input-security"?: InputSecurityProperty | InputSecurityProperty[],
  2664. inset?: InsetProperty<TLength> | InsetProperty<TLength>[],
  2665. "inset-block"?: InsetBlockProperty<TLength> | InsetBlockProperty<TLength>[],
  2666. "inset-block-end"?: InsetBlockEndProperty<TLength> | InsetBlockEndProperty<TLength>[],
  2667. "inset-block-start"?: InsetBlockStartProperty<TLength> | InsetBlockStartProperty<TLength>[],
  2668. "inset-inline"?: InsetInlineProperty<TLength> | InsetInlineProperty<TLength>[],
  2669. "inset-inline-end"?: InsetInlineEndProperty<TLength> | InsetInlineEndProperty<TLength>[],
  2670. "inset-inline-start"?: InsetInlineStartProperty<TLength> | InsetInlineStartProperty<TLength>[],
  2671. isolation?: IsolationProperty | IsolationProperty[],
  2672. "justify-content"?: JustifyContentProperty | JustifyContentProperty[],
  2673. "justify-items"?: JustifyItemsProperty | JustifyItemsProperty[],
  2674. "justify-self"?: JustifySelfProperty | JustifySelfProperty[],
  2675. "justify-tracks"?: JustifyTracksProperty | JustifyTracksProperty[],
  2676. left?: LeftProperty<TLength> | LeftProperty<TLength>[],
  2677. "letter-spacing"?: LetterSpacingProperty<TLength> | LetterSpacingProperty<TLength>[],
  2678. "line-break"?: LineBreakProperty | LineBreakProperty[],
  2679. "line-height"?: LineHeightProperty<TLength> | LineHeightProperty<TLength>[],
  2680. "line-height-step"?: LineHeightStepProperty<TLength> | LineHeightStepProperty<TLength>[],
  2681. "list-style-image"?: ListStyleImageProperty | ListStyleImageProperty[],
  2682. "list-style-position"?: ListStylePositionProperty | ListStylePositionProperty[],
  2683. "list-style-type"?: ListStyleTypeProperty | ListStyleTypeProperty[],
  2684. "margin-block"?: MarginBlockProperty<TLength> | MarginBlockProperty<TLength>[],
  2685. "margin-block-end"?: MarginBlockEndProperty<TLength> | MarginBlockEndProperty<TLength>[],
  2686. "margin-block-start"?: MarginBlockStartProperty<TLength> | MarginBlockStartProperty<TLength>[],
  2687. "margin-bottom"?: MarginBottomProperty<TLength> | MarginBottomProperty<TLength>[],
  2688. "margin-inline"?: MarginInlineProperty<TLength> | MarginInlineProperty<TLength>[],
  2689. "margin-inline-end"?: MarginInlineEndProperty<TLength> | MarginInlineEndProperty<TLength>[],
  2690. "margin-inline-start"?: MarginInlineStartProperty<TLength> | MarginInlineStartProperty<TLength>[],
  2691. "margin-left"?: MarginLeftProperty<TLength> | MarginLeftProperty<TLength>[],
  2692. "margin-right"?: MarginRightProperty<TLength> | MarginRightProperty<TLength>[],
  2693. "margin-top"?: MarginTopProperty<TLength> | MarginTopProperty<TLength>[],
  2694. "mask-border-mode"?: MaskBorderModeProperty | MaskBorderModeProperty[],
  2695. "mask-border-outset"?: MaskBorderOutsetProperty<TLength> | MaskBorderOutsetProperty<TLength>[],
  2696. "mask-border-repeat"?: MaskBorderRepeatProperty | MaskBorderRepeatProperty[],
  2697. "mask-border-slice"?: MaskBorderSliceProperty | MaskBorderSliceProperty[],
  2698. "mask-border-source"?: MaskBorderSourceProperty | MaskBorderSourceProperty[],
  2699. "mask-border-width"?: MaskBorderWidthProperty<TLength> | MaskBorderWidthProperty<TLength>[],
  2700. "mask-clip"?: MaskClipProperty | MaskClipProperty[],
  2701. "mask-composite"?: MaskCompositeProperty | MaskCompositeProperty[],
  2702. "mask-image"?: MaskImageProperty | MaskImageProperty[],
  2703. "mask-mode"?: MaskModeProperty | MaskModeProperty[],
  2704. "mask-origin"?: MaskOriginProperty | MaskOriginProperty[],
  2705. "mask-position"?: MaskPositionProperty<TLength> | MaskPositionProperty<TLength>[],
  2706. "mask-repeat"?: MaskRepeatProperty | MaskRepeatProperty[],
  2707. "mask-size"?: MaskSizeProperty<TLength> | MaskSizeProperty<TLength>[],
  2708. "mask-type"?: MaskTypeProperty | MaskTypeProperty[],
  2709. "math-depth"?: MathDepthProperty | MathDepthProperty[],
  2710. "math-shift"?: MathShiftProperty | MathShiftProperty[],
  2711. "math-style"?: MathStyleProperty | MathStyleProperty[],
  2712. "max-block-size"?: MaxBlockSizeProperty<TLength> | MaxBlockSizeProperty<TLength>[],
  2713. "max-height"?: MaxHeightProperty<TLength> | MaxHeightProperty<TLength>[],
  2714. "max-inline-size"?: MaxInlineSizeProperty<TLength> | MaxInlineSizeProperty<TLength>[],
  2715. "max-lines"?: MaxLinesProperty | MaxLinesProperty[],
  2716. "max-width"?: MaxWidthProperty<TLength> | MaxWidthProperty<TLength>[],
  2717. "min-block-size"?: MinBlockSizeProperty<TLength> | MinBlockSizeProperty<TLength>[],
  2718. "min-height"?: MinHeightProperty<TLength> | MinHeightProperty<TLength>[],
  2719. "min-inline-size"?: MinInlineSizeProperty<TLength> | MinInlineSizeProperty<TLength>[],
  2720. "min-width"?: MinWidthProperty<TLength> | MinWidthProperty<TLength>[],
  2721. "mix-blend-mode"?: MixBlendModeProperty | MixBlendModeProperty[],
  2722. "motion-distance"?: OffsetDistanceProperty<TLength> | OffsetDistanceProperty<TLength>[],
  2723. "motion-path"?: OffsetPathProperty | OffsetPathProperty[],
  2724. "motion-rotation"?: OffsetRotateProperty | OffsetRotateProperty[],
  2725. "object-fit"?: ObjectFitProperty | ObjectFitProperty[],
  2726. "object-position"?: ObjectPositionProperty<TLength> | ObjectPositionProperty<TLength>[],
  2727. "offset-anchor"?: OffsetAnchorProperty<TLength> | OffsetAnchorProperty<TLength>[],
  2728. "offset-distance"?: OffsetDistanceProperty<TLength> | OffsetDistanceProperty<TLength>[],
  2729. "offset-path"?: OffsetPathProperty | OffsetPathProperty[],
  2730. "offset-rotate"?: OffsetRotateProperty | OffsetRotateProperty[],
  2731. "offset-rotation"?: OffsetRotateProperty | OffsetRotateProperty[],
  2732. opacity?: OpacityProperty | OpacityProperty[],
  2733. order?: GlobalsNumber | GlobalsNumber[],
  2734. orphans?: GlobalsNumber | GlobalsNumber[],
  2735. "outline-color"?: OutlineColorProperty | OutlineColorProperty[],
  2736. "outline-offset"?: OutlineOffsetProperty<TLength> | OutlineOffsetProperty<TLength>[],
  2737. "outline-style"?: OutlineStyleProperty | OutlineStyleProperty[],
  2738. "outline-width"?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[],
  2739. "overflow-anchor"?: OverflowAnchorProperty | OverflowAnchorProperty[],
  2740. "overflow-block"?: OverflowBlockProperty | OverflowBlockProperty[],
  2741. "overflow-clip-box"?: OverflowClipBoxProperty | OverflowClipBoxProperty[],
  2742. "overflow-clip-margin"?: OverflowClipMarginProperty<TLength> | OverflowClipMarginProperty<TLength>[],
  2743. "overflow-inline"?: OverflowInlineProperty | OverflowInlineProperty[],
  2744. "overflow-wrap"?: OverflowWrapProperty | OverflowWrapProperty[],
  2745. "overflow-x"?: OverflowXProperty | OverflowXProperty[],
  2746. "overflow-y"?: OverflowYProperty | OverflowYProperty[],
  2747. "overscroll-behavior-block"?: OverscrollBehaviorBlockProperty | OverscrollBehaviorBlockProperty[],
  2748. "overscroll-behavior-inline"?: OverscrollBehaviorInlineProperty | OverscrollBehaviorInlineProperty[],
  2749. "overscroll-behavior-x"?: OverscrollBehaviorXProperty | OverscrollBehaviorXProperty[],
  2750. "overscroll-behavior-y"?: OverscrollBehaviorYProperty | OverscrollBehaviorYProperty[],
  2751. "padding-block"?: PaddingBlockProperty<TLength> | PaddingBlockProperty<TLength>[],
  2752. "padding-block-end"?: PaddingBlockEndProperty<TLength> | PaddingBlockEndProperty<TLength>[],
  2753. "padding-block-start"?: PaddingBlockStartProperty<TLength> | PaddingBlockStartProperty<TLength>[],
  2754. "padding-bottom"?: PaddingBottomProperty<TLength> | PaddingBottomProperty<TLength>[],
  2755. "padding-inline"?: PaddingInlineProperty<TLength> | PaddingInlineProperty<TLength>[],
  2756. "padding-inline-end"?: PaddingInlineEndProperty<TLength> | PaddingInlineEndProperty<TLength>[],
  2757. "padding-inline-start"?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
  2758. "padding-left"?: PaddingLeftProperty<TLength> | PaddingLeftProperty<TLength>[],
  2759. "padding-right"?: PaddingRightProperty<TLength> | PaddingRightProperty<TLength>[],
  2760. "padding-top"?: PaddingTopProperty<TLength> | PaddingTopProperty<TLength>[],
  2761. "page-break-after"?: PageBreakAfterProperty | PageBreakAfterProperty[],
  2762. "page-break-before"?: PageBreakBeforeProperty | PageBreakBeforeProperty[],
  2763. "page-break-inside"?: PageBreakInsideProperty | PageBreakInsideProperty[],
  2764. "paint-order"?: PaintOrderProperty | PaintOrderProperty[],
  2765. perspective?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
  2766. "perspective-origin"?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
  2767. "place-content"?: PlaceContentProperty | PlaceContentProperty[],
  2768. "pointer-events"?: PointerEventsProperty | PointerEventsProperty[],
  2769. position?: PositionProperty | PositionProperty[],
  2770. "print-color-adjust"?: PrintColorAdjustProperty | PrintColorAdjustProperty[],
  2771. quotes?: QuotesProperty | QuotesProperty[],
  2772. resize?: ResizeProperty | ResizeProperty[],
  2773. right?: RightProperty<TLength> | RightProperty<TLength>[],
  2774. rotate?: RotateProperty | RotateProperty[],
  2775. "row-gap"?: RowGapProperty<TLength> | RowGapProperty<TLength>[],
  2776. "ruby-align"?: RubyAlignProperty | RubyAlignProperty[],
  2777. "ruby-merge"?: RubyMergeProperty | RubyMergeProperty[],
  2778. "ruby-position"?: RubyPositionProperty | RubyPositionProperty[],
  2779. scale?: ScaleProperty | ScaleProperty[],
  2780. "scroll-behavior"?: ScrollBehaviorProperty | ScrollBehaviorProperty[],
  2781. "scroll-margin"?: ScrollMarginProperty<TLength> | ScrollMarginProperty<TLength>[],
  2782. "scroll-margin-block"?: ScrollMarginBlockProperty<TLength> | ScrollMarginBlockProperty<TLength>[],
  2783. "scroll-margin-block-end"?: ScrollMarginBlockEndProperty<TLength> | ScrollMarginBlockEndProperty<TLength>[],
  2784. "scroll-margin-block-start"?: ScrollMarginBlockStartProperty<TLength> | ScrollMarginBlockStartProperty<TLength>[],
  2785. "scroll-margin-bottom"?: ScrollMarginBottomProperty<TLength> | ScrollMarginBottomProperty<TLength>[],
  2786. "scroll-margin-inline"?: ScrollMarginInlineProperty<TLength> | ScrollMarginInlineProperty<TLength>[],
  2787. "scroll-margin-inline-end"?: ScrollMarginInlineEndProperty<TLength> | ScrollMarginInlineEndProperty<TLength>[],
  2788. "scroll-margin-inline-start"?: ScrollMarginInlineStartProperty<TLength> | ScrollMarginInlineStartProperty<TLength>[],
  2789. "scroll-margin-left"?: ScrollMarginLeftProperty<TLength> | ScrollMarginLeftProperty<TLength>[],
  2790. "scroll-margin-right"?: ScrollMarginRightProperty<TLength> | ScrollMarginRightProperty<TLength>[],
  2791. "scroll-margin-top"?: ScrollMarginTopProperty<TLength> | ScrollMarginTopProperty<TLength>[],
  2792. "scroll-padding"?: ScrollPaddingProperty<TLength> | ScrollPaddingProperty<TLength>[],
  2793. "scroll-padding-block"?: ScrollPaddingBlockProperty<TLength> | ScrollPaddingBlockProperty<TLength>[],
  2794. "scroll-padding-block-end"?: ScrollPaddingBlockEndProperty<TLength> | ScrollPaddingBlockEndProperty<TLength>[],
  2795. "scroll-padding-block-start"?: ScrollPaddingBlockStartProperty<TLength> | ScrollPaddingBlockStartProperty<TLength>[],
  2796. "scroll-padding-bottom"?: ScrollPaddingBottomProperty<TLength> | ScrollPaddingBottomProperty<TLength>[],
  2797. "scroll-padding-inline"?: ScrollPaddingInlineProperty<TLength> | ScrollPaddingInlineProperty<TLength>[],
  2798. "scroll-padding-inline-end"?: ScrollPaddingInlineEndProperty<TLength> | ScrollPaddingInlineEndProperty<TLength>[],
  2799. "scroll-padding-inline-start"?: ScrollPaddingInlineStartProperty<TLength> | ScrollPaddingInlineStartProperty<TLength>[],
  2800. "scroll-padding-left"?: ScrollPaddingLeftProperty<TLength> | ScrollPaddingLeftProperty<TLength>[],
  2801. "scroll-padding-right"?: ScrollPaddingRightProperty<TLength> | ScrollPaddingRightProperty<TLength>[],
  2802. "scroll-padding-top"?: ScrollPaddingTopProperty<TLength> | ScrollPaddingTopProperty<TLength>[],
  2803. "scroll-snap-align"?: ScrollSnapAlignProperty | ScrollSnapAlignProperty[],
  2804. "scroll-snap-margin"?: ScrollMarginProperty<TLength> | ScrollMarginProperty<TLength>[],
  2805. "scroll-snap-margin-bottom"?: ScrollMarginBottomProperty<TLength> | ScrollMarginBottomProperty<TLength>[],
  2806. "scroll-snap-margin-left"?: ScrollMarginLeftProperty<TLength> | ScrollMarginLeftProperty<TLength>[],
  2807. "scroll-snap-margin-right"?: ScrollMarginRightProperty<TLength> | ScrollMarginRightProperty<TLength>[],
  2808. "scroll-snap-margin-top"?: ScrollMarginTopProperty<TLength> | ScrollMarginTopProperty<TLength>[],
  2809. "scroll-snap-stop"?: ScrollSnapStopProperty | ScrollSnapStopProperty[],
  2810. "scroll-snap-type"?: ScrollSnapTypeProperty | ScrollSnapTypeProperty[],
  2811. "scrollbar-color"?: ScrollbarColorProperty | ScrollbarColorProperty[],
  2812. "scrollbar-gutter"?: ScrollbarGutterProperty | ScrollbarGutterProperty[],
  2813. "scrollbar-width"?: ScrollbarWidthProperty | ScrollbarWidthProperty[],
  2814. "shape-image-threshold"?: ShapeImageThresholdProperty | ShapeImageThresholdProperty[],
  2815. "shape-margin"?: ShapeMarginProperty<TLength> | ShapeMarginProperty<TLength>[],
  2816. "shape-outside"?: ShapeOutsideProperty | ShapeOutsideProperty[],
  2817. "tab-size"?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
  2818. "table-layout"?: TableLayoutProperty | TableLayoutProperty[],
  2819. "text-align"?: TextAlignProperty | TextAlignProperty[],
  2820. "text-align-last"?: TextAlignLastProperty | TextAlignLastProperty[],
  2821. "text-combine-upright"?: TextCombineUprightProperty | TextCombineUprightProperty[],
  2822. "text-decoration-color"?: TextDecorationColorProperty | TextDecorationColorProperty[],
  2823. "text-decoration-line"?: TextDecorationLineProperty | TextDecorationLineProperty[],
  2824. "text-decoration-skip"?: TextDecorationSkipProperty | TextDecorationSkipProperty[],
  2825. "text-decoration-skip-ink"?: TextDecorationSkipInkProperty | TextDecorationSkipInkProperty[],
  2826. "text-decoration-style"?: TextDecorationStyleProperty | TextDecorationStyleProperty[],
  2827. "text-decoration-thickness"?: TextDecorationThicknessProperty<TLength> | TextDecorationThicknessProperty<TLength>[],
  2828. "text-emphasis-color"?: TextEmphasisColorProperty | TextEmphasisColorProperty[],
  2829. "text-emphasis-position"?: GlobalsString | GlobalsString[],
  2830. "text-emphasis-style"?: TextEmphasisStyleProperty | TextEmphasisStyleProperty[],
  2831. "text-indent"?: TextIndentProperty<TLength> | TextIndentProperty<TLength>[],
  2832. "text-justify"?: TextJustifyProperty | TextJustifyProperty[],
  2833. "text-orientation"?: TextOrientationProperty | TextOrientationProperty[],
  2834. "text-overflow"?: TextOverflowProperty | TextOverflowProperty[],
  2835. "text-rendering"?: TextRenderingProperty | TextRenderingProperty[],
  2836. "text-shadow"?: TextShadowProperty | TextShadowProperty[],
  2837. "text-size-adjust"?: TextSizeAdjustProperty | TextSizeAdjustProperty[],
  2838. "text-transform"?: TextTransformProperty | TextTransformProperty[],
  2839. "text-underline-offset"?: TextUnderlineOffsetProperty<TLength> | TextUnderlineOffsetProperty<TLength>[],
  2840. "text-underline-position"?: TextUnderlinePositionProperty | TextUnderlinePositionProperty[],
  2841. top?: TopProperty<TLength> | TopProperty<TLength>[],
  2842. "touch-action"?: TouchActionProperty | TouchActionProperty[],
  2843. transform?: TransformProperty | TransformProperty[],
  2844. "transform-box"?: TransformBoxProperty | TransformBoxProperty[],
  2845. "transform-origin"?: TransformOriginProperty<TLength> | TransformOriginProperty<TLength>[],
  2846. "transform-style"?: TransformStyleProperty | TransformStyleProperty[],
  2847. "transition-delay"?: GlobalsString | GlobalsString[],
  2848. "transition-duration"?: GlobalsString | GlobalsString[],
  2849. "transition-property"?: TransitionPropertyProperty | TransitionPropertyProperty[],
  2850. "transition-timing-function"?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[],
  2851. translate?: TranslateProperty<TLength> | TranslateProperty<TLength>[],
  2852. "unicode-bidi"?: UnicodeBidiProperty | UnicodeBidiProperty[],
  2853. "user-select"?: UserSelectProperty | UserSelectProperty[],
  2854. "vertical-align"?: VerticalAlignProperty<TLength> | VerticalAlignProperty<TLength>[],
  2855. visibility?: VisibilityProperty | VisibilityProperty[],
  2856. "white-space"?: WhiteSpaceProperty | WhiteSpaceProperty[],
  2857. widows?: GlobalsNumber | GlobalsNumber[],
  2858. width?: WidthProperty<TLength> | WidthProperty<TLength>[],
  2859. "will-change"?: WillChangeProperty | WillChangeProperty[],
  2860. "word-break"?: WordBreakProperty | WordBreakProperty[],
  2861. "word-spacing"?: WordSpacingProperty<TLength> | WordSpacingProperty<TLength>[],
  2862. "word-wrap"?: WordWrapProperty | WordWrapProperty[],
  2863. "writing-mode"?: WritingModeProperty | WritingModeProperty[],
  2864. "z-index"?: ZIndexProperty | ZIndexProperty[],
  2865. zoom?: ZoomProperty | ZoomProperty[],
  2866. };
  2867. export type StandardShorthandPropertiesHyphenFallback<TLength = string | 0> = {
  2868. all?: Globals | Globals[],
  2869. animation?: AnimationProperty | AnimationProperty[],
  2870. background?: BackgroundProperty<TLength> | BackgroundProperty<TLength>[],
  2871. "background-position"?: BackgroundPositionProperty<TLength> | BackgroundPositionProperty<TLength>[],
  2872. border?: BorderProperty<TLength> | BorderProperty<TLength>[],
  2873. "border-block"?: BorderBlockProperty<TLength> | BorderBlockProperty<TLength>[],
  2874. "border-block-end"?: BorderBlockEndProperty<TLength> | BorderBlockEndProperty<TLength>[],
  2875. "border-block-start"?: BorderBlockStartProperty<TLength> | BorderBlockStartProperty<TLength>[],
  2876. "border-bottom"?: BorderBottomProperty<TLength> | BorderBottomProperty<TLength>[],
  2877. "border-color"?: BorderColorProperty | BorderColorProperty[],
  2878. "border-image"?: BorderImageProperty | BorderImageProperty[],
  2879. "border-inline"?: BorderInlineProperty<TLength> | BorderInlineProperty<TLength>[],
  2880. "border-inline-end"?: BorderInlineEndProperty<TLength> | BorderInlineEndProperty<TLength>[],
  2881. "border-inline-start"?: BorderInlineStartProperty<TLength> | BorderInlineStartProperty<TLength>[],
  2882. "border-left"?: BorderLeftProperty<TLength> | BorderLeftProperty<TLength>[],
  2883. "border-radius"?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
  2884. "border-right"?: BorderRightProperty<TLength> | BorderRightProperty<TLength>[],
  2885. "border-style"?: BorderStyleProperty | BorderStyleProperty[],
  2886. "border-top"?: BorderTopProperty<TLength> | BorderTopProperty<TLength>[],
  2887. "border-width"?: BorderWidthProperty<TLength> | BorderWidthProperty<TLength>[],
  2888. "column-rule"?: ColumnRuleProperty<TLength> | ColumnRuleProperty<TLength>[],
  2889. columns?: ColumnsProperty<TLength> | ColumnsProperty<TLength>[],
  2890. flex?: FlexProperty<TLength> | FlexProperty<TLength>[],
  2891. "flex-flow"?: FlexFlowProperty | FlexFlowProperty[],
  2892. font?: FontProperty | FontProperty[],
  2893. gap?: GapProperty<TLength> | GapProperty<TLength>[],
  2894. grid?: GridProperty | GridProperty[],
  2895. "grid-area"?: GridAreaProperty | GridAreaProperty[],
  2896. "grid-column"?: GridColumnProperty | GridColumnProperty[],
  2897. "grid-row"?: GridRowProperty | GridRowProperty[],
  2898. "grid-template"?: GridTemplateProperty | GridTemplateProperty[],
  2899. "line-clamp"?: LineClampProperty | LineClampProperty[],
  2900. "list-style"?: ListStyleProperty | ListStyleProperty[],
  2901. margin?: MarginProperty<TLength> | MarginProperty<TLength>[],
  2902. mask?: MaskProperty<TLength> | MaskProperty<TLength>[],
  2903. "mask-border"?: MaskBorderProperty | MaskBorderProperty[],
  2904. motion?: OffsetProperty<TLength> | OffsetProperty<TLength>[],
  2905. offset?: OffsetProperty<TLength> | OffsetProperty<TLength>[],
  2906. outline?: OutlineProperty<TLength> | OutlineProperty<TLength>[],
  2907. overflow?: OverflowProperty | OverflowProperty[],
  2908. "overscroll-behavior"?: OverscrollBehaviorProperty | OverscrollBehaviorProperty[],
  2909. padding?: PaddingProperty<TLength> | PaddingProperty<TLength>[],
  2910. "place-items"?: PlaceItemsProperty | PlaceItemsProperty[],
  2911. "place-self"?: PlaceSelfProperty | PlaceSelfProperty[],
  2912. "text-decoration"?: TextDecorationProperty<TLength> | TextDecorationProperty<TLength>[],
  2913. "text-emphasis"?: TextEmphasisProperty | TextEmphasisProperty[],
  2914. transition?: TransitionProperty | TransitionProperty[],
  2915. };
  2916. export type StandardPropertiesHyphenFallback<TLength = string | 0> = StandardLonghandPropertiesHyphenFallback<TLength> & StandardShorthandPropertiesHyphenFallback<TLength>;
  2917. export type VendorLonghandPropertiesHyphenFallback<TLength = string | 0> = {
  2918. "-moz-animation-delay"?: GlobalsString | GlobalsString[],
  2919. "-moz-animation-direction"?: AnimationDirectionProperty | AnimationDirectionProperty[],
  2920. "-moz-animation-duration"?: GlobalsString | GlobalsString[],
  2921. "-moz-animation-fill-mode"?: AnimationFillModeProperty | AnimationFillModeProperty[],
  2922. "-moz-animation-iteration-count"?: AnimationIterationCountProperty | AnimationIterationCountProperty[],
  2923. "-moz-animation-name"?: AnimationNameProperty | AnimationNameProperty[],
  2924. "-moz-animation-play-state"?: AnimationPlayStateProperty | AnimationPlayStateProperty[],
  2925. "-moz-animation-timing-function"?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
  2926. "-moz-appearance"?: MozAppearanceProperty | MozAppearanceProperty[],
  2927. "-moz-backface-visibility"?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
  2928. "-moz-border-bottom-colors"?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[],
  2929. "-moz-border-end-color"?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[],
  2930. "-moz-border-end-style"?: BorderInlineEndStyleProperty | BorderInlineEndStyleProperty[],
  2931. "-moz-border-end-width"?: BorderInlineEndWidthProperty<TLength> | BorderInlineEndWidthProperty<TLength>[],
  2932. "-moz-border-left-colors"?: MozBorderLeftColorsProperty | MozBorderLeftColorsProperty[],
  2933. "-moz-border-right-colors"?: MozBorderRightColorsProperty | MozBorderRightColorsProperty[],
  2934. "-moz-border-start-color"?: BorderInlineStartColorProperty | BorderInlineStartColorProperty[],
  2935. "-moz-border-start-style"?: BorderInlineStartStyleProperty | BorderInlineStartStyleProperty[],
  2936. "-moz-border-top-colors"?: MozBorderTopColorsProperty | MozBorderTopColorsProperty[],
  2937. "-moz-box-sizing"?: BoxSizingProperty | BoxSizingProperty[],
  2938. "-moz-column-count"?: ColumnCountProperty | ColumnCountProperty[],
  2939. "-moz-column-fill"?: ColumnFillProperty | ColumnFillProperty[],
  2940. "-moz-column-rule-color"?: ColumnRuleColorProperty | ColumnRuleColorProperty[],
  2941. "-moz-column-rule-style"?: ColumnRuleStyleProperty | ColumnRuleStyleProperty[],
  2942. "-moz-column-rule-width"?: ColumnRuleWidthProperty<TLength> | ColumnRuleWidthProperty<TLength>[],
  2943. "-moz-column-width"?: ColumnWidthProperty<TLength> | ColumnWidthProperty<TLength>[],
  2944. "-moz-context-properties"?: MozContextPropertiesProperty | MozContextPropertiesProperty[],
  2945. "-moz-font-feature-settings"?: FontFeatureSettingsProperty | FontFeatureSettingsProperty[],
  2946. "-moz-font-language-override"?: FontLanguageOverrideProperty | FontLanguageOverrideProperty[],
  2947. "-moz-hyphens"?: HyphensProperty | HyphensProperty[],
  2948. "-moz-image-region"?: MozImageRegionProperty | MozImageRegionProperty[],
  2949. "-moz-margin-end"?: MarginInlineEndProperty<TLength> | MarginInlineEndProperty<TLength>[],
  2950. "-moz-margin-start"?: MarginInlineStartProperty<TLength> | MarginInlineStartProperty<TLength>[],
  2951. "-moz-orient"?: MozOrientProperty | MozOrientProperty[],
  2952. "-moz-osx-font-smoothing"?: FontSmoothProperty<TLength> | FontSmoothProperty<TLength>[],
  2953. "-moz-padding-end"?: PaddingInlineEndProperty<TLength> | PaddingInlineEndProperty<TLength>[],
  2954. "-moz-padding-start"?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
  2955. "-moz-perspective"?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
  2956. "-moz-perspective-origin"?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
  2957. "-moz-stack-sizing"?: MozStackSizingProperty | MozStackSizingProperty[],
  2958. "-moz-tab-size"?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
  2959. "-moz-text-blink"?: MozTextBlinkProperty | MozTextBlinkProperty[],
  2960. "-moz-text-size-adjust"?: TextSizeAdjustProperty | TextSizeAdjustProperty[],
  2961. "-moz-transform-origin"?: TransformOriginProperty<TLength> | TransformOriginProperty<TLength>[],
  2962. "-moz-transform-style"?: TransformStyleProperty | TransformStyleProperty[],
  2963. "-moz-transition-delay"?: GlobalsString | GlobalsString[],
  2964. "-moz-transition-duration"?: GlobalsString | GlobalsString[],
  2965. "-moz-transition-property"?: TransitionPropertyProperty | TransitionPropertyProperty[],
  2966. "-moz-transition-timing-function"?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[],
  2967. "-moz-user-focus"?: MozUserFocusProperty | MozUserFocusProperty[],
  2968. "-moz-user-modify"?: MozUserModifyProperty | MozUserModifyProperty[],
  2969. "-moz-user-select"?: UserSelectProperty | UserSelectProperty[],
  2970. "-moz-window-dragging"?: MozWindowDraggingProperty | MozWindowDraggingProperty[],
  2971. "-moz-window-shadow"?: MozWindowShadowProperty | MozWindowShadowProperty[],
  2972. "-ms-accelerator"?: MsAcceleratorProperty | MsAcceleratorProperty[],
  2973. "-ms-block-progression"?: MsBlockProgressionProperty | MsBlockProgressionProperty[],
  2974. "-ms-content-zoom-chaining"?: MsContentZoomChainingProperty | MsContentZoomChainingProperty[],
  2975. "-ms-content-zoom-limit-max"?: GlobalsString | GlobalsString[],
  2976. "-ms-content-zoom-limit-min"?: GlobalsString | GlobalsString[],
  2977. "-ms-content-zoom-snap-points"?: GlobalsString | GlobalsString[],
  2978. "-ms-content-zoom-snap-type"?: MsContentZoomSnapTypeProperty | MsContentZoomSnapTypeProperty[],
  2979. "-ms-content-zooming"?: MsContentZoomingProperty | MsContentZoomingProperty[],
  2980. "-ms-filter"?: GlobalsString | GlobalsString[],
  2981. "-ms-flex-direction"?: FlexDirectionProperty | FlexDirectionProperty[],
  2982. "-ms-flex-positive"?: GlobalsNumber | GlobalsNumber[],
  2983. "-ms-flow-from"?: MsFlowFromProperty | MsFlowFromProperty[],
  2984. "-ms-flow-into"?: MsFlowIntoProperty | MsFlowIntoProperty[],
  2985. "-ms-grid-columns"?: MsGridColumnsProperty<TLength> | MsGridColumnsProperty<TLength>[],
  2986. "-ms-grid-rows"?: MsGridRowsProperty<TLength> | MsGridRowsProperty<TLength>[],
  2987. "-ms-high-contrast-adjust"?: MsHighContrastAdjustProperty | MsHighContrastAdjustProperty[],
  2988. "-ms-hyphenate-limit-chars"?: MsHyphenateLimitCharsProperty | MsHyphenateLimitCharsProperty[],
  2989. "-ms-hyphenate-limit-lines"?: MsHyphenateLimitLinesProperty | MsHyphenateLimitLinesProperty[],
  2990. "-ms-hyphenate-limit-zone"?: MsHyphenateLimitZoneProperty<TLength> | MsHyphenateLimitZoneProperty<TLength>[],
  2991. "-ms-hyphens"?: HyphensProperty | HyphensProperty[],
  2992. "-ms-ime-align"?: MsImeAlignProperty | MsImeAlignProperty[],
  2993. "-ms-line-break"?: LineBreakProperty | LineBreakProperty[],
  2994. "-ms-order"?: GlobalsNumber | GlobalsNumber[],
  2995. "-ms-overflow-style"?: MsOverflowStyleProperty | MsOverflowStyleProperty[],
  2996. "-ms-overflow-x"?: OverflowXProperty | OverflowXProperty[],
  2997. "-ms-overflow-y"?: OverflowYProperty | OverflowYProperty[],
  2998. "-ms-scroll-chaining"?: MsScrollChainingProperty | MsScrollChainingProperty[],
  2999. "-ms-scroll-limit-x-max"?: MsScrollLimitXMaxProperty<TLength> | MsScrollLimitXMaxProperty<TLength>[],
  3000. "-ms-scroll-limit-x-min"?: MsScrollLimitXMinProperty<TLength> | MsScrollLimitXMinProperty<TLength>[],
  3001. "-ms-scroll-limit-y-max"?: MsScrollLimitYMaxProperty<TLength> | MsScrollLimitYMaxProperty<TLength>[],
  3002. "-ms-scroll-limit-y-min"?: MsScrollLimitYMinProperty<TLength> | MsScrollLimitYMinProperty<TLength>[],
  3003. "-ms-scroll-rails"?: MsScrollRailsProperty | MsScrollRailsProperty[],
  3004. "-ms-scroll-snap-points-x"?: GlobalsString | GlobalsString[],
  3005. "-ms-scroll-snap-points-y"?: GlobalsString | GlobalsString[],
  3006. "-ms-scroll-snap-type"?: MsScrollSnapTypeProperty | MsScrollSnapTypeProperty[],
  3007. "-ms-scroll-translation"?: MsScrollTranslationProperty | MsScrollTranslationProperty[],
  3008. "-ms-scrollbar-3dlight-color"?: MsScrollbar3dlightColorProperty | MsScrollbar3dlightColorProperty[],
  3009. "-ms-scrollbar-arrow-color"?: MsScrollbarArrowColorProperty | MsScrollbarArrowColorProperty[],
  3010. "-ms-scrollbar-base-color"?: MsScrollbarBaseColorProperty | MsScrollbarBaseColorProperty[],
  3011. "-ms-scrollbar-darkshadow-color"?: MsScrollbarDarkshadowColorProperty | MsScrollbarDarkshadowColorProperty[],
  3012. "-ms-scrollbar-face-color"?: MsScrollbarFaceColorProperty | MsScrollbarFaceColorProperty[],
  3013. "-ms-scrollbar-highlight-color"?: MsScrollbarHighlightColorProperty | MsScrollbarHighlightColorProperty[],
  3014. "-ms-scrollbar-shadow-color"?: MsScrollbarShadowColorProperty | MsScrollbarShadowColorProperty[],
  3015. "-ms-scrollbar-track-color"?: MsScrollbarTrackColorProperty | MsScrollbarTrackColorProperty[],
  3016. "-ms-text-autospace"?: MsTextAutospaceProperty | MsTextAutospaceProperty[],
  3017. "-ms-text-combine-horizontal"?: TextCombineUprightProperty | TextCombineUprightProperty[],
  3018. "-ms-text-overflow"?: TextOverflowProperty | TextOverflowProperty[],
  3019. "-ms-touch-action"?: TouchActionProperty | TouchActionProperty[],
  3020. "-ms-touch-select"?: MsTouchSelectProperty | MsTouchSelectProperty[],
  3021. "-ms-transform"?: TransformProperty | TransformProperty[],
  3022. "-ms-transform-origin"?: TransformOriginProperty<TLength> | TransformOriginProperty<TLength>[],
  3023. "-ms-transition-delay"?: GlobalsString | GlobalsString[],
  3024. "-ms-transition-duration"?: GlobalsString | GlobalsString[],
  3025. "-ms-transition-property"?: TransitionPropertyProperty | TransitionPropertyProperty[],
  3026. "-ms-transition-timing-function"?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[],
  3027. "-ms-user-select"?: MsUserSelectProperty | MsUserSelectProperty[],
  3028. "-ms-word-break"?: WordBreakProperty | WordBreakProperty[],
  3029. "-ms-wrap-flow"?: MsWrapFlowProperty | MsWrapFlowProperty[],
  3030. "-ms-wrap-margin"?: MsWrapMarginProperty<TLength> | MsWrapMarginProperty<TLength>[],
  3031. "-ms-wrap-through"?: MsWrapThroughProperty | MsWrapThroughProperty[],
  3032. "-ms-writing-mode"?: WritingModeProperty | WritingModeProperty[],
  3033. "-webkit-align-content"?: AlignContentProperty | AlignContentProperty[],
  3034. "-webkit-align-items"?: AlignItemsProperty | AlignItemsProperty[],
  3035. "-webkit-align-self"?: AlignSelfProperty | AlignSelfProperty[],
  3036. "-webkit-animation-delay"?: GlobalsString | GlobalsString[],
  3037. "-webkit-animation-direction"?: AnimationDirectionProperty | AnimationDirectionProperty[],
  3038. "-webkit-animation-duration"?: GlobalsString | GlobalsString[],
  3039. "-webkit-animation-fill-mode"?: AnimationFillModeProperty | AnimationFillModeProperty[],
  3040. "-webkit-animation-iteration-count"?: AnimationIterationCountProperty | AnimationIterationCountProperty[],
  3041. "-webkit-animation-name"?: AnimationNameProperty | AnimationNameProperty[],
  3042. "-webkit-animation-play-state"?: AnimationPlayStateProperty | AnimationPlayStateProperty[],
  3043. "-webkit-animation-timing-function"?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
  3044. "-webkit-appearance"?: WebkitAppearanceProperty | WebkitAppearanceProperty[],
  3045. "-webkit-backdrop-filter"?: BackdropFilterProperty | BackdropFilterProperty[],
  3046. "-webkit-backface-visibility"?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
  3047. "-webkit-background-clip"?: BackgroundClipProperty | BackgroundClipProperty[],
  3048. "-webkit-background-origin"?: BackgroundOriginProperty | BackgroundOriginProperty[],
  3049. "-webkit-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
  3050. "-webkit-border-before-color"?: WebkitBorderBeforeColorProperty | WebkitBorderBeforeColorProperty[],
  3051. "-webkit-border-before-style"?: WebkitBorderBeforeStyleProperty | WebkitBorderBeforeStyleProperty[],
  3052. "-webkit-border-before-width"?: WebkitBorderBeforeWidthProperty<TLength> | WebkitBorderBeforeWidthProperty<TLength>[],
  3053. "-webkit-border-bottom-left-radius"?: BorderBottomLeftRadiusProperty<TLength> | BorderBottomLeftRadiusProperty<TLength>[],
  3054. "-webkit-border-bottom-right-radius"?: BorderBottomRightRadiusProperty<TLength> | BorderBottomRightRadiusProperty<TLength>[],
  3055. "-webkit-border-image-slice"?: BorderImageSliceProperty | BorderImageSliceProperty[],
  3056. "-webkit-border-top-left-radius"?: BorderTopLeftRadiusProperty<TLength> | BorderTopLeftRadiusProperty<TLength>[],
  3057. "-webkit-border-top-right-radius"?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
  3058. "-webkit-box-decoration-break"?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
  3059. "-webkit-box-reflect"?: WebkitBoxReflectProperty<TLength> | WebkitBoxReflectProperty<TLength>[],
  3060. "-webkit-box-shadow"?: BoxShadowProperty | BoxShadowProperty[],
  3061. "-webkit-box-sizing"?: BoxSizingProperty | BoxSizingProperty[],
  3062. "-webkit-clip-path"?: ClipPathProperty | ClipPathProperty[],
  3063. "-webkit-column-count"?: ColumnCountProperty | ColumnCountProperty[],
  3064. "-webkit-column-fill"?: ColumnFillProperty | ColumnFillProperty[],
  3065. "-webkit-column-rule-color"?: ColumnRuleColorProperty | ColumnRuleColorProperty[],
  3066. "-webkit-column-rule-style"?: ColumnRuleStyleProperty | ColumnRuleStyleProperty[],
  3067. "-webkit-column-rule-width"?: ColumnRuleWidthProperty<TLength> | ColumnRuleWidthProperty<TLength>[],
  3068. "-webkit-column-span"?: ColumnSpanProperty | ColumnSpanProperty[],
  3069. "-webkit-column-width"?: ColumnWidthProperty<TLength> | ColumnWidthProperty<TLength>[],
  3070. "-webkit-filter"?: FilterProperty | FilterProperty[],
  3071. "-webkit-flex-basis"?: FlexBasisProperty<TLength> | FlexBasisProperty<TLength>[],
  3072. "-webkit-flex-direction"?: FlexDirectionProperty | FlexDirectionProperty[],
  3073. "-webkit-flex-grow"?: GlobalsNumber | GlobalsNumber[],
  3074. "-webkit-flex-shrink"?: GlobalsNumber | GlobalsNumber[],
  3075. "-webkit-flex-wrap"?: FlexWrapProperty | FlexWrapProperty[],
  3076. "-webkit-font-feature-settings"?: FontFeatureSettingsProperty | FontFeatureSettingsProperty[],
  3077. "-webkit-font-kerning"?: FontKerningProperty | FontKerningProperty[],
  3078. "-webkit-font-smoothing"?: FontSmoothProperty<TLength> | FontSmoothProperty<TLength>[],
  3079. "-webkit-font-variant-ligatures"?: FontVariantLigaturesProperty | FontVariantLigaturesProperty[],
  3080. "-webkit-hyphenate-character"?: HyphenateCharacterProperty | HyphenateCharacterProperty[],
  3081. "-webkit-hyphens"?: HyphensProperty | HyphensProperty[],
  3082. "-webkit-initial-letter"?: InitialLetterProperty | InitialLetterProperty[],
  3083. "-webkit-justify-content"?: JustifyContentProperty | JustifyContentProperty[],
  3084. "-webkit-line-break"?: LineBreakProperty | LineBreakProperty[],
  3085. "-webkit-line-clamp"?: WebkitLineClampProperty | WebkitLineClampProperty[],
  3086. "-webkit-margin-end"?: MarginInlineEndProperty<TLength> | MarginInlineEndProperty<TLength>[],
  3087. "-webkit-margin-start"?: MarginInlineStartProperty<TLength> | MarginInlineStartProperty<TLength>[],
  3088. "-webkit-mask-attachment"?: WebkitMaskAttachmentProperty | WebkitMaskAttachmentProperty[],
  3089. "-webkit-mask-box-image-outset"?: MaskBorderOutsetProperty<TLength> | MaskBorderOutsetProperty<TLength>[],
  3090. "-webkit-mask-box-image-repeat"?: MaskBorderRepeatProperty | MaskBorderRepeatProperty[],
  3091. "-webkit-mask-box-image-slice"?: MaskBorderSliceProperty | MaskBorderSliceProperty[],
  3092. "-webkit-mask-box-image-source"?: MaskBorderSourceProperty | MaskBorderSourceProperty[],
  3093. "-webkit-mask-box-image-width"?: MaskBorderWidthProperty<TLength> | MaskBorderWidthProperty<TLength>[],
  3094. "-webkit-mask-clip"?: WebkitMaskClipProperty | WebkitMaskClipProperty[],
  3095. "-webkit-mask-composite"?: WebkitMaskCompositeProperty | WebkitMaskCompositeProperty[],
  3096. "-webkit-mask-image"?: WebkitMaskImageProperty | WebkitMaskImageProperty[],
  3097. "-webkit-mask-origin"?: WebkitMaskOriginProperty | WebkitMaskOriginProperty[],
  3098. "-webkit-mask-position"?: WebkitMaskPositionProperty<TLength> | WebkitMaskPositionProperty<TLength>[],
  3099. "-webkit-mask-position-x"?: WebkitMaskPositionXProperty<TLength> | WebkitMaskPositionXProperty<TLength>[],
  3100. "-webkit-mask-position-y"?: WebkitMaskPositionYProperty<TLength> | WebkitMaskPositionYProperty<TLength>[],
  3101. "-webkit-mask-repeat"?: WebkitMaskRepeatProperty | WebkitMaskRepeatProperty[],
  3102. "-webkit-mask-repeat-x"?: WebkitMaskRepeatXProperty | WebkitMaskRepeatXProperty[],
  3103. "-webkit-mask-repeat-y"?: WebkitMaskRepeatYProperty | WebkitMaskRepeatYProperty[],
  3104. "-webkit-mask-size"?: WebkitMaskSizeProperty<TLength> | WebkitMaskSizeProperty<TLength>[],
  3105. "-webkit-max-inline-size"?: MaxInlineSizeProperty<TLength> | MaxInlineSizeProperty<TLength>[],
  3106. "-webkit-order"?: GlobalsNumber | GlobalsNumber[],
  3107. "-webkit-overflow-scrolling"?: WebkitOverflowScrollingProperty | WebkitOverflowScrollingProperty[],
  3108. "-webkit-padding-end"?: PaddingInlineEndProperty<TLength> | PaddingInlineEndProperty<TLength>[],
  3109. "-webkit-padding-start"?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
  3110. "-webkit-perspective"?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
  3111. "-webkit-perspective-origin"?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
  3112. "-webkit-print-color-adjust"?: PrintColorAdjustProperty | PrintColorAdjustProperty[],
  3113. "-webkit-ruby-position"?: RubyPositionProperty | RubyPositionProperty[],
  3114. "-webkit-scroll-snap-type"?: ScrollSnapTypeProperty | ScrollSnapTypeProperty[],
  3115. "-webkit-shape-margin"?: ShapeMarginProperty<TLength> | ShapeMarginProperty<TLength>[],
  3116. "-webkit-tap-highlight-color"?: WebkitTapHighlightColorProperty | WebkitTapHighlightColorProperty[],
  3117. "-webkit-text-combine"?: TextCombineUprightProperty | TextCombineUprightProperty[],
  3118. "-webkit-text-decoration-color"?: TextDecorationColorProperty | TextDecorationColorProperty[],
  3119. "-webkit-text-decoration-line"?: TextDecorationLineProperty | TextDecorationLineProperty[],
  3120. "-webkit-text-decoration-skip"?: TextDecorationSkipProperty | TextDecorationSkipProperty[],
  3121. "-webkit-text-decoration-style"?: TextDecorationStyleProperty | TextDecorationStyleProperty[],
  3122. "-webkit-text-emphasis-color"?: TextEmphasisColorProperty | TextEmphasisColorProperty[],
  3123. "-webkit-text-emphasis-position"?: GlobalsString | GlobalsString[],
  3124. "-webkit-text-emphasis-style"?: TextEmphasisStyleProperty | TextEmphasisStyleProperty[],
  3125. "-webkit-text-fill-color"?: WebkitTextFillColorProperty | WebkitTextFillColorProperty[],
  3126. "-webkit-text-orientation"?: TextOrientationProperty | TextOrientationProperty[],
  3127. "-webkit-text-size-adjust"?: TextSizeAdjustProperty | TextSizeAdjustProperty[],
  3128. "-webkit-text-stroke-color"?: WebkitTextStrokeColorProperty | WebkitTextStrokeColorProperty[],
  3129. "-webkit-text-stroke-width"?: WebkitTextStrokeWidthProperty<TLength> | WebkitTextStrokeWidthProperty<TLength>[],
  3130. "-webkit-text-underline-position"?: TextUnderlinePositionProperty | TextUnderlinePositionProperty[],
  3131. "-webkit-touch-callout"?: WebkitTouchCalloutProperty | WebkitTouchCalloutProperty[],
  3132. "-webkit-transform"?: TransformProperty | TransformProperty[],
  3133. "-webkit-transform-origin"?: TransformOriginProperty<TLength> | TransformOriginProperty<TLength>[],
  3134. "-webkit-transform-style"?: TransformStyleProperty | TransformStyleProperty[],
  3135. "-webkit-transition-delay"?: GlobalsString | GlobalsString[],
  3136. "-webkit-transition-duration"?: GlobalsString | GlobalsString[],
  3137. "-webkit-transition-property"?: TransitionPropertyProperty | TransitionPropertyProperty[],
  3138. "-webkit-transition-timing-function"?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[],
  3139. "-webkit-user-modify"?: WebkitUserModifyProperty | WebkitUserModifyProperty[],
  3140. "-webkit-user-select"?: UserSelectProperty | UserSelectProperty[],
  3141. "-webkit-writing-mode"?: WritingModeProperty | WritingModeProperty[],
  3142. };
  3143. export type VendorShorthandPropertiesHyphenFallback<TLength = string | 0> = {
  3144. "-moz-animation"?: AnimationProperty | AnimationProperty[],
  3145. "-moz-border-image"?: BorderImageProperty | BorderImageProperty[],
  3146. "-moz-column-rule"?: ColumnRuleProperty<TLength> | ColumnRuleProperty<TLength>[],
  3147. "-moz-columns"?: ColumnsProperty<TLength> | ColumnsProperty<TLength>[],
  3148. "-moz-transition"?: TransitionProperty | TransitionProperty[],
  3149. "-ms-content-zoom-limit"?: GlobalsString | GlobalsString[],
  3150. "-ms-content-zoom-snap"?: MsContentZoomSnapProperty | MsContentZoomSnapProperty[],
  3151. "-ms-flex"?: FlexProperty<TLength> | FlexProperty<TLength>[],
  3152. "-ms-scroll-limit"?: GlobalsString | GlobalsString[],
  3153. "-ms-scroll-snap-x"?: GlobalsString | GlobalsString[],
  3154. "-ms-scroll-snap-y"?: GlobalsString | GlobalsString[],
  3155. "-ms-transition"?: TransitionProperty | TransitionProperty[],
  3156. "-webkit-animation"?: AnimationProperty | AnimationProperty[],
  3157. "-webkit-border-before"?: WebkitBorderBeforeProperty<TLength> | WebkitBorderBeforeProperty<TLength>[],
  3158. "-webkit-border-image"?: BorderImageProperty | BorderImageProperty[],
  3159. "-webkit-border-radius"?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
  3160. "-webkit-column-rule"?: ColumnRuleProperty<TLength> | ColumnRuleProperty<TLength>[],
  3161. "-webkit-columns"?: ColumnsProperty<TLength> | ColumnsProperty<TLength>[],
  3162. "-webkit-flex"?: FlexProperty<TLength> | FlexProperty<TLength>[],
  3163. "-webkit-flex-flow"?: FlexFlowProperty | FlexFlowProperty[],
  3164. "-webkit-mask"?: WebkitMaskProperty<TLength> | WebkitMaskProperty<TLength>[],
  3165. "-webkit-mask-box-image"?: MaskBorderProperty | MaskBorderProperty[],
  3166. "-webkit-text-emphasis"?: TextEmphasisProperty | TextEmphasisProperty[],
  3167. "-webkit-text-stroke"?: WebkitTextStrokeProperty<TLength> | WebkitTextStrokeProperty<TLength>[],
  3168. "-webkit-transition"?: TransitionProperty | TransitionProperty[],
  3169. };
  3170. export type VendorPropertiesHyphenFallback<TLength = string | 0> = VendorLonghandPropertiesHyphenFallback<TLength> & VendorShorthandPropertiesHyphenFallback<TLength>;
  3171. export type ObsoletePropertiesHyphenFallback<TLength = string | 0> = {
  3172. azimuth?: AzimuthProperty | AzimuthProperty[],
  3173. "box-align"?: BoxAlignProperty | BoxAlignProperty[],
  3174. "box-direction"?: BoxDirectionProperty | BoxDirectionProperty[],
  3175. "box-flex"?: GlobalsNumber | GlobalsNumber[],
  3176. "box-flex-group"?: GlobalsNumber | GlobalsNumber[],
  3177. "box-lines"?: BoxLinesProperty | BoxLinesProperty[],
  3178. "box-ordinal-group"?: GlobalsNumber | GlobalsNumber[],
  3179. "box-orient"?: BoxOrientProperty | BoxOrientProperty[],
  3180. "box-pack"?: BoxPackProperty | BoxPackProperty[],
  3181. clip?: ClipProperty | ClipProperty[],
  3182. "grid-column-gap"?: GridColumnGapProperty<TLength> | GridColumnGapProperty<TLength>[],
  3183. "grid-gap"?: GridGapProperty<TLength> | GridGapProperty<TLength>[],
  3184. "grid-row-gap"?: GridRowGapProperty<TLength> | GridRowGapProperty<TLength>[],
  3185. "ime-mode"?: ImeModeProperty | ImeModeProperty[],
  3186. "offset-block"?: InsetBlockProperty<TLength> | InsetBlockProperty<TLength>[],
  3187. "offset-block-end"?: InsetBlockEndProperty<TLength> | InsetBlockEndProperty<TLength>[],
  3188. "offset-block-start"?: InsetBlockStartProperty<TLength> | InsetBlockStartProperty<TLength>[],
  3189. "offset-inline"?: InsetInlineProperty<TLength> | InsetInlineProperty<TLength>[],
  3190. "offset-inline-end"?: InsetInlineEndProperty<TLength> | InsetInlineEndProperty<TLength>[],
  3191. "offset-inline-start"?: InsetInlineStartProperty<TLength> | InsetInlineStartProperty<TLength>[],
  3192. "scroll-snap-coordinate"?: ScrollSnapCoordinateProperty<TLength> | ScrollSnapCoordinateProperty<TLength>[],
  3193. "scroll-snap-destination"?: ScrollSnapDestinationProperty<TLength> | ScrollSnapDestinationProperty<TLength>[],
  3194. "scroll-snap-points-x"?: ScrollSnapPointsXProperty | ScrollSnapPointsXProperty[],
  3195. "scroll-snap-points-y"?: ScrollSnapPointsYProperty | ScrollSnapPointsYProperty[],
  3196. "scroll-snap-type-x"?: ScrollSnapTypeXProperty | ScrollSnapTypeXProperty[],
  3197. "scroll-snap-type-y"?: ScrollSnapTypeYProperty | ScrollSnapTypeYProperty[],
  3198. "-khtml-box-align"?: BoxAlignProperty | BoxAlignProperty[],
  3199. "-khtml-box-direction"?: BoxDirectionProperty | BoxDirectionProperty[],
  3200. "-khtml-box-flex"?: GlobalsNumber | GlobalsNumber[],
  3201. "-khtml-box-flex-group"?: GlobalsNumber | GlobalsNumber[],
  3202. "-khtml-box-lines"?: BoxLinesProperty | BoxLinesProperty[],
  3203. "-khtml-box-ordinal-group"?: GlobalsNumber | GlobalsNumber[],
  3204. "-khtml-box-orient"?: BoxOrientProperty | BoxOrientProperty[],
  3205. "-khtml-box-pack"?: BoxPackProperty | BoxPackProperty[],
  3206. "-khtml-line-break"?: LineBreakProperty | LineBreakProperty[],
  3207. "-khtml-opacity"?: OpacityProperty | OpacityProperty[],
  3208. "-khtml-user-select"?: UserSelectProperty | UserSelectProperty[],
  3209. "-moz-background-clip"?: BackgroundClipProperty | BackgroundClipProperty[],
  3210. "-moz-background-inline-policy"?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
  3211. "-moz-background-origin"?: BackgroundOriginProperty | BackgroundOriginProperty[],
  3212. "-moz-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
  3213. "-moz-binding"?: MozBindingProperty | MozBindingProperty[],
  3214. "-moz-border-radius"?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
  3215. "-moz-border-radius-bottomleft"?: BorderBottomLeftRadiusProperty<TLength> | BorderBottomLeftRadiusProperty<TLength>[],
  3216. "-moz-border-radius-bottomright"?: BorderBottomRightRadiusProperty<TLength> | BorderBottomRightRadiusProperty<TLength>[],
  3217. "-moz-border-radius-topleft"?: BorderTopLeftRadiusProperty<TLength> | BorderTopLeftRadiusProperty<TLength>[],
  3218. "-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
  3219. "-moz-box-align"?: BoxAlignProperty | BoxAlignProperty[],
  3220. "-moz-box-direction"?: BoxDirectionProperty | BoxDirectionProperty[],
  3221. "-moz-box-flex"?: GlobalsNumber | GlobalsNumber[],
  3222. "-moz-box-ordinal-group"?: GlobalsNumber | GlobalsNumber[],
  3223. "-moz-box-orient"?: BoxOrientProperty | BoxOrientProperty[],
  3224. "-moz-box-pack"?: BoxPackProperty | BoxPackProperty[],
  3225. "-moz-box-shadow"?: BoxShadowProperty | BoxShadowProperty[],
  3226. "-moz-float-edge"?: MozFloatEdgeProperty | MozFloatEdgeProperty[],
  3227. "-moz-force-broken-image-icon"?: MozForceBrokenImageIconProperty | MozForceBrokenImageIconProperty[],
  3228. "-moz-opacity"?: OpacityProperty | OpacityProperty[],
  3229. "-moz-outline"?: OutlineProperty<TLength> | OutlineProperty<TLength>[],
  3230. "-moz-outline-color"?: OutlineColorProperty | OutlineColorProperty[],
  3231. "-moz-outline-radius"?: MozOutlineRadiusProperty<TLength> | MozOutlineRadiusProperty<TLength>[],
  3232. "-moz-outline-radius-bottomleft"?: MozOutlineRadiusBottomleftProperty<TLength> | MozOutlineRadiusBottomleftProperty<TLength>[],
  3233. "-moz-outline-radius-bottomright"?: MozOutlineRadiusBottomrightProperty<TLength> | MozOutlineRadiusBottomrightProperty<TLength>[],
  3234. "-moz-outline-radius-topleft"?: MozOutlineRadiusTopleftProperty<TLength> | MozOutlineRadiusTopleftProperty<TLength>[],
  3235. "-moz-outline-radius-topright"?: MozOutlineRadiusToprightProperty<TLength> | MozOutlineRadiusToprightProperty<TLength>[],
  3236. "-moz-outline-style"?: OutlineStyleProperty | OutlineStyleProperty[],
  3237. "-moz-outline-width"?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[],
  3238. "-moz-text-align-last"?: TextAlignLastProperty | TextAlignLastProperty[],
  3239. "-moz-text-decoration-color"?: TextDecorationColorProperty | TextDecorationColorProperty[],
  3240. "-moz-text-decoration-line"?: TextDecorationLineProperty | TextDecorationLineProperty[],
  3241. "-moz-text-decoration-style"?: TextDecorationStyleProperty | TextDecorationStyleProperty[],
  3242. "-moz-user-input"?: MozUserInputProperty | MozUserInputProperty[],
  3243. "-ms-ime-mode"?: ImeModeProperty | ImeModeProperty[],
  3244. "-o-animation"?: AnimationProperty | AnimationProperty[],
  3245. "-o-animation-delay"?: GlobalsString | GlobalsString[],
  3246. "-o-animation-direction"?: AnimationDirectionProperty | AnimationDirectionProperty[],
  3247. "-o-animation-duration"?: GlobalsString | GlobalsString[],
  3248. "-o-animation-fill-mode"?: AnimationFillModeProperty | AnimationFillModeProperty[],
  3249. "-o-animation-iteration-count"?: AnimationIterationCountProperty | AnimationIterationCountProperty[],
  3250. "-o-animation-name"?: AnimationNameProperty | AnimationNameProperty[],
  3251. "-o-animation-play-state"?: AnimationPlayStateProperty | AnimationPlayStateProperty[],
  3252. "-o-animation-timing-function"?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
  3253. "-o-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
  3254. "-o-border-image"?: BorderImageProperty | BorderImageProperty[],
  3255. "-o-object-fit"?: ObjectFitProperty | ObjectFitProperty[],
  3256. "-o-object-position"?: ObjectPositionProperty<TLength> | ObjectPositionProperty<TLength>[],
  3257. "-o-tab-size"?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
  3258. "-o-text-overflow"?: TextOverflowProperty | TextOverflowProperty[],
  3259. "-o-transform"?: TransformProperty | TransformProperty[],
  3260. "-o-transform-origin"?: TransformOriginProperty<TLength> | TransformOriginProperty<TLength>[],
  3261. "-o-transition"?: TransitionProperty | TransitionProperty[],
  3262. "-o-transition-delay"?: GlobalsString | GlobalsString[],
  3263. "-o-transition-duration"?: GlobalsString | GlobalsString[],
  3264. "-o-transition-property"?: TransitionPropertyProperty | TransitionPropertyProperty[],
  3265. "-o-transition-timing-function"?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[],
  3266. "-webkit-box-align"?: BoxAlignProperty | BoxAlignProperty[],
  3267. "-webkit-box-direction"?: BoxDirectionProperty | BoxDirectionProperty[],
  3268. "-webkit-box-flex"?: GlobalsNumber | GlobalsNumber[],
  3269. "-webkit-box-flex-group"?: GlobalsNumber | GlobalsNumber[],
  3270. "-webkit-box-lines"?: BoxLinesProperty | BoxLinesProperty[],
  3271. "-webkit-box-ordinal-group"?: GlobalsNumber | GlobalsNumber[],
  3272. "-webkit-box-orient"?: BoxOrientProperty | BoxOrientProperty[],
  3273. "-webkit-box-pack"?: BoxPackProperty | BoxPackProperty[],
  3274. "-webkit-scroll-snap-points-x"?: ScrollSnapPointsXProperty | ScrollSnapPointsXProperty[],
  3275. "-webkit-scroll-snap-points-y"?: ScrollSnapPointsYProperty | ScrollSnapPointsYProperty[],
  3276. };
  3277. export type SvgPropertiesHyphenFallback<TLength = string | 0> = {
  3278. "alignment-baseline"?: AlignmentBaselineProperty | AlignmentBaselineProperty[],
  3279. "baseline-shift"?: BaselineShiftProperty<TLength> | BaselineShiftProperty<TLength>[],
  3280. clip?: ClipProperty | ClipProperty[],
  3281. "clip-path"?: ClipPathProperty | ClipPathProperty[],
  3282. "clip-rule"?: ClipRuleProperty | ClipRuleProperty[],
  3283. color?: ColorProperty | ColorProperty[],
  3284. "color-interpolation"?: ColorInterpolationProperty | ColorInterpolationProperty[],
  3285. "color-rendering"?: ColorRenderingProperty | ColorRenderingProperty[],
  3286. cursor?: CursorProperty | CursorProperty[],
  3287. direction?: DirectionProperty | DirectionProperty[],
  3288. display?: DisplayProperty | DisplayProperty[],
  3289. "dominant-baseline"?: DominantBaselineProperty | DominantBaselineProperty[],
  3290. fill?: FillProperty | FillProperty[],
  3291. "fill-opacity"?: GlobalsNumber | GlobalsNumber[],
  3292. "fill-rule"?: FillRuleProperty | FillRuleProperty[],
  3293. filter?: FilterProperty | FilterProperty[],
  3294. "flood-color"?: FloodColorProperty | FloodColorProperty[],
  3295. "flood-opacity"?: GlobalsNumber | GlobalsNumber[],
  3296. font?: FontProperty | FontProperty[],
  3297. "font-family"?: FontFamilyProperty | FontFamilyProperty[],
  3298. "font-size"?: FontSizeProperty<TLength> | FontSizeProperty<TLength>[],
  3299. "font-size-adjust"?: FontSizeAdjustProperty | FontSizeAdjustProperty[],
  3300. "font-stretch"?: FontStretchProperty | FontStretchProperty[],
  3301. "font-style"?: FontStyleProperty | FontStyleProperty[],
  3302. "font-variant"?: FontVariantProperty | FontVariantProperty[],
  3303. "font-weight"?: FontWeightProperty | FontWeightProperty[],
  3304. "glyph-orientation-vertical"?: GlyphOrientationVerticalProperty | GlyphOrientationVerticalProperty[],
  3305. "image-rendering"?: ImageRenderingProperty | ImageRenderingProperty[],
  3306. "letter-spacing"?: LetterSpacingProperty<TLength> | LetterSpacingProperty<TLength>[],
  3307. "lighting-color"?: LightingColorProperty | LightingColorProperty[],
  3308. "line-height"?: LineHeightProperty<TLength> | LineHeightProperty<TLength>[],
  3309. marker?: MarkerProperty | MarkerProperty[],
  3310. "marker-end"?: MarkerEndProperty | MarkerEndProperty[],
  3311. "marker-mid"?: MarkerMidProperty | MarkerMidProperty[],
  3312. "marker-start"?: MarkerStartProperty | MarkerStartProperty[],
  3313. mask?: MaskProperty<TLength> | MaskProperty<TLength>[],
  3314. opacity?: OpacityProperty | OpacityProperty[],
  3315. overflow?: OverflowProperty | OverflowProperty[],
  3316. "paint-order"?: PaintOrderProperty | PaintOrderProperty[],
  3317. "pointer-events"?: PointerEventsProperty | PointerEventsProperty[],
  3318. "shape-rendering"?: ShapeRenderingProperty | ShapeRenderingProperty[],
  3319. "stop-color"?: StopColorProperty | StopColorProperty[],
  3320. "stop-opacity"?: GlobalsNumber | GlobalsNumber[],
  3321. stroke?: StrokeProperty | StrokeProperty[],
  3322. "stroke-dasharray"?: StrokeDasharrayProperty<TLength> | StrokeDasharrayProperty<TLength>[],
  3323. "stroke-dashoffset"?: StrokeDashoffsetProperty<TLength> | StrokeDashoffsetProperty<TLength>[],
  3324. "stroke-linecap"?: StrokeLinecapProperty | StrokeLinecapProperty[],
  3325. "stroke-linejoin"?: StrokeLinejoinProperty | StrokeLinejoinProperty[],
  3326. "stroke-miterlimit"?: GlobalsNumber | GlobalsNumber[],
  3327. "stroke-opacity"?: GlobalsNumber | GlobalsNumber[],
  3328. "stroke-width"?: StrokeWidthProperty<TLength> | StrokeWidthProperty<TLength>[],
  3329. "text-anchor"?: TextAnchorProperty | TextAnchorProperty[],
  3330. "text-decoration"?: TextDecorationProperty<TLength> | TextDecorationProperty<TLength>[],
  3331. "text-rendering"?: TextRenderingProperty | TextRenderingProperty[],
  3332. "unicode-bidi"?: UnicodeBidiProperty | UnicodeBidiProperty[],
  3333. "vector-effect"?: VectorEffectProperty | VectorEffectProperty[],
  3334. visibility?: VisibilityProperty | VisibilityProperty[],
  3335. "white-space"?: WhiteSpaceProperty | WhiteSpaceProperty[],
  3336. "word-spacing"?: WordSpacingProperty<TLength> | WordSpacingProperty<TLength>[],
  3337. "writing-mode"?: WritingModeProperty | WritingModeProperty[],
  3338. };
  3339. export type PropertiesHyphenFallback<TLength = string | 0> = StandardPropertiesHyphenFallback<TLength> &
  3340. VendorPropertiesHyphenFallback<TLength> &
  3341. ObsoletePropertiesHyphenFallback<TLength> &
  3342. SvgPropertiesHyphenFallback<TLength>;
  3343. export type CounterStyle = {
  3344. additiveSymbols?: string,
  3345. fallback?: string,
  3346. negative?: string,
  3347. pad?: string,
  3348. prefix?: string,
  3349. range?: CounterStyleRangeProperty,
  3350. speakAs?: CounterStyleSpeakAsProperty,
  3351. suffix?: string,
  3352. symbols?: string,
  3353. system?: CounterStyleSystemProperty,
  3354. };
  3355. export type CounterStyleHyphen = {
  3356. "additive-symbols"?: string,
  3357. fallback?: string,
  3358. negative?: string,
  3359. pad?: string,
  3360. prefix?: string,
  3361. range?: CounterStyleRangeProperty,
  3362. "speak-as"?: CounterStyleSpeakAsProperty,
  3363. suffix?: string,
  3364. symbols?: string,
  3365. system?: CounterStyleSystemProperty,
  3366. };
  3367. export type CounterStyleFallback = {
  3368. additiveSymbols?: string | string[],
  3369. fallback?: string | string[],
  3370. negative?: string | string[],
  3371. pad?: string | string[],
  3372. prefix?: string | string[],
  3373. range?: CounterStyleRangeProperty | CounterStyleRangeProperty[],
  3374. speakAs?: CounterStyleSpeakAsProperty | CounterStyleSpeakAsProperty[],
  3375. suffix?: string | string[],
  3376. symbols?: string | string[],
  3377. system?: CounterStyleSystemProperty | CounterStyleSystemProperty[],
  3378. };
  3379. export type CounterStyleHyphenFallback = {
  3380. "additive-symbols"?: string | string[],
  3381. fallback?: string | string[],
  3382. negative?: string | string[],
  3383. pad?: string | string[],
  3384. prefix?: string | string[],
  3385. range?: CounterStyleRangeProperty | CounterStyleRangeProperty[],
  3386. "speak-as"?: CounterStyleSpeakAsProperty | CounterStyleSpeakAsProperty[],
  3387. suffix?: string | string[],
  3388. symbols?: string | string[],
  3389. system?: CounterStyleSystemProperty | CounterStyleSystemProperty[],
  3390. };
  3391. export type FontFace = {
  3392. MozFontFeatureSettings?: FontFaceFontFeatureSettingsProperty,
  3393. ascentOverride?: FontFaceAscentOverrideProperty,
  3394. descentOverride?: FontFaceDescentOverrideProperty,
  3395. fontDisplay?: FontFaceFontDisplayProperty,
  3396. fontFamily?: string,
  3397. fontFeatureSettings?: FontFaceFontFeatureSettingsProperty,
  3398. fontStretch?: FontFaceFontStretchProperty,
  3399. fontStyle?: FontFaceFontStyleProperty,
  3400. fontVariant?: FontFaceFontVariantProperty,
  3401. fontVariationSettings?: FontFaceFontVariationSettingsProperty,
  3402. fontWeight?: FontFaceFontWeightProperty,
  3403. lineGapOverride?: FontFaceLineGapOverrideProperty,
  3404. sizeAdjust?: string,
  3405. src?: string,
  3406. unicodeRange?: string,
  3407. };
  3408. export type FontFaceHyphen = {
  3409. "-moz-font-feature-settings"?: FontFaceFontFeatureSettingsProperty,
  3410. "ascent-override"?: FontFaceAscentOverrideProperty,
  3411. "descent-override"?: FontFaceDescentOverrideProperty,
  3412. "font-display"?: FontFaceFontDisplayProperty,
  3413. "font-family"?: string,
  3414. "font-feature-settings"?: FontFaceFontFeatureSettingsProperty,
  3415. "font-stretch"?: FontFaceFontStretchProperty,
  3416. "font-style"?: FontFaceFontStyleProperty,
  3417. "font-variant"?: FontFaceFontVariantProperty,
  3418. "font-variation-settings"?: FontFaceFontVariationSettingsProperty,
  3419. "font-weight"?: FontFaceFontWeightProperty,
  3420. "line-gap-override"?: FontFaceLineGapOverrideProperty,
  3421. "size-adjust"?: string,
  3422. src?: string,
  3423. "unicode-range"?: string,
  3424. };
  3425. export type FontFaceFallback = {
  3426. MozFontFeatureSettings?: FontFaceFontFeatureSettingsProperty | FontFaceFontFeatureSettingsProperty[],
  3427. ascentOverride?: FontFaceAscentOverrideProperty | FontFaceAscentOverrideProperty[],
  3428. descentOverride?: FontFaceDescentOverrideProperty | FontFaceDescentOverrideProperty[],
  3429. fontDisplay?: FontFaceFontDisplayProperty | FontFaceFontDisplayProperty[],
  3430. fontFamily?: string | string[],
  3431. fontFeatureSettings?: FontFaceFontFeatureSettingsProperty | FontFaceFontFeatureSettingsProperty[],
  3432. fontStretch?: FontFaceFontStretchProperty | FontFaceFontStretchProperty[],
  3433. fontStyle?: FontFaceFontStyleProperty | FontFaceFontStyleProperty[],
  3434. fontVariant?: FontFaceFontVariantProperty | FontFaceFontVariantProperty[],
  3435. fontVariationSettings?: FontFaceFontVariationSettingsProperty | FontFaceFontVariationSettingsProperty[],
  3436. fontWeight?: FontFaceFontWeightProperty | FontFaceFontWeightProperty[],
  3437. lineGapOverride?: FontFaceLineGapOverrideProperty | FontFaceLineGapOverrideProperty[],
  3438. sizeAdjust?: string | string[],
  3439. src?: string | string[],
  3440. unicodeRange?: string | string[],
  3441. };
  3442. export type FontFaceHyphenFallback = {
  3443. "-moz-font-feature-settings"?: FontFaceFontFeatureSettingsProperty | FontFaceFontFeatureSettingsProperty[],
  3444. "ascent-override"?: FontFaceAscentOverrideProperty | FontFaceAscentOverrideProperty[],
  3445. "descent-override"?: FontFaceDescentOverrideProperty | FontFaceDescentOverrideProperty[],
  3446. "font-display"?: FontFaceFontDisplayProperty | FontFaceFontDisplayProperty[],
  3447. "font-family"?: string | string[],
  3448. "font-feature-settings"?: FontFaceFontFeatureSettingsProperty | FontFaceFontFeatureSettingsProperty[],
  3449. "font-stretch"?: FontFaceFontStretchProperty | FontFaceFontStretchProperty[],
  3450. "font-style"?: FontFaceFontStyleProperty | FontFaceFontStyleProperty[],
  3451. "font-variant"?: FontFaceFontVariantProperty | FontFaceFontVariantProperty[],
  3452. "font-variation-settings"?: FontFaceFontVariationSettingsProperty | FontFaceFontVariationSettingsProperty[],
  3453. "font-weight"?: FontFaceFontWeightProperty | FontFaceFontWeightProperty[],
  3454. "line-gap-override"?: FontFaceLineGapOverrideProperty | FontFaceLineGapOverrideProperty[],
  3455. "size-adjust"?: string | string[],
  3456. src?: string | string[],
  3457. "unicode-range"?: string | string[],
  3458. };
  3459. export type Page<TLength = string | 0> = {
  3460. bleed?: PageBleedProperty<TLength>,
  3461. marks?: PageMarksProperty,
  3462. size?: PageSizeProperty<TLength>,
  3463. };
  3464. export type PageHyphen<TLength = string | 0> = {
  3465. bleed?: PageBleedProperty<TLength>,
  3466. marks?: PageMarksProperty,
  3467. size?: PageSizeProperty<TLength>,
  3468. };
  3469. export type PageFallback<TLength = string | 0> = {
  3470. bleed?: PageBleedProperty<TLength> | PageBleedProperty<TLength>[],
  3471. marks?: PageMarksProperty | PageMarksProperty[],
  3472. size?: PageSizeProperty<TLength> | PageSizeProperty<TLength>[],
  3473. };
  3474. export type PageHyphenFallback<TLength = string | 0> = {
  3475. bleed?: PageBleedProperty<TLength> | PageBleedProperty<TLength>[],
  3476. marks?: PageMarksProperty | PageMarksProperty[],
  3477. size?: PageSizeProperty<TLength> | PageSizeProperty<TLength>[],
  3478. };
  3479. export type Property = {
  3480. inherits?: PropertyInheritsProperty,
  3481. initialValue?: string,
  3482. syntax?: string,
  3483. };
  3484. export type PropertyHyphen = {
  3485. inherits?: PropertyInheritsProperty,
  3486. "initial-value"?: string,
  3487. syntax?: string,
  3488. };
  3489. export type PropertyFallback = {
  3490. inherits?: PropertyInheritsProperty | PropertyInheritsProperty[],
  3491. initialValue?: string | string[],
  3492. syntax?: string | string[],
  3493. };
  3494. export type PropertyHyphenFallback = {
  3495. inherits?: PropertyInheritsProperty | PropertyInheritsProperty[],
  3496. "initial-value"?: string | string[],
  3497. syntax?: string | string[],
  3498. };
  3499. export type Viewport<TLength = string | 0> = {
  3500. height?: ViewportHeightProperty<TLength>,
  3501. maxHeight?: ViewportMaxHeightProperty<TLength>,
  3502. maxWidth?: ViewportMaxWidthProperty<TLength>,
  3503. maxZoom?: ViewportMaxZoomProperty,
  3504. minHeight?: ViewportMinHeightProperty<TLength>,
  3505. minWidth?: ViewportMinWidthProperty<TLength>,
  3506. minZoom?: ViewportMinZoomProperty,
  3507. orientation?: ViewportOrientationProperty,
  3508. userZoom?: ViewportUserZoomProperty,
  3509. viewportFit?: ViewportViewportFitProperty,
  3510. width?: ViewportWidthProperty<TLength>,
  3511. zoom?: ViewportZoomProperty,
  3512. };
  3513. export type ViewportHyphen<TLength = string | 0> = {
  3514. height?: ViewportHeightProperty<TLength>,
  3515. "max-height"?: ViewportMaxHeightProperty<TLength>,
  3516. "max-width"?: ViewportMaxWidthProperty<TLength>,
  3517. "max-zoom"?: ViewportMaxZoomProperty,
  3518. "min-height"?: ViewportMinHeightProperty<TLength>,
  3519. "min-width"?: ViewportMinWidthProperty<TLength>,
  3520. "min-zoom"?: ViewportMinZoomProperty,
  3521. orientation?: ViewportOrientationProperty,
  3522. "user-zoom"?: ViewportUserZoomProperty,
  3523. "viewport-fit"?: ViewportViewportFitProperty,
  3524. width?: ViewportWidthProperty<TLength>,
  3525. zoom?: ViewportZoomProperty,
  3526. };
  3527. export type ViewportFallback<TLength = string | 0> = {
  3528. height?: ViewportHeightProperty<TLength> | ViewportHeightProperty<TLength>[],
  3529. maxHeight?: ViewportMaxHeightProperty<TLength> | ViewportMaxHeightProperty<TLength>[],
  3530. maxWidth?: ViewportMaxWidthProperty<TLength> | ViewportMaxWidthProperty<TLength>[],
  3531. maxZoom?: ViewportMaxZoomProperty | ViewportMaxZoomProperty[],
  3532. minHeight?: ViewportMinHeightProperty<TLength> | ViewportMinHeightProperty<TLength>[],
  3533. minWidth?: ViewportMinWidthProperty<TLength> | ViewportMinWidthProperty<TLength>[],
  3534. minZoom?: ViewportMinZoomProperty | ViewportMinZoomProperty[],
  3535. orientation?: ViewportOrientationProperty | ViewportOrientationProperty[],
  3536. userZoom?: ViewportUserZoomProperty | ViewportUserZoomProperty[],
  3537. viewportFit?: ViewportViewportFitProperty | ViewportViewportFitProperty[],
  3538. width?: ViewportWidthProperty<TLength> | ViewportWidthProperty<TLength>[],
  3539. zoom?: ViewportZoomProperty | ViewportZoomProperty[],
  3540. };
  3541. export type ViewportHyphenFallback<TLength = string | 0> = {
  3542. height?: ViewportHeightProperty<TLength> | ViewportHeightProperty<TLength>[],
  3543. "max-height"?: ViewportMaxHeightProperty<TLength> | ViewportMaxHeightProperty<TLength>[],
  3544. "max-width"?: ViewportMaxWidthProperty<TLength> | ViewportMaxWidthProperty<TLength>[],
  3545. "max-zoom"?: ViewportMaxZoomProperty | ViewportMaxZoomProperty[],
  3546. "min-height"?: ViewportMinHeightProperty<TLength> | ViewportMinHeightProperty<TLength>[],
  3547. "min-width"?: ViewportMinWidthProperty<TLength> | ViewportMinWidthProperty<TLength>[],
  3548. "min-zoom"?: ViewportMinZoomProperty | ViewportMinZoomProperty[],
  3549. orientation?: ViewportOrientationProperty | ViewportOrientationProperty[],
  3550. "user-zoom"?: ViewportUserZoomProperty | ViewportUserZoomProperty[],
  3551. "viewport-fit"?: ViewportViewportFitProperty | ViewportViewportFitProperty[],
  3552. width?: ViewportWidthProperty<TLength> | ViewportWidthProperty<TLength>[],
  3553. zoom?: ViewportZoomProperty | ViewportZoomProperty[],
  3554. };
  3555. export type AtRules =
  3556. | "@charset"
  3557. | "@counter-style"
  3558. | "@document"
  3559. | "@font-face"
  3560. | "@font-feature-values"
  3561. | "@import"
  3562. | "@keyframes"
  3563. | "@layer"
  3564. | "@media"
  3565. | "@namespace"
  3566. | "@page"
  3567. | "@property"
  3568. | "@scroll-timeline"
  3569. | "@supports"
  3570. | "@viewport";
  3571. export type AdvancedPseudos =
  3572. | ":-moz-any()"
  3573. | ":-moz-dir"
  3574. | ":-webkit-any()"
  3575. | "::cue"
  3576. | "::cue-region"
  3577. | "::part"
  3578. | "::slotted"
  3579. | ":dir"
  3580. | ":has"
  3581. | ":host"
  3582. | ":host-context"
  3583. | ":is"
  3584. | ":lang"
  3585. | ":matches()"
  3586. | ":not"
  3587. | ":nth-child"
  3588. | ":nth-last-child"
  3589. | ":nth-last-of-type"
  3590. | ":nth-of-type"
  3591. | ":where";
  3592. export type SimplePseudos =
  3593. | ":-khtml-any-link"
  3594. | ":-moz-any-link"
  3595. | ":-moz-focusring"
  3596. | ":-moz-full-screen"
  3597. | ":-moz-placeholder"
  3598. | ":-moz-read-only"
  3599. | ":-moz-read-write"
  3600. | ":-moz-ui-invalid"
  3601. | ":-moz-ui-valid"
  3602. | ":-ms-fullscreen"
  3603. | ":-ms-input-placeholder"
  3604. | ":-webkit-any-link"
  3605. | ":-webkit-full-screen"
  3606. | "::-moz-placeholder"
  3607. | "::-moz-progress-bar"
  3608. | "::-moz-range-progress"
  3609. | "::-moz-range-thumb"
  3610. | "::-moz-range-track"
  3611. | "::-moz-selection"
  3612. | "::-ms-backdrop"
  3613. | "::-ms-browse"
  3614. | "::-ms-check"
  3615. | "::-ms-clear"
  3616. | "::-ms-expand"
  3617. | "::-ms-fill"
  3618. | "::-ms-fill-lower"
  3619. | "::-ms-fill-upper"
  3620. | "::-ms-input-placeholder"
  3621. | "::-ms-reveal"
  3622. | "::-ms-thumb"
  3623. | "::-ms-ticks-after"
  3624. | "::-ms-ticks-before"
  3625. | "::-ms-tooltip"
  3626. | "::-ms-track"
  3627. | "::-ms-value"
  3628. | "::-webkit-backdrop"
  3629. | "::-webkit-input-placeholder"
  3630. | "::-webkit-progress-bar"
  3631. | "::-webkit-progress-inner-value"
  3632. | "::-webkit-progress-value"
  3633. | "::-webkit-slider-runnable-track"
  3634. | "::-webkit-slider-thumb"
  3635. | "::after"
  3636. | "::backdrop"
  3637. | "::before"
  3638. | "::cue"
  3639. | "::cue-region"
  3640. | "::first-letter"
  3641. | "::first-line"
  3642. | "::grammar-error"
  3643. | "::marker"
  3644. | "::placeholder"
  3645. | "::selection"
  3646. | "::spelling-error"
  3647. | "::target-text"
  3648. | ":active"
  3649. | ":after"
  3650. | ":any-link"
  3651. | ":before"
  3652. | ":blank"
  3653. | ":checked"
  3654. | ":current"
  3655. | ":default"
  3656. | ":defined"
  3657. | ":disabled"
  3658. | ":empty"
  3659. | ":enabled"
  3660. | ":first"
  3661. | ":first-child"
  3662. | ":first-letter"
  3663. | ":first-line"
  3664. | ":first-of-type"
  3665. | ":focus"
  3666. | ":focus-visible"
  3667. | ":focus-within"
  3668. | ":fullscreen"
  3669. | ":future"
  3670. | ":hover"
  3671. | ":in-range"
  3672. | ":indeterminate"
  3673. | ":invalid"
  3674. | ":last-child"
  3675. | ":last-of-type"
  3676. | ":left"
  3677. | ":link"
  3678. | ":local-link"
  3679. | ":nth-col"
  3680. | ":nth-last-col"
  3681. | ":only-child"
  3682. | ":only-of-type"
  3683. | ":optional"
  3684. | ":out-of-range"
  3685. | ":past"
  3686. | ":paused"
  3687. | ":picture-in-picture"
  3688. | ":placeholder-shown"
  3689. | ":playing"
  3690. | ":read-only"
  3691. | ":read-write"
  3692. | ":required"
  3693. | ":right"
  3694. | ":root"
  3695. | ":scope"
  3696. | ":target"
  3697. | ":target-within"
  3698. | ":user-invalid"
  3699. | ":user-valid"
  3700. | ":valid"
  3701. | ":visited";
  3702. export type Pseudos = AdvancedPseudos | SimplePseudos;
  3703. export type HtmlAttributes =
  3704. | "[abbr]"
  3705. | "[accept-charset]"
  3706. | "[accept]"
  3707. | "[accesskey]"
  3708. | "[action]"
  3709. | "[align]"
  3710. | "[alink]"
  3711. | "[allow]"
  3712. | "[allowfullscreen]"
  3713. | "[allowpaymentrequest]"
  3714. | "[alt]"
  3715. | "[archive]"
  3716. | "[async]"
  3717. | "[autobuffer]"
  3718. | "[autocapitalize]"
  3719. | "[autocomplete]"
  3720. | "[autofocus]"
  3721. | "[autoplay]"
  3722. | "[axis]"
  3723. | "[background]"
  3724. | "[behavior]"
  3725. | "[bgcolor]"
  3726. | "[border]"
  3727. | "[bottommargin]"
  3728. | "[capture]"
  3729. | "[cellpadding]"
  3730. | "[cellspacing]"
  3731. | "[char]"
  3732. | "[charoff]"
  3733. | "[charset]"
  3734. | "[checked]"
  3735. | "[cite]"
  3736. | "[class]"
  3737. | "[classid]"
  3738. | "[clear]"
  3739. | "[code]"
  3740. | "[codebase]"
  3741. | "[codetype]"
  3742. | "[color]"
  3743. | "[cols]"
  3744. | "[colspan]"
  3745. | "[command]"
  3746. | "[compact]"
  3747. | "[content]"
  3748. | "[contenteditable]"
  3749. | "[contextmenu]"
  3750. | "[controls]"
  3751. | "[coords]"
  3752. | "[crossorigin]"
  3753. | "[data]"
  3754. | "[datafld]"
  3755. | "[datasrc]"
  3756. | "[datetime]"
  3757. | "[declare]"
  3758. | "[decoding]"
  3759. | "[default]"
  3760. | "[defer]"
  3761. | "[dir]"
  3762. | "[direction]"
  3763. | "[dirname]"
  3764. | "[disabled]"
  3765. | "[download]"
  3766. | "[draggable]"
  3767. | "[enctype]"
  3768. | "[enterkeyhint]"
  3769. | "[exportparts]"
  3770. | "[face]"
  3771. | "[fetchpriority]"
  3772. | "[for]"
  3773. | "[form]"
  3774. | "[formaction]"
  3775. | "[formenctype]"
  3776. | "[formmethod]"
  3777. | "[formnovalidate]"
  3778. | "[formtarget]"
  3779. | "[frame]"
  3780. | "[frameborder]"
  3781. | "[headers]"
  3782. | "[height]"
  3783. | "[hidden]"
  3784. | "[high]"
  3785. | "[href]"
  3786. | "[hreflang]"
  3787. | "[hspace]"
  3788. | "[http-equiv]"
  3789. | "[icon]"
  3790. | "[id]"
  3791. | "[imagesizes]"
  3792. | "[imagesrcset]"
  3793. | "[inert]"
  3794. | "[inputmode]"
  3795. | "[integrity]"
  3796. | "[is]"
  3797. | "[ismap]"
  3798. | "[itemid]"
  3799. | "[itemprop]"
  3800. | "[itemref]"
  3801. | "[itemscope]"
  3802. | "[itemtype]"
  3803. | "[kind]"
  3804. | "[label]"
  3805. | "[lang]"
  3806. | "[language]"
  3807. | "[leftmargin]"
  3808. | "[link]"
  3809. | "[list]"
  3810. | "[loading]"
  3811. | "[longdesc]"
  3812. | "[loop]"
  3813. | "[low]"
  3814. | "[manifest]"
  3815. | "[marginheight]"
  3816. | "[marginwidth]"
  3817. | "[max]"
  3818. | "[maxlength]"
  3819. | "[mayscript]"
  3820. | "[media]"
  3821. | "[method]"
  3822. | "[methods]"
  3823. | "[min]"
  3824. | "[minlength]"
  3825. | "[moz-opaque]"
  3826. | "[mozallowfullscreen]"
  3827. | "[msallowfullscreen]"
  3828. | "[multiple]"
  3829. | "[muted]"
  3830. | "[name]"
  3831. | "[nohref]"
  3832. | "[nomodule]"
  3833. | "[nonce]"
  3834. | "[noresize]"
  3835. | "[noshade]"
  3836. | "[novalidate]"
  3837. | "[nowrap]"
  3838. | "[object]"
  3839. | "[onerror]"
  3840. | "[open]"
  3841. | "[optimum]"
  3842. | "[part]"
  3843. | "[pattern]"
  3844. | "[ping]"
  3845. | "[placeholder]"
  3846. | "[poster]"
  3847. | "[prefetch]"
  3848. | "[preload]"
  3849. | "[profile]"
  3850. | "[radiogroup]"
  3851. | "[readonly]"
  3852. | "[referrerpolicy]"
  3853. | "[rel]"
  3854. | "[required]"
  3855. | "[rev]"
  3856. | "[reversed]"
  3857. | "[rightmargin]"
  3858. | "[rows]"
  3859. | "[rowspan]"
  3860. | "[rules]"
  3861. | "[sandbox-allow-downloads]"
  3862. | "[sandbox-allow-modals]"
  3863. | "[sandbox-allow-popups-to-escape-sandbox]"
  3864. | "[sandbox-allow-popups]"
  3865. | "[sandbox-allow-presentation]"
  3866. | "[sandbox-allow-same-origin]"
  3867. | "[sandbox-allow-storage-access-by-user-activation]"
  3868. | "[sandbox-allow-top-navigation-by-user-activation]"
  3869. | "[sandbox]"
  3870. | "[scope]"
  3871. | "[scrollamount]"
  3872. | "[scrolldelay]"
  3873. | "[scrolling]"
  3874. | "[selected]"
  3875. | "[shadowroot]"
  3876. | "[shape]"
  3877. | "[size]"
  3878. | "[sizes]"
  3879. | "[slot]"
  3880. | "[span]"
  3881. | "[spellcheck]"
  3882. | "[src]"
  3883. | "[srcdoc]"
  3884. | "[srclang]"
  3885. | "[srcset]"
  3886. | "[standby]"
  3887. | "[start]"
  3888. | "[step]"
  3889. | "[style]"
  3890. | "[summary]"
  3891. | "[tabindex]"
  3892. | "[target]"
  3893. | "[text]"
  3894. | "[title]"
  3895. | "[topmargin]"
  3896. | "[translate]"
  3897. | "[truespeed]"
  3898. | "[type]"
  3899. | "[usemap]"
  3900. | "[valign]"
  3901. | "[value]"
  3902. | "[valuetype]"
  3903. | "[version]"
  3904. | "[vlink]"
  3905. | "[vspace]"
  3906. | "[webkitallowfullscreen]"
  3907. | "[width]"
  3908. | "[wrap]"
  3909. | "[x-moz-errormessage]"
  3910. | "[xmlns]";
  3911. export type SvgAttributes =
  3912. | "[accent-height]"
  3913. | "[alignment-baseline]"
  3914. | "[allowReorder]"
  3915. | "[alphabetic]"
  3916. | "[animation]"
  3917. | "[arabic-form]"
  3918. | "[ascent]"
  3919. | "[attributeName]"
  3920. | "[attributeType]"
  3921. | "[azimuth]"
  3922. | "[baseFrequency]"
  3923. | "[baseProfile]"
  3924. | "[baseline-shift]"
  3925. | "[bbox]"
  3926. | "[bias]"
  3927. | "[by]"
  3928. | "[calcMode]"
  3929. | "[cap-height]"
  3930. | "[class]"
  3931. | "[clip-path]"
  3932. | "[clip-rule]"
  3933. | "[clipPathUnits]"
  3934. | "[clip]"
  3935. | "[color-interpolation-filters]"
  3936. | "[color-interpolation]"
  3937. | "[color-profile]"
  3938. | "[color]"
  3939. | "[contentScriptType]"
  3940. | "[contentStyleType]"
  3941. | "[cursor]"
  3942. | "[cx]"
  3943. | "[cy]"
  3944. | "[d]"
  3945. | "[descent]"
  3946. | "[diffuseConstant]"
  3947. | "[direction]"
  3948. | "[display]"
  3949. | "[divisor]"
  3950. | "[document]"
  3951. | "[dominant-baseline]"
  3952. | "[download]"
  3953. | "[dur]"
  3954. | "[dx]"
  3955. | "[dy]"
  3956. | "[edgeMode]"
  3957. | "[elevation]"
  3958. | "[enable-background]"
  3959. | "[fill-opacity]"
  3960. | "[fill-rule]"
  3961. | "[fill]"
  3962. | "[filterRes]"
  3963. | "[filterUnits]"
  3964. | "[filter]"
  3965. | "[flood-color]"
  3966. | "[flood-opacity]"
  3967. | "[font-family]"
  3968. | "[font-size-adjust]"
  3969. | "[font-size]"
  3970. | "[font-stretch]"
  3971. | "[font-style]"
  3972. | "[font-variant]"
  3973. | "[font-weight]"
  3974. | "[format]"
  3975. | "[fr]"
  3976. | "[from]"
  3977. | "[fx]"
  3978. | "[fy]"
  3979. | "[g1]"
  3980. | "[g2]"
  3981. | "[global]"
  3982. | "[glyph-name]"
  3983. | "[glyph-orientation-horizontal]"
  3984. | "[glyph-orientation-vertical]"
  3985. | "[glyphRef]"
  3986. | "[gradientTransform]"
  3987. | "[gradientUnits]"
  3988. | "[graphical]"
  3989. | "[hanging]"
  3990. | "[height]"
  3991. | "[horiz-adv-x]"
  3992. | "[horiz-origin-x]"
  3993. | "[horiz-origin-y]"
  3994. | "[href]"
  3995. | "[hreflang]"
  3996. | "[id]"
  3997. | "[ideographic]"
  3998. | "[image-rendering]"
  3999. | "[in2]"
  4000. | "[in]"
  4001. | "[k1]"
  4002. | "[k2]"
  4003. | "[k3]"
  4004. | "[k4]"
  4005. | "[k]"
  4006. | "[kernelMatrix]"
  4007. | "[kernelUnitLength]"
  4008. | "[kerning]"
  4009. | "[keyPoints]"
  4010. | "[lang]"
  4011. | "[lengthAdjust]"
  4012. | "[letter-spacing]"
  4013. | "[lighting-color]"
  4014. | "[limitingConeAngle]"
  4015. | "[marker-end]"
  4016. | "[marker-mid]"
  4017. | "[marker-start]"
  4018. | "[markerHeight]"
  4019. | "[markerUnits]"
  4020. | "[markerWidth]"
  4021. | "[maskContentUnits]"
  4022. | "[maskUnits]"
  4023. | "[mask]"
  4024. | "[mathematical]"
  4025. | "[media]"
  4026. | "[mode]"
  4027. | "[name]"
  4028. | "[numOctaves]"
  4029. | "[offset]"
  4030. | "[opacity]"
  4031. | "[operator]"
  4032. | "[order]"
  4033. | "[orient]"
  4034. | "[orientation]"
  4035. | "[origin]"
  4036. | "[overflow]"
  4037. | "[overline-position]"
  4038. | "[overline-thickness]"
  4039. | "[paint-order]"
  4040. | "[panose-1]"
  4041. | "[path]"
  4042. | "[patternContentUnits]"
  4043. | "[patternTransform]"
  4044. | "[patternUnits]"
  4045. | "[ping]"
  4046. | "[pointer-events]"
  4047. | "[pointsAtX]"
  4048. | "[pointsAtY]"
  4049. | "[pointsAtZ]"
  4050. | "[points]"
  4051. | "[preserveAlpha]"
  4052. | "[preserveAspectRatio]"
  4053. | "[primitiveUnits]"
  4054. | "[r]"
  4055. | "[radius]"
  4056. | "[refX]"
  4057. | "[refY]"
  4058. | "[referrerpolicy]"
  4059. | "[rel]"
  4060. | "[repeatCount]"
  4061. | "[requiredExtensions]"
  4062. | "[requiredFeatures]"
  4063. | "[rotate]"
  4064. | "[rx]"
  4065. | "[ry]"
  4066. | "[scale]"
  4067. | "[seed]"
  4068. | "[shape-rendering]"
  4069. | "[side]"
  4070. | "[slope]"
  4071. | "[solid-color]"
  4072. | "[solid-opacity]"
  4073. | "[spacing]"
  4074. | "[specularConstant]"
  4075. | "[specularExponent]"
  4076. | "[spreadMethod]"
  4077. | "[startOffset]"
  4078. | "[stdDeviation]"
  4079. | "[stemh]"
  4080. | "[stemv]"
  4081. | "[stitchTiles]"
  4082. | "[stop-color]"
  4083. | "[stop-opacity]"
  4084. | "[strikethrough-position]"
  4085. | "[strikethrough-thickness]"
  4086. | "[string]"
  4087. | "[stroke-dasharray]"
  4088. | "[stroke-dashoffset]"
  4089. | "[stroke-linecap]"
  4090. | "[stroke-linejoin]"
  4091. | "[stroke-miterlimit]"
  4092. | "[stroke-opacity]"
  4093. | "[stroke-width]"
  4094. | "[stroke]"
  4095. | "[style]"
  4096. | "[surfaceScale]"
  4097. | "[systemLanguage]"
  4098. | "[tabindex]"
  4099. | "[targetX]"
  4100. | "[targetY]"
  4101. | "[target]"
  4102. | "[text-anchor]"
  4103. | "[text-decoration]"
  4104. | "[text-overflow]"
  4105. | "[text-rendering]"
  4106. | "[textLength]"
  4107. | "[title]"
  4108. | "[to]"
  4109. | "[transform-origin]"
  4110. | "[transform]"
  4111. | "[type]"
  4112. | "[u1]"
  4113. | "[u2]"
  4114. | "[underline-position]"
  4115. | "[underline-thickness]"
  4116. | "[unicode-bidi]"
  4117. | "[unicode-range]"
  4118. | "[unicode]"
  4119. | "[units-per-em]"
  4120. | "[v-alphabetic]"
  4121. | "[v-hanging]"
  4122. | "[v-ideographic]"
  4123. | "[v-mathematical]"
  4124. | "[values]"
  4125. | "[vector-effect]"
  4126. | "[version]"
  4127. | "[vert-adv-y]"
  4128. | "[vert-origin-x]"
  4129. | "[vert-origin-y]"
  4130. | "[viewBox]"
  4131. | "[viewTarget]"
  4132. | "[visibility]"
  4133. | "[white-space]"
  4134. | "[width]"
  4135. | "[widths]"
  4136. | "[word-spacing]"
  4137. | "[writing-mode]"
  4138. | "[x-height]"
  4139. | "[x1]"
  4140. | "[x2]"
  4141. | "[xChannelSelector]"
  4142. | "[x]"
  4143. | "[y1]"
  4144. | "[y2]"
  4145. | "[yChannelSelector]"
  4146. | "[y]"
  4147. | "[z]"
  4148. | "[zoomAndPan]";
  4149. export type Globals = "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset";
  4150. type GlobalsString = Globals | string;
  4151. type GlobalsNumber = Globals | number;
  4152. export type AccentColorProperty = Globals | Color | "auto";
  4153. export type AlignContentProperty = Globals | ContentDistribution | ContentPosition | "baseline" | "normal" | string;
  4154. export type AlignItemsProperty = Globals | SelfPosition | "baseline" | "normal" | "stretch" | string;
  4155. export type AlignSelfProperty = Globals | SelfPosition | "auto" | "baseline" | "normal" | "stretch" | string;
  4156. export type AlignTracksProperty = Globals | ContentDistribution | ContentPosition | "baseline" | "normal" | string;
  4157. export type AnimationProperty = Globals | SingleAnimation | string;
  4158. export type AnimationDirectionProperty = Globals | SingleAnimationDirection | string;
  4159. export type AnimationFillModeProperty = Globals | SingleAnimationFillMode | string;
  4160. export type AnimationIterationCountProperty = Globals | "infinite" | string | number;
  4161. export type AnimationNameProperty = Globals | "none" | string;
  4162. export type AnimationPlayStateProperty = Globals | "paused" | "running" | string;
  4163. export type AnimationTimelineProperty = Globals | SingleAnimationTimeline | string;
  4164. export type AnimationTimingFunctionProperty = Globals | EasingFunction | string;
  4165. export type AppearanceProperty = Globals | CompatAuto | "auto" | "menulist-button" | "none" | "textfield";
  4166. export type AspectRatioProperty = Globals | "auto" | string | number;
  4167. export type AzimuthProperty =
  4168. | Globals
  4169. | "behind"
  4170. | "center"
  4171. | "center-left"
  4172. | "center-right"
  4173. | "far-left"
  4174. | "far-right"
  4175. | "left"
  4176. | "left-side"
  4177. | "leftwards"
  4178. | "right"
  4179. | "right-side"
  4180. | "rightwards"
  4181. | string;
  4182. export type BackdropFilterProperty = Globals | "none" | string;
  4183. export type BackfaceVisibilityProperty = Globals | "hidden" | "visible";
  4184. export type BackgroundProperty<TLength> = Globals | FinalBgLayer<TLength> | string;
  4185. export type BackgroundAttachmentProperty = Globals | Attachment | string;
  4186. export type BackgroundBlendModeProperty = Globals | BlendMode | string;
  4187. export type BackgroundClipProperty = Globals | Box | string;
  4188. export type BackgroundColorProperty = Globals | Color;
  4189. export type BackgroundImageProperty = Globals | "none" | string;
  4190. export type BackgroundOriginProperty = Globals | Box | string;
  4191. export type BackgroundPositionProperty<TLength> = Globals | BgPosition<TLength> | string;
  4192. export type BackgroundPositionXProperty<TLength> = Globals | TLength | "center" | "left" | "right" | "x-end" | "x-start" | string;
  4193. export type BackgroundPositionYProperty<TLength> = Globals | TLength | "bottom" | "center" | "top" | "y-end" | "y-start" | string;
  4194. export type BackgroundRepeatProperty = Globals | RepeatStyle | string;
  4195. export type BackgroundSizeProperty<TLength> = Globals | BgSize<TLength> | string;
  4196. export type BlockOverflowProperty = Globals | "clip" | "ellipsis" | string;
  4197. export type BlockSizeProperty<TLength> =
  4198. | Globals
  4199. | TLength
  4200. | "-moz-fit-content"
  4201. | "-moz-max-content"
  4202. | "-moz-min-content"
  4203. | "-webkit-fill-available"
  4204. | "auto"
  4205. | "fit-content"
  4206. | "max-content"
  4207. | "min-content"
  4208. | string;
  4209. export type BorderProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4210. export type BorderBlockProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4211. export type BorderBlockColorProperty = Globals | Color | string;
  4212. export type BorderBlockEndProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4213. export type BorderBlockEndColorProperty = Globals | Color;
  4214. export type BorderBlockEndStyleProperty = Globals | LineStyle;
  4215. export type BorderBlockEndWidthProperty<TLength> = Globals | LineWidth<TLength>;
  4216. export type BorderBlockStartProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4217. export type BorderBlockStartColorProperty = Globals | Color;
  4218. export type BorderBlockStartStyleProperty = Globals | LineStyle;
  4219. export type BorderBlockStartWidthProperty<TLength> = Globals | LineWidth<TLength>;
  4220. export type BorderBlockStyleProperty = Globals | LineStyle;
  4221. export type BorderBlockWidthProperty<TLength> = Globals | LineWidth<TLength>;
  4222. export type BorderBottomProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4223. export type BorderBottomColorProperty = Globals | Color;
  4224. export type BorderBottomLeftRadiusProperty<TLength> = Globals | TLength | string;
  4225. export type BorderBottomRightRadiusProperty<TLength> = Globals | TLength | string;
  4226. export type BorderBottomStyleProperty = Globals | LineStyle;
  4227. export type BorderBottomWidthProperty<TLength> = Globals | LineWidth<TLength>;
  4228. export type BorderCollapseProperty = Globals | "collapse" | "separate";
  4229. export type BorderColorProperty = Globals | Color | string;
  4230. export type BorderEndEndRadiusProperty<TLength> = Globals | TLength | string;
  4231. export type BorderEndStartRadiusProperty<TLength> = Globals | TLength | string;
  4232. export type BorderImageProperty = Globals | "none" | "repeat" | "round" | "space" | "stretch" | string | number;
  4233. export type BorderImageOutsetProperty<TLength> = Globals | TLength | string | number;
  4234. export type BorderImageRepeatProperty = Globals | "repeat" | "round" | "space" | "stretch" | string;
  4235. export type BorderImageSliceProperty = Globals | string | number;
  4236. export type BorderImageSourceProperty = Globals | "none" | string;
  4237. export type BorderImageWidthProperty<TLength> = Globals | TLength | "auto" | string | number;
  4238. export type BorderInlineProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4239. export type BorderInlineColorProperty = Globals | Color | string;
  4240. export type BorderInlineEndProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4241. export type BorderInlineEndColorProperty = Globals | Color;
  4242. export type BorderInlineEndStyleProperty = Globals | LineStyle;
  4243. export type BorderInlineEndWidthProperty<TLength> = Globals | LineWidth<TLength>;
  4244. export type BorderInlineStartProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4245. export type BorderInlineStartColorProperty = Globals | Color;
  4246. export type BorderInlineStartStyleProperty = Globals | LineStyle;
  4247. export type BorderInlineStartWidthProperty<TLength> = Globals | LineWidth<TLength>;
  4248. export type BorderInlineStyleProperty = Globals | LineStyle;
  4249. export type BorderInlineWidthProperty<TLength> = Globals | LineWidth<TLength>;
  4250. export type BorderLeftProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4251. export type BorderLeftColorProperty = Globals | Color;
  4252. export type BorderLeftStyleProperty = Globals | LineStyle;
  4253. export type BorderLeftWidthProperty<TLength> = Globals | LineWidth<TLength>;
  4254. export type BorderRadiusProperty<TLength> = Globals | TLength | string;
  4255. export type BorderRightProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4256. export type BorderRightColorProperty = Globals | Color;
  4257. export type BorderRightStyleProperty = Globals | LineStyle;
  4258. export type BorderRightWidthProperty<TLength> = Globals | LineWidth<TLength>;
  4259. export type BorderSpacingProperty<TLength> = Globals | TLength | string;
  4260. export type BorderStartEndRadiusProperty<TLength> = Globals | TLength | string;
  4261. export type BorderStartStartRadiusProperty<TLength> = Globals | TLength | string;
  4262. export type BorderStyleProperty = Globals | LineStyle | string;
  4263. export type BorderTopProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4264. export type BorderTopColorProperty = Globals | Color;
  4265. export type BorderTopLeftRadiusProperty<TLength> = Globals | TLength | string;
  4266. export type BorderTopRightRadiusProperty<TLength> = Globals | TLength | string;
  4267. export type BorderTopStyleProperty = Globals | LineStyle;
  4268. export type BorderTopWidthProperty<TLength> = Globals | LineWidth<TLength>;
  4269. export type BorderWidthProperty<TLength> = Globals | LineWidth<TLength> | string;
  4270. export type BottomProperty<TLength> = Globals | TLength | "auto" | string;
  4271. export type BoxAlignProperty = Globals | "baseline" | "center" | "end" | "start" | "stretch";
  4272. export type BoxDecorationBreakProperty = Globals | "clone" | "slice";
  4273. export type BoxDirectionProperty = Globals | "inherit" | "normal" | "reverse";
  4274. export type BoxLinesProperty = Globals | "multiple" | "single";
  4275. export type BoxOrientProperty = Globals | "block-axis" | "horizontal" | "inherit" | "inline-axis" | "vertical";
  4276. export type BoxPackProperty = Globals | "center" | "end" | "justify" | "start";
  4277. export type BoxShadowProperty = Globals | "none" | string;
  4278. export type BoxSizingProperty = Globals | "border-box" | "content-box";
  4279. export type BreakAfterProperty =
  4280. | Globals
  4281. | "all"
  4282. | "always"
  4283. | "auto"
  4284. | "avoid"
  4285. | "avoid-column"
  4286. | "avoid-page"
  4287. | "avoid-region"
  4288. | "column"
  4289. | "left"
  4290. | "page"
  4291. | "recto"
  4292. | "region"
  4293. | "right"
  4294. | "verso";
  4295. export type BreakBeforeProperty =
  4296. | Globals
  4297. | "all"
  4298. | "always"
  4299. | "auto"
  4300. | "avoid"
  4301. | "avoid-column"
  4302. | "avoid-page"
  4303. | "avoid-region"
  4304. | "column"
  4305. | "left"
  4306. | "page"
  4307. | "recto"
  4308. | "region"
  4309. | "right"
  4310. | "verso";
  4311. export type BreakInsideProperty = Globals | "auto" | "avoid" | "avoid-column" | "avoid-page" | "avoid-region";
  4312. export type CaptionSideProperty = Globals | "block-end" | "block-start" | "bottom" | "inline-end" | "inline-start" | "top";
  4313. export type CaretColorProperty = Globals | Color | "auto";
  4314. export type ClearProperty = Globals | "both" | "inline-end" | "inline-start" | "left" | "none" | "right";
  4315. export type ClipProperty = Globals | "auto" | string;
  4316. export type ClipPathProperty = Globals | GeometryBox | "none" | string;
  4317. export type ColorProperty = Globals | Color;
  4318. export type PrintColorAdjustProperty = Globals | "economy" | "exact";
  4319. export type ColorSchemeProperty = Globals | "dark" | "light" | "normal" | string;
  4320. export type ColumnCountProperty = Globals | "auto" | number;
  4321. export type ColumnFillProperty = Globals | "auto" | "balance";
  4322. export type ColumnGapProperty<TLength> = Globals | TLength | "normal" | string;
  4323. export type ColumnRuleProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  4324. export type ColumnRuleColorProperty = Globals | Color;
  4325. export type ColumnRuleStyleProperty = Globals | LineStyle | string;
  4326. export type ColumnRuleWidthProperty<TLength> = Globals | LineWidth<TLength> | string;
  4327. export type ColumnSpanProperty = Globals | "all" | "none";
  4328. export type ColumnWidthProperty<TLength> = Globals | TLength | "auto";
  4329. export type ColumnsProperty<TLength> = Globals | TLength | "auto" | string | number;
  4330. export type ContainProperty = Globals | "content" | "inline-size" | "layout" | "none" | "paint" | "size" | "strict" | "style" | string;
  4331. export type ContentProperty = Globals | ContentList | "none" | "normal" | string;
  4332. export type ContentVisibilityProperty = Globals | "auto" | "hidden" | "visible";
  4333. export type CounterIncrementProperty = Globals | "none" | string;
  4334. export type CounterResetProperty = Globals | "none" | string;
  4335. export type CounterSetProperty = Globals | "none" | string;
  4336. export type CursorProperty =
  4337. | Globals
  4338. | "-moz-grab"
  4339. | "-webkit-grab"
  4340. | "alias"
  4341. | "all-scroll"
  4342. | "auto"
  4343. | "cell"
  4344. | "col-resize"
  4345. | "context-menu"
  4346. | "copy"
  4347. | "crosshair"
  4348. | "default"
  4349. | "e-resize"
  4350. | "ew-resize"
  4351. | "grab"
  4352. | "grabbing"
  4353. | "help"
  4354. | "move"
  4355. | "n-resize"
  4356. | "ne-resize"
  4357. | "nesw-resize"
  4358. | "no-drop"
  4359. | "none"
  4360. | "not-allowed"
  4361. | "ns-resize"
  4362. | "nw-resize"
  4363. | "nwse-resize"
  4364. | "pointer"
  4365. | "progress"
  4366. | "row-resize"
  4367. | "s-resize"
  4368. | "se-resize"
  4369. | "sw-resize"
  4370. | "text"
  4371. | "vertical-text"
  4372. | "w-resize"
  4373. | "wait"
  4374. | "zoom-in"
  4375. | "zoom-out"
  4376. | string;
  4377. export type DirectionProperty = Globals | "ltr" | "rtl";
  4378. export type DisplayProperty = Globals | DisplayOutside | DisplayInside | DisplayInternal | DisplayLegacy | "contents" | "list-item" | "none" | string;
  4379. export type EmptyCellsProperty = Globals | "hide" | "show";
  4380. export type FilterProperty = Globals | "none" | string;
  4381. export type FlexProperty<TLength> = Globals | TLength | "auto" | "content" | "fit-content" | "max-content" | "min-content" | "none" | string | number;
  4382. export type FlexBasisProperty<TLength> =
  4383. | Globals
  4384. | TLength
  4385. | "-moz-fit-content"
  4386. | "-moz-max-content"
  4387. | "-moz-min-content"
  4388. | "-webkit-auto"
  4389. | "auto"
  4390. | "content"
  4391. | "fit-content"
  4392. | "max-content"
  4393. | "min-content"
  4394. | string;
  4395. export type FlexDirectionProperty = Globals | "column" | "column-reverse" | "row" | "row-reverse";
  4396. export type FlexFlowProperty = Globals | "column" | "column-reverse" | "nowrap" | "row" | "row-reverse" | "wrap" | "wrap-reverse" | string;
  4397. export type FlexWrapProperty = Globals | "nowrap" | "wrap" | "wrap-reverse";
  4398. export type FloatProperty = Globals | "inline-end" | "inline-start" | "left" | "none" | "right";
  4399. export type FontProperty = Globals | "caption" | "icon" | "menu" | "message-box" | "small-caption" | "status-bar" | string;
  4400. export type FontFamilyProperty = Globals | GenericFamily | string;
  4401. export type FontFeatureSettingsProperty = Globals | "normal" | string;
  4402. export type FontKerningProperty = Globals | "auto" | "none" | "normal";
  4403. export type FontLanguageOverrideProperty = Globals | "normal" | string;
  4404. export type FontOpticalSizingProperty = Globals | "auto" | "none";
  4405. export type FontSizeProperty<TLength> = Globals | AbsoluteSize | TLength | "larger" | "smaller" | string;
  4406. export type FontSizeAdjustProperty = Globals | "from-font" | "none" | string | number;
  4407. export type FontSmoothProperty<TLength> = Globals | AbsoluteSize | TLength | "always" | "auto" | "never";
  4408. export type FontStretchProperty = Globals | FontStretchAbsolute;
  4409. export type FontStyleProperty = Globals | "italic" | "normal" | "oblique" | string;
  4410. export type FontSynthesisProperty = Globals | "none" | "small-caps" | "style" | "weight" | string;
  4411. export type FontVariantProperty =
  4412. | Globals
  4413. | EastAsianVariantValues
  4414. | "all-petite-caps"
  4415. | "all-small-caps"
  4416. | "common-ligatures"
  4417. | "contextual"
  4418. | "diagonal-fractions"
  4419. | "discretionary-ligatures"
  4420. | "full-width"
  4421. | "historical-forms"
  4422. | "historical-ligatures"
  4423. | "lining-nums"
  4424. | "no-common-ligatures"
  4425. | "no-contextual"
  4426. | "no-discretionary-ligatures"
  4427. | "no-historical-ligatures"
  4428. | "none"
  4429. | "normal"
  4430. | "oldstyle-nums"
  4431. | "ordinal"
  4432. | "petite-caps"
  4433. | "proportional-nums"
  4434. | "proportional-width"
  4435. | "ruby"
  4436. | "slashed-zero"
  4437. | "small-caps"
  4438. | "stacked-fractions"
  4439. | "tabular-nums"
  4440. | "titling-caps"
  4441. | "unicase"
  4442. | string;
  4443. export type FontVariantAlternatesProperty = Globals | "historical-forms" | "normal" | string;
  4444. export type FontVariantCapsProperty = Globals | "all-petite-caps" | "all-small-caps" | "normal" | "petite-caps" | "small-caps" | "titling-caps" | "unicase";
  4445. export type FontVariantEastAsianProperty = Globals | EastAsianVariantValues | "full-width" | "normal" | "proportional-width" | "ruby" | string;
  4446. export type FontVariantLigaturesProperty =
  4447. | Globals
  4448. | "common-ligatures"
  4449. | "contextual"
  4450. | "discretionary-ligatures"
  4451. | "historical-ligatures"
  4452. | "no-common-ligatures"
  4453. | "no-contextual"
  4454. | "no-discretionary-ligatures"
  4455. | "no-historical-ligatures"
  4456. | "none"
  4457. | "normal"
  4458. | string;
  4459. export type FontVariantNumericProperty =
  4460. | Globals
  4461. | "diagonal-fractions"
  4462. | "lining-nums"
  4463. | "normal"
  4464. | "oldstyle-nums"
  4465. | "ordinal"
  4466. | "proportional-nums"
  4467. | "slashed-zero"
  4468. | "stacked-fractions"
  4469. | "tabular-nums"
  4470. | string;
  4471. export type FontVariantPositionProperty = Globals | "normal" | "sub" | "super";
  4472. export type FontVariationSettingsProperty = Globals | "normal" | string;
  4473. export type FontWeightProperty = Globals | FontWeightAbsolute | "bolder" | "lighter";
  4474. export type ForcedColorAdjustProperty = Globals | "auto" | "none";
  4475. export type GapProperty<TLength> = Globals | TLength | "normal" | string;
  4476. export type GridProperty = Globals | "none" | string;
  4477. export type GridAreaProperty = Globals | GridLine | string;
  4478. export type GridAutoColumnsProperty<TLength> = Globals | TrackBreadth<TLength> | string;
  4479. export type GridAutoFlowProperty = Globals | "column" | "dense" | "row" | string;
  4480. export type GridAutoRowsProperty<TLength> = Globals | TrackBreadth<TLength> | string;
  4481. export type GridColumnProperty = Globals | GridLine | string;
  4482. export type GridColumnEndProperty = Globals | GridLine;
  4483. export type GridColumnGapProperty<TLength> = Globals | TLength | string;
  4484. export type GridColumnStartProperty = Globals | GridLine;
  4485. export type GridGapProperty<TLength> = Globals | TLength | string;
  4486. export type GridRowProperty = Globals | GridLine | string;
  4487. export type GridRowEndProperty = Globals | GridLine;
  4488. export type GridRowGapProperty<TLength> = Globals | TLength | string;
  4489. export type GridRowStartProperty = Globals | GridLine;
  4490. export type GridTemplateProperty = Globals | "none" | string;
  4491. export type GridTemplateAreasProperty = Globals | "none" | string;
  4492. export type GridTemplateColumnsProperty<TLength> = Globals | TrackBreadth<TLength> | "none" | "subgrid" | string;
  4493. export type GridTemplateRowsProperty<TLength> = Globals | TrackBreadth<TLength> | "none" | "subgrid" | string;
  4494. export type HangingPunctuationProperty = Globals | "allow-end" | "first" | "force-end" | "last" | "none" | string;
  4495. export type HeightProperty<TLength> =
  4496. | Globals
  4497. | TLength
  4498. | "-moz-max-content"
  4499. | "-moz-min-content"
  4500. | "-webkit-fit-content"
  4501. | "auto"
  4502. | "fit-content"
  4503. | "max-content"
  4504. | "min-content"
  4505. | string;
  4506. export type HyphenateCharacterProperty = Globals | "auto" | string;
  4507. export type HyphensProperty = Globals | "auto" | "manual" | "none";
  4508. export type ImageOrientationProperty = Globals | "flip" | "from-image" | string;
  4509. export type ImageRenderingProperty = Globals | "-moz-crisp-edges" | "-webkit-optimize-contrast" | "auto" | "crisp-edges" | "pixelated";
  4510. export type ImageResolutionProperty = Globals | "from-image" | string;
  4511. export type ImeModeProperty = Globals | "active" | "auto" | "disabled" | "inactive" | "normal";
  4512. export type InitialLetterProperty = Globals | "normal" | string | number;
  4513. export type InlineSizeProperty<TLength> =
  4514. | Globals
  4515. | TLength
  4516. | "-moz-fit-content"
  4517. | "-moz-max-content"
  4518. | "-moz-min-content"
  4519. | "-webkit-fill-available"
  4520. | "auto"
  4521. | "fit-content"
  4522. | "max-content"
  4523. | "min-content"
  4524. | string;
  4525. export type InputSecurityProperty = Globals | "auto" | "none";
  4526. export type InsetProperty<TLength> = Globals | TLength | "auto" | string;
  4527. export type InsetBlockProperty<TLength> = Globals | TLength | "auto" | string;
  4528. export type InsetBlockEndProperty<TLength> = Globals | TLength | "auto" | string;
  4529. export type InsetBlockStartProperty<TLength> = Globals | TLength | "auto" | string;
  4530. export type InsetInlineProperty<TLength> = Globals | TLength | "auto" | string;
  4531. export type InsetInlineEndProperty<TLength> = Globals | TLength | "auto" | string;
  4532. export type InsetInlineStartProperty<TLength> = Globals | TLength | "auto" | string;
  4533. export type IsolationProperty = Globals | "auto" | "isolate";
  4534. export type JustifyContentProperty = Globals | ContentDistribution | ContentPosition | "left" | "normal" | "right" | string;
  4535. export type JustifyItemsProperty = Globals | SelfPosition | "baseline" | "left" | "legacy" | "normal" | "right" | "stretch" | string;
  4536. export type JustifySelfProperty = Globals | SelfPosition | "auto" | "baseline" | "left" | "normal" | "right" | "stretch" | string;
  4537. export type JustifyTracksProperty = Globals | ContentDistribution | ContentPosition | "left" | "normal" | "right" | string;
  4538. export type LeftProperty<TLength> = Globals | TLength | "auto" | string;
  4539. export type LetterSpacingProperty<TLength> = Globals | TLength | "normal";
  4540. export type LineBreakProperty = Globals | "anywhere" | "auto" | "loose" | "normal" | "strict";
  4541. export type LineClampProperty = Globals | "none" | number;
  4542. export type LineHeightProperty<TLength> = Globals | TLength | "normal" | string | number;
  4543. export type LineHeightStepProperty<TLength> = Globals | TLength;
  4544. export type ListStyleProperty = Globals | "inside" | "none" | "outside" | string;
  4545. export type ListStyleImageProperty = Globals | "none" | string;
  4546. export type ListStylePositionProperty = Globals | "inside" | "outside";
  4547. export type ListStyleTypeProperty = Globals | "none" | string;
  4548. export type MarginProperty<TLength> = Globals | TLength | "auto" | string;
  4549. export type MarginBlockProperty<TLength> = Globals | TLength | "auto" | string;
  4550. export type MarginBlockEndProperty<TLength> = Globals | TLength | "auto" | string;
  4551. export type MarginBlockStartProperty<TLength> = Globals | TLength | "auto" | string;
  4552. export type MarginBottomProperty<TLength> = Globals | TLength | "auto" | string;
  4553. export type MarginInlineProperty<TLength> = Globals | TLength | "auto" | string;
  4554. export type MarginInlineEndProperty<TLength> = Globals | TLength | "auto" | string;
  4555. export type MarginInlineStartProperty<TLength> = Globals | TLength | "auto" | string;
  4556. export type MarginLeftProperty<TLength> = Globals | TLength | "auto" | string;
  4557. export type MarginRightProperty<TLength> = Globals | TLength | "auto" | string;
  4558. export type MarginTopProperty<TLength> = Globals | TLength | "auto" | string;
  4559. export type MaskProperty<TLength> = Globals | MaskLayer<TLength> | string;
  4560. export type MaskBorderProperty = Globals | "alpha" | "luminance" | "none" | "repeat" | "round" | "space" | "stretch" | string | number;
  4561. export type MaskBorderModeProperty = Globals | "alpha" | "luminance";
  4562. export type MaskBorderOutsetProperty<TLength> = Globals | TLength | string | number;
  4563. export type MaskBorderRepeatProperty = Globals | "repeat" | "round" | "space" | "stretch" | string;
  4564. export type MaskBorderSliceProperty = Globals | string | number;
  4565. export type MaskBorderSourceProperty = Globals | "none" | string;
  4566. export type MaskBorderWidthProperty<TLength> = Globals | TLength | "auto" | string | number;
  4567. export type MaskClipProperty = Globals | GeometryBox | "no-clip" | string;
  4568. export type MaskCompositeProperty = Globals | CompositingOperator | string;
  4569. export type MaskImageProperty = Globals | "none" | string;
  4570. export type MaskModeProperty = Globals | MaskingMode | string;
  4571. export type MaskOriginProperty = Globals | Box | "margin-box" | string;
  4572. export type MaskPositionProperty<TLength> = Globals | Position<TLength> | string;
  4573. export type MaskRepeatProperty = Globals | RepeatStyle | string;
  4574. export type MaskSizeProperty<TLength> = Globals | BgSize<TLength> | string;
  4575. export type MaskTypeProperty = Globals | "alpha" | "luminance";
  4576. export type MathDepthProperty = Globals | "auto-add" | string | number;
  4577. export type MathShiftProperty = Globals | "compact" | "normal";
  4578. export type MathStyleProperty = Globals | "compact" | "normal";
  4579. export type MaxBlockSizeProperty<TLength> =
  4580. | Globals
  4581. | TLength
  4582. | "-moz-max-content"
  4583. | "-moz-min-content"
  4584. | "-webkit-fill-available"
  4585. | "fit-content"
  4586. | "max-content"
  4587. | "min-content"
  4588. | "none"
  4589. | string;
  4590. export type MaxHeightProperty<TLength> =
  4591. | Globals
  4592. | TLength
  4593. | "-moz-fit-content"
  4594. | "-moz-max-content"
  4595. | "-moz-min-content"
  4596. | "-webkit-fit-content"
  4597. | "-webkit-max-content"
  4598. | "-webkit-min-content"
  4599. | "fit-content"
  4600. | "intrinsic"
  4601. | "max-content"
  4602. | "min-content"
  4603. | "none"
  4604. | string;
  4605. export type MaxInlineSizeProperty<TLength> =
  4606. | Globals
  4607. | TLength
  4608. | "-moz-fit-content"
  4609. | "-moz-max-content"
  4610. | "-moz-min-content"
  4611. | "-webkit-fill-available"
  4612. | "fit-content"
  4613. | "max-content"
  4614. | "min-content"
  4615. | "none"
  4616. | string;
  4617. export type MaxLinesProperty = Globals | "none" | number;
  4618. export type MaxWidthProperty<TLength> =
  4619. | Globals
  4620. | TLength
  4621. | "-moz-fit-content"
  4622. | "-moz-max-content"
  4623. | "-moz-min-content"
  4624. | "-webkit-fit-content"
  4625. | "-webkit-max-content"
  4626. | "-webkit-min-content"
  4627. | "fit-content"
  4628. | "intrinsic"
  4629. | "max-content"
  4630. | "min-content"
  4631. | "none"
  4632. | string;
  4633. export type MinBlockSizeProperty<TLength> =
  4634. | Globals
  4635. | TLength
  4636. | "-moz-max-content"
  4637. | "-moz-min-content"
  4638. | "-webkit-fill-available"
  4639. | "auto"
  4640. | "fit-content"
  4641. | "max-content"
  4642. | "min-content"
  4643. | string;
  4644. export type MinHeightProperty<TLength> =
  4645. | Globals
  4646. | TLength
  4647. | "-moz-fit-content"
  4648. | "-moz-max-content"
  4649. | "-moz-min-content"
  4650. | "-webkit-fit-content"
  4651. | "-webkit-max-content"
  4652. | "-webkit-min-content"
  4653. | "auto"
  4654. | "fit-content"
  4655. | "intrinsic"
  4656. | "max-content"
  4657. | "min-content"
  4658. | string;
  4659. export type MinInlineSizeProperty<TLength> =
  4660. | Globals
  4661. | TLength
  4662. | "-moz-fit-content"
  4663. | "-moz-max-content"
  4664. | "-moz-min-content"
  4665. | "-webkit-fill-available"
  4666. | "auto"
  4667. | "fit-content"
  4668. | "max-content"
  4669. | "min-content"
  4670. | string;
  4671. export type MinWidthProperty<TLength> =
  4672. | Globals
  4673. | TLength
  4674. | "-moz-fit-content"
  4675. | "-moz-max-content"
  4676. | "-moz-min-content"
  4677. | "-webkit-fill-available"
  4678. | "-webkit-fit-content"
  4679. | "-webkit-max-content"
  4680. | "-webkit-min-content"
  4681. | "auto"
  4682. | "fit-content"
  4683. | "intrinsic"
  4684. | "max-content"
  4685. | "min-content"
  4686. | "min-intrinsic"
  4687. | string;
  4688. export type MixBlendModeProperty = Globals | BlendMode | "plus-lighter";
  4689. export type OffsetProperty<TLength> = Globals | Position<TLength> | GeometryBox | "auto" | "none" | string;
  4690. export type OffsetDistanceProperty<TLength> = Globals | TLength | string;
  4691. export type OffsetPathProperty = Globals | GeometryBox | "none" | string;
  4692. export type OffsetRotateProperty = Globals | "auto" | "reverse" | string;
  4693. export type ObjectFitProperty = Globals | "contain" | "cover" | "fill" | "none" | "scale-down";
  4694. export type ObjectPositionProperty<TLength> = Globals | Position<TLength>;
  4695. export type OffsetAnchorProperty<TLength> = Globals | Position<TLength> | "auto";
  4696. export type OpacityProperty = Globals | string | number;
  4697. export type OutlineProperty<TLength> = Globals | Color | LineStyle | LineWidth<TLength> | "auto" | "invert" | string;
  4698. export type OutlineColorProperty = Globals | Color | "invert";
  4699. export type OutlineOffsetProperty<TLength> = Globals | TLength;
  4700. export type OutlineStyleProperty = Globals | LineStyle | "auto" | string;
  4701. export type OutlineWidthProperty<TLength> = Globals | LineWidth<TLength>;
  4702. export type OverflowProperty = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible" | string;
  4703. export type OverflowAnchorProperty = Globals | "auto" | "none";
  4704. export type OverflowBlockProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
  4705. export type OverflowClipBoxProperty = Globals | "content-box" | "padding-box";
  4706. export type OverflowClipMarginProperty<TLength> = Globals | VisualBox | TLength | string;
  4707. export type OverflowInlineProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
  4708. export type OverflowWrapProperty = Globals | "anywhere" | "break-word" | "normal";
  4709. export type OverflowXProperty = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible";
  4710. export type OverflowYProperty = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible";
  4711. export type OverscrollBehaviorProperty = Globals | "auto" | "contain" | "none" | string;
  4712. export type OverscrollBehaviorBlockProperty = Globals | "auto" | "contain" | "none";
  4713. export type OverscrollBehaviorInlineProperty = Globals | "auto" | "contain" | "none";
  4714. export type OverscrollBehaviorXProperty = Globals | "auto" | "contain" | "none";
  4715. export type OverscrollBehaviorYProperty = Globals | "auto" | "contain" | "none";
  4716. export type PaddingProperty<TLength> = Globals | TLength | string;
  4717. export type PaddingBlockProperty<TLength> = Globals | TLength | string;
  4718. export type PaddingBlockEndProperty<TLength> = Globals | TLength | string;
  4719. export type PaddingBlockStartProperty<TLength> = Globals | TLength | string;
  4720. export type PaddingBottomProperty<TLength> = Globals | TLength | string;
  4721. export type PaddingInlineProperty<TLength> = Globals | TLength | string;
  4722. export type PaddingInlineEndProperty<TLength> = Globals | TLength | string;
  4723. export type PaddingInlineStartProperty<TLength> = Globals | TLength | string;
  4724. export type PaddingLeftProperty<TLength> = Globals | TLength | string;
  4725. export type PaddingRightProperty<TLength> = Globals | TLength | string;
  4726. export type PaddingTopProperty<TLength> = Globals | TLength | string;
  4727. export type PageBreakAfterProperty = Globals | "always" | "auto" | "avoid" | "left" | "recto" | "right" | "verso";
  4728. export type PageBreakBeforeProperty = Globals | "always" | "auto" | "avoid" | "left" | "recto" | "right" | "verso";
  4729. export type PageBreakInsideProperty = Globals | "auto" | "avoid";
  4730. export type PaintOrderProperty = Globals | "fill" | "markers" | "normal" | "stroke" | string;
  4731. export type PerspectiveProperty<TLength> = Globals | TLength | "none";
  4732. export type PerspectiveOriginProperty<TLength> = Globals | Position<TLength>;
  4733. export type PlaceContentProperty = Globals | ContentDistribution | ContentPosition | "baseline" | "normal" | string;
  4734. export type PlaceItemsProperty = Globals | SelfPosition | "baseline" | "normal" | "stretch" | string;
  4735. export type PlaceSelfProperty = Globals | SelfPosition | "auto" | "baseline" | "normal" | "stretch" | string;
  4736. export type PointerEventsProperty = Globals | "all" | "auto" | "fill" | "inherit" | "none" | "painted" | "stroke" | "visible" | "visibleFill" | "visiblePainted" | "visibleStroke";
  4737. export type PositionProperty = Globals | "-webkit-sticky" | "absolute" | "fixed" | "relative" | "static" | "sticky";
  4738. export type QuotesProperty = Globals | "auto" | "none" | string;
  4739. export type ResizeProperty = Globals | "block" | "both" | "horizontal" | "inline" | "none" | "vertical";
  4740. export type RightProperty<TLength> = Globals | TLength | "auto" | string;
  4741. export type RotateProperty = Globals | "none" | string;
  4742. export type RowGapProperty<TLength> = Globals | TLength | "normal" | string;
  4743. export type RubyAlignProperty = Globals | "center" | "space-around" | "space-between" | "start";
  4744. export type RubyMergeProperty = Globals | "auto" | "collapse" | "separate";
  4745. export type RubyPositionProperty = Globals | "alternate" | "over" | "under" | string;
  4746. export type ScaleProperty = Globals | "none" | string | number;
  4747. export type ScrollBehaviorProperty = Globals | "auto" | "smooth";
  4748. export type ScrollMarginProperty<TLength> = Globals | TLength | string;
  4749. export type ScrollMarginBlockProperty<TLength> = Globals | TLength | string;
  4750. export type ScrollMarginBlockEndProperty<TLength> = Globals | TLength;
  4751. export type ScrollMarginBlockStartProperty<TLength> = Globals | TLength;
  4752. export type ScrollMarginBottomProperty<TLength> = Globals | TLength;
  4753. export type ScrollMarginInlineProperty<TLength> = Globals | TLength | string;
  4754. export type ScrollMarginInlineEndProperty<TLength> = Globals | TLength;
  4755. export type ScrollMarginInlineStartProperty<TLength> = Globals | TLength;
  4756. export type ScrollMarginLeftProperty<TLength> = Globals | TLength;
  4757. export type ScrollMarginRightProperty<TLength> = Globals | TLength;
  4758. export type ScrollMarginTopProperty<TLength> = Globals | TLength;
  4759. export type ScrollPaddingProperty<TLength> = Globals | TLength | "auto" | string;
  4760. export type ScrollPaddingBlockProperty<TLength> = Globals | TLength | "auto" | string;
  4761. export type ScrollPaddingBlockEndProperty<TLength> = Globals | TLength | "auto" | string;
  4762. export type ScrollPaddingBlockStartProperty<TLength> = Globals | TLength | "auto" | string;
  4763. export type ScrollPaddingBottomProperty<TLength> = Globals | TLength | "auto" | string;
  4764. export type ScrollPaddingInlineProperty<TLength> = Globals | TLength | "auto" | string;
  4765. export type ScrollPaddingInlineEndProperty<TLength> = Globals | TLength | "auto" | string;
  4766. export type ScrollPaddingInlineStartProperty<TLength> = Globals | TLength | "auto" | string;
  4767. export type ScrollPaddingLeftProperty<TLength> = Globals | TLength | "auto" | string;
  4768. export type ScrollPaddingRightProperty<TLength> = Globals | TLength | "auto" | string;
  4769. export type ScrollPaddingTopProperty<TLength> = Globals | TLength | "auto" | string;
  4770. export type ScrollSnapAlignProperty = Globals | "center" | "end" | "none" | "start" | string;
  4771. export type ScrollSnapCoordinateProperty<TLength> = Globals | Position<TLength> | "none" | string;
  4772. export type ScrollSnapDestinationProperty<TLength> = Globals | Position<TLength>;
  4773. export type ScrollSnapPointsXProperty = Globals | "none" | string;
  4774. export type ScrollSnapPointsYProperty = Globals | "none" | string;
  4775. export type ScrollSnapStopProperty = Globals | "always" | "normal";
  4776. export type ScrollSnapTypeProperty = Globals | "block" | "both" | "inline" | "none" | "x" | "y" | string;
  4777. export type ScrollSnapTypeXProperty = Globals | "mandatory" | "none" | "proximity";
  4778. export type ScrollSnapTypeYProperty = Globals | "mandatory" | "none" | "proximity";
  4779. export type ScrollbarColorProperty = Globals | Color | "auto";
  4780. export type ScrollbarGutterProperty = Globals | "auto" | "stable" | string;
  4781. export type ScrollbarWidthProperty = Globals | "auto" | "none" | "thin";
  4782. export type ShapeImageThresholdProperty = Globals | string | number;
  4783. export type ShapeMarginProperty<TLength> = Globals | TLength | string;
  4784. export type ShapeOutsideProperty = Globals | Box | "margin-box" | "none" | string;
  4785. export type TabSizeProperty<TLength> = Globals | TLength | number;
  4786. export type TableLayoutProperty = Globals | "auto" | "fixed";
  4787. export type TextAlignProperty = Globals | "center" | "end" | "justify" | "left" | "match-parent" | "right" | "start";
  4788. export type TextAlignLastProperty = Globals | "auto" | "center" | "end" | "justify" | "left" | "right" | "start";
  4789. export type TextCombineUprightProperty = Globals | "-ms-text-combine-horizontal" | "all" | "digits" | "none" | string;
  4790. export type TextDecorationProperty<TLength> =
  4791. | Globals
  4792. | Color
  4793. | TLength
  4794. | "auto"
  4795. | "blink"
  4796. | "dashed"
  4797. | "dotted"
  4798. | "double"
  4799. | "from-font"
  4800. | "grammar-error"
  4801. | "line-through"
  4802. | "none"
  4803. | "overline"
  4804. | "solid"
  4805. | "spelling-error"
  4806. | "underline"
  4807. | "wavy"
  4808. | string;
  4809. export type TextDecorationColorProperty = Globals | Color;
  4810. export type TextDecorationLineProperty = Globals | "blink" | "grammar-error" | "line-through" | "none" | "overline" | "spelling-error" | "underline" | string;
  4811. export type TextDecorationSkipProperty = Globals | "box-decoration" | "edges" | "leading-spaces" | "none" | "objects" | "spaces" | "trailing-spaces" | string;
  4812. export type TextDecorationSkipInkProperty = Globals | "all" | "auto" | "none";
  4813. export type TextDecorationStyleProperty = Globals | "dashed" | "dotted" | "double" | "solid" | "wavy";
  4814. export type TextDecorationThicknessProperty<TLength> = Globals | TLength | "auto" | "from-font" | string;
  4815. export type TextEmphasisProperty = Globals | Color | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | string;
  4816. export type TextEmphasisColorProperty = Globals | Color;
  4817. export type TextEmphasisStyleProperty = Globals | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | string;
  4818. export type TextIndentProperty<TLength> = Globals | TLength | string;
  4819. export type TextJustifyProperty = Globals | "auto" | "inter-character" | "inter-word" | "none";
  4820. export type TextOrientationProperty = Globals | "mixed" | "sideways" | "upright";
  4821. export type TextOverflowProperty = Globals | "clip" | "ellipsis" | string;
  4822. export type TextRenderingProperty = Globals | "auto" | "geometricPrecision" | "optimizeLegibility" | "optimizeSpeed";
  4823. export type TextShadowProperty = Globals | "none" | string;
  4824. export type TextSizeAdjustProperty = Globals | "auto" | "none" | string;
  4825. export type TextTransformProperty = Globals | "capitalize" | "full-size-kana" | "full-width" | "lowercase" | "none" | "uppercase";
  4826. export type TextUnderlineOffsetProperty<TLength> = Globals | TLength | "auto" | string;
  4827. export type TextUnderlinePositionProperty = Globals | "auto" | "from-font" | "left" | "right" | "under" | string;
  4828. export type TopProperty<TLength> = Globals | TLength | "auto" | string;
  4829. export type TouchActionProperty =
  4830. | Globals
  4831. | "-ms-manipulation"
  4832. | "-ms-none"
  4833. | "-ms-pinch-zoom"
  4834. | "auto"
  4835. | "manipulation"
  4836. | "none"
  4837. | "pan-down"
  4838. | "pan-left"
  4839. | "pan-right"
  4840. | "pan-up"
  4841. | "pan-x"
  4842. | "pan-y"
  4843. | "pinch-zoom"
  4844. | string;
  4845. export type TransformProperty = Globals | "none" | string;
  4846. export type TransformBoxProperty = Globals | "border-box" | "content-box" | "fill-box" | "stroke-box" | "view-box";
  4847. export type TransformOriginProperty<TLength> = Globals | TLength | "bottom" | "center" | "left" | "right" | "top" | string;
  4848. export type TransformStyleProperty = Globals | "flat" | "preserve-3d";
  4849. export type TransitionProperty = Globals | SingleTransition | string;
  4850. export type TransitionPropertyProperty = Globals | "all" | "none" | string;
  4851. export type TransitionTimingFunctionProperty = Globals | EasingFunction | string;
  4852. export type TranslateProperty<TLength> = Globals | TLength | "none" | string;
  4853. export type UnicodeBidiProperty =
  4854. | Globals
  4855. | "-moz-isolate"
  4856. | "-moz-isolate-override"
  4857. | "-moz-plaintext"
  4858. | "-webkit-isolate"
  4859. | "-webkit-isolate-override"
  4860. | "-webkit-plaintext"
  4861. | "bidi-override"
  4862. | "embed"
  4863. | "isolate"
  4864. | "isolate-override"
  4865. | "normal"
  4866. | "plaintext";
  4867. export type UserSelectProperty = Globals | "-moz-none" | "all" | "auto" | "contain" | "element" | "none" | "text";
  4868. export type VerticalAlignProperty<TLength> = Globals | TLength | "baseline" | "bottom" | "middle" | "sub" | "super" | "text-bottom" | "text-top" | "top" | string;
  4869. export type VisibilityProperty = Globals | "collapse" | "hidden" | "visible";
  4870. export type WhiteSpaceProperty = Globals | "-moz-pre-wrap" | "break-spaces" | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";
  4871. export type WidthProperty<TLength> =
  4872. | Globals
  4873. | TLength
  4874. | "-moz-fit-content"
  4875. | "-moz-max-content"
  4876. | "-moz-min-content"
  4877. | "-webkit-fit-content"
  4878. | "-webkit-max-content"
  4879. | "auto"
  4880. | "fit-content"
  4881. | "intrinsic"
  4882. | "max-content"
  4883. | "min-content"
  4884. | "min-intrinsic"
  4885. | string;
  4886. export type WillChangeProperty = Globals | AnimateableFeature | "auto" | string;
  4887. export type WordBreakProperty = Globals | "break-all" | "break-word" | "keep-all" | "normal";
  4888. export type WordSpacingProperty<TLength> = Globals | TLength | "normal";
  4889. export type WordWrapProperty = Globals | "break-word" | "normal";
  4890. export type WritingModeProperty = Globals | "horizontal-tb" | "sideways-lr" | "sideways-rl" | "vertical-lr" | "vertical-rl";
  4891. export type ZIndexProperty = Globals | "auto" | number;
  4892. export type ZoomProperty = Globals | "normal" | "reset" | string | number;
  4893. export type MozAppearanceProperty =
  4894. | Globals
  4895. | "-moz-mac-unified-toolbar"
  4896. | "-moz-win-borderless-glass"
  4897. | "-moz-win-browsertabbar-toolbox"
  4898. | "-moz-win-communications-toolbox"
  4899. | "-moz-win-communicationstext"
  4900. | "-moz-win-exclude-glass"
  4901. | "-moz-win-glass"
  4902. | "-moz-win-media-toolbox"
  4903. | "-moz-win-mediatext"
  4904. | "-moz-window-button-box"
  4905. | "-moz-window-button-box-maximized"
  4906. | "-moz-window-button-close"
  4907. | "-moz-window-button-maximize"
  4908. | "-moz-window-button-minimize"
  4909. | "-moz-window-button-restore"
  4910. | "-moz-window-frame-bottom"
  4911. | "-moz-window-frame-left"
  4912. | "-moz-window-frame-right"
  4913. | "-moz-window-titlebar"
  4914. | "-moz-window-titlebar-maximized"
  4915. | "button"
  4916. | "button-arrow-down"
  4917. | "button-arrow-next"
  4918. | "button-arrow-previous"
  4919. | "button-arrow-up"
  4920. | "button-bevel"
  4921. | "button-focus"
  4922. | "caret"
  4923. | "checkbox"
  4924. | "checkbox-container"
  4925. | "checkbox-label"
  4926. | "checkmenuitem"
  4927. | "dualbutton"
  4928. | "groupbox"
  4929. | "listbox"
  4930. | "listitem"
  4931. | "menuarrow"
  4932. | "menubar"
  4933. | "menucheckbox"
  4934. | "menuimage"
  4935. | "menuitem"
  4936. | "menuitemtext"
  4937. | "menulist"
  4938. | "menulist-button"
  4939. | "menulist-text"
  4940. | "menulist-textfield"
  4941. | "menupopup"
  4942. | "menuradio"
  4943. | "menuseparator"
  4944. | "meterbar"
  4945. | "meterchunk"
  4946. | "none"
  4947. | "progressbar"
  4948. | "progressbar-vertical"
  4949. | "progresschunk"
  4950. | "progresschunk-vertical"
  4951. | "radio"
  4952. | "radio-container"
  4953. | "radio-label"
  4954. | "radiomenuitem"
  4955. | "range"
  4956. | "range-thumb"
  4957. | "resizer"
  4958. | "resizerpanel"
  4959. | "scale-horizontal"
  4960. | "scale-vertical"
  4961. | "scalethumb-horizontal"
  4962. | "scalethumb-vertical"
  4963. | "scalethumbend"
  4964. | "scalethumbstart"
  4965. | "scalethumbtick"
  4966. | "scrollbarbutton-down"
  4967. | "scrollbarbutton-left"
  4968. | "scrollbarbutton-right"
  4969. | "scrollbarbutton-up"
  4970. | "scrollbarthumb-horizontal"
  4971. | "scrollbarthumb-vertical"
  4972. | "scrollbartrack-horizontal"
  4973. | "scrollbartrack-vertical"
  4974. | "searchfield"
  4975. | "separator"
  4976. | "sheet"
  4977. | "spinner"
  4978. | "spinner-downbutton"
  4979. | "spinner-textfield"
  4980. | "spinner-upbutton"
  4981. | "splitter"
  4982. | "statusbar"
  4983. | "statusbarpanel"
  4984. | "tab"
  4985. | "tab-scroll-arrow-back"
  4986. | "tab-scroll-arrow-forward"
  4987. | "tabpanel"
  4988. | "tabpanels"
  4989. | "textfield"
  4990. | "textfield-multiline"
  4991. | "toolbar"
  4992. | "toolbarbutton"
  4993. | "toolbarbutton-dropdown"
  4994. | "toolbargripper"
  4995. | "toolbox"
  4996. | "tooltip"
  4997. | "treeheader"
  4998. | "treeheadercell"
  4999. | "treeheadersortarrow"
  5000. | "treeitem"
  5001. | "treeline"
  5002. | "treetwisty"
  5003. | "treetwistyopen"
  5004. | "treeview";
  5005. export type MozBindingProperty = Globals | "none" | string;
  5006. export type MozBorderBottomColorsProperty = Globals | Color | "none" | string;
  5007. export type MozBorderLeftColorsProperty = Globals | Color | "none" | string;
  5008. export type MozBorderRightColorsProperty = Globals | Color | "none" | string;
  5009. export type MozBorderTopColorsProperty = Globals | Color | "none" | string;
  5010. export type MozContextPropertiesProperty = Globals | "fill" | "fill-opacity" | "none" | "stroke" | "stroke-opacity" | string;
  5011. export type MozFloatEdgeProperty = Globals | "border-box" | "content-box" | "margin-box" | "padding-box";
  5012. export type MozForceBrokenImageIconProperty = Globals | 0 | 1;
  5013. export type MozImageRegionProperty = Globals | "auto" | string;
  5014. export type MozOrientProperty = Globals | "block" | "horizontal" | "inline" | "vertical";
  5015. export type MozOutlineRadiusProperty<TLength> = Globals | TLength | string;
  5016. export type MozOutlineRadiusBottomleftProperty<TLength> = Globals | TLength | string;
  5017. export type MozOutlineRadiusBottomrightProperty<TLength> = Globals | TLength | string;
  5018. export type MozOutlineRadiusTopleftProperty<TLength> = Globals | TLength | string;
  5019. export type MozOutlineRadiusToprightProperty<TLength> = Globals | TLength | string;
  5020. export type MozStackSizingProperty = Globals | "ignore" | "stretch-to-fit";
  5021. export type MozTextBlinkProperty = Globals | "blink" | "none";
  5022. export type MozUserFocusProperty = Globals | "ignore" | "none" | "normal" | "select-after" | "select-all" | "select-before" | "select-menu" | "select-same";
  5023. export type MozUserInputProperty = Globals | "auto" | "disabled" | "enabled" | "none";
  5024. export type MozUserModifyProperty = Globals | "read-only" | "read-write" | "write-only";
  5025. export type MozWindowDraggingProperty = Globals | "drag" | "no-drag";
  5026. export type MozWindowShadowProperty = Globals | "default" | "menu" | "none" | "sheet" | "tooltip";
  5027. export type MsAcceleratorProperty = Globals | "false" | "true";
  5028. export type MsBlockProgressionProperty = Globals | "bt" | "lr" | "rl" | "tb";
  5029. export type MsContentZoomChainingProperty = Globals | "chained" | "none";
  5030. export type MsContentZoomSnapProperty = Globals | "mandatory" | "none" | "proximity" | string;
  5031. export type MsContentZoomSnapTypeProperty = Globals | "mandatory" | "none" | "proximity";
  5032. export type MsContentZoomingProperty = Globals | "none" | "zoom";
  5033. export type MsFlowFromProperty = Globals | "none" | string;
  5034. export type MsFlowIntoProperty = Globals | "none" | string;
  5035. export type MsGridColumnsProperty<TLength> = Globals | TrackBreadth<TLength> | "none" | string;
  5036. export type MsGridRowsProperty<TLength> = Globals | TrackBreadth<TLength> | "none" | string;
  5037. export type MsHighContrastAdjustProperty = Globals | "auto" | "none";
  5038. export type MsHyphenateLimitCharsProperty = Globals | "auto" | string | number;
  5039. export type MsHyphenateLimitLinesProperty = Globals | "no-limit" | number;
  5040. export type MsHyphenateLimitZoneProperty<TLength> = Globals | TLength | string;
  5041. export type MsImeAlignProperty = Globals | "after" | "auto";
  5042. export type MsOverflowStyleProperty = Globals | "-ms-autohiding-scrollbar" | "auto" | "none" | "scrollbar";
  5043. export type MsScrollChainingProperty = Globals | "chained" | "none";
  5044. export type MsScrollLimitXMaxProperty<TLength> = Globals | TLength | "auto";
  5045. export type MsScrollLimitXMinProperty<TLength> = Globals | TLength;
  5046. export type MsScrollLimitYMaxProperty<TLength> = Globals | TLength | "auto";
  5047. export type MsScrollLimitYMinProperty<TLength> = Globals | TLength;
  5048. export type MsScrollRailsProperty = Globals | "none" | "railed";
  5049. export type MsScrollSnapTypeProperty = Globals | "mandatory" | "none" | "proximity";
  5050. export type MsScrollTranslationProperty = Globals | "none" | "vertical-to-horizontal";
  5051. export type MsScrollbar3dlightColorProperty = Globals | Color;
  5052. export type MsScrollbarArrowColorProperty = Globals | Color;
  5053. export type MsScrollbarBaseColorProperty = Globals | Color;
  5054. export type MsScrollbarDarkshadowColorProperty = Globals | Color;
  5055. export type MsScrollbarFaceColorProperty = Globals | Color;
  5056. export type MsScrollbarHighlightColorProperty = Globals | Color;
  5057. export type MsScrollbarShadowColorProperty = Globals | Color;
  5058. export type MsScrollbarTrackColorProperty = Globals | Color;
  5059. export type MsTextAutospaceProperty = Globals | "ideograph-alpha" | "ideograph-numeric" | "ideograph-parenthesis" | "ideograph-space" | "none";
  5060. export type MsTouchSelectProperty = Globals | "grippers" | "none";
  5061. export type MsUserSelectProperty = Globals | "element" | "none" | "text";
  5062. export type MsWrapFlowProperty = Globals | "auto" | "both" | "clear" | "end" | "maximum" | "start";
  5063. export type MsWrapMarginProperty<TLength> = Globals | TLength;
  5064. export type MsWrapThroughProperty = Globals | "none" | "wrap";
  5065. export type WebkitAppearanceProperty =
  5066. | Globals
  5067. | "-apple-pay-button"
  5068. | "button"
  5069. | "button-bevel"
  5070. | "caret"
  5071. | "checkbox"
  5072. | "default-button"
  5073. | "inner-spin-button"
  5074. | "listbox"
  5075. | "listitem"
  5076. | "media-controls-background"
  5077. | "media-controls-fullscreen-background"
  5078. | "media-current-time-display"
  5079. | "media-enter-fullscreen-button"
  5080. | "media-exit-fullscreen-button"
  5081. | "media-fullscreen-button"
  5082. | "media-mute-button"
  5083. | "media-overlay-play-button"
  5084. | "media-play-button"
  5085. | "media-seek-back-button"
  5086. | "media-seek-forward-button"
  5087. | "media-slider"
  5088. | "media-sliderthumb"
  5089. | "media-time-remaining-display"
  5090. | "media-toggle-closed-captions-button"
  5091. | "media-volume-slider"
  5092. | "media-volume-slider-container"
  5093. | "media-volume-sliderthumb"
  5094. | "menulist"
  5095. | "menulist-button"
  5096. | "menulist-text"
  5097. | "menulist-textfield"
  5098. | "meter"
  5099. | "none"
  5100. | "progress-bar"
  5101. | "progress-bar-value"
  5102. | "push-button"
  5103. | "radio"
  5104. | "searchfield"
  5105. | "searchfield-cancel-button"
  5106. | "searchfield-decoration"
  5107. | "searchfield-results-button"
  5108. | "searchfield-results-decoration"
  5109. | "slider-horizontal"
  5110. | "slider-vertical"
  5111. | "sliderthumb-horizontal"
  5112. | "sliderthumb-vertical"
  5113. | "square-button"
  5114. | "textarea"
  5115. | "textfield";
  5116. export type WebkitBorderBeforeProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
  5117. export type WebkitBorderBeforeColorProperty = Globals | Color;
  5118. export type WebkitBorderBeforeStyleProperty = Globals | LineStyle | string;
  5119. export type WebkitBorderBeforeWidthProperty<TLength> = Globals | LineWidth<TLength> | string;
  5120. export type WebkitBoxReflectProperty<TLength> = Globals | TLength | "above" | "below" | "left" | "right" | string;
  5121. export type WebkitLineClampProperty = Globals | "none" | number;
  5122. export type WebkitMaskProperty<TLength> = Globals | Position<TLength> | RepeatStyle | Box | "border" | "content" | "none" | "padding" | "text" | string;
  5123. export type WebkitMaskAttachmentProperty = Globals | Attachment | string;
  5124. export type WebkitMaskClipProperty = Globals | Box | "border" | "content" | "padding" | "text" | string;
  5125. export type WebkitMaskCompositeProperty = Globals | CompositeStyle | string;
  5126. export type WebkitMaskImageProperty = Globals | "none" | string;
  5127. export type WebkitMaskOriginProperty = Globals | Box | "border" | "content" | "padding" | string;
  5128. export type WebkitMaskPositionProperty<TLength> = Globals | Position<TLength> | string;
  5129. export type WebkitMaskPositionXProperty<TLength> = Globals | TLength | "center" | "left" | "right" | string;
  5130. export type WebkitMaskPositionYProperty<TLength> = Globals | TLength | "bottom" | "center" | "top" | string;
  5131. export type WebkitMaskRepeatProperty = Globals | RepeatStyle | string;
  5132. export type WebkitMaskRepeatXProperty = Globals | "no-repeat" | "repeat" | "round" | "space";
  5133. export type WebkitMaskRepeatYProperty = Globals | "no-repeat" | "repeat" | "round" | "space";
  5134. export type WebkitMaskSizeProperty<TLength> = Globals | BgSize<TLength> | string;
  5135. export type WebkitOverflowScrollingProperty = Globals | "auto" | "touch";
  5136. export type WebkitTapHighlightColorProperty = Globals | Color;
  5137. export type WebkitTextFillColorProperty = Globals | Color;
  5138. export type WebkitTextStrokeProperty<TLength> = Globals | Color | TLength | string;
  5139. export type WebkitTextStrokeColorProperty = Globals | Color;
  5140. export type WebkitTextStrokeWidthProperty<TLength> = Globals | TLength;
  5141. export type WebkitTouchCalloutProperty = Globals | "default" | "none";
  5142. export type WebkitUserModifyProperty = Globals | "read-only" | "read-write" | "read-write-plaintext-only";
  5143. export type AlignmentBaselineProperty =
  5144. | Globals
  5145. | "after-edge"
  5146. | "alphabetic"
  5147. | "auto"
  5148. | "baseline"
  5149. | "before-edge"
  5150. | "central"
  5151. | "hanging"
  5152. | "ideographic"
  5153. | "mathematical"
  5154. | "middle"
  5155. | "text-after-edge"
  5156. | "text-before-edge";
  5157. export type BaselineShiftProperty<TLength> = Globals | TLength | "baseline" | "sub" | "super" | string;
  5158. export type ClipRuleProperty = Globals | "evenodd" | "nonzero";
  5159. export type ColorInterpolationProperty = Globals | "auto" | "linearRGB" | "sRGB";
  5160. export type ColorRenderingProperty = Globals | "auto" | "optimizeQuality" | "optimizeSpeed";
  5161. export type DominantBaselineProperty =
  5162. | Globals
  5163. | "alphabetic"
  5164. | "auto"
  5165. | "central"
  5166. | "hanging"
  5167. | "ideographic"
  5168. | "mathematical"
  5169. | "middle"
  5170. | "no-change"
  5171. | "reset-size"
  5172. | "text-after-edge"
  5173. | "text-before-edge"
  5174. | "use-script";
  5175. export type FillProperty = Globals | Paint;
  5176. export type FillRuleProperty = Globals | "evenodd" | "nonzero";
  5177. export type FloodColorProperty = Globals | Color | "currentColor";
  5178. export type GlyphOrientationVerticalProperty = Globals | "auto" | string | number;
  5179. export type LightingColorProperty = Globals | Color | "currentColor";
  5180. export type MarkerProperty = Globals | "none" | string;
  5181. export type MarkerEndProperty = Globals | "none" | string;
  5182. export type MarkerMidProperty = Globals | "none" | string;
  5183. export type MarkerStartProperty = Globals | "none" | string;
  5184. export type ShapeRenderingProperty = Globals | "auto" | "crispEdges" | "geometricPrecision" | "optimizeSpeed";
  5185. export type StopColorProperty = Globals | Color | "currentColor";
  5186. export type StrokeProperty = Globals | Paint;
  5187. export type StrokeDasharrayProperty<TLength> = Globals | Dasharray<TLength> | "none";
  5188. export type StrokeDashoffsetProperty<TLength> = Globals | TLength | string;
  5189. export type StrokeLinecapProperty = Globals | "butt" | "round" | "square";
  5190. export type StrokeLinejoinProperty = Globals | "bevel" | "miter" | "round";
  5191. export type StrokeWidthProperty<TLength> = Globals | TLength | string;
  5192. export type TextAnchorProperty = Globals | "end" | "middle" | "start";
  5193. export type VectorEffectProperty = Globals | "non-scaling-stroke" | "none";
  5194. type CounterStyleRangeProperty = "auto" | "infinite" | string | number;
  5195. type CounterStyleSpeakAsProperty = "auto" | "bullets" | "numbers" | "spell-out" | "words" | string;
  5196. type CounterStyleSystemProperty = "additive" | "alphabetic" | "cyclic" | "fixed" | "numeric" | "symbolic" | string;
  5197. type FontFaceFontFeatureSettingsProperty = "normal" | string;
  5198. type FontFaceAscentOverrideProperty = "normal" | string;
  5199. type FontFaceDescentOverrideProperty = "normal" | string;
  5200. type FontFaceFontDisplayProperty = "auto" | "block" | "fallback" | "optional" | "swap";
  5201. type FontFaceFontStretchProperty = FontStretchAbsolute | string;
  5202. type FontFaceFontStyleProperty = "italic" | "normal" | "oblique" | string;
  5203. type FontFaceFontVariantProperty =
  5204. | EastAsianVariantValues
  5205. | "all-petite-caps"
  5206. | "all-small-caps"
  5207. | "common-ligatures"
  5208. | "contextual"
  5209. | "diagonal-fractions"
  5210. | "discretionary-ligatures"
  5211. | "full-width"
  5212. | "historical-forms"
  5213. | "historical-ligatures"
  5214. | "lining-nums"
  5215. | "no-common-ligatures"
  5216. | "no-contextual"
  5217. | "no-discretionary-ligatures"
  5218. | "no-historical-ligatures"
  5219. | "none"
  5220. | "normal"
  5221. | "oldstyle-nums"
  5222. | "ordinal"
  5223. | "petite-caps"
  5224. | "proportional-nums"
  5225. | "proportional-width"
  5226. | "ruby"
  5227. | "slashed-zero"
  5228. | "small-caps"
  5229. | "stacked-fractions"
  5230. | "tabular-nums"
  5231. | "titling-caps"
  5232. | "unicase"
  5233. | string;
  5234. type FontFaceFontVariationSettingsProperty = "normal" | string;
  5235. type FontFaceFontWeightProperty = FontWeightAbsolute | string;
  5236. type FontFaceLineGapOverrideProperty = "normal" | string;
  5237. type PageBleedProperty<TLength> = TLength | "auto";
  5238. type PageMarksProperty = "crop" | "cross" | "none" | string;
  5239. type PageSizeProperty<TLength> = PageSize | TLength | "auto" | "landscape" | "portrait" | string;
  5240. type PropertyInheritsProperty = "false" | "true";
  5241. type ViewportHeightProperty<TLength> = ViewportLength<TLength> | string;
  5242. type ViewportMaxHeightProperty<TLength> = ViewportLength<TLength>;
  5243. type ViewportMaxWidthProperty<TLength> = ViewportLength<TLength>;
  5244. type ViewportMaxZoomProperty = "auto" | string | number;
  5245. type ViewportMinHeightProperty<TLength> = ViewportLength<TLength>;
  5246. type ViewportMinWidthProperty<TLength> = ViewportLength<TLength>;
  5247. type ViewportMinZoomProperty = "auto" | string | number;
  5248. type ViewportOrientationProperty = "auto" | "landscape" | "portrait";
  5249. type ViewportUserZoomProperty = "fixed" | "zoom";
  5250. type ViewportViewportFitProperty = "auto" | "contain" | "cover";
  5251. type ViewportWidthProperty<TLength> = ViewportLength<TLength> | string;
  5252. type ViewportZoomProperty = "auto" | string | number;
  5253. type AbsoluteSize = "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large";
  5254. type AnimateableFeature = "contents" | "scroll-position" | string;
  5255. type Attachment = "fixed" | "local" | "scroll";
  5256. type BgPosition<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | string;
  5257. type BgSize<TLength> = TLength | "auto" | "contain" | "cover" | string;
  5258. type BlendMode =
  5259. | "color"
  5260. | "color-burn"
  5261. | "color-dodge"
  5262. | "darken"
  5263. | "difference"
  5264. | "exclusion"
  5265. | "hard-light"
  5266. | "hue"
  5267. | "lighten"
  5268. | "luminosity"
  5269. | "multiply"
  5270. | "normal"
  5271. | "overlay"
  5272. | "saturation"
  5273. | "screen"
  5274. | "soft-light";
  5275. type Box = "border-box" | "content-box" | "padding-box";
  5276. type Color = NamedColor | DeprecatedSystemColor | "currentcolor" | string;
  5277. type CompatAuto =
  5278. | "button"
  5279. | "checkbox"
  5280. | "listbox"
  5281. | "menulist"
  5282. | "meter"
  5283. | "progress-bar"
  5284. | "push-button"
  5285. | "radio"
  5286. | "searchfield"
  5287. | "slider-horizontal"
  5288. | "square-button"
  5289. | "textarea";
  5290. type CompositeStyle =
  5291. | "clear"
  5292. | "copy"
  5293. | "destination-atop"
  5294. | "destination-in"
  5295. | "destination-out"
  5296. | "destination-over"
  5297. | "source-atop"
  5298. | "source-in"
  5299. | "source-out"
  5300. | "source-over"
  5301. | "xor";
  5302. type CompositingOperator = "add" | "exclude" | "intersect" | "subtract";
  5303. type ContentDistribution = "space-around" | "space-between" | "space-evenly" | "stretch";
  5304. type ContentList = Quote | "contents" | string;
  5305. type ContentPosition = "center" | "end" | "flex-end" | "flex-start" | "start";
  5306. type CubicBezierTimingFunction = "ease" | "ease-in" | "ease-in-out" | "ease-out" | string;
  5307. type Dasharray<TLength> = TLength | string | number;
  5308. type DeprecatedSystemColor =
  5309. | "ActiveBorder"
  5310. | "ActiveCaption"
  5311. | "AppWorkspace"
  5312. | "Background"
  5313. | "ButtonFace"
  5314. | "ButtonHighlight"
  5315. | "ButtonShadow"
  5316. | "ButtonText"
  5317. | "CaptionText"
  5318. | "GrayText"
  5319. | "Highlight"
  5320. | "HighlightText"
  5321. | "InactiveBorder"
  5322. | "InactiveCaption"
  5323. | "InactiveCaptionText"
  5324. | "InfoBackground"
  5325. | "InfoText"
  5326. | "Menu"
  5327. | "MenuText"
  5328. | "Scrollbar"
  5329. | "ThreeDDarkShadow"
  5330. | "ThreeDFace"
  5331. | "ThreeDHighlight"
  5332. | "ThreeDLightShadow"
  5333. | "ThreeDShadow"
  5334. | "Window"
  5335. | "WindowFrame"
  5336. | "WindowText";
  5337. type DisplayInside = "-ms-flexbox" | "-ms-grid" | "-webkit-flex" | "flex" | "flow" | "flow-root" | "grid" | "ruby" | "table";
  5338. type DisplayInternal =
  5339. | "ruby-base"
  5340. | "ruby-base-container"
  5341. | "ruby-text"
  5342. | "ruby-text-container"
  5343. | "table-caption"
  5344. | "table-cell"
  5345. | "table-column"
  5346. | "table-column-group"
  5347. | "table-footer-group"
  5348. | "table-header-group"
  5349. | "table-row"
  5350. | "table-row-group";
  5351. type DisplayLegacy = "-ms-inline-flexbox" | "-ms-inline-grid" | "-webkit-inline-flex" | "inline-block" | "inline-flex" | "inline-grid" | "inline-list-item" | "inline-table";
  5352. type DisplayOutside = "block" | "inline" | "run-in";
  5353. type EasingFunction = CubicBezierTimingFunction | StepTimingFunction | "linear";
  5354. type EastAsianVariantValues = "jis04" | "jis78" | "jis83" | "jis90" | "simplified" | "traditional";
  5355. type FinalBgLayer<TLength> = Color | BgPosition<TLength> | RepeatStyle | Attachment | Box | "none" | string;
  5356. type FontStretchAbsolute =
  5357. | "condensed"
  5358. | "expanded"
  5359. | "extra-condensed"
  5360. | "extra-expanded"
  5361. | "normal"
  5362. | "semi-condensed"
  5363. | "semi-expanded"
  5364. | "ultra-condensed"
  5365. | "ultra-expanded"
  5366. | string;
  5367. type FontWeightAbsolute = "bold" | "normal" | number;
  5368. type GenericFamily = "cursive" | "fantasy" | "monospace" | "sans-serif" | "serif";
  5369. type GeometryBox = Box | "fill-box" | "margin-box" | "stroke-box" | "view-box";
  5370. type GridLine = "auto" | string | number;
  5371. type LineStyle = "dashed" | "dotted" | "double" | "groove" | "hidden" | "inset" | "none" | "outset" | "ridge" | "solid";
  5372. type LineWidth<TLength> = TLength | "medium" | "thick" | "thin";
  5373. type MaskLayer<TLength> = Position<TLength> | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | "no-clip" | "none" | string;
  5374. type MaskingMode = "alpha" | "luminance" | "match-source";
  5375. type NamedColor =
  5376. | "aliceblue"
  5377. | "antiquewhite"
  5378. | "aqua"
  5379. | "aquamarine"
  5380. | "azure"
  5381. | "beige"
  5382. | "bisque"
  5383. | "black"
  5384. | "blanchedalmond"
  5385. | "blue"
  5386. | "blueviolet"
  5387. | "brown"
  5388. | "burlywood"
  5389. | "cadetblue"
  5390. | "chartreuse"
  5391. | "chocolate"
  5392. | "coral"
  5393. | "cornflowerblue"
  5394. | "cornsilk"
  5395. | "crimson"
  5396. | "cyan"
  5397. | "darkblue"
  5398. | "darkcyan"
  5399. | "darkgoldenrod"
  5400. | "darkgray"
  5401. | "darkgreen"
  5402. | "darkgrey"
  5403. | "darkkhaki"
  5404. | "darkmagenta"
  5405. | "darkolivegreen"
  5406. | "darkorange"
  5407. | "darkorchid"
  5408. | "darkred"
  5409. | "darksalmon"
  5410. | "darkseagreen"
  5411. | "darkslateblue"
  5412. | "darkslategray"
  5413. | "darkslategrey"
  5414. | "darkturquoise"
  5415. | "darkviolet"
  5416. | "deeppink"
  5417. | "deepskyblue"
  5418. | "dimgray"
  5419. | "dimgrey"
  5420. | "dodgerblue"
  5421. | "firebrick"
  5422. | "floralwhite"
  5423. | "forestgreen"
  5424. | "fuchsia"
  5425. | "gainsboro"
  5426. | "ghostwhite"
  5427. | "gold"
  5428. | "goldenrod"
  5429. | "gray"
  5430. | "green"
  5431. | "greenyellow"
  5432. | "grey"
  5433. | "honeydew"
  5434. | "hotpink"
  5435. | "indianred"
  5436. | "indigo"
  5437. | "ivory"
  5438. | "khaki"
  5439. | "lavender"
  5440. | "lavenderblush"
  5441. | "lawngreen"
  5442. | "lemonchiffon"
  5443. | "lightblue"
  5444. | "lightcoral"
  5445. | "lightcyan"
  5446. | "lightgoldenrodyellow"
  5447. | "lightgray"
  5448. | "lightgreen"
  5449. | "lightgrey"
  5450. | "lightpink"
  5451. | "lightsalmon"
  5452. | "lightseagreen"
  5453. | "lightskyblue"
  5454. | "lightslategray"
  5455. | "lightslategrey"
  5456. | "lightsteelblue"
  5457. | "lightyellow"
  5458. | "lime"
  5459. | "limegreen"
  5460. | "linen"
  5461. | "magenta"
  5462. | "maroon"
  5463. | "mediumaquamarine"
  5464. | "mediumblue"
  5465. | "mediumorchid"
  5466. | "mediumpurple"
  5467. | "mediumseagreen"
  5468. | "mediumslateblue"
  5469. | "mediumspringgreen"
  5470. | "mediumturquoise"
  5471. | "mediumvioletred"
  5472. | "midnightblue"
  5473. | "mintcream"
  5474. | "mistyrose"
  5475. | "moccasin"
  5476. | "navajowhite"
  5477. | "navy"
  5478. | "oldlace"
  5479. | "olive"
  5480. | "olivedrab"
  5481. | "orange"
  5482. | "orangered"
  5483. | "orchid"
  5484. | "palegoldenrod"
  5485. | "palegreen"
  5486. | "paleturquoise"
  5487. | "palevioletred"
  5488. | "papayawhip"
  5489. | "peachpuff"
  5490. | "peru"
  5491. | "pink"
  5492. | "plum"
  5493. | "powderblue"
  5494. | "purple"
  5495. | "rebeccapurple"
  5496. | "red"
  5497. | "rosybrown"
  5498. | "royalblue"
  5499. | "saddlebrown"
  5500. | "salmon"
  5501. | "sandybrown"
  5502. | "seagreen"
  5503. | "seashell"
  5504. | "sienna"
  5505. | "silver"
  5506. | "skyblue"
  5507. | "slateblue"
  5508. | "slategray"
  5509. | "slategrey"
  5510. | "snow"
  5511. | "springgreen"
  5512. | "steelblue"
  5513. | "tan"
  5514. | "teal"
  5515. | "thistle"
  5516. | "tomato"
  5517. | "transparent"
  5518. | "turquoise"
  5519. | "violet"
  5520. | "wheat"
  5521. | "white"
  5522. | "whitesmoke"
  5523. | "yellow"
  5524. | "yellowgreen";
  5525. type PageSize = "A3" | "A4" | "A5" | "B4" | "B5" | "JIS-B4" | "JIS-B5" | "ledger" | "legal" | "letter";
  5526. type Paint = Color | "child" | "context-fill" | "context-stroke" | "none" | string;
  5527. type Position<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | string;
  5528. type Quote = "close-quote" | "no-close-quote" | "no-open-quote" | "open-quote";
  5529. type RepeatStyle = "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space" | string;
  5530. type SelfPosition = "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start";
  5531. type SingleAnimation = EasingFunction | SingleAnimationDirection | SingleAnimationFillMode | "infinite" | "none" | "paused" | "running" | string | number;
  5532. type SingleAnimationDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
  5533. type SingleAnimationFillMode = "backwards" | "both" | "forwards" | "none";
  5534. type SingleAnimationTimeline = "auto" | "none" | string;
  5535. type SingleTransition = EasingFunction | "all" | "none" | string;
  5536. type StepTimingFunction = "step-end" | "step-start" | string;
  5537. type TrackBreadth<TLength> = TLength | "auto" | "max-content" | "min-content" | string;
  5538. type ViewportLength<TLength> = TLength | "auto" | string;
  5539. type VisualBox = "border-box" | "content-box" | "padding-box";