index.js.flow 307 KB

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