@descope/flow-components 2.1.13 → 2.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,625 @@
1
+ /*! @license DOMPurify 3.2.7 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.2.7/LICENSE */
2
+
3
+ /*! vaadin-dev-mode:start
4
+ (function () {
5
+ 'use strict';
6
+
7
+ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) {
8
+ return typeof obj;
9
+ } : function (obj) {
10
+ return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
11
+ };
12
+
13
+ var classCallCheck = function (instance, Constructor) {
14
+ if (!(instance instanceof Constructor)) {
15
+ throw new TypeError("Cannot call a class as a function");
16
+ }
17
+ };
18
+
19
+ var createClass = function () {
20
+ function defineProperties(target, props) {
21
+ for (var i = 0; i < props.length; i++) {
22
+ var descriptor = props[i];
23
+ descriptor.enumerable = descriptor.enumerable || false;
24
+ descriptor.configurable = true;
25
+ if ("value" in descriptor) descriptor.writable = true;
26
+ Object.defineProperty(target, descriptor.key, descriptor);
27
+ }
28
+ }
29
+
30
+ return function (Constructor, protoProps, staticProps) {
31
+ if (protoProps) defineProperties(Constructor.prototype, protoProps);
32
+ if (staticProps) defineProperties(Constructor, staticProps);
33
+ return Constructor;
34
+ };
35
+ }();
36
+
37
+ var getPolymerVersion = function getPolymerVersion() {
38
+ return window.Polymer && window.Polymer.version;
39
+ };
40
+
41
+ var StatisticsGatherer = function () {
42
+ function StatisticsGatherer(logger) {
43
+ classCallCheck(this, StatisticsGatherer);
44
+
45
+ this.now = new Date().getTime();
46
+ this.logger = logger;
47
+ }
48
+
49
+ createClass(StatisticsGatherer, [{
50
+ key: 'frameworkVersionDetectors',
51
+ value: function frameworkVersionDetectors() {
52
+ return {
53
+ 'Flow': function Flow() {
54
+ if (window.Vaadin && window.Vaadin.Flow && window.Vaadin.Flow.clients) {
55
+ var flowVersions = Object.keys(window.Vaadin.Flow.clients).map(function (key) {
56
+ return window.Vaadin.Flow.clients[key];
57
+ }).filter(function (client) {
58
+ return client.getVersionInfo;
59
+ }).map(function (client) {
60
+ return client.getVersionInfo().flow;
61
+ });
62
+ if (flowVersions.length > 0) {
63
+ return flowVersions[0];
64
+ }
65
+ }
66
+ },
67
+ 'Vaadin Framework': function VaadinFramework() {
68
+ if (window.vaadin && window.vaadin.clients) {
69
+ var frameworkVersions = Object.values(window.vaadin.clients).filter(function (client) {
70
+ return client.getVersionInfo;
71
+ }).map(function (client) {
72
+ return client.getVersionInfo().vaadinVersion;
73
+ });
74
+ if (frameworkVersions.length > 0) {
75
+ return frameworkVersions[0];
76
+ }
77
+ }
78
+ },
79
+ 'AngularJs': function AngularJs() {
80
+ if (window.angular && window.angular.version && window.angular.version) {
81
+ return window.angular.version.full;
82
+ }
83
+ },
84
+ 'Angular': function Angular() {
85
+ if (window.ng) {
86
+ var tags = document.querySelectorAll("[ng-version]");
87
+ if (tags.length > 0) {
88
+ return tags[0].getAttribute("ng-version");
89
+ }
90
+ return "Unknown";
91
+ }
92
+ },
93
+ 'Backbone.js': function BackboneJs() {
94
+ if (window.Backbone) {
95
+ return window.Backbone.VERSION;
96
+ }
97
+ },
98
+ 'React': function React() {
99
+ var reactSelector = '[data-reactroot], [data-reactid]';
100
+ if (!!document.querySelector(reactSelector)) {
101
+ // React does not publish the version by default
102
+ return "unknown";
103
+ }
104
+ },
105
+ 'Ember': function Ember() {
106
+ if (window.Em && window.Em.VERSION) {
107
+ return window.Em.VERSION;
108
+ } else if (window.Ember && window.Ember.VERSION) {
109
+ return window.Ember.VERSION;
110
+ }
111
+ },
112
+ 'jQuery': function (_jQuery) {
113
+ function jQuery() {
114
+ return _jQuery.apply(this, arguments);
115
+ }
116
+
117
+ jQuery.toString = function () {
118
+ return _jQuery.toString();
119
+ };
120
+
121
+ return jQuery;
122
+ }(function () {
123
+ if (typeof jQuery === 'function' && jQuery.prototype.jquery !== undefined) {
124
+ return jQuery.prototype.jquery;
125
+ }
126
+ }),
127
+ 'Polymer': function Polymer() {
128
+ var version = getPolymerVersion();
129
+ if (version) {
130
+ return version;
131
+ }
132
+ },
133
+ 'LitElement': function LitElement() {
134
+ var version = window.litElementVersions && window.litElementVersions[0];
135
+ if (version) {
136
+ return version;
137
+ }
138
+ },
139
+ 'LitHtml': function LitHtml() {
140
+ var version = window.litHtmlVersions && window.litHtmlVersions[0];
141
+ if (version) {
142
+ return version;
143
+ }
144
+ },
145
+ 'Vue.js': function VueJs() {
146
+ if (window.Vue) {
147
+ return window.Vue.version;
148
+ }
149
+ }
150
+ };
151
+ }
152
+ }, {
153
+ key: 'getUsedVaadinElements',
154
+ value: function getUsedVaadinElements(elements) {
155
+ var version = getPolymerVersion();
156
+ var elementClasses = void 0;
157
+ // NOTE: In case you edit the code here, YOU MUST UPDATE any statistics reporting code in Flow.
158
+ // Check all locations calling the method getEntries() in
159
+ // https://github.com/vaadin/flow/blob/master/flow-server/src/main/java/com/vaadin/flow/internal/UsageStatistics.java#L106
160
+ // Currently it is only used by BootstrapHandler.
161
+ if (version && version.indexOf('2') === 0) {
162
+ // Polymer 2: components classes are stored in window.Vaadin
163
+ elementClasses = Object.keys(window.Vaadin).map(function (c) {
164
+ return window.Vaadin[c];
165
+ }).filter(function (c) {
166
+ return c.is;
167
+ });
168
+ } else {
169
+ // Polymer 3: components classes are stored in window.Vaadin.registrations
170
+ elementClasses = window.Vaadin.registrations || [];
171
+ }
172
+ elementClasses.forEach(function (klass) {
173
+ var version = klass.version ? klass.version : "0.0.0";
174
+ elements[klass.is] = { version: version };
175
+ });
176
+ }
177
+ }, {
178
+ key: 'getUsedVaadinThemes',
179
+ value: function getUsedVaadinThemes(themes) {
180
+ ['Lumo', 'Material'].forEach(function (themeName) {
181
+ var theme;
182
+ var version = getPolymerVersion();
183
+ if (version && version.indexOf('2') === 0) {
184
+ // Polymer 2: themes are stored in window.Vaadin
185
+ theme = window.Vaadin[themeName];
186
+ } else {
187
+ // Polymer 3: themes are stored in custom element registry
188
+ theme = customElements.get('vaadin-' + themeName.toLowerCase() + '-styles');
189
+ }
190
+ if (theme && theme.version) {
191
+ themes[themeName] = { version: theme.version };
192
+ }
193
+ });
194
+ }
195
+ }, {
196
+ key: 'getFrameworks',
197
+ value: function getFrameworks(frameworks) {
198
+ var detectors = this.frameworkVersionDetectors();
199
+ Object.keys(detectors).forEach(function (framework) {
200
+ var detector = detectors[framework];
201
+ try {
202
+ var version = detector();
203
+ if (version) {
204
+ frameworks[framework] = { version: version };
205
+ }
206
+ } catch (e) {}
207
+ });
208
+ }
209
+ }, {
210
+ key: 'gather',
211
+ value: function gather(storage) {
212
+ var storedStats = storage.read();
213
+ var gatheredStats = {};
214
+ var types = ["elements", "frameworks", "themes"];
215
+
216
+ types.forEach(function (type) {
217
+ gatheredStats[type] = {};
218
+ if (!storedStats[type]) {
219
+ storedStats[type] = {};
220
+ }
221
+ });
222
+
223
+ var previousStats = JSON.stringify(storedStats);
224
+
225
+ this.getUsedVaadinElements(gatheredStats.elements);
226
+ this.getFrameworks(gatheredStats.frameworks);
227
+ this.getUsedVaadinThemes(gatheredStats.themes);
228
+
229
+ var now = this.now;
230
+ types.forEach(function (type) {
231
+ var keys = Object.keys(gatheredStats[type]);
232
+ keys.forEach(function (key) {
233
+ if (!storedStats[type][key] || _typeof(storedStats[type][key]) != _typeof({})) {
234
+ storedStats[type][key] = { firstUsed: now };
235
+ }
236
+ // Discards any previously logged version number
237
+ storedStats[type][key].version = gatheredStats[type][key].version;
238
+ storedStats[type][key].lastUsed = now;
239
+ });
240
+ });
241
+
242
+ var newStats = JSON.stringify(storedStats);
243
+ storage.write(newStats);
244
+ if (newStats != previousStats && Object.keys(storedStats).length > 0) {
245
+ this.logger.debug("New stats: " + newStats);
246
+ }
247
+ }
248
+ }]);
249
+ return StatisticsGatherer;
250
+ }();
251
+
252
+ var StatisticsStorage = function () {
253
+ function StatisticsStorage(key) {
254
+ classCallCheck(this, StatisticsStorage);
255
+
256
+ this.key = key;
257
+ }
258
+
259
+ createClass(StatisticsStorage, [{
260
+ key: 'read',
261
+ value: function read() {
262
+ var localStorageStatsString = localStorage.getItem(this.key);
263
+ try {
264
+ return JSON.parse(localStorageStatsString ? localStorageStatsString : '{}');
265
+ } catch (e) {
266
+ return {};
267
+ }
268
+ }
269
+ }, {
270
+ key: 'write',
271
+ value: function write(data) {
272
+ localStorage.setItem(this.key, data);
273
+ }
274
+ }, {
275
+ key: 'clear',
276
+ value: function clear() {
277
+ localStorage.removeItem(this.key);
278
+ }
279
+ }, {
280
+ key: 'isEmpty',
281
+ value: function isEmpty() {
282
+ var storedStats = this.read();
283
+ var empty = true;
284
+ Object.keys(storedStats).forEach(function (key) {
285
+ if (Object.keys(storedStats[key]).length > 0) {
286
+ empty = false;
287
+ }
288
+ });
289
+
290
+ return empty;
291
+ }
292
+ }]);
293
+ return StatisticsStorage;
294
+ }();
295
+
296
+ var StatisticsSender = function () {
297
+ function StatisticsSender(url, logger) {
298
+ classCallCheck(this, StatisticsSender);
299
+
300
+ this.url = url;
301
+ this.logger = logger;
302
+ }
303
+
304
+ createClass(StatisticsSender, [{
305
+ key: 'send',
306
+ value: function send(data, errorHandler) {
307
+ var logger = this.logger;
308
+
309
+ if (navigator.onLine === false) {
310
+ logger.debug("Offline, can't send");
311
+ errorHandler();
312
+ return;
313
+ }
314
+ logger.debug("Sending data to " + this.url);
315
+
316
+ var req = new XMLHttpRequest();
317
+ req.withCredentials = true;
318
+ req.addEventListener("load", function () {
319
+ // Stats sent, nothing more to do
320
+ logger.debug("Response: " + req.responseText);
321
+ });
322
+ req.addEventListener("error", function () {
323
+ logger.debug("Send failed");
324
+ errorHandler();
325
+ });
326
+ req.addEventListener("abort", function () {
327
+ logger.debug("Send aborted");
328
+ errorHandler();
329
+ });
330
+ req.open("POST", this.url);
331
+ req.setRequestHeader("Content-Type", "application/json");
332
+ req.send(data);
333
+ }
334
+ }]);
335
+ return StatisticsSender;
336
+ }();
337
+
338
+ var StatisticsLogger = function () {
339
+ function StatisticsLogger(id) {
340
+ classCallCheck(this, StatisticsLogger);
341
+
342
+ this.id = id;
343
+ }
344
+
345
+ createClass(StatisticsLogger, [{
346
+ key: '_isDebug',
347
+ value: function _isDebug() {
348
+ return localStorage.getItem("vaadin." + this.id + ".debug");
349
+ }
350
+ }, {
351
+ key: 'debug',
352
+ value: function debug(msg) {
353
+ if (this._isDebug()) {
354
+ console.info(this.id + ": " + msg);
355
+ }
356
+ }
357
+ }]);
358
+ return StatisticsLogger;
359
+ }();
360
+
361
+ var UsageStatistics = function () {
362
+ function UsageStatistics() {
363
+ classCallCheck(this, UsageStatistics);
364
+
365
+ this.now = new Date();
366
+ this.timeNow = this.now.getTime();
367
+ this.gatherDelay = 10; // Delay between loading this file and gathering stats
368
+ this.initialDelay = 24 * 60 * 60;
369
+
370
+ this.logger = new StatisticsLogger("statistics");
371
+ this.storage = new StatisticsStorage("vaadin.statistics.basket");
372
+ this.gatherer = new StatisticsGatherer(this.logger);
373
+ this.sender = new StatisticsSender("https://tools.vaadin.com/usage-stats/submit", this.logger);
374
+ }
375
+
376
+ createClass(UsageStatistics, [{
377
+ key: 'maybeGatherAndSend',
378
+ value: function maybeGatherAndSend() {
379
+ var _this = this;
380
+
381
+ if (localStorage.getItem(UsageStatistics.optOutKey)) {
382
+ return;
383
+ }
384
+ this.gatherer.gather(this.storage);
385
+ setTimeout(function () {
386
+ _this.maybeSend();
387
+ }, this.gatherDelay * 1000);
388
+ }
389
+ }, {
390
+ key: 'lottery',
391
+ value: function lottery() {
392
+ return true;
393
+ }
394
+ }, {
395
+ key: 'currentMonth',
396
+ value: function currentMonth() {
397
+ return this.now.getYear() * 12 + this.now.getMonth();
398
+ }
399
+ }, {
400
+ key: 'maybeSend',
401
+ value: function maybeSend() {
402
+ var firstUse = Number(localStorage.getItem(UsageStatistics.firstUseKey));
403
+ var monthProcessed = Number(localStorage.getItem(UsageStatistics.monthProcessedKey));
404
+
405
+ if (!firstUse) {
406
+ // Use a grace period to avoid interfering with tests, incognito mode etc
407
+ firstUse = this.timeNow;
408
+ localStorage.setItem(UsageStatistics.firstUseKey, firstUse);
409
+ }
410
+
411
+ if (this.timeNow < firstUse + this.initialDelay * 1000) {
412
+ this.logger.debug("No statistics will be sent until the initial delay of " + this.initialDelay + "s has passed");
413
+ return;
414
+ }
415
+ if (this.currentMonth() <= monthProcessed) {
416
+ this.logger.debug("This month has already been processed");
417
+ return;
418
+ }
419
+ localStorage.setItem(UsageStatistics.monthProcessedKey, this.currentMonth());
420
+ // Use random sampling
421
+ if (this.lottery()) {
422
+ this.logger.debug("Congratulations, we have a winner!");
423
+ } else {
424
+ this.logger.debug("Sorry, no stats from you this time");
425
+ return;
426
+ }
427
+
428
+ this.send();
429
+ }
430
+ }, {
431
+ key: 'send',
432
+ value: function send() {
433
+ // Ensure we have the latest data
434
+ this.gatherer.gather(this.storage);
435
+
436
+ // Read, send and clean up
437
+ var data = this.storage.read();
438
+ data["firstUse"] = Number(localStorage.getItem(UsageStatistics.firstUseKey));
439
+ data["usageStatisticsVersion"] = UsageStatistics.version;
440
+ var info = 'This request contains usage statistics gathered from the application running in development mode. \n\nStatistics gathering is automatically disabled and excluded from production builds.\n\nFor details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.\n\n\n\n';
441
+ var self = this;
442
+ this.sender.send(info + JSON.stringify(data), function () {
443
+ // Revert the 'month processed' flag
444
+ localStorage.setItem(UsageStatistics.monthProcessedKey, self.currentMonth() - 1);
445
+ });
446
+ }
447
+ }], [{
448
+ key: 'version',
449
+ get: function get$1() {
450
+ return '2.1.2';
451
+ }
452
+ }, {
453
+ key: 'firstUseKey',
454
+ get: function get$1() {
455
+ return 'vaadin.statistics.firstuse';
456
+ }
457
+ }, {
458
+ key: 'monthProcessedKey',
459
+ get: function get$1() {
460
+ return 'vaadin.statistics.monthProcessed';
461
+ }
462
+ }, {
463
+ key: 'optOutKey',
464
+ get: function get$1() {
465
+ return 'vaadin.statistics.optout';
466
+ }
467
+ }]);
468
+ return UsageStatistics;
469
+ }();
470
+
471
+ try {
472
+ window.Vaadin = window.Vaadin || {};
473
+ window.Vaadin.usageStatsChecker = window.Vaadin.usageStatsChecker || new UsageStatistics();
474
+ window.Vaadin.usageStatsChecker.maybeGatherAndSend();
475
+ } catch (e) {
476
+ // Intentionally ignored as this is not a problem in the app being developed
477
+ }
478
+
479
+ }());
480
+
481
+ vaadin-dev-mode:end **/
482
+
483
+ /**
484
+ * @fileoverview
485
+ * @suppress {checkPrototypalTypes}
486
+ * @license Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
487
+ * This code may only be used under the BSD style license found at
488
+ * http://polymer.github.io/LICENSE.txt The complete set of authors may be found
489
+ * at http://polymer.github.io/AUTHORS.txt The complete set of contributors may
490
+ * be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by
491
+ * Google as part of the polymer project is also subject to an additional IP
492
+ * rights grant found at http://polymer.github.io/PATENTS.txt
493
+ */
494
+
495
+ /**
496
+ * @license
497
+ * Copyright (c) 2015 - 2023 Vaadin Ltd.
498
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
499
+ */
500
+
501
+ /**
502
+ * @license
503
+ * Copyright (c) 2016 - 2023 Vaadin Ltd.
504
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
505
+ */
506
+
507
+ /**
508
+ * @license
509
+ * Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
510
+ * This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
511
+ * The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
512
+ * The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
513
+ * Code distributed by Google as part of the polymer project is also
514
+ * subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
515
+ */
516
+
517
+ /**
518
+ * @license
519
+ * Copyright (c) 2017 - 2023 Vaadin Ltd.
520
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
521
+ */
522
+
523
+ /**
524
+ * @license
525
+ * Copyright (c) 2017 Anton Korzunov
526
+ * SPDX-License-Identifier: MIT
527
+ */
528
+
529
+ /**
530
+ * @license
531
+ * Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
532
+ * This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
533
+ * The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
534
+ * The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
535
+ * Code distributed by Google as part of the polymer project is also
536
+ * subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
537
+ */
538
+
539
+ /**
540
+ * @license
541
+ * Copyright (c) 2019 - 2023 Vaadin Ltd.
542
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
543
+ */
544
+
545
+ /**
546
+ * @license
547
+ * Copyright (c) 2020 - 2023 Vaadin Ltd.
548
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
549
+ */
550
+
551
+ /**
552
+ * @license
553
+ * Copyright (c) 2021 - 2023 Vaadin Ltd.
554
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
555
+ */
556
+
557
+ /**
558
+ * @license
559
+ * Copyright (c) 2021 - 2023 Vaadin Ltd..
560
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
561
+ */
562
+
563
+ /**
564
+ * @license
565
+ * Copyright (c) 2021 - 2024 Vaadin Ltd.
566
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
567
+ */
568
+
569
+ /**
570
+ * @license
571
+ * Copyright (c) 2022 - 2023 Vaadin Ltd.
572
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
573
+ */
574
+
575
+ /**
576
+ * @license
577
+ * Copyright (c) 2023 - 2024 Vaadin Ltd.
578
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
579
+ */
580
+
581
+ /**
582
+ * @license
583
+ * Copyright (c) 2023 Vaadin Ltd.
584
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
585
+ */
586
+
587
+ /**
588
+ * @license
589
+ * Copyright (c) 2024 Vaadin Ltd.
590
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
591
+ */
592
+
593
+ /**
594
+ * @license
595
+ * Copyright 2017 Google LLC
596
+ * SPDX-License-Identifier: BSD-3-Clause
597
+ */
598
+
599
+ /**
600
+ * @license
601
+ * Copyright 2018 Google LLC
602
+ * SPDX-License-Identifier: BSD-3-Clause
603
+ */
604
+
605
+ /**
606
+ * @license
607
+ * Copyright 2019 Google LLC
608
+ * SPDX-License-Identifier: BSD-3-Clause
609
+ */
610
+
611
+ /**
612
+ * @license
613
+ * Copyright 2020 Google LLC
614
+ * SPDX-License-Identifier: BSD-3-Clause
615
+ */
616
+
617
+ /**
618
+ @license
619
+ Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
620
+ This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
621
+ The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
622
+ The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
623
+ Code distributed by Google as part of the polymer project is also
624
+ subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
625
+ */
Binary file
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_descope_flow_components_2_1_13_1759596841168=self.webpackChunk_descope_flow_components_2_1_13_1759596841168||[]).push([[999],{1958:(s,a,l)=>{l.r(a),l.d(a,{AddressFieldClass:()=>ls,AlertClass:()=>as,AppsListClass:()=>X,AvatarClass:()=>I,BadgeClass:()=>O,ButtonClass:()=>i,ButtonMultiSelectionGroupClass:()=>N,ButtonSelectionGroupClass:()=>k,CalendarClass:()=>J,CheckboxClass:()=>o,CodeSnippetClass:()=>E,CollapsibleContainerClass:()=>Cs,ComboBoxClass:()=>R,ContainerClass:()=>r,DateFieldClass:()=>z,DividerClass:()=>n,EmailFieldClass:()=>u,EnrichedTextClass:()=>x,GridClass:()=>G,HcaptchaClass:()=>ts,HybridFieldClass:()=>ss,IconClass:()=>C,ImageClass:()=>T,LinkClass:()=>c,ListClass:()=>W,LoaderLinearClass:()=>d,LoaderRadialClass:()=>p,LogoClass:()=>_,MappingsFieldClass:()=>V,ModalClass:()=>P,MultiSelectComboBoxClass:()=>H,NewPasswordClass:()=>B,NotificationClass:()=>v,NotpImageClass:()=>h,NumberFieldClass:()=>m,OutboundAppButtonClass:()=>ds,OutboundAppsClass:()=>is,PasscodeClass:()=>g,PasswordClass:()=>A,PhoneFieldClass:()=>w,PhoneFieldInputBoxClass:()=>y,PolicyValidationClass:()=>D,RadioGroupClass:()=>j,RecaptchaClass:()=>M,RecoveryCodesClass:()=>os,SamlGroupMappingsClass:()=>q,ScopesListClass:()=>K,SecurityQuestionsSetupClass:()=>$,SecurityQuestionsVerifyClass:()=>Y,SwitchToggleClass:()=>t,TextAreaClass:()=>F,TextClass:()=>S,TextFieldClass:()=>L,ThirdPartyAppLogoClass:()=>Z,TimerButtonClass:()=>es,TotpImageClass:()=>b,TrustedDevicesClass:()=>ps,UploadFileClass:()=>f,UserAttributeClass:()=>Q,UserAuthMethodClass:()=>U});var e=l(1084);const C=e.SQ,o=e.q4,t=e.HO,i=e.J1,d=e.HT,p=e.l1,r=e.SE,n=e.k0,u=e.v_,c=e.Jr,_=e.md,b=e.VX,h=e.jH,m=e.o9,g=e.tl,A=e.MN,S=e.sK,x=e.ml,F=e.xO,L=e.w8,T=e.qn,w=e.NF,y=e.Ul,B=e.Mz,M=e.ul,f=e.Ag,k=e.eo,N=e.fp,P=e.QW,v=e.Cz,G=e.tD,O=e.eA,H=e.td,I=e.Er,Q=e.C1,U=e.pp,V=e.A8,q=e.mq,D=e.wt,E=e.VN,R=e.C9,j=e.tS,z=e.bL,J=e.xs,W=e.xp,X=e.dX,K=e.gZ,Z=e.Od,$=e.rG,Y=e.px,ss=e.$y,as=e.Lg,ls=e.bU,es=e.yj,Cs=e.O7,os=e.Qb,ts=e.TV,is=e.h5,ds=e.yW,ps=e.dq}}]);
1
+ "use strict";(self.webpackChunk_descope_flow_components_2_1_15_1760624928074=self.webpackChunk_descope_flow_components_2_1_15_1760624928074||[]).push([[999],{3049:(s,a,l)=>{l.r(a),l.d(a,{AddressFieldClass:()=>ls,AlertClass:()=>as,AppsListClass:()=>X,AvatarClass:()=>I,BadgeClass:()=>O,ButtonClass:()=>i,ButtonMultiSelectionGroupClass:()=>N,ButtonSelectionGroupClass:()=>k,CalendarClass:()=>J,CheckboxClass:()=>o,CodeSnippetClass:()=>E,CollapsibleContainerClass:()=>Cs,ComboBoxClass:()=>R,ContainerClass:()=>r,DateFieldClass:()=>z,DividerClass:()=>n,EmailFieldClass:()=>u,EnrichedTextClass:()=>x,GridClass:()=>G,HcaptchaClass:()=>ts,HybridFieldClass:()=>ss,IconClass:()=>C,ImageClass:()=>T,LinkClass:()=>c,ListClass:()=>W,LoaderLinearClass:()=>d,LoaderRadialClass:()=>p,LogoClass:()=>_,MappingsFieldClass:()=>V,ModalClass:()=>P,MultiSelectComboBoxClass:()=>H,NewPasswordClass:()=>B,NotificationClass:()=>v,NotpImageClass:()=>h,NumberFieldClass:()=>m,OutboundAppButtonClass:()=>ds,OutboundAppsClass:()=>is,PasscodeClass:()=>g,PasswordClass:()=>A,PhoneFieldClass:()=>w,PhoneFieldInputBoxClass:()=>y,PolicyValidationClass:()=>D,RadioGroupClass:()=>j,RecaptchaClass:()=>M,RecoveryCodesClass:()=>os,SamlGroupMappingsClass:()=>q,ScopesListClass:()=>K,SecurityQuestionsSetupClass:()=>$,SecurityQuestionsVerifyClass:()=>Y,SwitchToggleClass:()=>t,TextAreaClass:()=>F,TextClass:()=>S,TextFieldClass:()=>L,ThirdPartyAppLogoClass:()=>Z,TimerButtonClass:()=>es,TotpImageClass:()=>b,TrustedDevicesClass:()=>ps,UploadFileClass:()=>f,UserAttributeClass:()=>Q,UserAuthMethodClass:()=>U});var e=l(5222);const C=e.SQ,o=e.q4,t=e.HO,i=e.J1,d=e.HT,p=e.l1,r=e.SE,n=e.k0,u=e.v_,c=e.Jr,_=e.md,b=e.VX,h=e.jH,m=e.o9,g=e.tl,A=e.MN,S=e.sK,x=e.ml,F=e.xO,L=e.w8,T=e.qn,w=e.NF,y=e.Ul,B=e.Mz,M=e.ul,f=e.Ag,k=e.eo,N=e.fp,P=e.QW,v=e.Cz,G=e.tD,O=e.eA,H=e.td,I=e.Er,Q=e.C1,U=e.pp,V=e.A8,q=e.mq,D=e.wt,E=e.VN,R=e.C9,j=e.tS,z=e.bL,J=e.xs,W=e.xp,X=e.dX,K=e.gZ,Z=e.Od,$=e.rG,Y=e.px,ss=e.$y,as=e.Lg,ls=e.bU,es=e.yj,Cs=e.O7,os=e.Qb,ts=e.TV,is=e.h5,ds=e.yW,ps=e.dq}}]);
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_descope_flow_components_2_1_13_1759596841168=self.webpackChunk_descope_flow_components_2_1_13_1759596841168||[]).push([[924],{5923:(e,o,t)=>{t.r(o),t.d(o,{AddressField:()=>W.t,Alert:()=>J.F,AppsList:()=>V.F,Avatar:()=>R.e,Badge:()=>M.E,Boolean:()=>i.v,Button:()=>s.$,Checkbox:()=>a.S,Code:()=>p.C,CodeSnippet:()=>U.z,CollapsibleContainer:()=>ee._,ComboBox:()=>P.a,Container:()=>l.m,DateField:()=>j.v,Divider:()=>r.c,Grid:()=>B.xA,GridCustomColumn:()=>B.GK,GridItemDetailsColumn:()=>B.Kl,GridSelectionColumn:()=>B.$g,GridTextColumn:()=>B.I9,Hcaptcha:()=>ie.n,HybridField:()=>q.x,Image:()=>n._,Input:()=>c.p,Link:()=>u.N,List:()=>H.B,ListItem:()=>H.c,Loader:()=>g.a,Logo:()=>h.g,MappingsField:()=>D.A,Modal:()=>O.a,MultiSelect:()=>N.K,NOTPImage:()=>x.v,NOTPLink:()=>y.y,NewPassword:()=>k.m,NumberField:()=>m.o,OutboundAppButton:()=>ae.o,OutboundApps:()=>se.p,Password:()=>b._,Phone:()=>C.b,Recaptcha:()=>v.a,RecaptchaV2:()=>G.C,RecoveryCodesList:()=>te.k,SAMLGroupMappings:()=>E.c,ScopesList:()=>X.Q,SecurityQuestionsSetup:()=>$.x,SecurityQuestionsVerify:()=>z.h,Select:()=>_.l,SingleSelect:()=>I.Z,Switch:()=>T.d,TOTPImage:()=>L.n,TOTPLink:()=>f.i,Text:()=>A.E,TextField:()=>w.A,Textarea:()=>S.T,ThirdPartyAppLogo:()=>Z.G,TimerButton:()=>Y.M,TrustedDevices:()=>pe.p,Turnstile:()=>oe.X,UploadFile:()=>F.E,UserAttribute:()=>Q.I,UserAuthMethod:()=>K.X,apple:()=>d.apple,authenticator:()=>d.authenticator,discord:()=>d.discord,edit:()=>d.edit,facebook:()=>d.facebook,fingerprint:()=>d.fingerprint,github:()=>d.github,gitlab:()=>d.gitlab,google:()=>d.google,linkedin:()=>d.linkedin,lock:()=>d.lock,microsoft:()=>d.microsoft,passkey:()=>d.passkey,password:()=>d.password,plus:()=>d.plus,reload:()=>d.reload,slack:()=>d.slack,sso:()=>d.sso,whatsapp:()=>d.whatsapp});var i=t(4239),s=t(5048),a=t(2400),p=t(1037),l=t(6021),r=t(8463),d=t(8710),n=t(2909),c=t(7789),u=t(8910),g=t(9181),h=t(1261),k=t(524),m=t(7002),b=t(79),C=t(6121),_=t(3113),T=t(7740),A=t(3275),S=t(9346),w=t(168),L=t(7265),f=t(5850),x=t(1750),y=t(5937),F=t(7086),v=t(5955),G=t(4143),I=t(4116),P=t(6521),B=t(6865),M=t(5033),O=t(8318),N=t(8005),D=t(2068),E=t(4342),K=t(3942),Q=t(8606),R=t(4765),U=t(8587),H=t(6339),V=t(1042),X=t(6053),$=t(4226),z=t(247),Z=t(8597),j=t(9365),q=t(6186),J=t(6950),W=t(7306),Y=t(7148),ee=t(6617),oe=t(9075),te=t(7146),ie=t(8049),se=t(6140),ae=t(2446),pe=t(4974)}}]);
1
+ "use strict";(self.webpackChunk_descope_flow_components_2_1_15_1760624928074=self.webpackChunk_descope_flow_components_2_1_15_1760624928074||[]).push([[924],{3676:(e,o,t)=>{t.r(o),t.d(o,{AddressField:()=>W.t,Alert:()=>J.F,AppsList:()=>V.F,Avatar:()=>R.e,Badge:()=>M.E,Boolean:()=>i.v,Button:()=>s.$,Checkbox:()=>a.S,Code:()=>p.C,CodeSnippet:()=>U.z,CollapsibleContainer:()=>ee._,ComboBox:()=>P.a,Container:()=>l.m,DateField:()=>j.v,Divider:()=>r.c,Grid:()=>B.xA,GridCustomColumn:()=>B.GK,GridItemDetailsColumn:()=>B.Kl,GridSelectionColumn:()=>B.$g,GridTextColumn:()=>B.I9,Hcaptcha:()=>ie.n,HybridField:()=>q.x,Image:()=>n._,Input:()=>c.p,Link:()=>u.N,List:()=>H.B,ListItem:()=>H.c,Loader:()=>g.a,Logo:()=>h.g,MappingsField:()=>D.A,Modal:()=>O.a,MultiSelect:()=>N.K,NOTPImage:()=>x.v,NOTPLink:()=>y.y,NewPassword:()=>k.m,NumberField:()=>m.o,OutboundAppButton:()=>ae.o,OutboundApps:()=>se.p,Password:()=>b._,Phone:()=>C.b,Recaptcha:()=>v.a,RecaptchaV2:()=>G.C,RecoveryCodesList:()=>te.k,SAMLGroupMappings:()=>E.c,ScopesList:()=>X.Q,SecurityQuestionsSetup:()=>$.x,SecurityQuestionsVerify:()=>z.h,Select:()=>_.l,SingleSelect:()=>I.Z,Switch:()=>T.d,TOTPImage:()=>L.n,TOTPLink:()=>f.i,Text:()=>A.E,TextField:()=>w.A,Textarea:()=>S.T,ThirdPartyAppLogo:()=>Z.G,TimerButton:()=>Y.M,TrustedDevices:()=>pe.p,Turnstile:()=>oe.X,UploadFile:()=>F.E,UserAttribute:()=>Q.I,UserAuthMethod:()=>K.X,apple:()=>d.apple,authenticator:()=>d.authenticator,discord:()=>d.discord,edit:()=>d.edit,facebook:()=>d.facebook,fingerprint:()=>d.fingerprint,github:()=>d.github,gitlab:()=>d.gitlab,google:()=>d.google,linkedin:()=>d.linkedin,lock:()=>d.lock,microsoft:()=>d.microsoft,passkey:()=>d.passkey,password:()=>d.password,plus:()=>d.plus,reload:()=>d.reload,slack:()=>d.slack,sso:()=>d.sso,whatsapp:()=>d.whatsapp});var i=t(3880),s=t(5351),a=t(5355),p=t(9493),l=t(5202),r=t(8739),d=t(2235),n=t(1657),c=t(4228),u=t(5130),g=t(7995),h=t(3153),k=t(8778),m=t(8518),b=t(4387),C=t(7595),_=t(3177),T=t(6766),A=t(9389),S=t(2867),w=t(8294),L=t(7398),f=t(2786),x=t(547),y=t(5662),F=t(1623),v=t(9694),G=t(8255),I=t(6291),P=t(2577),B=t(9703),M=t(3828),O=t(1925),N=t(8094),D=t(7558),E=t(868),K=t(6866),Q=t(3941),R=t(3333),U=t(5639),H=t(6068),V=t(4821),X=t(8988),$=t(1580),z=t(8799),Z=t(6553),j=t(4130),q=t(1391),J=t(9178),W=t(8989),Y=t(9482),ee=t(6239),oe=t(1791),te=t(5954),ie=t(3741),se=t(1313),ae=t(5108),pe=t(3757)}}]);
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_descope_flow_components_2_1_13_1759596841168=self.webpackChunk_descope_flow_components_2_1_13_1759596841168||[]).push([[143],{7630:(e,o,_)=>{_.r(o),_.d(o,{componentsThemeManager:()=>m,createComponentsTheme:()=>t,darkTheme:()=>p,defaultTheme:()=>l,genColor:()=>c,globalsThemeToStyle:()=>n,themeToStyle:()=>a,themeVars:()=>h});var s=_(1084);const n=s.e7,t=s.o_,a=s._w,m=s.br,c=s.ew,h=s.G6,l=s.zQ,p=s.a5}}]);
1
+ "use strict";(self.webpackChunk_descope_flow_components_2_1_15_1760624928074=self.webpackChunk_descope_flow_components_2_1_15_1760624928074||[]).push([[143],{71:(e,o,_)=>{_.r(o),_.d(o,{componentsThemeManager:()=>m,createComponentsTheme:()=>t,darkTheme:()=>p,defaultTheme:()=>l,genColor:()=>c,globalsThemeToStyle:()=>n,themeToStyle:()=>a,themeVars:()=>h});var s=_(5222);const n=s.e7,t=s.o_,a=s._w,m=s.br,c=s.ew,h=s.G6,l=s.zQ,p=s.a5}}]);