index.js.flow 306 KB

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