index.js.flow 322 KB

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