mdc.switch.js 270 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687
  1. /**
  2. * @license
  3. * Copyright Google LLC All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
  7. */
  8. (function webpackUniversalModuleDefinition(root, factory) {
  9. if(typeof exports === 'object' && typeof module === 'object')
  10. module.exports = factory();
  11. else if(typeof define === 'function' && define.amd)
  12. define("@material/switch", [], factory);
  13. else if(typeof exports === 'object')
  14. exports["switch"] = factory();
  15. else
  16. root["mdc"] = root["mdc"] || {}, root["mdc"]["switch"] = factory();
  17. })(this, function() {
  18. return /******/ (function(modules) { // webpackBootstrap
  19. /******/ // The module cache
  20. /******/ var installedModules = {};
  21. /******/
  22. /******/ // The require function
  23. /******/ function __webpack_require__(moduleId) {
  24. /******/
  25. /******/ // Check if module is in cache
  26. /******/ if(installedModules[moduleId]) {
  27. /******/ return installedModules[moduleId].exports;
  28. /******/ }
  29. /******/ // Create a new module (and put it into the cache)
  30. /******/ var module = installedModules[moduleId] = {
  31. /******/ i: moduleId,
  32. /******/ l: false,
  33. /******/ exports: {}
  34. /******/ };
  35. /******/
  36. /******/ // Execute the module function
  37. /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  38. /******/
  39. /******/ // Flag the module as loaded
  40. /******/ module.l = true;
  41. /******/
  42. /******/ // Return the exports of the module
  43. /******/ return module.exports;
  44. /******/ }
  45. /******/
  46. /******/
  47. /******/ // expose the modules object (__webpack_modules__)
  48. /******/ __webpack_require__.m = modules;
  49. /******/
  50. /******/ // expose the module cache
  51. /******/ __webpack_require__.c = installedModules;
  52. /******/
  53. /******/ // define getter function for harmony exports
  54. /******/ __webpack_require__.d = function(exports, name, getter) {
  55. /******/ if(!__webpack_require__.o(exports, name)) {
  56. /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
  57. /******/ }
  58. /******/ };
  59. /******/
  60. /******/ // define __esModule on exports
  61. /******/ __webpack_require__.r = function(exports) {
  62. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  63. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  64. /******/ }
  65. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  66. /******/ };
  67. /******/
  68. /******/ // create a fake namespace object
  69. /******/ // mode & 1: value is a module id, require it
  70. /******/ // mode & 2: merge all properties of value into the ns
  71. /******/ // mode & 4: return value when already ns object
  72. /******/ // mode & 8|1: behave like require
  73. /******/ __webpack_require__.t = function(value, mode) {
  74. /******/ if(mode & 1) value = __webpack_require__(value);
  75. /******/ if(mode & 8) return value;
  76. /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
  77. /******/ var ns = Object.create(null);
  78. /******/ __webpack_require__.r(ns);
  79. /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
  80. /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
  81. /******/ return ns;
  82. /******/ };
  83. /******/
  84. /******/ // getDefaultExport function for compatibility with non-harmony modules
  85. /******/ __webpack_require__.n = function(module) {
  86. /******/ var getter = module && module.__esModule ?
  87. /******/ function getDefault() { return module['default']; } :
  88. /******/ function getModuleExports() { return module; };
  89. /******/ __webpack_require__.d(getter, 'a', getter);
  90. /******/ return getter;
  91. /******/ };
  92. /******/
  93. /******/ // Object.prototype.hasOwnProperty.call
  94. /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
  95. /******/
  96. /******/ // __webpack_public_path__
  97. /******/ __webpack_require__.p = "";
  98. /******/
  99. /******/
  100. /******/ // Load entry module and return exports
  101. /******/ return __webpack_require__(__webpack_require__.s = "./packages/mdc-switch/index.ts");
  102. /******/ })
  103. /************************************************************************/
  104. /******/ ({
  105. /***/ "./node_modules/process/browser.js":
  106. /*!*****************************************!*\
  107. !*** ./node_modules/process/browser.js ***!
  108. \*****************************************/
  109. /*! no static exports found */
  110. /***/ (function(module, exports) {
  111. // shim for using process in browser
  112. var process = module.exports = {};
  113. // cached from whatever global is present so that test runners that stub it
  114. // don't break things. But we need to wrap it in a try catch in case it is
  115. // wrapped in strict mode code which doesn't define any globals. It's inside a
  116. // function because try/catches deoptimize in certain engines.
  117. var cachedSetTimeout;
  118. var cachedClearTimeout;
  119. function defaultSetTimout() {
  120. throw new Error('setTimeout has not been defined');
  121. }
  122. function defaultClearTimeout () {
  123. throw new Error('clearTimeout has not been defined');
  124. }
  125. (function () {
  126. try {
  127. if (typeof setTimeout === 'function') {
  128. cachedSetTimeout = setTimeout;
  129. } else {
  130. cachedSetTimeout = defaultSetTimout;
  131. }
  132. } catch (e) {
  133. cachedSetTimeout = defaultSetTimout;
  134. }
  135. try {
  136. if (typeof clearTimeout === 'function') {
  137. cachedClearTimeout = clearTimeout;
  138. } else {
  139. cachedClearTimeout = defaultClearTimeout;
  140. }
  141. } catch (e) {
  142. cachedClearTimeout = defaultClearTimeout;
  143. }
  144. } ())
  145. function runTimeout(fun) {
  146. if (cachedSetTimeout === setTimeout) {
  147. //normal enviroments in sane situations
  148. return setTimeout(fun, 0);
  149. }
  150. // if setTimeout wasn't available but was latter defined
  151. if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {
  152. cachedSetTimeout = setTimeout;
  153. return setTimeout(fun, 0);
  154. }
  155. try {
  156. // when when somebody has screwed with setTimeout but no I.E. maddness
  157. return cachedSetTimeout(fun, 0);
  158. } catch(e){
  159. try {
  160. // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
  161. return cachedSetTimeout.call(null, fun, 0);
  162. } catch(e){
  163. // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
  164. return cachedSetTimeout.call(this, fun, 0);
  165. }
  166. }
  167. }
  168. function runClearTimeout(marker) {
  169. if (cachedClearTimeout === clearTimeout) {
  170. //normal enviroments in sane situations
  171. return clearTimeout(marker);
  172. }
  173. // if clearTimeout wasn't available but was latter defined
  174. if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
  175. cachedClearTimeout = clearTimeout;
  176. return clearTimeout(marker);
  177. }
  178. try {
  179. // when when somebody has screwed with setTimeout but no I.E. maddness
  180. return cachedClearTimeout(marker);
  181. } catch (e){
  182. try {
  183. // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
  184. return cachedClearTimeout.call(null, marker);
  185. } catch (e){
  186. // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
  187. // Some versions of I.E. have different rules for clearTimeout vs setTimeout
  188. return cachedClearTimeout.call(this, marker);
  189. }
  190. }
  191. }
  192. var queue = [];
  193. var draining = false;
  194. var currentQueue;
  195. var queueIndex = -1;
  196. function cleanUpNextTick() {
  197. if (!draining || !currentQueue) {
  198. return;
  199. }
  200. draining = false;
  201. if (currentQueue.length) {
  202. queue = currentQueue.concat(queue);
  203. } else {
  204. queueIndex = -1;
  205. }
  206. if (queue.length) {
  207. drainQueue();
  208. }
  209. }
  210. function drainQueue() {
  211. if (draining) {
  212. return;
  213. }
  214. var timeout = runTimeout(cleanUpNextTick);
  215. draining = true;
  216. var len = queue.length;
  217. while(len) {
  218. currentQueue = queue;
  219. queue = [];
  220. while (++queueIndex < len) {
  221. if (currentQueue) {
  222. currentQueue[queueIndex].run();
  223. }
  224. }
  225. queueIndex = -1;
  226. len = queue.length;
  227. }
  228. currentQueue = null;
  229. draining = false;
  230. runClearTimeout(timeout);
  231. }
  232. process.nextTick = function (fun) {
  233. var args = new Array(arguments.length - 1);
  234. if (arguments.length > 1) {
  235. for (var i = 1; i < arguments.length; i++) {
  236. args[i - 1] = arguments[i];
  237. }
  238. }
  239. queue.push(new Item(fun, args));
  240. if (queue.length === 1 && !draining) {
  241. runTimeout(drainQueue);
  242. }
  243. };
  244. // v8 likes predictible objects
  245. function Item(fun, array) {
  246. this.fun = fun;
  247. this.array = array;
  248. }
  249. Item.prototype.run = function () {
  250. this.fun.apply(null, this.array);
  251. };
  252. process.title = 'browser';
  253. process.browser = true;
  254. process.env = {};
  255. process.argv = [];
  256. process.version = ''; // empty string to avoid regexp issues
  257. process.versions = {};
  258. function noop() {}
  259. process.on = noop;
  260. process.addListener = noop;
  261. process.once = noop;
  262. process.off = noop;
  263. process.removeListener = noop;
  264. process.removeAllListeners = noop;
  265. process.emit = noop;
  266. process.prependListener = noop;
  267. process.prependOnceListener = noop;
  268. process.listeners = function (name) { return [] }
  269. process.binding = function (name) {
  270. throw new Error('process.binding is not supported');
  271. };
  272. process.cwd = function () { return '/' };
  273. process.chdir = function (dir) {
  274. throw new Error('process.chdir is not supported');
  275. };
  276. process.umask = function() { return 0; };
  277. /***/ }),
  278. /***/ "./node_modules/safevalues/builders/attribute_builders.js":
  279. /*!****************************************************************!*\
  280. !*** ./node_modules/safevalues/builders/attribute_builders.js ***!
  281. \****************************************************************/
  282. /*! no static exports found */
  283. /***/ (function(module, exports, __webpack_require__) {
  284. "use strict";
  285. /**
  286. * @license
  287. * SPDX-License-Identifier: Apache-2.0
  288. */
  289. Object.defineProperty(exports, "__esModule", { value: true });
  290. exports.safeAttrPrefix = void 0;
  291. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  292. var attribute_impl_1 = __webpack_require__(/*! ../internals/attribute_impl */ "./node_modules/safevalues/internals/attribute_impl.js");
  293. var string_literal_1 = __webpack_require__(/*! ../internals/string_literal */ "./node_modules/safevalues/internals/string_literal.js");
  294. var sensitive_attributes_1 = __webpack_require__(/*! ./sensitive_attributes */ "./node_modules/safevalues/builders/sensitive_attributes.js");
  295. /**
  296. * Creates a SafeAttributePrefix object from a template literal with no
  297. * interpolations for attributes that share a common prefix guaranteed to be not
  298. * security sensitive.
  299. *
  300. * The template literal is a prefix that makes it obvious this attribute is not
  301. * security sensitive. If it doesn't, this function will throw.
  302. */
  303. function safeAttrPrefix(templ) {
  304. if (true) {
  305. (0, string_literal_1.assertIsTemplateObject)(templ, true, 'safeAttr is a template literal tag function ' +
  306. 'and should be called using the tagged template syntax. ' +
  307. 'For example, safeAttr`foo`;');
  308. }
  309. var attrPrefix = templ[0].toLowerCase();
  310. if (true) {
  311. if (attrPrefix.indexOf('on') === 0 || 'on'.indexOf(attrPrefix) === 0) {
  312. throw new Error("Prefix '".concat(templ[0], "' does not guarantee the attribute ") +
  313. "to be safe as it is also a prefix for event handler attributes" +
  314. "Please use 'addEventListener' to set event handlers.");
  315. }
  316. sensitive_attributes_1.SECURITY_SENSITIVE_ATTRIBUTES.forEach(function (sensitiveAttr) {
  317. if (sensitiveAttr.indexOf(attrPrefix) === 0) {
  318. throw new Error("Prefix '".concat(templ[0], "' does not guarantee the attribute ") +
  319. "to be safe as it is also a prefix for " +
  320. "the security sensitive attribute '".concat(sensitiveAttr, "'. ") +
  321. "Please use native or safe DOM APIs to set the attribute.");
  322. }
  323. });
  324. }
  325. return (0, attribute_impl_1.createAttributePrefix)(attrPrefix);
  326. }
  327. exports.safeAttrPrefix = safeAttrPrefix;
  328. /***/ }),
  329. /***/ "./node_modules/safevalues/builders/html_builders.js":
  330. /*!***********************************************************!*\
  331. !*** ./node_modules/safevalues/builders/html_builders.js ***!
  332. \***********************************************************/
  333. /*! no static exports found */
  334. /***/ (function(module, exports, __webpack_require__) {
  335. "use strict";
  336. /**
  337. * @license
  338. * SPDX-License-Identifier: Apache-2.0
  339. */
  340. Object.defineProperty(exports, "__esModule", { value: true });
  341. exports.concatHtmls = exports.createScriptSrc = exports.createScript = exports.htmlEscape = void 0;
  342. var html_impl_1 = __webpack_require__(/*! ../internals/html_impl */ "./node_modules/safevalues/internals/html_impl.js");
  343. var resource_url_impl_1 = __webpack_require__(/*! ../internals/resource_url_impl */ "./node_modules/safevalues/internals/resource_url_impl.js");
  344. var script_impl_1 = __webpack_require__(/*! ../internals/script_impl */ "./node_modules/safevalues/internals/script_impl.js");
  345. /**
  346. * Returns HTML-escaped text as a `SafeHtml` object.
  347. *
  348. * Available options:
  349. * - `preserveSpaces` turns every second consecutive space character into its
  350. * HTML entity representation (`&#160;`).
  351. * - `preserveNewlines` turns newline characters into breaks (`<br>`).
  352. * - `preserveTabs` wraps tab characters in a span with style=white-space:pre.
  353. */
  354. function htmlEscape(text, options) {
  355. if (options === void 0) { options = {}; }
  356. var htmlEscapedString = htmlEscapeToString(text);
  357. if (options.preserveSpaces) {
  358. // Do this first to ensure we preserve spaces after newlines and tabs.
  359. htmlEscapedString =
  360. htmlEscapedString.replace(/(^|[\r\n\t ]) /g, '$1&#160;');
  361. }
  362. if (options.preserveNewlines) {
  363. htmlEscapedString = htmlEscapedString.replace(/(\r\n|\n|\r)/g, '<br>');
  364. }
  365. if (options.preserveTabs) {
  366. htmlEscapedString = htmlEscapedString.replace(/(\t+)/g, '<span style="white-space:pre">$1</span>');
  367. }
  368. return (0, html_impl_1.createHtml)(htmlEscapedString);
  369. }
  370. exports.htmlEscape = htmlEscape;
  371. /**
  372. * Creates a `SafeHtml` representing a script tag with inline script content.
  373. */
  374. function createScript(script, options) {
  375. if (options === void 0) { options = {}; }
  376. var unwrappedScript = (0, script_impl_1.unwrapScript)(script).toString();
  377. var stringTag = "<script";
  378. if (options.id) {
  379. stringTag += " id=\"".concat(htmlEscapeToString(options.id), "\"");
  380. }
  381. if (options.nonce) {
  382. stringTag += " nonce=\"".concat(htmlEscapeToString(options.nonce), "\"");
  383. }
  384. if (options.type) {
  385. stringTag += " type=\"".concat(htmlEscapeToString(options.type), "\"");
  386. }
  387. stringTag += ">".concat(unwrappedScript, "</script>");
  388. return (0, html_impl_1.createHtml)(stringTag);
  389. }
  390. exports.createScript = createScript;
  391. /**
  392. * Creates a `SafeHtml` representing a script tag with the src attribute.
  393. * This also supports CSP nonces and async loading.
  394. */
  395. function createScriptSrc(src, async, nonce) {
  396. var unwrappedSrc = (0, resource_url_impl_1.unwrapResourceUrl)(src).toString();
  397. var stringTag = "<script src=\"".concat(htmlEscapeToString(unwrappedSrc), "\"");
  398. if (async) {
  399. stringTag += ' async';
  400. }
  401. if (nonce) {
  402. stringTag += " nonce=\"".concat(htmlEscapeToString(nonce), "\"");
  403. }
  404. stringTag += '>\x3c/script>';
  405. return (0, html_impl_1.createHtml)(stringTag);
  406. }
  407. exports.createScriptSrc = createScriptSrc;
  408. /**
  409. * HTML-escapes the given text (`&`, `<`, `>`, `"` and `'`).
  410. */
  411. function htmlEscapeToString(text) {
  412. var escaped = text.replace(/&/g, '&amp;')
  413. .replace(/</g, '&lt;')
  414. .replace(/>/g, '&gt;')
  415. .replace(/"/g, '&quot;')
  416. .replace(/'/g, '&apos;');
  417. return escaped;
  418. }
  419. /** Creates a `SafeHtml` value by concatenating multiple `SafeHtml`s. */
  420. function concatHtmls(htmls) {
  421. return (0, html_impl_1.createHtml)(htmls.map(html_impl_1.unwrapHtml).join(''));
  422. }
  423. exports.concatHtmls = concatHtmls;
  424. /***/ }),
  425. /***/ "./node_modules/safevalues/builders/html_sanitizer/html_sanitizer.js":
  426. /*!***************************************************************************!*\
  427. !*** ./node_modules/safevalues/builders/html_sanitizer/html_sanitizer.js ***!
  428. \***************************************************************************/
  429. /*! no static exports found */
  430. /***/ (function(module, exports, __webpack_require__) {
  431. "use strict";
  432. /**
  433. * @license
  434. * SPDX-License-Identifier: Apache-2.0
  435. */
  436. var __values = (this && this.__values) || function(o) {
  437. var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
  438. if (m) return m.call(o);
  439. if (o && typeof o.length === "number") return {
  440. next: function () {
  441. if (o && i >= o.length) o = void 0;
  442. return { value: o && o[i++], done: !o };
  443. }
  444. };
  445. throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
  446. };
  447. var __read = (this && this.__read) || function (o, n) {
  448. var m = typeof Symbol === "function" && o[Symbol.iterator];
  449. if (!m) return o;
  450. var i = m.call(o), r, ar = [], e;
  451. try {
  452. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
  453. }
  454. catch (error) { e = { error: error }; }
  455. finally {
  456. try {
  457. if (r && !r.done && (m = i["return"])) m.call(i);
  458. }
  459. finally { if (e) throw e.error; }
  460. }
  461. return ar;
  462. };
  463. Object.defineProperty(exports, "__esModule", { value: true });
  464. exports.sanitizeHtmlToFragment = exports.sanitizeHtmlAssertUnchanged = exports.sanitizeHtml = exports.HtmlSanitizerImpl = void 0;
  465. __webpack_require__(/*! ../../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  466. var html_impl_1 = __webpack_require__(/*! ../../internals/html_impl */ "./node_modules/safevalues/internals/html_impl.js");
  467. /* g3_import_pure from '../../internals/pure' */
  468. var secrets_1 = __webpack_require__(/*! ../../internals/secrets */ "./node_modules/safevalues/internals/secrets.js");
  469. var url_sanitizer_1 = __webpack_require__(/*! ../url_sanitizer */ "./node_modules/safevalues/builders/url_sanitizer.js");
  470. var inert_fragment_1 = __webpack_require__(/*! ./inert_fragment */ "./node_modules/safevalues/builders/html_sanitizer/inert_fragment.js");
  471. var no_clobber_1 = __webpack_require__(/*! ./no_clobber */ "./node_modules/safevalues/builders/html_sanitizer/no_clobber.js");
  472. var default_sanitizer_table_1 = __webpack_require__(/*! ./sanitizer_table/default_sanitizer_table */ "./node_modules/safevalues/builders/html_sanitizer/sanitizer_table/default_sanitizer_table.js");
  473. var sanitizer_table_1 = __webpack_require__(/*! ./sanitizer_table/sanitizer_table */ "./node_modules/safevalues/builders/html_sanitizer/sanitizer_table/sanitizer_table.js");
  474. /** Implementation for `HtmlSanitizer` */
  475. var HtmlSanitizerImpl = /** @class */ (function () {
  476. function HtmlSanitizerImpl(sanitizerTable, token) {
  477. this.sanitizerTable = sanitizerTable;
  478. this.changes = [];
  479. (0, secrets_1.ensureTokenIsValid)(token);
  480. }
  481. HtmlSanitizerImpl.prototype.sanitizeAssertUnchanged = function (html) {
  482. this.changes = [];
  483. var sanitizedHtml = this.sanitize(html);
  484. if (this.changes.length !== 0) {
  485. var message = '';
  486. if (true) {
  487. message =
  488. "Unexpected change to HTML value as a result of sanitization. " +
  489. "Input: \"".concat(html, "\", sanitized output: \"").concat(sanitizedHtml, "\"\n") +
  490. "List of changes:".concat(this.changes.join('\n'));
  491. }
  492. throw new Error(message);
  493. }
  494. return sanitizedHtml;
  495. };
  496. HtmlSanitizerImpl.prototype.sanitize = function (html) {
  497. var fakeRoot = document.createElement('span');
  498. fakeRoot.appendChild(this.sanitizeToFragment(html));
  499. // XML serialization is preferred over HTML serialization as it is
  500. // stricter and makes sure all attributes are properly escaped, avoiding
  501. // cases where the tree might mutate when parsed again later due to the
  502. // complexities of the HTML parsing algorithm
  503. var serializedNewTree = new XMLSerializer().serializeToString(fakeRoot);
  504. // We remove the outer most element as this is the span node created as
  505. // the root for the sanitized tree and contains a spurious xmlns attribute
  506. // from the XML serialization step.
  507. serializedNewTree = serializedNewTree.slice(serializedNewTree.indexOf('>') + 1, serializedNewTree.lastIndexOf('</'));
  508. return (0, html_impl_1.createHtml)(serializedNewTree);
  509. };
  510. HtmlSanitizerImpl.prototype.sanitizeToFragment = function (html) {
  511. var _this = this;
  512. var dirtyFragment = (0, inert_fragment_1.createInertFragment)(html);
  513. var treeWalker = document.createTreeWalker(dirtyFragment, NodeFilter.SHOW_ELEMENT | NodeFilter.SHOW_TEXT,
  514. // IE10 and IE11 won't accept a proper `NodeFilter` interface, and
  515. // expect the filtering function to be passed directly. It seems that
  516. // other browsers also do not mind getting the function directly. see
  517. // https://stackoverflow.com/q/38245898
  518. (function (n) { return _this.nodeFilter(n); }),
  519. // @ts-ignore: error TS2554: Expected 1-3 arguments, but got 4.
  520. false);
  521. // `nextNode` is called so we skip the root `DocumentFragment`.
  522. var currentNode = treeWalker.nextNode();
  523. // We create a root element to attach all the children of the body to. We
  524. // use div as it as a semantic-free, generic container and does not
  525. // represent anything. This is removed when we serialize the tree back
  526. // into a string.
  527. var sanitizedFragment = document.createDocumentFragment();
  528. var sanitizedParent = sanitizedFragment;
  529. while (currentNode !== null) {
  530. var sanitizedNode = void 0;
  531. if ((0, no_clobber_1.isText)(currentNode)) {
  532. sanitizedNode = this.sanitizeTextNode(currentNode);
  533. }
  534. else if ((0, no_clobber_1.isElement)(currentNode)) {
  535. sanitizedNode = this.sanitizeElementNode(currentNode);
  536. }
  537. else {
  538. throw new Error('Node is not of type text or element');
  539. }
  540. sanitizedParent.appendChild(sanitizedNode);
  541. // Advance iterator while keeping track of the sanitized parent for the
  542. // current node
  543. currentNode = treeWalker.firstChild();
  544. if (currentNode) {
  545. sanitizedParent = sanitizedNode;
  546. }
  547. else {
  548. while (!(currentNode = treeWalker.nextSibling())) {
  549. if (!(currentNode = treeWalker.parentNode())) {
  550. break;
  551. }
  552. sanitizedParent = sanitizedParent.parentNode;
  553. }
  554. }
  555. }
  556. return sanitizedFragment;
  557. };
  558. HtmlSanitizerImpl.prototype.sanitizeTextNode = function (textNode) {
  559. return document.createTextNode(textNode.data);
  560. };
  561. HtmlSanitizerImpl.prototype.sanitizeElementNode = function (elementNode) {
  562. var e_1, _a;
  563. var elementName = (0, no_clobber_1.getNodeName)(elementNode);
  564. var newNode = document.createElement(elementName);
  565. var dirtyAttributes = elementNode.attributes;
  566. try {
  567. for (var dirtyAttributes_1 = __values(dirtyAttributes), dirtyAttributes_1_1 = dirtyAttributes_1.next(); !dirtyAttributes_1_1.done; dirtyAttributes_1_1 = dirtyAttributes_1.next()) {
  568. var _b = dirtyAttributes_1_1.value, name_1 = _b.name, value = _b.value;
  569. var policy = this.sanitizerTable.getAttributePolicy(name_1, elementName);
  570. if (!this.satisfiesAllConditions(policy.conditions, dirtyAttributes)) {
  571. this.recordChange("Not all conditions satisfied for attribute: ".concat(name_1, "."));
  572. continue;
  573. }
  574. switch (policy.policyAction) {
  575. case sanitizer_table_1.AttributePolicyAction.KEEP:
  576. newNode.setAttribute(name_1, value);
  577. break;
  578. case sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_URL:
  579. var sanitizedAttrUrl = (0, url_sanitizer_1.restrictivelySanitizeUrl)(value);
  580. if (sanitizedAttrUrl !== value) {
  581. this.recordChange("Url in attribute ".concat(name_1, " was modified during sanitization. Original url:\"").concat(value, "\" was sanitized to: \"").concat(sanitizedAttrUrl, "\""));
  582. }
  583. newNode.setAttribute(name_1, sanitizedAttrUrl);
  584. break;
  585. case sanitizer_table_1.AttributePolicyAction.KEEP_AND_NORMALIZE:
  586. // We don't consider changing the case of an attribute value to be a
  587. // semantic change
  588. newNode.setAttribute(name_1, value.toLowerCase());
  589. break;
  590. case sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_STYLE:
  591. newNode.setAttribute(name_1, value);
  592. break;
  593. case sanitizer_table_1.AttributePolicyAction.DROP:
  594. this.recordChange("Attribute: ".concat(name_1, " was dropped"));
  595. break;
  596. default:
  597. checkExhaustive(policy.policyAction, 'Unhandled AttributePolicyAction case');
  598. }
  599. }
  600. }
  601. catch (e_1_1) { e_1 = { error: e_1_1 }; }
  602. finally {
  603. try {
  604. if (dirtyAttributes_1_1 && !dirtyAttributes_1_1.done && (_a = dirtyAttributes_1.return)) _a.call(dirtyAttributes_1);
  605. }
  606. finally { if (e_1) throw e_1.error; }
  607. }
  608. return newNode;
  609. };
  610. HtmlSanitizerImpl.prototype.nodeFilter = function (node) {
  611. if ((0, no_clobber_1.isText)(node)) {
  612. return NodeFilter.FILTER_ACCEPT;
  613. }
  614. else if (!(0, no_clobber_1.isElement)(node)) {
  615. // Getting a node that is neither an `Element` or a `Text` node. This is
  616. // likely due to something that is not supposed to be an element in user
  617. // code but recognized as such by the TreeWalker (e.g. a polyfill for
  618. // other kind of nodes). Since we can't recognize it as an element, we
  619. // drop the node, but we don't record it as a meaningful change.
  620. return NodeFilter.FILTER_REJECT;
  621. }
  622. var nodeName = (0, no_clobber_1.getNodeName)(node);
  623. if (nodeName === null) {
  624. this.recordChange("Node name was null for node: ".concat(node));
  625. return NodeFilter.FILTER_REJECT;
  626. }
  627. if (this.sanitizerTable.isAllowedElement(nodeName)) {
  628. return NodeFilter.FILTER_ACCEPT;
  629. }
  630. this.recordChange("Element: ".concat(nodeName, " was dropped"));
  631. return NodeFilter.FILTER_REJECT;
  632. };
  633. HtmlSanitizerImpl.prototype.recordChange = function (errorMessage) {
  634. if (true) {
  635. this.changes.push(errorMessage);
  636. }
  637. else {}
  638. };
  639. HtmlSanitizerImpl.prototype.satisfiesAllConditions = function (conditions, attrs) {
  640. var e_2, _a;
  641. var _b;
  642. if (!conditions) {
  643. return true;
  644. }
  645. try {
  646. for (var conditions_1 = __values(conditions), conditions_1_1 = conditions_1.next(); !conditions_1_1.done; conditions_1_1 = conditions_1.next()) {
  647. var _c = __read(conditions_1_1.value, 2), attrName = _c[0], expectedValues = _c[1];
  648. var value = (_b = attrs.getNamedItem(attrName)) === null || _b === void 0 ? void 0 : _b.value;
  649. if (value && !expectedValues.has(value)) {
  650. return false;
  651. }
  652. }
  653. }
  654. catch (e_2_1) { e_2 = { error: e_2_1 }; }
  655. finally {
  656. try {
  657. if (conditions_1_1 && !conditions_1_1.done && (_a = conditions_1.return)) _a.call(conditions_1);
  658. }
  659. finally { if (e_2) throw e_2.error; }
  660. }
  661. return true;
  662. };
  663. return HtmlSanitizerImpl;
  664. }());
  665. exports.HtmlSanitizerImpl = HtmlSanitizerImpl;
  666. var defaultHtmlSanitizer =
  667. /* #__PURE__ */ (function () { return new HtmlSanitizerImpl(default_sanitizer_table_1.defaultSanitizerTable, secrets_1.secretToken); })();
  668. /** Sanitizes untrusted html using the default sanitizer configuration. */
  669. function sanitizeHtml(html) {
  670. return defaultHtmlSanitizer.sanitize(html);
  671. }
  672. exports.sanitizeHtml = sanitizeHtml;
  673. /**
  674. * Sanitizes untrusted html using the default sanitizer configuration. Throws
  675. * an error if the html was changed.
  676. */
  677. function sanitizeHtmlAssertUnchanged(html) {
  678. return defaultHtmlSanitizer.sanitizeAssertUnchanged(html);
  679. }
  680. exports.sanitizeHtmlAssertUnchanged = sanitizeHtmlAssertUnchanged;
  681. /**
  682. * Sanitizes untrusted html using the default sanitizer configuration. Throws
  683. * an error if the html was changed.
  684. */
  685. function sanitizeHtmlToFragment(html) {
  686. return defaultHtmlSanitizer.sanitizeToFragment(html);
  687. }
  688. exports.sanitizeHtmlToFragment = sanitizeHtmlToFragment;
  689. function checkExhaustive(value, msg) {
  690. if (msg === void 0) { msg = "unexpected value ".concat(value, "!"); }
  691. throw new Error(msg);
  692. }
  693. /***/ }),
  694. /***/ "./node_modules/safevalues/builders/html_sanitizer/html_sanitizer_builder.js":
  695. /*!***********************************************************************************!*\
  696. !*** ./node_modules/safevalues/builders/html_sanitizer/html_sanitizer_builder.js ***!
  697. \***********************************************************************************/
  698. /*! no static exports found */
  699. /***/ (function(module, exports, __webpack_require__) {
  700. "use strict";
  701. /**
  702. * @license
  703. * SPDX-License-Identifier: Apache-2.0
  704. */
  705. var __values = (this && this.__values) || function(o) {
  706. var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
  707. if (m) return m.call(o);
  708. if (o && typeof o.length === "number") return {
  709. next: function () {
  710. if (o && i >= o.length) o = void 0;
  711. return { value: o && o[i++], done: !o };
  712. }
  713. };
  714. throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
  715. };
  716. var __read = (this && this.__read) || function (o, n) {
  717. var m = typeof Symbol === "function" && o[Symbol.iterator];
  718. if (!m) return o;
  719. var i = m.call(o), r, ar = [], e;
  720. try {
  721. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
  722. }
  723. catch (error) { e = { error: error }; }
  724. finally {
  725. try {
  726. if (r && !r.done && (m = i["return"])) m.call(i);
  727. }
  728. finally { if (e) throw e.error; }
  729. }
  730. return ar;
  731. };
  732. Object.defineProperty(exports, "__esModule", { value: true });
  733. exports.HtmlSanitizerBuilder = void 0;
  734. var secrets_1 = __webpack_require__(/*! ../../internals/secrets */ "./node_modules/safevalues/internals/secrets.js");
  735. var html_sanitizer_1 = __webpack_require__(/*! ./html_sanitizer */ "./node_modules/safevalues/builders/html_sanitizer/html_sanitizer.js");
  736. var default_sanitizer_table_1 = __webpack_require__(/*! ./sanitizer_table/default_sanitizer_table */ "./node_modules/safevalues/builders/html_sanitizer/sanitizer_table/default_sanitizer_table.js");
  737. var sanitizer_table_1 = __webpack_require__(/*! ./sanitizer_table/sanitizer_table */ "./node_modules/safevalues/builders/html_sanitizer/sanitizer_table/sanitizer_table.js");
  738. /** This class allows modifications to the default sanitizer configuration. */
  739. var HtmlSanitizerBuilder = /** @class */ (function () {
  740. function HtmlSanitizerBuilder() {
  741. // To denote if the builder has called build() and therefore should make no
  742. // further changes to the sanitizer table.
  743. this.calledBuild = false;
  744. this.sanitizerTable = default_sanitizer_table_1.defaultSanitizerTable;
  745. }
  746. /** Builder option to restrict allowed elements to a smaller subset. */
  747. HtmlSanitizerBuilder.prototype.onlyAllowElements = function (elementSet) {
  748. var e_1, _a;
  749. var allowedElements = new Set();
  750. var allowedElementPolicies = new Map();
  751. try {
  752. for (var elementSet_1 = __values(elementSet), elementSet_1_1 = elementSet_1.next(); !elementSet_1_1.done; elementSet_1_1 = elementSet_1.next()) {
  753. var element = elementSet_1_1.value;
  754. element = element.toUpperCase();
  755. if (!this.sanitizerTable.isAllowedElement(element)) {
  756. throw new Error("Element: ".concat(element, ", is not allowed by html5_contract.textpb"));
  757. }
  758. var elementPolicy = this.sanitizerTable.elementPolicies.get(element);
  759. if (elementPolicy !== undefined) {
  760. allowedElementPolicies.set(element, elementPolicy);
  761. }
  762. else {
  763. allowedElements.add(element);
  764. }
  765. }
  766. }
  767. catch (e_1_1) { e_1 = { error: e_1_1 }; }
  768. finally {
  769. try {
  770. if (elementSet_1_1 && !elementSet_1_1.done && (_a = elementSet_1.return)) _a.call(elementSet_1);
  771. }
  772. finally { if (e_1) throw e_1.error; }
  773. }
  774. this.sanitizerTable = new sanitizer_table_1.SanitizerTable(allowedElements, allowedElementPolicies, this.sanitizerTable.allowedGlobalAttributes, this.sanitizerTable.globalAttributePolicies);
  775. return this;
  776. };
  777. /**
  778. * Builder option to restrict allowed attributes to a smaller subset.
  779. *
  780. * If the attribute isn't currently allowed then it won't be added.
  781. */
  782. HtmlSanitizerBuilder.prototype.onlyAllowAttributes = function (attributeSet) {
  783. var e_2, _a, e_3, _b, e_4, _c;
  784. var allowedGlobalAttributes = new Set();
  785. var globalAttributePolicies = new Map();
  786. var elementPolicies = new Map();
  787. try {
  788. for (var attributeSet_1 = __values(attributeSet), attributeSet_1_1 = attributeSet_1.next(); !attributeSet_1_1.done; attributeSet_1_1 = attributeSet_1.next()) {
  789. var attribute = attributeSet_1_1.value;
  790. if (this.sanitizerTable.allowedGlobalAttributes.has(attribute)) {
  791. allowedGlobalAttributes.add(attribute);
  792. }
  793. if (this.sanitizerTable.globalAttributePolicies.has(attribute)) {
  794. globalAttributePolicies.set(attribute, this.sanitizerTable.globalAttributePolicies.get(attribute));
  795. }
  796. }
  797. }
  798. catch (e_2_1) { e_2 = { error: e_2_1 }; }
  799. finally {
  800. try {
  801. if (attributeSet_1_1 && !attributeSet_1_1.done && (_a = attributeSet_1.return)) _a.call(attributeSet_1);
  802. }
  803. finally { if (e_2) throw e_2.error; }
  804. }
  805. try {
  806. for (var _d = __values(this.sanitizerTable
  807. .elementPolicies.entries()), _e = _d.next(); !_e.done; _e = _d.next()) {
  808. var _f = __read(_e.value, 2), elementName = _f[0], originalElementPolicy = _f[1];
  809. var newElementPolicy = new Map();
  810. try {
  811. for (var _g = (e_4 = void 0, __values(originalElementPolicy
  812. .entries())), _h = _g.next(); !_h.done; _h = _g.next()) {
  813. var _j = __read(_h.value, 2), attribute = _j[0], attributePolicy = _j[1];
  814. if (attributeSet.has(attribute)) {
  815. newElementPolicy.set(attribute, attributePolicy);
  816. }
  817. }
  818. }
  819. catch (e_4_1) { e_4 = { error: e_4_1 }; }
  820. finally {
  821. try {
  822. if (_h && !_h.done && (_c = _g.return)) _c.call(_g);
  823. }
  824. finally { if (e_4) throw e_4.error; }
  825. }
  826. elementPolicies.set(elementName, newElementPolicy);
  827. }
  828. }
  829. catch (e_3_1) { e_3 = { error: e_3_1 }; }
  830. finally {
  831. try {
  832. if (_e && !_e.done && (_b = _d.return)) _b.call(_d);
  833. }
  834. finally { if (e_3) throw e_3.error; }
  835. }
  836. this.sanitizerTable = new sanitizer_table_1.SanitizerTable(this.sanitizerTable.allowedElements, elementPolicies, allowedGlobalAttributes, globalAttributePolicies);
  837. return this;
  838. };
  839. /**
  840. * Allows the set of data attributes passed.
  841. *
  842. * These values must be prefixed with "data-"
  843. *
  844. * If called with onlyAllowElements or onlyAllowAttributes, those methods must
  845. * be called first.
  846. */
  847. HtmlSanitizerBuilder.prototype.allowDataAttributes = function (attributes) {
  848. var e_5, _a;
  849. var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes);
  850. try {
  851. for (var attributes_1 = __values(attributes), attributes_1_1 = attributes_1.next(); !attributes_1_1.done; attributes_1_1 = attributes_1.next()) {
  852. var attribute = attributes_1_1.value;
  853. if (attribute.indexOf('data-') !== 0) {
  854. throw new Error("data attribute: ".concat(attribute, " does not begin with the prefix \"data-\""));
  855. }
  856. allowedGlobalAttributes.add(attribute);
  857. }
  858. }
  859. catch (e_5_1) { e_5 = { error: e_5_1 }; }
  860. finally {
  861. try {
  862. if (attributes_1_1 && !attributes_1_1.done && (_a = attributes_1.return)) _a.call(attributes_1);
  863. }
  864. finally { if (e_5) throw e_5.error; }
  865. }
  866. this.sanitizerTable = new sanitizer_table_1.SanitizerTable(this.sanitizerTable.allowedElements, this.sanitizerTable.elementPolicies, allowedGlobalAttributes, this.sanitizerTable.globalAttributePolicies);
  867. return this;
  868. };
  869. /**
  870. * Preserves style attributes. Note that the sanitizer won't parse and
  871. * sanitize the values but keep them as they are. In particular this means
  872. * that the code will be able to call functions that could do undesirable
  873. * things (e.g. `url` to trigger a network request), as well as any custom
  874. * properties or functions defined by the application.
  875. */
  876. HtmlSanitizerBuilder.prototype.allowStyleAttributes = function () {
  877. var globalAttributePolicies = new Map(this.sanitizerTable.globalAttributePolicies);
  878. globalAttributePolicies.set('style', { policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_STYLE });
  879. this.sanitizerTable = new sanitizer_table_1.SanitizerTable(this.sanitizerTable.allowedElements, this.sanitizerTable.elementPolicies, this.sanitizerTable.allowedGlobalAttributes, globalAttributePolicies);
  880. return this;
  881. };
  882. /**
  883. * Preserves the class attribute on all elements. This means contents can
  884. * adopt CSS styles from other page elements and possibly mask themselves as
  885. * legitimate UI elements, which can lead to phishing.
  886. */
  887. HtmlSanitizerBuilder.prototype.allowClassAttributes = function () {
  888. var globalAttributePolicies = new Map(this.sanitizerTable.globalAttributePolicies);
  889. globalAttributePolicies.set('class', { policyAction: sanitizer_table_1.AttributePolicyAction.KEEP });
  890. this.sanitizerTable = new sanitizer_table_1.SanitizerTable(this.sanitizerTable.allowedElements, this.sanitizerTable.elementPolicies, this.sanitizerTable.allowedGlobalAttributes, globalAttributePolicies);
  891. return this;
  892. };
  893. /**
  894. * Preserves id attributes. This carries moderate risk as it allows an
  895. * element to override other elements with the same ID.
  896. */
  897. HtmlSanitizerBuilder.prototype.allowIdAttributes = function () {
  898. var globalAttributePolicies = new Map(this.sanitizerTable.globalAttributePolicies);
  899. globalAttributePolicies.set('id', { policyAction: sanitizer_table_1.AttributePolicyAction.KEEP });
  900. this.sanitizerTable = new sanitizer_table_1.SanitizerTable(this.sanitizerTable.allowedElements, this.sanitizerTable.elementPolicies, this.sanitizerTable.allowedGlobalAttributes, globalAttributePolicies);
  901. return this;
  902. };
  903. HtmlSanitizerBuilder.prototype.build = function () {
  904. if (this.calledBuild) {
  905. throw new Error('this sanitizer has already called build');
  906. }
  907. this.calledBuild = true;
  908. return new html_sanitizer_1.HtmlSanitizerImpl(this.sanitizerTable, secrets_1.secretToken);
  909. };
  910. return HtmlSanitizerBuilder;
  911. }());
  912. exports.HtmlSanitizerBuilder = HtmlSanitizerBuilder;
  913. /***/ }),
  914. /***/ "./node_modules/safevalues/builders/html_sanitizer/inert_fragment.js":
  915. /*!***************************************************************************!*\
  916. !*** ./node_modules/safevalues/builders/html_sanitizer/inert_fragment.js ***!
  917. \***************************************************************************/
  918. /*! no static exports found */
  919. /***/ (function(module, exports, __webpack_require__) {
  920. "use strict";
  921. /**
  922. * @license
  923. * SPDX-License-Identifier: Apache-2.0
  924. */
  925. Object.defineProperty(exports, "__esModule", { value: true });
  926. exports.createInertFragment = void 0;
  927. var element_1 = __webpack_require__(/*! ../../dom/elements/element */ "./node_modules/safevalues/dom/elements/element.js");
  928. var html_impl_1 = __webpack_require__(/*! ../../internals/html_impl */ "./node_modules/safevalues/internals/html_impl.js");
  929. /**
  930. * Returns a fragment that contains the parsed HTML for `dirtyHtml` without
  931. * executing any of the potential payload.
  932. */
  933. function createInertFragment(dirtyHtml) {
  934. var template = document.createElement('template');
  935. // This call is only used to create an inert tree for the sanitizer to
  936. // further process and is never returned directly to the caller. We can't use
  937. // a reviewed conversion in order to avoid an import loop.
  938. var temporarySafeHtml = (0, html_impl_1.createHtml)(dirtyHtml);
  939. (0, element_1.setInnerHtml)(template, temporarySafeHtml);
  940. return template.content;
  941. }
  942. exports.createInertFragment = createInertFragment;
  943. /***/ }),
  944. /***/ "./node_modules/safevalues/builders/html_sanitizer/no_clobber.js":
  945. /*!***********************************************************************!*\
  946. !*** ./node_modules/safevalues/builders/html_sanitizer/no_clobber.js ***!
  947. \***********************************************************************/
  948. /*! no static exports found */
  949. /***/ (function(module, exports, __webpack_require__) {
  950. "use strict";
  951. /**
  952. * @license
  953. * SPDX-License-Identifier: Apache-2.0
  954. */
  955. Object.defineProperty(exports, "__esModule", { value: true });
  956. exports.isElement = exports.isText = exports.getNodeName = void 0;
  957. /**
  958. * Library that provides safe getters for different node properties and
  959. * checks for clobbering.
  960. */
  961. /** Gets a reasonable nodeName, even for clobbered nodes. */
  962. function getNodeName(node) {
  963. var nodeName = node.nodeName;
  964. // If the property is clobbered, assume it is an `HTMLFormElement`.
  965. return (typeof nodeName === 'string') ? nodeName : 'FORM';
  966. }
  967. exports.getNodeName = getNodeName;
  968. /** Returns true if the object passed is a Text node. */
  969. function isText(node) {
  970. // The property cannot get clobbered on Text nodes.
  971. return node.nodeType === Node.TEXT_NODE;
  972. }
  973. exports.isText = isText;
  974. /** Returns true if the object passed is an Element node. */
  975. function isElement(node) {
  976. var nodeType = node.nodeType;
  977. // If the property is clobbered, we can assume it is an `HTMLFormElement`, and
  978. // thus an `Element`.
  979. return (nodeType === Node.ELEMENT_NODE) || (typeof nodeType !== 'number');
  980. }
  981. exports.isElement = isElement;
  982. /***/ }),
  983. /***/ "./node_modules/safevalues/builders/html_sanitizer/sanitizer_table/default_sanitizer_table.js":
  984. /*!****************************************************************************************************!*\
  985. !*** ./node_modules/safevalues/builders/html_sanitizer/sanitizer_table/default_sanitizer_table.js ***!
  986. \****************************************************************************************************/
  987. /*! no static exports found */
  988. /***/ (function(module, exports, __webpack_require__) {
  989. "use strict";
  990. /**
  991. * @license
  992. * SPDX-License-Identifier: Apache-2.0
  993. */
  994. Object.defineProperty(exports, "__esModule", { value: true });
  995. exports.defaultSanitizerTable = void 0;
  996. var sanitizer_table_1 = __webpack_require__(/*! ./sanitizer_table */ "./node_modules/safevalues/builders/html_sanitizer/sanitizer_table/sanitizer_table.js");
  997. /**
  998. * GENERATED CODE, DO NOT MODIFY
  999. * This SanitizerTable was generated from the checked in html contract:
  1000. * webutil/html/types/codegen/html5_contract.textpb
  1001. *
  1002. * You can regenerate this file with:
  1003. * webutil/html/types/codegen/update_generated_source_files.sh
  1004. */
  1005. exports.defaultSanitizerTable = new sanitizer_table_1.SanitizerTable(new Set([
  1006. 'ARTICLE', 'SECTION', 'NAV', 'ASIDE', 'H1', 'H2',
  1007. 'H3', 'H4', 'H5', 'H6', 'HEADER', 'FOOTER',
  1008. 'ADDRESS', 'P', 'HR', 'PRE', 'BLOCKQUOTE', 'OL',
  1009. 'UL', 'LH', 'LI', 'DL', 'DT', 'DD',
  1010. 'FIGURE', 'FIGCAPTION', 'MAIN', 'DIV', 'EM', 'STRONG',
  1011. 'SMALL', 'S', 'CITE', 'Q', 'DFN', 'ABBR',
  1012. 'RUBY', 'RB', 'RT', 'RTC', 'RP', 'DATA',
  1013. 'TIME', 'CODE', 'VAR', 'SAMP', 'KBD', 'SUB',
  1014. 'SUP', 'I', 'B', 'U', 'MARK', 'BDI',
  1015. 'BDO', 'SPAN', 'BR', 'WBR', 'INS', 'DEL',
  1016. 'PICTURE', 'PARAM', 'TRACK', 'MAP', 'TABLE', 'CAPTION',
  1017. 'COLGROUP', 'COL', 'TBODY', 'THEAD', 'TFOOT', 'TR',
  1018. 'TD', 'TH', 'SELECT', 'DATALIST', 'OPTGROUP', 'OPTION',
  1019. 'OUTPUT', 'PROGRESS', 'METER', 'FIELDSET', 'LEGEND', 'DETAILS',
  1020. 'SUMMARY', 'MENU', 'DIALOG', 'SLOT', 'CANVAS', 'FONT',
  1021. 'CENTER',
  1022. ]), new Map([
  1023. [
  1024. 'A', new Map([
  1025. ['href', { policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_URL }],
  1026. ])
  1027. ],
  1028. [
  1029. 'AREA', new Map([
  1030. ['href', { policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_URL }],
  1031. ])
  1032. ],
  1033. [
  1034. 'LINK', new Map([
  1035. [
  1036. 'href', {
  1037. policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_URL,
  1038. conditions: new Map([[
  1039. 'rel', new Set([
  1040. 'alternate',
  1041. 'author',
  1042. 'bookmark',
  1043. 'canonical',
  1044. 'cite',
  1045. 'help',
  1046. 'icon',
  1047. 'license',
  1048. 'next',
  1049. 'prefetch',
  1050. 'dns-prefetch',
  1051. 'prerender',
  1052. 'preconnect',
  1053. 'preload',
  1054. 'prev',
  1055. 'search',
  1056. 'subresource',
  1057. ])
  1058. ]])
  1059. }
  1060. ],
  1061. ])
  1062. ],
  1063. [
  1064. 'SOURCE', new Map([
  1065. ['src', { policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_URL }],
  1066. ])
  1067. ],
  1068. [
  1069. 'IMG', new Map([
  1070. ['src', { policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_URL }],
  1071. ])
  1072. ],
  1073. [
  1074. 'VIDEO', new Map([
  1075. ['src', { policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_URL }],
  1076. ])
  1077. ],
  1078. [
  1079. 'AUDIO', new Map([
  1080. ['src', { policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_URL }],
  1081. ])
  1082. ],
  1083. ]), new Set([
  1084. 'title',
  1085. 'aria-atomic',
  1086. 'aria-autocomplete',
  1087. 'aria-busy',
  1088. 'aria-checked',
  1089. 'aria-current',
  1090. 'aria-disabled',
  1091. 'aria-dropeffect',
  1092. 'aria-expanded',
  1093. 'aria-haspopup',
  1094. 'aria-hidden',
  1095. 'aria-invalid',
  1096. 'aria-label',
  1097. 'aria-level',
  1098. 'aria-live',
  1099. 'aria-multiline',
  1100. 'aria-multiselectable',
  1101. 'aria-orientation',
  1102. 'aria-posinset',
  1103. 'aria-pressed',
  1104. 'aria-readonly',
  1105. 'aria-relevant',
  1106. 'aria-required',
  1107. 'aria-selected',
  1108. 'aria-setsize',
  1109. 'aria-sort',
  1110. 'aria-valuemax',
  1111. 'aria-valuemin',
  1112. 'aria-valuenow',
  1113. 'aria-valuetext',
  1114. 'alt',
  1115. 'align',
  1116. 'autocapitalize',
  1117. 'autocomplete',
  1118. 'autocorrect',
  1119. 'autofocus',
  1120. 'autoplay',
  1121. 'bgcolor',
  1122. 'border',
  1123. 'cellpadding',
  1124. 'cellspacing',
  1125. 'checked',
  1126. 'color',
  1127. 'cols',
  1128. 'colspan',
  1129. 'controls',
  1130. 'datetime',
  1131. 'disabled',
  1132. 'download',
  1133. 'draggable',
  1134. 'enctype',
  1135. 'face',
  1136. 'formenctype',
  1137. 'frameborder',
  1138. 'height',
  1139. 'hreflang',
  1140. 'hidden',
  1141. 'ismap',
  1142. 'label',
  1143. 'lang',
  1144. 'loop',
  1145. 'max',
  1146. 'maxlength',
  1147. 'media',
  1148. 'minlength',
  1149. 'min',
  1150. 'multiple',
  1151. 'muted',
  1152. 'nonce',
  1153. 'open',
  1154. 'placeholder',
  1155. 'preload',
  1156. 'rel',
  1157. 'required',
  1158. 'reversed',
  1159. 'role',
  1160. 'rows',
  1161. 'rowspan',
  1162. 'selected',
  1163. 'shape',
  1164. 'size',
  1165. 'sizes',
  1166. 'slot',
  1167. 'span',
  1168. 'spellcheck',
  1169. 'start',
  1170. 'step',
  1171. 'summary',
  1172. 'translate',
  1173. 'type',
  1174. 'valign',
  1175. 'value',
  1176. 'width',
  1177. 'wrap',
  1178. 'itemscope',
  1179. 'itemtype',
  1180. 'itemid',
  1181. 'itemprop',
  1182. 'itemref',
  1183. ]), new Map([
  1184. [
  1185. 'dir', {
  1186. policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_NORMALIZE,
  1187. conditions: new Map([[
  1188. 'dir', new Set([
  1189. 'auto',
  1190. 'ltr',
  1191. 'rtl',
  1192. ])
  1193. ]])
  1194. }
  1195. ],
  1196. [
  1197. 'async', {
  1198. policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_NORMALIZE,
  1199. conditions: new Map([[
  1200. 'async', new Set([
  1201. 'async',
  1202. ])
  1203. ]])
  1204. }
  1205. ],
  1206. ['cite', { policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_URL }],
  1207. [
  1208. 'loading', {
  1209. policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_NORMALIZE,
  1210. conditions: new Map([[
  1211. 'loading', new Set([
  1212. 'eager',
  1213. 'lazy',
  1214. ])
  1215. ]])
  1216. }
  1217. ],
  1218. ['poster', { policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_SANITIZE_URL }],
  1219. [
  1220. 'target', {
  1221. policyAction: sanitizer_table_1.AttributePolicyAction.KEEP_AND_NORMALIZE,
  1222. conditions: new Map([[
  1223. 'target', new Set([
  1224. '_self',
  1225. '_blank',
  1226. ])
  1227. ]])
  1228. }
  1229. ],
  1230. ]));
  1231. /***/ }),
  1232. /***/ "./node_modules/safevalues/builders/html_sanitizer/sanitizer_table/sanitizer_table.js":
  1233. /*!********************************************************************************************!*\
  1234. !*** ./node_modules/safevalues/builders/html_sanitizer/sanitizer_table/sanitizer_table.js ***!
  1235. \********************************************************************************************/
  1236. /*! no static exports found */
  1237. /***/ (function(module, exports, __webpack_require__) {
  1238. "use strict";
  1239. /**
  1240. * @license
  1241. * SPDX-License-Identifier: Apache-2.0
  1242. */
  1243. Object.defineProperty(exports, "__esModule", { value: true });
  1244. exports.AttributePolicyAction = exports.SanitizerTable = void 0;
  1245. /** Class for holding element and attribute policies used for sanitization. */
  1246. var SanitizerTable = /** @class */ (function () {
  1247. function SanitizerTable(allowedElements, elementPolicies, allowedGlobalAttributes, globalAttributePolicies) {
  1248. this.allowedElements = allowedElements;
  1249. this.elementPolicies = elementPolicies;
  1250. this.allowedGlobalAttributes = allowedGlobalAttributes;
  1251. this.globalAttributePolicies = globalAttributePolicies;
  1252. }
  1253. SanitizerTable.prototype.isAllowedElement = function (elementName) {
  1254. // Note: `HTMLFormElement`s are always dropped, supporting them is very
  1255. // costly because of the DOM clobberring they can cause. The additional code
  1256. // size required to properly work around DOM clobberring issues is large and
  1257. // shouldn't be put on every user of the sanitizer. Thoroughly review
  1258. // b/210975025 and the CLs linked there before you start allowing form
  1259. // elements.
  1260. return elementName.toLowerCase() !== 'form' &&
  1261. (this.allowedElements.has(elementName) ||
  1262. this.elementPolicies.has(elementName));
  1263. };
  1264. SanitizerTable.prototype.getAttributePolicy = function (attributeName, elementName) {
  1265. var elementPolicy = this.elementPolicies.get(elementName);
  1266. if (elementPolicy === null || elementPolicy === void 0 ? void 0 : elementPolicy.has(attributeName)) {
  1267. return elementPolicy.get(attributeName);
  1268. }
  1269. if (this.allowedGlobalAttributes.has(attributeName)) {
  1270. return { policyAction: AttributePolicyAction.KEEP };
  1271. }
  1272. var globalPolicy = this.globalAttributePolicies.get(attributeName);
  1273. return globalPolicy || { policyAction: AttributePolicyAction.DROP };
  1274. };
  1275. return SanitizerTable;
  1276. }());
  1277. exports.SanitizerTable = SanitizerTable;
  1278. /**
  1279. * Values derived from
  1280. * https://godoc.corp.google.com/pkg/google3/third_party/safehtml/sanitizer/policy#AttributePolicy
  1281. */
  1282. var AttributePolicyAction;
  1283. (function (AttributePolicyAction) {
  1284. AttributePolicyAction[AttributePolicyAction["DROP"] = 0] = "DROP";
  1285. AttributePolicyAction[AttributePolicyAction["KEEP"] = 1] = "KEEP";
  1286. AttributePolicyAction[AttributePolicyAction["KEEP_AND_SANITIZE_URL"] = 2] = "KEEP_AND_SANITIZE_URL";
  1287. AttributePolicyAction[AttributePolicyAction["KEEP_AND_NORMALIZE"] = 3] = "KEEP_AND_NORMALIZE";
  1288. AttributePolicyAction[AttributePolicyAction["KEEP_AND_SANITIZE_STYLE"] = 4] = "KEEP_AND_SANITIZE_STYLE";
  1289. })(AttributePolicyAction = exports.AttributePolicyAction || (exports.AttributePolicyAction = {}));
  1290. /***/ }),
  1291. /***/ "./node_modules/safevalues/builders/resource_url_builders.js":
  1292. /*!*******************************************************************!*\
  1293. !*** ./node_modules/safevalues/builders/resource_url_builders.js ***!
  1294. \*******************************************************************/
  1295. /*! no static exports found */
  1296. /***/ (function(module, exports, __webpack_require__) {
  1297. "use strict";
  1298. /**
  1299. * @license
  1300. * SPDX-License-Identifier: Apache-2.0
  1301. */
  1302. Object.defineProperty(exports, "__esModule", { value: true });
  1303. exports.blobUrlFromScript = exports.replaceFragment = exports.appendParams = exports.trustedResourceUrl = void 0;
  1304. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  1305. var resource_url_impl_1 = __webpack_require__(/*! ../internals/resource_url_impl */ "./node_modules/safevalues/internals/resource_url_impl.js");
  1306. var script_impl_1 = __webpack_require__(/*! ../internals/script_impl */ "./node_modules/safevalues/internals/script_impl.js");
  1307. var string_literal_1 = __webpack_require__(/*! ../internals/string_literal */ "./node_modules/safevalues/internals/string_literal.js");
  1308. /**
  1309. * Check whether the base url contains a valid origin,
  1310. *
  1311. * A string for an origin must contain only alphanumeric or any of the
  1312. * following: `-.:`, and must not be an IP address. Remember that, as per the
  1313. * documentation for TrustedResourceUrl, the origin must be trustworthy.
  1314. *
  1315. * @param base The base url that contains an origin.
  1316. */
  1317. function hasValidOrigin(base) {
  1318. if (!(/^https:\/\//.test(base) || /^\/\//.test(base))) {
  1319. return false;
  1320. }
  1321. var originStart = base.indexOf('//') + 2;
  1322. var originEnd = base.indexOf('/', originStart);
  1323. // If the base url only contains the prefix (e.g. //), or the slash
  1324. // for the origin is right after the prefix (e.g. ///), the origin is
  1325. // missing.
  1326. if (originEnd <= originStart) {
  1327. throw new Error("Can't interpolate data in a url's origin, " +
  1328. "Please make sure to fully specify the origin, terminated with '/'.");
  1329. }
  1330. var origin = base.substring(originStart, originEnd);
  1331. if (!/^[0-9a-z.:-]+$/i.test(origin)) {
  1332. throw new Error('The origin contains unsupported characters.');
  1333. }
  1334. if (!/^[^:]*(:[0-9]+)?$/i.test(origin)) {
  1335. throw new Error('Invalid port number.');
  1336. }
  1337. if (!/(^|\.)[a-z][^.]*$/i.test(origin)) {
  1338. throw new Error('The top-level domain must start with a letter.');
  1339. }
  1340. return true;
  1341. }
  1342. /**
  1343. * Check whether the base url contains a valid about url at its beginning.
  1344. *
  1345. * An about url is either exactly 'about:blank' or 'about:blank#<str>' where
  1346. * <str> can be an arbitrary string.
  1347. *
  1348. * @param base The base url.
  1349. */
  1350. function isValidAboutUrl(base) {
  1351. if (!/^about:blank/.test(base)) {
  1352. return false;
  1353. }
  1354. if (base !== 'about:blank' && !/^about:blank#/.test(base)) {
  1355. throw new Error('The about url is invalid.');
  1356. }
  1357. return true;
  1358. }
  1359. /**
  1360. * Check whether the base url contains a valid path start at its beginning.
  1361. *
  1362. * A valid path start is either a '/' or a '/' followed by at least one
  1363. * character that is not '/' or '\'.
  1364. *
  1365. * @param base The base url.
  1366. */
  1367. function isValidPathStart(base) {
  1368. if (!/^\//.test(base)) {
  1369. return false;
  1370. }
  1371. if ((base === '/') ||
  1372. (base.length > 1 && base[1] !== '/' && base[1] !== '\\')) {
  1373. return true;
  1374. }
  1375. throw new Error('The path start in the url is invalid.');
  1376. }
  1377. /**
  1378. * Builds TrustedResourceUrl from a template literal.
  1379. *
  1380. * This factory is a template literal tag function. It should be called with
  1381. * a template literal, with or without embedded expressions. For example,
  1382. * trustedResourceUrl`//example.com/${bar}`;
  1383. * or
  1384. * trustedResourceUrl`//example.com`;
  1385. *
  1386. * When this function is called with a template literal without any embedded
  1387. * expressions, the template string may contain anything as the whole URL is
  1388. * a compile-time string constant.
  1389. *
  1390. * When this function is called with a template literal that contains embedded
  1391. * expressions, the template must start with one of the following:
  1392. * - `https://<origin>/`
  1393. * - `//<origin>/`
  1394. * - `/<pathStart>`
  1395. * - `about:blank`
  1396. * - `data:`
  1397. *
  1398. * `<origin>` must contain only alphanumeric or any of the following: `-.:`.
  1399. * Remember that, as per the documentation for TrustedResourceUrl, the origin
  1400. * must be trustworthy. An origin of "example.com" could be set with this
  1401. * method, but would tie the security of your site to the security of
  1402. * example.com. Similarly, formats that potentially cover redirects hosted
  1403. * on a trusted origin are problematic, since that could lead to untrusted
  1404. * origins.
  1405. *
  1406. * `<pathStart>` is either an empty string, or a non empty string that does not
  1407. * start with '/' or '\'.
  1408. * In other words, `/<pathStart>` is either a '/' or a
  1409. * '/' followed by at least one character that is not '/' or '\'.
  1410. *
  1411. * `data:` (data URL) does not allow embedded expressions in the template
  1412. * literal input.
  1413. *
  1414. * All embedded expressions are URL encoded when they are interpolated. Do not
  1415. * embed expressions that are already URL encoded as they will be double encoded
  1416. * by the builder.
  1417. *
  1418. * @param templateObj This contains the literal part of the template literal.
  1419. * @param rest This represents the template's embedded expressions.
  1420. */
  1421. function trustedResourceUrl(templateObj) {
  1422. var rest = [];
  1423. for (var _i = 1; _i < arguments.length; _i++) {
  1424. rest[_i - 1] = arguments[_i];
  1425. }
  1426. // Check if templateObj is actually from a template literal.
  1427. if (true) {
  1428. (0, string_literal_1.assertIsTemplateObject)(templateObj, true, 'trustedResourceUrl is a template literal tag function and ' +
  1429. 'can only be called as such (e.g. trustedResourceUrl`/somepath.js`)');
  1430. }
  1431. if (rest.length === 0) {
  1432. return (0, resource_url_impl_1.createResourceUrl)(templateObj[0]);
  1433. }
  1434. var base = templateObj[0].toLowerCase();
  1435. if (true) {
  1436. if (/^data:/.test(base)) {
  1437. throw new Error('Data URLs cannot have expressions in the template literal input.');
  1438. }
  1439. if (!hasValidOrigin(base) && !isValidPathStart(base) &&
  1440. !isValidAboutUrl(base)) {
  1441. throw new Error('Trying to interpolate expressions in an unsupported url format.');
  1442. }
  1443. }
  1444. var urlParts = [templateObj[0]];
  1445. for (var i = 0; i < rest.length; i++) {
  1446. urlParts.push(encodeURIComponent(rest[i]));
  1447. urlParts.push(templateObj[i + 1]);
  1448. }
  1449. return (0, resource_url_impl_1.createResourceUrl)(urlParts.join(''));
  1450. }
  1451. exports.trustedResourceUrl = trustedResourceUrl;
  1452. /**
  1453. * Creates a new TrustedResourceUrl with params added to the URL's search
  1454. * parameters.
  1455. *
  1456. * @param params What to add to the URL. Parameters with value `null` or
  1457. * `undefined` are skipped. Both keys and values will be encoded. Do not pass
  1458. * pre-encoded values as this will result them being double encoded. If the
  1459. * value is an array then the same parameter is added for every element in the
  1460. * array.
  1461. */
  1462. function appendParams(trustedUrl, params) {
  1463. var url = (0, resource_url_impl_1.unwrapResourceUrl)(trustedUrl).toString();
  1464. if (/#/.test(url)) {
  1465. var message = '';
  1466. if (true) {
  1467. message = "Found a hash in url (".concat(url, "), appending not supported");
  1468. }
  1469. throw new Error(message);
  1470. }
  1471. var separator = /\?/.test(url) ? '&' : '?';
  1472. // for-of has a big polyfill.
  1473. // tslint:disable-next-line:ban-iterable-foreach
  1474. params.forEach(function (value, key) {
  1475. var values = (value instanceof Array) ? value : [value];
  1476. for (var i = 0; i < values.length; i++) {
  1477. var v = values[i];
  1478. if (v === null || v === undefined) {
  1479. continue;
  1480. }
  1481. url += separator + encodeURIComponent(key) + '=' +
  1482. encodeURIComponent(String(v));
  1483. separator = '&';
  1484. }
  1485. });
  1486. return (0, resource_url_impl_1.createResourceUrl)(url);
  1487. }
  1488. exports.appendParams = appendParams;
  1489. var BEFORE_FRAGMENT_REGEXP = /[^#]*/;
  1490. /**
  1491. * Creates a new TrustedResourceUrl based on an existing one but with the
  1492. * addition of a fragment (the part after `#`). If the URL already has a
  1493. * fragment, it is replaced with the new one.
  1494. * @param fragment The fragment to add to the URL, verbatim, without the leading
  1495. * `#`. No additional escaping is applied.
  1496. */
  1497. function replaceFragment(trustedUrl, fragment) {
  1498. var urlString = (0, resource_url_impl_1.unwrapResourceUrl)(trustedUrl).toString();
  1499. return (0, resource_url_impl_1.createResourceUrl)(BEFORE_FRAGMENT_REGEXP.exec(urlString)[0] + '#' + fragment);
  1500. }
  1501. exports.replaceFragment = replaceFragment;
  1502. /**
  1503. * Creates a `TrustedResourceUrl` by generating a `Blob` from a
  1504. * `SafeScript` and then calling `URL.createObjectURL` with that `Blob`.
  1505. *
  1506. * Caller must call `URL.revokeObjectUrl()` on the stringified url to
  1507. * release the underlying `Blob`.
  1508. */
  1509. function blobUrlFromScript(safeScript) {
  1510. var scriptContent = (0, script_impl_1.unwrapScript)(safeScript).toString();
  1511. var blob = new Blob([scriptContent], { type: 'text/javascript' });
  1512. return (0, resource_url_impl_1.createResourceUrl)(URL.createObjectURL(blob));
  1513. }
  1514. exports.blobUrlFromScript = blobUrlFromScript;
  1515. /***/ }),
  1516. /***/ "./node_modules/safevalues/builders/script_builders.js":
  1517. /*!*************************************************************!*\
  1518. !*** ./node_modules/safevalues/builders/script_builders.js ***!
  1519. \*************************************************************/
  1520. /*! no static exports found */
  1521. /***/ (function(module, exports, __webpack_require__) {
  1522. "use strict";
  1523. /**
  1524. * @license
  1525. * SPDX-License-Identifier: Apache-2.0
  1526. */
  1527. Object.defineProperty(exports, "__esModule", { value: true });
  1528. exports.safeScriptWithArgs = exports.scriptFromJson = exports.concatScripts = exports.safeScript = void 0;
  1529. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  1530. var script_impl_1 = __webpack_require__(/*! ../internals/script_impl */ "./node_modules/safevalues/internals/script_impl.js");
  1531. var string_literal_1 = __webpack_require__(/*! ../internals/string_literal */ "./node_modules/safevalues/internals/string_literal.js");
  1532. /**
  1533. * Creates a SafeScript object from a template literal (without any embedded
  1534. * expressions).
  1535. *
  1536. * This function is a template literal tag function. It should be called with
  1537. * a template literal that does not contain any expressions. For example,
  1538. * safeScript`foo`;
  1539. *
  1540. * @param templateObj This contains the literal part of the template literal.
  1541. */
  1542. function safeScript(templateObj) {
  1543. if (true) {
  1544. (0, string_literal_1.assertIsTemplateObject)(templateObj, false, 'safeScript is a template literal tag function ' +
  1545. 'that only accepts template literals without expressions. ' +
  1546. 'For example, safeScript`foo`;');
  1547. }
  1548. return (0, script_impl_1.createScript)(templateObj[0]);
  1549. }
  1550. exports.safeScript = safeScript;
  1551. /** Creates a `SafeScript` value by concatenating multiple `SafeScript`s. */
  1552. function concatScripts(scripts) {
  1553. return (0, script_impl_1.createScript)(scripts.map(script_impl_1.unwrapScript).join(''));
  1554. }
  1555. exports.concatScripts = concatScripts;
  1556. /**
  1557. * Converts a serializable value into JSON that is safe to interpolate into a
  1558. * script context. In particular it escapes < characters so that a value of
  1559. * "</script>" doesn't break out of the context.
  1560. * @param value The value to serialize.
  1561. */
  1562. function scriptFromJson(value) {
  1563. return (0, script_impl_1.createScript)(JSON.stringify(value).replace(/</g, '\\x3c'));
  1564. }
  1565. exports.scriptFromJson = scriptFromJson;
  1566. /**
  1567. * Creates a `SafeScript` object from a template literal (without any embedded
  1568. * expressions) along with additional arguments that the script should have
  1569. * access to. These arguments will be JSON-encoded and passed to the script as
  1570. * a function call.
  1571. * @example
  1572. * ```ts
  1573. * safeScriptWithArgs`function (name, props) {
  1574. * console.log(name + ' is ' + props.age);
  1575. * }`('Bob', { 'age': 42 })
  1576. * ```
  1577. * would return a `SafeScript` that represents the following code:
  1578. * ```js
  1579. * (function (name, props) {
  1580. * console.log(name + ' is ' + props.age);
  1581. * })("Bob",{"age":42})
  1582. * ```
  1583. * @note Be careful when passing objects as arguments, as unquoted property
  1584. * names may be changed during compilation.
  1585. * @param templateObj This contains the literal part of the template literal.
  1586. * @param emptyArgs Expressions that evaluate to the empty string to enable
  1587. * inline comments.
  1588. */
  1589. function safeScriptWithArgs(templateObj) {
  1590. var emptyArgs = [];
  1591. for (var _i = 1; _i < arguments.length; _i++) {
  1592. emptyArgs[_i - 1] = arguments[_i];
  1593. }
  1594. if (true) {
  1595. if (emptyArgs.some(function (a) { return a !== ''; })) {
  1596. throw new Error('safeScriptWithArgs only allows empty string expressions ' +
  1597. 'to enable inline comments.');
  1598. }
  1599. (0, string_literal_1.assertIsTemplateObject)(templateObj, true, 'safeScriptWithArgs is a template literal tag function ' +
  1600. 'that only accepts template literals. ' +
  1601. 'For example, safeScriptWithArgs`foo`;');
  1602. }
  1603. return function () {
  1604. var argValues = [];
  1605. for (var _i = 0; _i < arguments.length; _i++) {
  1606. argValues[_i] = arguments[_i];
  1607. }
  1608. var values = argValues.map(function (v) { return scriptFromJson(v).toString(); });
  1609. return (0, script_impl_1.createScript)("(".concat(templateObj.join(''), ")(").concat(values.join(','), ")"));
  1610. };
  1611. }
  1612. exports.safeScriptWithArgs = safeScriptWithArgs;
  1613. /***/ }),
  1614. /***/ "./node_modules/safevalues/builders/sensitive_attributes.js":
  1615. /*!******************************************************************!*\
  1616. !*** ./node_modules/safevalues/builders/sensitive_attributes.js ***!
  1617. \******************************************************************/
  1618. /*! no static exports found */
  1619. /***/ (function(module, exports, __webpack_require__) {
  1620. "use strict";
  1621. /**
  1622. * @license
  1623. * SPDX-License-Identifier: Apache-2.0
  1624. */
  1625. Object.defineProperty(exports, "__esModule", { value: true });
  1626. exports.SECURITY_SENSITIVE_ATTRIBUTES = void 0;
  1627. // AUTOGENERATED. DO NOT EDIT.
  1628. /**
  1629. * Security sensitive attribute names that should not be set through
  1630. * `setAttribute` or similar functions.
  1631. */
  1632. exports.SECURITY_SENSITIVE_ATTRIBUTES = [
  1633. 'href',
  1634. 'rel',
  1635. 'src',
  1636. 'srcdoc',
  1637. 'action',
  1638. 'formaction',
  1639. 'sandbox',
  1640. 'cite',
  1641. 'poster',
  1642. 'icon',
  1643. ];
  1644. /***/ }),
  1645. /***/ "./node_modules/safevalues/builders/style_builders.js":
  1646. /*!************************************************************!*\
  1647. !*** ./node_modules/safevalues/builders/style_builders.js ***!
  1648. \************************************************************/
  1649. /*! no static exports found */
  1650. /***/ (function(module, exports, __webpack_require__) {
  1651. "use strict";
  1652. /**
  1653. * @license
  1654. * SPDX-License-Identifier: Apache-2.0
  1655. */
  1656. Object.defineProperty(exports, "__esModule", { value: true });
  1657. exports.concatStyles = exports.safeStyle = void 0;
  1658. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  1659. var string_literal_1 = __webpack_require__(/*! ../internals/string_literal */ "./node_modules/safevalues/internals/string_literal.js");
  1660. var style_impl_1 = __webpack_require__(/*! ../internals/style_impl */ "./node_modules/safevalues/internals/style_impl.js");
  1661. /**
  1662. * Creates a SafeStyle object from a template literal (without any embedded
  1663. * expressions).
  1664. *
  1665. * ` style` should be in the format
  1666. * ` name: value; [name: value; ...]` and must not have any < or >
  1667. * characters in it. This is so that SafeStyle's contract is preserved,
  1668. * allowing the SafeStyle to correctly be interpreted as a sequence of CSS
  1669. * declarations and without affecting the syntactic structure of any
  1670. * surrounding CSS and HTML.
  1671. *
  1672. * This function is a template literal tag function. It should be called with
  1673. * a template literal that does not contain any expressions. For example,
  1674. * safeStyle`foo`;
  1675. * This function first checks if it is called with a literal template, and
  1676. * then performs basic sanity checks on the format of ` style`
  1677. * but does not constrain the format of ` name} and {@code value`, except
  1678. * for disallowing tag characters.
  1679. *
  1680. * @param templateObj This contains the literal part of the template literal.
  1681. */
  1682. function safeStyle(templateObj) {
  1683. if (true) {
  1684. (0, string_literal_1.assertIsTemplateObject)(templateObj, false, 'safeStyle is a template literal tag function ' +
  1685. 'that only accepts template literals without expressions. ' +
  1686. 'For example, safeStyle`foo`;');
  1687. }
  1688. var style = templateObj[0];
  1689. if (true) {
  1690. if (/[<>]/.test(style)) {
  1691. throw new Error('Forbidden characters in style string: ' + style);
  1692. }
  1693. if (!/;$/.test(style)) {
  1694. throw new Error('Style string does not end with ";": ' + style);
  1695. }
  1696. if (!/:/.test(style)) {
  1697. throw new Error('Style string should contain one or more ":": ' + style);
  1698. }
  1699. }
  1700. return (0, style_impl_1.createStyle)(style);
  1701. }
  1702. exports.safeStyle = safeStyle;
  1703. /** Creates a `SafeStyle` value by concatenating multiple `SafeStyle`s. */
  1704. function concatStyles(styles) {
  1705. return (0, style_impl_1.createStyle)(styles.map(style_impl_1.unwrapStyle).join(''));
  1706. }
  1707. exports.concatStyles = concatStyles;
  1708. /***/ }),
  1709. /***/ "./node_modules/safevalues/builders/style_sheet_builders.js":
  1710. /*!******************************************************************!*\
  1711. !*** ./node_modules/safevalues/builders/style_sheet_builders.js ***!
  1712. \******************************************************************/
  1713. /*! no static exports found */
  1714. /***/ (function(module, exports, __webpack_require__) {
  1715. "use strict";
  1716. /**
  1717. * @license
  1718. * SPDX-License-Identifier: Apache-2.0
  1719. */
  1720. Object.defineProperty(exports, "__esModule", { value: true });
  1721. exports.concatStyleSheets = exports.safeStyleSheet = void 0;
  1722. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  1723. var string_literal_1 = __webpack_require__(/*! ../internals/string_literal */ "./node_modules/safevalues/internals/string_literal.js");
  1724. var style_sheet_impl_1 = __webpack_require__(/*! ../internals/style_sheet_impl */ "./node_modules/safevalues/internals/style_sheet_impl.js");
  1725. /**
  1726. * Creates a SafeStyleSheet object from a template literal (without any
  1727. * embedded expressions).
  1728. *
  1729. * This function is a template literal tag function. It should be called with
  1730. * a template literal that does not contain any expressions. For example,
  1731. * safeStyleSheet`foo`;
  1732. * The argument must not have any < or > characters in it. This is so that
  1733. * SafeStyleSheet's contract is preserved, allowing the SafeStyleSheet to
  1734. * correctly be interpreted as a sequence of CSS declarations and without
  1735. * affecting the syntactic structure of any surrounding CSS and HTML.
  1736. *
  1737. * @param templateObj This contains the literal part of the template literal.
  1738. */
  1739. function safeStyleSheet(templateObj) {
  1740. if (true) {
  1741. (0, string_literal_1.assertIsTemplateObject)(templateObj, false, 'safeStyleSheet is a template literal tag ' +
  1742. 'function that only accepts template literals without ' +
  1743. 'expressions. For example, safeStyleSheet`foo`;');
  1744. }
  1745. var styleSheet = templateObj[0];
  1746. if (true) {
  1747. if (/[<>]/.test(styleSheet)) {
  1748. throw new Error('Forbidden characters in styleSheet string: ' + styleSheet);
  1749. }
  1750. }
  1751. return (0, style_sheet_impl_1.createStyleSheet)(styleSheet);
  1752. }
  1753. exports.safeStyleSheet = safeStyleSheet;
  1754. /**
  1755. * Creates a `SafeStyleSheet` value by concatenating multiple `SafeStyleSheet`s.
  1756. */
  1757. function concatStyleSheets(sheets) {
  1758. return (0, style_sheet_impl_1.createStyleSheet)(sheets.map(style_sheet_impl_1.unwrapStyleSheet).join(''));
  1759. }
  1760. exports.concatStyleSheets = concatStyleSheets;
  1761. /***/ }),
  1762. /***/ "./node_modules/safevalues/builders/url_sanitizer.js":
  1763. /*!***********************************************************!*\
  1764. !*** ./node_modules/safevalues/builders/url_sanitizer.js ***!
  1765. \***********************************************************/
  1766. /*! no static exports found */
  1767. /***/ (function(module, exports, __webpack_require__) {
  1768. "use strict";
  1769. /**
  1770. * @license
  1771. * SPDX-License-Identifier: Apache-2.0
  1772. */
  1773. Object.defineProperty(exports, "__esModule", { value: true });
  1774. exports.restrictivelySanitizeUrl = exports.unwrapUrlOrSanitize = exports.sanitizeJavascriptUrl = void 0;
  1775. /**
  1776. * @fileoverview Provides functions to enforce the SafeUrl contract at the sink
  1777. * level.
  1778. */
  1779. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  1780. function extractScheme(url) {
  1781. var parsedUrl;
  1782. try {
  1783. parsedUrl = new URL(url);
  1784. }
  1785. catch (e) {
  1786. // According to https://url.spec.whatwg.org/#constructors, the URL
  1787. // constructor with one parameter throws if `url` is not absolute. In this
  1788. // case, we are sure that no explicit scheme (javascript: ) is set.
  1789. // This can also be a URL parsing error, but in this case the URL won't be
  1790. // run anyway.
  1791. return 'https:';
  1792. }
  1793. return parsedUrl.protocol;
  1794. }
  1795. // We can't use an ES6 Set here because gws somehow depends on this code and
  1796. // doesn't want to pay the cost of a polyfill.
  1797. var ALLOWED_SCHEMES = ['data:', 'http:', 'https:', 'mailto:', 'ftp:'];
  1798. /**
  1799. * Checks that the URL scheme is not javascript.
  1800. * The URL parsing relies on the URL API in browsers that support it.
  1801. * @param url The URL to sanitize for a SafeUrl sink.
  1802. * @return undefined if url has a javascript: scheme, the original URL
  1803. * otherwise.
  1804. */
  1805. function sanitizeJavascriptUrl(url) {
  1806. var parsedScheme = extractScheme(url);
  1807. if (parsedScheme === 'javascript:') {
  1808. if (true) {
  1809. console.error("A URL with content '".concat(url, "' was sanitized away."));
  1810. }
  1811. return undefined;
  1812. }
  1813. return url;
  1814. }
  1815. exports.sanitizeJavascriptUrl = sanitizeJavascriptUrl;
  1816. /**
  1817. * Adapter to sanitize string URLs in DOM sink wrappers.
  1818. * @return undefined if the URL was sanitized.
  1819. */
  1820. function unwrapUrlOrSanitize(url) {
  1821. return sanitizeJavascriptUrl(url);
  1822. }
  1823. exports.unwrapUrlOrSanitize = unwrapUrlOrSanitize;
  1824. /**
  1825. * Sanitizes a URL restrictively.
  1826. * This sanitizer protects against XSS and potentially other uncommon and
  1827. * undesirable schemes that an attacker could use for e.g. phishing (tel:,
  1828. * callto: ssh: etc schemes). This sanitizer is primarily meant to be used by
  1829. * the HTML sanitizer.
  1830. */
  1831. function restrictivelySanitizeUrl(url) {
  1832. var parsedScheme = extractScheme(url);
  1833. if (parsedScheme !== undefined &&
  1834. ALLOWED_SCHEMES.indexOf(parsedScheme.toLowerCase()) !== -1) {
  1835. return url;
  1836. }
  1837. return 'about:invalid#zClosurez';
  1838. }
  1839. exports.restrictivelySanitizeUrl = restrictivelySanitizeUrl;
  1840. /***/ }),
  1841. /***/ "./node_modules/safevalues/dom/elements/anchor.js":
  1842. /*!********************************************************!*\
  1843. !*** ./node_modules/safevalues/dom/elements/anchor.js ***!
  1844. \********************************************************/
  1845. /*! no static exports found */
  1846. /***/ (function(module, exports, __webpack_require__) {
  1847. "use strict";
  1848. /**
  1849. * @license
  1850. * SPDX-License-Identifier: Apache-2.0
  1851. */
  1852. Object.defineProperty(exports, "__esModule", { value: true });
  1853. exports.setHref = void 0;
  1854. var url_sanitizer_1 = __webpack_require__(/*! ../../builders/url_sanitizer */ "./node_modules/safevalues/builders/url_sanitizer.js");
  1855. /**
  1856. * Sets the Href attribute from the given Url.
  1857. */
  1858. function setHref(anchor, url) {
  1859. var sanitizedUrl = (0, url_sanitizer_1.unwrapUrlOrSanitize)(url);
  1860. if (sanitizedUrl !== undefined) {
  1861. anchor.href = sanitizedUrl;
  1862. }
  1863. }
  1864. exports.setHref = setHref;
  1865. /***/ }),
  1866. /***/ "./node_modules/safevalues/dom/elements/area.js":
  1867. /*!******************************************************!*\
  1868. !*** ./node_modules/safevalues/dom/elements/area.js ***!
  1869. \******************************************************/
  1870. /*! no static exports found */
  1871. /***/ (function(module, exports, __webpack_require__) {
  1872. "use strict";
  1873. /**
  1874. * @license
  1875. * SPDX-License-Identifier: Apache-2.0
  1876. */
  1877. Object.defineProperty(exports, "__esModule", { value: true });
  1878. exports.setHref = void 0;
  1879. var url_sanitizer_1 = __webpack_require__(/*! ../../builders/url_sanitizer */ "./node_modules/safevalues/builders/url_sanitizer.js");
  1880. /**
  1881. * Sets the Href attribute from the given Url.
  1882. */
  1883. function setHref(area, url) {
  1884. var sanitizedUrl = (0, url_sanitizer_1.unwrapUrlOrSanitize)(url);
  1885. if (sanitizedUrl !== undefined) {
  1886. area.href = sanitizedUrl;
  1887. }
  1888. }
  1889. exports.setHref = setHref;
  1890. /***/ }),
  1891. /***/ "./node_modules/safevalues/dom/elements/button.js":
  1892. /*!********************************************************!*\
  1893. !*** ./node_modules/safevalues/dom/elements/button.js ***!
  1894. \********************************************************/
  1895. /*! no static exports found */
  1896. /***/ (function(module, exports, __webpack_require__) {
  1897. "use strict";
  1898. /**
  1899. * @license
  1900. * SPDX-License-Identifier: Apache-2.0
  1901. */
  1902. Object.defineProperty(exports, "__esModule", { value: true });
  1903. exports.setFormaction = void 0;
  1904. var url_sanitizer_1 = __webpack_require__(/*! ../../builders/url_sanitizer */ "./node_modules/safevalues/builders/url_sanitizer.js");
  1905. /**
  1906. * Sets the Formaction attribute from the given Url.
  1907. */
  1908. function setFormaction(button, url) {
  1909. var sanitizedUrl = (0, url_sanitizer_1.unwrapUrlOrSanitize)(url);
  1910. if (sanitizedUrl !== undefined) {
  1911. button.formAction = sanitizedUrl;
  1912. }
  1913. }
  1914. exports.setFormaction = setFormaction;
  1915. /***/ }),
  1916. /***/ "./node_modules/safevalues/dom/elements/element.js":
  1917. /*!*********************************************************!*\
  1918. !*** ./node_modules/safevalues/dom/elements/element.js ***!
  1919. \*********************************************************/
  1920. /*! no static exports found */
  1921. /***/ (function(module, exports, __webpack_require__) {
  1922. "use strict";
  1923. /**
  1924. * @license
  1925. * SPDX-License-Identifier: Apache-2.0
  1926. */
  1927. var __read = (this && this.__read) || function (o, n) {
  1928. var m = typeof Symbol === "function" && o[Symbol.iterator];
  1929. if (!m) return o;
  1930. var i = m.call(o), r, ar = [], e;
  1931. try {
  1932. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
  1933. }
  1934. catch (error) { e = { error: error }; }
  1935. finally {
  1936. try {
  1937. if (r && !r.done && (m = i["return"])) m.call(i);
  1938. }
  1939. finally { if (e) throw e.error; }
  1940. }
  1941. return ar;
  1942. };
  1943. var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
  1944. if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
  1945. if (ar || !(i in from)) {
  1946. if (!ar) ar = Array.prototype.slice.call(from, 0, i);
  1947. ar[i] = from[i];
  1948. }
  1949. }
  1950. return to.concat(ar || Array.prototype.slice.call(from));
  1951. };
  1952. Object.defineProperty(exports, "__esModule", { value: true });
  1953. exports.setPrefixedAttribute = exports.buildPrefixedAttributeSetter = exports.insertAdjacentHtml = exports.setCssText = exports.setOuterHtml = exports.setInnerHtml = void 0;
  1954. /**
  1955. * @fileoverview This contains safe wrappers for properties that aren't specific
  1956. * to one kind of HTMLElement (like innerHTML), plus other setters and functions
  1957. * that are not tied to elements (like location.href or Worker constructor).
  1958. */
  1959. var attribute_impl_1 = __webpack_require__(/*! ../../internals/attribute_impl */ "./node_modules/safevalues/internals/attribute_impl.js");
  1960. var html_impl_1 = __webpack_require__(/*! ../../internals/html_impl */ "./node_modules/safevalues/internals/html_impl.js");
  1961. var style_impl_1 = __webpack_require__(/*! ../../internals/style_impl */ "./node_modules/safevalues/internals/style_impl.js");
  1962. /**
  1963. * Safely set {@link Element.innerHTML} on a given ShadowRoot or Element which
  1964. * may not be a `<script>` element or a `<style>` element.
  1965. */
  1966. function setInnerHtml(elOrRoot, v) {
  1967. if (isElement(elOrRoot)) {
  1968. throwIfScriptOrStyle(elOrRoot);
  1969. }
  1970. elOrRoot.innerHTML = (0, html_impl_1.unwrapHtml)(v);
  1971. }
  1972. exports.setInnerHtml = setInnerHtml;
  1973. /**
  1974. * Safely set {@link Element.outerHTML} for the given Element.
  1975. */
  1976. function setOuterHtml(e, v) {
  1977. var parent = e.parentElement;
  1978. if (parent !== null) {
  1979. throwIfScriptOrStyle(parent);
  1980. }
  1981. e.outerHTML = (0, html_impl_1.unwrapHtml)(v);
  1982. }
  1983. exports.setOuterHtml = setOuterHtml;
  1984. /**
  1985. * Set `ElementCSSInlineStyle.cssText` for the given `ElementCSSInlineStyle`.
  1986. */
  1987. function setCssText(e, v) {
  1988. e.style.cssText = (0, style_impl_1.unwrapStyle)(v);
  1989. }
  1990. exports.setCssText = setCssText;
  1991. /**
  1992. * Safely call {@link Element.insertAdjacentHTML} for the given Element.
  1993. */
  1994. function insertAdjacentHtml(element, position, v) {
  1995. var tagContext = (position === 'beforebegin' || position === 'afterend') ?
  1996. element.parentElement :
  1997. element;
  1998. if (tagContext !== null) {
  1999. throwIfScriptOrStyle(tagContext);
  2000. }
  2001. element.insertAdjacentHTML(position, (0, html_impl_1.unwrapHtml)(v));
  2002. }
  2003. exports.insertAdjacentHtml = insertAdjacentHtml;
  2004. /**
  2005. * Given a set of known-to-be-safe prefixes (e.g., "data-", "aria-", "js"),
  2006. * return a setter function that allows you to set attributes on an element,
  2007. * as long as the names of the attributes to be set has one of the prefixes.
  2008. *
  2009. * The returned setter ensures that setting any dangerous attribute, e.g.,
  2010. * "src", "href" will cause an exception. This is intended to be used as the
  2011. * safe alterantive of `Element#setAttribute`, when applications need to set
  2012. * attributes that do not have security implications and do not have a
  2013. * corresponding DOM property.
  2014. */
  2015. function buildPrefixedAttributeSetter(prefix) {
  2016. var otherPrefixes = [];
  2017. for (var _i = 1; _i < arguments.length; _i++) {
  2018. otherPrefixes[_i - 1] = arguments[_i];
  2019. }
  2020. var prefixes = __spreadArray([prefix], __read(otherPrefixes), false);
  2021. return function (e, attr, value) {
  2022. setPrefixedAttribute(prefixes, e, attr, value);
  2023. };
  2024. }
  2025. exports.buildPrefixedAttributeSetter = buildPrefixedAttributeSetter;
  2026. /**
  2027. * The safe alternative to Element#setAttribute. The function takes a list of
  2028. * `SafeAttributePrefix`, making developer intention explicit. The attribute
  2029. * to be set must has one of the safe prefixes, otherwise the function throws
  2030. * an Error.
  2031. */
  2032. function setPrefixedAttribute(attrPrefixes, e, attr, value) {
  2033. if (attrPrefixes.length === 0) {
  2034. throw new Error('No prefixes are provided');
  2035. }
  2036. var prefixes = attrPrefixes.map(function (s) { return (0, attribute_impl_1.unwrapAttributePrefix)(s); });
  2037. var attrLower = attr.toLowerCase();
  2038. if (prefixes.every(function (p) { return attrLower.indexOf(p) !== 0; })) {
  2039. throw new Error("Attribute \"".concat(attr, "\" does not match any of the allowed prefixes."));
  2040. }
  2041. e.setAttribute(attr, value);
  2042. }
  2043. exports.setPrefixedAttribute = setPrefixedAttribute;
  2044. function throwIfScriptOrStyle(element) {
  2045. if (element.tagName.toLowerCase() === 'script') {
  2046. throw new Error('Use setTextContent with a SafeScript.');
  2047. }
  2048. else if (element.tagName.toLowerCase() === 'style') {
  2049. throw new Error('Use setTextContent with a SafeStyleSheet.');
  2050. }
  2051. }
  2052. function isElement(elOrRoot) {
  2053. return elOrRoot.tagName !== undefined;
  2054. }
  2055. /***/ }),
  2056. /***/ "./node_modules/safevalues/dom/elements/embed.js":
  2057. /*!*******************************************************!*\
  2058. !*** ./node_modules/safevalues/dom/elements/embed.js ***!
  2059. \*******************************************************/
  2060. /*! no static exports found */
  2061. /***/ (function(module, exports, __webpack_require__) {
  2062. "use strict";
  2063. /**
  2064. * @license
  2065. * SPDX-License-Identifier: Apache-2.0
  2066. */
  2067. Object.defineProperty(exports, "__esModule", { value: true });
  2068. exports.setSrc = void 0;
  2069. var resource_url_impl_1 = __webpack_require__(/*! ../../internals/resource_url_impl */ "./node_modules/safevalues/internals/resource_url_impl.js");
  2070. /**
  2071. * Sets the Src attribute from the given SafeUrl.
  2072. */
  2073. function setSrc(embedEl, url) {
  2074. embedEl.src = (0, resource_url_impl_1.unwrapResourceUrl)(url);
  2075. }
  2076. exports.setSrc = setSrc;
  2077. /***/ }),
  2078. /***/ "./node_modules/safevalues/dom/elements/form.js":
  2079. /*!******************************************************!*\
  2080. !*** ./node_modules/safevalues/dom/elements/form.js ***!
  2081. \******************************************************/
  2082. /*! no static exports found */
  2083. /***/ (function(module, exports, __webpack_require__) {
  2084. "use strict";
  2085. /**
  2086. * @license
  2087. * SPDX-License-Identifier: Apache-2.0
  2088. */
  2089. Object.defineProperty(exports, "__esModule", { value: true });
  2090. exports.setAction = void 0;
  2091. var url_sanitizer_1 = __webpack_require__(/*! ../../builders/url_sanitizer */ "./node_modules/safevalues/builders/url_sanitizer.js");
  2092. /**
  2093. * Sets the Action attribute from the given Url.
  2094. */
  2095. function setAction(form, url) {
  2096. var sanitizedUrl = (0, url_sanitizer_1.unwrapUrlOrSanitize)(url);
  2097. if (sanitizedUrl !== undefined) {
  2098. form.action = sanitizedUrl;
  2099. }
  2100. }
  2101. exports.setAction = setAction;
  2102. /***/ }),
  2103. /***/ "./node_modules/safevalues/dom/elements/iframe.js":
  2104. /*!********************************************************!*\
  2105. !*** ./node_modules/safevalues/dom/elements/iframe.js ***!
  2106. \********************************************************/
  2107. /*! no static exports found */
  2108. /***/ (function(module, exports, __webpack_require__) {
  2109. "use strict";
  2110. /**
  2111. * @license
  2112. * SPDX-License-Identifier: Apache-2.0
  2113. */
  2114. Object.defineProperty(exports, "__esModule", { value: true });
  2115. exports.setSrcdoc = exports.setSrc = void 0;
  2116. /**
  2117. * @fileoverview Safe iframe helpers and go/intents-for-iframes-for-closure
  2118. */
  2119. var html_impl_1 = __webpack_require__(/*! ../../internals/html_impl */ "./node_modules/safevalues/internals/html_impl.js");
  2120. var resource_url_impl_1 = __webpack_require__(/*! ../../internals/resource_url_impl */ "./node_modules/safevalues/internals/resource_url_impl.js");
  2121. /** Sets the Src attribute using a TrustedResourceUrl */
  2122. function setSrc(iframe, v) {
  2123. iframe.src = (0, resource_url_impl_1.unwrapResourceUrl)(v).toString();
  2124. }
  2125. exports.setSrc = setSrc;
  2126. /** Sets the Srcdoc attribute using a SafeHtml */
  2127. function setSrcdoc(iframe, v) {
  2128. iframe.srcdoc = (0, html_impl_1.unwrapHtml)(v);
  2129. }
  2130. exports.setSrcdoc = setSrcdoc;
  2131. /***/ }),
  2132. /***/ "./node_modules/safevalues/dom/elements/input.js":
  2133. /*!*******************************************************!*\
  2134. !*** ./node_modules/safevalues/dom/elements/input.js ***!
  2135. \*******************************************************/
  2136. /*! no static exports found */
  2137. /***/ (function(module, exports, __webpack_require__) {
  2138. "use strict";
  2139. /**
  2140. * @license
  2141. * SPDX-License-Identifier: Apache-2.0
  2142. */
  2143. Object.defineProperty(exports, "__esModule", { value: true });
  2144. exports.setFormaction = void 0;
  2145. var url_sanitizer_1 = __webpack_require__(/*! ../../builders/url_sanitizer */ "./node_modules/safevalues/builders/url_sanitizer.js");
  2146. /**
  2147. * Sets the Formaction attribute from the given Url.
  2148. */
  2149. function setFormaction(input, url) {
  2150. var sanitizedUrl = (0, url_sanitizer_1.unwrapUrlOrSanitize)(url);
  2151. if (sanitizedUrl !== undefined) {
  2152. input.formAction = sanitizedUrl;
  2153. }
  2154. }
  2155. exports.setFormaction = setFormaction;
  2156. /***/ }),
  2157. /***/ "./node_modules/safevalues/dom/elements/link.js":
  2158. /*!******************************************************!*\
  2159. !*** ./node_modules/safevalues/dom/elements/link.js ***!
  2160. \******************************************************/
  2161. /*! no static exports found */
  2162. /***/ (function(module, exports, __webpack_require__) {
  2163. "use strict";
  2164. /**
  2165. * @license
  2166. * SPDX-License-Identifier: Apache-2.0
  2167. */
  2168. Object.defineProperty(exports, "__esModule", { value: true });
  2169. exports.setHrefAndRel = void 0;
  2170. var url_sanitizer_1 = __webpack_require__(/*! ../../builders/url_sanitizer */ "./node_modules/safevalues/builders/url_sanitizer.js");
  2171. var resource_url_impl_1 = __webpack_require__(/*! ../../internals/resource_url_impl */ "./node_modules/safevalues/internals/resource_url_impl.js");
  2172. var SAFE_URL_REL_VALUES = [
  2173. 'alternate',
  2174. 'author',
  2175. 'bookmark',
  2176. 'canonical',
  2177. 'cite',
  2178. 'help',
  2179. 'icon',
  2180. 'license',
  2181. 'next',
  2182. 'prefetch',
  2183. 'dns-prefetch',
  2184. 'prerender',
  2185. 'preconnect',
  2186. 'preload',
  2187. 'prev',
  2188. 'search',
  2189. 'subresource',
  2190. ];
  2191. function setHrefAndRel(link, url, rel) {
  2192. if (url instanceof resource_url_impl_1.TrustedResourceUrl) {
  2193. link.href = (0, resource_url_impl_1.unwrapResourceUrl)(url).toString();
  2194. }
  2195. else {
  2196. if (SAFE_URL_REL_VALUES.indexOf(rel) === -1) {
  2197. throw new Error("TrustedResourceUrl href attribute required with rel=\"".concat(rel, "\""));
  2198. }
  2199. var sanitizedUrl = (0, url_sanitizer_1.unwrapUrlOrSanitize)(url);
  2200. if (sanitizedUrl === undefined) {
  2201. return;
  2202. }
  2203. link.href = sanitizedUrl;
  2204. }
  2205. link.rel = rel;
  2206. }
  2207. exports.setHrefAndRel = setHrefAndRel;
  2208. /***/ }),
  2209. /***/ "./node_modules/safevalues/dom/elements/object.js":
  2210. /*!********************************************************!*\
  2211. !*** ./node_modules/safevalues/dom/elements/object.js ***!
  2212. \********************************************************/
  2213. /*! no static exports found */
  2214. /***/ (function(module, exports, __webpack_require__) {
  2215. "use strict";
  2216. /**
  2217. * @license
  2218. * SPDX-License-Identifier: Apache-2.0
  2219. */
  2220. Object.defineProperty(exports, "__esModule", { value: true });
  2221. exports.setData = void 0;
  2222. var resource_url_impl_1 = __webpack_require__(/*! ../../internals/resource_url_impl */ "./node_modules/safevalues/internals/resource_url_impl.js");
  2223. /** Sets the data attribute using a TrustedResourceUrl */
  2224. function setData(obj, v) {
  2225. obj.data = (0, resource_url_impl_1.unwrapResourceUrl)(v);
  2226. }
  2227. exports.setData = setData;
  2228. /***/ }),
  2229. /***/ "./node_modules/safevalues/dom/elements/script.js":
  2230. /*!********************************************************!*\
  2231. !*** ./node_modules/safevalues/dom/elements/script.js ***!
  2232. \********************************************************/
  2233. /*! no static exports found */
  2234. /***/ (function(module, exports, __webpack_require__) {
  2235. "use strict";
  2236. /**
  2237. * @license
  2238. * SPDX-License-Identifier: Apache-2.0
  2239. */
  2240. Object.defineProperty(exports, "__esModule", { value: true });
  2241. exports.setSrc = exports.setTextContent = void 0;
  2242. var resource_url_impl_1 = __webpack_require__(/*! ../../internals/resource_url_impl */ "./node_modules/safevalues/internals/resource_url_impl.js");
  2243. var script_impl_1 = __webpack_require__(/*! ../../internals/script_impl */ "./node_modules/safevalues/internals/script_impl.js");
  2244. /** Returns CSP nonce, if set for any script tag. */
  2245. function getScriptNonceFromWindow(win) {
  2246. var _a;
  2247. var doc = win.document;
  2248. // document.querySelector can be undefined in non-browser environments.
  2249. var script = (_a = doc.querySelector) === null || _a === void 0 ? void 0 : _a.call(doc, 'script[nonce]');
  2250. if (script) {
  2251. // Try to get the nonce from the IDL property first, because browsers that
  2252. // implement additional nonce protection features (currently only Chrome) to
  2253. // prevent nonce stealing via CSS do not expose the nonce via attributes.
  2254. // See https://github.com/whatwg/html/issues/2369
  2255. return script['nonce'] || script.getAttribute('nonce') || '';
  2256. }
  2257. return '';
  2258. }
  2259. /** Propagates CSP nonce to dynamically created scripts. */
  2260. function setNonceForScriptElement(script) {
  2261. var win = script.ownerDocument && script.ownerDocument.defaultView;
  2262. var nonce = getScriptNonceFromWindow(win || window);
  2263. if (nonce) {
  2264. script.setAttribute('nonce', nonce);
  2265. }
  2266. }
  2267. /** Sets textContent from the given SafeScript. */
  2268. function setTextContent(script, v) {
  2269. script.textContent = (0, script_impl_1.unwrapScript)(v);
  2270. setNonceForScriptElement(script);
  2271. }
  2272. exports.setTextContent = setTextContent;
  2273. /** Sets the Src attribute using a TrustedResourceUrl */
  2274. function setSrc(script, v) {
  2275. script.src = (0, resource_url_impl_1.unwrapResourceUrl)(v);
  2276. setNonceForScriptElement(script);
  2277. }
  2278. exports.setSrc = setSrc;
  2279. /***/ }),
  2280. /***/ "./node_modules/safevalues/dom/elements/style.js":
  2281. /*!*******************************************************!*\
  2282. !*** ./node_modules/safevalues/dom/elements/style.js ***!
  2283. \*******************************************************/
  2284. /*! no static exports found */
  2285. /***/ (function(module, exports, __webpack_require__) {
  2286. "use strict";
  2287. /**
  2288. * @license
  2289. * SPDX-License-Identifier: Apache-2.0
  2290. */
  2291. Object.defineProperty(exports, "__esModule", { value: true });
  2292. exports.setTextContent = void 0;
  2293. var style_sheet_impl_1 = __webpack_require__(/*! ../../internals/style_sheet_impl */ "./node_modules/safevalues/internals/style_sheet_impl.js");
  2294. /** Safe setters for `HTMLStyleElement`s. */
  2295. function setTextContent(elem, safeStyleSheet) {
  2296. elem.textContent = (0, style_sheet_impl_1.unwrapStyleSheet)(safeStyleSheet);
  2297. }
  2298. exports.setTextContent = setTextContent;
  2299. /***/ }),
  2300. /***/ "./node_modules/safevalues/dom/globals/document.js":
  2301. /*!*********************************************************!*\
  2302. !*** ./node_modules/safevalues/dom/globals/document.js ***!
  2303. \*********************************************************/
  2304. /*! no static exports found */
  2305. /***/ (function(module, exports, __webpack_require__) {
  2306. "use strict";
  2307. /**
  2308. * @license
  2309. * SPDX-License-Identifier: Apache-2.0
  2310. */
  2311. Object.defineProperty(exports, "__esModule", { value: true });
  2312. exports.execCommandInsertHtml = exports.execCommand = exports.write = void 0;
  2313. var html_impl_1 = __webpack_require__(/*! ../../internals/html_impl */ "./node_modules/safevalues/internals/html_impl.js");
  2314. /**
  2315. * write safely calls {@link Document.write} on the given {@link Document} with
  2316. * the given {@link SafeHtml}.
  2317. */
  2318. function write(doc, text) {
  2319. doc.write((0, html_impl_1.unwrapHtml)(text));
  2320. }
  2321. exports.write = write;
  2322. /**
  2323. * Safely calls {@link Document.execCommand}. When command is insertHtml, a
  2324. * SafeHtml must be passed in as value.
  2325. */
  2326. function execCommand(doc, command, value) {
  2327. var commandString = String(command);
  2328. var valueArgument = value;
  2329. if (commandString.toLowerCase() === 'inserthtml') {
  2330. valueArgument = (0, html_impl_1.unwrapHtml)(value);
  2331. }
  2332. return doc.execCommand(commandString, /* showUi= */ false, valueArgument);
  2333. }
  2334. exports.execCommand = execCommand;
  2335. /**
  2336. * Safely calls {@link Document.execCommand}('insertHtml').
  2337. * @deprecated Use safeDocument.execCommand.
  2338. */
  2339. function execCommandInsertHtml(doc, html) {
  2340. return doc.execCommand('insertHTML', /* showUi= */ false, (0, html_impl_1.unwrapHtml)(html));
  2341. }
  2342. exports.execCommandInsertHtml = execCommandInsertHtml;
  2343. /***/ }),
  2344. /***/ "./node_modules/safevalues/dom/globals/dom_parser.js":
  2345. /*!***********************************************************!*\
  2346. !*** ./node_modules/safevalues/dom/globals/dom_parser.js ***!
  2347. \***********************************************************/
  2348. /*! no static exports found */
  2349. /***/ (function(module, exports, __webpack_require__) {
  2350. "use strict";
  2351. /**
  2352. * @license
  2353. * SPDX-License-Identifier: Apache-2.0
  2354. */
  2355. Object.defineProperty(exports, "__esModule", { value: true });
  2356. exports.parseFromString = exports.parseHtml = void 0;
  2357. var html_impl_1 = __webpack_require__(/*! ../../internals/html_impl */ "./node_modules/safevalues/internals/html_impl.js");
  2358. /** Safely parses a string using the HTML parser. */
  2359. function parseHtml(parser, html) {
  2360. return parseFromString(parser, html, 'text/html');
  2361. }
  2362. exports.parseHtml = parseHtml;
  2363. /** Safely parses a string using the HTML or XML parser. */
  2364. function parseFromString(parser, content, contentType) {
  2365. return parser.parseFromString((0, html_impl_1.unwrapHtml)(content), contentType);
  2366. }
  2367. exports.parseFromString = parseFromString;
  2368. /***/ }),
  2369. /***/ "./node_modules/safevalues/dom/globals/global.js":
  2370. /*!*******************************************************!*\
  2371. !*** ./node_modules/safevalues/dom/globals/global.js ***!
  2372. \*******************************************************/
  2373. /*! no static exports found */
  2374. /***/ (function(module, exports, __webpack_require__) {
  2375. "use strict";
  2376. /**
  2377. * @license
  2378. * SPDX-License-Identifier: Apache-2.0
  2379. */
  2380. Object.defineProperty(exports, "__esModule", { value: true });
  2381. exports.globalEval = void 0;
  2382. var script_impl_1 = __webpack_require__(/*! ../../internals/script_impl */ "./node_modules/safevalues/internals/script_impl.js");
  2383. /**
  2384. * Evaluates a SafeScript value in the given scope using eval.
  2385. *
  2386. * Strongly consider avoiding this, as eval blocks CSP adoption and does not
  2387. * benefit from compiler optimizations.
  2388. */
  2389. function globalEval(win, script) {
  2390. var trustedScript = (0, script_impl_1.unwrapScript)(script);
  2391. var result = win.eval(trustedScript);
  2392. if (result === trustedScript) {
  2393. // https://crbug.com/1024786 manifesting in workers.
  2394. result = win.eval(trustedScript.toString());
  2395. }
  2396. return result;
  2397. }
  2398. exports.globalEval = globalEval;
  2399. /***/ }),
  2400. /***/ "./node_modules/safevalues/dom/globals/location.js":
  2401. /*!*********************************************************!*\
  2402. !*** ./node_modules/safevalues/dom/globals/location.js ***!
  2403. \*********************************************************/
  2404. /*! no static exports found */
  2405. /***/ (function(module, exports, __webpack_require__) {
  2406. "use strict";
  2407. /**
  2408. * @license
  2409. * SPDX-License-Identifier: Apache-2.0
  2410. */
  2411. Object.defineProperty(exports, "__esModule", { value: true });
  2412. exports.assign = exports.replace = exports.setHref = void 0;
  2413. var url_sanitizer_1 = __webpack_require__(/*! ../../builders/url_sanitizer */ "./node_modules/safevalues/builders/url_sanitizer.js");
  2414. /**
  2415. * setHref safely sets {@link Location.href} on the given {@link Location} with
  2416. * given {@link Url}.
  2417. */
  2418. function setHref(loc, url) {
  2419. var sanitizedUrl = (0, url_sanitizer_1.unwrapUrlOrSanitize)(url);
  2420. if (sanitizedUrl !== undefined) {
  2421. loc.href = sanitizedUrl;
  2422. }
  2423. }
  2424. exports.setHref = setHref;
  2425. /**
  2426. * replace safely calls {@link Location.replace} on the given {@link Location}
  2427. * with given {@link Url}.
  2428. */
  2429. function replace(loc, url) {
  2430. var sanitizedUrl = (0, url_sanitizer_1.unwrapUrlOrSanitize)(url);
  2431. if (sanitizedUrl !== undefined) {
  2432. loc.replace(sanitizedUrl);
  2433. }
  2434. }
  2435. exports.replace = replace;
  2436. /**
  2437. * assign safely calls {@link Location.assign} on the given {@link Location}
  2438. * with given {@link Url}.
  2439. */
  2440. function assign(loc, url) {
  2441. var sanitizedUrl = (0, url_sanitizer_1.unwrapUrlOrSanitize)(url);
  2442. if (sanitizedUrl !== undefined) {
  2443. loc.assign(sanitizedUrl);
  2444. }
  2445. }
  2446. exports.assign = assign;
  2447. /***/ }),
  2448. /***/ "./node_modules/safevalues/dom/globals/range.js":
  2449. /*!******************************************************!*\
  2450. !*** ./node_modules/safevalues/dom/globals/range.js ***!
  2451. \******************************************************/
  2452. /*! no static exports found */
  2453. /***/ (function(module, exports, __webpack_require__) {
  2454. "use strict";
  2455. /**
  2456. * @license
  2457. * SPDX-License-Identifier: Apache-2.0
  2458. */
  2459. Object.defineProperty(exports, "__esModule", { value: true });
  2460. exports.createContextualFragment = void 0;
  2461. var html_impl_1 = __webpack_require__(/*! ../../internals/html_impl */ "./node_modules/safevalues/internals/html_impl.js");
  2462. /** Safely creates a contextualFragment. */
  2463. function createContextualFragment(range, html) {
  2464. return range.createContextualFragment((0, html_impl_1.unwrapHtml)(html));
  2465. }
  2466. exports.createContextualFragment = createContextualFragment;
  2467. /***/ }),
  2468. /***/ "./node_modules/safevalues/dom/globals/service_worker_container.js":
  2469. /*!*************************************************************************!*\
  2470. !*** ./node_modules/safevalues/dom/globals/service_worker_container.js ***!
  2471. \*************************************************************************/
  2472. /*! no static exports found */
  2473. /***/ (function(module, exports, __webpack_require__) {
  2474. "use strict";
  2475. /**
  2476. * @license
  2477. * SPDX-License-Identifier: Apache-2.0
  2478. */
  2479. Object.defineProperty(exports, "__esModule", { value: true });
  2480. exports.register = void 0;
  2481. var resource_url_impl_1 = __webpack_require__(/*! ../../internals/resource_url_impl */ "./node_modules/safevalues/internals/resource_url_impl.js");
  2482. /** Safely registers a service worker by URL */
  2483. function register(container, scriptURL, options) {
  2484. return container.register((0, resource_url_impl_1.unwrapResourceUrl)(scriptURL), options);
  2485. }
  2486. exports.register = register;
  2487. /***/ }),
  2488. /***/ "./node_modules/safevalues/dom/globals/window.js":
  2489. /*!*******************************************************!*\
  2490. !*** ./node_modules/safevalues/dom/globals/window.js ***!
  2491. \*******************************************************/
  2492. /*! no static exports found */
  2493. /***/ (function(module, exports, __webpack_require__) {
  2494. "use strict";
  2495. /**
  2496. * @license
  2497. * SPDX-License-Identifier: Apache-2.0
  2498. */
  2499. Object.defineProperty(exports, "__esModule", { value: true });
  2500. exports.open = void 0;
  2501. var url_sanitizer_1 = __webpack_require__(/*! ../../builders/url_sanitizer */ "./node_modules/safevalues/builders/url_sanitizer.js");
  2502. /**
  2503. * open calls {@link Window.open} on the given {@link Window}, given a
  2504. * target {@link Url}.
  2505. */
  2506. function open(win, url, target, features) {
  2507. var sanitizedUrl = (0, url_sanitizer_1.unwrapUrlOrSanitize)(url);
  2508. if (sanitizedUrl !== undefined) {
  2509. return win.open(sanitizedUrl, target, features);
  2510. }
  2511. return null;
  2512. }
  2513. exports.open = open;
  2514. /***/ }),
  2515. /***/ "./node_modules/safevalues/dom/globals/worker.js":
  2516. /*!*******************************************************!*\
  2517. !*** ./node_modules/safevalues/dom/globals/worker.js ***!
  2518. \*******************************************************/
  2519. /*! no static exports found */
  2520. /***/ (function(module, exports, __webpack_require__) {
  2521. "use strict";
  2522. /**
  2523. * @license
  2524. * SPDX-License-Identifier: Apache-2.0
  2525. */
  2526. var __read = (this && this.__read) || function (o, n) {
  2527. var m = typeof Symbol === "function" && o[Symbol.iterator];
  2528. if (!m) return o;
  2529. var i = m.call(o), r, ar = [], e;
  2530. try {
  2531. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
  2532. }
  2533. catch (error) { e = { error: error }; }
  2534. finally {
  2535. try {
  2536. if (r && !r.done && (m = i["return"])) m.call(i);
  2537. }
  2538. finally { if (e) throw e.error; }
  2539. }
  2540. return ar;
  2541. };
  2542. var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
  2543. if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
  2544. if (ar || !(i in from)) {
  2545. if (!ar) ar = Array.prototype.slice.call(from, 0, i);
  2546. ar[i] = from[i];
  2547. }
  2548. }
  2549. return to.concat(ar || Array.prototype.slice.call(from));
  2550. };
  2551. Object.defineProperty(exports, "__esModule", { value: true });
  2552. exports.importScripts = exports.createShared = exports.create = void 0;
  2553. var resource_url_impl_1 = __webpack_require__(/*! ../../internals/resource_url_impl */ "./node_modules/safevalues/internals/resource_url_impl.js");
  2554. /**
  2555. * Safely creates a Web Worker.
  2556. *
  2557. * Example usage:
  2558. * const trustedResourceUrl = trustedResourceUrl`/safe_script.js`;
  2559. * safedom.safeWorker.create(trustedResourceUrl);
  2560. * which is a safe alternative to
  2561. * new Worker(url);
  2562. * The latter can result in loading untrusted code.
  2563. */
  2564. function create(url, options) {
  2565. return new Worker((0, resource_url_impl_1.unwrapResourceUrl)(url), options);
  2566. }
  2567. exports.create = create;
  2568. /** Safely creates a shared Web Worker. */
  2569. function createShared(url, options) {
  2570. return new SharedWorker((0, resource_url_impl_1.unwrapResourceUrl)(url), options);
  2571. }
  2572. exports.createShared = createShared;
  2573. /** Safely calls importScripts */
  2574. function importScripts(scope) {
  2575. var urls = [];
  2576. for (var _i = 1; _i < arguments.length; _i++) {
  2577. urls[_i - 1] = arguments[_i];
  2578. }
  2579. scope.importScripts.apply(scope, __spreadArray([], __read(urls.map(function (url) { return (0, resource_url_impl_1.unwrapResourceUrl)(url); })), false));
  2580. }
  2581. exports.importScripts = importScripts;
  2582. /***/ }),
  2583. /***/ "./node_modules/safevalues/dom/index.js":
  2584. /*!**********************************************!*\
  2585. !*** ./node_modules/safevalues/dom/index.js ***!
  2586. \**********************************************/
  2587. /*! no static exports found */
  2588. /***/ (function(module, exports, __webpack_require__) {
  2589. "use strict";
  2590. /**
  2591. * @license
  2592. * SPDX-License-Identifier: Apache-2.0
  2593. */
  2594. var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
  2595. if (k2 === undefined) k2 = k;
  2596. var desc = Object.getOwnPropertyDescriptor(m, k);
  2597. if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
  2598. desc = { enumerable: true, get: function() { return m[k]; } };
  2599. }
  2600. Object.defineProperty(o, k2, desc);
  2601. }) : (function(o, m, k, k2) {
  2602. if (k2 === undefined) k2 = k;
  2603. o[k2] = m[k];
  2604. }));
  2605. var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
  2606. Object.defineProperty(o, "default", { enumerable: true, value: v });
  2607. }) : function(o, v) {
  2608. o["default"] = v;
  2609. });
  2610. var __importStar = (this && this.__importStar) || function (mod) {
  2611. if (mod && mod.__esModule) return mod;
  2612. var result = {};
  2613. if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
  2614. __setModuleDefault(result, mod);
  2615. return result;
  2616. };
  2617. Object.defineProperty(exports, "__esModule", { value: true });
  2618. exports.safeWorker = exports.safeWindow = exports.safeServiceWorkerContainer = exports.safeRange = exports.safeLocation = exports.safeGlobal = exports.safeDomParser = exports.safeDocument = exports.safeStyleEl = exports.safeScriptEl = exports.safeObjectEl = exports.safeLinkEl = exports.safeInputEl = exports.safeIframeEl = exports.safeFormEl = exports.safeEmbedEl = exports.safeElement = exports.safeButtonEl = exports.safeAreaEl = exports.safeAnchorEl = void 0;
  2619. /**
  2620. * @fileoverview This file re-exports all of the wrappers to ensure that we have
  2621. * a clearly defined interface.
  2622. */
  2623. exports.safeAnchorEl = __importStar(__webpack_require__(/*! ./elements/anchor */ "./node_modules/safevalues/dom/elements/anchor.js"));
  2624. exports.safeAreaEl = __importStar(__webpack_require__(/*! ./elements/area */ "./node_modules/safevalues/dom/elements/area.js"));
  2625. exports.safeButtonEl = __importStar(__webpack_require__(/*! ./elements/button */ "./node_modules/safevalues/dom/elements/button.js"));
  2626. exports.safeElement = __importStar(__webpack_require__(/*! ./elements/element */ "./node_modules/safevalues/dom/elements/element.js"));
  2627. exports.safeEmbedEl = __importStar(__webpack_require__(/*! ./elements/embed */ "./node_modules/safevalues/dom/elements/embed.js"));
  2628. exports.safeFormEl = __importStar(__webpack_require__(/*! ./elements/form */ "./node_modules/safevalues/dom/elements/form.js"));
  2629. exports.safeIframeEl = __importStar(__webpack_require__(/*! ./elements/iframe */ "./node_modules/safevalues/dom/elements/iframe.js"));
  2630. exports.safeInputEl = __importStar(__webpack_require__(/*! ./elements/input */ "./node_modules/safevalues/dom/elements/input.js"));
  2631. exports.safeLinkEl = __importStar(__webpack_require__(/*! ./elements/link */ "./node_modules/safevalues/dom/elements/link.js"));
  2632. exports.safeObjectEl = __importStar(__webpack_require__(/*! ./elements/object */ "./node_modules/safevalues/dom/elements/object.js"));
  2633. exports.safeScriptEl = __importStar(__webpack_require__(/*! ./elements/script */ "./node_modules/safevalues/dom/elements/script.js"));
  2634. exports.safeStyleEl = __importStar(__webpack_require__(/*! ./elements/style */ "./node_modules/safevalues/dom/elements/style.js"));
  2635. exports.safeDocument = __importStar(__webpack_require__(/*! ./globals/document */ "./node_modules/safevalues/dom/globals/document.js"));
  2636. exports.safeDomParser = __importStar(__webpack_require__(/*! ./globals/dom_parser */ "./node_modules/safevalues/dom/globals/dom_parser.js"));
  2637. exports.safeGlobal = __importStar(__webpack_require__(/*! ./globals/global */ "./node_modules/safevalues/dom/globals/global.js"));
  2638. exports.safeLocation = __importStar(__webpack_require__(/*! ./globals/location */ "./node_modules/safevalues/dom/globals/location.js"));
  2639. exports.safeRange = __importStar(__webpack_require__(/*! ./globals/range */ "./node_modules/safevalues/dom/globals/range.js"));
  2640. exports.safeServiceWorkerContainer = __importStar(__webpack_require__(/*! ./globals/service_worker_container */ "./node_modules/safevalues/dom/globals/service_worker_container.js"));
  2641. exports.safeWindow = __importStar(__webpack_require__(/*! ./globals/window */ "./node_modules/safevalues/dom/globals/window.js"));
  2642. exports.safeWorker = __importStar(__webpack_require__(/*! ./globals/worker */ "./node_modules/safevalues/dom/globals/worker.js"));
  2643. /***/ }),
  2644. /***/ "./node_modules/safevalues/environment/dev.js":
  2645. /*!****************************************************!*\
  2646. !*** ./node_modules/safevalues/environment/dev.js ***!
  2647. \****************************************************/
  2648. /*! no static exports found */
  2649. /***/ (function(module, exports, __webpack_require__) {
  2650. "use strict";
  2651. /* WEBPACK VAR INJECTION */(function(process) {
  2652. /**
  2653. * @license
  2654. * SPDX-License-Identifier: Apache-2.0
  2655. */
  2656. /**
  2657. * Ensure process.env.NODE_ENV is set even when not running under Webpack or
  2658. * Node. Terser will strip this out of production binaries.
  2659. */
  2660. /*#__PURE__*/ (function () {
  2661. if (typeof process === 'undefined') {
  2662. window.process = { env: { NODE_ENV: 'development' } };
  2663. }
  2664. })();
  2665. /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../process/browser.js */ "./node_modules/process/browser.js")))
  2666. /***/ }),
  2667. /***/ "./node_modules/safevalues/index.js":
  2668. /*!******************************************!*\
  2669. !*** ./node_modules/safevalues/index.js ***!
  2670. \******************************************/
  2671. /*! no static exports found */
  2672. /***/ (function(module, exports, __webpack_require__) {
  2673. "use strict";
  2674. /**
  2675. * @license
  2676. * SPDX-License-Identifier: Apache-2.0
  2677. */
  2678. Object.defineProperty(exports, "__esModule", { value: true });
  2679. exports.unwrapStyleSheet = exports.SafeStyleSheet = exports.isStyleSheet = exports.unwrapStyle = exports.SafeStyle = exports.isStyle = exports.unwrapScript = exports.SafeScript = exports.isScript = exports.EMPTY_SCRIPT = exports.unwrapResourceUrl = exports.TrustedResourceUrl = exports.isResourceUrl = exports.unwrapHtml = exports.SafeHtml = exports.isHtml = exports.EMPTY_HTML = exports.unwrapAttributePrefix = exports.SafeAttributePrefix = exports.safeStyleSheet = exports.concatStyleSheets = exports.safeStyle = exports.concatStyles = exports.scriptFromJson = exports.safeScriptWithArgs = exports.safeScript = exports.concatScripts = exports.trustedResourceUrl = exports.replaceFragment = exports.blobUrlFromScript = exports.appendParams = exports.HtmlSanitizerBuilder = exports.sanitizeHtmlToFragment = exports.sanitizeHtmlAssertUnchanged = exports.sanitizeHtml = exports.htmlEscape = exports.createScriptSrc = exports.createScript = exports.concatHtmls = exports.safeAttrPrefix = void 0;
  2680. /** Safe builders */
  2681. var attribute_builders_1 = __webpack_require__(/*! ./builders/attribute_builders */ "./node_modules/safevalues/builders/attribute_builders.js");
  2682. Object.defineProperty(exports, "safeAttrPrefix", { enumerable: true, get: function () { return attribute_builders_1.safeAttrPrefix; } });
  2683. var html_builders_1 = __webpack_require__(/*! ./builders/html_builders */ "./node_modules/safevalues/builders/html_builders.js");
  2684. Object.defineProperty(exports, "concatHtmls", { enumerable: true, get: function () { return html_builders_1.concatHtmls; } });
  2685. Object.defineProperty(exports, "createScript", { enumerable: true, get: function () { return html_builders_1.createScript; } });
  2686. Object.defineProperty(exports, "createScriptSrc", { enumerable: true, get: function () { return html_builders_1.createScriptSrc; } });
  2687. Object.defineProperty(exports, "htmlEscape", { enumerable: true, get: function () { return html_builders_1.htmlEscape; } });
  2688. var html_sanitizer_1 = __webpack_require__(/*! ./builders/html_sanitizer/html_sanitizer */ "./node_modules/safevalues/builders/html_sanitizer/html_sanitizer.js");
  2689. Object.defineProperty(exports, "sanitizeHtml", { enumerable: true, get: function () { return html_sanitizer_1.sanitizeHtml; } });
  2690. Object.defineProperty(exports, "sanitizeHtmlAssertUnchanged", { enumerable: true, get: function () { return html_sanitizer_1.sanitizeHtmlAssertUnchanged; } });
  2691. Object.defineProperty(exports, "sanitizeHtmlToFragment", { enumerable: true, get: function () { return html_sanitizer_1.sanitizeHtmlToFragment; } });
  2692. var html_sanitizer_builder_1 = __webpack_require__(/*! ./builders/html_sanitizer/html_sanitizer_builder */ "./node_modules/safevalues/builders/html_sanitizer/html_sanitizer_builder.js");
  2693. Object.defineProperty(exports, "HtmlSanitizerBuilder", { enumerable: true, get: function () { return html_sanitizer_builder_1.HtmlSanitizerBuilder; } });
  2694. var resource_url_builders_1 = __webpack_require__(/*! ./builders/resource_url_builders */ "./node_modules/safevalues/builders/resource_url_builders.js");
  2695. Object.defineProperty(exports, "appendParams", { enumerable: true, get: function () { return resource_url_builders_1.appendParams; } });
  2696. Object.defineProperty(exports, "blobUrlFromScript", { enumerable: true, get: function () { return resource_url_builders_1.blobUrlFromScript; } });
  2697. Object.defineProperty(exports, "replaceFragment", { enumerable: true, get: function () { return resource_url_builders_1.replaceFragment; } });
  2698. Object.defineProperty(exports, "trustedResourceUrl", { enumerable: true, get: function () { return resource_url_builders_1.trustedResourceUrl; } });
  2699. var script_builders_1 = __webpack_require__(/*! ./builders/script_builders */ "./node_modules/safevalues/builders/script_builders.js");
  2700. Object.defineProperty(exports, "concatScripts", { enumerable: true, get: function () { return script_builders_1.concatScripts; } });
  2701. Object.defineProperty(exports, "safeScript", { enumerable: true, get: function () { return script_builders_1.safeScript; } });
  2702. Object.defineProperty(exports, "safeScriptWithArgs", { enumerable: true, get: function () { return script_builders_1.safeScriptWithArgs; } });
  2703. Object.defineProperty(exports, "scriptFromJson", { enumerable: true, get: function () { return script_builders_1.scriptFromJson; } });
  2704. var style_builders_1 = __webpack_require__(/*! ./builders/style_builders */ "./node_modules/safevalues/builders/style_builders.js");
  2705. Object.defineProperty(exports, "concatStyles", { enumerable: true, get: function () { return style_builders_1.concatStyles; } });
  2706. Object.defineProperty(exports, "safeStyle", { enumerable: true, get: function () { return style_builders_1.safeStyle; } });
  2707. var style_sheet_builders_1 = __webpack_require__(/*! ./builders/style_sheet_builders */ "./node_modules/safevalues/builders/style_sheet_builders.js");
  2708. Object.defineProperty(exports, "concatStyleSheets", { enumerable: true, get: function () { return style_sheet_builders_1.concatStyleSheets; } });
  2709. Object.defineProperty(exports, "safeStyleSheet", { enumerable: true, get: function () { return style_sheet_builders_1.safeStyleSheet; } });
  2710. /** Types, constants and unwrappers */
  2711. var attribute_impl_1 = __webpack_require__(/*! ./internals/attribute_impl */ "./node_modules/safevalues/internals/attribute_impl.js");
  2712. Object.defineProperty(exports, "SafeAttributePrefix", { enumerable: true, get: function () { return attribute_impl_1.SafeAttributePrefix; } });
  2713. Object.defineProperty(exports, "unwrapAttributePrefix", { enumerable: true, get: function () { return attribute_impl_1.unwrapAttributePrefix; } });
  2714. var html_impl_1 = __webpack_require__(/*! ./internals/html_impl */ "./node_modules/safevalues/internals/html_impl.js");
  2715. Object.defineProperty(exports, "EMPTY_HTML", { enumerable: true, get: function () { return html_impl_1.EMPTY_HTML; } });
  2716. Object.defineProperty(exports, "isHtml", { enumerable: true, get: function () { return html_impl_1.isHtml; } });
  2717. Object.defineProperty(exports, "SafeHtml", { enumerable: true, get: function () { return html_impl_1.SafeHtml; } });
  2718. Object.defineProperty(exports, "unwrapHtml", { enumerable: true, get: function () { return html_impl_1.unwrapHtml; } });
  2719. var resource_url_impl_1 = __webpack_require__(/*! ./internals/resource_url_impl */ "./node_modules/safevalues/internals/resource_url_impl.js");
  2720. Object.defineProperty(exports, "isResourceUrl", { enumerable: true, get: function () { return resource_url_impl_1.isResourceUrl; } });
  2721. Object.defineProperty(exports, "TrustedResourceUrl", { enumerable: true, get: function () { return resource_url_impl_1.TrustedResourceUrl; } });
  2722. Object.defineProperty(exports, "unwrapResourceUrl", { enumerable: true, get: function () { return resource_url_impl_1.unwrapResourceUrl; } });
  2723. var script_impl_1 = __webpack_require__(/*! ./internals/script_impl */ "./node_modules/safevalues/internals/script_impl.js");
  2724. Object.defineProperty(exports, "EMPTY_SCRIPT", { enumerable: true, get: function () { return script_impl_1.EMPTY_SCRIPT; } });
  2725. Object.defineProperty(exports, "isScript", { enumerable: true, get: function () { return script_impl_1.isScript; } });
  2726. Object.defineProperty(exports, "SafeScript", { enumerable: true, get: function () { return script_impl_1.SafeScript; } });
  2727. Object.defineProperty(exports, "unwrapScript", { enumerable: true, get: function () { return script_impl_1.unwrapScript; } });
  2728. var style_impl_1 = __webpack_require__(/*! ./internals/style_impl */ "./node_modules/safevalues/internals/style_impl.js");
  2729. Object.defineProperty(exports, "isStyle", { enumerable: true, get: function () { return style_impl_1.isStyle; } });
  2730. Object.defineProperty(exports, "SafeStyle", { enumerable: true, get: function () { return style_impl_1.SafeStyle; } });
  2731. Object.defineProperty(exports, "unwrapStyle", { enumerable: true, get: function () { return style_impl_1.unwrapStyle; } });
  2732. var style_sheet_impl_1 = __webpack_require__(/*! ./internals/style_sheet_impl */ "./node_modules/safevalues/internals/style_sheet_impl.js");
  2733. Object.defineProperty(exports, "isStyleSheet", { enumerable: true, get: function () { return style_sheet_impl_1.isStyleSheet; } });
  2734. Object.defineProperty(exports, "SafeStyleSheet", { enumerable: true, get: function () { return style_sheet_impl_1.SafeStyleSheet; } });
  2735. Object.defineProperty(exports, "unwrapStyleSheet", { enumerable: true, get: function () { return style_sheet_impl_1.unwrapStyleSheet; } });
  2736. /***/ }),
  2737. /***/ "./node_modules/safevalues/internals/attribute_impl.js":
  2738. /*!*************************************************************!*\
  2739. !*** ./node_modules/safevalues/internals/attribute_impl.js ***!
  2740. \*************************************************************/
  2741. /*! no static exports found */
  2742. /***/ (function(module, exports, __webpack_require__) {
  2743. "use strict";
  2744. /**
  2745. * @license
  2746. * SPDX-License-Identifier: Apache-2.0
  2747. */
  2748. var __extends = (this && this.__extends) || (function () {
  2749. var extendStatics = function (d, b) {
  2750. extendStatics = Object.setPrototypeOf ||
  2751. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  2752. function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
  2753. return extendStatics(d, b);
  2754. };
  2755. return function (d, b) {
  2756. if (typeof b !== "function" && b !== null)
  2757. throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  2758. extendStatics(d, b);
  2759. function __() { this.constructor = d; }
  2760. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  2761. };
  2762. })();
  2763. Object.defineProperty(exports, "__esModule", { value: true });
  2764. exports.unwrapAttributePrefix = exports.createAttributePrefix = exports.SafeAttributePrefix = void 0;
  2765. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  2766. var secrets_1 = __webpack_require__(/*! ./secrets */ "./node_modules/safevalues/internals/secrets.js");
  2767. /** A prefix with which an attribute is safe to set using plain strings. */
  2768. var SafeAttributePrefix = /** @class */ (function () {
  2769. function SafeAttributePrefix() {
  2770. }
  2771. return SafeAttributePrefix;
  2772. }());
  2773. exports.SafeAttributePrefix = SafeAttributePrefix;
  2774. /** Implementation for `SafeAttributePrefix` */
  2775. var AttributePrefixImpl = /** @class */ (function (_super) {
  2776. __extends(AttributePrefixImpl, _super);
  2777. function AttributePrefixImpl(attrPrefix, token) {
  2778. var _this = _super.call(this) || this;
  2779. if (true) {
  2780. (0, secrets_1.ensureTokenIsValid)(token);
  2781. }
  2782. _this.privateDoNotAccessOrElseWrappedAttrPrefix = attrPrefix;
  2783. return _this;
  2784. }
  2785. AttributePrefixImpl.prototype.toString = function () {
  2786. return this.privateDoNotAccessOrElseWrappedAttrPrefix;
  2787. };
  2788. return AttributePrefixImpl;
  2789. }(SafeAttributePrefix));
  2790. /**
  2791. * Builds a new `SafeAttribute` from the given string, without enforcing
  2792. * safety guarantees. This shouldn't be exposed to application developers, and
  2793. * must only be used as a step towards safe builders or safe constants.
  2794. */
  2795. function createAttributePrefix(attrPrefix) {
  2796. return new AttributePrefixImpl(attrPrefix, secrets_1.secretToken);
  2797. }
  2798. exports.createAttributePrefix = createAttributePrefix;
  2799. /**
  2800. * Returns the string value of the passed `SafeAttributePrefix` object while
  2801. * ensuring it has the correct type.
  2802. */
  2803. function unwrapAttributePrefix(value) {
  2804. if (value instanceof AttributePrefixImpl) {
  2805. return value.privateDoNotAccessOrElseWrappedAttrPrefix;
  2806. }
  2807. else {
  2808. var message = '';
  2809. if (true) {
  2810. message = 'Unexpected type when unwrapping SafeAttributePrefix';
  2811. }
  2812. throw new Error(message);
  2813. }
  2814. }
  2815. exports.unwrapAttributePrefix = unwrapAttributePrefix;
  2816. /***/ }),
  2817. /***/ "./node_modules/safevalues/internals/html_impl.js":
  2818. /*!********************************************************!*\
  2819. !*** ./node_modules/safevalues/internals/html_impl.js ***!
  2820. \********************************************************/
  2821. /*! no static exports found */
  2822. /***/ (function(module, exports, __webpack_require__) {
  2823. "use strict";
  2824. /**
  2825. * @license
  2826. * SPDX-License-Identifier: Apache-2.0
  2827. */
  2828. Object.defineProperty(exports, "__esModule", { value: true });
  2829. exports.unwrapHtml = exports.isHtml = exports.EMPTY_HTML = exports.createHtml = exports.SafeHtml = void 0;
  2830. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  2831. /* g3_import_pure from './pure' */
  2832. var secrets_1 = __webpack_require__(/*! ./secrets */ "./node_modules/safevalues/internals/secrets.js");
  2833. var trusted_types_1 = __webpack_require__(/*! ./trusted_types */ "./node_modules/safevalues/internals/trusted_types.js");
  2834. /**
  2835. * Runtime implementation of `TrustedHTML` in browsers that don't support it.
  2836. */
  2837. var HtmlImpl = /** @class */ (function () {
  2838. function HtmlImpl(html, token) {
  2839. if (true) {
  2840. (0, secrets_1.ensureTokenIsValid)(token);
  2841. }
  2842. this.privateDoNotAccessOrElseWrappedHtml = html;
  2843. }
  2844. HtmlImpl.prototype.toString = function () {
  2845. return this.privateDoNotAccessOrElseWrappedHtml.toString();
  2846. };
  2847. return HtmlImpl;
  2848. }());
  2849. function createHtmlInternal(html, trusted) {
  2850. return (trusted !== null && trusted !== void 0 ? trusted : new HtmlImpl(html, secrets_1.secretToken));
  2851. }
  2852. var GlobalTrustedHTML = (typeof window !== undefined) ? window.TrustedHTML : undefined;
  2853. /**
  2854. * Also exports the constructor so that instanceof checks work.
  2855. */
  2856. exports.SafeHtml = (GlobalTrustedHTML !== null && GlobalTrustedHTML !== void 0 ? GlobalTrustedHTML : HtmlImpl);
  2857. /**
  2858. * Builds a new `SafeHtml` from the given string, without enforcing safety
  2859. * guarantees. It may cause side effects by creating a Trusted Types policy.
  2860. * This shouldn't be exposed to application developers, and must only be used as
  2861. * a step towards safe builders or safe constants.
  2862. */
  2863. function createHtml(html) {
  2864. var _a;
  2865. /** @noinline */
  2866. var noinlineHtml = html;
  2867. return createHtmlInternal(noinlineHtml, (_a = (0, trusted_types_1.getTrustedTypesPolicy)()) === null || _a === void 0 ? void 0 : _a.createHTML(noinlineHtml));
  2868. }
  2869. exports.createHtml = createHtml;
  2870. /**
  2871. * An empty `SafeHtml` constant.
  2872. * Unlike the function above, using this will not create a policy.
  2873. */
  2874. exports.EMPTY_HTML =
  2875. /* #__PURE__ */ (function () { var _a; return createHtmlInternal('', (_a = (0, trusted_types_1.getTrustedTypes)()) === null || _a === void 0 ? void 0 : _a.emptyHTML); })();
  2876. /**
  2877. * Checks if the given value is a `SafeHtml` instance.
  2878. */
  2879. function isHtml(value) {
  2880. return value instanceof exports.SafeHtml;
  2881. }
  2882. exports.isHtml = isHtml;
  2883. /**
  2884. * Returns the value of the passed `SafeHtml` object while ensuring it
  2885. * has the correct type.
  2886. *
  2887. * Returns a native `TrustedHTML` or a string if Trusted Types are disabled.
  2888. */
  2889. function unwrapHtml(value) {
  2890. var _a;
  2891. if ((_a = (0, trusted_types_1.getTrustedTypes)()) === null || _a === void 0 ? void 0 : _a.isHTML(value)) {
  2892. return value;
  2893. }
  2894. else if (value instanceof HtmlImpl) {
  2895. return value.privateDoNotAccessOrElseWrappedHtml;
  2896. }
  2897. else {
  2898. var message = '';
  2899. if (true) {
  2900. message = 'Unexpected type when unwrapping SafeHtml';
  2901. }
  2902. throw new Error(message);
  2903. }
  2904. }
  2905. exports.unwrapHtml = unwrapHtml;
  2906. /***/ }),
  2907. /***/ "./node_modules/safevalues/internals/resource_url_impl.js":
  2908. /*!****************************************************************!*\
  2909. !*** ./node_modules/safevalues/internals/resource_url_impl.js ***!
  2910. \****************************************************************/
  2911. /*! no static exports found */
  2912. /***/ (function(module, exports, __webpack_require__) {
  2913. "use strict";
  2914. /**
  2915. * @license
  2916. * SPDX-License-Identifier: Apache-2.0
  2917. */
  2918. Object.defineProperty(exports, "__esModule", { value: true });
  2919. exports.unwrapResourceUrl = exports.isResourceUrl = exports.createResourceUrl = exports.TrustedResourceUrl = void 0;
  2920. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  2921. var secrets_1 = __webpack_require__(/*! ./secrets */ "./node_modules/safevalues/internals/secrets.js");
  2922. var trusted_types_1 = __webpack_require__(/*! ./trusted_types */ "./node_modules/safevalues/internals/trusted_types.js");
  2923. /**
  2924. * Runtime implementation of `TrustedScriptURL` in browsers that don't support
  2925. * it.
  2926. */
  2927. var ResourceUrlImpl = /** @class */ (function () {
  2928. function ResourceUrlImpl(url, token) {
  2929. if (true) {
  2930. (0, secrets_1.ensureTokenIsValid)(token);
  2931. }
  2932. this.privateDoNotAccessOrElseWrappedResourceUrl = url;
  2933. }
  2934. ResourceUrlImpl.prototype.toString = function () {
  2935. return this.privateDoNotAccessOrElseWrappedResourceUrl.toString();
  2936. };
  2937. return ResourceUrlImpl;
  2938. }());
  2939. var GlobalTrustedScriptURL = (typeof window !== undefined) ? window.TrustedScriptURL : undefined;
  2940. /**
  2941. * Also exports the constructor so that instanceof checks work.
  2942. */
  2943. exports.TrustedResourceUrl = (GlobalTrustedScriptURL !== null && GlobalTrustedScriptURL !== void 0 ? GlobalTrustedScriptURL : ResourceUrlImpl);
  2944. /**
  2945. * Builds a new `TrustedResourceUrl` from the given string, without
  2946. * enforcing safety guarantees. It may cause side effects by creating a Trusted
  2947. * Types policy. This shouldn't be exposed to application developers, and must
  2948. * only be used as a step towards safe builders or safe constants.
  2949. */
  2950. function createResourceUrl(url) {
  2951. var _a;
  2952. /** @noinline */
  2953. var noinlineUrl = url;
  2954. var trustedScriptURL = (_a = (0, trusted_types_1.getTrustedTypesPolicy)()) === null || _a === void 0 ? void 0 : _a.createScriptURL(noinlineUrl);
  2955. return (trustedScriptURL !== null && trustedScriptURL !== void 0 ? trustedScriptURL : new ResourceUrlImpl(noinlineUrl, secrets_1.secretToken));
  2956. }
  2957. exports.createResourceUrl = createResourceUrl;
  2958. /**
  2959. * Checks if the given value is a `TrustedResourceUrl` instance.
  2960. */
  2961. function isResourceUrl(value) {
  2962. return value instanceof exports.TrustedResourceUrl;
  2963. }
  2964. exports.isResourceUrl = isResourceUrl;
  2965. /**
  2966. * Returns the value of the passed `TrustedResourceUrl` object while ensuring it
  2967. * has the correct type.
  2968. *
  2969. * Returns a native `TrustedScriptURL` or a string if Trusted Types are
  2970. * disabled.
  2971. */
  2972. function unwrapResourceUrl(value) {
  2973. var _a;
  2974. if ((_a = (0, trusted_types_1.getTrustedTypes)()) === null || _a === void 0 ? void 0 : _a.isScriptURL(value)) {
  2975. return value;
  2976. }
  2977. else if (value instanceof ResourceUrlImpl) {
  2978. return value.privateDoNotAccessOrElseWrappedResourceUrl;
  2979. }
  2980. else {
  2981. var message = '';
  2982. if (true) {
  2983. message = 'Unexpected type when unwrapping TrustedResourceUrl';
  2984. }
  2985. throw new Error(message);
  2986. }
  2987. }
  2988. exports.unwrapResourceUrl = unwrapResourceUrl;
  2989. /***/ }),
  2990. /***/ "./node_modules/safevalues/internals/script_impl.js":
  2991. /*!**********************************************************!*\
  2992. !*** ./node_modules/safevalues/internals/script_impl.js ***!
  2993. \**********************************************************/
  2994. /*! no static exports found */
  2995. /***/ (function(module, exports, __webpack_require__) {
  2996. "use strict";
  2997. /**
  2998. * @license
  2999. * SPDX-License-Identifier: Apache-2.0
  3000. */
  3001. Object.defineProperty(exports, "__esModule", { value: true });
  3002. exports.unwrapScript = exports.isScript = exports.EMPTY_SCRIPT = exports.createScript = exports.SafeScript = void 0;
  3003. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  3004. /* g3_import_pure from './pure' */
  3005. var secrets_1 = __webpack_require__(/*! ./secrets */ "./node_modules/safevalues/internals/secrets.js");
  3006. var trusted_types_1 = __webpack_require__(/*! ./trusted_types */ "./node_modules/safevalues/internals/trusted_types.js");
  3007. /**
  3008. * Runtime implementation of `TrustedScript` in browswers that don't support it.
  3009. * script element.
  3010. */
  3011. var ScriptImpl = /** @class */ (function () {
  3012. function ScriptImpl(script, token) {
  3013. if (true) {
  3014. (0, secrets_1.ensureTokenIsValid)(token);
  3015. }
  3016. this.privateDoNotAccessOrElseWrappedScript = script;
  3017. }
  3018. ScriptImpl.prototype.toString = function () {
  3019. return this.privateDoNotAccessOrElseWrappedScript.toString();
  3020. };
  3021. return ScriptImpl;
  3022. }());
  3023. function createScriptInternal(script, trusted) {
  3024. return (trusted !== null && trusted !== void 0 ? trusted : new ScriptImpl(script, secrets_1.secretToken));
  3025. }
  3026. var GlobalTrustedScript = (typeof window !== undefined) ? window.TrustedScript : undefined;
  3027. /**
  3028. * Also exports the constructor so that instanceof checks work.
  3029. */
  3030. exports.SafeScript = (GlobalTrustedScript !== null && GlobalTrustedScript !== void 0 ? GlobalTrustedScript : ScriptImpl);
  3031. /**
  3032. * Builds a new `SafeScript` from the given string, without enforcing
  3033. * safety guarantees. It may cause side effects by creating a Trusted Types
  3034. * policy. This shouldn't be exposed to application developers, and must only be
  3035. * used as a step towards safe builders or safe constants.
  3036. */
  3037. function createScript(script) {
  3038. var _a;
  3039. /** @noinline */
  3040. var noinlineScript = script;
  3041. return createScriptInternal(noinlineScript, (_a = (0, trusted_types_1.getTrustedTypesPolicy)()) === null || _a === void 0 ? void 0 : _a.createScript(noinlineScript));
  3042. }
  3043. exports.createScript = createScript;
  3044. /**
  3045. * An empty `SafeScript` constant.
  3046. * Unlike the functions above, using this will not create a policy.
  3047. */
  3048. exports.EMPTY_SCRIPT =
  3049. /* #__PURE__ */ (function () { var _a; return createScriptInternal('', (_a = (0, trusted_types_1.getTrustedTypes)()) === null || _a === void 0 ? void 0 : _a.emptyScript); })();
  3050. /**
  3051. * Checks if the given value is a `SafeScript` instance.
  3052. */
  3053. function isScript(value) {
  3054. return value instanceof exports.SafeScript;
  3055. }
  3056. exports.isScript = isScript;
  3057. /**
  3058. * Returns the value of the passed `SafeScript` object while ensuring it
  3059. * has the correct type.
  3060. *
  3061. * Returns a native `TrustedScript` or a string if Trusted Types are disabled.
  3062. */
  3063. function unwrapScript(value) {
  3064. var _a;
  3065. if ((_a = (0, trusted_types_1.getTrustedTypes)()) === null || _a === void 0 ? void 0 : _a.isScript(value)) {
  3066. return value;
  3067. }
  3068. else if (value instanceof ScriptImpl) {
  3069. return value.privateDoNotAccessOrElseWrappedScript;
  3070. }
  3071. else {
  3072. var message = '';
  3073. if (true) {
  3074. message = 'Unexpected type when unwrapping SafeScript';
  3075. }
  3076. throw new Error(message);
  3077. }
  3078. }
  3079. exports.unwrapScript = unwrapScript;
  3080. /***/ }),
  3081. /***/ "./node_modules/safevalues/internals/secrets.js":
  3082. /*!******************************************************!*\
  3083. !*** ./node_modules/safevalues/internals/secrets.js ***!
  3084. \******************************************************/
  3085. /*! no static exports found */
  3086. /***/ (function(module, exports, __webpack_require__) {
  3087. "use strict";
  3088. /**
  3089. * @license
  3090. * SPDX-License-Identifier: Apache-2.0
  3091. */
  3092. Object.defineProperty(exports, "__esModule", { value: true });
  3093. exports.ensureTokenIsValid = exports.secretToken = void 0;
  3094. /**
  3095. * A secret token that must be passed to safe type constructors. It is only
  3096. * accessible from within safevalues, ensuring that unrestricted safe type
  3097. * creation is only possible within safevalues. In particular, this prevents
  3098. * forgery such as `safeHtmlValue.constructor('javascript:evil')`.
  3099. */
  3100. exports.secretToken = {};
  3101. /**
  3102. * Asserts that the given token matches the secret safevalues token. An
  3103. * exception is thrown if that is not the case.
  3104. */
  3105. function ensureTokenIsValid(token) {
  3106. if (token !== exports.secretToken) {
  3107. throw new Error('Bad secret');
  3108. }
  3109. }
  3110. exports.ensureTokenIsValid = ensureTokenIsValid;
  3111. /***/ }),
  3112. /***/ "./node_modules/safevalues/internals/string_literal.js":
  3113. /*!*************************************************************!*\
  3114. !*** ./node_modules/safevalues/internals/string_literal.js ***!
  3115. \*************************************************************/
  3116. /*! no static exports found */
  3117. /***/ (function(module, exports, __webpack_require__) {
  3118. "use strict";
  3119. /**
  3120. * @license
  3121. * SPDX-License-Identifier: Apache-2.0
  3122. */
  3123. Object.defineProperty(exports, "__esModule", { value: true });
  3124. exports.assertIsTemplateObject = void 0;
  3125. /**
  3126. * An object of type TemplateStringsArray represents the literal part(s) of a
  3127. * template literal. This function checks if a TemplateStringsArray object is
  3128. * actually from a template literal.
  3129. *
  3130. * @param templateObj This contains the literal part of the template literal.
  3131. * @param hasExprs If true, the input template may contain embedded expressions.
  3132. * @param errorMsg The custom error message in case any checks fail.
  3133. */
  3134. function assertIsTemplateObject(templateObj, hasExprs, errorMsg) {
  3135. if (!Array.isArray(templateObj) || !Array.isArray(templateObj.raw) ||
  3136. (!hasExprs && templateObj.length !== 1)) {
  3137. throw new TypeError(errorMsg);
  3138. }
  3139. }
  3140. exports.assertIsTemplateObject = assertIsTemplateObject;
  3141. /***/ }),
  3142. /***/ "./node_modules/safevalues/internals/style_impl.js":
  3143. /*!*********************************************************!*\
  3144. !*** ./node_modules/safevalues/internals/style_impl.js ***!
  3145. \*********************************************************/
  3146. /*! no static exports found */
  3147. /***/ (function(module, exports, __webpack_require__) {
  3148. "use strict";
  3149. /**
  3150. * @license
  3151. * SPDX-License-Identifier: Apache-2.0
  3152. */
  3153. var __extends = (this && this.__extends) || (function () {
  3154. var extendStatics = function (d, b) {
  3155. extendStatics = Object.setPrototypeOf ||
  3156. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  3157. function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
  3158. return extendStatics(d, b);
  3159. };
  3160. return function (d, b) {
  3161. if (typeof b !== "function" && b !== null)
  3162. throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  3163. extendStatics(d, b);
  3164. function __() { this.constructor = d; }
  3165. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  3166. };
  3167. })();
  3168. Object.defineProperty(exports, "__esModule", { value: true });
  3169. exports.unwrapStyle = exports.isStyle = exports.createStyle = exports.SafeStyle = void 0;
  3170. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  3171. var secrets_1 = __webpack_require__(/*! ./secrets */ "./node_modules/safevalues/internals/secrets.js");
  3172. /**
  3173. * Sequence of CSS declarations safe to use in style contexts in an HTML
  3174. * document or in DOM APIs.
  3175. */
  3176. var SafeStyle = /** @class */ (function () {
  3177. function SafeStyle() {
  3178. }
  3179. return SafeStyle;
  3180. }());
  3181. exports.SafeStyle = SafeStyle;
  3182. /** Implementation for `SafeStyle` */
  3183. var StyleImpl = /** @class */ (function (_super) {
  3184. __extends(StyleImpl, _super);
  3185. function StyleImpl(style, token) {
  3186. var _this = _super.call(this) || this;
  3187. if (true) {
  3188. (0, secrets_1.ensureTokenIsValid)(token);
  3189. }
  3190. _this.privateDoNotAccessOrElseWrappedStyle = style;
  3191. return _this;
  3192. }
  3193. StyleImpl.prototype.toString = function () {
  3194. return this.privateDoNotAccessOrElseWrappedStyle;
  3195. };
  3196. return StyleImpl;
  3197. }(SafeStyle));
  3198. /**
  3199. * Builds a new `SafeStyle` from the given string, without enforcing
  3200. * safety guarantees. This shouldn't be exposed to application developers, and
  3201. * must only be used as a step towards safe builders or safe constants.
  3202. */
  3203. function createStyle(style) {
  3204. return new StyleImpl(style, secrets_1.secretToken);
  3205. }
  3206. exports.createStyle = createStyle;
  3207. /**
  3208. * Checks if the given value is a `SafeStyle` instance.
  3209. */
  3210. function isStyle(value) {
  3211. return value instanceof StyleImpl;
  3212. }
  3213. exports.isStyle = isStyle;
  3214. /**
  3215. * Returns the string value of the passed `SafeStyle` object while ensuring it
  3216. * has the correct type.
  3217. */
  3218. function unwrapStyle(value) {
  3219. if (value instanceof StyleImpl) {
  3220. return value.privateDoNotAccessOrElseWrappedStyle;
  3221. }
  3222. else {
  3223. var message = '';
  3224. if (true) {
  3225. message = 'Unexpected type when unwrapping SafeStyle';
  3226. }
  3227. throw new Error(message);
  3228. }
  3229. }
  3230. exports.unwrapStyle = unwrapStyle;
  3231. /***/ }),
  3232. /***/ "./node_modules/safevalues/internals/style_sheet_impl.js":
  3233. /*!***************************************************************!*\
  3234. !*** ./node_modules/safevalues/internals/style_sheet_impl.js ***!
  3235. \***************************************************************/
  3236. /*! no static exports found */
  3237. /***/ (function(module, exports, __webpack_require__) {
  3238. "use strict";
  3239. /**
  3240. * @license
  3241. * SPDX-License-Identifier: Apache-2.0
  3242. */
  3243. var __extends = (this && this.__extends) || (function () {
  3244. var extendStatics = function (d, b) {
  3245. extendStatics = Object.setPrototypeOf ||
  3246. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  3247. function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
  3248. return extendStatics(d, b);
  3249. };
  3250. return function (d, b) {
  3251. if (typeof b !== "function" && b !== null)
  3252. throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  3253. extendStatics(d, b);
  3254. function __() { this.constructor = d; }
  3255. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  3256. };
  3257. })();
  3258. Object.defineProperty(exports, "__esModule", { value: true });
  3259. exports.unwrapStyleSheet = exports.isStyleSheet = exports.createStyleSheet = exports.SafeStyleSheet = void 0;
  3260. __webpack_require__(/*! ../environment/dev */ "./node_modules/safevalues/environment/dev.js");
  3261. var secrets_1 = __webpack_require__(/*! ./secrets */ "./node_modules/safevalues/internals/secrets.js");
  3262. /**
  3263. * A complete CSS style sheet, safe to use in style contexts in an HTML document
  3264. * or DOM APIs.
  3265. */
  3266. var SafeStyleSheet = /** @class */ (function () {
  3267. function SafeStyleSheet() {
  3268. }
  3269. return SafeStyleSheet;
  3270. }());
  3271. exports.SafeStyleSheet = SafeStyleSheet;
  3272. /** Implementation for `SafeStyleSheet` */
  3273. var StyleSheetImpl = /** @class */ (function (_super) {
  3274. __extends(StyleSheetImpl, _super);
  3275. function StyleSheetImpl(styleSheet, token) {
  3276. var _this = _super.call(this) || this;
  3277. if (true) {
  3278. (0, secrets_1.ensureTokenIsValid)(token);
  3279. }
  3280. _this.privateDoNotAccessOrElseWrappedStyleSheet = styleSheet;
  3281. return _this;
  3282. }
  3283. StyleSheetImpl.prototype.toString = function () {
  3284. return this.privateDoNotAccessOrElseWrappedStyleSheet;
  3285. };
  3286. return StyleSheetImpl;
  3287. }(SafeStyleSheet));
  3288. /**
  3289. * Builds a new `SafeStyleSheet` from the given string, without enforcing
  3290. * safety guarantees. This shouldn't be exposed to application developers, and
  3291. * must only be used as a step towards safe builders or safe constants.
  3292. */
  3293. function createStyleSheet(styleSheet) {
  3294. return new StyleSheetImpl(styleSheet, secrets_1.secretToken);
  3295. }
  3296. exports.createStyleSheet = createStyleSheet;
  3297. /**
  3298. * Checks if the given value is a `SafeStyleSheet` instance.
  3299. */
  3300. function isStyleSheet(value) {
  3301. return value instanceof StyleSheetImpl;
  3302. }
  3303. exports.isStyleSheet = isStyleSheet;
  3304. /**
  3305. * Returns the string value of the passed `SafeStyleSheet` object while
  3306. * ensuring it has the correct type.
  3307. */
  3308. function unwrapStyleSheet(value) {
  3309. if (value instanceof StyleSheetImpl) {
  3310. return value.privateDoNotAccessOrElseWrappedStyleSheet;
  3311. }
  3312. else {
  3313. var message = '';
  3314. if (true) {
  3315. message = 'Unexpected type when unwrapping SafeStyleSheet';
  3316. }
  3317. throw new Error(message);
  3318. }
  3319. }
  3320. exports.unwrapStyleSheet = unwrapStyleSheet;
  3321. /***/ }),
  3322. /***/ "./node_modules/safevalues/internals/trusted_types.js":
  3323. /*!************************************************************!*\
  3324. !*** ./node_modules/safevalues/internals/trusted_types.js ***!
  3325. \************************************************************/
  3326. /*! no static exports found */
  3327. /***/ (function(module, exports, __webpack_require__) {
  3328. "use strict";
  3329. /**
  3330. * @license
  3331. * SPDX-License-Identifier: Apache-2.0
  3332. */
  3333. Object.defineProperty(exports, "__esModule", { value: true });
  3334. exports.TEST_ONLY = exports.getTrustedTypesPolicy = exports.getTrustedTypes = void 0;
  3335. /**
  3336. * The name of the Trusted Types policy used by TS safevalues, or empty
  3337. * to disable Trusted Types. This duplicates the 'google#safe', but
  3338. * can be overridden in tests.
  3339. */
  3340. var trustedTypesPolicyName = 'google#safe';
  3341. /** Helper to retrieve the value of `window.trustedTypes`. */
  3342. function trustedTypes() {
  3343. if (typeof window !== 'undefined') {
  3344. return window.trustedTypes;
  3345. }
  3346. return undefined;
  3347. }
  3348. /**
  3349. * Returns window.trustedTypes if Trusted Types are enabled and supported, or
  3350. * null otherwise.
  3351. */
  3352. function getTrustedTypes() {
  3353. var _a;
  3354. return (trustedTypesPolicyName !== '') ? ((_a = trustedTypes()) !== null && _a !== void 0 ? _a : null) : null;
  3355. }
  3356. exports.getTrustedTypes = getTrustedTypes;
  3357. /**
  3358. * The Trusted Types policy used by TS safevalues, or null if Trusted Types
  3359. * are not enabled/supported, or undefined if the policy has not been created
  3360. * yet.
  3361. */
  3362. var trustedTypesPolicy;
  3363. /**
  3364. * Returns the Trusted Types policy used by TS safevalues, or null if Trusted
  3365. * Types are not enabled/supported. The first call to this function will
  3366. * create the policy.
  3367. */
  3368. function getTrustedTypesPolicy() {
  3369. var _a, _b;
  3370. if (trustedTypesPolicy === undefined) {
  3371. try {
  3372. trustedTypesPolicy =
  3373. (_b = (_a = getTrustedTypes()) === null || _a === void 0 ? void 0 : _a.createPolicy(trustedTypesPolicyName, {
  3374. createHTML: function (s) { return s; },
  3375. createScript: function (s) { return s; },
  3376. createScriptURL: function (s) { return s; }
  3377. })) !== null && _b !== void 0 ? _b : null;
  3378. }
  3379. catch (_c) {
  3380. // In Chromium versions before 81, trustedTypes.createPolicy throws if
  3381. // called with a name that is already registered, even if no CSP is set.
  3382. // Until users have largely migrated to 81 or above, catch the error not
  3383. // to break the applications functionally. In such case, the code will
  3384. // fall back to using regular Safe Types.
  3385. trustedTypesPolicy = null;
  3386. }
  3387. }
  3388. return trustedTypesPolicy;
  3389. }
  3390. exports.getTrustedTypesPolicy = getTrustedTypesPolicy;
  3391. /** Helpers for tests. */
  3392. exports.TEST_ONLY = {
  3393. resetDefaults: function () {
  3394. trustedTypesPolicy = undefined;
  3395. trustedTypesPolicyName = 'google#safe';
  3396. },
  3397. setTrustedTypesPolicyName: function (name) {
  3398. trustedTypesPolicyName = name;
  3399. },
  3400. };
  3401. /***/ }),
  3402. /***/ "./packages/mdc-base/component.ts":
  3403. /*!****************************************!*\
  3404. !*** ./packages/mdc-base/component.ts ***!
  3405. \****************************************/
  3406. /*! no static exports found */
  3407. /***/ (function(module, exports, __webpack_require__) {
  3408. "use strict";
  3409. /**
  3410. * @license
  3411. * Copyright 2016 Google Inc.
  3412. *
  3413. * Permission is hereby granted, free of charge, to any person obtaining a copy
  3414. * of this software and associated documentation files (the "Software"), to deal
  3415. * in the Software without restriction, including without limitation the rights
  3416. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3417. * copies of the Software, and to permit persons to whom the Software is
  3418. * furnished to do so, subject to the following conditions:
  3419. *
  3420. * The above copyright notice and this permission notice shall be included in
  3421. * all copies or substantial portions of the Software.
  3422. *
  3423. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3424. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3425. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3426. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3427. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3428. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  3429. * THE SOFTWARE.
  3430. */
  3431. var __makeTemplateObject = this && this.__makeTemplateObject || function (cooked, raw) {
  3432. if (Object.defineProperty) {
  3433. Object.defineProperty(cooked, "raw", { value: raw });
  3434. } else {
  3435. cooked.raw = raw;
  3436. }
  3437. return cooked;
  3438. };
  3439. var __read = this && this.__read || function (o, n) {
  3440. var m = typeof Symbol === "function" && o[Symbol.iterator];
  3441. if (!m) return o;
  3442. var i = m.call(o),
  3443. r,
  3444. ar = [],
  3445. e;
  3446. try {
  3447. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
  3448. ar.push(r.value);
  3449. }
  3450. } catch (error) {
  3451. e = { error: error };
  3452. } finally {
  3453. try {
  3454. if (r && !r.done && (m = i["return"])) m.call(i);
  3455. } finally {
  3456. if (e) throw e.error;
  3457. }
  3458. }
  3459. return ar;
  3460. };
  3461. var __spreadArray = this && this.__spreadArray || function (to, from) {
  3462. for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) {
  3463. to[j] = from[i];
  3464. }return to;
  3465. };
  3466. Object.defineProperty(exports, "__esModule", { value: true });
  3467. exports.MDCComponent = void 0;
  3468. var safevalues_1 = __webpack_require__(/*! safevalues */ "./node_modules/safevalues/index.js");
  3469. var dom_1 = __webpack_require__(/*! safevalues/dom */ "./node_modules/safevalues/dom/index.js");
  3470. var foundation_1 = __webpack_require__(/*! ./foundation */ "./packages/mdc-base/foundation.ts");
  3471. function toCamelCase(str) {
  3472. // tslint:disable-next-line:enforce-name-casing
  3473. return String(str).replace(/\-([a-z])/g, function (_, match) {
  3474. return match.toUpperCase();
  3475. });
  3476. }
  3477. /** MDC Component base */
  3478. var MDCComponent = /** @class */function () {
  3479. function MDCComponent(root, foundation) {
  3480. var args = [];
  3481. for (var _i = 2; _i < arguments.length; _i++) {
  3482. args[_i - 2] = arguments[_i];
  3483. }
  3484. this.root = root;
  3485. this.initialize.apply(this, __spreadArray([], __read(args)));
  3486. // Note that we initialize foundation here and not within the constructor's
  3487. // default param so that this.root is defined and can be used within the
  3488. // foundation class.
  3489. this.foundation = foundation === undefined ? this.getDefaultFoundation() : foundation;
  3490. this.foundation.init();
  3491. this.initialSyncWithDOM();
  3492. }
  3493. MDCComponent.attachTo = function (root) {
  3494. // Subclasses which extend MDCBase should provide an attachTo() method that
  3495. // takes a root element and returns an instantiated component with its root
  3496. // set to that element. Also note that in the cases of subclasses, an
  3497. // explicit foundation class will not have to be passed in; it will simply
  3498. // be initialized from getDefaultFoundation().
  3499. return new MDCComponent(root, new foundation_1.MDCFoundation({}));
  3500. };
  3501. /* istanbul ignore next: method param only exists for typing purposes; it does
  3502. * not need to be unit tested */
  3503. // tslint:disable-next-line:enforce-name-casing
  3504. MDCComponent.prototype.initialize = function () {
  3505. var _args = [];
  3506. for (var _i = 0; _i < arguments.length; _i++) {
  3507. _args[_i] = arguments[_i];
  3508. }
  3509. // Subclasses can override this to do any additional setup work that would
  3510. // be considered part of a "constructor". Essentially, it is a hook into the
  3511. // parent constructor before the foundation is initialized. Any additional
  3512. // arguments besides root and foundation will be passed in here.
  3513. };
  3514. MDCComponent.prototype.getDefaultFoundation = function () {
  3515. // Subclasses must override this method to return a properly configured
  3516. // foundation class for the component.
  3517. throw new Error('Subclasses must override getDefaultFoundation to return a properly configured ' + 'foundation class');
  3518. };
  3519. MDCComponent.prototype.initialSyncWithDOM = function () {
  3520. // Subclasses should override this method if they need to perform work to
  3521. // synchronize with a host DOM object. An example of this would be a form
  3522. // control wrapper that needs to synchronize its internal state to some
  3523. // property or attribute of the host DOM. Please note: this is *not* the
  3524. // place to perform DOM reads/writes that would cause layout / paint, as
  3525. // this is called synchronously from within the constructor.
  3526. };
  3527. MDCComponent.prototype.destroy = function () {
  3528. // Subclasses may implement this method to release any resources /
  3529. // deregister any listeners they have attached. An example of this might be
  3530. // deregistering a resize event from the window object.
  3531. this.foundation.destroy();
  3532. };
  3533. MDCComponent.prototype.listen = function (evtType, handler, options) {
  3534. this.root.addEventListener(evtType, handler, options);
  3535. };
  3536. MDCComponent.prototype.unlisten = function (evtType, handler, options) {
  3537. this.root.removeEventListener(evtType, handler, options);
  3538. };
  3539. /**
  3540. * Fires a cross-browser-compatible custom event from the component root of
  3541. * the given type, with the given data.
  3542. */
  3543. MDCComponent.prototype.emit = function (evtType, evtData, shouldBubble) {
  3544. if (shouldBubble === void 0) {
  3545. shouldBubble = false;
  3546. }
  3547. var evt;
  3548. if (typeof CustomEvent === 'function') {
  3549. evt = new CustomEvent(evtType, {
  3550. bubbles: shouldBubble,
  3551. detail: evtData
  3552. });
  3553. } else {
  3554. evt = document.createEvent('CustomEvent');
  3555. evt.initCustomEvent(evtType, shouldBubble, false, evtData);
  3556. }
  3557. this.root.dispatchEvent(evt);
  3558. };
  3559. /**
  3560. * This is a intermediate fix to allow components to use safevalues. This
  3561. * limits setAttribute to setting tabindex, data attributes, and aria
  3562. * attributes.
  3563. *
  3564. * TODO(b/263990206): remove this method and add these directly in each
  3565. * component. This will remove this abstraction and make it clear that the
  3566. * caller can't set any attribute.
  3567. */
  3568. MDCComponent.prototype.safeSetAttribute = function (element, attribute, value) {
  3569. if (attribute.toLowerCase() === 'tabindex') {
  3570. element.tabIndex = Number(value);
  3571. } else if (attribute.indexOf('data-') === 0) {
  3572. var dataKey = toCamelCase(attribute.replace(/^data-/, ''));
  3573. element.dataset[dataKey] = value;
  3574. } else {
  3575. dom_1.safeElement.setPrefixedAttribute([safevalues_1.safeAttrPrefix(templateObject_1 || (templateObject_1 = __makeTemplateObject(["aria-"], ["aria-"]))), safevalues_1.safeAttrPrefix(templateObject_2 || (templateObject_2 = __makeTemplateObject(["role"], ["role"])))], element, attribute, value);
  3576. }
  3577. };
  3578. return MDCComponent;
  3579. }();
  3580. exports.MDCComponent = MDCComponent;
  3581. // tslint:disable-next-line:no-default-export Needed for backward compatibility with MDC Web v0.44.0 and earlier.
  3582. exports.default = MDCComponent;
  3583. var templateObject_1, templateObject_2;
  3584. /***/ }),
  3585. /***/ "./packages/mdc-base/foundation.ts":
  3586. /*!*****************************************!*\
  3587. !*** ./packages/mdc-base/foundation.ts ***!
  3588. \*****************************************/
  3589. /*! no static exports found */
  3590. /***/ (function(module, exports, __webpack_require__) {
  3591. "use strict";
  3592. /**
  3593. * @license
  3594. * Copyright 2016 Google Inc.
  3595. *
  3596. * Permission is hereby granted, free of charge, to any person obtaining a copy
  3597. * of this software and associated documentation files (the "Software"), to deal
  3598. * in the Software without restriction, including without limitation the rights
  3599. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3600. * copies of the Software, and to permit persons to whom the Software is
  3601. * furnished to do so, subject to the following conditions:
  3602. *
  3603. * The above copyright notice and this permission notice shall be included in
  3604. * all copies or substantial portions of the Software.
  3605. *
  3606. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3607. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3608. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3609. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3610. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3611. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  3612. * THE SOFTWARE.
  3613. */
  3614. Object.defineProperty(exports, "__esModule", { value: true });
  3615. exports.MDCFoundation = void 0;
  3616. /** MDC Foundation */
  3617. var MDCFoundation = /** @class */function () {
  3618. function MDCFoundation(adapter) {
  3619. if (adapter === void 0) {
  3620. adapter = {};
  3621. }
  3622. this.adapter = adapter;
  3623. }
  3624. Object.defineProperty(MDCFoundation, "cssClasses", {
  3625. get: function get() {
  3626. // Classes extending MDCFoundation should implement this method to return an
  3627. // object which exports every CSS class the foundation class needs as a
  3628. // property. e.g. {ACTIVE: 'mdc-component--active'}
  3629. return {};
  3630. },
  3631. enumerable: false,
  3632. configurable: true
  3633. });
  3634. Object.defineProperty(MDCFoundation, "strings", {
  3635. get: function get() {
  3636. // Classes extending MDCFoundation should implement this method to return an
  3637. // object which exports all semantic strings as constants. e.g. {ARIA_ROLE:
  3638. // 'tablist'}
  3639. return {};
  3640. },
  3641. enumerable: false,
  3642. configurable: true
  3643. });
  3644. Object.defineProperty(MDCFoundation, "numbers", {
  3645. get: function get() {
  3646. // Classes extending MDCFoundation should implement this method to return an
  3647. // object which exports all of its semantic numbers as constants.
  3648. // e.g. {ANIMATION_DELAY_MS: 350}
  3649. return {};
  3650. },
  3651. enumerable: false,
  3652. configurable: true
  3653. });
  3654. Object.defineProperty(MDCFoundation, "defaultAdapter", {
  3655. get: function get() {
  3656. // Classes extending MDCFoundation may choose to implement this getter in
  3657. // order to provide a convenient way of viewing the necessary methods of an
  3658. // adapter. In the future, this could also be used for adapter validation.
  3659. return {};
  3660. },
  3661. enumerable: false,
  3662. configurable: true
  3663. });
  3664. MDCFoundation.prototype.init = function () {
  3665. // Subclasses should override this method to perform initialization routines
  3666. // (registering events, etc.)
  3667. };
  3668. MDCFoundation.prototype.destroy = function () {
  3669. // Subclasses should override this method to perform de-initialization
  3670. // routines (de-registering events, etc.)
  3671. };
  3672. return MDCFoundation;
  3673. }();
  3674. exports.MDCFoundation = MDCFoundation;
  3675. // tslint:disable-next-line:no-default-export Needed for backward compatibility with MDC Web v0.44.0 and earlier.
  3676. exports.default = MDCFoundation;
  3677. /***/ }),
  3678. /***/ "./packages/mdc-base/observer-foundation.ts":
  3679. /*!**************************************************!*\
  3680. !*** ./packages/mdc-base/observer-foundation.ts ***!
  3681. \**************************************************/
  3682. /*! no static exports found */
  3683. /***/ (function(module, exports, __webpack_require__) {
  3684. "use strict";
  3685. /**
  3686. * @license
  3687. * Copyright 2021 Google Inc.
  3688. *
  3689. * Permission is hereby granted, free of charge, to any person obtaining a copy
  3690. * of this software and associated documentation files (the "Software"), to deal
  3691. * in the Software without restriction, including without limitation the rights
  3692. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3693. * copies of the Software, and to permit persons to whom the Software is
  3694. * furnished to do so, subject to the following conditions:
  3695. *
  3696. * The above copyright notice and this permission notice shall be included in
  3697. * all copies or substantial portions of the Software.
  3698. *
  3699. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3700. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3701. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3702. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3703. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3704. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  3705. * THE SOFTWARE.
  3706. */
  3707. var __extends = this && this.__extends || function () {
  3708. var _extendStatics = function extendStatics(d, b) {
  3709. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  3710. d.__proto__ = b;
  3711. } || function (d, b) {
  3712. for (var p in b) {
  3713. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  3714. }
  3715. };
  3716. return _extendStatics(d, b);
  3717. };
  3718. return function (d, b) {
  3719. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  3720. _extendStatics(d, b);
  3721. function __() {
  3722. this.constructor = d;
  3723. }
  3724. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  3725. };
  3726. }();
  3727. var __values = this && this.__values || function (o) {
  3728. var s = typeof Symbol === "function" && Symbol.iterator,
  3729. m = s && o[s],
  3730. i = 0;
  3731. if (m) return m.call(o);
  3732. if (o && typeof o.length === "number") return {
  3733. next: function next() {
  3734. if (o && i >= o.length) o = void 0;
  3735. return { value: o && o[i++], done: !o };
  3736. }
  3737. };
  3738. throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
  3739. };
  3740. var __read = this && this.__read || function (o, n) {
  3741. var m = typeof Symbol === "function" && o[Symbol.iterator];
  3742. if (!m) return o;
  3743. var i = m.call(o),
  3744. r,
  3745. ar = [],
  3746. e;
  3747. try {
  3748. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
  3749. ar.push(r.value);
  3750. }
  3751. } catch (error) {
  3752. e = { error: error };
  3753. } finally {
  3754. try {
  3755. if (r && !r.done && (m = i["return"])) m.call(i);
  3756. } finally {
  3757. if (e) throw e.error;
  3758. }
  3759. }
  3760. return ar;
  3761. };
  3762. var __spreadArray = this && this.__spreadArray || function (to, from) {
  3763. for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) {
  3764. to[j] = from[i];
  3765. }return to;
  3766. };
  3767. Object.defineProperty(exports, "__esModule", { value: true });
  3768. exports.MDCObserverFoundation = void 0;
  3769. var foundation_1 = __webpack_require__(/*! ./foundation */ "./packages/mdc-base/foundation.ts");
  3770. var observer_1 = __webpack_require__(/*! ./observer */ "./packages/mdc-base/observer.ts");
  3771. // @ts-ignore(go/ts48upgrade) Fix code and remove this comment. Error:
  3772. // TS2344: Type 'Adapter' does not satisfy the constraint '{}'.
  3773. var MDCObserverFoundation = /** @class */function (_super) {
  3774. __extends(MDCObserverFoundation, _super);
  3775. function MDCObserverFoundation(adapter) {
  3776. var _this = _super.call(this, adapter) || this;
  3777. /** A set of cleanup functions to unobserve changes. */
  3778. _this.unobserves = new Set();
  3779. return _this;
  3780. }
  3781. MDCObserverFoundation.prototype.destroy = function () {
  3782. _super.prototype.destroy.call(this);
  3783. this.unobserve();
  3784. };
  3785. /**
  3786. * Observe a target's properties for changes using the provided map of
  3787. * property names and observer functions.
  3788. *
  3789. * @template T The target type.
  3790. * @param target - The target to observe.
  3791. * @param observers - An object whose keys are target properties and values
  3792. * are observer functions that are called when the associated property
  3793. * changes.
  3794. * @return A cleanup function that can be called to unobserve the
  3795. * target.
  3796. */
  3797. MDCObserverFoundation.prototype.observe = function (target, observers) {
  3798. var e_1, _a;
  3799. var _this = this;
  3800. var cleanup = [];
  3801. try {
  3802. for (var _b = __values(Object.keys(observers)), _c = _b.next(); !_c.done; _c = _b.next()) {
  3803. var property = _c.value;
  3804. var observer = observers[property].bind(this);
  3805. cleanup.push(this.observeProperty(target, property, observer));
  3806. }
  3807. } catch (e_1_1) {
  3808. e_1 = { error: e_1_1 };
  3809. } finally {
  3810. try {
  3811. if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
  3812. } finally {
  3813. if (e_1) throw e_1.error;
  3814. }
  3815. }
  3816. var unobserve = function unobserve() {
  3817. var e_2, _a;
  3818. try {
  3819. for (var cleanup_1 = __values(cleanup), cleanup_1_1 = cleanup_1.next(); !cleanup_1_1.done; cleanup_1_1 = cleanup_1.next()) {
  3820. var cleanupFn = cleanup_1_1.value;
  3821. cleanupFn();
  3822. }
  3823. } catch (e_2_1) {
  3824. e_2 = { error: e_2_1 };
  3825. } finally {
  3826. try {
  3827. if (cleanup_1_1 && !cleanup_1_1.done && (_a = cleanup_1.return)) _a.call(cleanup_1);
  3828. } finally {
  3829. if (e_2) throw e_2.error;
  3830. }
  3831. }
  3832. _this.unobserves.delete(unobserve);
  3833. };
  3834. this.unobserves.add(unobserve);
  3835. return unobserve;
  3836. };
  3837. /**
  3838. * Observe a target's property for changes. When a property changes, the
  3839. * provided `Observer` function will be invoked with the properties current
  3840. * and previous values.
  3841. *
  3842. * The returned cleanup function will stop listening to changes for the
  3843. * provided `Observer`.
  3844. *
  3845. * @template T The observed target type.
  3846. * @template K The observed property.
  3847. * @param target - The target to observe.
  3848. * @param property - The property of the target to observe.
  3849. * @param observer - An observer function to invoke each time the property
  3850. * changes.
  3851. * @return A cleanup function that will stop observing changes for the
  3852. * provided `Observer`.
  3853. */
  3854. MDCObserverFoundation.prototype.observeProperty = function (target, property, observer) {
  3855. return observer_1.observeProperty(target, property, observer);
  3856. };
  3857. /**
  3858. * Enables or disables all observers for the provided target. Disabling
  3859. * observers will prevent them from being called until they are re-enabled.
  3860. *
  3861. * @param target - The target to enable or disable observers for.
  3862. * @param enabled - Whether or not observers should be called.
  3863. */
  3864. MDCObserverFoundation.prototype.setObserversEnabled = function (target, enabled) {
  3865. observer_1.setObserversEnabled(target, enabled);
  3866. };
  3867. /**
  3868. * Clean up all observers and stop listening for property changes.
  3869. */
  3870. MDCObserverFoundation.prototype.unobserve = function () {
  3871. var e_3, _a;
  3872. try {
  3873. // Iterate over a copy since unobserve() will remove themselves from the set
  3874. for (var _b = __values(__spreadArray([], __read(this.unobserves))), _c = _b.next(); !_c.done; _c = _b.next()) {
  3875. var unobserve = _c.value;
  3876. unobserve();
  3877. }
  3878. } catch (e_3_1) {
  3879. e_3 = { error: e_3_1 };
  3880. } finally {
  3881. try {
  3882. if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
  3883. } finally {
  3884. if (e_3) throw e_3.error;
  3885. }
  3886. }
  3887. };
  3888. return MDCObserverFoundation;
  3889. }(foundation_1.MDCFoundation);
  3890. exports.MDCObserverFoundation = MDCObserverFoundation;
  3891. /***/ }),
  3892. /***/ "./packages/mdc-base/observer.ts":
  3893. /*!***************************************!*\
  3894. !*** ./packages/mdc-base/observer.ts ***!
  3895. \***************************************/
  3896. /*! no static exports found */
  3897. /***/ (function(module, exports, __webpack_require__) {
  3898. "use strict";
  3899. /**
  3900. * @license
  3901. * Copyright 2021 Google Inc.
  3902. *
  3903. * Permission is hereby granted, free of charge, to any person obtaining a copy
  3904. * of this software and associated documentation files (the "Software"), to deal
  3905. * in the Software without restriction, including without limitation the rights
  3906. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3907. * copies of the Software, and to permit persons to whom the Software is
  3908. * furnished to do so, subject to the following conditions:
  3909. *
  3910. * The above copyright notice and this permission notice shall be included in
  3911. * all copies or substantial portions of the Software.
  3912. *
  3913. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3914. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3915. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3916. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3917. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3918. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  3919. * THE SOFTWARE.
  3920. */
  3921. var __extends = this && this.__extends || function () {
  3922. var _extendStatics = function extendStatics(d, b) {
  3923. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  3924. d.__proto__ = b;
  3925. } || function (d, b) {
  3926. for (var p in b) {
  3927. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  3928. }
  3929. };
  3930. return _extendStatics(d, b);
  3931. };
  3932. return function (d, b) {
  3933. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  3934. _extendStatics(d, b);
  3935. function __() {
  3936. this.constructor = d;
  3937. }
  3938. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  3939. };
  3940. }();
  3941. var __assign = this && this.__assign || function () {
  3942. __assign = Object.assign || function (t) {
  3943. for (var s, i = 1, n = arguments.length; i < n; i++) {
  3944. s = arguments[i];
  3945. for (var p in s) {
  3946. if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
  3947. }
  3948. }
  3949. return t;
  3950. };
  3951. return __assign.apply(this, arguments);
  3952. };
  3953. var __values = this && this.__values || function (o) {
  3954. var s = typeof Symbol === "function" && Symbol.iterator,
  3955. m = s && o[s],
  3956. i = 0;
  3957. if (m) return m.call(o);
  3958. if (o && typeof o.length === "number") return {
  3959. next: function next() {
  3960. if (o && i >= o.length) o = void 0;
  3961. return { value: o && o[i++], done: !o };
  3962. }
  3963. };
  3964. throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
  3965. };
  3966. var __read = this && this.__read || function (o, n) {
  3967. var m = typeof Symbol === "function" && o[Symbol.iterator];
  3968. if (!m) return o;
  3969. var i = m.call(o),
  3970. r,
  3971. ar = [],
  3972. e;
  3973. try {
  3974. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
  3975. ar.push(r.value);
  3976. }
  3977. } catch (error) {
  3978. e = { error: error };
  3979. } finally {
  3980. try {
  3981. if (r && !r.done && (m = i["return"])) m.call(i);
  3982. } finally {
  3983. if (e) throw e.error;
  3984. }
  3985. }
  3986. return ar;
  3987. };
  3988. var __spreadArray = this && this.__spreadArray || function (to, from) {
  3989. for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) {
  3990. to[j] = from[i];
  3991. }return to;
  3992. };
  3993. Object.defineProperty(exports, "__esModule", { value: true });
  3994. exports.setObserversEnabled = exports.getDescriptor = exports.observeProperty = exports.mdcObserver = void 0;
  3995. /**
  3996. * Mixin to add `MDCObserver` functionality to an optional base class.
  3997. *
  3998. * @deprecated Prefer MDCObserverFoundation for stricter closure compliance.
  3999. * @template C Optional base class constructor type.
  4000. * @param baseClass - Optional base class.
  4001. * @return A class that extends the optional base class with `MDCObserver`
  4002. * functionality.
  4003. */
  4004. function mdcObserver(baseClass) {
  4005. if (baseClass === void 0) {
  4006. baseClass = /** @class */function () {
  4007. function class_1() {}
  4008. return class_1;
  4009. }();
  4010. }
  4011. // Mixin classes cannot use private members and Symbol() cannot be used in 3P
  4012. // for IE11.
  4013. var unobserveMap = new WeakMap();
  4014. return (/** @class */function (_super) {
  4015. __extends(MDCObserver, _super);
  4016. function MDCObserver() {
  4017. return _super !== null && _super.apply(this, arguments) || this;
  4018. }
  4019. MDCObserver.prototype.observe = function (target, observers) {
  4020. var e_1, _a;
  4021. var _this = this;
  4022. var cleanup = [];
  4023. try {
  4024. for (var _b = __values(Object.keys(observers)), _c = _b.next(); !_c.done; _c = _b.next()) {
  4025. var property = _c.value;
  4026. var observer = observers[property].bind(this);
  4027. cleanup.push(observeProperty(target, property, observer));
  4028. }
  4029. } catch (e_1_1) {
  4030. e_1 = { error: e_1_1 };
  4031. } finally {
  4032. try {
  4033. if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
  4034. } finally {
  4035. if (e_1) throw e_1.error;
  4036. }
  4037. }
  4038. var unobserve = function unobserve() {
  4039. var e_2, _a;
  4040. try {
  4041. for (var cleanup_1 = __values(cleanup), cleanup_1_1 = cleanup_1.next(); !cleanup_1_1.done; cleanup_1_1 = cleanup_1.next()) {
  4042. var cleanupFn = cleanup_1_1.value;
  4043. cleanupFn();
  4044. }
  4045. } catch (e_2_1) {
  4046. e_2 = { error: e_2_1 };
  4047. } finally {
  4048. try {
  4049. if (cleanup_1_1 && !cleanup_1_1.done && (_a = cleanup_1.return)) _a.call(cleanup_1);
  4050. } finally {
  4051. if (e_2) throw e_2.error;
  4052. }
  4053. }
  4054. var unobserves = unobserveMap.get(_this) || [];
  4055. var index = unobserves.indexOf(unobserve);
  4056. if (index > -1) {
  4057. unobserves.splice(index, 1);
  4058. }
  4059. };
  4060. var unobserves = unobserveMap.get(this);
  4061. if (!unobserves) {
  4062. unobserves = [];
  4063. unobserveMap.set(this, unobserves);
  4064. }
  4065. unobserves.push(unobserve);
  4066. return unobserve;
  4067. };
  4068. MDCObserver.prototype.setObserversEnabled = function (target, enabled) {
  4069. setObserversEnabled(target, enabled);
  4070. };
  4071. MDCObserver.prototype.unobserve = function () {
  4072. var e_3, _a;
  4073. // Iterate over a copy since unobserve() will remove themselves from the
  4074. // array
  4075. var unobserves = unobserveMap.get(this) || [];
  4076. try {
  4077. for (var _b = __values(__spreadArray([], __read(unobserves))), _c = _b.next(); !_c.done; _c = _b.next()) {
  4078. var unobserve = _c.value;
  4079. unobserve();
  4080. }
  4081. } catch (e_3_1) {
  4082. e_3 = { error: e_3_1 };
  4083. } finally {
  4084. try {
  4085. if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
  4086. } finally {
  4087. if (e_3) throw e_3.error;
  4088. }
  4089. }
  4090. };
  4091. return MDCObserver;
  4092. }(baseClass)
  4093. );
  4094. }
  4095. exports.mdcObserver = mdcObserver;
  4096. /**
  4097. * Observe a target's property for changes. When a property changes, the
  4098. * provided `Observer` function will be invoked with the properties current and
  4099. * previous values.
  4100. *
  4101. * The returned cleanup function will stop listening to changes for the
  4102. * provided `Observer`.
  4103. *
  4104. * @template T The observed target type.
  4105. * @template K The observed property.
  4106. * @param target - The target to observe.
  4107. * @param property - The property of the target to observe.
  4108. * @param observer - An observer function to invoke each time the property
  4109. * changes.
  4110. * @return A cleanup function that will stop observing changes for the provided
  4111. * `Observer`.
  4112. */
  4113. function observeProperty(target, property, observer) {
  4114. var targetObservers = installObserver(target, property);
  4115. var observers = targetObservers.getObservers(property);
  4116. observers.push(observer);
  4117. return function () {
  4118. observers.splice(observers.indexOf(observer), 1);
  4119. };
  4120. }
  4121. exports.observeProperty = observeProperty;
  4122. /**
  4123. * A Map of all `TargetObservers` that have been installed.
  4124. */
  4125. var allTargetObservers = new WeakMap();
  4126. /**
  4127. * Installs a `TargetObservers` for the provided target (if not already
  4128. * installed), and replaces the given property with a getter and setter that
  4129. * will respond to changes and call `TargetObservers`.
  4130. *
  4131. * Subsequent calls to `installObserver()` with the same target and property
  4132. * will not override the property's previously installed getter/setter.
  4133. *
  4134. * @template T The observed target type.
  4135. * @template K The observed property to create a getter/setter for.
  4136. * @param target - The target to observe.
  4137. * @param property - The property to create a getter/setter for, if needed.
  4138. * @return The installed `TargetObservers` for the provided target.
  4139. */
  4140. function installObserver(target, property) {
  4141. var observersMap = new Map();
  4142. if (!allTargetObservers.has(target)) {
  4143. allTargetObservers.set(target, {
  4144. isEnabled: true,
  4145. getObservers: function getObservers(key) {
  4146. var observers = observersMap.get(key) || [];
  4147. if (!observersMap.has(key)) {
  4148. observersMap.set(key, observers);
  4149. }
  4150. return observers;
  4151. },
  4152. installedProperties: new Set()
  4153. });
  4154. }
  4155. var targetObservers = allTargetObservers.get(target);
  4156. if (targetObservers.installedProperties.has(property)) {
  4157. // The getter/setter has already been replaced for this property
  4158. return targetObservers;
  4159. }
  4160. // Retrieve (or create if it's a plain property) the original descriptor from
  4161. // the target...
  4162. var descriptor = getDescriptor(target, property) || {
  4163. configurable: true,
  4164. enumerable: true,
  4165. value: target[property],
  4166. writable: true
  4167. };
  4168. // ...and create a copy that will be used for the observer.
  4169. var observedDescriptor = __assign({}, descriptor);
  4170. var descGet = descriptor.get,
  4171. descSet = descriptor.set;
  4172. if ('value' in descriptor) {
  4173. // The descriptor is a simple value (not a getter/setter).
  4174. // For our observer descriptor that we copied, delete the value/writable
  4175. // properties, since they are incompatible with the get/set properties
  4176. // for descriptors.
  4177. delete observedDescriptor.value;
  4178. delete observedDescriptor.writable;
  4179. // Set up a simple getter...
  4180. var value_1 = descriptor.value;
  4181. descGet = function descGet() {
  4182. return value_1;
  4183. };
  4184. // ...and setter (if the original property was writable).
  4185. if (descriptor.writable) {
  4186. descSet = function descSet(newValue) {
  4187. value_1 = newValue;
  4188. };
  4189. }
  4190. }
  4191. if (descGet) {
  4192. observedDescriptor.get = function () {
  4193. // `this as T` needed for closure conformance
  4194. // tslint:disable-next-line:no-unnecessary-type-assertion
  4195. return descGet.call(this);
  4196. };
  4197. }
  4198. if (descSet) {
  4199. observedDescriptor.set = function (newValue) {
  4200. var e_4, _a;
  4201. // `thus as T` needed for closure conformance
  4202. // tslint:disable-next-line:no-unnecessary-type-assertion
  4203. var previous = descGet ? descGet.call(this) : newValue;
  4204. // tslint:disable-next-line:no-unnecessary-type-assertion
  4205. descSet.call(this, newValue);
  4206. if (targetObservers.isEnabled && (!descGet || newValue !== previous)) {
  4207. try {
  4208. for (var _b = __values(targetObservers.getObservers(property)), _c = _b.next(); !_c.done; _c = _b.next()) {
  4209. var observer = _c.value;
  4210. observer(newValue, previous);
  4211. }
  4212. } catch (e_4_1) {
  4213. e_4 = { error: e_4_1 };
  4214. } finally {
  4215. try {
  4216. if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
  4217. } finally {
  4218. if (e_4) throw e_4.error;
  4219. }
  4220. }
  4221. }
  4222. };
  4223. }
  4224. targetObservers.installedProperties.add(property);
  4225. Object.defineProperty(target, property, observedDescriptor);
  4226. return targetObservers;
  4227. }
  4228. /**
  4229. * Retrieves the descriptor for a property from the provided target. This
  4230. * function will walk up the target's prototype chain to search for the
  4231. * descriptor.
  4232. *
  4233. * @template T The target type.
  4234. * @template K The property type.
  4235. * @param target - The target to retrieve a descriptor from.
  4236. * @param property - The name of the property to retrieve a descriptor for.
  4237. * @return the descriptor, or undefined if it does not exist. Keep in mind that
  4238. * plain properties may not have a descriptor defined.
  4239. */
  4240. function getDescriptor(target, property) {
  4241. var descriptorTarget = target;
  4242. var descriptor;
  4243. while (descriptorTarget) {
  4244. descriptor = Object.getOwnPropertyDescriptor(descriptorTarget, property);
  4245. if (descriptor) {
  4246. break;
  4247. }
  4248. // Walk up the instance's prototype chain in case the property is declared
  4249. // on a superclass.
  4250. descriptorTarget = Object.getPrototypeOf(descriptorTarget);
  4251. }
  4252. return descriptor;
  4253. }
  4254. exports.getDescriptor = getDescriptor;
  4255. /**
  4256. * Enables or disables all observers for a provided target. Changes to observed
  4257. * properties will not call any observers when disabled.
  4258. *
  4259. * @template T The observed target type.
  4260. * @param target - The target to enable or disable observers for.
  4261. * @param enabled - True to enable or false to disable observers.
  4262. */
  4263. function setObserversEnabled(target, enabled) {
  4264. var targetObservers = allTargetObservers.get(target);
  4265. if (targetObservers) {
  4266. targetObservers.isEnabled = enabled;
  4267. }
  4268. }
  4269. exports.setObserversEnabled = setObserversEnabled;
  4270. /***/ }),
  4271. /***/ "./packages/mdc-dom/events.ts":
  4272. /*!************************************!*\
  4273. !*** ./packages/mdc-dom/events.ts ***!
  4274. \************************************/
  4275. /*! no static exports found */
  4276. /***/ (function(module, exports, __webpack_require__) {
  4277. "use strict";
  4278. /**
  4279. * @license
  4280. * Copyright 2019 Google Inc.
  4281. *
  4282. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4283. * of this software and associated documentation files (the "Software"), to deal
  4284. * in the Software without restriction, including without limitation the rights
  4285. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4286. * copies of the Software, and to permit persons to whom the Software is
  4287. * furnished to do so, subject to the following conditions:
  4288. *
  4289. * The above copyright notice and this permission notice shall be included in
  4290. * all copies or substantial portions of the Software.
  4291. *
  4292. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4293. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4294. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4295. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4296. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4297. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4298. * THE SOFTWARE.
  4299. */
  4300. Object.defineProperty(exports, "__esModule", { value: true });
  4301. exports.applyPassive = void 0;
  4302. /**
  4303. * Determine whether the current browser supports passive event listeners, and
  4304. * if so, use them.
  4305. */
  4306. function applyPassive(globalObj) {
  4307. if (globalObj === void 0) {
  4308. globalObj = window;
  4309. }
  4310. return supportsPassiveOption(globalObj) ? { passive: true } : false;
  4311. }
  4312. exports.applyPassive = applyPassive;
  4313. function supportsPassiveOption(globalObj) {
  4314. if (globalObj === void 0) {
  4315. globalObj = window;
  4316. }
  4317. // See
  4318. // https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
  4319. var passiveSupported = false;
  4320. try {
  4321. var options = {
  4322. // This function will be called when the browser
  4323. // attempts to access the passive property.
  4324. get passive() {
  4325. passiveSupported = true;
  4326. return false;
  4327. }
  4328. };
  4329. var handler = function handler() {};
  4330. globalObj.document.addEventListener('test', handler, options);
  4331. globalObj.document.removeEventListener('test', handler, options);
  4332. } catch (err) {
  4333. passiveSupported = false;
  4334. }
  4335. return passiveSupported;
  4336. }
  4337. /***/ }),
  4338. /***/ "./packages/mdc-dom/ponyfill.ts":
  4339. /*!**************************************!*\
  4340. !*** ./packages/mdc-dom/ponyfill.ts ***!
  4341. \**************************************/
  4342. /*! no static exports found */
  4343. /***/ (function(module, exports, __webpack_require__) {
  4344. "use strict";
  4345. /**
  4346. * @license
  4347. * Copyright 2018 Google Inc.
  4348. *
  4349. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4350. * of this software and associated documentation files (the "Software"), to deal
  4351. * in the Software without restriction, including without limitation the rights
  4352. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4353. * copies of the Software, and to permit persons to whom the Software is
  4354. * furnished to do so, subject to the following conditions:
  4355. *
  4356. * The above copyright notice and this permission notice shall be included in
  4357. * all copies or substantial portions of the Software.
  4358. *
  4359. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4360. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4361. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4362. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4363. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4364. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4365. * THE SOFTWARE.
  4366. */
  4367. Object.defineProperty(exports, "__esModule", { value: true });
  4368. exports.estimateScrollWidth = exports.matches = exports.closest = void 0;
  4369. /**
  4370. * @fileoverview A "ponyfill" is a polyfill that doesn't modify the global
  4371. * prototype chain. This makes ponyfills safer than traditional polyfills,
  4372. * especially for libraries like MDC.
  4373. */
  4374. function closest(element, selector) {
  4375. if (element.closest) {
  4376. return element.closest(selector);
  4377. }
  4378. var el = element;
  4379. while (el) {
  4380. if (matches(el, selector)) {
  4381. return el;
  4382. }
  4383. el = el.parentElement;
  4384. }
  4385. return null;
  4386. }
  4387. exports.closest = closest;
  4388. /** Element.matches with support for webkit and IE. */
  4389. function matches(element, selector) {
  4390. var nativeMatches = element.matches || element.webkitMatchesSelector || element.msMatchesSelector;
  4391. return nativeMatches.call(element, selector);
  4392. }
  4393. exports.matches = matches;
  4394. /**
  4395. * Used to compute the estimated scroll width of elements. When an element is
  4396. * hidden due to display: none; being applied to a parent element, the width is
  4397. * returned as 0. However, the element will have a true width once no longer
  4398. * inside a display: none context. This method computes an estimated width when
  4399. * the element is hidden or returns the true width when the element is visble.
  4400. * @param {Element} element the element whose width to estimate
  4401. */
  4402. function estimateScrollWidth(element) {
  4403. // Check the offsetParent. If the element inherits display: none from any
  4404. // parent, the offsetParent property will be null (see
  4405. // https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetParent).
  4406. // This check ensures we only clone the node when necessary.
  4407. var htmlEl = element;
  4408. if (htmlEl.offsetParent !== null) {
  4409. return htmlEl.scrollWidth;
  4410. }
  4411. var clone = htmlEl.cloneNode(true);
  4412. clone.style.setProperty('position', 'absolute');
  4413. clone.style.setProperty('transform', 'translate(-9999px, -9999px)');
  4414. document.documentElement.appendChild(clone);
  4415. var scrollWidth = clone.scrollWidth;
  4416. document.documentElement.removeChild(clone);
  4417. return scrollWidth;
  4418. }
  4419. exports.estimateScrollWidth = estimateScrollWidth;
  4420. /***/ }),
  4421. /***/ "./packages/mdc-ripple/component.ts":
  4422. /*!******************************************!*\
  4423. !*** ./packages/mdc-ripple/component.ts ***!
  4424. \******************************************/
  4425. /*! no static exports found */
  4426. /***/ (function(module, exports, __webpack_require__) {
  4427. "use strict";
  4428. /**
  4429. * @license
  4430. * Copyright 2016 Google Inc.
  4431. *
  4432. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4433. * of this software and associated documentation files (the "Software"), to deal
  4434. * in the Software without restriction, including without limitation the rights
  4435. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4436. * copies of the Software, and to permit persons to whom the Software is
  4437. * furnished to do so, subject to the following conditions:
  4438. *
  4439. * The above copyright notice and this permission notice shall be included in
  4440. * all copies or substantial portions of the Software.
  4441. *
  4442. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4443. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4444. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4445. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4446. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4447. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4448. * THE SOFTWARE.
  4449. */
  4450. var __extends = this && this.__extends || function () {
  4451. var _extendStatics = function extendStatics(d, b) {
  4452. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  4453. d.__proto__ = b;
  4454. } || function (d, b) {
  4455. for (var p in b) {
  4456. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  4457. }
  4458. };
  4459. return _extendStatics(d, b);
  4460. };
  4461. return function (d, b) {
  4462. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  4463. _extendStatics(d, b);
  4464. function __() {
  4465. this.constructor = d;
  4466. }
  4467. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  4468. };
  4469. }();
  4470. var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
  4471. if (k2 === undefined) k2 = k;
  4472. Object.defineProperty(o, k2, { enumerable: true, get: function get() {
  4473. return m[k];
  4474. } });
  4475. } : function (o, m, k, k2) {
  4476. if (k2 === undefined) k2 = k;
  4477. o[k2] = m[k];
  4478. });
  4479. var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
  4480. Object.defineProperty(o, "default", { enumerable: true, value: v });
  4481. } : function (o, v) {
  4482. o["default"] = v;
  4483. });
  4484. var __importStar = this && this.__importStar || function (mod) {
  4485. if (mod && mod.__esModule) return mod;
  4486. var result = {};
  4487. if (mod != null) for (var k in mod) {
  4488. if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
  4489. }__setModuleDefault(result, mod);
  4490. return result;
  4491. };
  4492. Object.defineProperty(exports, "__esModule", { value: true });
  4493. exports.MDCRipple = void 0;
  4494. var component_1 = __webpack_require__(/*! @material/base/component */ "./packages/mdc-base/component.ts");
  4495. var events_1 = __webpack_require__(/*! @material/dom/events */ "./packages/mdc-dom/events.ts");
  4496. var ponyfill_1 = __webpack_require__(/*! @material/dom/ponyfill */ "./packages/mdc-dom/ponyfill.ts");
  4497. var foundation_1 = __webpack_require__(/*! ./foundation */ "./packages/mdc-ripple/foundation.ts");
  4498. var util = __importStar(__webpack_require__(/*! ./util */ "./packages/mdc-ripple/util.ts"));
  4499. /** MDC Ripple */
  4500. var MDCRipple = /** @class */function (_super) {
  4501. __extends(MDCRipple, _super);
  4502. function MDCRipple() {
  4503. var _this = _super !== null && _super.apply(this, arguments) || this;
  4504. _this.disabled = false;
  4505. return _this;
  4506. }
  4507. MDCRipple.attachTo = function (root, opts) {
  4508. if (opts === void 0) {
  4509. opts = {
  4510. isUnbounded: undefined
  4511. };
  4512. }
  4513. var ripple = new MDCRipple(root);
  4514. // Only override unbounded behavior if option is explicitly specified
  4515. if (opts.isUnbounded !== undefined) {
  4516. ripple.unbounded = opts.isUnbounded;
  4517. }
  4518. return ripple;
  4519. };
  4520. MDCRipple.createAdapter = function (instance) {
  4521. return {
  4522. addClass: function addClass(className) {
  4523. instance.root.classList.add(className);
  4524. },
  4525. browserSupportsCssVars: function browserSupportsCssVars() {
  4526. return util.supportsCssVariables(window);
  4527. },
  4528. computeBoundingRect: function computeBoundingRect() {
  4529. return instance.root.getBoundingClientRect();
  4530. },
  4531. containsEventTarget: function containsEventTarget(target) {
  4532. return instance.root.contains(target);
  4533. },
  4534. deregisterDocumentInteractionHandler: function deregisterDocumentInteractionHandler(evtType, handler) {
  4535. document.documentElement.removeEventListener(evtType, handler, events_1.applyPassive());
  4536. },
  4537. deregisterInteractionHandler: function deregisterInteractionHandler(evtType, handler) {
  4538. instance.root.removeEventListener(evtType, handler, events_1.applyPassive());
  4539. },
  4540. deregisterResizeHandler: function deregisterResizeHandler(handler) {
  4541. window.removeEventListener('resize', handler);
  4542. },
  4543. getWindowPageOffset: function getWindowPageOffset() {
  4544. return { x: window.pageXOffset, y: window.pageYOffset };
  4545. },
  4546. isSurfaceActive: function isSurfaceActive() {
  4547. return ponyfill_1.matches(instance.root, ':active');
  4548. },
  4549. isSurfaceDisabled: function isSurfaceDisabled() {
  4550. return Boolean(instance.disabled);
  4551. },
  4552. isUnbounded: function isUnbounded() {
  4553. return Boolean(instance.unbounded);
  4554. },
  4555. registerDocumentInteractionHandler: function registerDocumentInteractionHandler(evtType, handler) {
  4556. document.documentElement.addEventListener(evtType, handler, events_1.applyPassive());
  4557. },
  4558. registerInteractionHandler: function registerInteractionHandler(evtType, handler) {
  4559. instance.root.addEventListener(evtType, handler, events_1.applyPassive());
  4560. },
  4561. registerResizeHandler: function registerResizeHandler(handler) {
  4562. window.addEventListener('resize', handler);
  4563. },
  4564. removeClass: function removeClass(className) {
  4565. instance.root.classList.remove(className);
  4566. },
  4567. updateCssVariable: function updateCssVariable(varName, value) {
  4568. instance.root.style.setProperty(varName, value);
  4569. }
  4570. };
  4571. };
  4572. Object.defineProperty(MDCRipple.prototype, "unbounded", {
  4573. get: function get() {
  4574. return Boolean(this.isUnbounded);
  4575. },
  4576. set: function set(unbounded) {
  4577. this.isUnbounded = Boolean(unbounded);
  4578. this.setUnbounded();
  4579. },
  4580. enumerable: false,
  4581. configurable: true
  4582. });
  4583. MDCRipple.prototype.activate = function () {
  4584. this.foundation.activate();
  4585. };
  4586. MDCRipple.prototype.deactivate = function () {
  4587. this.foundation.deactivate();
  4588. };
  4589. MDCRipple.prototype.layout = function () {
  4590. this.foundation.layout();
  4591. };
  4592. MDCRipple.prototype.getDefaultFoundation = function () {
  4593. return new foundation_1.MDCRippleFoundation(MDCRipple.createAdapter(this));
  4594. };
  4595. MDCRipple.prototype.initialSyncWithDOM = function () {
  4596. var root = this.root;
  4597. this.isUnbounded = 'mdcRippleIsUnbounded' in root.dataset;
  4598. };
  4599. /**
  4600. * Closure Compiler throws an access control error when directly accessing a
  4601. * protected or private property inside a getter/setter, like unbounded above.
  4602. * By accessing the protected property inside a method, we solve that problem.
  4603. * That's why this function exists.
  4604. */
  4605. MDCRipple.prototype.setUnbounded = function () {
  4606. this.foundation.setUnbounded(Boolean(this.isUnbounded));
  4607. };
  4608. return MDCRipple;
  4609. }(component_1.MDCComponent);
  4610. exports.MDCRipple = MDCRipple;
  4611. /***/ }),
  4612. /***/ "./packages/mdc-ripple/constants.ts":
  4613. /*!******************************************!*\
  4614. !*** ./packages/mdc-ripple/constants.ts ***!
  4615. \******************************************/
  4616. /*! no static exports found */
  4617. /***/ (function(module, exports, __webpack_require__) {
  4618. "use strict";
  4619. /**
  4620. * @license
  4621. * Copyright 2016 Google Inc.
  4622. *
  4623. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4624. * of this software and associated documentation files (the "Software"), to deal
  4625. * in the Software without restriction, including without limitation the rights
  4626. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4627. * copies of the Software, and to permit persons to whom the Software is
  4628. * furnished to do so, subject to the following conditions:
  4629. *
  4630. * The above copyright notice and this permission notice shall be included in
  4631. * all copies or substantial portions of the Software.
  4632. *
  4633. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4634. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4635. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4636. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4637. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4638. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4639. * THE SOFTWARE.
  4640. */
  4641. Object.defineProperty(exports, "__esModule", { value: true });
  4642. exports.numbers = exports.strings = exports.cssClasses = void 0;
  4643. exports.cssClasses = {
  4644. // Ripple is a special case where the "root" component is really a "mixin" of
  4645. // sorts,
  4646. // given that it's an 'upgrade' to an existing component. That being said it
  4647. // is the root
  4648. // CSS class that all other CSS classes derive from.
  4649. BG_FOCUSED: 'mdc-ripple-upgraded--background-focused',
  4650. FG_ACTIVATION: 'mdc-ripple-upgraded--foreground-activation',
  4651. FG_DEACTIVATION: 'mdc-ripple-upgraded--foreground-deactivation',
  4652. ROOT: 'mdc-ripple-upgraded',
  4653. UNBOUNDED: 'mdc-ripple-upgraded--unbounded'
  4654. };
  4655. exports.strings = {
  4656. VAR_FG_SCALE: '--mdc-ripple-fg-scale',
  4657. VAR_FG_SIZE: '--mdc-ripple-fg-size',
  4658. VAR_FG_TRANSLATE_END: '--mdc-ripple-fg-translate-end',
  4659. VAR_FG_TRANSLATE_START: '--mdc-ripple-fg-translate-start',
  4660. VAR_LEFT: '--mdc-ripple-left',
  4661. VAR_TOP: '--mdc-ripple-top'
  4662. };
  4663. exports.numbers = {
  4664. DEACTIVATION_TIMEOUT_MS: 225,
  4665. // animation duration)
  4666. FG_DEACTIVATION_MS: 150,
  4667. // (i.e. deactivation animation duration)
  4668. INITIAL_ORIGIN_SCALE: 0.6,
  4669. PADDING: 10,
  4670. TAP_DELAY_MS: 300 };
  4671. /***/ }),
  4672. /***/ "./packages/mdc-ripple/foundation.ts":
  4673. /*!*******************************************!*\
  4674. !*** ./packages/mdc-ripple/foundation.ts ***!
  4675. \*******************************************/
  4676. /*! no static exports found */
  4677. /***/ (function(module, exports, __webpack_require__) {
  4678. "use strict";
  4679. /**
  4680. * @license
  4681. * Copyright 2016 Google Inc.
  4682. *
  4683. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4684. * of this software and associated documentation files (the "Software"), to deal
  4685. * in the Software without restriction, including without limitation the rights
  4686. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4687. * copies of the Software, and to permit persons to whom the Software is
  4688. * furnished to do so, subject to the following conditions:
  4689. *
  4690. * The above copyright notice and this permission notice shall be included in
  4691. * all copies or substantial portions of the Software.
  4692. *
  4693. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4694. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4695. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4696. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4697. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4698. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4699. * THE SOFTWARE.
  4700. */
  4701. var __extends = this && this.__extends || function () {
  4702. var _extendStatics = function extendStatics(d, b) {
  4703. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  4704. d.__proto__ = b;
  4705. } || function (d, b) {
  4706. for (var p in b) {
  4707. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  4708. }
  4709. };
  4710. return _extendStatics(d, b);
  4711. };
  4712. return function (d, b) {
  4713. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  4714. _extendStatics(d, b);
  4715. function __() {
  4716. this.constructor = d;
  4717. }
  4718. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  4719. };
  4720. }();
  4721. var __assign = this && this.__assign || function () {
  4722. __assign = Object.assign || function (t) {
  4723. for (var s, i = 1, n = arguments.length; i < n; i++) {
  4724. s = arguments[i];
  4725. for (var p in s) {
  4726. if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
  4727. }
  4728. }
  4729. return t;
  4730. };
  4731. return __assign.apply(this, arguments);
  4732. };
  4733. var __values = this && this.__values || function (o) {
  4734. var s = typeof Symbol === "function" && Symbol.iterator,
  4735. m = s && o[s],
  4736. i = 0;
  4737. if (m) return m.call(o);
  4738. if (o && typeof o.length === "number") return {
  4739. next: function next() {
  4740. if (o && i >= o.length) o = void 0;
  4741. return { value: o && o[i++], done: !o };
  4742. }
  4743. };
  4744. throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
  4745. };
  4746. Object.defineProperty(exports, "__esModule", { value: true });
  4747. exports.MDCRippleFoundation = void 0;
  4748. var foundation_1 = __webpack_require__(/*! @material/base/foundation */ "./packages/mdc-base/foundation.ts");
  4749. var constants_1 = __webpack_require__(/*! ./constants */ "./packages/mdc-ripple/constants.ts");
  4750. var util_1 = __webpack_require__(/*! ./util */ "./packages/mdc-ripple/util.ts");
  4751. // Activation events registered on the root element of each instance for
  4752. // activation
  4753. var ACTIVATION_EVENT_TYPES = ['touchstart', 'pointerdown', 'mousedown', 'keydown'];
  4754. // Deactivation events registered on documentElement when a pointer-related down
  4755. // event occurs
  4756. var POINTER_DEACTIVATION_EVENT_TYPES = ['touchend', 'pointerup', 'mouseup', 'contextmenu'];
  4757. // simultaneous nested activations
  4758. var activatedTargets = [];
  4759. /** MDC Ripple Foundation */
  4760. var MDCRippleFoundation = /** @class */function (_super) {
  4761. __extends(MDCRippleFoundation, _super);
  4762. function MDCRippleFoundation(adapter) {
  4763. var _this = _super.call(this, __assign(__assign({}, MDCRippleFoundation.defaultAdapter), adapter)) || this;
  4764. _this.activationAnimationHasEnded = false;
  4765. _this.activationTimer = 0;
  4766. _this.fgDeactivationRemovalTimer = 0;
  4767. _this.fgScale = '0';
  4768. _this.frame = { width: 0, height: 0 };
  4769. _this.initialSize = 0;
  4770. _this.layoutFrame = 0;
  4771. _this.maxRadius = 0;
  4772. _this.unboundedCoords = { left: 0, top: 0 };
  4773. _this.activationState = _this.defaultActivationState();
  4774. _this.activationTimerCallback = function () {
  4775. _this.activationAnimationHasEnded = true;
  4776. _this.runDeactivationUXLogicIfReady();
  4777. };
  4778. _this.activateHandler = function (e) {
  4779. _this.activateImpl(e);
  4780. };
  4781. _this.deactivateHandler = function () {
  4782. _this.deactivateImpl();
  4783. };
  4784. _this.focusHandler = function () {
  4785. _this.handleFocus();
  4786. };
  4787. _this.blurHandler = function () {
  4788. _this.handleBlur();
  4789. };
  4790. _this.resizeHandler = function () {
  4791. _this.layout();
  4792. };
  4793. return _this;
  4794. }
  4795. Object.defineProperty(MDCRippleFoundation, "cssClasses", {
  4796. get: function get() {
  4797. return constants_1.cssClasses;
  4798. },
  4799. enumerable: false,
  4800. configurable: true
  4801. });
  4802. Object.defineProperty(MDCRippleFoundation, "strings", {
  4803. get: function get() {
  4804. return constants_1.strings;
  4805. },
  4806. enumerable: false,
  4807. configurable: true
  4808. });
  4809. Object.defineProperty(MDCRippleFoundation, "numbers", {
  4810. get: function get() {
  4811. return constants_1.numbers;
  4812. },
  4813. enumerable: false,
  4814. configurable: true
  4815. });
  4816. Object.defineProperty(MDCRippleFoundation, "defaultAdapter", {
  4817. get: function get() {
  4818. return {
  4819. addClass: function addClass() {
  4820. return undefined;
  4821. },
  4822. browserSupportsCssVars: function browserSupportsCssVars() {
  4823. return true;
  4824. },
  4825. computeBoundingRect: function computeBoundingRect() {
  4826. return { top: 0, right: 0, bottom: 0, left: 0, width: 0, height: 0 };
  4827. },
  4828. containsEventTarget: function containsEventTarget() {
  4829. return true;
  4830. },
  4831. deregisterDocumentInteractionHandler: function deregisterDocumentInteractionHandler() {
  4832. return undefined;
  4833. },
  4834. deregisterInteractionHandler: function deregisterInteractionHandler() {
  4835. return undefined;
  4836. },
  4837. deregisterResizeHandler: function deregisterResizeHandler() {
  4838. return undefined;
  4839. },
  4840. getWindowPageOffset: function getWindowPageOffset() {
  4841. return { x: 0, y: 0 };
  4842. },
  4843. isSurfaceActive: function isSurfaceActive() {
  4844. return true;
  4845. },
  4846. isSurfaceDisabled: function isSurfaceDisabled() {
  4847. return true;
  4848. },
  4849. isUnbounded: function isUnbounded() {
  4850. return true;
  4851. },
  4852. registerDocumentInteractionHandler: function registerDocumentInteractionHandler() {
  4853. return undefined;
  4854. },
  4855. registerInteractionHandler: function registerInteractionHandler() {
  4856. return undefined;
  4857. },
  4858. registerResizeHandler: function registerResizeHandler() {
  4859. return undefined;
  4860. },
  4861. removeClass: function removeClass() {
  4862. return undefined;
  4863. },
  4864. updateCssVariable: function updateCssVariable() {
  4865. return undefined;
  4866. }
  4867. };
  4868. },
  4869. enumerable: false,
  4870. configurable: true
  4871. });
  4872. MDCRippleFoundation.prototype.init = function () {
  4873. var _this = this;
  4874. var supportsPressRipple = this.supportsPressRipple();
  4875. this.registerRootHandlers(supportsPressRipple);
  4876. if (supportsPressRipple) {
  4877. var _a = MDCRippleFoundation.cssClasses,
  4878. ROOT_1 = _a.ROOT,
  4879. UNBOUNDED_1 = _a.UNBOUNDED;
  4880. requestAnimationFrame(function () {
  4881. _this.adapter.addClass(ROOT_1);
  4882. if (_this.adapter.isUnbounded()) {
  4883. _this.adapter.addClass(UNBOUNDED_1);
  4884. // Unbounded ripples need layout logic applied immediately to set
  4885. // coordinates for both shade and ripple
  4886. _this.layoutInternal();
  4887. }
  4888. });
  4889. }
  4890. };
  4891. MDCRippleFoundation.prototype.destroy = function () {
  4892. var _this = this;
  4893. if (this.supportsPressRipple()) {
  4894. if (this.activationTimer) {
  4895. clearTimeout(this.activationTimer);
  4896. this.activationTimer = 0;
  4897. this.adapter.removeClass(MDCRippleFoundation.cssClasses.FG_ACTIVATION);
  4898. }
  4899. if (this.fgDeactivationRemovalTimer) {
  4900. clearTimeout(this.fgDeactivationRemovalTimer);
  4901. this.fgDeactivationRemovalTimer = 0;
  4902. this.adapter.removeClass(MDCRippleFoundation.cssClasses.FG_DEACTIVATION);
  4903. }
  4904. var _a = MDCRippleFoundation.cssClasses,
  4905. ROOT_2 = _a.ROOT,
  4906. UNBOUNDED_2 = _a.UNBOUNDED;
  4907. requestAnimationFrame(function () {
  4908. _this.adapter.removeClass(ROOT_2);
  4909. _this.adapter.removeClass(UNBOUNDED_2);
  4910. _this.removeCssVars();
  4911. });
  4912. }
  4913. this.deregisterRootHandlers();
  4914. this.deregisterDeactivationHandlers();
  4915. };
  4916. /**
  4917. * @param evt Optional event containing position information.
  4918. */
  4919. MDCRippleFoundation.prototype.activate = function (evt) {
  4920. this.activateImpl(evt);
  4921. };
  4922. MDCRippleFoundation.prototype.deactivate = function () {
  4923. this.deactivateImpl();
  4924. };
  4925. MDCRippleFoundation.prototype.layout = function () {
  4926. var _this = this;
  4927. if (this.layoutFrame) {
  4928. cancelAnimationFrame(this.layoutFrame);
  4929. }
  4930. this.layoutFrame = requestAnimationFrame(function () {
  4931. _this.layoutInternal();
  4932. _this.layoutFrame = 0;
  4933. });
  4934. };
  4935. MDCRippleFoundation.prototype.setUnbounded = function (unbounded) {
  4936. var UNBOUNDED = MDCRippleFoundation.cssClasses.UNBOUNDED;
  4937. if (unbounded) {
  4938. this.adapter.addClass(UNBOUNDED);
  4939. } else {
  4940. this.adapter.removeClass(UNBOUNDED);
  4941. }
  4942. };
  4943. MDCRippleFoundation.prototype.handleFocus = function () {
  4944. var _this = this;
  4945. requestAnimationFrame(function () {
  4946. _this.adapter.addClass(MDCRippleFoundation.cssClasses.BG_FOCUSED);
  4947. });
  4948. };
  4949. MDCRippleFoundation.prototype.handleBlur = function () {
  4950. var _this = this;
  4951. requestAnimationFrame(function () {
  4952. _this.adapter.removeClass(MDCRippleFoundation.cssClasses.BG_FOCUSED);
  4953. });
  4954. };
  4955. /**
  4956. * We compute this property so that we are not querying information about the
  4957. * client until the point in time where the foundation requests it. This
  4958. * prevents scenarios where client-side feature-detection may happen too
  4959. * early, such as when components are rendered on the server and then
  4960. * initialized at mount time on the client.
  4961. */
  4962. MDCRippleFoundation.prototype.supportsPressRipple = function () {
  4963. return this.adapter.browserSupportsCssVars();
  4964. };
  4965. MDCRippleFoundation.prototype.defaultActivationState = function () {
  4966. return {
  4967. activationEvent: undefined,
  4968. hasDeactivationUXRun: false,
  4969. isActivated: false,
  4970. isProgrammatic: false,
  4971. wasActivatedByPointer: false,
  4972. wasElementMadeActive: false
  4973. };
  4974. };
  4975. /**
  4976. * supportsPressRipple Passed from init to save a redundant function call
  4977. */
  4978. MDCRippleFoundation.prototype.registerRootHandlers = function (supportsPressRipple) {
  4979. var e_1, _a;
  4980. if (supportsPressRipple) {
  4981. try {
  4982. for (var ACTIVATION_EVENT_TYPES_1 = __values(ACTIVATION_EVENT_TYPES), ACTIVATION_EVENT_TYPES_1_1 = ACTIVATION_EVENT_TYPES_1.next(); !ACTIVATION_EVENT_TYPES_1_1.done; ACTIVATION_EVENT_TYPES_1_1 = ACTIVATION_EVENT_TYPES_1.next()) {
  4983. var evtType = ACTIVATION_EVENT_TYPES_1_1.value;
  4984. this.adapter.registerInteractionHandler(evtType, this.activateHandler);
  4985. }
  4986. } catch (e_1_1) {
  4987. e_1 = { error: e_1_1 };
  4988. } finally {
  4989. try {
  4990. if (ACTIVATION_EVENT_TYPES_1_1 && !ACTIVATION_EVENT_TYPES_1_1.done && (_a = ACTIVATION_EVENT_TYPES_1.return)) _a.call(ACTIVATION_EVENT_TYPES_1);
  4991. } finally {
  4992. if (e_1) throw e_1.error;
  4993. }
  4994. }
  4995. if (this.adapter.isUnbounded()) {
  4996. this.adapter.registerResizeHandler(this.resizeHandler);
  4997. }
  4998. }
  4999. this.adapter.registerInteractionHandler('focus', this.focusHandler);
  5000. this.adapter.registerInteractionHandler('blur', this.blurHandler);
  5001. };
  5002. MDCRippleFoundation.prototype.registerDeactivationHandlers = function (evt) {
  5003. var e_2, _a;
  5004. if (evt.type === 'keydown') {
  5005. this.adapter.registerInteractionHandler('keyup', this.deactivateHandler);
  5006. } else {
  5007. try {
  5008. for (var POINTER_DEACTIVATION_EVENT_TYPES_1 = __values(POINTER_DEACTIVATION_EVENT_TYPES), POINTER_DEACTIVATION_EVENT_TYPES_1_1 = POINTER_DEACTIVATION_EVENT_TYPES_1.next(); !POINTER_DEACTIVATION_EVENT_TYPES_1_1.done; POINTER_DEACTIVATION_EVENT_TYPES_1_1 = POINTER_DEACTIVATION_EVENT_TYPES_1.next()) {
  5009. var evtType = POINTER_DEACTIVATION_EVENT_TYPES_1_1.value;
  5010. this.adapter.registerDocumentInteractionHandler(evtType, this.deactivateHandler);
  5011. }
  5012. } catch (e_2_1) {
  5013. e_2 = { error: e_2_1 };
  5014. } finally {
  5015. try {
  5016. if (POINTER_DEACTIVATION_EVENT_TYPES_1_1 && !POINTER_DEACTIVATION_EVENT_TYPES_1_1.done && (_a = POINTER_DEACTIVATION_EVENT_TYPES_1.return)) _a.call(POINTER_DEACTIVATION_EVENT_TYPES_1);
  5017. } finally {
  5018. if (e_2) throw e_2.error;
  5019. }
  5020. }
  5021. }
  5022. };
  5023. MDCRippleFoundation.prototype.deregisterRootHandlers = function () {
  5024. var e_3, _a;
  5025. try {
  5026. for (var ACTIVATION_EVENT_TYPES_2 = __values(ACTIVATION_EVENT_TYPES), ACTIVATION_EVENT_TYPES_2_1 = ACTIVATION_EVENT_TYPES_2.next(); !ACTIVATION_EVENT_TYPES_2_1.done; ACTIVATION_EVENT_TYPES_2_1 = ACTIVATION_EVENT_TYPES_2.next()) {
  5027. var evtType = ACTIVATION_EVENT_TYPES_2_1.value;
  5028. this.adapter.deregisterInteractionHandler(evtType, this.activateHandler);
  5029. }
  5030. } catch (e_3_1) {
  5031. e_3 = { error: e_3_1 };
  5032. } finally {
  5033. try {
  5034. if (ACTIVATION_EVENT_TYPES_2_1 && !ACTIVATION_EVENT_TYPES_2_1.done && (_a = ACTIVATION_EVENT_TYPES_2.return)) _a.call(ACTIVATION_EVENT_TYPES_2);
  5035. } finally {
  5036. if (e_3) throw e_3.error;
  5037. }
  5038. }
  5039. this.adapter.deregisterInteractionHandler('focus', this.focusHandler);
  5040. this.adapter.deregisterInteractionHandler('blur', this.blurHandler);
  5041. if (this.adapter.isUnbounded()) {
  5042. this.adapter.deregisterResizeHandler(this.resizeHandler);
  5043. }
  5044. };
  5045. MDCRippleFoundation.prototype.deregisterDeactivationHandlers = function () {
  5046. var e_4, _a;
  5047. this.adapter.deregisterInteractionHandler('keyup', this.deactivateHandler);
  5048. try {
  5049. for (var POINTER_DEACTIVATION_EVENT_TYPES_2 = __values(POINTER_DEACTIVATION_EVENT_TYPES), POINTER_DEACTIVATION_EVENT_TYPES_2_1 = POINTER_DEACTIVATION_EVENT_TYPES_2.next(); !POINTER_DEACTIVATION_EVENT_TYPES_2_1.done; POINTER_DEACTIVATION_EVENT_TYPES_2_1 = POINTER_DEACTIVATION_EVENT_TYPES_2.next()) {
  5050. var evtType = POINTER_DEACTIVATION_EVENT_TYPES_2_1.value;
  5051. this.adapter.deregisterDocumentInteractionHandler(evtType, this.deactivateHandler);
  5052. }
  5053. } catch (e_4_1) {
  5054. e_4 = { error: e_4_1 };
  5055. } finally {
  5056. try {
  5057. if (POINTER_DEACTIVATION_EVENT_TYPES_2_1 && !POINTER_DEACTIVATION_EVENT_TYPES_2_1.done && (_a = POINTER_DEACTIVATION_EVENT_TYPES_2.return)) _a.call(POINTER_DEACTIVATION_EVENT_TYPES_2);
  5058. } finally {
  5059. if (e_4) throw e_4.error;
  5060. }
  5061. }
  5062. };
  5063. MDCRippleFoundation.prototype.removeCssVars = function () {
  5064. var _this = this;
  5065. var rippleStrings = MDCRippleFoundation.strings;
  5066. var keys = Object.keys(rippleStrings);
  5067. keys.forEach(function (key) {
  5068. if (key.indexOf('VAR_') === 0) {
  5069. _this.adapter.updateCssVariable(rippleStrings[key], null);
  5070. }
  5071. });
  5072. };
  5073. MDCRippleFoundation.prototype.activateImpl = function (evt) {
  5074. var _this = this;
  5075. if (this.adapter.isSurfaceDisabled()) {
  5076. return;
  5077. }
  5078. var activationState = this.activationState;
  5079. if (activationState.isActivated) {
  5080. return;
  5081. }
  5082. // Avoid reacting to follow-on events fired by touch device after an
  5083. // already-processed user interaction
  5084. var previousActivationEvent = this.previousActivationEvent;
  5085. var isSameInteraction = previousActivationEvent && evt !== undefined && previousActivationEvent.type !== evt.type;
  5086. if (isSameInteraction) {
  5087. return;
  5088. }
  5089. activationState.isActivated = true;
  5090. activationState.isProgrammatic = evt === undefined;
  5091. activationState.activationEvent = evt;
  5092. activationState.wasActivatedByPointer = activationState.isProgrammatic ? false : evt !== undefined && (evt.type === 'mousedown' || evt.type === 'touchstart' || evt.type === 'pointerdown');
  5093. var hasActivatedChild = evt !== undefined && activatedTargets.length > 0 && activatedTargets.some(function (target) {
  5094. return _this.adapter.containsEventTarget(target);
  5095. });
  5096. if (hasActivatedChild) {
  5097. // Immediately reset activation state, while preserving logic that
  5098. // prevents touch follow-on events
  5099. this.resetActivationState();
  5100. return;
  5101. }
  5102. if (evt !== undefined) {
  5103. activatedTargets.push(evt.target);
  5104. this.registerDeactivationHandlers(evt);
  5105. }
  5106. activationState.wasElementMadeActive = this.checkElementMadeActive(evt);
  5107. if (activationState.wasElementMadeActive) {
  5108. this.animateActivation();
  5109. }
  5110. requestAnimationFrame(function () {
  5111. // Reset array on next frame after the current event has had a chance to
  5112. // bubble to prevent ancestor ripples
  5113. activatedTargets = [];
  5114. if (!activationState.wasElementMadeActive && evt !== undefined && (evt.key === ' ' || evt.keyCode === 32)) {
  5115. // If space was pressed, try again within an rAF call to detect :active,
  5116. // because different UAs report active states inconsistently when
  5117. // they're called within event handling code:
  5118. // - https://bugs.chromium.org/p/chromium/issues/detail?id=635971
  5119. // - https://bugzilla.mozilla.org/show_bug.cgi?id=1293741
  5120. // We try first outside rAF to support Edge, which does not exhibit this
  5121. // problem, but will crash if a CSS variable is set within a rAF
  5122. // callback for a submit button interaction (#2241).
  5123. activationState.wasElementMadeActive = _this.checkElementMadeActive(evt);
  5124. if (activationState.wasElementMadeActive) {
  5125. _this.animateActivation();
  5126. }
  5127. }
  5128. if (!activationState.wasElementMadeActive) {
  5129. // Reset activation state immediately if element was not made active.
  5130. _this.activationState = _this.defaultActivationState();
  5131. }
  5132. });
  5133. };
  5134. MDCRippleFoundation.prototype.checkElementMadeActive = function (evt) {
  5135. return evt !== undefined && evt.type === 'keydown' ? this.adapter.isSurfaceActive() : true;
  5136. };
  5137. MDCRippleFoundation.prototype.animateActivation = function () {
  5138. var _this = this;
  5139. var _a = MDCRippleFoundation.strings,
  5140. VAR_FG_TRANSLATE_START = _a.VAR_FG_TRANSLATE_START,
  5141. VAR_FG_TRANSLATE_END = _a.VAR_FG_TRANSLATE_END;
  5142. var _b = MDCRippleFoundation.cssClasses,
  5143. FG_DEACTIVATION = _b.FG_DEACTIVATION,
  5144. FG_ACTIVATION = _b.FG_ACTIVATION;
  5145. var DEACTIVATION_TIMEOUT_MS = MDCRippleFoundation.numbers.DEACTIVATION_TIMEOUT_MS;
  5146. this.layoutInternal();
  5147. var translateStart = '';
  5148. var translateEnd = '';
  5149. if (!this.adapter.isUnbounded()) {
  5150. var _c = this.getFgTranslationCoordinates(),
  5151. startPoint = _c.startPoint,
  5152. endPoint = _c.endPoint;
  5153. translateStart = startPoint.x + "px, " + startPoint.y + "px";
  5154. translateEnd = endPoint.x + "px, " + endPoint.y + "px";
  5155. }
  5156. this.adapter.updateCssVariable(VAR_FG_TRANSLATE_START, translateStart);
  5157. this.adapter.updateCssVariable(VAR_FG_TRANSLATE_END, translateEnd);
  5158. // Cancel any ongoing activation/deactivation animations
  5159. clearTimeout(this.activationTimer);
  5160. clearTimeout(this.fgDeactivationRemovalTimer);
  5161. this.rmBoundedActivationClasses();
  5162. this.adapter.removeClass(FG_DEACTIVATION);
  5163. // Force layout in order to re-trigger the animation.
  5164. this.adapter.computeBoundingRect();
  5165. this.adapter.addClass(FG_ACTIVATION);
  5166. this.activationTimer = setTimeout(function () {
  5167. _this.activationTimerCallback();
  5168. }, DEACTIVATION_TIMEOUT_MS);
  5169. };
  5170. MDCRippleFoundation.prototype.getFgTranslationCoordinates = function () {
  5171. var _a = this.activationState,
  5172. activationEvent = _a.activationEvent,
  5173. wasActivatedByPointer = _a.wasActivatedByPointer;
  5174. var startPoint;
  5175. if (wasActivatedByPointer) {
  5176. startPoint = util_1.getNormalizedEventCoords(activationEvent, this.adapter.getWindowPageOffset(), this.adapter.computeBoundingRect());
  5177. } else {
  5178. startPoint = {
  5179. x: this.frame.width / 2,
  5180. y: this.frame.height / 2
  5181. };
  5182. }
  5183. // Center the element around the start point.
  5184. startPoint = {
  5185. x: startPoint.x - this.initialSize / 2,
  5186. y: startPoint.y - this.initialSize / 2
  5187. };
  5188. var endPoint = {
  5189. x: this.frame.width / 2 - this.initialSize / 2,
  5190. y: this.frame.height / 2 - this.initialSize / 2
  5191. };
  5192. return { startPoint: startPoint, endPoint: endPoint };
  5193. };
  5194. MDCRippleFoundation.prototype.runDeactivationUXLogicIfReady = function () {
  5195. var _this = this;
  5196. // This method is called both when a pointing device is released, and when
  5197. // the activation animation ends. The deactivation animation should only run
  5198. // after both of those occur.
  5199. var FG_DEACTIVATION = MDCRippleFoundation.cssClasses.FG_DEACTIVATION;
  5200. var _a = this.activationState,
  5201. hasDeactivationUXRun = _a.hasDeactivationUXRun,
  5202. isActivated = _a.isActivated;
  5203. var activationHasEnded = hasDeactivationUXRun || !isActivated;
  5204. if (activationHasEnded && this.activationAnimationHasEnded) {
  5205. this.rmBoundedActivationClasses();
  5206. this.adapter.addClass(FG_DEACTIVATION);
  5207. this.fgDeactivationRemovalTimer = setTimeout(function () {
  5208. _this.adapter.removeClass(FG_DEACTIVATION);
  5209. }, constants_1.numbers.FG_DEACTIVATION_MS);
  5210. }
  5211. };
  5212. MDCRippleFoundation.prototype.rmBoundedActivationClasses = function () {
  5213. var FG_ACTIVATION = MDCRippleFoundation.cssClasses.FG_ACTIVATION;
  5214. this.adapter.removeClass(FG_ACTIVATION);
  5215. this.activationAnimationHasEnded = false;
  5216. this.adapter.computeBoundingRect();
  5217. };
  5218. MDCRippleFoundation.prototype.resetActivationState = function () {
  5219. var _this = this;
  5220. this.previousActivationEvent = this.activationState.activationEvent;
  5221. this.activationState = this.defaultActivationState();
  5222. // Touch devices may fire additional events for the same interaction within
  5223. // a short time. Store the previous event until it's safe to assume that
  5224. // subsequent events are for new interactions.
  5225. setTimeout(function () {
  5226. return _this.previousActivationEvent = undefined;
  5227. }, MDCRippleFoundation.numbers.TAP_DELAY_MS);
  5228. };
  5229. MDCRippleFoundation.prototype.deactivateImpl = function () {
  5230. var _this = this;
  5231. var activationState = this.activationState;
  5232. // This can happen in scenarios such as when you have a keyup event that
  5233. // blurs the element.
  5234. if (!activationState.isActivated) {
  5235. return;
  5236. }
  5237. var state = __assign({}, activationState);
  5238. if (activationState.isProgrammatic) {
  5239. requestAnimationFrame(function () {
  5240. _this.animateDeactivation(state);
  5241. });
  5242. this.resetActivationState();
  5243. } else {
  5244. this.deregisterDeactivationHandlers();
  5245. requestAnimationFrame(function () {
  5246. _this.activationState.hasDeactivationUXRun = true;
  5247. _this.animateDeactivation(state);
  5248. _this.resetActivationState();
  5249. });
  5250. }
  5251. };
  5252. MDCRippleFoundation.prototype.animateDeactivation = function (_a) {
  5253. var wasActivatedByPointer = _a.wasActivatedByPointer,
  5254. wasElementMadeActive = _a.wasElementMadeActive;
  5255. if (wasActivatedByPointer || wasElementMadeActive) {
  5256. this.runDeactivationUXLogicIfReady();
  5257. }
  5258. };
  5259. MDCRippleFoundation.prototype.layoutInternal = function () {
  5260. var _this = this;
  5261. this.frame = this.adapter.computeBoundingRect();
  5262. var maxDim = Math.max(this.frame.height, this.frame.width);
  5263. // Surface diameter is treated differently for unbounded vs. bounded
  5264. // ripples. Unbounded ripple diameter is calculated smaller since the
  5265. // surface is expected to already be padded appropriately to extend the
  5266. // hitbox, and the ripple is expected to meet the edges of the padded hitbox
  5267. // (which is typically square). Bounded ripples, on the other hand, are
  5268. // fully expected to expand beyond the surface's longest diameter
  5269. // (calculated based on the diagonal plus a constant padding), and are
  5270. // clipped at the surface's border via `overflow: hidden`.
  5271. var getBoundedRadius = function getBoundedRadius() {
  5272. var hypotenuse = Math.sqrt(Math.pow(_this.frame.width, 2) + Math.pow(_this.frame.height, 2));
  5273. return hypotenuse + MDCRippleFoundation.numbers.PADDING;
  5274. };
  5275. this.maxRadius = this.adapter.isUnbounded() ? maxDim : getBoundedRadius();
  5276. // Ripple is sized as a fraction of the largest dimension of the surface,
  5277. // then scales up using a CSS scale transform
  5278. var initialSize = Math.floor(maxDim * MDCRippleFoundation.numbers.INITIAL_ORIGIN_SCALE);
  5279. // Unbounded ripple size should always be even number to equally center
  5280. // align.
  5281. if (this.adapter.isUnbounded() && initialSize % 2 !== 0) {
  5282. this.initialSize = initialSize - 1;
  5283. } else {
  5284. this.initialSize = initialSize;
  5285. }
  5286. this.fgScale = "" + this.maxRadius / this.initialSize;
  5287. this.updateLayoutCssVars();
  5288. };
  5289. MDCRippleFoundation.prototype.updateLayoutCssVars = function () {
  5290. var _a = MDCRippleFoundation.strings,
  5291. VAR_FG_SIZE = _a.VAR_FG_SIZE,
  5292. VAR_LEFT = _a.VAR_LEFT,
  5293. VAR_TOP = _a.VAR_TOP,
  5294. VAR_FG_SCALE = _a.VAR_FG_SCALE;
  5295. this.adapter.updateCssVariable(VAR_FG_SIZE, this.initialSize + "px");
  5296. this.adapter.updateCssVariable(VAR_FG_SCALE, this.fgScale);
  5297. if (this.adapter.isUnbounded()) {
  5298. this.unboundedCoords = {
  5299. left: Math.round(this.frame.width / 2 - this.initialSize / 2),
  5300. top: Math.round(this.frame.height / 2 - this.initialSize / 2)
  5301. };
  5302. this.adapter.updateCssVariable(VAR_LEFT, this.unboundedCoords.left + "px");
  5303. this.adapter.updateCssVariable(VAR_TOP, this.unboundedCoords.top + "px");
  5304. }
  5305. };
  5306. return MDCRippleFoundation;
  5307. }(foundation_1.MDCFoundation);
  5308. exports.MDCRippleFoundation = MDCRippleFoundation;
  5309. // tslint:disable-next-line:no-default-export Needed for backward compatibility with MDC Web v0.44.0 and earlier.
  5310. exports.default = MDCRippleFoundation;
  5311. /***/ }),
  5312. /***/ "./packages/mdc-ripple/util.ts":
  5313. /*!*************************************!*\
  5314. !*** ./packages/mdc-ripple/util.ts ***!
  5315. \*************************************/
  5316. /*! no static exports found */
  5317. /***/ (function(module, exports, __webpack_require__) {
  5318. "use strict";
  5319. Object.defineProperty(exports, "__esModule", { value: true });
  5320. exports.getNormalizedEventCoords = exports.supportsCssVariables = void 0;
  5321. /**
  5322. * Stores result from supportsCssVariables to avoid redundant processing to
  5323. * detect CSS custom variable support.
  5324. */
  5325. var supportsCssVariables_;
  5326. function supportsCssVariables(windowObj, forceRefresh) {
  5327. if (forceRefresh === void 0) {
  5328. forceRefresh = false;
  5329. }
  5330. var CSS = windowObj.CSS;
  5331. var supportsCssVars = supportsCssVariables_;
  5332. if (typeof supportsCssVariables_ === 'boolean' && !forceRefresh) {
  5333. return supportsCssVariables_;
  5334. }
  5335. var supportsFunctionPresent = CSS && typeof CSS.supports === 'function';
  5336. if (!supportsFunctionPresent) {
  5337. return false;
  5338. }
  5339. var explicitlySupportsCssVars = CSS.supports('--css-vars', 'yes');
  5340. // See: https://bugs.webkit.org/show_bug.cgi?id=154669
  5341. // See: README section on Safari
  5342. var weAreFeatureDetectingSafari10plus = CSS.supports('(--css-vars: yes)') && CSS.supports('color', '#00000000');
  5343. supportsCssVars = explicitlySupportsCssVars || weAreFeatureDetectingSafari10plus;
  5344. if (!forceRefresh) {
  5345. supportsCssVariables_ = supportsCssVars;
  5346. }
  5347. return supportsCssVars;
  5348. }
  5349. exports.supportsCssVariables = supportsCssVariables;
  5350. function getNormalizedEventCoords(evt, pageOffset, clientRect) {
  5351. if (!evt) {
  5352. return { x: 0, y: 0 };
  5353. }
  5354. var x = pageOffset.x,
  5355. y = pageOffset.y;
  5356. var documentX = x + clientRect.left;
  5357. var documentY = y + clientRect.top;
  5358. var normalizedX;
  5359. var normalizedY;
  5360. // Determine touch point relative to the ripple container.
  5361. if (evt.type === 'touchstart') {
  5362. var touchEvent = evt;
  5363. normalizedX = touchEvent.changedTouches[0].pageX - documentX;
  5364. normalizedY = touchEvent.changedTouches[0].pageY - documentY;
  5365. } else {
  5366. var mouseEvent = evt;
  5367. normalizedX = mouseEvent.pageX - documentX;
  5368. normalizedY = mouseEvent.pageY - documentY;
  5369. }
  5370. return { x: normalizedX, y: normalizedY };
  5371. }
  5372. exports.getNormalizedEventCoords = getNormalizedEventCoords;
  5373. /***/ }),
  5374. /***/ "./packages/mdc-switch/adapter.ts":
  5375. /*!****************************************!*\
  5376. !*** ./packages/mdc-switch/adapter.ts ***!
  5377. \****************************************/
  5378. /*! no static exports found */
  5379. /***/ (function(module, exports, __webpack_require__) {
  5380. "use strict";
  5381. /**
  5382. * @license
  5383. * Copyright 2021 Google Inc.
  5384. *
  5385. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5386. * of this software and associated documentation files (the "Software"), to deal
  5387. * in the Software without restriction, including without limitation the rights
  5388. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5389. * copies of the Software, and to permit persons to whom the Software is
  5390. * furnished to do so, subject to the following conditions:
  5391. *
  5392. * The above copyright notice and this permission notice shall be included in
  5393. * all copies or substantial portions of the Software.
  5394. *
  5395. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5396. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5397. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5398. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5399. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5400. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5401. * THE SOFTWARE.
  5402. */
  5403. Object.defineProperty(exports, "__esModule", { value: true });
  5404. /***/ }),
  5405. /***/ "./packages/mdc-switch/component.ts":
  5406. /*!******************************************!*\
  5407. !*** ./packages/mdc-switch/component.ts ***!
  5408. \******************************************/
  5409. /*! no static exports found */
  5410. /***/ (function(module, exports, __webpack_require__) {
  5411. "use strict";
  5412. /**
  5413. * @license
  5414. * Copyright 2021 Google Inc.
  5415. *
  5416. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5417. * of this software and associated documentation files (the "Software"), to deal
  5418. * in the Software without restriction, including without limitation the rights
  5419. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5420. * copies of the Software, and to permit persons to whom the Software is
  5421. * furnished to do so, subject to the following conditions:
  5422. *
  5423. * The above copyright notice and this permission notice shall be included in
  5424. * all copies or substantial portions of the Software.
  5425. *
  5426. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5427. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5428. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5429. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5430. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5431. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5432. * THE SOFTWARE.
  5433. */
  5434. var __extends = this && this.__extends || function () {
  5435. var _extendStatics = function extendStatics(d, b) {
  5436. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  5437. d.__proto__ = b;
  5438. } || function (d, b) {
  5439. for (var p in b) {
  5440. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  5441. }
  5442. };
  5443. return _extendStatics(d, b);
  5444. };
  5445. return function (d, b) {
  5446. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  5447. _extendStatics(d, b);
  5448. function __() {
  5449. this.constructor = d;
  5450. }
  5451. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  5452. };
  5453. }();
  5454. var __assign = this && this.__assign || function () {
  5455. __assign = Object.assign || function (t) {
  5456. for (var s, i = 1, n = arguments.length; i < n; i++) {
  5457. s = arguments[i];
  5458. for (var p in s) {
  5459. if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
  5460. }
  5461. }
  5462. return t;
  5463. };
  5464. return __assign.apply(this, arguments);
  5465. };
  5466. Object.defineProperty(exports, "__esModule", { value: true });
  5467. exports.MDCSwitch = void 0;
  5468. var component_1 = __webpack_require__(/*! @material/base/component */ "./packages/mdc-base/component.ts");
  5469. var component_2 = __webpack_require__(/*! @material/ripple/component */ "./packages/mdc-ripple/component.ts");
  5470. var foundation_1 = __webpack_require__(/*! @material/ripple/foundation */ "./packages/mdc-ripple/foundation.ts");
  5471. var constants_1 = __webpack_require__(/*! ./constants */ "./packages/mdc-switch/constants.ts");
  5472. var foundation_2 = __webpack_require__(/*! ./foundation */ "./packages/mdc-switch/foundation.ts");
  5473. /**
  5474. * `MDCSwitch` provides a component implementation of a Material Design switch.
  5475. */
  5476. var MDCSwitch = /** @class */function (_super) {
  5477. __extends(MDCSwitch, _super);
  5478. function MDCSwitch(root, foundation) {
  5479. var _this = _super.call(this, root, foundation) || this;
  5480. _this.root = root;
  5481. return _this;
  5482. }
  5483. /**
  5484. * Creates a new `MDCSwitch` and attaches it to the given root element.
  5485. * @param root The root to attach to.
  5486. * @return the new component instance.
  5487. */
  5488. MDCSwitch.attachTo = function (root) {
  5489. return new MDCSwitch(root);
  5490. };
  5491. MDCSwitch.prototype.initialize = function () {
  5492. this.ripple = new component_2.MDCRipple(this.root, this.createRippleFoundation());
  5493. };
  5494. MDCSwitch.prototype.initialSyncWithDOM = function () {
  5495. var rippleElement = this.root.querySelector(constants_1.Selectors.RIPPLE);
  5496. if (!rippleElement) {
  5497. throw new Error("Switch " + constants_1.Selectors.RIPPLE + " element is required.");
  5498. }
  5499. this.rippleElement = rippleElement;
  5500. this.root.addEventListener('click', this.foundation.handleClick);
  5501. this.foundation.initFromDOM();
  5502. };
  5503. MDCSwitch.prototype.destroy = function () {
  5504. _super.prototype.destroy.call(this);
  5505. this.ripple.destroy();
  5506. this.root.removeEventListener('click', this.foundation.handleClick);
  5507. };
  5508. MDCSwitch.prototype.getDefaultFoundation = function () {
  5509. return new foundation_2.MDCSwitchRenderFoundation(this.createAdapter());
  5510. };
  5511. MDCSwitch.prototype.createAdapter = function () {
  5512. var _this = this;
  5513. return {
  5514. addClass: function addClass(className) {
  5515. _this.root.classList.add(className);
  5516. },
  5517. hasClass: function hasClass(className) {
  5518. return _this.root.classList.contains(className);
  5519. },
  5520. isDisabled: function isDisabled() {
  5521. return _this.root.disabled;
  5522. },
  5523. removeClass: function removeClass(className) {
  5524. _this.root.classList.remove(className);
  5525. },
  5526. setAriaChecked: function setAriaChecked(ariaChecked) {
  5527. _this.root.setAttribute('aria-checked', ariaChecked);
  5528. },
  5529. setDisabled: function setDisabled(disabled) {
  5530. _this.root.disabled = disabled;
  5531. },
  5532. state: this
  5533. };
  5534. };
  5535. MDCSwitch.prototype.createRippleFoundation = function () {
  5536. return new foundation_1.MDCRippleFoundation(this.createRippleAdapter());
  5537. };
  5538. MDCSwitch.prototype.createRippleAdapter = function () {
  5539. var _this = this;
  5540. return __assign(__assign({}, component_2.MDCRipple.createAdapter(this)), { computeBoundingRect: function computeBoundingRect() {
  5541. return _this.rippleElement.getBoundingClientRect();
  5542. }, isUnbounded: function isUnbounded() {
  5543. return true;
  5544. } });
  5545. };
  5546. return MDCSwitch;
  5547. }(component_1.MDCComponent);
  5548. exports.MDCSwitch = MDCSwitch;
  5549. /***/ }),
  5550. /***/ "./packages/mdc-switch/constants.ts":
  5551. /*!******************************************!*\
  5552. !*** ./packages/mdc-switch/constants.ts ***!
  5553. \******************************************/
  5554. /*! no static exports found */
  5555. /***/ (function(module, exports, __webpack_require__) {
  5556. "use strict";
  5557. /**
  5558. * @license
  5559. * Copyright 2021 Google Inc.
  5560. *
  5561. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5562. * of this software and associated documentation files (the "Software"), to deal
  5563. * in the Software without restriction, including without limitation the rights
  5564. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5565. * copies of the Software, and to permit persons to whom the Software is
  5566. * furnished to do so, subject to the following conditions:
  5567. *
  5568. * The above copyright notice and this permission notice shall be included in
  5569. * all copies or substantial portions of the Software.
  5570. *
  5571. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5572. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5573. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5574. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5575. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5576. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5577. * THE SOFTWARE.
  5578. */
  5579. Object.defineProperty(exports, "__esModule", { value: true });
  5580. exports.Selectors = exports.CssClasses = void 0;
  5581. /**
  5582. * CSS classes used for switch.
  5583. */
  5584. var CssClasses;
  5585. (function (CssClasses) {
  5586. CssClasses["PROCESSING"] = "mdc-switch--processing";
  5587. CssClasses["SELECTED"] = "mdc-switch--selected";
  5588. CssClasses["UNSELECTED"] = "mdc-switch--unselected";
  5589. })(CssClasses = exports.CssClasses || (exports.CssClasses = {}));
  5590. /**
  5591. * Query selectors used for switch.
  5592. */
  5593. var Selectors;
  5594. (function (Selectors) {
  5595. Selectors["RIPPLE"] = ".mdc-switch__ripple";
  5596. })(Selectors = exports.Selectors || (exports.Selectors = {}));
  5597. /***/ }),
  5598. /***/ "./packages/mdc-switch/deprecated/adapter.ts":
  5599. /*!***************************************************!*\
  5600. !*** ./packages/mdc-switch/deprecated/adapter.ts ***!
  5601. \***************************************************/
  5602. /*! no static exports found */
  5603. /***/ (function(module, exports, __webpack_require__) {
  5604. "use strict";
  5605. /**
  5606. * @license
  5607. * Copyright 2018 Google Inc.
  5608. *
  5609. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5610. * of this software and associated documentation files (the "Software"), to deal
  5611. * in the Software without restriction, including without limitation the rights
  5612. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5613. * copies of the Software, and to permit persons to whom the Software is
  5614. * furnished to do so, subject to the following conditions:
  5615. *
  5616. * The above copyright notice and this permission notice shall be included in
  5617. * all copies or substantial portions of the Software.
  5618. *
  5619. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5620. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5621. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5622. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5623. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5624. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5625. * THE SOFTWARE.
  5626. */
  5627. Object.defineProperty(exports, "__esModule", { value: true });
  5628. /***/ }),
  5629. /***/ "./packages/mdc-switch/deprecated/component.ts":
  5630. /*!*****************************************************!*\
  5631. !*** ./packages/mdc-switch/deprecated/component.ts ***!
  5632. \*****************************************************/
  5633. /*! no static exports found */
  5634. /***/ (function(module, exports, __webpack_require__) {
  5635. "use strict";
  5636. /**
  5637. * @license
  5638. * Copyright 2018 Google Inc.
  5639. *
  5640. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5641. * of this software and associated documentation files (the "Software"), to deal
  5642. * in the Software without restriction, including without limitation the rights
  5643. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5644. * copies of the Software, and to permit persons to whom the Software is
  5645. * furnished to do so, subject to the following conditions:
  5646. *
  5647. * The above copyright notice and this permission notice shall be included in
  5648. * all copies or substantial portions of the Software.
  5649. *
  5650. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5651. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5652. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5653. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5654. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5655. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5656. * THE SOFTWARE.
  5657. */
  5658. var __extends = this && this.__extends || function () {
  5659. var _extendStatics = function extendStatics(d, b) {
  5660. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  5661. d.__proto__ = b;
  5662. } || function (d, b) {
  5663. for (var p in b) {
  5664. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  5665. }
  5666. };
  5667. return _extendStatics(d, b);
  5668. };
  5669. return function (d, b) {
  5670. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  5671. _extendStatics(d, b);
  5672. function __() {
  5673. this.constructor = d;
  5674. }
  5675. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  5676. };
  5677. }();
  5678. var __makeTemplateObject = this && this.__makeTemplateObject || function (cooked, raw) {
  5679. if (Object.defineProperty) {
  5680. Object.defineProperty(cooked, "raw", { value: raw });
  5681. } else {
  5682. cooked.raw = raw;
  5683. }
  5684. return cooked;
  5685. };
  5686. var __assign = this && this.__assign || function () {
  5687. __assign = Object.assign || function (t) {
  5688. for (var s, i = 1, n = arguments.length; i < n; i++) {
  5689. s = arguments[i];
  5690. for (var p in s) {
  5691. if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
  5692. }
  5693. }
  5694. return t;
  5695. };
  5696. return __assign.apply(this, arguments);
  5697. };
  5698. var __read = this && this.__read || function (o, n) {
  5699. var m = typeof Symbol === "function" && o[Symbol.iterator];
  5700. if (!m) return o;
  5701. var i = m.call(o),
  5702. r,
  5703. ar = [],
  5704. e;
  5705. try {
  5706. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
  5707. ar.push(r.value);
  5708. }
  5709. } catch (error) {
  5710. e = { error: error };
  5711. } finally {
  5712. try {
  5713. if (r && !r.done && (m = i["return"])) m.call(i);
  5714. } finally {
  5715. if (e) throw e.error;
  5716. }
  5717. }
  5718. return ar;
  5719. };
  5720. var __spreadArray = this && this.__spreadArray || function (to, from) {
  5721. for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) {
  5722. to[j] = from[i];
  5723. }return to;
  5724. };
  5725. Object.defineProperty(exports, "__esModule", { value: true });
  5726. exports.MDCSwitch = void 0;
  5727. var component_1 = __webpack_require__(/*! @material/base/component */ "./packages/mdc-base/component.ts");
  5728. var events_1 = __webpack_require__(/*! @material/dom/events */ "./packages/mdc-dom/events.ts");
  5729. var ponyfill_1 = __webpack_require__(/*! @material/dom/ponyfill */ "./packages/mdc-dom/ponyfill.ts");
  5730. var component_2 = __webpack_require__(/*! @material/ripple/component */ "./packages/mdc-ripple/component.ts");
  5731. var foundation_1 = __webpack_require__(/*! @material/ripple/foundation */ "./packages/mdc-ripple/foundation.ts");
  5732. var safevalues_1 = __webpack_require__(/*! safevalues */ "./node_modules/safevalues/index.js");
  5733. var dom_1 = __webpack_require__(/*! safevalues/dom */ "./node_modules/safevalues/dom/index.js");
  5734. var foundation_2 = __webpack_require__(/*! ./foundation */ "./packages/mdc-switch/deprecated/foundation.ts");
  5735. /** MDC Switch */
  5736. var MDCSwitch = /** @class */function (_super) {
  5737. __extends(MDCSwitch, _super);
  5738. function MDCSwitch() {
  5739. var _this = _super !== null && _super.apply(this, arguments) || this;
  5740. _this.rippleSurface = _this.createRipple();
  5741. return _this;
  5742. }
  5743. MDCSwitch.attachTo = function (root) {
  5744. return new MDCSwitch(root);
  5745. };
  5746. MDCSwitch.prototype.destroy = function () {
  5747. _super.prototype.destroy.call(this);
  5748. this.rippleSurface.destroy();
  5749. this.nativeControl.removeEventListener('change', this.changeHandler);
  5750. };
  5751. MDCSwitch.prototype.initialSyncWithDOM = function () {
  5752. var _this = this;
  5753. this.changeHandler = function () {
  5754. var _a;
  5755. var args = [];
  5756. for (var _i = 0; _i < arguments.length; _i++) {
  5757. args[_i] = arguments[_i];
  5758. }
  5759. (_a = _this.foundation).handleChange.apply(_a, __spreadArray([], __read(args)));
  5760. };
  5761. this.nativeControl.addEventListener('change', this.changeHandler);
  5762. // Sometimes the checked state of the input element is saved in the history.
  5763. // The switch styling should match the checked state of the input element.
  5764. // Do an initial sync between the native control and the foundation.
  5765. this.checked = this.checked;
  5766. };
  5767. MDCSwitch.prototype.getDefaultFoundation = function () {
  5768. var _this = this;
  5769. // DO NOT INLINE this variable. For backward compatibility, foundations take
  5770. // a Partial<MDCFooAdapter>. To ensure we don't accidentally omit any
  5771. // methods, we need a separate, strongly typed adapter variable.
  5772. var adapter = {
  5773. addClass: function addClass(className) {
  5774. _this.root.classList.add(className);
  5775. },
  5776. removeClass: function removeClass(className) {
  5777. _this.root.classList.remove(className);
  5778. },
  5779. setNativeControlChecked: function setNativeControlChecked(checked) {
  5780. return _this.nativeControl.checked = checked;
  5781. },
  5782. setNativeControlDisabled: function setNativeControlDisabled(disabled) {
  5783. return _this.nativeControl.disabled = disabled;
  5784. },
  5785. setNativeControlAttr: function setNativeControlAttr(attr, value) {
  5786. dom_1.safeElement.setPrefixedAttribute([safevalues_1.safeAttrPrefix(templateObject_1 || (templateObject_1 = __makeTemplateObject(["aria-"], ["aria-"])))], _this.nativeControl, attr, value);
  5787. }
  5788. };
  5789. return new foundation_2.MDCSwitchFoundation(adapter);
  5790. };
  5791. Object.defineProperty(MDCSwitch.prototype, "ripple", {
  5792. get: function get() {
  5793. return this.rippleSurface;
  5794. },
  5795. enumerable: false,
  5796. configurable: true
  5797. });
  5798. Object.defineProperty(MDCSwitch.prototype, "checked", {
  5799. get: function get() {
  5800. return this.nativeControl.checked;
  5801. },
  5802. set: function set(checked) {
  5803. this.foundation.setChecked(checked);
  5804. },
  5805. enumerable: false,
  5806. configurable: true
  5807. });
  5808. Object.defineProperty(MDCSwitch.prototype, "disabled", {
  5809. get: function get() {
  5810. return this.nativeControl.disabled;
  5811. },
  5812. set: function set(disabled) {
  5813. this.foundation.setDisabled(disabled);
  5814. },
  5815. enumerable: false,
  5816. configurable: true
  5817. });
  5818. MDCSwitch.prototype.createRipple = function () {
  5819. var _this = this;
  5820. var RIPPLE_SURFACE_SELECTOR = foundation_2.MDCSwitchFoundation.strings.RIPPLE_SURFACE_SELECTOR;
  5821. var rippleSurface = this.root.querySelector(RIPPLE_SURFACE_SELECTOR);
  5822. // DO NOT INLINE this variable. For backward compatibility, foundations take
  5823. // a Partial<MDCFooAdapter>. To ensure we don't accidentally omit any
  5824. // methods, we need a separate, strongly typed adapter variable.
  5825. var adapter = __assign(__assign({}, component_2.MDCRipple.createAdapter(this)), { addClass: function addClass(className) {
  5826. rippleSurface.classList.add(className);
  5827. }, computeBoundingRect: function computeBoundingRect() {
  5828. return rippleSurface.getBoundingClientRect();
  5829. }, deregisterInteractionHandler: function deregisterInteractionHandler(evtType, handler) {
  5830. _this.nativeControl.removeEventListener(evtType, handler, events_1.applyPassive());
  5831. }, isSurfaceActive: function isSurfaceActive() {
  5832. return ponyfill_1.matches(_this.nativeControl, ':active');
  5833. }, isUnbounded: function isUnbounded() {
  5834. return true;
  5835. }, registerInteractionHandler: function registerInteractionHandler(evtType, handler) {
  5836. _this.nativeControl.addEventListener(evtType, handler, events_1.applyPassive());
  5837. }, removeClass: function removeClass(className) {
  5838. rippleSurface.classList.remove(className);
  5839. }, updateCssVariable: function updateCssVariable(varName, value) {
  5840. rippleSurface.style.setProperty(varName, value);
  5841. } });
  5842. return new component_2.MDCRipple(this.root, new foundation_1.MDCRippleFoundation(adapter));
  5843. };
  5844. Object.defineProperty(MDCSwitch.prototype, "nativeControl", {
  5845. get: function get() {
  5846. var NATIVE_CONTROL_SELECTOR = foundation_2.MDCSwitchFoundation.strings.NATIVE_CONTROL_SELECTOR;
  5847. return this.root.querySelector(NATIVE_CONTROL_SELECTOR);
  5848. },
  5849. enumerable: false,
  5850. configurable: true
  5851. });
  5852. return MDCSwitch;
  5853. }(component_1.MDCComponent);
  5854. exports.MDCSwitch = MDCSwitch;
  5855. var templateObject_1;
  5856. /***/ }),
  5857. /***/ "./packages/mdc-switch/deprecated/constants.ts":
  5858. /*!*****************************************************!*\
  5859. !*** ./packages/mdc-switch/deprecated/constants.ts ***!
  5860. \*****************************************************/
  5861. /*! no static exports found */
  5862. /***/ (function(module, exports, __webpack_require__) {
  5863. "use strict";
  5864. /**
  5865. * @license
  5866. * Copyright 2018 Google Inc.
  5867. *
  5868. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5869. * of this software and associated documentation files (the "Software"), to deal
  5870. * in the Software without restriction, including without limitation the rights
  5871. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5872. * copies of the Software, and to permit persons to whom the Software is
  5873. * furnished to do so, subject to the following conditions:
  5874. *
  5875. * The above copyright notice and this permission notice shall be included in
  5876. * all copies or substantial portions of the Software.
  5877. *
  5878. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5879. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5880. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5881. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5882. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5883. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5884. * THE SOFTWARE.
  5885. */
  5886. Object.defineProperty(exports, "__esModule", { value: true });
  5887. exports.strings = exports.cssClasses = void 0;
  5888. /** CSS classes used by the switch. */
  5889. var cssClasses = {
  5890. /** Class used for a switch that is in the "checked" (on) position. */
  5891. CHECKED: 'mdc-switch--checked',
  5892. /** Class used for a switch that is disabled. */
  5893. DISABLED: 'mdc-switch--disabled'
  5894. };
  5895. exports.cssClasses = cssClasses;
  5896. /** String constants used by the switch. */
  5897. var strings = {
  5898. /** Aria attribute for checked or unchecked state of switch */
  5899. ARIA_CHECKED_ATTR: 'aria-checked',
  5900. /** A CSS selector used to locate the native HTML control for the switch. */
  5901. NATIVE_CONTROL_SELECTOR: '.mdc-switch__native-control',
  5902. /**
  5903. * A CSS selector used to locate the ripple surface element for the switch.
  5904. */
  5905. RIPPLE_SURFACE_SELECTOR: '.mdc-switch__thumb-underlay'
  5906. };
  5907. exports.strings = strings;
  5908. /***/ }),
  5909. /***/ "./packages/mdc-switch/deprecated/foundation.ts":
  5910. /*!******************************************************!*\
  5911. !*** ./packages/mdc-switch/deprecated/foundation.ts ***!
  5912. \******************************************************/
  5913. /*! no static exports found */
  5914. /***/ (function(module, exports, __webpack_require__) {
  5915. "use strict";
  5916. /**
  5917. * @license
  5918. * Copyright 2018 Google Inc.
  5919. *
  5920. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5921. * of this software and associated documentation files (the "Software"), to deal
  5922. * in the Software without restriction, including without limitation the rights
  5923. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5924. * copies of the Software, and to permit persons to whom the Software is
  5925. * furnished to do so, subject to the following conditions:
  5926. *
  5927. * The above copyright notice and this permission notice shall be included in
  5928. * all copies or substantial portions of the Software.
  5929. *
  5930. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5931. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5932. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5933. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5934. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5935. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5936. * THE SOFTWARE.
  5937. */
  5938. var __extends = this && this.__extends || function () {
  5939. var _extendStatics = function extendStatics(d, b) {
  5940. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  5941. d.__proto__ = b;
  5942. } || function (d, b) {
  5943. for (var p in b) {
  5944. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  5945. }
  5946. };
  5947. return _extendStatics(d, b);
  5948. };
  5949. return function (d, b) {
  5950. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  5951. _extendStatics(d, b);
  5952. function __() {
  5953. this.constructor = d;
  5954. }
  5955. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  5956. };
  5957. }();
  5958. var __assign = this && this.__assign || function () {
  5959. __assign = Object.assign || function (t) {
  5960. for (var s, i = 1, n = arguments.length; i < n; i++) {
  5961. s = arguments[i];
  5962. for (var p in s) {
  5963. if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
  5964. }
  5965. }
  5966. return t;
  5967. };
  5968. return __assign.apply(this, arguments);
  5969. };
  5970. Object.defineProperty(exports, "__esModule", { value: true });
  5971. exports.MDCSwitchFoundation = void 0;
  5972. var foundation_1 = __webpack_require__(/*! @material/base/foundation */ "./packages/mdc-base/foundation.ts");
  5973. var constants_1 = __webpack_require__(/*! ./constants */ "./packages/mdc-switch/deprecated/constants.ts");
  5974. /** MDC Switch Foundation */
  5975. var MDCSwitchFoundation = /** @class */function (_super) {
  5976. __extends(MDCSwitchFoundation, _super);
  5977. function MDCSwitchFoundation(adapter) {
  5978. return _super.call(this, __assign(__assign({}, MDCSwitchFoundation.defaultAdapter), adapter)) || this;
  5979. }
  5980. Object.defineProperty(MDCSwitchFoundation, "strings", {
  5981. /** The string constants used by the switch. */
  5982. get: function get() {
  5983. return constants_1.strings;
  5984. },
  5985. enumerable: false,
  5986. configurable: true
  5987. });
  5988. Object.defineProperty(MDCSwitchFoundation, "cssClasses", {
  5989. /** The CSS classes used by the switch. */
  5990. get: function get() {
  5991. return constants_1.cssClasses;
  5992. },
  5993. enumerable: false,
  5994. configurable: true
  5995. });
  5996. Object.defineProperty(MDCSwitchFoundation, "defaultAdapter", {
  5997. /** The default Adapter for the switch. */
  5998. get: function get() {
  5999. return {
  6000. addClass: function addClass() {
  6001. return undefined;
  6002. },
  6003. removeClass: function removeClass() {
  6004. return undefined;
  6005. },
  6006. setNativeControlChecked: function setNativeControlChecked() {
  6007. return undefined;
  6008. },
  6009. setNativeControlDisabled: function setNativeControlDisabled() {
  6010. return undefined;
  6011. },
  6012. setNativeControlAttr: function setNativeControlAttr() {
  6013. return undefined;
  6014. }
  6015. };
  6016. },
  6017. enumerable: false,
  6018. configurable: true
  6019. });
  6020. /** Sets the checked state of the switch. */
  6021. MDCSwitchFoundation.prototype.setChecked = function (checked) {
  6022. this.adapter.setNativeControlChecked(checked);
  6023. this.updateAriaChecked(checked);
  6024. this.updateCheckedStyling(checked);
  6025. };
  6026. /** Sets the disabled state of the switch. */
  6027. MDCSwitchFoundation.prototype.setDisabled = function (disabled) {
  6028. this.adapter.setNativeControlDisabled(disabled);
  6029. if (disabled) {
  6030. this.adapter.addClass(constants_1.cssClasses.DISABLED);
  6031. } else {
  6032. this.adapter.removeClass(constants_1.cssClasses.DISABLED);
  6033. }
  6034. };
  6035. /** Handles the change event for the switch native control. */
  6036. MDCSwitchFoundation.prototype.handleChange = function (evt) {
  6037. var nativeControl = evt.target;
  6038. this.updateAriaChecked(nativeControl.checked);
  6039. this.updateCheckedStyling(nativeControl.checked);
  6040. };
  6041. /** Updates the styling of the switch based on its checked state. */
  6042. MDCSwitchFoundation.prototype.updateCheckedStyling = function (checked) {
  6043. if (checked) {
  6044. this.adapter.addClass(constants_1.cssClasses.CHECKED);
  6045. } else {
  6046. this.adapter.removeClass(constants_1.cssClasses.CHECKED);
  6047. }
  6048. };
  6049. MDCSwitchFoundation.prototype.updateAriaChecked = function (checked) {
  6050. this.adapter.setNativeControlAttr(constants_1.strings.ARIA_CHECKED_ATTR, "" + !!checked);
  6051. };
  6052. return MDCSwitchFoundation;
  6053. }(foundation_1.MDCFoundation);
  6054. exports.MDCSwitchFoundation = MDCSwitchFoundation;
  6055. // tslint:disable-next-line:no-default-export Needed for backward compatibility with MDC Web v0.44.0 and earlier.
  6056. exports.default = MDCSwitchFoundation;
  6057. /***/ }),
  6058. /***/ "./packages/mdc-switch/deprecated/index.ts":
  6059. /*!*************************************************!*\
  6060. !*** ./packages/mdc-switch/deprecated/index.ts ***!
  6061. \*************************************************/
  6062. /*! no static exports found */
  6063. /***/ (function(module, exports, __webpack_require__) {
  6064. "use strict";
  6065. /**
  6066. * @license
  6067. * Copyright 2019 Google Inc.
  6068. *
  6069. * Permission is hereby granted, free of charge, to any person obtaining a copy
  6070. * of this software and associated documentation files (the "Software"), to deal
  6071. * in the Software without restriction, including without limitation the rights
  6072. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  6073. * copies of the Software, and to permit persons to whom the Software is
  6074. * furnished to do so, subject to the following conditions:
  6075. *
  6076. * The above copyright notice and this permission notice shall be included in
  6077. * all copies or substantial portions of the Software.
  6078. *
  6079. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  6080. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  6081. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  6082. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  6083. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  6084. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  6085. * THE SOFTWARE.
  6086. */
  6087. var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
  6088. if (k2 === undefined) k2 = k;
  6089. Object.defineProperty(o, k2, { enumerable: true, get: function get() {
  6090. return m[k];
  6091. } });
  6092. } : function (o, m, k, k2) {
  6093. if (k2 === undefined) k2 = k;
  6094. o[k2] = m[k];
  6095. });
  6096. var __exportStar = this && this.__exportStar || function (m, exports) {
  6097. for (var p in m) {
  6098. if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
  6099. }
  6100. };
  6101. Object.defineProperty(exports, "__esModule", { value: true });
  6102. __exportStar(__webpack_require__(/*! ./adapter */ "./packages/mdc-switch/deprecated/adapter.ts"), exports);
  6103. __exportStar(__webpack_require__(/*! ./component */ "./packages/mdc-switch/deprecated/component.ts"), exports);
  6104. __exportStar(__webpack_require__(/*! ./constants */ "./packages/mdc-switch/deprecated/constants.ts"), exports);
  6105. __exportStar(__webpack_require__(/*! ./foundation */ "./packages/mdc-switch/deprecated/foundation.ts"), exports);
  6106. /***/ }),
  6107. /***/ "./packages/mdc-switch/foundation.ts":
  6108. /*!*******************************************!*\
  6109. !*** ./packages/mdc-switch/foundation.ts ***!
  6110. \*******************************************/
  6111. /*! no static exports found */
  6112. /***/ (function(module, exports, __webpack_require__) {
  6113. "use strict";
  6114. /**
  6115. * @license
  6116. * Copyright 2021 Google Inc.
  6117. *
  6118. * Permission is hereby granted, free of charge, to any person obtaining a copy
  6119. * of this software and associated documentation files (the "Software"), to deal
  6120. * in the Software without restriction, including without limitation the rights
  6121. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  6122. * copies of the Software, and to permit persons to whom the Software is
  6123. * furnished to do so, subject to the following conditions:
  6124. *
  6125. * The above copyright notice and this permission notice shall be included in
  6126. * all copies or substantial portions of the Software.
  6127. *
  6128. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  6129. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  6130. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  6131. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  6132. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  6133. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  6134. * THE SOFTWARE.
  6135. */
  6136. var __extends = this && this.__extends || function () {
  6137. var _extendStatics = function extendStatics(d, b) {
  6138. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  6139. d.__proto__ = b;
  6140. } || function (d, b) {
  6141. for (var p in b) {
  6142. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  6143. }
  6144. };
  6145. return _extendStatics(d, b);
  6146. };
  6147. return function (d, b) {
  6148. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  6149. _extendStatics(d, b);
  6150. function __() {
  6151. this.constructor = d;
  6152. }
  6153. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  6154. };
  6155. }();
  6156. Object.defineProperty(exports, "__esModule", { value: true });
  6157. exports.MDCSwitchRenderFoundation = exports.MDCSwitchFoundation = void 0;
  6158. var observer_foundation_1 = __webpack_require__(/*! @material/base/observer-foundation */ "./packages/mdc-base/observer-foundation.ts");
  6159. var constants_1 = __webpack_require__(/*! ./constants */ "./packages/mdc-switch/constants.ts");
  6160. /**
  6161. * `MDCSwitchFoundation` provides a state-only foundation for a switch
  6162. * component.
  6163. *
  6164. * State observers and event handler entrypoints update a component's adapter's
  6165. * state with the logic needed for switch to function.
  6166. */
  6167. var MDCSwitchFoundation = /** @class */function (_super) {
  6168. __extends(MDCSwitchFoundation, _super);
  6169. function MDCSwitchFoundation(adapter) {
  6170. var _this = _super.call(this, adapter) || this;
  6171. _this.handleClick = _this.handleClick.bind(_this);
  6172. return _this;
  6173. }
  6174. /**
  6175. * Initializes the foundation and starts observing state changes.
  6176. */
  6177. MDCSwitchFoundation.prototype.init = function () {
  6178. this.observe(this.adapter.state, {
  6179. disabled: this.stopProcessingIfDisabled,
  6180. processing: this.stopProcessingIfDisabled
  6181. });
  6182. };
  6183. /**
  6184. * Event handler for switch click events. Clicking on a switch will toggle its
  6185. * selected state.
  6186. */
  6187. MDCSwitchFoundation.prototype.handleClick = function () {
  6188. if (this.adapter.state.disabled) {
  6189. return;
  6190. }
  6191. this.adapter.state.selected = !this.adapter.state.selected;
  6192. };
  6193. MDCSwitchFoundation.prototype.stopProcessingIfDisabled = function () {
  6194. if (this.adapter.state.disabled) {
  6195. this.adapter.state.processing = false;
  6196. }
  6197. };
  6198. return MDCSwitchFoundation;
  6199. }(observer_foundation_1.MDCObserverFoundation);
  6200. exports.MDCSwitchFoundation = MDCSwitchFoundation;
  6201. /**
  6202. * `MDCSwitchRenderFoundation` provides a state and rendering foundation for a
  6203. * switch component.
  6204. *
  6205. * State observers and event handler entrypoints update a component's
  6206. * adapter's state with the logic needed for switch to function.
  6207. *
  6208. * In response to state changes, the rendering foundation uses the component's
  6209. * render adapter to keep the component's DOM updated with the state.
  6210. */
  6211. var MDCSwitchRenderFoundation = /** @class */function (_super) {
  6212. __extends(MDCSwitchRenderFoundation, _super);
  6213. function MDCSwitchRenderFoundation() {
  6214. return _super !== null && _super.apply(this, arguments) || this;
  6215. }
  6216. /**
  6217. * Initializes the foundation and starts observing state changes.
  6218. */
  6219. MDCSwitchRenderFoundation.prototype.init = function () {
  6220. _super.prototype.init.call(this);
  6221. this.observe(this.adapter.state, {
  6222. disabled: this.onDisabledChange,
  6223. processing: this.onProcessingChange,
  6224. selected: this.onSelectedChange
  6225. });
  6226. };
  6227. /**
  6228. * Initializes the foundation from a server side rendered (SSR) component.
  6229. * This will sync the adapter's state with the current state of the DOM.
  6230. *
  6231. * This method should be called after `init()`.
  6232. */
  6233. MDCSwitchRenderFoundation.prototype.initFromDOM = function () {
  6234. // Turn off observers while setting state
  6235. this.setObserversEnabled(this.adapter.state, false);
  6236. this.adapter.state.selected = this.adapter.hasClass(constants_1.CssClasses.SELECTED);
  6237. // Ensure aria-checked is set if attribute is not present
  6238. this.onSelectedChange();
  6239. this.adapter.state.disabled = this.adapter.isDisabled();
  6240. this.adapter.state.processing = this.adapter.hasClass(constants_1.CssClasses.PROCESSING);
  6241. // Re-observe state
  6242. this.setObserversEnabled(this.adapter.state, true);
  6243. this.stopProcessingIfDisabled();
  6244. };
  6245. MDCSwitchRenderFoundation.prototype.onDisabledChange = function () {
  6246. this.adapter.setDisabled(this.adapter.state.disabled);
  6247. };
  6248. MDCSwitchRenderFoundation.prototype.onProcessingChange = function () {
  6249. this.toggleClass(this.adapter.state.processing, constants_1.CssClasses.PROCESSING);
  6250. };
  6251. MDCSwitchRenderFoundation.prototype.onSelectedChange = function () {
  6252. this.adapter.setAriaChecked(String(this.adapter.state.selected));
  6253. this.toggleClass(this.adapter.state.selected, constants_1.CssClasses.SELECTED);
  6254. this.toggleClass(!this.adapter.state.selected, constants_1.CssClasses.UNSELECTED);
  6255. };
  6256. MDCSwitchRenderFoundation.prototype.toggleClass = function (addClass, className) {
  6257. if (addClass) {
  6258. this.adapter.addClass(className);
  6259. } else {
  6260. this.adapter.removeClass(className);
  6261. }
  6262. };
  6263. return MDCSwitchRenderFoundation;
  6264. }(MDCSwitchFoundation);
  6265. exports.MDCSwitchRenderFoundation = MDCSwitchRenderFoundation;
  6266. /***/ }),
  6267. /***/ "./packages/mdc-switch/index.ts":
  6268. /*!**************************************!*\
  6269. !*** ./packages/mdc-switch/index.ts ***!
  6270. \**************************************/
  6271. /*! no static exports found */
  6272. /***/ (function(module, exports, __webpack_require__) {
  6273. "use strict";
  6274. /**
  6275. * @license
  6276. * Copyright 2021 Google Inc.
  6277. *
  6278. * Permission is hereby granted, free of charge, to any person obtaining a copy
  6279. * of this software and associated documentation files (the "Software"), to deal
  6280. * in the Software without restriction, including without limitation the rights
  6281. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  6282. * copies of the Software, and to permit persons to whom the Software is
  6283. * furnished to do so, subject to the following conditions:
  6284. *
  6285. * The above copyright notice and this permission notice shall be included in
  6286. * all copies or substantial portions of the Software.
  6287. *
  6288. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  6289. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  6290. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  6291. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  6292. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  6293. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  6294. * THE SOFTWARE.
  6295. */
  6296. var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
  6297. if (k2 === undefined) k2 = k;
  6298. Object.defineProperty(o, k2, { enumerable: true, get: function get() {
  6299. return m[k];
  6300. } });
  6301. } : function (o, m, k, k2) {
  6302. if (k2 === undefined) k2 = k;
  6303. o[k2] = m[k];
  6304. });
  6305. var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
  6306. Object.defineProperty(o, "default", { enumerable: true, value: v });
  6307. } : function (o, v) {
  6308. o["default"] = v;
  6309. });
  6310. var __importStar = this && this.__importStar || function (mod) {
  6311. if (mod && mod.__esModule) return mod;
  6312. var result = {};
  6313. if (mod != null) for (var k in mod) {
  6314. if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
  6315. }__setModuleDefault(result, mod);
  6316. return result;
  6317. };
  6318. var __exportStar = this && this.__exportStar || function (m, exports) {
  6319. for (var p in m) {
  6320. if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
  6321. }
  6322. };
  6323. Object.defineProperty(exports, "__esModule", { value: true });
  6324. exports.deprecated = void 0;
  6325. // TODO(b/185410690): remove deprecated export
  6326. var deprecated = __importStar(__webpack_require__(/*! ./deprecated */ "./packages/mdc-switch/deprecated/index.ts"));
  6327. exports.deprecated = deprecated;
  6328. __exportStar(__webpack_require__(/*! ./adapter */ "./packages/mdc-switch/adapter.ts"), exports);
  6329. __exportStar(__webpack_require__(/*! ./component */ "./packages/mdc-switch/component.ts"), exports);
  6330. __exportStar(__webpack_require__(/*! ./constants */ "./packages/mdc-switch/constants.ts"), exports);
  6331. __exportStar(__webpack_require__(/*! ./foundation */ "./packages/mdc-switch/foundation.ts"), exports);
  6332. /***/ })
  6333. /******/ });
  6334. });
  6335. //# sourceMappingURL=mdc.switch.js.map