mdc.dialog.js 262 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420
  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/dialog", [], factory);
  13. else if(typeof exports === 'object')
  14. exports["dialog"] = factory();
  15. else
  16. root["mdc"] = root["mdc"] || {}, root["mdc"]["dialog"] = 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-dialog/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-animation/animationframe.ts":
  3403. /*!**************************************************!*\
  3404. !*** ./packages/mdc-animation/animationframe.ts ***!
  3405. \**************************************************/
  3406. /*! no static exports found */
  3407. /***/ (function(module, exports, __webpack_require__) {
  3408. "use strict";
  3409. /**
  3410. * @license
  3411. * Copyright 2020 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. Object.defineProperty(exports, "__esModule", { value: true });
  3432. exports.AnimationFrame = void 0;
  3433. /**
  3434. * AnimationFrame provides a user-friendly abstraction around requesting
  3435. * and canceling animation frames.
  3436. */
  3437. var AnimationFrame = /** @class */function () {
  3438. function AnimationFrame() {
  3439. this.rafIDs = new Map();
  3440. }
  3441. /**
  3442. * Requests an animation frame. Cancels any existing frame with the same key.
  3443. * @param {string} key The key for this callback.
  3444. * @param {FrameRequestCallback} callback The callback to be executed.
  3445. */
  3446. AnimationFrame.prototype.request = function (key, callback) {
  3447. var _this = this;
  3448. this.cancel(key);
  3449. var frameID = requestAnimationFrame(function (frame) {
  3450. _this.rafIDs.delete(key);
  3451. // Callback must come *after* the key is deleted so that nested calls to
  3452. // request with the same key are not deleted.
  3453. callback(frame);
  3454. });
  3455. this.rafIDs.set(key, frameID);
  3456. };
  3457. /**
  3458. * Cancels a queued callback with the given key.
  3459. * @param {string} key The key for this callback.
  3460. */
  3461. AnimationFrame.prototype.cancel = function (key) {
  3462. var rafID = this.rafIDs.get(key);
  3463. if (rafID) {
  3464. cancelAnimationFrame(rafID);
  3465. this.rafIDs.delete(key);
  3466. }
  3467. };
  3468. /**
  3469. * Cancels all queued callback.
  3470. */
  3471. AnimationFrame.prototype.cancelAll = function () {
  3472. var _this = this;
  3473. // Need to use forEach because it's the only iteration method supported
  3474. // by IE11. Suppress the underscore because we don't need it.
  3475. // tslint:disable-next-line:enforce-name-casing
  3476. this.rafIDs.forEach(function (_, key) {
  3477. _this.cancel(key);
  3478. });
  3479. };
  3480. /**
  3481. * Returns the queue of unexecuted callback keys.
  3482. */
  3483. AnimationFrame.prototype.getQueue = function () {
  3484. var queue = [];
  3485. // Need to use forEach because it's the only iteration method supported
  3486. // by IE11. Suppress the underscore because we don't need it.
  3487. // tslint:disable-next-line:enforce-name-casing
  3488. this.rafIDs.forEach(function (_, key) {
  3489. queue.push(key);
  3490. });
  3491. return queue;
  3492. };
  3493. return AnimationFrame;
  3494. }();
  3495. exports.AnimationFrame = AnimationFrame;
  3496. /***/ }),
  3497. /***/ "./packages/mdc-base/component.ts":
  3498. /*!****************************************!*\
  3499. !*** ./packages/mdc-base/component.ts ***!
  3500. \****************************************/
  3501. /*! no static exports found */
  3502. /***/ (function(module, exports, __webpack_require__) {
  3503. "use strict";
  3504. /**
  3505. * @license
  3506. * Copyright 2016 Google Inc.
  3507. *
  3508. * Permission is hereby granted, free of charge, to any person obtaining a copy
  3509. * of this software and associated documentation files (the "Software"), to deal
  3510. * in the Software without restriction, including without limitation the rights
  3511. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3512. * copies of the Software, and to permit persons to whom the Software is
  3513. * furnished to do so, subject to the following conditions:
  3514. *
  3515. * The above copyright notice and this permission notice shall be included in
  3516. * all copies or substantial portions of the Software.
  3517. *
  3518. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3519. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3520. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3521. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3522. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3523. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  3524. * THE SOFTWARE.
  3525. */
  3526. var __makeTemplateObject = this && this.__makeTemplateObject || function (cooked, raw) {
  3527. if (Object.defineProperty) {
  3528. Object.defineProperty(cooked, "raw", { value: raw });
  3529. } else {
  3530. cooked.raw = raw;
  3531. }
  3532. return cooked;
  3533. };
  3534. var __read = this && this.__read || function (o, n) {
  3535. var m = typeof Symbol === "function" && o[Symbol.iterator];
  3536. if (!m) return o;
  3537. var i = m.call(o),
  3538. r,
  3539. ar = [],
  3540. e;
  3541. try {
  3542. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
  3543. ar.push(r.value);
  3544. }
  3545. } catch (error) {
  3546. e = { error: error };
  3547. } finally {
  3548. try {
  3549. if (r && !r.done && (m = i["return"])) m.call(i);
  3550. } finally {
  3551. if (e) throw e.error;
  3552. }
  3553. }
  3554. return ar;
  3555. };
  3556. var __spreadArray = this && this.__spreadArray || function (to, from) {
  3557. for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) {
  3558. to[j] = from[i];
  3559. }return to;
  3560. };
  3561. Object.defineProperty(exports, "__esModule", { value: true });
  3562. exports.MDCComponent = void 0;
  3563. var safevalues_1 = __webpack_require__(/*! safevalues */ "./node_modules/safevalues/index.js");
  3564. var dom_1 = __webpack_require__(/*! safevalues/dom */ "./node_modules/safevalues/dom/index.js");
  3565. var foundation_1 = __webpack_require__(/*! ./foundation */ "./packages/mdc-base/foundation.ts");
  3566. function toCamelCase(str) {
  3567. // tslint:disable-next-line:enforce-name-casing
  3568. return String(str).replace(/\-([a-z])/g, function (_, match) {
  3569. return match.toUpperCase();
  3570. });
  3571. }
  3572. /** MDC Component base */
  3573. var MDCComponent = /** @class */function () {
  3574. function MDCComponent(root, foundation) {
  3575. var args = [];
  3576. for (var _i = 2; _i < arguments.length; _i++) {
  3577. args[_i - 2] = arguments[_i];
  3578. }
  3579. this.root = root;
  3580. this.initialize.apply(this, __spreadArray([], __read(args)));
  3581. // Note that we initialize foundation here and not within the constructor's
  3582. // default param so that this.root is defined and can be used within the
  3583. // foundation class.
  3584. this.foundation = foundation === undefined ? this.getDefaultFoundation() : foundation;
  3585. this.foundation.init();
  3586. this.initialSyncWithDOM();
  3587. }
  3588. MDCComponent.attachTo = function (root) {
  3589. // Subclasses which extend MDCBase should provide an attachTo() method that
  3590. // takes a root element and returns an instantiated component with its root
  3591. // set to that element. Also note that in the cases of subclasses, an
  3592. // explicit foundation class will not have to be passed in; it will simply
  3593. // be initialized from getDefaultFoundation().
  3594. return new MDCComponent(root, new foundation_1.MDCFoundation({}));
  3595. };
  3596. /* istanbul ignore next: method param only exists for typing purposes; it does
  3597. * not need to be unit tested */
  3598. // tslint:disable-next-line:enforce-name-casing
  3599. MDCComponent.prototype.initialize = function () {
  3600. var _args = [];
  3601. for (var _i = 0; _i < arguments.length; _i++) {
  3602. _args[_i] = arguments[_i];
  3603. }
  3604. // Subclasses can override this to do any additional setup work that would
  3605. // be considered part of a "constructor". Essentially, it is a hook into the
  3606. // parent constructor before the foundation is initialized. Any additional
  3607. // arguments besides root and foundation will be passed in here.
  3608. };
  3609. MDCComponent.prototype.getDefaultFoundation = function () {
  3610. // Subclasses must override this method to return a properly configured
  3611. // foundation class for the component.
  3612. throw new Error('Subclasses must override getDefaultFoundation to return a properly configured ' + 'foundation class');
  3613. };
  3614. MDCComponent.prototype.initialSyncWithDOM = function () {
  3615. // Subclasses should override this method if they need to perform work to
  3616. // synchronize with a host DOM object. An example of this would be a form
  3617. // control wrapper that needs to synchronize its internal state to some
  3618. // property or attribute of the host DOM. Please note: this is *not* the
  3619. // place to perform DOM reads/writes that would cause layout / paint, as
  3620. // this is called synchronously from within the constructor.
  3621. };
  3622. MDCComponent.prototype.destroy = function () {
  3623. // Subclasses may implement this method to release any resources /
  3624. // deregister any listeners they have attached. An example of this might be
  3625. // deregistering a resize event from the window object.
  3626. this.foundation.destroy();
  3627. };
  3628. MDCComponent.prototype.listen = function (evtType, handler, options) {
  3629. this.root.addEventListener(evtType, handler, options);
  3630. };
  3631. MDCComponent.prototype.unlisten = function (evtType, handler, options) {
  3632. this.root.removeEventListener(evtType, handler, options);
  3633. };
  3634. /**
  3635. * Fires a cross-browser-compatible custom event from the component root of
  3636. * the given type, with the given data.
  3637. */
  3638. MDCComponent.prototype.emit = function (evtType, evtData, shouldBubble) {
  3639. if (shouldBubble === void 0) {
  3640. shouldBubble = false;
  3641. }
  3642. var evt;
  3643. if (typeof CustomEvent === 'function') {
  3644. evt = new CustomEvent(evtType, {
  3645. bubbles: shouldBubble,
  3646. detail: evtData
  3647. });
  3648. } else {
  3649. evt = document.createEvent('CustomEvent');
  3650. evt.initCustomEvent(evtType, shouldBubble, false, evtData);
  3651. }
  3652. this.root.dispatchEvent(evt);
  3653. };
  3654. /**
  3655. * This is a intermediate fix to allow components to use safevalues. This
  3656. * limits setAttribute to setting tabindex, data attributes, and aria
  3657. * attributes.
  3658. *
  3659. * TODO(b/263990206): remove this method and add these directly in each
  3660. * component. This will remove this abstraction and make it clear that the
  3661. * caller can't set any attribute.
  3662. */
  3663. MDCComponent.prototype.safeSetAttribute = function (element, attribute, value) {
  3664. if (attribute.toLowerCase() === 'tabindex') {
  3665. element.tabIndex = Number(value);
  3666. } else if (attribute.indexOf('data-') === 0) {
  3667. var dataKey = toCamelCase(attribute.replace(/^data-/, ''));
  3668. element.dataset[dataKey] = value;
  3669. } else {
  3670. 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);
  3671. }
  3672. };
  3673. return MDCComponent;
  3674. }();
  3675. exports.MDCComponent = MDCComponent;
  3676. // tslint:disable-next-line:no-default-export Needed for backward compatibility with MDC Web v0.44.0 and earlier.
  3677. exports.default = MDCComponent;
  3678. var templateObject_1, templateObject_2;
  3679. /***/ }),
  3680. /***/ "./packages/mdc-base/foundation.ts":
  3681. /*!*****************************************!*\
  3682. !*** ./packages/mdc-base/foundation.ts ***!
  3683. \*****************************************/
  3684. /*! no static exports found */
  3685. /***/ (function(module, exports, __webpack_require__) {
  3686. "use strict";
  3687. /**
  3688. * @license
  3689. * Copyright 2016 Google Inc.
  3690. *
  3691. * Permission is hereby granted, free of charge, to any person obtaining a copy
  3692. * of this software and associated documentation files (the "Software"), to deal
  3693. * in the Software without restriction, including without limitation the rights
  3694. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3695. * copies of the Software, and to permit persons to whom the Software is
  3696. * furnished to do so, subject to the following conditions:
  3697. *
  3698. * The above copyright notice and this permission notice shall be included in
  3699. * all copies or substantial portions of the Software.
  3700. *
  3701. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3702. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3703. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3704. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3705. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3706. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  3707. * THE SOFTWARE.
  3708. */
  3709. Object.defineProperty(exports, "__esModule", { value: true });
  3710. exports.MDCFoundation = void 0;
  3711. /** MDC Foundation */
  3712. var MDCFoundation = /** @class */function () {
  3713. function MDCFoundation(adapter) {
  3714. if (adapter === void 0) {
  3715. adapter = {};
  3716. }
  3717. this.adapter = adapter;
  3718. }
  3719. Object.defineProperty(MDCFoundation, "cssClasses", {
  3720. get: function get() {
  3721. // Classes extending MDCFoundation should implement this method to return an
  3722. // object which exports every CSS class the foundation class needs as a
  3723. // property. e.g. {ACTIVE: 'mdc-component--active'}
  3724. return {};
  3725. },
  3726. enumerable: false,
  3727. configurable: true
  3728. });
  3729. Object.defineProperty(MDCFoundation, "strings", {
  3730. get: function get() {
  3731. // Classes extending MDCFoundation should implement this method to return an
  3732. // object which exports all semantic strings as constants. e.g. {ARIA_ROLE:
  3733. // 'tablist'}
  3734. return {};
  3735. },
  3736. enumerable: false,
  3737. configurable: true
  3738. });
  3739. Object.defineProperty(MDCFoundation, "numbers", {
  3740. get: function get() {
  3741. // Classes extending MDCFoundation should implement this method to return an
  3742. // object which exports all of its semantic numbers as constants.
  3743. // e.g. {ANIMATION_DELAY_MS: 350}
  3744. return {};
  3745. },
  3746. enumerable: false,
  3747. configurable: true
  3748. });
  3749. Object.defineProperty(MDCFoundation, "defaultAdapter", {
  3750. get: function get() {
  3751. // Classes extending MDCFoundation may choose to implement this getter in
  3752. // order to provide a convenient way of viewing the necessary methods of an
  3753. // adapter. In the future, this could also be used for adapter validation.
  3754. return {};
  3755. },
  3756. enumerable: false,
  3757. configurable: true
  3758. });
  3759. MDCFoundation.prototype.init = function () {
  3760. // Subclasses should override this method to perform initialization routines
  3761. // (registering events, etc.)
  3762. };
  3763. MDCFoundation.prototype.destroy = function () {
  3764. // Subclasses should override this method to perform de-initialization
  3765. // routines (de-registering events, etc.)
  3766. };
  3767. return MDCFoundation;
  3768. }();
  3769. exports.MDCFoundation = MDCFoundation;
  3770. // tslint:disable-next-line:no-default-export Needed for backward compatibility with MDC Web v0.44.0 and earlier.
  3771. exports.default = MDCFoundation;
  3772. /***/ }),
  3773. /***/ "./packages/mdc-dialog/adapter.ts":
  3774. /*!****************************************!*\
  3775. !*** ./packages/mdc-dialog/adapter.ts ***!
  3776. \****************************************/
  3777. /*! no static exports found */
  3778. /***/ (function(module, exports, __webpack_require__) {
  3779. "use strict";
  3780. /**
  3781. * @license
  3782. * Copyright 2018 Google Inc.
  3783. *
  3784. * Permission is hereby granted, free of charge, to any person obtaining a copy
  3785. * of this software and associated documentation files (the "Software"), to deal
  3786. * in the Software without restriction, including without limitation the rights
  3787. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3788. * copies of the Software, and to permit persons to whom the Software is
  3789. * furnished to do so, subject to the following conditions:
  3790. *
  3791. * The above copyright notice and this permission notice shall be included in
  3792. * all copies or substantial portions of the Software.
  3793. *
  3794. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3795. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3796. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3797. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3798. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3799. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  3800. * THE SOFTWARE.
  3801. */
  3802. Object.defineProperty(exports, "__esModule", { value: true });
  3803. /***/ }),
  3804. /***/ "./packages/mdc-dialog/component.ts":
  3805. /*!******************************************!*\
  3806. !*** ./packages/mdc-dialog/component.ts ***!
  3807. \******************************************/
  3808. /*! no static exports found */
  3809. /***/ (function(module, exports, __webpack_require__) {
  3810. "use strict";
  3811. /**
  3812. * @license
  3813. * Copyright 2017 Google Inc.
  3814. *
  3815. * Permission is hereby granted, free of charge, to any person obtaining a copy
  3816. * of this software and associated documentation files (the "Software"), to deal
  3817. * in the Software without restriction, including without limitation the rights
  3818. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3819. * copies of the Software, and to permit persons to whom the Software is
  3820. * furnished to do so, subject to the following conditions:
  3821. *
  3822. * The above copyright notice and this permission notice shall be included in
  3823. * all copies or substantial portions of the Software.
  3824. *
  3825. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3826. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3827. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3828. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3829. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3830. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  3831. * THE SOFTWARE.
  3832. */
  3833. var __extends = this && this.__extends || function () {
  3834. var _extendStatics = function extendStatics(d, b) {
  3835. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  3836. d.__proto__ = b;
  3837. } || function (d, b) {
  3838. for (var p in b) {
  3839. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  3840. }
  3841. };
  3842. return _extendStatics(d, b);
  3843. };
  3844. return function (d, b) {
  3845. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  3846. _extendStatics(d, b);
  3847. function __() {
  3848. this.constructor = d;
  3849. }
  3850. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  3851. };
  3852. }();
  3853. var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
  3854. if (k2 === undefined) k2 = k;
  3855. Object.defineProperty(o, k2, { enumerable: true, get: function get() {
  3856. return m[k];
  3857. } });
  3858. } : function (o, m, k, k2) {
  3859. if (k2 === undefined) k2 = k;
  3860. o[k2] = m[k];
  3861. });
  3862. var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
  3863. Object.defineProperty(o, "default", { enumerable: true, value: v });
  3864. } : function (o, v) {
  3865. o["default"] = v;
  3866. });
  3867. var __importStar = this && this.__importStar || function (mod) {
  3868. if (mod && mod.__esModule) return mod;
  3869. var result = {};
  3870. if (mod != null) for (var k in mod) {
  3871. if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
  3872. }__setModuleDefault(result, mod);
  3873. return result;
  3874. };
  3875. var __values = this && this.__values || function (o) {
  3876. var s = typeof Symbol === "function" && Symbol.iterator,
  3877. m = s && o[s],
  3878. i = 0;
  3879. if (m) return m.call(o);
  3880. if (o && typeof o.length === "number") return {
  3881. next: function next() {
  3882. if (o && i >= o.length) o = void 0;
  3883. return { value: o && o[i++], done: !o };
  3884. }
  3885. };
  3886. throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
  3887. };
  3888. Object.defineProperty(exports, "__esModule", { value: true });
  3889. exports.MDCDialog = void 0;
  3890. var component_1 = __webpack_require__(/*! @material/base/component */ "./packages/mdc-base/component.ts");
  3891. var focus_trap_1 = __webpack_require__(/*! @material/dom/focus-trap */ "./packages/mdc-dom/focus-trap.ts");
  3892. var ponyfill_1 = __webpack_require__(/*! @material/dom/ponyfill */ "./packages/mdc-dom/ponyfill.ts");
  3893. var component_2 = __webpack_require__(/*! @material/ripple/component */ "./packages/mdc-ripple/component.ts");
  3894. var foundation_1 = __webpack_require__(/*! ./foundation */ "./packages/mdc-dialog/foundation.ts");
  3895. var util = __importStar(__webpack_require__(/*! ./util */ "./packages/mdc-dialog/util.ts"));
  3896. var strings = foundation_1.MDCDialogFoundation.strings;
  3897. /** MDC Dialog */
  3898. var MDCDialog = /** @class */function (_super) {
  3899. __extends(MDCDialog, _super);
  3900. function MDCDialog() {
  3901. return _super !== null && _super.apply(this, arguments) || this;
  3902. }
  3903. Object.defineProperty(MDCDialog.prototype, "isOpen", {
  3904. get: function get() {
  3905. return this.foundation.isOpen();
  3906. },
  3907. enumerable: false,
  3908. configurable: true
  3909. });
  3910. Object.defineProperty(MDCDialog.prototype, "escapeKeyAction", {
  3911. get: function get() {
  3912. return this.foundation.getEscapeKeyAction();
  3913. },
  3914. set: function set(action) {
  3915. this.foundation.setEscapeKeyAction(action);
  3916. },
  3917. enumerable: false,
  3918. configurable: true
  3919. });
  3920. Object.defineProperty(MDCDialog.prototype, "scrimClickAction", {
  3921. get: function get() {
  3922. return this.foundation.getScrimClickAction();
  3923. },
  3924. set: function set(action) {
  3925. this.foundation.setScrimClickAction(action);
  3926. },
  3927. enumerable: false,
  3928. configurable: true
  3929. });
  3930. Object.defineProperty(MDCDialog.prototype, "autoStackButtons", {
  3931. get: function get() {
  3932. return this.foundation.getAutoStackButtons();
  3933. },
  3934. set: function set(autoStack) {
  3935. this.foundation.setAutoStackButtons(autoStack);
  3936. },
  3937. enumerable: false,
  3938. configurable: true
  3939. });
  3940. MDCDialog.attachTo = function (root) {
  3941. return new MDCDialog(root);
  3942. };
  3943. MDCDialog.prototype.initialize = function (focusTrapFactory) {
  3944. var e_1, _a;
  3945. if (focusTrapFactory === void 0) {
  3946. focusTrapFactory = function focusTrapFactory(el, focusOptions) {
  3947. return new focus_trap_1.FocusTrap(el, focusOptions);
  3948. };
  3949. }
  3950. var container = this.root.querySelector(strings.CONTAINER_SELECTOR);
  3951. if (!container) {
  3952. throw new Error("Dialog component requires a " + strings.CONTAINER_SELECTOR + " container element");
  3953. }
  3954. this.container = container;
  3955. this.content = this.root.querySelector(strings.CONTENT_SELECTOR);
  3956. this.buttons = Array.from(this.root.querySelectorAll(strings.BUTTON_SELECTOR));
  3957. this.defaultButton = this.root.querySelector("[" + strings.BUTTON_DEFAULT_ATTRIBUTE + "]");
  3958. this.focusTrapFactory = focusTrapFactory;
  3959. this.buttonRipples = [];
  3960. try {
  3961. for (var _b = __values(this.buttons), _c = _b.next(); !_c.done; _c = _b.next()) {
  3962. var buttonEl = _c.value;
  3963. this.buttonRipples.push(new component_2.MDCRipple(buttonEl));
  3964. }
  3965. } catch (e_1_1) {
  3966. e_1 = { error: e_1_1 };
  3967. } finally {
  3968. try {
  3969. if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
  3970. } finally {
  3971. if (e_1) throw e_1.error;
  3972. }
  3973. }
  3974. };
  3975. MDCDialog.prototype.initialSyncWithDOM = function () {
  3976. var _this = this;
  3977. this.focusTrap = util.createFocusTrapInstance(this.container, this.focusTrapFactory, this.getInitialFocusEl() || undefined);
  3978. this.handleClick = this.foundation.handleClick.bind(this.foundation);
  3979. this.handleKeydown = this.foundation.handleKeydown.bind(this.foundation);
  3980. this.handleDocumentKeydown = this.foundation.handleDocumentKeydown.bind(this.foundation);
  3981. // this.handleLayout = this.layout.bind(this);
  3982. this.handleOpening = function () {
  3983. document.addEventListener('keydown', _this.handleDocumentKeydown);
  3984. };
  3985. this.handleClosing = function () {
  3986. document.removeEventListener('keydown', _this.handleDocumentKeydown);
  3987. };
  3988. this.listen('click', this.handleClick);
  3989. this.listen('keydown', this.handleKeydown);
  3990. this.listen(strings.OPENING_EVENT, this.handleOpening);
  3991. this.listen(strings.CLOSING_EVENT, this.handleClosing);
  3992. };
  3993. MDCDialog.prototype.destroy = function () {
  3994. this.unlisten('click', this.handleClick);
  3995. this.unlisten('keydown', this.handleKeydown);
  3996. this.unlisten(strings.OPENING_EVENT, this.handleOpening);
  3997. this.unlisten(strings.CLOSING_EVENT, this.handleClosing);
  3998. this.handleClosing();
  3999. this.buttonRipples.forEach(function (ripple) {
  4000. ripple.destroy();
  4001. });
  4002. _super.prototype.destroy.call(this);
  4003. };
  4004. MDCDialog.prototype.layout = function () {
  4005. this.foundation.layout();
  4006. };
  4007. MDCDialog.prototype.open = function () {
  4008. this.foundation.open();
  4009. };
  4010. MDCDialog.prototype.close = function (action) {
  4011. if (action === void 0) {
  4012. action = '';
  4013. }
  4014. this.foundation.close(action);
  4015. };
  4016. MDCDialog.prototype.getDefaultFoundation = function () {
  4017. var _this = this;
  4018. // DO NOT INLINE this variable. For backward compatibility, foundations take
  4019. // a Partial<MDCFooAdapter>. To ensure we don't accidentally omit any
  4020. // methods, we need a separate, strongly typed adapter variable.
  4021. var adapter = {
  4022. addBodyClass: function addBodyClass(className) {
  4023. document.body.classList.add(className);
  4024. },
  4025. addClass: function addClass(className) {
  4026. _this.root.classList.add(className);
  4027. },
  4028. areButtonsStacked: function areButtonsStacked() {
  4029. return util.areTopsMisaligned(_this.buttons);
  4030. },
  4031. clickDefaultButton: function clickDefaultButton() {
  4032. if (_this.defaultButton && !_this.defaultButton.disabled) {
  4033. _this.defaultButton.click();
  4034. }
  4035. },
  4036. eventTargetMatches: function eventTargetMatches(target, selector) {
  4037. return target ? ponyfill_1.matches(target, selector) : false;
  4038. },
  4039. getActionFromEvent: function getActionFromEvent(evt) {
  4040. if (!evt.target) {
  4041. return '';
  4042. }
  4043. var element = ponyfill_1.closest(evt.target, "[" + strings.ACTION_ATTRIBUTE + "]");
  4044. return element && element.getAttribute(strings.ACTION_ATTRIBUTE);
  4045. },
  4046. getInitialFocusEl: function getInitialFocusEl() {
  4047. return _this.getInitialFocusEl();
  4048. },
  4049. hasClass: function hasClass(className) {
  4050. return _this.root.classList.contains(className);
  4051. },
  4052. isContentScrollable: function isContentScrollable() {
  4053. return util.isScrollable(_this.content);
  4054. },
  4055. notifyClosed: function notifyClosed(action) {
  4056. _this.emit(strings.CLOSED_EVENT, action ? { action: action } : {});
  4057. },
  4058. notifyClosing: function notifyClosing(action) {
  4059. _this.emit(strings.CLOSING_EVENT, action ? { action: action } : {});
  4060. },
  4061. notifyOpened: function notifyOpened() {
  4062. _this.emit(strings.OPENED_EVENT, {});
  4063. },
  4064. notifyOpening: function notifyOpening() {
  4065. _this.emit(strings.OPENING_EVENT, {});
  4066. },
  4067. releaseFocus: function releaseFocus() {
  4068. _this.focusTrap.releaseFocus();
  4069. },
  4070. removeBodyClass: function removeBodyClass(className) {
  4071. document.body.classList.remove(className);
  4072. },
  4073. removeClass: function removeClass(className) {
  4074. _this.root.classList.remove(className);
  4075. },
  4076. reverseButtons: function reverseButtons() {
  4077. _this.buttons.reverse();
  4078. _this.buttons.forEach(function (button) {
  4079. button.parentElement.appendChild(button);
  4080. });
  4081. },
  4082. trapFocus: function trapFocus() {
  4083. _this.focusTrap.trapFocus();
  4084. },
  4085. registerContentEventHandler: function registerContentEventHandler(evt, handler) {
  4086. if (_this.content instanceof HTMLElement) {
  4087. _this.content.addEventListener(evt, handler);
  4088. }
  4089. },
  4090. deregisterContentEventHandler: function deregisterContentEventHandler(evt, handler) {
  4091. if (_this.content instanceof HTMLElement) {
  4092. _this.content.removeEventListener(evt, handler);
  4093. }
  4094. },
  4095. isScrollableContentAtTop: function isScrollableContentAtTop() {
  4096. return util.isScrollAtTop(_this.content);
  4097. },
  4098. isScrollableContentAtBottom: function isScrollableContentAtBottom() {
  4099. return util.isScrollAtBottom(_this.content);
  4100. },
  4101. registerWindowEventHandler: function registerWindowEventHandler(evt, handler) {
  4102. window.addEventListener(evt, handler);
  4103. },
  4104. deregisterWindowEventHandler: function deregisterWindowEventHandler(evt, handler) {
  4105. window.removeEventListener(evt, handler);
  4106. }
  4107. };
  4108. return new foundation_1.MDCDialogFoundation(adapter);
  4109. };
  4110. MDCDialog.prototype.getInitialFocusEl = function () {
  4111. return this.root.querySelector("[" + strings.INITIAL_FOCUS_ATTRIBUTE + "]");
  4112. };
  4113. return MDCDialog;
  4114. }(component_1.MDCComponent);
  4115. exports.MDCDialog = MDCDialog;
  4116. /***/ }),
  4117. /***/ "./packages/mdc-dialog/constants.ts":
  4118. /*!******************************************!*\
  4119. !*** ./packages/mdc-dialog/constants.ts ***!
  4120. \******************************************/
  4121. /*! no static exports found */
  4122. /***/ (function(module, exports, __webpack_require__) {
  4123. "use strict";
  4124. /**
  4125. * @license
  4126. * Copyright 2016 Google Inc.
  4127. *
  4128. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4129. * of this software and associated documentation files (the "Software"), to deal
  4130. * in the Software without restriction, including without limitation the rights
  4131. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4132. * copies of the Software, and to permit persons to whom the Software is
  4133. * furnished to do so, subject to the following conditions:
  4134. *
  4135. * The above copyright notice and this permission notice shall be included in
  4136. * all copies or substantial portions of the Software.
  4137. *
  4138. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4139. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4140. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4141. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4142. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4143. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4144. * THE SOFTWARE.
  4145. */
  4146. Object.defineProperty(exports, "__esModule", { value: true });
  4147. exports.numbers = exports.strings = exports.cssClasses = void 0;
  4148. exports.cssClasses = {
  4149. CLOSING: 'mdc-dialog--closing',
  4150. OPEN: 'mdc-dialog--open',
  4151. OPENING: 'mdc-dialog--opening',
  4152. SCROLLABLE: 'mdc-dialog--scrollable',
  4153. SCROLL_LOCK: 'mdc-dialog-scroll-lock',
  4154. STACKED: 'mdc-dialog--stacked',
  4155. FULLSCREEN: 'mdc-dialog--fullscreen',
  4156. // Class for showing a scroll divider on full-screen dialog header element.
  4157. // Should only be displayed on scrollable content, when the dialog content is
  4158. // scrolled "underneath" the header.
  4159. SCROLL_DIVIDER_HEADER: 'mdc-dialog-scroll-divider-header',
  4160. // Class for showing a scroll divider on a full-screen dialog footer element.
  4161. // Should only be displayed on scrolalble content, when the dialog content is
  4162. // obscured "underneath" the footer.
  4163. SCROLL_DIVIDER_FOOTER: 'mdc-dialog-scroll-divider-footer',
  4164. // The "surface scrim" is a scrim covering only the surface of a dialog. This
  4165. // is used in situations where a confirmation dialog is shown over an already
  4166. // opened full-screen dialog. On larger screen-sizes, the full-screen dialog
  4167. // is sized as a modal and so in these situations we display a "surface scrim"
  4168. // to prevent a "double scrim" (where the scrim from the secondary
  4169. // confirmation dialog would overlap with the scrim from the full-screen
  4170. // dialog).
  4171. SURFACE_SCRIM_SHOWN: 'mdc-dialog__surface-scrim--shown',
  4172. // "Showing" animating class for the surface-scrim.
  4173. SURFACE_SCRIM_SHOWING: 'mdc-dialog__surface-scrim--showing',
  4174. // "Hiding" animating class for the surface-scrim.
  4175. SURFACE_SCRIM_HIDING: 'mdc-dialog__surface-scrim--hiding',
  4176. // Class to hide a dialog's scrim (used in conjunction with a surface-scrim).
  4177. // Note that we only hide the original scrim rather than removing it entirely
  4178. // to prevent interactions with the content behind this scrim, and to capture
  4179. // scrim clicks.
  4180. SCRIM_HIDDEN: 'mdc-dialog__scrim--hidden'
  4181. };
  4182. exports.strings = {
  4183. ACTION_ATTRIBUTE: 'data-mdc-dialog-action',
  4184. BUTTON_DEFAULT_ATTRIBUTE: 'data-mdc-dialog-button-default',
  4185. BUTTON_SELECTOR: '.mdc-dialog__button',
  4186. CLOSED_EVENT: 'MDCDialog:closed',
  4187. CLOSE_ACTION: 'close',
  4188. CLOSING_EVENT: 'MDCDialog:closing',
  4189. CONTAINER_SELECTOR: '.mdc-dialog__container',
  4190. CONTENT_SELECTOR: '.mdc-dialog__content',
  4191. DESTROY_ACTION: 'destroy',
  4192. INITIAL_FOCUS_ATTRIBUTE: 'data-mdc-dialog-initial-focus',
  4193. OPENED_EVENT: 'MDCDialog:opened',
  4194. OPENING_EVENT: 'MDCDialog:opening',
  4195. SCRIM_SELECTOR: '.mdc-dialog__scrim',
  4196. SUPPRESS_DEFAULT_PRESS_SELECTOR: ['textarea', '.mdc-menu .mdc-list-item', '.mdc-menu .mdc-deprecated-list-item'].join(', '),
  4197. SURFACE_SELECTOR: '.mdc-dialog__surface'
  4198. };
  4199. exports.numbers = {
  4200. DIALOG_ANIMATION_CLOSE_TIME_MS: 75,
  4201. DIALOG_ANIMATION_OPEN_TIME_MS: 150
  4202. };
  4203. /***/ }),
  4204. /***/ "./packages/mdc-dialog/foundation.ts":
  4205. /*!*******************************************!*\
  4206. !*** ./packages/mdc-dialog/foundation.ts ***!
  4207. \*******************************************/
  4208. /*! no static exports found */
  4209. /***/ (function(module, exports, __webpack_require__) {
  4210. "use strict";
  4211. /**
  4212. * @license
  4213. * Copyright 2017 Google Inc.
  4214. *
  4215. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4216. * of this software and associated documentation files (the "Software"), to deal
  4217. * in the Software without restriction, including without limitation the rights
  4218. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4219. * copies of the Software, and to permit persons to whom the Software is
  4220. * furnished to do so, subject to the following conditions:
  4221. *
  4222. * The above copyright notice and this permission notice shall be included in
  4223. * all copies or substantial portions of the Software.
  4224. *
  4225. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4226. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4227. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4228. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4229. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4230. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4231. * THE SOFTWARE.
  4232. */
  4233. var __extends = this && this.__extends || function () {
  4234. var _extendStatics = function extendStatics(d, b) {
  4235. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  4236. d.__proto__ = b;
  4237. } || function (d, b) {
  4238. for (var p in b) {
  4239. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  4240. }
  4241. };
  4242. return _extendStatics(d, b);
  4243. };
  4244. return function (d, b) {
  4245. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  4246. _extendStatics(d, b);
  4247. function __() {
  4248. this.constructor = d;
  4249. }
  4250. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  4251. };
  4252. }();
  4253. var __assign = this && this.__assign || function () {
  4254. __assign = Object.assign || function (t) {
  4255. for (var s, i = 1, n = arguments.length; i < n; i++) {
  4256. s = arguments[i];
  4257. for (var p in s) {
  4258. if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
  4259. }
  4260. }
  4261. return t;
  4262. };
  4263. return __assign.apply(this, arguments);
  4264. };
  4265. Object.defineProperty(exports, "__esModule", { value: true });
  4266. exports.MDCDialogFoundation = void 0;
  4267. var animationframe_1 = __webpack_require__(/*! @material/animation/animationframe */ "./packages/mdc-animation/animationframe.ts");
  4268. var foundation_1 = __webpack_require__(/*! @material/base/foundation */ "./packages/mdc-base/foundation.ts");
  4269. var constants_1 = __webpack_require__(/*! ./constants */ "./packages/mdc-dialog/constants.ts");
  4270. var AnimationKeys;
  4271. (function (AnimationKeys) {
  4272. AnimationKeys["POLL_SCROLL_POS"] = "poll_scroll_position";
  4273. AnimationKeys["POLL_LAYOUT_CHANGE"] = "poll_layout_change";
  4274. })(AnimationKeys || (AnimationKeys = {}));
  4275. /** MDC Dialog Foundation */
  4276. var MDCDialogFoundation = /** @class */function (_super) {
  4277. __extends(MDCDialogFoundation, _super);
  4278. function MDCDialogFoundation(adapter) {
  4279. var _this = _super.call(this, __assign(__assign({}, MDCDialogFoundation.defaultAdapter), adapter)) || this;
  4280. _this.dialogOpen = false;
  4281. _this.isFullscreen = false;
  4282. _this.animationFrame = 0;
  4283. _this.animationTimer = 0;
  4284. _this.escapeKeyAction = constants_1.strings.CLOSE_ACTION;
  4285. _this.scrimClickAction = constants_1.strings.CLOSE_ACTION;
  4286. _this.autoStackButtons = true;
  4287. _this.areButtonsStacked = false;
  4288. _this.suppressDefaultPressSelector = constants_1.strings.SUPPRESS_DEFAULT_PRESS_SELECTOR;
  4289. _this.animFrame = new animationframe_1.AnimationFrame();
  4290. _this.contentScrollHandler = function () {
  4291. _this.handleScrollEvent();
  4292. };
  4293. _this.windowResizeHandler = function () {
  4294. _this.layout();
  4295. };
  4296. _this.windowOrientationChangeHandler = function () {
  4297. _this.layout();
  4298. };
  4299. return _this;
  4300. }
  4301. Object.defineProperty(MDCDialogFoundation, "cssClasses", {
  4302. get: function get() {
  4303. return constants_1.cssClasses;
  4304. },
  4305. enumerable: false,
  4306. configurable: true
  4307. });
  4308. Object.defineProperty(MDCDialogFoundation, "strings", {
  4309. get: function get() {
  4310. return constants_1.strings;
  4311. },
  4312. enumerable: false,
  4313. configurable: true
  4314. });
  4315. Object.defineProperty(MDCDialogFoundation, "numbers", {
  4316. get: function get() {
  4317. return constants_1.numbers;
  4318. },
  4319. enumerable: false,
  4320. configurable: true
  4321. });
  4322. Object.defineProperty(MDCDialogFoundation, "defaultAdapter", {
  4323. get: function get() {
  4324. return {
  4325. addBodyClass: function addBodyClass() {
  4326. return undefined;
  4327. },
  4328. addClass: function addClass() {
  4329. return undefined;
  4330. },
  4331. areButtonsStacked: function areButtonsStacked() {
  4332. return false;
  4333. },
  4334. clickDefaultButton: function clickDefaultButton() {
  4335. return undefined;
  4336. },
  4337. eventTargetMatches: function eventTargetMatches() {
  4338. return false;
  4339. },
  4340. getActionFromEvent: function getActionFromEvent() {
  4341. return '';
  4342. },
  4343. getInitialFocusEl: function getInitialFocusEl() {
  4344. return null;
  4345. },
  4346. hasClass: function hasClass() {
  4347. return false;
  4348. },
  4349. isContentScrollable: function isContentScrollable() {
  4350. return false;
  4351. },
  4352. notifyClosed: function notifyClosed() {
  4353. return undefined;
  4354. },
  4355. notifyClosing: function notifyClosing() {
  4356. return undefined;
  4357. },
  4358. notifyOpened: function notifyOpened() {
  4359. return undefined;
  4360. },
  4361. notifyOpening: function notifyOpening() {
  4362. return undefined;
  4363. },
  4364. releaseFocus: function releaseFocus() {
  4365. return undefined;
  4366. },
  4367. removeBodyClass: function removeBodyClass() {
  4368. return undefined;
  4369. },
  4370. removeClass: function removeClass() {
  4371. return undefined;
  4372. },
  4373. reverseButtons: function reverseButtons() {
  4374. return undefined;
  4375. },
  4376. trapFocus: function trapFocus() {
  4377. return undefined;
  4378. },
  4379. registerContentEventHandler: function registerContentEventHandler() {
  4380. return undefined;
  4381. },
  4382. deregisterContentEventHandler: function deregisterContentEventHandler() {
  4383. return undefined;
  4384. },
  4385. isScrollableContentAtTop: function isScrollableContentAtTop() {
  4386. return false;
  4387. },
  4388. isScrollableContentAtBottom: function isScrollableContentAtBottom() {
  4389. return false;
  4390. },
  4391. registerWindowEventHandler: function registerWindowEventHandler() {
  4392. return undefined;
  4393. },
  4394. deregisterWindowEventHandler: function deregisterWindowEventHandler() {
  4395. return undefined;
  4396. }
  4397. };
  4398. },
  4399. enumerable: false,
  4400. configurable: true
  4401. });
  4402. MDCDialogFoundation.prototype.init = function () {
  4403. if (this.adapter.hasClass(constants_1.cssClasses.STACKED)) {
  4404. this.setAutoStackButtons(false);
  4405. }
  4406. this.isFullscreen = this.adapter.hasClass(constants_1.cssClasses.FULLSCREEN);
  4407. };
  4408. MDCDialogFoundation.prototype.destroy = function () {
  4409. if (this.animationTimer) {
  4410. clearTimeout(this.animationTimer);
  4411. this.handleAnimationTimerEnd();
  4412. }
  4413. if (this.isFullscreen) {
  4414. this.adapter.deregisterContentEventHandler('scroll', this.contentScrollHandler);
  4415. }
  4416. this.animFrame.cancelAll();
  4417. this.adapter.deregisterWindowEventHandler('resize', this.windowResizeHandler);
  4418. this.adapter.deregisterWindowEventHandler('orientationchange', this.windowOrientationChangeHandler);
  4419. };
  4420. MDCDialogFoundation.prototype.open = function (dialogOptions) {
  4421. var _this = this;
  4422. this.dialogOpen = true;
  4423. this.adapter.notifyOpening();
  4424. this.adapter.addClass(constants_1.cssClasses.OPENING);
  4425. if (this.isFullscreen) {
  4426. // A scroll event listener is registered even if the dialog is not
  4427. // scrollable on open, since the window resize event, or orientation
  4428. // change may make the dialog scrollable after it is opened.
  4429. this.adapter.registerContentEventHandler('scroll', this.contentScrollHandler);
  4430. }
  4431. if (dialogOptions && dialogOptions.isAboveFullscreenDialog) {
  4432. this.adapter.addClass(constants_1.cssClasses.SCRIM_HIDDEN);
  4433. }
  4434. this.adapter.registerWindowEventHandler('resize', this.windowResizeHandler);
  4435. this.adapter.registerWindowEventHandler('orientationchange', this.windowOrientationChangeHandler);
  4436. // Wait a frame once display is no longer "none", to establish basis for
  4437. // animation
  4438. this.runNextAnimationFrame(function () {
  4439. _this.adapter.addClass(constants_1.cssClasses.OPEN);
  4440. if (!dialogOptions || !dialogOptions.isScrimless) {
  4441. _this.adapter.addBodyClass(constants_1.cssClasses.SCROLL_LOCK);
  4442. }
  4443. _this.layout();
  4444. _this.animationTimer = setTimeout(function () {
  4445. _this.handleAnimationTimerEnd();
  4446. _this.adapter.trapFocus(_this.adapter.getInitialFocusEl());
  4447. _this.adapter.notifyOpened();
  4448. }, constants_1.numbers.DIALOG_ANIMATION_OPEN_TIME_MS);
  4449. });
  4450. };
  4451. MDCDialogFoundation.prototype.close = function (action) {
  4452. var _this = this;
  4453. if (action === void 0) {
  4454. action = '';
  4455. }
  4456. if (!this.dialogOpen) {
  4457. // Avoid redundant close calls (and events), e.g. from keydown on elements
  4458. // that inherently emit click
  4459. return;
  4460. }
  4461. this.dialogOpen = false;
  4462. this.adapter.notifyClosing(action);
  4463. this.adapter.addClass(constants_1.cssClasses.CLOSING);
  4464. this.adapter.removeClass(constants_1.cssClasses.OPEN);
  4465. this.adapter.removeBodyClass(constants_1.cssClasses.SCROLL_LOCK);
  4466. if (this.isFullscreen) {
  4467. this.adapter.deregisterContentEventHandler('scroll', this.contentScrollHandler);
  4468. }
  4469. this.adapter.deregisterWindowEventHandler('resize', this.windowResizeHandler);
  4470. this.adapter.deregisterWindowEventHandler('orientationchange', this.windowOrientationChangeHandler);
  4471. cancelAnimationFrame(this.animationFrame);
  4472. this.animationFrame = 0;
  4473. clearTimeout(this.animationTimer);
  4474. this.animationTimer = setTimeout(function () {
  4475. _this.adapter.releaseFocus();
  4476. _this.handleAnimationTimerEnd();
  4477. _this.adapter.notifyClosed(action);
  4478. }, constants_1.numbers.DIALOG_ANIMATION_CLOSE_TIME_MS);
  4479. };
  4480. /**
  4481. * Used only in instances of showing a secondary dialog over a full-screen
  4482. * dialog. Shows the "surface scrim" displayed over the full-screen dialog.
  4483. */
  4484. MDCDialogFoundation.prototype.showSurfaceScrim = function () {
  4485. var _this = this;
  4486. this.adapter.addClass(constants_1.cssClasses.SURFACE_SCRIM_SHOWING);
  4487. this.runNextAnimationFrame(function () {
  4488. _this.adapter.addClass(constants_1.cssClasses.SURFACE_SCRIM_SHOWN);
  4489. });
  4490. };
  4491. /**
  4492. * Used only in instances of showing a secondary dialog over a full-screen
  4493. * dialog. Hides the "surface scrim" displayed over the full-screen dialog.
  4494. */
  4495. MDCDialogFoundation.prototype.hideSurfaceScrim = function () {
  4496. this.adapter.removeClass(constants_1.cssClasses.SURFACE_SCRIM_SHOWN);
  4497. this.adapter.addClass(constants_1.cssClasses.SURFACE_SCRIM_HIDING);
  4498. };
  4499. /**
  4500. * Handles `transitionend` event triggered when surface scrim animation is
  4501. * finished.
  4502. */
  4503. MDCDialogFoundation.prototype.handleSurfaceScrimTransitionEnd = function () {
  4504. this.adapter.removeClass(constants_1.cssClasses.SURFACE_SCRIM_HIDING);
  4505. this.adapter.removeClass(constants_1.cssClasses.SURFACE_SCRIM_SHOWING);
  4506. };
  4507. MDCDialogFoundation.prototype.isOpen = function () {
  4508. return this.dialogOpen;
  4509. };
  4510. MDCDialogFoundation.prototype.getEscapeKeyAction = function () {
  4511. return this.escapeKeyAction;
  4512. };
  4513. MDCDialogFoundation.prototype.setEscapeKeyAction = function (action) {
  4514. this.escapeKeyAction = action;
  4515. };
  4516. MDCDialogFoundation.prototype.getScrimClickAction = function () {
  4517. return this.scrimClickAction;
  4518. };
  4519. MDCDialogFoundation.prototype.setScrimClickAction = function (action) {
  4520. this.scrimClickAction = action;
  4521. };
  4522. MDCDialogFoundation.prototype.getAutoStackButtons = function () {
  4523. return this.autoStackButtons;
  4524. };
  4525. MDCDialogFoundation.prototype.setAutoStackButtons = function (autoStack) {
  4526. this.autoStackButtons = autoStack;
  4527. };
  4528. MDCDialogFoundation.prototype.getSuppressDefaultPressSelector = function () {
  4529. return this.suppressDefaultPressSelector;
  4530. };
  4531. MDCDialogFoundation.prototype.setSuppressDefaultPressSelector = function (selector) {
  4532. this.suppressDefaultPressSelector = selector;
  4533. };
  4534. MDCDialogFoundation.prototype.layout = function () {
  4535. var _this = this;
  4536. this.animFrame.request(AnimationKeys.POLL_LAYOUT_CHANGE, function () {
  4537. _this.layoutInternal();
  4538. });
  4539. };
  4540. /** Handles click on the dialog root element. */
  4541. MDCDialogFoundation.prototype.handleClick = function (evt) {
  4542. var isScrim = this.adapter.eventTargetMatches(evt.target, constants_1.strings.SCRIM_SELECTOR);
  4543. // Check for scrim click first since it doesn't require querying ancestors.
  4544. if (isScrim && this.scrimClickAction !== '') {
  4545. this.close(this.scrimClickAction);
  4546. } else {
  4547. var action = this.adapter.getActionFromEvent(evt);
  4548. if (action) {
  4549. this.close(action);
  4550. }
  4551. }
  4552. };
  4553. /** Handles keydown on the dialog root element. */
  4554. MDCDialogFoundation.prototype.handleKeydown = function (evt) {
  4555. var isEnter = evt.key === 'Enter' || evt.keyCode === 13;
  4556. if (!isEnter) {
  4557. return;
  4558. }
  4559. var action = this.adapter.getActionFromEvent(evt);
  4560. if (action) {
  4561. // Action button callback is handled in `handleClick`,
  4562. // since space/enter keydowns on buttons trigger click events.
  4563. return;
  4564. }
  4565. // `composedPath` is used here, when available, to account for use cases
  4566. // where a target meant to suppress the default press behaviour
  4567. // may exist in a shadow root.
  4568. // For example, a textarea inside a web component:
  4569. // <mwc-dialog>
  4570. // <horizontal-layout>
  4571. // #shadow-root (open)
  4572. // <mwc-textarea>
  4573. // #shadow-root (open)
  4574. // <textarea></textarea>
  4575. // </mwc-textarea>
  4576. // </horizontal-layout>
  4577. // </mwc-dialog>
  4578. var target = evt.composedPath ? evt.composedPath()[0] : evt.target;
  4579. var isDefault = this.suppressDefaultPressSelector ? !this.adapter.eventTargetMatches(target, this.suppressDefaultPressSelector) : true;
  4580. if (isEnter && isDefault) {
  4581. this.adapter.clickDefaultButton();
  4582. }
  4583. };
  4584. /** Handles keydown on the document. */
  4585. MDCDialogFoundation.prototype.handleDocumentKeydown = function (evt) {
  4586. var isEscape = evt.key === 'Escape' || evt.keyCode === 27;
  4587. if (isEscape && this.escapeKeyAction !== '') {
  4588. this.close(this.escapeKeyAction);
  4589. }
  4590. };
  4591. /**
  4592. * Handles scroll event on the dialog's content element -- showing a scroll
  4593. * divider on the header or footer based on the scroll position. This handler
  4594. * should only be registered on full-screen dialogs with scrollable content.
  4595. */
  4596. MDCDialogFoundation.prototype.handleScrollEvent = function () {
  4597. var _this = this;
  4598. // Since scroll events can fire at a high rate, we throttle these events by
  4599. // using requestAnimationFrame.
  4600. this.animFrame.request(AnimationKeys.POLL_SCROLL_POS, function () {
  4601. _this.toggleScrollDividerHeader();
  4602. _this.toggleScrollDividerFooter();
  4603. });
  4604. };
  4605. MDCDialogFoundation.prototype.layoutInternal = function () {
  4606. if (this.autoStackButtons) {
  4607. this.detectStackedButtons();
  4608. }
  4609. this.toggleScrollableClasses();
  4610. };
  4611. MDCDialogFoundation.prototype.handleAnimationTimerEnd = function () {
  4612. this.animationTimer = 0;
  4613. this.adapter.removeClass(constants_1.cssClasses.OPENING);
  4614. this.adapter.removeClass(constants_1.cssClasses.CLOSING);
  4615. };
  4616. /**
  4617. * Runs the given logic on the next animation frame, using setTimeout to
  4618. * factor in Firefox reflow behavior.
  4619. */
  4620. MDCDialogFoundation.prototype.runNextAnimationFrame = function (callback) {
  4621. var _this = this;
  4622. cancelAnimationFrame(this.animationFrame);
  4623. this.animationFrame = requestAnimationFrame(function () {
  4624. _this.animationFrame = 0;
  4625. clearTimeout(_this.animationTimer);
  4626. _this.animationTimer = setTimeout(callback, 0);
  4627. });
  4628. };
  4629. MDCDialogFoundation.prototype.detectStackedButtons = function () {
  4630. // Remove the class first to let us measure the buttons' natural positions.
  4631. this.adapter.removeClass(constants_1.cssClasses.STACKED);
  4632. var areButtonsStacked = this.adapter.areButtonsStacked();
  4633. if (areButtonsStacked) {
  4634. this.adapter.addClass(constants_1.cssClasses.STACKED);
  4635. }
  4636. if (areButtonsStacked !== this.areButtonsStacked) {
  4637. this.adapter.reverseButtons();
  4638. this.areButtonsStacked = areButtonsStacked;
  4639. }
  4640. };
  4641. MDCDialogFoundation.prototype.toggleScrollableClasses = function () {
  4642. // Remove the class first to let us measure the natural height of the
  4643. // content.
  4644. this.adapter.removeClass(constants_1.cssClasses.SCROLLABLE);
  4645. if (this.adapter.isContentScrollable()) {
  4646. this.adapter.addClass(constants_1.cssClasses.SCROLLABLE);
  4647. if (this.isFullscreen) {
  4648. // If dialog is full-screen and scrollable, check if a scroll divider
  4649. // should be shown.
  4650. this.toggleScrollDividerHeader();
  4651. this.toggleScrollDividerFooter();
  4652. }
  4653. }
  4654. };
  4655. MDCDialogFoundation.prototype.toggleScrollDividerHeader = function () {
  4656. if (!this.adapter.isScrollableContentAtTop()) {
  4657. this.adapter.addClass(constants_1.cssClasses.SCROLL_DIVIDER_HEADER);
  4658. } else if (this.adapter.hasClass(constants_1.cssClasses.SCROLL_DIVIDER_HEADER)) {
  4659. this.adapter.removeClass(constants_1.cssClasses.SCROLL_DIVIDER_HEADER);
  4660. }
  4661. };
  4662. MDCDialogFoundation.prototype.toggleScrollDividerFooter = function () {
  4663. if (!this.adapter.isScrollableContentAtBottom()) {
  4664. this.adapter.addClass(constants_1.cssClasses.SCROLL_DIVIDER_FOOTER);
  4665. } else if (this.adapter.hasClass(constants_1.cssClasses.SCROLL_DIVIDER_FOOTER)) {
  4666. this.adapter.removeClass(constants_1.cssClasses.SCROLL_DIVIDER_FOOTER);
  4667. }
  4668. };
  4669. return MDCDialogFoundation;
  4670. }(foundation_1.MDCFoundation);
  4671. exports.MDCDialogFoundation = MDCDialogFoundation;
  4672. // tslint:disable-next-line:no-default-export Needed for backward compatibility with MDC Web v0.44.0 and earlier.
  4673. exports.default = MDCDialogFoundation;
  4674. /***/ }),
  4675. /***/ "./packages/mdc-dialog/index.ts":
  4676. /*!**************************************!*\
  4677. !*** ./packages/mdc-dialog/index.ts ***!
  4678. \**************************************/
  4679. /*! no static exports found */
  4680. /***/ (function(module, exports, __webpack_require__) {
  4681. "use strict";
  4682. /**
  4683. * @license
  4684. * Copyright 2019 Google Inc.
  4685. *
  4686. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4687. * of this software and associated documentation files (the "Software"), to deal
  4688. * in the Software without restriction, including without limitation the rights
  4689. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4690. * copies of the Software, and to permit persons to whom the Software is
  4691. * furnished to do so, subject to the following conditions:
  4692. *
  4693. * The above copyright notice and this permission notice shall be included in
  4694. * all copies or substantial portions of the Software.
  4695. *
  4696. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4697. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4698. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4699. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4700. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4701. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4702. * THE SOFTWARE.
  4703. */
  4704. var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
  4705. if (k2 === undefined) k2 = k;
  4706. Object.defineProperty(o, k2, { enumerable: true, get: function get() {
  4707. return m[k];
  4708. } });
  4709. } : function (o, m, k, k2) {
  4710. if (k2 === undefined) k2 = k;
  4711. o[k2] = m[k];
  4712. });
  4713. var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
  4714. Object.defineProperty(o, "default", { enumerable: true, value: v });
  4715. } : function (o, v) {
  4716. o["default"] = v;
  4717. });
  4718. var __importStar = this && this.__importStar || function (mod) {
  4719. if (mod && mod.__esModule) return mod;
  4720. var result = {};
  4721. if (mod != null) for (var k in mod) {
  4722. if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
  4723. }__setModuleDefault(result, mod);
  4724. return result;
  4725. };
  4726. var __exportStar = this && this.__exportStar || function (m, exports) {
  4727. for (var p in m) {
  4728. if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
  4729. }
  4730. };
  4731. Object.defineProperty(exports, "__esModule", { value: true });
  4732. exports.util = void 0;
  4733. var util = __importStar(__webpack_require__(/*! ./util */ "./packages/mdc-dialog/util.ts"));
  4734. exports.util = util;
  4735. __exportStar(__webpack_require__(/*! ./adapter */ "./packages/mdc-dialog/adapter.ts"), exports);
  4736. __exportStar(__webpack_require__(/*! ./component */ "./packages/mdc-dialog/component.ts"), exports);
  4737. __exportStar(__webpack_require__(/*! ./constants */ "./packages/mdc-dialog/constants.ts"), exports);
  4738. __exportStar(__webpack_require__(/*! ./foundation */ "./packages/mdc-dialog/foundation.ts"), exports);
  4739. __exportStar(__webpack_require__(/*! ./types */ "./packages/mdc-dialog/types.ts"), exports);
  4740. /***/ }),
  4741. /***/ "./packages/mdc-dialog/types.ts":
  4742. /*!**************************************!*\
  4743. !*** ./packages/mdc-dialog/types.ts ***!
  4744. \**************************************/
  4745. /*! no static exports found */
  4746. /***/ (function(module, exports, __webpack_require__) {
  4747. "use strict";
  4748. /**
  4749. * @license
  4750. * Copyright 2019 Google Inc.
  4751. *
  4752. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4753. * of this software and associated documentation files (the "Software"), to deal
  4754. * in the Software without restriction, including without limitation the rights
  4755. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4756. * copies of the Software, and to permit persons to whom the Software is
  4757. * furnished to do so, subject to the following conditions:
  4758. *
  4759. * The above copyright notice and this permission notice shall be included in
  4760. * all copies or substantial portions of the Software.
  4761. *
  4762. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4763. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4764. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4765. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4766. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4767. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4768. * THE SOFTWARE.
  4769. */
  4770. Object.defineProperty(exports, "__esModule", { value: true });
  4771. /***/ }),
  4772. /***/ "./packages/mdc-dialog/util.ts":
  4773. /*!*************************************!*\
  4774. !*** ./packages/mdc-dialog/util.ts ***!
  4775. \*************************************/
  4776. /*! no static exports found */
  4777. /***/ (function(module, exports, __webpack_require__) {
  4778. "use strict";
  4779. /**
  4780. * @license
  4781. * Copyright 2016 Google Inc.
  4782. *
  4783. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4784. * of this software and associated documentation files (the "Software"), to deal
  4785. * in the Software without restriction, including without limitation the rights
  4786. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4787. * copies of the Software, and to permit persons to whom the Software is
  4788. * furnished to do so, subject to the following conditions:
  4789. *
  4790. * The above copyright notice and this permission notice shall be included in
  4791. * all copies or substantial portions of the Software.
  4792. *
  4793. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4794. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4795. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4796. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4797. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4798. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4799. * THE SOFTWARE.
  4800. */
  4801. Object.defineProperty(exports, "__esModule", { value: true });
  4802. exports.areTopsMisaligned = exports.isScrollAtBottom = exports.isScrollAtTop = exports.isScrollable = exports.createFocusTrapInstance = void 0;
  4803. function createFocusTrapInstance(surfaceEl, focusTrapFactory, initialFocusEl) {
  4804. return focusTrapFactory(surfaceEl, { initialFocusEl: initialFocusEl });
  4805. }
  4806. exports.createFocusTrapInstance = createFocusTrapInstance;
  4807. function isScrollable(el) {
  4808. return el ? el.scrollHeight > el.offsetHeight : false;
  4809. }
  4810. exports.isScrollable = isScrollable;
  4811. /**
  4812. * For scrollable content, returns true if the content has not been scrolled
  4813. * (that is, the scroll content is as the "top"). This is used in full-screen
  4814. * dialogs, where the scroll divider is expected only to appear once the
  4815. * content has been scrolled "underneath" the header bar.
  4816. */
  4817. function isScrollAtTop(el) {
  4818. return el ? el.scrollTop === 0 : false;
  4819. }
  4820. exports.isScrollAtTop = isScrollAtTop;
  4821. /**
  4822. * For scrollable content, returns true if the content has been scrolled all the
  4823. * way to the bottom. This is used in full-screen dialogs, where the footer
  4824. * scroll divider is expected only to appear when the content is "cut-off" by
  4825. * the footer bar.
  4826. */
  4827. function isScrollAtBottom(el) {
  4828. return el ? Math.ceil(el.scrollHeight - el.scrollTop) === el.clientHeight : false;
  4829. }
  4830. exports.isScrollAtBottom = isScrollAtBottom;
  4831. function areTopsMisaligned(els) {
  4832. var tops = new Set();
  4833. [].forEach.call(els, function (el) {
  4834. return tops.add(el.offsetTop);
  4835. });
  4836. return tops.size > 1;
  4837. }
  4838. exports.areTopsMisaligned = areTopsMisaligned;
  4839. /***/ }),
  4840. /***/ "./packages/mdc-dom/events.ts":
  4841. /*!************************************!*\
  4842. !*** ./packages/mdc-dom/events.ts ***!
  4843. \************************************/
  4844. /*! no static exports found */
  4845. /***/ (function(module, exports, __webpack_require__) {
  4846. "use strict";
  4847. /**
  4848. * @license
  4849. * Copyright 2019 Google Inc.
  4850. *
  4851. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4852. * of this software and associated documentation files (the "Software"), to deal
  4853. * in the Software without restriction, including without limitation the rights
  4854. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4855. * copies of the Software, and to permit persons to whom the Software is
  4856. * furnished to do so, subject to the following conditions:
  4857. *
  4858. * The above copyright notice and this permission notice shall be included in
  4859. * all copies or substantial portions of the Software.
  4860. *
  4861. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4862. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4863. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4864. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4865. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4866. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4867. * THE SOFTWARE.
  4868. */
  4869. Object.defineProperty(exports, "__esModule", { value: true });
  4870. exports.applyPassive = void 0;
  4871. /**
  4872. * Determine whether the current browser supports passive event listeners, and
  4873. * if so, use them.
  4874. */
  4875. function applyPassive(globalObj) {
  4876. if (globalObj === void 0) {
  4877. globalObj = window;
  4878. }
  4879. return supportsPassiveOption(globalObj) ? { passive: true } : false;
  4880. }
  4881. exports.applyPassive = applyPassive;
  4882. function supportsPassiveOption(globalObj) {
  4883. if (globalObj === void 0) {
  4884. globalObj = window;
  4885. }
  4886. // See
  4887. // https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
  4888. var passiveSupported = false;
  4889. try {
  4890. var options = {
  4891. // This function will be called when the browser
  4892. // attempts to access the passive property.
  4893. get passive() {
  4894. passiveSupported = true;
  4895. return false;
  4896. }
  4897. };
  4898. var handler = function handler() {};
  4899. globalObj.document.addEventListener('test', handler, options);
  4900. globalObj.document.removeEventListener('test', handler, options);
  4901. } catch (err) {
  4902. passiveSupported = false;
  4903. }
  4904. return passiveSupported;
  4905. }
  4906. /***/ }),
  4907. /***/ "./packages/mdc-dom/focus-trap.ts":
  4908. /*!****************************************!*\
  4909. !*** ./packages/mdc-dom/focus-trap.ts ***!
  4910. \****************************************/
  4911. /*! no static exports found */
  4912. /***/ (function(module, exports, __webpack_require__) {
  4913. "use strict";
  4914. /**
  4915. * @license
  4916. * Copyright 2020 Google Inc.
  4917. *
  4918. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4919. * of this software and associated documentation files (the "Software"), to deal
  4920. * in the Software without restriction, including without limitation the rights
  4921. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4922. * copies of the Software, and to permit persons to whom the Software is
  4923. * furnished to do so, subject to the following conditions:
  4924. *
  4925. * The above copyright notice and this permission notice shall be included in
  4926. * all copies or substantial portions of the Software.
  4927. *
  4928. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4929. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4930. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4931. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4932. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4933. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  4934. * THE SOFTWARE.
  4935. */
  4936. Object.defineProperty(exports, "__esModule", { value: true });
  4937. exports.FocusTrap = void 0;
  4938. var FOCUS_SENTINEL_CLASS = 'mdc-dom-focus-sentinel';
  4939. /**
  4940. * Utility to trap focus in a given root element, e.g. for modal components such
  4941. * as dialogs. The root should have at least one focusable child element,
  4942. * for setting initial focus when trapping focus.
  4943. * Also tracks the previously focused element, and restores focus to that
  4944. * element when releasing focus.
  4945. */
  4946. var FocusTrap = /** @class */function () {
  4947. function FocusTrap(root, options) {
  4948. if (options === void 0) {
  4949. options = {};
  4950. }
  4951. this.root = root;
  4952. this.options = options;
  4953. // Previously focused element before trapping focus.
  4954. this.elFocusedBeforeTrapFocus = null;
  4955. }
  4956. /**
  4957. * Traps focus in `root`. Also focuses on either `initialFocusEl` if set;
  4958. * otherwises sets initial focus to the first focusable child element.
  4959. */
  4960. FocusTrap.prototype.trapFocus = function () {
  4961. var focusableEls = this.getFocusableElements(this.root);
  4962. if (focusableEls.length === 0) {
  4963. throw new Error('FocusTrap: Element must have at least one focusable child.');
  4964. }
  4965. this.elFocusedBeforeTrapFocus = document.activeElement instanceof HTMLElement ? document.activeElement : null;
  4966. this.wrapTabFocus(this.root);
  4967. if (!this.options.skipInitialFocus) {
  4968. this.focusInitialElement(focusableEls, this.options.initialFocusEl);
  4969. }
  4970. };
  4971. /**
  4972. * Releases focus from `root`. Also restores focus to the previously focused
  4973. * element.
  4974. */
  4975. FocusTrap.prototype.releaseFocus = function () {
  4976. Array.from(this.root.querySelectorAll("." + FOCUS_SENTINEL_CLASS)).forEach(function (sentinelEl) {
  4977. sentinelEl.parentElement.removeChild(sentinelEl);
  4978. });
  4979. if (!this.options.skipRestoreFocus && this.elFocusedBeforeTrapFocus) {
  4980. this.elFocusedBeforeTrapFocus.focus();
  4981. }
  4982. };
  4983. /**
  4984. * Wraps tab focus within `el` by adding two hidden sentinel divs which are
  4985. * used to mark the beginning and the end of the tabbable region. When
  4986. * focused, these sentinel elements redirect focus to the first/last
  4987. * children elements of the tabbable region, ensuring that focus is trapped
  4988. * within that region.
  4989. */
  4990. FocusTrap.prototype.wrapTabFocus = function (el) {
  4991. var _this = this;
  4992. var sentinelStart = this.createSentinel();
  4993. var sentinelEnd = this.createSentinel();
  4994. sentinelStart.addEventListener('focus', function () {
  4995. var focusableEls = _this.getFocusableElements(el);
  4996. if (focusableEls.length > 0) {
  4997. focusableEls[focusableEls.length - 1].focus();
  4998. }
  4999. });
  5000. sentinelEnd.addEventListener('focus', function () {
  5001. var focusableEls = _this.getFocusableElements(el);
  5002. if (focusableEls.length > 0) {
  5003. focusableEls[0].focus();
  5004. }
  5005. });
  5006. el.insertBefore(sentinelStart, el.children[0]);
  5007. el.appendChild(sentinelEnd);
  5008. };
  5009. /**
  5010. * Focuses on `initialFocusEl` if defined and a child of the root element.
  5011. * Otherwise, focuses on the first focusable child element of the root.
  5012. */
  5013. FocusTrap.prototype.focusInitialElement = function (focusableEls, initialFocusEl) {
  5014. var focusIndex = 0;
  5015. if (initialFocusEl) {
  5016. focusIndex = Math.max(focusableEls.indexOf(initialFocusEl), 0);
  5017. }
  5018. focusableEls[focusIndex].focus();
  5019. };
  5020. FocusTrap.prototype.getFocusableElements = function (root) {
  5021. var focusableEls = Array.from(root.querySelectorAll('[autofocus], [tabindex], a, input, textarea, select, button'));
  5022. return focusableEls.filter(function (el) {
  5023. var isDisabledOrHidden = el.getAttribute('aria-disabled') === 'true' || el.getAttribute('disabled') != null || el.getAttribute('hidden') != null || el.getAttribute('aria-hidden') === 'true';
  5024. var isTabbableAndVisible = el.tabIndex >= 0 && el.getBoundingClientRect().width > 0 && !el.classList.contains(FOCUS_SENTINEL_CLASS) && !isDisabledOrHidden;
  5025. var isProgrammaticallyHidden = false;
  5026. if (isTabbableAndVisible) {
  5027. var style = getComputedStyle(el);
  5028. isProgrammaticallyHidden = style.display === 'none' || style.visibility === 'hidden';
  5029. }
  5030. return isTabbableAndVisible && !isProgrammaticallyHidden;
  5031. });
  5032. };
  5033. FocusTrap.prototype.createSentinel = function () {
  5034. var sentinel = document.createElement('div');
  5035. sentinel.setAttribute('tabindex', '0');
  5036. // Don't announce in screen readers.
  5037. sentinel.setAttribute('aria-hidden', 'true');
  5038. sentinel.classList.add(FOCUS_SENTINEL_CLASS);
  5039. return sentinel;
  5040. };
  5041. return FocusTrap;
  5042. }();
  5043. exports.FocusTrap = FocusTrap;
  5044. /***/ }),
  5045. /***/ "./packages/mdc-dom/ponyfill.ts":
  5046. /*!**************************************!*\
  5047. !*** ./packages/mdc-dom/ponyfill.ts ***!
  5048. \**************************************/
  5049. /*! no static exports found */
  5050. /***/ (function(module, exports, __webpack_require__) {
  5051. "use strict";
  5052. /**
  5053. * @license
  5054. * Copyright 2018 Google Inc.
  5055. *
  5056. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5057. * of this software and associated documentation files (the "Software"), to deal
  5058. * in the Software without restriction, including without limitation the rights
  5059. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5060. * copies of the Software, and to permit persons to whom the Software is
  5061. * furnished to do so, subject to the following conditions:
  5062. *
  5063. * The above copyright notice and this permission notice shall be included in
  5064. * all copies or substantial portions of the Software.
  5065. *
  5066. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5067. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5068. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5069. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5070. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5071. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5072. * THE SOFTWARE.
  5073. */
  5074. Object.defineProperty(exports, "__esModule", { value: true });
  5075. exports.estimateScrollWidth = exports.matches = exports.closest = void 0;
  5076. /**
  5077. * @fileoverview A "ponyfill" is a polyfill that doesn't modify the global
  5078. * prototype chain. This makes ponyfills safer than traditional polyfills,
  5079. * especially for libraries like MDC.
  5080. */
  5081. function closest(element, selector) {
  5082. if (element.closest) {
  5083. return element.closest(selector);
  5084. }
  5085. var el = element;
  5086. while (el) {
  5087. if (matches(el, selector)) {
  5088. return el;
  5089. }
  5090. el = el.parentElement;
  5091. }
  5092. return null;
  5093. }
  5094. exports.closest = closest;
  5095. /** Element.matches with support for webkit and IE. */
  5096. function matches(element, selector) {
  5097. var nativeMatches = element.matches || element.webkitMatchesSelector || element.msMatchesSelector;
  5098. return nativeMatches.call(element, selector);
  5099. }
  5100. exports.matches = matches;
  5101. /**
  5102. * Used to compute the estimated scroll width of elements. When an element is
  5103. * hidden due to display: none; being applied to a parent element, the width is
  5104. * returned as 0. However, the element will have a true width once no longer
  5105. * inside a display: none context. This method computes an estimated width when
  5106. * the element is hidden or returns the true width when the element is visble.
  5107. * @param {Element} element the element whose width to estimate
  5108. */
  5109. function estimateScrollWidth(element) {
  5110. // Check the offsetParent. If the element inherits display: none from any
  5111. // parent, the offsetParent property will be null (see
  5112. // https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetParent).
  5113. // This check ensures we only clone the node when necessary.
  5114. var htmlEl = element;
  5115. if (htmlEl.offsetParent !== null) {
  5116. return htmlEl.scrollWidth;
  5117. }
  5118. var clone = htmlEl.cloneNode(true);
  5119. clone.style.setProperty('position', 'absolute');
  5120. clone.style.setProperty('transform', 'translate(-9999px, -9999px)');
  5121. document.documentElement.appendChild(clone);
  5122. var scrollWidth = clone.scrollWidth;
  5123. document.documentElement.removeChild(clone);
  5124. return scrollWidth;
  5125. }
  5126. exports.estimateScrollWidth = estimateScrollWidth;
  5127. /***/ }),
  5128. /***/ "./packages/mdc-ripple/component.ts":
  5129. /*!******************************************!*\
  5130. !*** ./packages/mdc-ripple/component.ts ***!
  5131. \******************************************/
  5132. /*! no static exports found */
  5133. /***/ (function(module, exports, __webpack_require__) {
  5134. "use strict";
  5135. /**
  5136. * @license
  5137. * Copyright 2016 Google Inc.
  5138. *
  5139. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5140. * of this software and associated documentation files (the "Software"), to deal
  5141. * in the Software without restriction, including without limitation the rights
  5142. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5143. * copies of the Software, and to permit persons to whom the Software is
  5144. * furnished to do so, subject to the following conditions:
  5145. *
  5146. * The above copyright notice and this permission notice shall be included in
  5147. * all copies or substantial portions of the Software.
  5148. *
  5149. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5150. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5151. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5152. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5153. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5154. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5155. * THE SOFTWARE.
  5156. */
  5157. var __extends = this && this.__extends || function () {
  5158. var _extendStatics = function extendStatics(d, b) {
  5159. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  5160. d.__proto__ = b;
  5161. } || function (d, b) {
  5162. for (var p in b) {
  5163. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  5164. }
  5165. };
  5166. return _extendStatics(d, b);
  5167. };
  5168. return function (d, b) {
  5169. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  5170. _extendStatics(d, b);
  5171. function __() {
  5172. this.constructor = d;
  5173. }
  5174. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  5175. };
  5176. }();
  5177. var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
  5178. if (k2 === undefined) k2 = k;
  5179. Object.defineProperty(o, k2, { enumerable: true, get: function get() {
  5180. return m[k];
  5181. } });
  5182. } : function (o, m, k, k2) {
  5183. if (k2 === undefined) k2 = k;
  5184. o[k2] = m[k];
  5185. });
  5186. var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
  5187. Object.defineProperty(o, "default", { enumerable: true, value: v });
  5188. } : function (o, v) {
  5189. o["default"] = v;
  5190. });
  5191. var __importStar = this && this.__importStar || function (mod) {
  5192. if (mod && mod.__esModule) return mod;
  5193. var result = {};
  5194. if (mod != null) for (var k in mod) {
  5195. if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
  5196. }__setModuleDefault(result, mod);
  5197. return result;
  5198. };
  5199. Object.defineProperty(exports, "__esModule", { value: true });
  5200. exports.MDCRipple = void 0;
  5201. var component_1 = __webpack_require__(/*! @material/base/component */ "./packages/mdc-base/component.ts");
  5202. var events_1 = __webpack_require__(/*! @material/dom/events */ "./packages/mdc-dom/events.ts");
  5203. var ponyfill_1 = __webpack_require__(/*! @material/dom/ponyfill */ "./packages/mdc-dom/ponyfill.ts");
  5204. var foundation_1 = __webpack_require__(/*! ./foundation */ "./packages/mdc-ripple/foundation.ts");
  5205. var util = __importStar(__webpack_require__(/*! ./util */ "./packages/mdc-ripple/util.ts"));
  5206. /** MDC Ripple */
  5207. var MDCRipple = /** @class */function (_super) {
  5208. __extends(MDCRipple, _super);
  5209. function MDCRipple() {
  5210. var _this = _super !== null && _super.apply(this, arguments) || this;
  5211. _this.disabled = false;
  5212. return _this;
  5213. }
  5214. MDCRipple.attachTo = function (root, opts) {
  5215. if (opts === void 0) {
  5216. opts = {
  5217. isUnbounded: undefined
  5218. };
  5219. }
  5220. var ripple = new MDCRipple(root);
  5221. // Only override unbounded behavior if option is explicitly specified
  5222. if (opts.isUnbounded !== undefined) {
  5223. ripple.unbounded = opts.isUnbounded;
  5224. }
  5225. return ripple;
  5226. };
  5227. MDCRipple.createAdapter = function (instance) {
  5228. return {
  5229. addClass: function addClass(className) {
  5230. instance.root.classList.add(className);
  5231. },
  5232. browserSupportsCssVars: function browserSupportsCssVars() {
  5233. return util.supportsCssVariables(window);
  5234. },
  5235. computeBoundingRect: function computeBoundingRect() {
  5236. return instance.root.getBoundingClientRect();
  5237. },
  5238. containsEventTarget: function containsEventTarget(target) {
  5239. return instance.root.contains(target);
  5240. },
  5241. deregisterDocumentInteractionHandler: function deregisterDocumentInteractionHandler(evtType, handler) {
  5242. document.documentElement.removeEventListener(evtType, handler, events_1.applyPassive());
  5243. },
  5244. deregisterInteractionHandler: function deregisterInteractionHandler(evtType, handler) {
  5245. instance.root.removeEventListener(evtType, handler, events_1.applyPassive());
  5246. },
  5247. deregisterResizeHandler: function deregisterResizeHandler(handler) {
  5248. window.removeEventListener('resize', handler);
  5249. },
  5250. getWindowPageOffset: function getWindowPageOffset() {
  5251. return { x: window.pageXOffset, y: window.pageYOffset };
  5252. },
  5253. isSurfaceActive: function isSurfaceActive() {
  5254. return ponyfill_1.matches(instance.root, ':active');
  5255. },
  5256. isSurfaceDisabled: function isSurfaceDisabled() {
  5257. return Boolean(instance.disabled);
  5258. },
  5259. isUnbounded: function isUnbounded() {
  5260. return Boolean(instance.unbounded);
  5261. },
  5262. registerDocumentInteractionHandler: function registerDocumentInteractionHandler(evtType, handler) {
  5263. document.documentElement.addEventListener(evtType, handler, events_1.applyPassive());
  5264. },
  5265. registerInteractionHandler: function registerInteractionHandler(evtType, handler) {
  5266. instance.root.addEventListener(evtType, handler, events_1.applyPassive());
  5267. },
  5268. registerResizeHandler: function registerResizeHandler(handler) {
  5269. window.addEventListener('resize', handler);
  5270. },
  5271. removeClass: function removeClass(className) {
  5272. instance.root.classList.remove(className);
  5273. },
  5274. updateCssVariable: function updateCssVariable(varName, value) {
  5275. instance.root.style.setProperty(varName, value);
  5276. }
  5277. };
  5278. };
  5279. Object.defineProperty(MDCRipple.prototype, "unbounded", {
  5280. get: function get() {
  5281. return Boolean(this.isUnbounded);
  5282. },
  5283. set: function set(unbounded) {
  5284. this.isUnbounded = Boolean(unbounded);
  5285. this.setUnbounded();
  5286. },
  5287. enumerable: false,
  5288. configurable: true
  5289. });
  5290. MDCRipple.prototype.activate = function () {
  5291. this.foundation.activate();
  5292. };
  5293. MDCRipple.prototype.deactivate = function () {
  5294. this.foundation.deactivate();
  5295. };
  5296. MDCRipple.prototype.layout = function () {
  5297. this.foundation.layout();
  5298. };
  5299. MDCRipple.prototype.getDefaultFoundation = function () {
  5300. return new foundation_1.MDCRippleFoundation(MDCRipple.createAdapter(this));
  5301. };
  5302. MDCRipple.prototype.initialSyncWithDOM = function () {
  5303. var root = this.root;
  5304. this.isUnbounded = 'mdcRippleIsUnbounded' in root.dataset;
  5305. };
  5306. /**
  5307. * Closure Compiler throws an access control error when directly accessing a
  5308. * protected or private property inside a getter/setter, like unbounded above.
  5309. * By accessing the protected property inside a method, we solve that problem.
  5310. * That's why this function exists.
  5311. */
  5312. MDCRipple.prototype.setUnbounded = function () {
  5313. this.foundation.setUnbounded(Boolean(this.isUnbounded));
  5314. };
  5315. return MDCRipple;
  5316. }(component_1.MDCComponent);
  5317. exports.MDCRipple = MDCRipple;
  5318. /***/ }),
  5319. /***/ "./packages/mdc-ripple/constants.ts":
  5320. /*!******************************************!*\
  5321. !*** ./packages/mdc-ripple/constants.ts ***!
  5322. \******************************************/
  5323. /*! no static exports found */
  5324. /***/ (function(module, exports, __webpack_require__) {
  5325. "use strict";
  5326. /**
  5327. * @license
  5328. * Copyright 2016 Google Inc.
  5329. *
  5330. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5331. * of this software and associated documentation files (the "Software"), to deal
  5332. * in the Software without restriction, including without limitation the rights
  5333. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5334. * copies of the Software, and to permit persons to whom the Software is
  5335. * furnished to do so, subject to the following conditions:
  5336. *
  5337. * The above copyright notice and this permission notice shall be included in
  5338. * all copies or substantial portions of the Software.
  5339. *
  5340. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5341. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5342. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5343. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5344. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5345. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5346. * THE SOFTWARE.
  5347. */
  5348. Object.defineProperty(exports, "__esModule", { value: true });
  5349. exports.numbers = exports.strings = exports.cssClasses = void 0;
  5350. exports.cssClasses = {
  5351. // Ripple is a special case where the "root" component is really a "mixin" of
  5352. // sorts,
  5353. // given that it's an 'upgrade' to an existing component. That being said it
  5354. // is the root
  5355. // CSS class that all other CSS classes derive from.
  5356. BG_FOCUSED: 'mdc-ripple-upgraded--background-focused',
  5357. FG_ACTIVATION: 'mdc-ripple-upgraded--foreground-activation',
  5358. FG_DEACTIVATION: 'mdc-ripple-upgraded--foreground-deactivation',
  5359. ROOT: 'mdc-ripple-upgraded',
  5360. UNBOUNDED: 'mdc-ripple-upgraded--unbounded'
  5361. };
  5362. exports.strings = {
  5363. VAR_FG_SCALE: '--mdc-ripple-fg-scale',
  5364. VAR_FG_SIZE: '--mdc-ripple-fg-size',
  5365. VAR_FG_TRANSLATE_END: '--mdc-ripple-fg-translate-end',
  5366. VAR_FG_TRANSLATE_START: '--mdc-ripple-fg-translate-start',
  5367. VAR_LEFT: '--mdc-ripple-left',
  5368. VAR_TOP: '--mdc-ripple-top'
  5369. };
  5370. exports.numbers = {
  5371. DEACTIVATION_TIMEOUT_MS: 225,
  5372. // animation duration)
  5373. FG_DEACTIVATION_MS: 150,
  5374. // (i.e. deactivation animation duration)
  5375. INITIAL_ORIGIN_SCALE: 0.6,
  5376. PADDING: 10,
  5377. TAP_DELAY_MS: 300 };
  5378. /***/ }),
  5379. /***/ "./packages/mdc-ripple/foundation.ts":
  5380. /*!*******************************************!*\
  5381. !*** ./packages/mdc-ripple/foundation.ts ***!
  5382. \*******************************************/
  5383. /*! no static exports found */
  5384. /***/ (function(module, exports, __webpack_require__) {
  5385. "use strict";
  5386. /**
  5387. * @license
  5388. * Copyright 2016 Google Inc.
  5389. *
  5390. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5391. * of this software and associated documentation files (the "Software"), to deal
  5392. * in the Software without restriction, including without limitation the rights
  5393. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5394. * copies of the Software, and to permit persons to whom the Software is
  5395. * furnished to do so, subject to the following conditions:
  5396. *
  5397. * The above copyright notice and this permission notice shall be included in
  5398. * all copies or substantial portions of the Software.
  5399. *
  5400. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5401. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5402. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5403. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5404. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5405. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5406. * THE SOFTWARE.
  5407. */
  5408. var __extends = this && this.__extends || function () {
  5409. var _extendStatics = function extendStatics(d, b) {
  5410. _extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
  5411. d.__proto__ = b;
  5412. } || function (d, b) {
  5413. for (var p in b) {
  5414. if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
  5415. }
  5416. };
  5417. return _extendStatics(d, b);
  5418. };
  5419. return function (d, b) {
  5420. if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  5421. _extendStatics(d, b);
  5422. function __() {
  5423. this.constructor = d;
  5424. }
  5425. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  5426. };
  5427. }();
  5428. var __assign = this && this.__assign || function () {
  5429. __assign = Object.assign || function (t) {
  5430. for (var s, i = 1, n = arguments.length; i < n; i++) {
  5431. s = arguments[i];
  5432. for (var p in s) {
  5433. if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
  5434. }
  5435. }
  5436. return t;
  5437. };
  5438. return __assign.apply(this, arguments);
  5439. };
  5440. var __values = this && this.__values || function (o) {
  5441. var s = typeof Symbol === "function" && Symbol.iterator,
  5442. m = s && o[s],
  5443. i = 0;
  5444. if (m) return m.call(o);
  5445. if (o && typeof o.length === "number") return {
  5446. next: function next() {
  5447. if (o && i >= o.length) o = void 0;
  5448. return { value: o && o[i++], done: !o };
  5449. }
  5450. };
  5451. throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
  5452. };
  5453. Object.defineProperty(exports, "__esModule", { value: true });
  5454. exports.MDCRippleFoundation = void 0;
  5455. var foundation_1 = __webpack_require__(/*! @material/base/foundation */ "./packages/mdc-base/foundation.ts");
  5456. var constants_1 = __webpack_require__(/*! ./constants */ "./packages/mdc-ripple/constants.ts");
  5457. var util_1 = __webpack_require__(/*! ./util */ "./packages/mdc-ripple/util.ts");
  5458. // Activation events registered on the root element of each instance for
  5459. // activation
  5460. var ACTIVATION_EVENT_TYPES = ['touchstart', 'pointerdown', 'mousedown', 'keydown'];
  5461. // Deactivation events registered on documentElement when a pointer-related down
  5462. // event occurs
  5463. var POINTER_DEACTIVATION_EVENT_TYPES = ['touchend', 'pointerup', 'mouseup', 'contextmenu'];
  5464. // simultaneous nested activations
  5465. var activatedTargets = [];
  5466. /** MDC Ripple Foundation */
  5467. var MDCRippleFoundation = /** @class */function (_super) {
  5468. __extends(MDCRippleFoundation, _super);
  5469. function MDCRippleFoundation(adapter) {
  5470. var _this = _super.call(this, __assign(__assign({}, MDCRippleFoundation.defaultAdapter), adapter)) || this;
  5471. _this.activationAnimationHasEnded = false;
  5472. _this.activationTimer = 0;
  5473. _this.fgDeactivationRemovalTimer = 0;
  5474. _this.fgScale = '0';
  5475. _this.frame = { width: 0, height: 0 };
  5476. _this.initialSize = 0;
  5477. _this.layoutFrame = 0;
  5478. _this.maxRadius = 0;
  5479. _this.unboundedCoords = { left: 0, top: 0 };
  5480. _this.activationState = _this.defaultActivationState();
  5481. _this.activationTimerCallback = function () {
  5482. _this.activationAnimationHasEnded = true;
  5483. _this.runDeactivationUXLogicIfReady();
  5484. };
  5485. _this.activateHandler = function (e) {
  5486. _this.activateImpl(e);
  5487. };
  5488. _this.deactivateHandler = function () {
  5489. _this.deactivateImpl();
  5490. };
  5491. _this.focusHandler = function () {
  5492. _this.handleFocus();
  5493. };
  5494. _this.blurHandler = function () {
  5495. _this.handleBlur();
  5496. };
  5497. _this.resizeHandler = function () {
  5498. _this.layout();
  5499. };
  5500. return _this;
  5501. }
  5502. Object.defineProperty(MDCRippleFoundation, "cssClasses", {
  5503. get: function get() {
  5504. return constants_1.cssClasses;
  5505. },
  5506. enumerable: false,
  5507. configurable: true
  5508. });
  5509. Object.defineProperty(MDCRippleFoundation, "strings", {
  5510. get: function get() {
  5511. return constants_1.strings;
  5512. },
  5513. enumerable: false,
  5514. configurable: true
  5515. });
  5516. Object.defineProperty(MDCRippleFoundation, "numbers", {
  5517. get: function get() {
  5518. return constants_1.numbers;
  5519. },
  5520. enumerable: false,
  5521. configurable: true
  5522. });
  5523. Object.defineProperty(MDCRippleFoundation, "defaultAdapter", {
  5524. get: function get() {
  5525. return {
  5526. addClass: function addClass() {
  5527. return undefined;
  5528. },
  5529. browserSupportsCssVars: function browserSupportsCssVars() {
  5530. return true;
  5531. },
  5532. computeBoundingRect: function computeBoundingRect() {
  5533. return { top: 0, right: 0, bottom: 0, left: 0, width: 0, height: 0 };
  5534. },
  5535. containsEventTarget: function containsEventTarget() {
  5536. return true;
  5537. },
  5538. deregisterDocumentInteractionHandler: function deregisterDocumentInteractionHandler() {
  5539. return undefined;
  5540. },
  5541. deregisterInteractionHandler: function deregisterInteractionHandler() {
  5542. return undefined;
  5543. },
  5544. deregisterResizeHandler: function deregisterResizeHandler() {
  5545. return undefined;
  5546. },
  5547. getWindowPageOffset: function getWindowPageOffset() {
  5548. return { x: 0, y: 0 };
  5549. },
  5550. isSurfaceActive: function isSurfaceActive() {
  5551. return true;
  5552. },
  5553. isSurfaceDisabled: function isSurfaceDisabled() {
  5554. return true;
  5555. },
  5556. isUnbounded: function isUnbounded() {
  5557. return true;
  5558. },
  5559. registerDocumentInteractionHandler: function registerDocumentInteractionHandler() {
  5560. return undefined;
  5561. },
  5562. registerInteractionHandler: function registerInteractionHandler() {
  5563. return undefined;
  5564. },
  5565. registerResizeHandler: function registerResizeHandler() {
  5566. return undefined;
  5567. },
  5568. removeClass: function removeClass() {
  5569. return undefined;
  5570. },
  5571. updateCssVariable: function updateCssVariable() {
  5572. return undefined;
  5573. }
  5574. };
  5575. },
  5576. enumerable: false,
  5577. configurable: true
  5578. });
  5579. MDCRippleFoundation.prototype.init = function () {
  5580. var _this = this;
  5581. var supportsPressRipple = this.supportsPressRipple();
  5582. this.registerRootHandlers(supportsPressRipple);
  5583. if (supportsPressRipple) {
  5584. var _a = MDCRippleFoundation.cssClasses,
  5585. ROOT_1 = _a.ROOT,
  5586. UNBOUNDED_1 = _a.UNBOUNDED;
  5587. requestAnimationFrame(function () {
  5588. _this.adapter.addClass(ROOT_1);
  5589. if (_this.adapter.isUnbounded()) {
  5590. _this.adapter.addClass(UNBOUNDED_1);
  5591. // Unbounded ripples need layout logic applied immediately to set
  5592. // coordinates for both shade and ripple
  5593. _this.layoutInternal();
  5594. }
  5595. });
  5596. }
  5597. };
  5598. MDCRippleFoundation.prototype.destroy = function () {
  5599. var _this = this;
  5600. if (this.supportsPressRipple()) {
  5601. if (this.activationTimer) {
  5602. clearTimeout(this.activationTimer);
  5603. this.activationTimer = 0;
  5604. this.adapter.removeClass(MDCRippleFoundation.cssClasses.FG_ACTIVATION);
  5605. }
  5606. if (this.fgDeactivationRemovalTimer) {
  5607. clearTimeout(this.fgDeactivationRemovalTimer);
  5608. this.fgDeactivationRemovalTimer = 0;
  5609. this.adapter.removeClass(MDCRippleFoundation.cssClasses.FG_DEACTIVATION);
  5610. }
  5611. var _a = MDCRippleFoundation.cssClasses,
  5612. ROOT_2 = _a.ROOT,
  5613. UNBOUNDED_2 = _a.UNBOUNDED;
  5614. requestAnimationFrame(function () {
  5615. _this.adapter.removeClass(ROOT_2);
  5616. _this.adapter.removeClass(UNBOUNDED_2);
  5617. _this.removeCssVars();
  5618. });
  5619. }
  5620. this.deregisterRootHandlers();
  5621. this.deregisterDeactivationHandlers();
  5622. };
  5623. /**
  5624. * @param evt Optional event containing position information.
  5625. */
  5626. MDCRippleFoundation.prototype.activate = function (evt) {
  5627. this.activateImpl(evt);
  5628. };
  5629. MDCRippleFoundation.prototype.deactivate = function () {
  5630. this.deactivateImpl();
  5631. };
  5632. MDCRippleFoundation.prototype.layout = function () {
  5633. var _this = this;
  5634. if (this.layoutFrame) {
  5635. cancelAnimationFrame(this.layoutFrame);
  5636. }
  5637. this.layoutFrame = requestAnimationFrame(function () {
  5638. _this.layoutInternal();
  5639. _this.layoutFrame = 0;
  5640. });
  5641. };
  5642. MDCRippleFoundation.prototype.setUnbounded = function (unbounded) {
  5643. var UNBOUNDED = MDCRippleFoundation.cssClasses.UNBOUNDED;
  5644. if (unbounded) {
  5645. this.adapter.addClass(UNBOUNDED);
  5646. } else {
  5647. this.adapter.removeClass(UNBOUNDED);
  5648. }
  5649. };
  5650. MDCRippleFoundation.prototype.handleFocus = function () {
  5651. var _this = this;
  5652. requestAnimationFrame(function () {
  5653. _this.adapter.addClass(MDCRippleFoundation.cssClasses.BG_FOCUSED);
  5654. });
  5655. };
  5656. MDCRippleFoundation.prototype.handleBlur = function () {
  5657. var _this = this;
  5658. requestAnimationFrame(function () {
  5659. _this.adapter.removeClass(MDCRippleFoundation.cssClasses.BG_FOCUSED);
  5660. });
  5661. };
  5662. /**
  5663. * We compute this property so that we are not querying information about the
  5664. * client until the point in time where the foundation requests it. This
  5665. * prevents scenarios where client-side feature-detection may happen too
  5666. * early, such as when components are rendered on the server and then
  5667. * initialized at mount time on the client.
  5668. */
  5669. MDCRippleFoundation.prototype.supportsPressRipple = function () {
  5670. return this.adapter.browserSupportsCssVars();
  5671. };
  5672. MDCRippleFoundation.prototype.defaultActivationState = function () {
  5673. return {
  5674. activationEvent: undefined,
  5675. hasDeactivationUXRun: false,
  5676. isActivated: false,
  5677. isProgrammatic: false,
  5678. wasActivatedByPointer: false,
  5679. wasElementMadeActive: false
  5680. };
  5681. };
  5682. /**
  5683. * supportsPressRipple Passed from init to save a redundant function call
  5684. */
  5685. MDCRippleFoundation.prototype.registerRootHandlers = function (supportsPressRipple) {
  5686. var e_1, _a;
  5687. if (supportsPressRipple) {
  5688. try {
  5689. 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()) {
  5690. var evtType = ACTIVATION_EVENT_TYPES_1_1.value;
  5691. this.adapter.registerInteractionHandler(evtType, this.activateHandler);
  5692. }
  5693. } catch (e_1_1) {
  5694. e_1 = { error: e_1_1 };
  5695. } finally {
  5696. try {
  5697. if (ACTIVATION_EVENT_TYPES_1_1 && !ACTIVATION_EVENT_TYPES_1_1.done && (_a = ACTIVATION_EVENT_TYPES_1.return)) _a.call(ACTIVATION_EVENT_TYPES_1);
  5698. } finally {
  5699. if (e_1) throw e_1.error;
  5700. }
  5701. }
  5702. if (this.adapter.isUnbounded()) {
  5703. this.adapter.registerResizeHandler(this.resizeHandler);
  5704. }
  5705. }
  5706. this.adapter.registerInteractionHandler('focus', this.focusHandler);
  5707. this.adapter.registerInteractionHandler('blur', this.blurHandler);
  5708. };
  5709. MDCRippleFoundation.prototype.registerDeactivationHandlers = function (evt) {
  5710. var e_2, _a;
  5711. if (evt.type === 'keydown') {
  5712. this.adapter.registerInteractionHandler('keyup', this.deactivateHandler);
  5713. } else {
  5714. try {
  5715. 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()) {
  5716. var evtType = POINTER_DEACTIVATION_EVENT_TYPES_1_1.value;
  5717. this.adapter.registerDocumentInteractionHandler(evtType, this.deactivateHandler);
  5718. }
  5719. } catch (e_2_1) {
  5720. e_2 = { error: e_2_1 };
  5721. } finally {
  5722. try {
  5723. 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);
  5724. } finally {
  5725. if (e_2) throw e_2.error;
  5726. }
  5727. }
  5728. }
  5729. };
  5730. MDCRippleFoundation.prototype.deregisterRootHandlers = function () {
  5731. var e_3, _a;
  5732. try {
  5733. 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()) {
  5734. var evtType = ACTIVATION_EVENT_TYPES_2_1.value;
  5735. this.adapter.deregisterInteractionHandler(evtType, this.activateHandler);
  5736. }
  5737. } catch (e_3_1) {
  5738. e_3 = { error: e_3_1 };
  5739. } finally {
  5740. try {
  5741. if (ACTIVATION_EVENT_TYPES_2_1 && !ACTIVATION_EVENT_TYPES_2_1.done && (_a = ACTIVATION_EVENT_TYPES_2.return)) _a.call(ACTIVATION_EVENT_TYPES_2);
  5742. } finally {
  5743. if (e_3) throw e_3.error;
  5744. }
  5745. }
  5746. this.adapter.deregisterInteractionHandler('focus', this.focusHandler);
  5747. this.adapter.deregisterInteractionHandler('blur', this.blurHandler);
  5748. if (this.adapter.isUnbounded()) {
  5749. this.adapter.deregisterResizeHandler(this.resizeHandler);
  5750. }
  5751. };
  5752. MDCRippleFoundation.prototype.deregisterDeactivationHandlers = function () {
  5753. var e_4, _a;
  5754. this.adapter.deregisterInteractionHandler('keyup', this.deactivateHandler);
  5755. try {
  5756. 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()) {
  5757. var evtType = POINTER_DEACTIVATION_EVENT_TYPES_2_1.value;
  5758. this.adapter.deregisterDocumentInteractionHandler(evtType, this.deactivateHandler);
  5759. }
  5760. } catch (e_4_1) {
  5761. e_4 = { error: e_4_1 };
  5762. } finally {
  5763. try {
  5764. 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);
  5765. } finally {
  5766. if (e_4) throw e_4.error;
  5767. }
  5768. }
  5769. };
  5770. MDCRippleFoundation.prototype.removeCssVars = function () {
  5771. var _this = this;
  5772. var rippleStrings = MDCRippleFoundation.strings;
  5773. var keys = Object.keys(rippleStrings);
  5774. keys.forEach(function (key) {
  5775. if (key.indexOf('VAR_') === 0) {
  5776. _this.adapter.updateCssVariable(rippleStrings[key], null);
  5777. }
  5778. });
  5779. };
  5780. MDCRippleFoundation.prototype.activateImpl = function (evt) {
  5781. var _this = this;
  5782. if (this.adapter.isSurfaceDisabled()) {
  5783. return;
  5784. }
  5785. var activationState = this.activationState;
  5786. if (activationState.isActivated) {
  5787. return;
  5788. }
  5789. // Avoid reacting to follow-on events fired by touch device after an
  5790. // already-processed user interaction
  5791. var previousActivationEvent = this.previousActivationEvent;
  5792. var isSameInteraction = previousActivationEvent && evt !== undefined && previousActivationEvent.type !== evt.type;
  5793. if (isSameInteraction) {
  5794. return;
  5795. }
  5796. activationState.isActivated = true;
  5797. activationState.isProgrammatic = evt === undefined;
  5798. activationState.activationEvent = evt;
  5799. activationState.wasActivatedByPointer = activationState.isProgrammatic ? false : evt !== undefined && (evt.type === 'mousedown' || evt.type === 'touchstart' || evt.type === 'pointerdown');
  5800. var hasActivatedChild = evt !== undefined && activatedTargets.length > 0 && activatedTargets.some(function (target) {
  5801. return _this.adapter.containsEventTarget(target);
  5802. });
  5803. if (hasActivatedChild) {
  5804. // Immediately reset activation state, while preserving logic that
  5805. // prevents touch follow-on events
  5806. this.resetActivationState();
  5807. return;
  5808. }
  5809. if (evt !== undefined) {
  5810. activatedTargets.push(evt.target);
  5811. this.registerDeactivationHandlers(evt);
  5812. }
  5813. activationState.wasElementMadeActive = this.checkElementMadeActive(evt);
  5814. if (activationState.wasElementMadeActive) {
  5815. this.animateActivation();
  5816. }
  5817. requestAnimationFrame(function () {
  5818. // Reset array on next frame after the current event has had a chance to
  5819. // bubble to prevent ancestor ripples
  5820. activatedTargets = [];
  5821. if (!activationState.wasElementMadeActive && evt !== undefined && (evt.key === ' ' || evt.keyCode === 32)) {
  5822. // If space was pressed, try again within an rAF call to detect :active,
  5823. // because different UAs report active states inconsistently when
  5824. // they're called within event handling code:
  5825. // - https://bugs.chromium.org/p/chromium/issues/detail?id=635971
  5826. // - https://bugzilla.mozilla.org/show_bug.cgi?id=1293741
  5827. // We try first outside rAF to support Edge, which does not exhibit this
  5828. // problem, but will crash if a CSS variable is set within a rAF
  5829. // callback for a submit button interaction (#2241).
  5830. activationState.wasElementMadeActive = _this.checkElementMadeActive(evt);
  5831. if (activationState.wasElementMadeActive) {
  5832. _this.animateActivation();
  5833. }
  5834. }
  5835. if (!activationState.wasElementMadeActive) {
  5836. // Reset activation state immediately if element was not made active.
  5837. _this.activationState = _this.defaultActivationState();
  5838. }
  5839. });
  5840. };
  5841. MDCRippleFoundation.prototype.checkElementMadeActive = function (evt) {
  5842. return evt !== undefined && evt.type === 'keydown' ? this.adapter.isSurfaceActive() : true;
  5843. };
  5844. MDCRippleFoundation.prototype.animateActivation = function () {
  5845. var _this = this;
  5846. var _a = MDCRippleFoundation.strings,
  5847. VAR_FG_TRANSLATE_START = _a.VAR_FG_TRANSLATE_START,
  5848. VAR_FG_TRANSLATE_END = _a.VAR_FG_TRANSLATE_END;
  5849. var _b = MDCRippleFoundation.cssClasses,
  5850. FG_DEACTIVATION = _b.FG_DEACTIVATION,
  5851. FG_ACTIVATION = _b.FG_ACTIVATION;
  5852. var DEACTIVATION_TIMEOUT_MS = MDCRippleFoundation.numbers.DEACTIVATION_TIMEOUT_MS;
  5853. this.layoutInternal();
  5854. var translateStart = '';
  5855. var translateEnd = '';
  5856. if (!this.adapter.isUnbounded()) {
  5857. var _c = this.getFgTranslationCoordinates(),
  5858. startPoint = _c.startPoint,
  5859. endPoint = _c.endPoint;
  5860. translateStart = startPoint.x + "px, " + startPoint.y + "px";
  5861. translateEnd = endPoint.x + "px, " + endPoint.y + "px";
  5862. }
  5863. this.adapter.updateCssVariable(VAR_FG_TRANSLATE_START, translateStart);
  5864. this.adapter.updateCssVariable(VAR_FG_TRANSLATE_END, translateEnd);
  5865. // Cancel any ongoing activation/deactivation animations
  5866. clearTimeout(this.activationTimer);
  5867. clearTimeout(this.fgDeactivationRemovalTimer);
  5868. this.rmBoundedActivationClasses();
  5869. this.adapter.removeClass(FG_DEACTIVATION);
  5870. // Force layout in order to re-trigger the animation.
  5871. this.adapter.computeBoundingRect();
  5872. this.adapter.addClass(FG_ACTIVATION);
  5873. this.activationTimer = setTimeout(function () {
  5874. _this.activationTimerCallback();
  5875. }, DEACTIVATION_TIMEOUT_MS);
  5876. };
  5877. MDCRippleFoundation.prototype.getFgTranslationCoordinates = function () {
  5878. var _a = this.activationState,
  5879. activationEvent = _a.activationEvent,
  5880. wasActivatedByPointer = _a.wasActivatedByPointer;
  5881. var startPoint;
  5882. if (wasActivatedByPointer) {
  5883. startPoint = util_1.getNormalizedEventCoords(activationEvent, this.adapter.getWindowPageOffset(), this.adapter.computeBoundingRect());
  5884. } else {
  5885. startPoint = {
  5886. x: this.frame.width / 2,
  5887. y: this.frame.height / 2
  5888. };
  5889. }
  5890. // Center the element around the start point.
  5891. startPoint = {
  5892. x: startPoint.x - this.initialSize / 2,
  5893. y: startPoint.y - this.initialSize / 2
  5894. };
  5895. var endPoint = {
  5896. x: this.frame.width / 2 - this.initialSize / 2,
  5897. y: this.frame.height / 2 - this.initialSize / 2
  5898. };
  5899. return { startPoint: startPoint, endPoint: endPoint };
  5900. };
  5901. MDCRippleFoundation.prototype.runDeactivationUXLogicIfReady = function () {
  5902. var _this = this;
  5903. // This method is called both when a pointing device is released, and when
  5904. // the activation animation ends. The deactivation animation should only run
  5905. // after both of those occur.
  5906. var FG_DEACTIVATION = MDCRippleFoundation.cssClasses.FG_DEACTIVATION;
  5907. var _a = this.activationState,
  5908. hasDeactivationUXRun = _a.hasDeactivationUXRun,
  5909. isActivated = _a.isActivated;
  5910. var activationHasEnded = hasDeactivationUXRun || !isActivated;
  5911. if (activationHasEnded && this.activationAnimationHasEnded) {
  5912. this.rmBoundedActivationClasses();
  5913. this.adapter.addClass(FG_DEACTIVATION);
  5914. this.fgDeactivationRemovalTimer = setTimeout(function () {
  5915. _this.adapter.removeClass(FG_DEACTIVATION);
  5916. }, constants_1.numbers.FG_DEACTIVATION_MS);
  5917. }
  5918. };
  5919. MDCRippleFoundation.prototype.rmBoundedActivationClasses = function () {
  5920. var FG_ACTIVATION = MDCRippleFoundation.cssClasses.FG_ACTIVATION;
  5921. this.adapter.removeClass(FG_ACTIVATION);
  5922. this.activationAnimationHasEnded = false;
  5923. this.adapter.computeBoundingRect();
  5924. };
  5925. MDCRippleFoundation.prototype.resetActivationState = function () {
  5926. var _this = this;
  5927. this.previousActivationEvent = this.activationState.activationEvent;
  5928. this.activationState = this.defaultActivationState();
  5929. // Touch devices may fire additional events for the same interaction within
  5930. // a short time. Store the previous event until it's safe to assume that
  5931. // subsequent events are for new interactions.
  5932. setTimeout(function () {
  5933. return _this.previousActivationEvent = undefined;
  5934. }, MDCRippleFoundation.numbers.TAP_DELAY_MS);
  5935. };
  5936. MDCRippleFoundation.prototype.deactivateImpl = function () {
  5937. var _this = this;
  5938. var activationState = this.activationState;
  5939. // This can happen in scenarios such as when you have a keyup event that
  5940. // blurs the element.
  5941. if (!activationState.isActivated) {
  5942. return;
  5943. }
  5944. var state = __assign({}, activationState);
  5945. if (activationState.isProgrammatic) {
  5946. requestAnimationFrame(function () {
  5947. _this.animateDeactivation(state);
  5948. });
  5949. this.resetActivationState();
  5950. } else {
  5951. this.deregisterDeactivationHandlers();
  5952. requestAnimationFrame(function () {
  5953. _this.activationState.hasDeactivationUXRun = true;
  5954. _this.animateDeactivation(state);
  5955. _this.resetActivationState();
  5956. });
  5957. }
  5958. };
  5959. MDCRippleFoundation.prototype.animateDeactivation = function (_a) {
  5960. var wasActivatedByPointer = _a.wasActivatedByPointer,
  5961. wasElementMadeActive = _a.wasElementMadeActive;
  5962. if (wasActivatedByPointer || wasElementMadeActive) {
  5963. this.runDeactivationUXLogicIfReady();
  5964. }
  5965. };
  5966. MDCRippleFoundation.prototype.layoutInternal = function () {
  5967. var _this = this;
  5968. this.frame = this.adapter.computeBoundingRect();
  5969. var maxDim = Math.max(this.frame.height, this.frame.width);
  5970. // Surface diameter is treated differently for unbounded vs. bounded
  5971. // ripples. Unbounded ripple diameter is calculated smaller since the
  5972. // surface is expected to already be padded appropriately to extend the
  5973. // hitbox, and the ripple is expected to meet the edges of the padded hitbox
  5974. // (which is typically square). Bounded ripples, on the other hand, are
  5975. // fully expected to expand beyond the surface's longest diameter
  5976. // (calculated based on the diagonal plus a constant padding), and are
  5977. // clipped at the surface's border via `overflow: hidden`.
  5978. var getBoundedRadius = function getBoundedRadius() {
  5979. var hypotenuse = Math.sqrt(Math.pow(_this.frame.width, 2) + Math.pow(_this.frame.height, 2));
  5980. return hypotenuse + MDCRippleFoundation.numbers.PADDING;
  5981. };
  5982. this.maxRadius = this.adapter.isUnbounded() ? maxDim : getBoundedRadius();
  5983. // Ripple is sized as a fraction of the largest dimension of the surface,
  5984. // then scales up using a CSS scale transform
  5985. var initialSize = Math.floor(maxDim * MDCRippleFoundation.numbers.INITIAL_ORIGIN_SCALE);
  5986. // Unbounded ripple size should always be even number to equally center
  5987. // align.
  5988. if (this.adapter.isUnbounded() && initialSize % 2 !== 0) {
  5989. this.initialSize = initialSize - 1;
  5990. } else {
  5991. this.initialSize = initialSize;
  5992. }
  5993. this.fgScale = "" + this.maxRadius / this.initialSize;
  5994. this.updateLayoutCssVars();
  5995. };
  5996. MDCRippleFoundation.prototype.updateLayoutCssVars = function () {
  5997. var _a = MDCRippleFoundation.strings,
  5998. VAR_FG_SIZE = _a.VAR_FG_SIZE,
  5999. VAR_LEFT = _a.VAR_LEFT,
  6000. VAR_TOP = _a.VAR_TOP,
  6001. VAR_FG_SCALE = _a.VAR_FG_SCALE;
  6002. this.adapter.updateCssVariable(VAR_FG_SIZE, this.initialSize + "px");
  6003. this.adapter.updateCssVariable(VAR_FG_SCALE, this.fgScale);
  6004. if (this.adapter.isUnbounded()) {
  6005. this.unboundedCoords = {
  6006. left: Math.round(this.frame.width / 2 - this.initialSize / 2),
  6007. top: Math.round(this.frame.height / 2 - this.initialSize / 2)
  6008. };
  6009. this.adapter.updateCssVariable(VAR_LEFT, this.unboundedCoords.left + "px");
  6010. this.adapter.updateCssVariable(VAR_TOP, this.unboundedCoords.top + "px");
  6011. }
  6012. };
  6013. return MDCRippleFoundation;
  6014. }(foundation_1.MDCFoundation);
  6015. exports.MDCRippleFoundation = MDCRippleFoundation;
  6016. // tslint:disable-next-line:no-default-export Needed for backward compatibility with MDC Web v0.44.0 and earlier.
  6017. exports.default = MDCRippleFoundation;
  6018. /***/ }),
  6019. /***/ "./packages/mdc-ripple/util.ts":
  6020. /*!*************************************!*\
  6021. !*** ./packages/mdc-ripple/util.ts ***!
  6022. \*************************************/
  6023. /*! no static exports found */
  6024. /***/ (function(module, exports, __webpack_require__) {
  6025. "use strict";
  6026. Object.defineProperty(exports, "__esModule", { value: true });
  6027. exports.getNormalizedEventCoords = exports.supportsCssVariables = void 0;
  6028. /**
  6029. * Stores result from supportsCssVariables to avoid redundant processing to
  6030. * detect CSS custom variable support.
  6031. */
  6032. var supportsCssVariables_;
  6033. function supportsCssVariables(windowObj, forceRefresh) {
  6034. if (forceRefresh === void 0) {
  6035. forceRefresh = false;
  6036. }
  6037. var CSS = windowObj.CSS;
  6038. var supportsCssVars = supportsCssVariables_;
  6039. if (typeof supportsCssVariables_ === 'boolean' && !forceRefresh) {
  6040. return supportsCssVariables_;
  6041. }
  6042. var supportsFunctionPresent = CSS && typeof CSS.supports === 'function';
  6043. if (!supportsFunctionPresent) {
  6044. return false;
  6045. }
  6046. var explicitlySupportsCssVars = CSS.supports('--css-vars', 'yes');
  6047. // See: https://bugs.webkit.org/show_bug.cgi?id=154669
  6048. // See: README section on Safari
  6049. var weAreFeatureDetectingSafari10plus = CSS.supports('(--css-vars: yes)') && CSS.supports('color', '#00000000');
  6050. supportsCssVars = explicitlySupportsCssVars || weAreFeatureDetectingSafari10plus;
  6051. if (!forceRefresh) {
  6052. supportsCssVariables_ = supportsCssVars;
  6053. }
  6054. return supportsCssVars;
  6055. }
  6056. exports.supportsCssVariables = supportsCssVariables;
  6057. function getNormalizedEventCoords(evt, pageOffset, clientRect) {
  6058. if (!evt) {
  6059. return { x: 0, y: 0 };
  6060. }
  6061. var x = pageOffset.x,
  6062. y = pageOffset.y;
  6063. var documentX = x + clientRect.left;
  6064. var documentY = y + clientRect.top;
  6065. var normalizedX;
  6066. var normalizedY;
  6067. // Determine touch point relative to the ripple container.
  6068. if (evt.type === 'touchstart') {
  6069. var touchEvent = evt;
  6070. normalizedX = touchEvent.changedTouches[0].pageX - documentX;
  6071. normalizedY = touchEvent.changedTouches[0].pageY - documentY;
  6072. } else {
  6073. var mouseEvent = evt;
  6074. normalizedX = mouseEvent.pageX - documentX;
  6075. normalizedY = mouseEvent.pageY - documentY;
  6076. }
  6077. return { x: normalizedX, y: normalizedY };
  6078. }
  6079. exports.getNormalizedEventCoords = getNormalizedEventCoords;
  6080. /***/ })
  6081. /******/ });
  6082. });
  6083. //# sourceMappingURL=mdc.dialog.js.map