index.js.flow 283 KB

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