index.js.flow 279 KB

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