mdc.segmentedButton.js 254 KB

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