@descope/web-components-ui 1.0.394 → 1.0.396
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.
- package/dist/cjs/index.cjs.js +1415 -1196
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1395 -1175
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/4619.js +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/descope-email-field-index-js.js +4 -4
- package/dist/umd/descope-new-password-descope-new-password-internal-index-js.js +1 -1
- package/dist/umd/descope-new-password-index-js.js +1 -1
- package/dist/umd/descope-password-index-js.js +1 -1
- package/dist/umd/descope-security-questions-setup-index-js.js +1 -1
- package/dist/umd/descope-security-questions-verify-index-js.js +37 -0
- package/dist/umd/descope-security-questions-verify-index-js.js.LICENSE.txt +11 -0
- package/dist/umd/index.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-email-field/EmailFieldClass.js +1 -0
- package/src/components/descope-new-password/NewPasswordClass.js +1 -0
- package/src/components/descope-password/PasswordClass.js +1 -0
- package/src/components/descope-security-questions-setup/SecurityQuestionsSetupClass.js +1 -9
- package/src/components/descope-security-questions-setup/index.js +0 -1
- package/src/components/descope-security-questions-verify/SecurityQuestionsVerifyClass.js +208 -0
- package/src/components/descope-security-questions-verify/index.js +7 -0
- package/src/index.cjs.js +1 -0
- package/src/index.js +1 -0
- package/src/mixins/externalInputHelpers.js +2 -1
- package/src/mixins/externalInputMixin.js +3 -2
- package/src/theme/components/index.js +2 -0
- package/src/theme/components/securityQuestionsSetup.js +2 -2
- package/src/theme/components/securityQuestionsVerify.js +16 -0
package/dist/index.esm.js
CHANGED
@@ -1474,11 +1474,12 @@ const createExternalInputSlot = (slotName, targetSlotName) => {
|
|
1474
1474
|
return slotEle;
|
1475
1475
|
};
|
1476
1476
|
|
1477
|
-
const createExternalInputEle = (targetSlotName, type, autocompleteType) => {
|
1477
|
+
const createExternalInputEle = (targetSlotName, type, autocompleteType, inputName) => {
|
1478
1478
|
const inputEle = document.createElement('input');
|
1479
1479
|
|
1480
1480
|
inputEle.setAttribute('slot', targetSlotName);
|
1481
1481
|
inputEle.setAttribute('type', type);
|
1482
|
+
inputEle.setAttribute('name', inputName);
|
1482
1483
|
inputEle.setAttribute('data-hidden-input', 'true');
|
1483
1484
|
inputEle.setAttribute('autocomplete', autocompleteType);
|
1484
1485
|
|
@@ -1539,7 +1540,7 @@ const applyExternalInputStyles = (sourceInputEle, targetInputEle, labelType) =>
|
|
1539
1540
|
};
|
1540
1541
|
|
1541
1542
|
const externalInputMixin =
|
1542
|
-
({ inputType, autocompleteType, includeAttrs = [], noBlurDispatch = false }) =>
|
1543
|
+
({ inputType, inputName, autocompleteType, includeAttrs = [], noBlurDispatch = false }) =>
|
1543
1544
|
(superclass) =>
|
1544
1545
|
class ExternalInputMixinClass extends superclass {
|
1545
1546
|
#timers = [];
|
@@ -1570,7 +1571,8 @@ const externalInputMixin =
|
|
1570
1571
|
this.externalInput = createExternalInputEle(
|
1571
1572
|
'external-input',
|
1572
1573
|
inputType,
|
1573
|
-
this.getAutocompleteType()
|
1574
|
+
this.getAutocompleteType(),
|
1575
|
+
inputName
|
1574
1576
|
);
|
1575
1577
|
|
1576
1578
|
// apply original input's styles to external input
|
@@ -1749,9 +1751,9 @@ const createIcon = async (src) => {
|
|
1749
1751
|
|
1750
1752
|
/* eslint-disable no-use-before-define */
|
1751
1753
|
|
1752
|
-
const componentName$
|
1754
|
+
const componentName$14 = getComponentName('icon');
|
1753
1755
|
|
1754
|
-
class RawIcon extends createBaseClass({ componentName: componentName$
|
1756
|
+
class RawIcon extends createBaseClass({ componentName: componentName$14, baseSelector: 'slot' }) {
|
1755
1757
|
static get observedAttributes() {
|
1756
1758
|
return ['src'];
|
1757
1759
|
}
|
@@ -1836,7 +1838,7 @@ const clickableMixin = (superclass) =>
|
|
1836
1838
|
}
|
1837
1839
|
};
|
1838
1840
|
|
1839
|
-
const componentName$
|
1841
|
+
const componentName$13 = getComponentName('button');
|
1840
1842
|
|
1841
1843
|
const resetStyles = `
|
1842
1844
|
:host {
|
@@ -1952,7 +1954,7 @@ const ButtonClass = compose(
|
|
1952
1954
|
}
|
1953
1955
|
`,
|
1954
1956
|
excludeAttrsSync: ['tabindex'],
|
1955
|
-
componentName: componentName$
|
1957
|
+
componentName: componentName$13,
|
1956
1958
|
})
|
1957
1959
|
);
|
1958
1960
|
|
@@ -1989,7 +1991,7 @@ loadingIndicatorStyles = `
|
|
1989
1991
|
}
|
1990
1992
|
`;
|
1991
1993
|
|
1992
|
-
customElements.define(componentName$
|
1994
|
+
customElements.define(componentName$13, ButtonClass);
|
1993
1995
|
|
1994
1996
|
const createBaseInputClass = (...args) =>
|
1995
1997
|
compose(
|
@@ -1999,11 +2001,11 @@ const createBaseInputClass = (...args) =>
|
|
1999
2001
|
inputEventsDispatchingMixin
|
2000
2002
|
)(createBaseClass(...args));
|
2001
2003
|
|
2002
|
-
const componentName$
|
2004
|
+
const componentName$12 = getComponentName('boolean-field-internal');
|
2003
2005
|
|
2004
2006
|
const forwardAttributes$1 = ['disabled', 'label', 'invalid', 'readonly'];
|
2005
2007
|
|
2006
|
-
const BaseInputClass$a = createBaseInputClass({ componentName: componentName$
|
2008
|
+
const BaseInputClass$a = createBaseInputClass({ componentName: componentName$12, baseSelector: 'div' });
|
2007
2009
|
|
2008
2010
|
class BooleanInputInternal extends BaseInputClass$a {
|
2009
2011
|
static get observedAttributes() {
|
@@ -2079,14 +2081,14 @@ const booleanFieldMixin = (superclass) =>
|
|
2079
2081
|
|
2080
2082
|
const template = document.createElement('template');
|
2081
2083
|
template.innerHTML = `
|
2082
|
-
<${componentName$
|
2084
|
+
<${componentName$12}
|
2083
2085
|
tabindex="-1"
|
2084
2086
|
slot="input"
|
2085
|
-
></${componentName$
|
2087
|
+
></${componentName$12}>
|
2086
2088
|
`;
|
2087
2089
|
|
2088
2090
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
2089
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
2091
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$12);
|
2090
2092
|
this.checkbox = this.inputElement.querySelector('vaadin-checkbox');
|
2091
2093
|
|
2092
2094
|
forwardAttrs(this, this.inputElement, {
|
@@ -2300,7 +2302,7 @@ descope-boolean-field-internal {
|
|
2300
2302
|
}
|
2301
2303
|
`;
|
2302
2304
|
|
2303
|
-
const componentName$
|
2305
|
+
const componentName$11 = getComponentName('checkbox');
|
2304
2306
|
|
2305
2307
|
const {
|
2306
2308
|
host: host$n,
|
@@ -2412,15 +2414,15 @@ const CheckboxClass = compose(
|
|
2412
2414
|
}
|
2413
2415
|
`,
|
2414
2416
|
excludeAttrsSync: ['label', 'tabindex'],
|
2415
|
-
componentName: componentName$
|
2417
|
+
componentName: componentName$11,
|
2416
2418
|
})
|
2417
2419
|
);
|
2418
2420
|
|
2419
|
-
customElements.define(componentName$
|
2421
|
+
customElements.define(componentName$12, BooleanInputInternal);
|
2420
2422
|
|
2421
|
-
customElements.define(componentName$
|
2423
|
+
customElements.define(componentName$11, CheckboxClass);
|
2422
2424
|
|
2423
|
-
const componentName
|
2425
|
+
const componentName$10 = getComponentName('switch-toggle');
|
2424
2426
|
|
2425
2427
|
const {
|
2426
2428
|
host: host$m,
|
@@ -2552,17 +2554,17 @@ const SwitchToggleClass = compose(
|
|
2552
2554
|
}
|
2553
2555
|
`,
|
2554
2556
|
excludeAttrsSync: ['label', 'tabindex'],
|
2555
|
-
componentName: componentName
|
2557
|
+
componentName: componentName$10,
|
2556
2558
|
})
|
2557
2559
|
);
|
2558
2560
|
|
2559
|
-
customElements.define(componentName
|
2561
|
+
customElements.define(componentName$10, SwitchToggleClass);
|
2560
2562
|
|
2561
|
-
const componentName
|
2563
|
+
const componentName$$ = getComponentName('loader-linear');
|
2562
2564
|
|
2563
|
-
class RawLoaderLinear extends createBaseClass({ componentName: componentName
|
2565
|
+
class RawLoaderLinear extends createBaseClass({ componentName: componentName$$, baseSelector: ':host > div' }) {
|
2564
2566
|
static get componentName() {
|
2565
|
-
return componentName
|
2567
|
+
return componentName$$;
|
2566
2568
|
}
|
2567
2569
|
|
2568
2570
|
constructor() {
|
@@ -2623,11 +2625,11 @@ const LoaderLinearClass = compose(
|
|
2623
2625
|
componentNameValidationMixin
|
2624
2626
|
)(RawLoaderLinear);
|
2625
2627
|
|
2626
|
-
customElements.define(componentName
|
2628
|
+
customElements.define(componentName$$, LoaderLinearClass);
|
2627
2629
|
|
2628
|
-
const componentName$
|
2630
|
+
const componentName$_ = getComponentName('loader-radial');
|
2629
2631
|
|
2630
|
-
class RawLoaderRadial extends createBaseClass({ componentName: componentName$
|
2632
|
+
class RawLoaderRadial extends createBaseClass({ componentName: componentName$_, baseSelector: ':host > div' }) {
|
2631
2633
|
constructor() {
|
2632
2634
|
super();
|
2633
2635
|
|
@@ -2671,11 +2673,11 @@ const LoaderRadialClass = compose(
|
|
2671
2673
|
componentNameValidationMixin
|
2672
2674
|
)(RawLoaderRadial);
|
2673
2675
|
|
2674
|
-
customElements.define(componentName$
|
2676
|
+
customElements.define(componentName$_, LoaderRadialClass);
|
2675
2677
|
|
2676
|
-
const componentName$
|
2678
|
+
const componentName$Z = getComponentName('container');
|
2677
2679
|
|
2678
|
-
class RawContainer extends createBaseClass({ componentName: componentName$
|
2680
|
+
class RawContainer extends createBaseClass({ componentName: componentName$Z, baseSelector: 'slot' }) {
|
2679
2681
|
constructor() {
|
2680
2682
|
super();
|
2681
2683
|
|
@@ -2728,9 +2730,9 @@ const ContainerClass = compose(
|
|
2728
2730
|
componentNameValidationMixin
|
2729
2731
|
)(RawContainer);
|
2730
2732
|
|
2731
|
-
customElements.define(componentName$
|
2733
|
+
customElements.define(componentName$Z, ContainerClass);
|
2732
2734
|
|
2733
|
-
const componentName$
|
2735
|
+
const componentName$Y = getComponentName('combo-box');
|
2734
2736
|
|
2735
2737
|
const ComboBoxMixin = (superclass) =>
|
2736
2738
|
class ComboBoxMixinClass extends superclass {
|
@@ -3175,14 +3177,14 @@ const ComboBoxClass = compose(
|
|
3175
3177
|
// and reset items to an empty array, and opening the list box with no items
|
3176
3178
|
// to display.
|
3177
3179
|
excludeAttrsSync: ['tabindex', 'size', 'data'],
|
3178
|
-
componentName: componentName$
|
3180
|
+
componentName: componentName$Y,
|
3179
3181
|
includeForwardProps: ['items', 'renderer', 'selectedItem'],
|
3180
3182
|
})
|
3181
3183
|
);
|
3182
3184
|
|
3183
|
-
customElements.define(componentName$
|
3185
|
+
customElements.define(componentName$Y, ComboBoxClass);
|
3184
3186
|
|
3185
|
-
customElements.define(componentName$
|
3187
|
+
customElements.define(componentName$14, IconClass);
|
3186
3188
|
|
3187
3189
|
const SUPPORTED_FORMATS = ['MM/DD/YYYY', 'DD/MM/YYYY', 'YYYY/MM/DD'];
|
3188
3190
|
|
@@ -3499,7 +3501,7 @@ const nextMonth = (timestamp) => {
|
|
3499
3501
|
return date;
|
3500
3502
|
};
|
3501
3503
|
|
3502
|
-
const componentName$
|
3504
|
+
const componentName$X = getComponentName('calendar');
|
3503
3505
|
|
3504
3506
|
const observedAttrs$2 = [
|
3505
3507
|
'initial-value',
|
@@ -3516,7 +3518,7 @@ const observedAttrs$2 = [
|
|
3516
3518
|
|
3517
3519
|
const calendarUiAttrs = ['calendar-label-submit', 'calendar-label-cancel'];
|
3518
3520
|
|
3519
|
-
const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$
|
3521
|
+
const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$X, baseSelector: 'div' });
|
3520
3522
|
|
3521
3523
|
class RawCalendar extends BaseInputClass$9 {
|
3522
3524
|
static get observedAttributes() {
|
@@ -4129,7 +4131,7 @@ const CalendarClass = compose(
|
|
4129
4131
|
componentNameValidationMixin
|
4130
4132
|
)(RawCalendar);
|
4131
4133
|
|
4132
|
-
customElements.define(componentName$
|
4134
|
+
customElements.define(componentName$X, CalendarClass);
|
4133
4135
|
|
4134
4136
|
const {
|
4135
4137
|
host: host$j,
|
@@ -4277,7 +4279,7 @@ var textFieldMappings = {
|
|
4277
4279
|
inputIconColor: { ...inputIcon, property: 'color' },
|
4278
4280
|
};
|
4279
4281
|
|
4280
|
-
const componentName$
|
4282
|
+
const componentName$W = getComponentName('text-field');
|
4281
4283
|
|
4282
4284
|
const observedAttrs$1 = ['type', 'label-type', 'copy-to-clipboard'];
|
4283
4285
|
|
@@ -4399,11 +4401,11 @@ const TextFieldClass = compose(
|
|
4399
4401
|
}
|
4400
4402
|
`,
|
4401
4403
|
excludeAttrsSync: ['tabindex'],
|
4402
|
-
componentName: componentName$
|
4404
|
+
componentName: componentName$W,
|
4403
4405
|
})
|
4404
4406
|
);
|
4405
4407
|
|
4406
|
-
customElements.define(componentName$
|
4408
|
+
customElements.define(componentName$W, TextFieldClass);
|
4407
4409
|
|
4408
4410
|
const patterns = {
|
4409
4411
|
MM: '(0?[1-9]|1[0-2])',
|
@@ -4536,12 +4538,12 @@ class DateCounter {
|
|
4536
4538
|
}
|
4537
4539
|
}
|
4538
4540
|
|
4539
|
-
const componentName$
|
4541
|
+
const componentName$V = getComponentName('date-field');
|
4540
4542
|
|
4541
4543
|
// we set baseSelector to `vaadin-popover` as a temporary hack, so our portalMixin will
|
4542
4544
|
// be able to process this component's overlay. The whole process needs refactoring as soon as possible.
|
4543
4545
|
const BASE_SELECTOR = 'vaadin-popover';
|
4544
|
-
const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$
|
4546
|
+
const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$V, baseSelector: BASE_SELECTOR });
|
4545
4547
|
|
4546
4548
|
const dateFieldAttrs = ['format', 'opened', 'initial-value', 'readonly'];
|
4547
4549
|
const calendarAttrs = ['years-range', 'calendar-months', 'calendar-weekdays'];
|
@@ -5212,11 +5214,11 @@ const DateFieldClass = compose(
|
|
5212
5214
|
componentNameValidationMixin
|
5213
5215
|
)(RawDateFieldClass);
|
5214
5216
|
|
5215
|
-
customElements.define(componentName$
|
5217
|
+
customElements.define(componentName$V, DateFieldClass);
|
5216
5218
|
|
5217
|
-
const componentName$
|
5219
|
+
const componentName$U = getComponentName('text');
|
5218
5220
|
|
5219
|
-
class RawText extends createBaseClass({ componentName: componentName$
|
5221
|
+
class RawText extends createBaseClass({ componentName: componentName$U, baseSelector: ':host > slot' }) {
|
5220
5222
|
constructor() {
|
5221
5223
|
super();
|
5222
5224
|
|
@@ -5273,8 +5275,8 @@ const TextClass = compose(
|
|
5273
5275
|
componentNameValidationMixin
|
5274
5276
|
)(RawText);
|
5275
5277
|
|
5276
|
-
const componentName$
|
5277
|
-
class RawDivider extends createBaseClass({ componentName: componentName$
|
5278
|
+
const componentName$T = getComponentName('divider');
|
5279
|
+
class RawDivider extends createBaseClass({ componentName: componentName$T, baseSelector: ':host > div' }) {
|
5278
5280
|
constructor() {
|
5279
5281
|
super();
|
5280
5282
|
|
@@ -5373,11 +5375,11 @@ const DividerClass = compose(
|
|
5373
5375
|
componentNameValidationMixin
|
5374
5376
|
)(RawDivider);
|
5375
5377
|
|
5376
|
-
customElements.define(componentName$
|
5378
|
+
customElements.define(componentName$U, TextClass);
|
5377
5379
|
|
5378
|
-
customElements.define(componentName$
|
5380
|
+
customElements.define(componentName$T, DividerClass);
|
5379
5381
|
|
5380
|
-
const componentName$
|
5382
|
+
const componentName$S = getComponentName('email-field');
|
5381
5383
|
|
5382
5384
|
const defaultPattern = "^[\\w\\.\\%\\+\\-']+@[\\w\\.\\-]+\\.[A-Za-z]{2,}$";
|
5383
5385
|
const defaultAutocomplete = 'username';
|
@@ -5405,6 +5407,7 @@ const EmailFieldClass = compose(
|
|
5405
5407
|
draggableMixin,
|
5406
5408
|
externalInputMixin({
|
5407
5409
|
inputType: 'email',
|
5410
|
+
inputName: 'email',
|
5408
5411
|
autocompleteType: 'username',
|
5409
5412
|
includeAttrs: ['disabled', 'readonly', 'pattern'],
|
5410
5413
|
}),
|
@@ -5445,15 +5448,15 @@ const EmailFieldClass = compose(
|
|
5445
5448
|
}
|
5446
5449
|
`,
|
5447
5450
|
excludeAttrsSync: ['tabindex'],
|
5448
|
-
componentName: componentName$
|
5451
|
+
componentName: componentName$S,
|
5449
5452
|
})
|
5450
5453
|
);
|
5451
5454
|
|
5452
|
-
customElements.define(componentName$
|
5455
|
+
customElements.define(componentName$S, EmailFieldClass);
|
5453
5456
|
|
5454
|
-
const componentName$
|
5457
|
+
const componentName$R = getComponentName('link');
|
5455
5458
|
|
5456
|
-
class RawLink extends createBaseClass({ componentName: componentName$
|
5459
|
+
class RawLink extends createBaseClass({ componentName: componentName$R, baseSelector: ':host a' }) {
|
5457
5460
|
constructor() {
|
5458
5461
|
super();
|
5459
5462
|
|
@@ -5517,7 +5520,7 @@ const LinkClass = compose(
|
|
5517
5520
|
componentNameValidationMixin
|
5518
5521
|
)(RawLink);
|
5519
5522
|
|
5520
|
-
customElements.define(componentName$
|
5523
|
+
customElements.define(componentName$R, LinkClass);
|
5521
5524
|
|
5522
5525
|
const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) => {
|
5523
5526
|
let style;
|
@@ -5569,37 +5572,37 @@ const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) =>
|
|
5569
5572
|
return CssVarImageClass;
|
5570
5573
|
};
|
5571
5574
|
|
5572
|
-
const componentName$
|
5575
|
+
const componentName$Q = getComponentName('logo');
|
5573
5576
|
|
5574
5577
|
const LogoClass = createCssVarImageClass({
|
5575
|
-
componentName: componentName$
|
5578
|
+
componentName: componentName$Q,
|
5576
5579
|
varName: 'url',
|
5577
5580
|
fallbackVarName: 'fallbackUrl',
|
5578
5581
|
});
|
5579
5582
|
|
5580
|
-
customElements.define(componentName$
|
5583
|
+
customElements.define(componentName$Q, LogoClass);
|
5581
5584
|
|
5582
|
-
const componentName$
|
5585
|
+
const componentName$P = getComponentName('totp-image');
|
5583
5586
|
|
5584
5587
|
const TotpImageClass = createCssVarImageClass({
|
5585
|
-
componentName: componentName$
|
5588
|
+
componentName: componentName$P,
|
5586
5589
|
varName: 'url',
|
5587
5590
|
fallbackVarName: 'fallbackUrl',
|
5588
5591
|
});
|
5589
5592
|
|
5590
|
-
customElements.define(componentName$
|
5593
|
+
customElements.define(componentName$P, TotpImageClass);
|
5591
5594
|
|
5592
|
-
const componentName$
|
5595
|
+
const componentName$O = getComponentName('notp-image');
|
5593
5596
|
|
5594
5597
|
const NotpImageClass = createCssVarImageClass({
|
5595
|
-
componentName: componentName$
|
5598
|
+
componentName: componentName$O,
|
5596
5599
|
varName: 'url',
|
5597
5600
|
fallbackVarName: 'fallbackUrl',
|
5598
5601
|
});
|
5599
5602
|
|
5600
|
-
customElements.define(componentName$
|
5603
|
+
customElements.define(componentName$O, NotpImageClass);
|
5601
5604
|
|
5602
|
-
const componentName$
|
5605
|
+
const componentName$N = getComponentName('number-field');
|
5603
5606
|
|
5604
5607
|
const NumberFieldClass = compose(
|
5605
5608
|
createStyleMixin({
|
@@ -5633,11 +5636,11 @@ const NumberFieldClass = compose(
|
|
5633
5636
|
}
|
5634
5637
|
`,
|
5635
5638
|
excludeAttrsSync: ['tabindex'],
|
5636
|
-
componentName: componentName$
|
5639
|
+
componentName: componentName$N,
|
5637
5640
|
})
|
5638
5641
|
);
|
5639
5642
|
|
5640
|
-
customElements.define(componentName$
|
5643
|
+
customElements.define(componentName$N, NumberFieldClass);
|
5641
5644
|
|
5642
5645
|
const INPUT_MASK_TEXT_PROP = '--descope-input-mask-content';
|
5643
5646
|
const INPUT_MASK_DISPLAY_PROP = '--descope-input-mask-display';
|
@@ -5683,13 +5686,13 @@ const toggleMaskVisibility = (input, value) => {
|
|
5683
5686
|
|
5684
5687
|
/* eslint-disable no-param-reassign */
|
5685
5688
|
|
5686
|
-
const componentName$
|
5689
|
+
const componentName$M = getComponentName('passcode-internal');
|
5687
5690
|
|
5688
5691
|
const observedAttributes$5 = ['digits', 'loading'];
|
5689
5692
|
|
5690
5693
|
const forwardAttributes = ['disabled', 'bordered', 'size', 'invalid', 'readonly'];
|
5691
5694
|
|
5692
|
-
const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$
|
5695
|
+
const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$M, baseSelector: 'div' });
|
5693
5696
|
|
5694
5697
|
class PasscodeInternal extends BaseInputClass$7 {
|
5695
5698
|
static get observedAttributes() {
|
@@ -5907,7 +5910,7 @@ class PasscodeInternal extends BaseInputClass$7 {
|
|
5907
5910
|
}
|
5908
5911
|
}
|
5909
5912
|
|
5910
|
-
const componentName$
|
5913
|
+
const componentName$L = getComponentName('passcode');
|
5911
5914
|
|
5912
5915
|
const observedAttributes$4 = ['digits'];
|
5913
5916
|
|
@@ -5926,17 +5929,17 @@ const customMixin$a = (superclass) =>
|
|
5926
5929
|
const template = document.createElement('template');
|
5927
5930
|
|
5928
5931
|
template.innerHTML = `
|
5929
|
-
<${componentName$
|
5932
|
+
<${componentName$M}
|
5930
5933
|
bordered="true"
|
5931
5934
|
name="code"
|
5932
5935
|
tabindex="-1"
|
5933
5936
|
slot="input"
|
5934
|
-
><slot></slot></${componentName$
|
5937
|
+
><slot></slot></${componentName$M}>
|
5935
5938
|
`;
|
5936
5939
|
|
5937
5940
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
5938
5941
|
|
5939
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
5942
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$M);
|
5940
5943
|
|
5941
5944
|
forwardAttrs(this, this.inputElement, { includeAttrs: ['digits', 'size', 'loading'] });
|
5942
5945
|
}
|
@@ -6088,13 +6091,13 @@ const PasscodeClass = compose(
|
|
6088
6091
|
${resetInputCursor('vaadin-text-field')}
|
6089
6092
|
`,
|
6090
6093
|
excludeAttrsSync: ['tabindex'],
|
6091
|
-
componentName: componentName$
|
6094
|
+
componentName: componentName$L,
|
6092
6095
|
})
|
6093
6096
|
);
|
6094
6097
|
|
6095
|
-
customElements.define(componentName$
|
6098
|
+
customElements.define(componentName$M, PasscodeInternal);
|
6096
6099
|
|
6097
|
-
customElements.define(componentName$
|
6100
|
+
customElements.define(componentName$L, PasscodeClass);
|
6098
6101
|
|
6099
6102
|
const passwordDraggableMixin = (superclass) =>
|
6100
6103
|
class PasswordDraggableMixinClass extends superclass {
|
@@ -6135,7 +6138,7 @@ const passwordDraggableMixin = (superclass) =>
|
|
6135
6138
|
}
|
6136
6139
|
};
|
6137
6140
|
|
6138
|
-
const componentName$
|
6141
|
+
const componentName$K = getComponentName('password');
|
6139
6142
|
|
6140
6143
|
const customMixin$9 = (superclass) =>
|
6141
6144
|
class PasswordFieldMixinClass extends superclass {
|
@@ -6337,6 +6340,7 @@ const PasswordClass = compose(
|
|
6337
6340
|
draggableMixin,
|
6338
6341
|
externalInputMixin({
|
6339
6342
|
inputType: 'password',
|
6343
|
+
inputName: 'password',
|
6340
6344
|
includeAttrs: ['disabled', 'readonly', 'pattern', 'type', 'autocomplete'],
|
6341
6345
|
noBlurDispatch: true,
|
6342
6346
|
}),
|
@@ -6410,11 +6414,11 @@ const PasswordClass = compose(
|
|
6410
6414
|
}
|
6411
6415
|
`,
|
6412
6416
|
excludeAttrsSync: ['tabindex'],
|
6413
|
-
componentName: componentName$
|
6417
|
+
componentName: componentName$K,
|
6414
6418
|
})
|
6415
6419
|
);
|
6416
6420
|
|
6417
|
-
customElements.define(componentName$
|
6421
|
+
customElements.define(componentName$K, PasswordClass);
|
6418
6422
|
|
6419
6423
|
const disableRules = [
|
6420
6424
|
'blockquote',
|
@@ -6440,9 +6444,9 @@ const decodeHTML = (html) => {
|
|
6440
6444
|
/* eslint-disable no-param-reassign */
|
6441
6445
|
|
6442
6446
|
|
6443
|
-
const componentName$
|
6447
|
+
const componentName$J = getComponentName('enriched-text');
|
6444
6448
|
|
6445
|
-
class EnrichedText extends createBaseClass({ componentName: componentName$
|
6449
|
+
class EnrichedText extends createBaseClass({ componentName: componentName$J, baseSelector: ':host > div' }) {
|
6446
6450
|
#origLinkRenderer;
|
6447
6451
|
|
6448
6452
|
#origEmRenderer;
|
@@ -6638,9 +6642,9 @@ const EnrichedTextClass = compose(
|
|
6638
6642
|
componentNameValidationMixin
|
6639
6643
|
)(EnrichedText);
|
6640
6644
|
|
6641
|
-
customElements.define(componentName$
|
6645
|
+
customElements.define(componentName$J, EnrichedTextClass);
|
6642
6646
|
|
6643
|
-
const componentName$
|
6647
|
+
const componentName$I = getComponentName('text-area');
|
6644
6648
|
|
6645
6649
|
const {
|
6646
6650
|
host: host$d,
|
@@ -6716,17 +6720,17 @@ const TextAreaClass = compose(
|
|
6716
6720
|
${resetInputCursor('vaadin-text-area')}
|
6717
6721
|
`,
|
6718
6722
|
excludeAttrsSync: ['tabindex'],
|
6719
|
-
componentName: componentName$
|
6723
|
+
componentName: componentName$I,
|
6720
6724
|
})
|
6721
6725
|
);
|
6722
6726
|
|
6723
|
-
customElements.define(componentName$
|
6727
|
+
customElements.define(componentName$I, TextAreaClass);
|
6724
6728
|
|
6725
6729
|
const observedAttributes$3 = ['src', 'alt'];
|
6726
6730
|
|
6727
|
-
const componentName$
|
6731
|
+
const componentName$H = getComponentName('image');
|
6728
6732
|
|
6729
|
-
const BaseClass$1 = createBaseClass({ componentName: componentName$
|
6733
|
+
const BaseClass$1 = createBaseClass({ componentName: componentName$H, baseSelector: ':host > img' });
|
6730
6734
|
class RawImage extends BaseClass$1 {
|
6731
6735
|
static get observedAttributes() {
|
6732
6736
|
return observedAttributes$3.concat(BaseClass$1.observedAttributes || []);
|
@@ -6766,7 +6770,7 @@ const ImageClass = compose(
|
|
6766
6770
|
draggableMixin
|
6767
6771
|
)(RawImage);
|
6768
6772
|
|
6769
|
-
customElements.define(componentName$
|
6773
|
+
customElements.define(componentName$H, ImageClass);
|
6770
6774
|
|
6771
6775
|
var CountryCodes = [
|
6772
6776
|
// United States should be the first option
|
@@ -8035,7 +8039,7 @@ const parsePhoneNumber = (val) => {
|
|
8035
8039
|
return [countryCode, phoneNumber];
|
8036
8040
|
};
|
8037
8041
|
|
8038
|
-
const componentName$
|
8042
|
+
const componentName$G = getComponentName('phone-field-internal');
|
8039
8043
|
|
8040
8044
|
const commonAttrs$1 = ['disabled', 'size', 'bordered', 'invalid', 'readonly'];
|
8041
8045
|
const countryAttrs = ['country-input-placeholder', 'default-code', 'restrict-countries'];
|
@@ -8049,7 +8053,7 @@ const mapAttrs$1 = {
|
|
8049
8053
|
|
8050
8054
|
const inputRelatedAttrs$1 = [].concat(commonAttrs$1, countryAttrs, phoneAttrs, labelTypeAttrs);
|
8051
8055
|
|
8052
|
-
const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$
|
8056
|
+
const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$G, baseSelector: 'div' });
|
8053
8057
|
|
8054
8058
|
let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
8055
8059
|
static get observedAttributes() {
|
@@ -8266,12 +8270,12 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
|
8266
8270
|
}
|
8267
8271
|
};
|
8268
8272
|
|
8269
|
-
customElements.define(componentName$
|
8273
|
+
customElements.define(componentName$G, PhoneFieldInternal$1);
|
8270
8274
|
|
8271
8275
|
const textVars$1 = TextFieldClass.cssVarList;
|
8272
8276
|
const comboVars = ComboBoxClass.cssVarList;
|
8273
8277
|
|
8274
|
-
const componentName$
|
8278
|
+
const componentName$F = getComponentName('phone-field');
|
8275
8279
|
|
8276
8280
|
const customMixin$8 = (superclass) =>
|
8277
8281
|
class PhoneFieldMixinClass extends superclass {
|
@@ -8285,15 +8289,15 @@ const customMixin$8 = (superclass) =>
|
|
8285
8289
|
const template = document.createElement('template');
|
8286
8290
|
|
8287
8291
|
template.innerHTML = `
|
8288
|
-
<${componentName$
|
8292
|
+
<${componentName$G}
|
8289
8293
|
tabindex="-1"
|
8290
8294
|
slot="input"
|
8291
|
-
></${componentName$
|
8295
|
+
></${componentName$G}>
|
8292
8296
|
`;
|
8293
8297
|
|
8294
8298
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
8295
8299
|
|
8296
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
8300
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$G);
|
8297
8301
|
|
8298
8302
|
forwardAttrs(this.shadowRoot.host, this.inputElement, {
|
8299
8303
|
includeAttrs: [
|
@@ -8515,17 +8519,17 @@ const PhoneFieldClass = compose(
|
|
8515
8519
|
${resetInputLabelPosition('vaadin-text-field')}
|
8516
8520
|
`,
|
8517
8521
|
excludeAttrsSync: ['tabindex'],
|
8518
|
-
componentName: componentName$
|
8522
|
+
componentName: componentName$F,
|
8519
8523
|
})
|
8520
8524
|
);
|
8521
8525
|
|
8522
|
-
customElements.define(componentName$
|
8526
|
+
customElements.define(componentName$F, PhoneFieldClass);
|
8523
8527
|
|
8524
8528
|
const getCountryByCodeId = (countryCode) => {
|
8525
8529
|
return CountryCodes.find((c) => c.code === countryCode)?.dialCode;
|
8526
8530
|
};
|
8527
8531
|
|
8528
|
-
const componentName$
|
8532
|
+
const componentName$E = getComponentName('phone-field-internal-input-box');
|
8529
8533
|
|
8530
8534
|
const observedAttributes$2 = [
|
8531
8535
|
'disabled',
|
@@ -8542,7 +8546,7 @@ const mapAttrs = {
|
|
8542
8546
|
'phone-input-placeholder': 'placeholder',
|
8543
8547
|
};
|
8544
8548
|
|
8545
|
-
const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$
|
8549
|
+
const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$E, baseSelector: 'div' });
|
8546
8550
|
|
8547
8551
|
class PhoneFieldInternal extends BaseInputClass$5 {
|
8548
8552
|
static get observedAttributes() {
|
@@ -8681,11 +8685,11 @@ class PhoneFieldInternal extends BaseInputClass$5 {
|
|
8681
8685
|
}
|
8682
8686
|
}
|
8683
8687
|
|
8684
|
-
customElements.define(componentName$
|
8688
|
+
customElements.define(componentName$E, PhoneFieldInternal);
|
8685
8689
|
|
8686
8690
|
const textVars = TextFieldClass.cssVarList;
|
8687
8691
|
|
8688
|
-
const componentName$
|
8692
|
+
const componentName$D = getComponentName('phone-input-box-field');
|
8689
8693
|
|
8690
8694
|
const customMixin$7 = (superclass) =>
|
8691
8695
|
class PhoneInputBoxFieldMixinClass extends superclass {
|
@@ -8699,15 +8703,15 @@ const customMixin$7 = (superclass) =>
|
|
8699
8703
|
const template = document.createElement('template');
|
8700
8704
|
|
8701
8705
|
template.innerHTML = `
|
8702
|
-
<${componentName$
|
8706
|
+
<${componentName$E}
|
8703
8707
|
tabindex="-1"
|
8704
8708
|
slot="input"
|
8705
|
-
></${componentName$
|
8709
|
+
></${componentName$E}>
|
8706
8710
|
`;
|
8707
8711
|
|
8708
8712
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
8709
8713
|
|
8710
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
8714
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$E);
|
8711
8715
|
|
8712
8716
|
forwardAttrs(this.shadowRoot.host, this.inputElement, {
|
8713
8717
|
includeAttrs: [
|
@@ -8884,26 +8888,26 @@ const PhoneFieldInputBoxClass = compose(
|
|
8884
8888
|
${inputFloatingLabelStyle()}
|
8885
8889
|
`,
|
8886
8890
|
excludeAttrsSync: ['tabindex'],
|
8887
|
-
componentName: componentName$
|
8891
|
+
componentName: componentName$D,
|
8888
8892
|
})
|
8889
8893
|
);
|
8890
8894
|
|
8891
|
-
customElements.define(componentName$
|
8895
|
+
customElements.define(componentName$D, PhoneFieldInputBoxClass);
|
8892
8896
|
|
8893
|
-
const componentName$
|
8897
|
+
const componentName$C = getComponentName('new-password-internal');
|
8894
8898
|
|
8895
8899
|
const interpolateString = (template, values) =>
|
8896
8900
|
template.replace(/{{(\w+)+}}/g, (match, key) => values?.[key] || match);
|
8897
8901
|
|
8898
8902
|
// eslint-disable-next-line max-classes-per-file
|
8899
8903
|
|
8900
|
-
const componentName$
|
8904
|
+
const componentName$B = getComponentName('policy-validation');
|
8901
8905
|
|
8902
8906
|
const overrideAttrs = ['data-password-policy-value-minlength'];
|
8903
8907
|
const dataAttrs = ['data', 'active-policies', 'overrides', ...overrideAttrs];
|
8904
8908
|
const policyAttrs = ['label', 'value', ...dataAttrs];
|
8905
8909
|
|
8906
|
-
class RawPolicyValidation extends createBaseClass({ componentName: componentName$
|
8910
|
+
class RawPolicyValidation extends createBaseClass({ componentName: componentName$B, baseSelector: ':host > div' }) {
|
8907
8911
|
#availablePolicies;
|
8908
8912
|
|
8909
8913
|
#activePolicies = [];
|
@@ -9111,7 +9115,7 @@ const PolicyValidationClass = compose(
|
|
9111
9115
|
componentNameValidationMixin
|
9112
9116
|
)(RawPolicyValidation);
|
9113
9117
|
|
9114
|
-
const componentName$
|
9118
|
+
const componentName$A = getComponentName('new-password');
|
9115
9119
|
|
9116
9120
|
const policyPreviewVars = PolicyValidationClass.cssVarList;
|
9117
9121
|
|
@@ -9125,18 +9129,18 @@ const customMixin$6 = (superclass) =>
|
|
9125
9129
|
const externalInputAttr = this.getAttribute('external-input');
|
9126
9130
|
|
9127
9131
|
template.innerHTML = `
|
9128
|
-
<${componentName$
|
9132
|
+
<${componentName$C}
|
9129
9133
|
name="new-password"
|
9130
9134
|
tabindex="-1"
|
9131
9135
|
slot="input"
|
9132
9136
|
external-input="${externalInputAttr}"
|
9133
9137
|
>
|
9134
|
-
</${componentName$
|
9138
|
+
</${componentName$C}>
|
9135
9139
|
`;
|
9136
9140
|
|
9137
9141
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
9138
9142
|
|
9139
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
9143
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$C);
|
9140
9144
|
|
9141
9145
|
if (this.getAttribute('external-input') === 'true') {
|
9142
9146
|
this.initExternalInput();
|
@@ -9180,6 +9184,7 @@ const customMixin$6 = (superclass) =>
|
|
9180
9184
|
|
9181
9185
|
// move external input
|
9182
9186
|
externalInput.setAttribute('slot', slotName);
|
9187
|
+
externalInput.setAttribute('name', this.getAttribute('name'));
|
9183
9188
|
externalInput.setAttribute('data-hidden-input', 'true');
|
9184
9189
|
|
9185
9190
|
this.appendChild(externalInput);
|
@@ -9312,11 +9317,11 @@ const NewPasswordClass = compose(
|
|
9312
9317
|
}
|
9313
9318
|
`,
|
9314
9319
|
excludeAttrsSync: ['tabindex'],
|
9315
|
-
componentName: componentName$
|
9320
|
+
componentName: componentName$A,
|
9316
9321
|
})
|
9317
9322
|
);
|
9318
9323
|
|
9319
|
-
customElements.define(componentName$
|
9324
|
+
customElements.define(componentName$B, PolicyValidationClass);
|
9320
9325
|
|
9321
9326
|
const passwordAttrPrefixRegex = /^password-/;
|
9322
9327
|
const confirmAttrPrefixRegex = /^confirm-/;
|
@@ -9348,7 +9353,7 @@ const inputRelatedAttrs = [].concat(
|
|
9348
9353
|
policyPanelAttrs
|
9349
9354
|
);
|
9350
9355
|
|
9351
|
-
const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$
|
9356
|
+
const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$C, baseSelector: 'div' });
|
9352
9357
|
|
9353
9358
|
class NewPasswordInternal extends BaseInputClass$4 {
|
9354
9359
|
static get observedAttributes() {
|
@@ -9558,16 +9563,16 @@ class NewPasswordInternal extends BaseInputClass$4 {
|
|
9558
9563
|
}
|
9559
9564
|
}
|
9560
9565
|
|
9561
|
-
customElements.define(componentName$
|
9566
|
+
customElements.define(componentName$C, NewPasswordInternal);
|
9562
9567
|
|
9563
|
-
customElements.define(componentName$
|
9568
|
+
customElements.define(componentName$A, NewPasswordClass);
|
9564
9569
|
|
9565
|
-
const componentName$
|
9570
|
+
const componentName$z = getComponentName('recaptcha');
|
9566
9571
|
|
9567
9572
|
const observedAttributes$1 = ['enabled', 'site-key', 'action', 'enterprise'];
|
9568
9573
|
|
9569
9574
|
const BaseClass = createBaseClass({
|
9570
|
-
componentName: componentName$
|
9575
|
+
componentName: componentName$z,
|
9571
9576
|
baseSelector: ':host > div',
|
9572
9577
|
});
|
9573
9578
|
class RawRecaptcha extends BaseClass {
|
@@ -9754,7 +9759,7 @@ class RawRecaptcha extends BaseClass {
|
|
9754
9759
|
|
9755
9760
|
const RecaptchaClass = compose(draggableMixin)(RawRecaptcha);
|
9756
9761
|
|
9757
|
-
customElements.define(componentName$
|
9762
|
+
customElements.define(componentName$z, RecaptchaClass);
|
9758
9763
|
|
9759
9764
|
const getFileBase64 = (fileObj) => {
|
9760
9765
|
return new Promise((resolve) => {
|
@@ -9768,7 +9773,7 @@ const getFilename = (fileObj) => {
|
|
9768
9773
|
return fileObj.name.replace(/^.*\\/, '');
|
9769
9774
|
};
|
9770
9775
|
|
9771
|
-
const componentName$
|
9776
|
+
const componentName$y = getComponentName('upload-file');
|
9772
9777
|
|
9773
9778
|
const observedAttributes = [
|
9774
9779
|
'title',
|
@@ -9783,7 +9788,7 @@ const observedAttributes = [
|
|
9783
9788
|
'icon',
|
9784
9789
|
];
|
9785
9790
|
|
9786
|
-
const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$
|
9791
|
+
const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$y, baseSelector: ':host > div' });
|
9787
9792
|
|
9788
9793
|
class RawUploadFile extends BaseInputClass$3 {
|
9789
9794
|
static get observedAttributes() {
|
@@ -9998,7 +10003,7 @@ const UploadFileClass = compose(
|
|
9998
10003
|
componentNameValidationMixin
|
9999
10004
|
)(RawUploadFile);
|
10000
10005
|
|
10001
|
-
customElements.define(componentName$
|
10006
|
+
customElements.define(componentName$y, UploadFileClass);
|
10002
10007
|
|
10003
10008
|
const createBaseButtonSelectionGroupInternalClass = (componentName) => {
|
10004
10009
|
class BaseButtonSelectionGroupInternalClass extends createBaseInputClass({
|
@@ -10096,10 +10101,10 @@ const createBaseButtonSelectionGroupInternalClass = (componentName) => {
|
|
10096
10101
|
return BaseButtonSelectionGroupInternalClass;
|
10097
10102
|
};
|
10098
10103
|
|
10099
|
-
const componentName$
|
10104
|
+
const componentName$x = getComponentName('button-selection-group-internal');
|
10100
10105
|
|
10101
10106
|
class ButtonSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
10102
|
-
componentName$
|
10107
|
+
componentName$x
|
10103
10108
|
) {
|
10104
10109
|
getSelectedNode() {
|
10105
10110
|
return this.items.find((item) => item.hasAttribute('selected'));
|
@@ -10331,7 +10336,7 @@ const buttonSelectionGroupStyles = `
|
|
10331
10336
|
${resetInputCursor('vaadin-text-field')}
|
10332
10337
|
`;
|
10333
10338
|
|
10334
|
-
const componentName$
|
10339
|
+
const componentName$w = getComponentName('button-selection-group');
|
10335
10340
|
|
10336
10341
|
const buttonSelectionGroupMixin = (superclass) =>
|
10337
10342
|
class ButtonMultiSelectionGroupMixinClass extends superclass {
|
@@ -10340,19 +10345,19 @@ const buttonSelectionGroupMixin = (superclass) =>
|
|
10340
10345
|
const template = document.createElement('template');
|
10341
10346
|
|
10342
10347
|
template.innerHTML = `
|
10343
|
-
<${componentName$
|
10348
|
+
<${componentName$x}
|
10344
10349
|
name="button-selection-group"
|
10345
10350
|
slot="input"
|
10346
10351
|
tabindex="-1"
|
10347
10352
|
part="internal-component"
|
10348
10353
|
>
|
10349
10354
|
<slot></slot>
|
10350
|
-
</${componentName$
|
10355
|
+
</${componentName$x}>
|
10351
10356
|
`;
|
10352
10357
|
|
10353
10358
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
10354
10359
|
|
10355
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
10360
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$x);
|
10356
10361
|
|
10357
10362
|
forwardAttrs(this, this.inputElement, {
|
10358
10363
|
includeAttrs: ['size', 'default-value', 'allow-deselect'],
|
@@ -10377,16 +10382,16 @@ const ButtonSelectionGroupClass = compose(
|
|
10377
10382
|
wrappedEleName: 'vaadin-text-field',
|
10378
10383
|
style: () => buttonSelectionGroupStyles,
|
10379
10384
|
excludeAttrsSync: ['tabindex'],
|
10380
|
-
componentName: componentName$
|
10385
|
+
componentName: componentName$w,
|
10381
10386
|
})
|
10382
10387
|
);
|
10383
10388
|
|
10384
|
-
customElements.define(componentName$
|
10389
|
+
customElements.define(componentName$x, ButtonSelectionGroupInternalClass);
|
10385
10390
|
|
10386
|
-
const componentName$
|
10391
|
+
const componentName$v = getComponentName('button-selection-group-item');
|
10387
10392
|
|
10388
10393
|
class RawSelectItem extends createBaseClass({
|
10389
|
-
componentName: componentName$
|
10394
|
+
componentName: componentName$v,
|
10390
10395
|
baseSelector: ':host > descope-button',
|
10391
10396
|
}) {
|
10392
10397
|
get size() {
|
@@ -10493,14 +10498,14 @@ const ButtonSelectionGroupItemClass = compose(
|
|
10493
10498
|
componentNameValidationMixin
|
10494
10499
|
)(RawSelectItem);
|
10495
10500
|
|
10496
|
-
customElements.define(componentName$
|
10501
|
+
customElements.define(componentName$v, ButtonSelectionGroupItemClass);
|
10497
10502
|
|
10498
|
-
customElements.define(componentName$
|
10503
|
+
customElements.define(componentName$w, ButtonSelectionGroupClass);
|
10499
10504
|
|
10500
|
-
const componentName$
|
10505
|
+
const componentName$u = getComponentName('button-multi-selection-group-internal');
|
10501
10506
|
|
10502
10507
|
class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
10503
|
-
componentName$
|
10508
|
+
componentName$u
|
10504
10509
|
) {
|
10505
10510
|
#getSelectedNodes() {
|
10506
10511
|
return this.items.filter((item) => item.hasAttribute('selected'));
|
@@ -10603,7 +10608,7 @@ class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGr
|
|
10603
10608
|
}
|
10604
10609
|
}
|
10605
10610
|
|
10606
|
-
const componentName$
|
10611
|
+
const componentName$t = getComponentName('button-multi-selection-group');
|
10607
10612
|
|
10608
10613
|
const buttonMultiSelectionGroupMixin = (superclass) =>
|
10609
10614
|
class ButtonMultiSelectionGroupMixinClass extends superclass {
|
@@ -10612,19 +10617,19 @@ const buttonMultiSelectionGroupMixin = (superclass) =>
|
|
10612
10617
|
const template = document.createElement('template');
|
10613
10618
|
|
10614
10619
|
template.innerHTML = `
|
10615
|
-
<${componentName$
|
10620
|
+
<${componentName$u}
|
10616
10621
|
name="button-selection-group"
|
10617
10622
|
slot="input"
|
10618
10623
|
tabindex="-1"
|
10619
10624
|
part="internal-component"
|
10620
10625
|
>
|
10621
10626
|
<slot></slot>
|
10622
|
-
</${componentName$
|
10627
|
+
</${componentName$u}>
|
10623
10628
|
`;
|
10624
10629
|
|
10625
10630
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
10626
10631
|
|
10627
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
10632
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$u);
|
10628
10633
|
|
10629
10634
|
forwardAttrs(this, this.inputElement, {
|
10630
10635
|
includeAttrs: ['size', 'default-values', 'min-items-selection', 'max-items-selection'],
|
@@ -10649,13 +10654,13 @@ const ButtonMultiSelectionGroupClass = compose(
|
|
10649
10654
|
wrappedEleName: 'vaadin-text-field',
|
10650
10655
|
style: () => buttonSelectionGroupStyles,
|
10651
10656
|
excludeAttrsSync: ['tabindex'],
|
10652
|
-
componentName: componentName$
|
10657
|
+
componentName: componentName$t,
|
10653
10658
|
})
|
10654
10659
|
);
|
10655
10660
|
|
10656
|
-
customElements.define(componentName$
|
10661
|
+
customElements.define(componentName$u, ButtonMultiSelectionGroupInternalClass);
|
10657
10662
|
|
10658
|
-
customElements.define(componentName$
|
10663
|
+
customElements.define(componentName$t, ButtonMultiSelectionGroupClass);
|
10659
10664
|
|
10660
10665
|
/* eslint-disable no-param-reassign */
|
10661
10666
|
|
@@ -10683,9 +10688,9 @@ class GridTextColumnClass extends GridSortColumn {
|
|
10683
10688
|
}
|
10684
10689
|
}
|
10685
10690
|
|
10686
|
-
const componentName$
|
10691
|
+
const componentName$s = getComponentName('grid-text-column');
|
10687
10692
|
|
10688
|
-
customElements.define(componentName$
|
10693
|
+
customElements.define(componentName$s, GridTextColumnClass);
|
10689
10694
|
|
10690
10695
|
/* eslint-disable no-param-reassign */
|
10691
10696
|
|
@@ -10720,9 +10725,9 @@ class GridCustomColumnClass extends GridTextColumnClass {
|
|
10720
10725
|
|
10721
10726
|
/* eslint-disable no-param-reassign */
|
10722
10727
|
|
10723
|
-
const componentName$
|
10728
|
+
const componentName$r = getComponentName('grid-custom-column');
|
10724
10729
|
|
10725
|
-
customElements.define(componentName$
|
10730
|
+
customElements.define(componentName$r, GridCustomColumnClass);
|
10726
10731
|
|
10727
10732
|
const createCheckboxEle = () => {
|
10728
10733
|
const checkbox = document.createElement('descope-checkbox');
|
@@ -10781,9 +10786,9 @@ class GridSelectionColumnClass extends GridSelectionColumn {
|
|
10781
10786
|
}
|
10782
10787
|
}
|
10783
10788
|
|
10784
|
-
const componentName$
|
10789
|
+
const componentName$q = getComponentName('grid-selection-column');
|
10785
10790
|
|
10786
|
-
customElements.define(componentName$
|
10791
|
+
customElements.define(componentName$q, GridSelectionColumnClass);
|
10787
10792
|
|
10788
10793
|
/* eslint-disable no-param-reassign */
|
10789
10794
|
|
@@ -10822,9 +10827,9 @@ class GridItemDetailsColumnClass extends GridSortColumn {
|
|
10822
10827
|
}
|
10823
10828
|
}
|
10824
10829
|
|
10825
|
-
const componentName$
|
10830
|
+
const componentName$p = getComponentName('grid-item-details-column');
|
10826
10831
|
|
10827
|
-
customElements.define(componentName$
|
10832
|
+
customElements.define(componentName$p, GridItemDetailsColumnClass);
|
10828
10833
|
|
10829
10834
|
const decode = (input) => {
|
10830
10835
|
const txt = document.createElement('textarea');
|
@@ -10836,9 +10841,9 @@ const tpl = (input, inline) => {
|
|
10836
10841
|
return inline ? input : `<pre>${input}</pre>`;
|
10837
10842
|
};
|
10838
10843
|
|
10839
|
-
const componentName$
|
10844
|
+
const componentName$o = getComponentName('code-snippet');
|
10840
10845
|
|
10841
|
-
let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$
|
10846
|
+
let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$o, baseSelector: ':host > code' }) {
|
10842
10847
|
static get observedAttributes() {
|
10843
10848
|
return ['lang', 'inline'];
|
10844
10849
|
}
|
@@ -11068,7 +11073,7 @@ const CodeSnippetClass = compose(
|
|
11068
11073
|
componentNameValidationMixin
|
11069
11074
|
)(CodeSnippet$1);
|
11070
11075
|
|
11071
|
-
customElements.define(componentName$
|
11076
|
+
customElements.define(componentName$o, CodeSnippetClass);
|
11072
11077
|
|
11073
11078
|
const isValidDataType = (data) => {
|
11074
11079
|
const isValid = Array.isArray(data);
|
@@ -11143,7 +11148,7 @@ const defaultRowDetailsRenderer = (item, itemLabelsMapping) => {
|
|
11143
11148
|
`;
|
11144
11149
|
};
|
11145
11150
|
|
11146
|
-
const componentName$
|
11151
|
+
const componentName$n = getComponentName('grid');
|
11147
11152
|
|
11148
11153
|
const GridMixin = (superclass) =>
|
11149
11154
|
class GridMixinClass extends superclass {
|
@@ -11497,13 +11502,13 @@ const GridClass = compose(
|
|
11497
11502
|
/*!css*/
|
11498
11503
|
`,
|
11499
11504
|
excludeAttrsSync: ['columns', 'tabindex'],
|
11500
|
-
componentName: componentName$
|
11505
|
+
componentName: componentName$n,
|
11501
11506
|
})
|
11502
11507
|
);
|
11503
11508
|
|
11504
|
-
customElements.define(componentName$
|
11509
|
+
customElements.define(componentName$n, GridClass);
|
11505
11510
|
|
11506
|
-
const componentName$
|
11511
|
+
const componentName$m = getComponentName('multi-select-combo-box');
|
11507
11512
|
|
11508
11513
|
const multiSelectComboBoxMixin = (superclass) =>
|
11509
11514
|
class MultiSelectComboBoxMixinClass extends superclass {
|
@@ -12137,16 +12142,16 @@ const MultiSelectComboBoxClass = compose(
|
|
12137
12142
|
// Note: we exclude `placeholder` because the vaadin component observes it and
|
12138
12143
|
// tries to override it, causing us to lose the user set placeholder.
|
12139
12144
|
excludeAttrsSync: ['tabindex', 'size', 'data', 'placeholder'],
|
12140
|
-
componentName: componentName$
|
12145
|
+
componentName: componentName$m,
|
12141
12146
|
includeForwardProps: ['items', 'renderer', 'selectedItems'],
|
12142
12147
|
})
|
12143
12148
|
);
|
12144
12149
|
|
12145
|
-
customElements.define(componentName$
|
12150
|
+
customElements.define(componentName$m, MultiSelectComboBoxClass);
|
12146
12151
|
|
12147
|
-
const componentName$
|
12152
|
+
const componentName$l = getComponentName('badge');
|
12148
12153
|
|
12149
|
-
class RawBadge extends createBaseClass({ componentName: componentName$
|
12154
|
+
class RawBadge extends createBaseClass({ componentName: componentName$l, baseSelector: ':host > div' }) {
|
12150
12155
|
constructor() {
|
12151
12156
|
super();
|
12152
12157
|
|
@@ -12197,9 +12202,9 @@ const BadgeClass = compose(
|
|
12197
12202
|
componentNameValidationMixin
|
12198
12203
|
)(RawBadge);
|
12199
12204
|
|
12200
|
-
customElements.define(componentName$
|
12205
|
+
customElements.define(componentName$l, BadgeClass);
|
12201
12206
|
|
12202
|
-
const componentName$
|
12207
|
+
const componentName$k = getComponentName('modal');
|
12203
12208
|
|
12204
12209
|
const customMixin$5 = (superclass) =>
|
12205
12210
|
class ModalMixinClass extends superclass {
|
@@ -12298,11 +12303,11 @@ const ModalClass = compose(
|
|
12298
12303
|
wrappedEleName: 'vaadin-dialog',
|
12299
12304
|
style: () => ``,
|
12300
12305
|
excludeAttrsSync: ['tabindex', 'opened'],
|
12301
|
-
componentName: componentName$
|
12306
|
+
componentName: componentName$k,
|
12302
12307
|
})
|
12303
12308
|
);
|
12304
12309
|
|
12305
|
-
customElements.define(componentName$
|
12310
|
+
customElements.define(componentName$k, ModalClass);
|
12306
12311
|
|
12307
12312
|
const vaadinContainerClass = window.customElements.get('vaadin-notification-container');
|
12308
12313
|
|
@@ -12313,7 +12318,7 @@ if (!vaadinContainerClass) {
|
|
12313
12318
|
class NotificationContainerClass extends vaadinContainerClass {}
|
12314
12319
|
customElements.define(getComponentName('notification-container'), NotificationContainerClass);
|
12315
12320
|
|
12316
|
-
const componentName$
|
12321
|
+
const componentName$j = getComponentName('notification-card');
|
12317
12322
|
|
12318
12323
|
const notificationCardMixin = (superclass) =>
|
12319
12324
|
class NotificationCardMixinClass extends superclass {
|
@@ -12421,13 +12426,13 @@ const NotificationCardClass = compose(
|
|
12421
12426
|
}
|
12422
12427
|
`,
|
12423
12428
|
excludeAttrsSync: ['tabindex'],
|
12424
|
-
componentName: componentName$
|
12429
|
+
componentName: componentName$j,
|
12425
12430
|
})
|
12426
12431
|
);
|
12427
12432
|
|
12428
|
-
customElements.define(componentName$
|
12433
|
+
customElements.define(componentName$j, NotificationCardClass);
|
12429
12434
|
|
12430
|
-
const componentName$
|
12435
|
+
const componentName$i = getComponentName('notification');
|
12431
12436
|
|
12432
12437
|
const NotificationMixin = (superclass) =>
|
12433
12438
|
class NotificationMixinClass extends superclass {
|
@@ -12522,14 +12527,14 @@ const NotificationClass = compose(
|
|
12522
12527
|
createProxy({
|
12523
12528
|
wrappedEleName: 'vaadin-notification',
|
12524
12529
|
excludeAttrsSync: ['tabindex'],
|
12525
|
-
componentName: componentName$
|
12530
|
+
componentName: componentName$i,
|
12526
12531
|
})
|
12527
12532
|
);
|
12528
12533
|
|
12529
|
-
customElements.define(componentName$
|
12534
|
+
customElements.define(componentName$i, NotificationClass);
|
12530
12535
|
|
12531
|
-
const componentName$
|
12532
|
-
class RawAvatar extends createBaseClass({ componentName: componentName$
|
12536
|
+
const componentName$h = getComponentName('avatar');
|
12537
|
+
class RawAvatar extends createBaseClass({ componentName: componentName$h, baseSelector: ':host > .wrapper' }) {
|
12533
12538
|
constructor() {
|
12534
12539
|
super();
|
12535
12540
|
|
@@ -12633,11 +12638,11 @@ const AvatarClass = compose(
|
|
12633
12638
|
componentNameValidationMixin
|
12634
12639
|
)(RawAvatar);
|
12635
12640
|
|
12636
|
-
customElements.define(componentName$
|
12641
|
+
customElements.define(componentName$h, AvatarClass);
|
12637
12642
|
|
12638
|
-
const componentName$
|
12643
|
+
const componentName$g = getComponentName('mappings-field-internal');
|
12639
12644
|
|
12640
|
-
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$
|
12645
|
+
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$g, baseSelector: 'div' });
|
12641
12646
|
|
12642
12647
|
class MappingsFieldInternal extends BaseInputClass$2 {
|
12643
12648
|
#errorItem;
|
@@ -12872,7 +12877,7 @@ class MappingsFieldInternal extends BaseInputClass$2 {
|
|
12872
12877
|
}
|
12873
12878
|
}
|
12874
12879
|
|
12875
|
-
const componentName$
|
12880
|
+
const componentName$f = getComponentName('mappings-field');
|
12876
12881
|
|
12877
12882
|
const customMixin$4 = (superclass) =>
|
12878
12883
|
class MappingsFieldMixinClass extends superclass {
|
@@ -12901,14 +12906,14 @@ const customMixin$4 = (superclass) =>
|
|
12901
12906
|
const template = document.createElement('template');
|
12902
12907
|
|
12903
12908
|
template.innerHTML = `
|
12904
|
-
<${componentName$
|
12909
|
+
<${componentName$g}
|
12905
12910
|
tabindex="-1"
|
12906
|
-
></${componentName$
|
12911
|
+
></${componentName$g}>
|
12907
12912
|
`;
|
12908
12913
|
|
12909
12914
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
12910
12915
|
|
12911
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
12916
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$g);
|
12912
12917
|
|
12913
12918
|
forwardAttrs(this, this.inputElement, {
|
12914
12919
|
includeAttrs: [
|
@@ -13040,17 +13045,17 @@ const MappingsFieldClass = compose(
|
|
13040
13045
|
'options',
|
13041
13046
|
'error-message',
|
13042
13047
|
],
|
13043
|
-
componentName: componentName$
|
13048
|
+
componentName: componentName$f,
|
13044
13049
|
})
|
13045
13050
|
);
|
13046
13051
|
|
13047
|
-
customElements.define(componentName$
|
13052
|
+
customElements.define(componentName$g, MappingsFieldInternal);
|
13048
13053
|
|
13049
|
-
const componentName$
|
13054
|
+
const componentName$e = getComponentName('mapping-item');
|
13050
13055
|
|
13051
13056
|
const inputAttrs = ['size', 'bordered', 'readonly', 'full-width', 'disabled'];
|
13052
13057
|
|
13053
|
-
const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$
|
13058
|
+
const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$e, baseSelector: 'div' });
|
13054
13059
|
|
13055
13060
|
class MappingItem extends BaseInputClass$1 {
|
13056
13061
|
static get observedAttributes() {
|
@@ -13200,17 +13205,17 @@ class MappingItem extends BaseInputClass$1 {
|
|
13200
13205
|
}
|
13201
13206
|
}
|
13202
13207
|
|
13203
|
-
customElements.define(componentName$
|
13208
|
+
customElements.define(componentName$e, MappingItem);
|
13204
13209
|
|
13205
|
-
customElements.define(componentName$
|
13210
|
+
customElements.define(componentName$f, MappingsFieldClass);
|
13206
13211
|
|
13207
13212
|
var deleteIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTZDMSAxNy4xIDEuOSAxOCAzIDE4SDExQzEyLjEgMTggMTMgMTcuMSAxMyAxNlY0SDFWMTZaTTMgNkgxMVYxNkgzVjZaTTEwLjUgMUw5LjUgMEg0LjVMMy41IDFIMFYzSDE0VjFIMTAuNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
|
13208
13213
|
|
13209
13214
|
var editIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjAwMDIgMC45OTIxNDlDMTAuMDAwMiAxLjAxNjE1IDEwLjAwMDIgMS4wMTYxNSAxMC4wMDAyIDEuMDE2MTVMOC4yMjQxOSAzLjAwODE1SDIuOTkyMTlDMi40NjQxOSAzLjAwODE1IDIuMDA4MTkgMy40NDAxNSAyLjAwODE5IDMuOTkyMTVWMTIuMDA4MkMyLjAwODE5IDEyLjUzNjIgMi40NDAxOSAxMi45OTIyIDIuOTkyMTkgMTIuOTkyMkg1LjUzNjE5QzUuODQ4MTkgMTMuMDQwMiA2LjE2MDE5IDEzLjA0MDIgNi40NzIxOSAxMi45OTIySDExLjAwODJDMTEuNTM2MiAxMi45OTIyIDExLjk5MjIgMTIuNTYwMiAxMS45OTIyIDEyLjAwODJWNy43ODQxNkwxMy45MzYyIDUuNjI0MTVMMTQuMDA4MiA1LjY3MjE1VjExLjk4NDJDMTQuMDA4MiAxMy42NjQyIDEyLjY2NDIgMTUuMDA4MiAxMS4wMDgyIDE1LjAwODJIMy4wMTYxOUMxLjMzNjE5IDE1LjAwODIgLTAuMDA3ODEyNSAxMy42NjQyIC0wLjAwNzgxMjUgMTEuOTg0MlYzLjk5MjE1Qy0wLjAwNzgxMjUgMi4zMzYxNSAxLjMzNjE5IDAuOTkyMTQ5IDMuMDE2MTkgMC45OTIxNDlIMTAuMDAwMlpNMTEuMjcyMiAyLjYyNDE1TDEyLjYxNjIgNC4xMTIxNUw3LjcyMDE5IDkuNjgwMTZDNy41MDQxOSA5LjkyMDE2IDYuODMyMTkgMTAuMjMyMiA1LjY4MDE5IDEwLjYxNjJDNS42NTYxOSAxMC42NDAyIDUuNjA4MTkgMTAuNjQwMiA1LjU2MDE5IDEwLjYxNjJDNS40NjQxOSAxMC41OTIyIDUuMzkyMTkgMTAuNDcyMiA1LjQ0MDE5IDEwLjM3NjJDNS43NTIxOSA5LjI0ODE2IDYuMDQwMTkgOC41NTIxNiA2LjI1NjE5IDguMzEyMTZMMTEuMjcyMiAyLjYyNDE1Wk0xMS45MjAyIDEuODU2MTVMMTMuMjg4MiAwLjMyMDE0OUMxMy42NDgyIC0wLjA4Nzg1MTYgMTQuMjcyMiAtMC4xMTE4NTIgMTQuNjgwMiAwLjI3MjE0OUMxNS4wODgyIDAuNjMyMTQ5IDE1LjExMjIgMS4yODAxNSAxNC43NTIyIDEuNjg4MTVMMTMuMjY0MiAzLjM2ODE1TDExLjkyMDIgMS44NTYxNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
|
13210
13215
|
|
13211
|
-
const componentName$
|
13216
|
+
const componentName$d = getComponentName('user-attribute');
|
13212
13217
|
class RawUserAttribute extends createBaseClass({
|
13213
|
-
componentName: componentName$
|
13218
|
+
componentName: componentName$d,
|
13214
13219
|
baseSelector: ':host > .root',
|
13215
13220
|
}) {
|
13216
13221
|
constructor() {
|
@@ -13444,13 +13449,13 @@ const UserAttributeClass = compose(
|
|
13444
13449
|
componentNameValidationMixin
|
13445
13450
|
)(RawUserAttribute);
|
13446
13451
|
|
13447
|
-
customElements.define(componentName$
|
13452
|
+
customElements.define(componentName$d, UserAttributeClass);
|
13448
13453
|
|
13449
13454
|
var greenVIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhDMCAxMi40IDMuNiAxNiA4IDE2QzEyLjQgMTYgMTYgMTIuNCAxNiA4QzE2IDMuNiAxMi40IDAgOCAwWk03LjEgMTEuN0wyLjkgNy42TDQuMyA2LjJMNyA4LjlMMTIgNEwxMy40IDUuNEw3LjEgMTEuN1oiIGZpbGw9IiM0Q0FGNTAiLz4KPC9zdmc+Cg==";
|
13450
13455
|
|
13451
|
-
const componentName$
|
13456
|
+
const componentName$c = getComponentName('user-auth-method');
|
13452
13457
|
class RawUserAuthMethod extends createBaseClass({
|
13453
|
-
componentName: componentName$
|
13458
|
+
componentName: componentName$c,
|
13454
13459
|
baseSelector: ':host > .root',
|
13455
13460
|
}) {
|
13456
13461
|
constructor() {
|
@@ -13642,11 +13647,11 @@ const UserAuthMethodClass = compose(
|
|
13642
13647
|
componentNameValidationMixin
|
13643
13648
|
)(RawUserAuthMethod);
|
13644
13649
|
|
13645
|
-
customElements.define(componentName$
|
13650
|
+
customElements.define(componentName$c, UserAuthMethodClass);
|
13646
13651
|
|
13647
|
-
const componentName$
|
13652
|
+
const componentName$b = getComponentName('saml-group-mappings-internal');
|
13648
13653
|
|
13649
|
-
const BaseInputClass = createBaseInputClass({ componentName: componentName$
|
13654
|
+
const BaseInputClass = createBaseInputClass({ componentName: componentName$b, baseSelector: '' });
|
13650
13655
|
|
13651
13656
|
class SamlGroupMappingsInternal extends BaseInputClass {
|
13652
13657
|
static get observedAttributes() {
|
@@ -13772,7 +13777,7 @@ class SamlGroupMappingsInternal extends BaseInputClass {
|
|
13772
13777
|
}
|
13773
13778
|
}
|
13774
13779
|
|
13775
|
-
const componentName$
|
13780
|
+
const componentName$a = getComponentName('saml-group-mappings');
|
13776
13781
|
|
13777
13782
|
const customMixin$3 = (superclass) =>
|
13778
13783
|
class SamlGroupMappingsMixinClass extends superclass {
|
@@ -13782,14 +13787,14 @@ const customMixin$3 = (superclass) =>
|
|
13782
13787
|
const template = document.createElement('template');
|
13783
13788
|
|
13784
13789
|
template.innerHTML = `
|
13785
|
-
<${componentName$
|
13790
|
+
<${componentName$b}
|
13786
13791
|
tabindex="-1"
|
13787
|
-
></${componentName$
|
13792
|
+
></${componentName$b}>
|
13788
13793
|
`;
|
13789
13794
|
|
13790
13795
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
13791
13796
|
|
13792
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
13797
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$b);
|
13793
13798
|
|
13794
13799
|
forwardAttrs(this, this.inputElement, {
|
13795
13800
|
includeAttrs: [
|
@@ -13866,15 +13871,15 @@ const SamlGroupMappingsClass = compose(
|
|
13866
13871
|
'options',
|
13867
13872
|
'error-message',
|
13868
13873
|
],
|
13869
|
-
componentName: componentName$
|
13874
|
+
componentName: componentName$a,
|
13870
13875
|
})
|
13871
13876
|
);
|
13872
13877
|
|
13873
|
-
customElements.define(componentName$
|
13878
|
+
customElements.define(componentName$b, SamlGroupMappingsInternal);
|
13874
13879
|
|
13875
|
-
customElements.define(componentName$
|
13880
|
+
customElements.define(componentName$a, SamlGroupMappingsClass);
|
13876
13881
|
|
13877
|
-
const componentName$
|
13882
|
+
const componentName$9 = getComponentName('radio-button');
|
13878
13883
|
|
13879
13884
|
const customMixin$2 = (superclass) =>
|
13880
13885
|
class CustomMixin extends superclass {
|
@@ -13939,11 +13944,11 @@ const RadioButtonClass = compose(
|
|
13939
13944
|
wrappedEleName: 'vaadin-radio-button',
|
13940
13945
|
excludeAttrsSync: ['tabindex', 'data'],
|
13941
13946
|
includeForwardProps: ['checked', 'name', 'disabled'],
|
13942
|
-
componentName: componentName$
|
13947
|
+
componentName: componentName$9,
|
13943
13948
|
})
|
13944
13949
|
);
|
13945
13950
|
|
13946
|
-
const componentName$
|
13951
|
+
const componentName$8 = getComponentName('radio-group');
|
13947
13952
|
|
13948
13953
|
const RadioGroupMixin = (superclass) =>
|
13949
13954
|
class RadioGroupMixinClass extends superclass {
|
@@ -13958,12 +13963,12 @@ const RadioGroupMixin = (superclass) =>
|
|
13958
13963
|
|
13959
13964
|
// we are overriding vaadin children getter so it will run on our custom elements
|
13960
13965
|
Object.defineProperty(this.baseElement, 'children', {
|
13961
|
-
get: () => this.querySelectorAll(componentName$
|
13966
|
+
get: () => this.querySelectorAll(componentName$9),
|
13962
13967
|
});
|
13963
13968
|
|
13964
13969
|
// we are overriding vaadin __filterRadioButtons so it will run on our custom elements
|
13965
13970
|
this.baseElement.__filterRadioButtons = (nodes) => {
|
13966
|
-
return nodes.filter((node) => node.localName === componentName$
|
13971
|
+
return nodes.filter((node) => node.localName === componentName$9);
|
13967
13972
|
};
|
13968
13973
|
|
13969
13974
|
// vaadin radio group missing some input properties
|
@@ -14113,13 +14118,13 @@ const RadioGroupClass = compose(
|
|
14113
14118
|
`,
|
14114
14119
|
|
14115
14120
|
excludeAttrsSync: ['tabindex', 'size', 'data', 'direction'],
|
14116
|
-
componentName: componentName$
|
14121
|
+
componentName: componentName$8,
|
14117
14122
|
includeForwardProps: ['value'],
|
14118
14123
|
})
|
14119
14124
|
);
|
14120
14125
|
|
14121
|
-
customElements.define(componentName$
|
14122
|
-
customElements.define(componentName$
|
14126
|
+
customElements.define(componentName$8, RadioGroupClass);
|
14127
|
+
customElements.define(componentName$9, RadioButtonClass);
|
14123
14128
|
|
14124
14129
|
const activeableMixin = (superclass) =>
|
14125
14130
|
class ActiveableMixinClass extends superclass {
|
@@ -14136,7 +14141,7 @@ const activeableMixin = (superclass) =>
|
|
14136
14141
|
}
|
14137
14142
|
};
|
14138
14143
|
|
14139
|
-
const componentName$
|
14144
|
+
const componentName$7 = getComponentName('list-item');
|
14140
14145
|
|
14141
14146
|
const customMixin$1 = (superclass) =>
|
14142
14147
|
class ListItemMixinClass extends superclass {
|
@@ -14185,11 +14190,11 @@ const ListItemClass = compose(
|
|
14185
14190
|
componentNameValidationMixin,
|
14186
14191
|
customMixin$1,
|
14187
14192
|
activeableMixin
|
14188
|
-
)(createBaseClass({ componentName: componentName$
|
14193
|
+
)(createBaseClass({ componentName: componentName$7, baseSelector: 'slot' }));
|
14189
14194
|
|
14190
|
-
const componentName$
|
14195
|
+
const componentName$6 = getComponentName('list');
|
14191
14196
|
|
14192
|
-
class RawList extends createBaseClass({ componentName: componentName$
|
14197
|
+
class RawList extends createBaseClass({ componentName: componentName$6, baseSelector: '.wrapper' }) {
|
14193
14198
|
static get observedAttributes() {
|
14194
14199
|
return ['variant', 'readonly'];
|
14195
14200
|
}
|
@@ -14336,8 +14341,8 @@ const ListClass = compose(
|
|
14336
14341
|
componentNameValidationMixin
|
14337
14342
|
)(RawList);
|
14338
14343
|
|
14339
|
-
customElements.define(componentName$
|
14340
|
-
customElements.define(componentName$
|
14344
|
+
customElements.define(componentName$6, ListClass);
|
14345
|
+
customElements.define(componentName$7, ListItemClass);
|
14341
14346
|
|
14342
14347
|
const defaultValidateSchema = () => true;
|
14343
14348
|
const defaultItemRenderer = (item) => `<pre>${JSON.stringify(item, null, 4)}</pre>`;
|
@@ -14438,7 +14443,7 @@ const createDynamicDataMixin =
|
|
14438
14443
|
}
|
14439
14444
|
};
|
14440
14445
|
|
14441
|
-
const componentName$
|
14446
|
+
const componentName$5 = getComponentName('apps-list');
|
14442
14447
|
|
14443
14448
|
const limitAbbreviation = (str, limit = 2) =>
|
14444
14449
|
str
|
@@ -14500,7 +14505,7 @@ const AppsListClass = compose(
|
|
14500
14505
|
slots: ['empty-state'],
|
14501
14506
|
wrappedEleName: 'descope-list',
|
14502
14507
|
excludeAttrsSync: ['tabindex', 'class', 'empty'],
|
14503
|
-
componentName: componentName$
|
14508
|
+
componentName: componentName$5,
|
14504
14509
|
style: () => `
|
14505
14510
|
:host {
|
14506
14511
|
width: 100%;
|
@@ -14525,9 +14530,9 @@ const AppsListClass = compose(
|
|
14525
14530
|
})
|
14526
14531
|
);
|
14527
14532
|
|
14528
|
-
customElements.define(componentName$
|
14533
|
+
customElements.define(componentName$5, AppsListClass);
|
14529
14534
|
|
14530
|
-
const componentName$
|
14535
|
+
const componentName$4 = getComponentName('scopes-list');
|
14531
14536
|
const variants = ['checkbox', 'switch'];
|
14532
14537
|
|
14533
14538
|
const itemRenderer = ({ id, desc, required = false }, _, ref) => {
|
@@ -14546,7 +14551,7 @@ const itemRenderer = ({ id, desc, required = false }, _, ref) => {
|
|
14546
14551
|
`;
|
14547
14552
|
};
|
14548
14553
|
|
14549
|
-
class RawScopesList extends createBaseClass({ componentName: componentName$
|
14554
|
+
class RawScopesList extends createBaseClass({ componentName: componentName$4, baseSelector: 'div' }) {
|
14550
14555
|
constructor() {
|
14551
14556
|
super();
|
14552
14557
|
|
@@ -14651,13 +14656,13 @@ const ScopesListClass = compose(
|
|
14651
14656
|
componentNameValidationMixin
|
14652
14657
|
)(RawScopesList);
|
14653
14658
|
|
14654
|
-
customElements.define(componentName$
|
14659
|
+
customElements.define(componentName$4, ScopesListClass);
|
14655
14660
|
|
14656
14661
|
var arrowsImg = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOSAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMTQ0OTIgMTUuNjQ1TDcuNDk5OTIgMTRMMi44MzMyNSAxOC42NjY3TDcuNDk5OTIgMjMuMzMzM0w5LjE0NDkyIDIxLjY4ODNMNy4zMDE1OSAxOS44MzMzSDI0Ljk5OTlWMTcuNUg3LjMwMTU5TDkuMTQ0OTIgMTUuNjQ1WiIgZmlsbD0iIzYzNkM3NCIvPgo8cGF0aCBkPSJNMTkuODU1IDEyLjM1NTNMMjEuNSAxNC4wMDAzTDI2LjE2NjcgOS4zMzM2NkwyMS41IDQuNjY2OTlMMTkuODU1IDYuMzExOTlMMjEuNjk4MyA4LjE2Njk5SDRWMTAuNTAwM0gyMS42OTgzTDE5Ljg1NSAxMi4zNTUzWiIgZmlsbD0iIzYzNkM3NCIvPgo8L3N2Zz4K";
|
14657
14662
|
|
14658
|
-
const componentName$
|
14663
|
+
const componentName$3 = getComponentName('third-party-app-logo');
|
14659
14664
|
class RawThirdPartyAppLogoClass extends createBaseClass({
|
14660
|
-
componentName: componentName$
|
14665
|
+
componentName: componentName$3,
|
14661
14666
|
baseSelector: '.wrapper',
|
14662
14667
|
}) {
|
14663
14668
|
constructor() {
|
@@ -14751,11 +14756,11 @@ const ThirdPartyAppLogoClass = compose(
|
|
14751
14756
|
componentNameValidationMixin
|
14752
14757
|
)(RawThirdPartyAppLogoClass);
|
14753
14758
|
|
14754
|
-
customElements.define(componentName$
|
14759
|
+
customElements.define(componentName$3, ThirdPartyAppLogoClass);
|
14755
14760
|
|
14756
|
-
const componentName$
|
14761
|
+
const componentName$2 = getComponentName('security-questions-setup');
|
14757
14762
|
|
14758
|
-
const attrsToSync = [
|
14763
|
+
const attrsToSync$1 = [
|
14759
14764
|
'full-width',
|
14760
14765
|
'readonly',
|
14761
14766
|
'size',
|
@@ -14768,8 +14773,8 @@ const attrsToSync = [
|
|
14768
14773
|
'answer-data-errormessage-value-missing',
|
14769
14774
|
];
|
14770
14775
|
|
14771
|
-
const attrsToReRender = ['count', 'questions'];
|
14772
|
-
class RawSecurityQuestionsSetup extends createBaseClass({ componentName: componentName$
|
14776
|
+
const attrsToReRender$1 = ['count', 'questions'];
|
14777
|
+
class RawSecurityQuestionsSetup extends createBaseClass({ componentName: componentName$2, baseSelector: 'div' }) {
|
14773
14778
|
constructor() {
|
14774
14779
|
super();
|
14775
14780
|
|
@@ -14789,14 +14794,6 @@ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: compone
|
|
14789
14794
|
`;
|
14790
14795
|
}
|
14791
14796
|
|
14792
|
-
get isReadOnly() {
|
14793
|
-
return this.getAttribute('readonly') === 'true';
|
14794
|
-
}
|
14795
|
-
|
14796
|
-
get size() {
|
14797
|
-
return this.getAttribute('size') || 'sm';
|
14798
|
-
}
|
14799
|
-
|
14800
14797
|
get count() {
|
14801
14798
|
return Number(this.getAttribute('count')) || 0;
|
14802
14799
|
}
|
@@ -14843,7 +14840,7 @@ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: compone
|
|
14843
14840
|
el.data = this.data;
|
14844
14841
|
});
|
14845
14842
|
|
14846
|
-
this.#syncAttrs(attrsToSync);
|
14843
|
+
this.#syncAttrs(attrsToSync$1);
|
14847
14844
|
}
|
14848
14845
|
|
14849
14846
|
getAttachedTextField(combo) {
|
@@ -14884,7 +14881,7 @@ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: compone
|
|
14884
14881
|
return JSON.parse(this.getAttribute('questions')) || [];
|
14885
14882
|
} catch (e) {
|
14886
14883
|
// eslint-disable-next-line no-console
|
14887
|
-
console.error(componentName$
|
14884
|
+
console.error(componentName$2, 'Error parsing questions attribute', e);
|
14888
14885
|
return [];
|
14889
14886
|
}
|
14890
14887
|
}
|
@@ -14960,12 +14957,12 @@ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: compone
|
|
14960
14957
|
() => {
|
14961
14958
|
this.#renderQuestions();
|
14962
14959
|
},
|
14963
|
-
{ includeAttrs: attrsToReRender }
|
14960
|
+
{ includeAttrs: attrsToReRender$1 }
|
14964
14961
|
);
|
14965
14962
|
|
14966
14963
|
// update existing components
|
14967
14964
|
observeAttributes(this, this.#syncAttrs.bind(this), {
|
14968
|
-
includeAttrs: attrsToSync,
|
14965
|
+
includeAttrs: attrsToSync$1,
|
14969
14966
|
});
|
14970
14967
|
}
|
14971
14968
|
}
|
@@ -14992,7 +14989,211 @@ const SecurityQuestionsSetupClass = compose(
|
|
14992
14989
|
componentNameValidationMixin
|
14993
14990
|
)(RawSecurityQuestionsSetup);
|
14994
14991
|
|
14995
|
-
customElements.define(componentName$
|
14992
|
+
customElements.define(componentName$2, SecurityQuestionsSetupClass);
|
14993
|
+
|
14994
|
+
const componentName$1 = getComponentName('security-questions-verify');
|
14995
|
+
|
14996
|
+
const textFieldsAttrs = [
|
14997
|
+
'full-width',
|
14998
|
+
'readonly',
|
14999
|
+
'size',
|
15000
|
+
'answer-placeholder',
|
15001
|
+
'answer-data-errormessage-value-missing',
|
15002
|
+
];
|
15003
|
+
|
15004
|
+
const textsAttrs = ['question-mode'];
|
15005
|
+
|
15006
|
+
const attrMappings = {
|
15007
|
+
'answer-placeholder': 'placeholder',
|
15008
|
+
'answer-data-errormessage-value-missing': 'data-errormessage-value-missing',
|
15009
|
+
'question-mode': 'mode',
|
15010
|
+
};
|
15011
|
+
|
15012
|
+
const attrsToSync = [...textFieldsAttrs, ...textsAttrs];
|
15013
|
+
|
15014
|
+
const attrsToReRender = ['questions'];
|
15015
|
+
class RawSecurityQuestionsVerify extends createBaseClass({ componentName: componentName$1, baseSelector: 'div' }) {
|
15016
|
+
constructor() {
|
15017
|
+
super();
|
15018
|
+
|
15019
|
+
this.attachShadow({ mode: 'open' }).innerHTML = `
|
15020
|
+
<style>
|
15021
|
+
:host {
|
15022
|
+
display: inline-flex;
|
15023
|
+
}
|
15024
|
+
|
15025
|
+
div {
|
15026
|
+
display: flex;
|
15027
|
+
flex-direction: column;
|
15028
|
+
}
|
15029
|
+
|
15030
|
+
</style>
|
15031
|
+
<div></div>
|
15032
|
+
`;
|
15033
|
+
}
|
15034
|
+
|
15035
|
+
#renderQuestions() {
|
15036
|
+
const res = this.questions.map(
|
15037
|
+
({ id, text }) =>
|
15038
|
+
// <!--html-->
|
15039
|
+
`
|
15040
|
+
<div class="question-wrapper">
|
15041
|
+
<descope-text
|
15042
|
+
data-id="${id}"
|
15043
|
+
>${text}</descope-text>
|
15044
|
+
|
15045
|
+
<descope-text-field
|
15046
|
+
data-id="${id}"
|
15047
|
+
required="true"
|
15048
|
+
bordered="true"
|
15049
|
+
></descope-text-field>
|
15050
|
+
</div>
|
15051
|
+
`
|
15052
|
+
// <!--!html-->
|
15053
|
+
);
|
15054
|
+
|
15055
|
+
this.baseElement.innerHTML = res.join(
|
15056
|
+
'<spacer></spacer><descope-divider></descope-divider><spacer></spacer>'
|
15057
|
+
);
|
15058
|
+
|
15059
|
+
this.#syncAttrs(attrsToSync);
|
15060
|
+
|
15061
|
+
// focus input when text is clicked
|
15062
|
+
this.texts.forEach((el) => {
|
15063
|
+
const input = this.textFields.find(
|
15064
|
+
(field) => field.getAttribute('data-id') === el.getAttribute('data-id')
|
15065
|
+
);
|
15066
|
+
// eslint-disable-next-line no-param-reassign
|
15067
|
+
if (input) el.onclick = input.focus.bind(input);
|
15068
|
+
});
|
15069
|
+
}
|
15070
|
+
|
15071
|
+
reportValidity() {
|
15072
|
+
this.textFields.reverse().forEach((el) => el.reportValidity());
|
15073
|
+
|
15074
|
+
return this.checkValidity();
|
15075
|
+
}
|
15076
|
+
|
15077
|
+
checkValidity() {
|
15078
|
+
return this.textFields.every((el) => el.checkValidity());
|
15079
|
+
}
|
15080
|
+
|
15081
|
+
get questions() {
|
15082
|
+
try {
|
15083
|
+
return JSON.parse(this.getAttribute('questions')) || [];
|
15084
|
+
} catch (e) {
|
15085
|
+
// eslint-disable-next-line no-console
|
15086
|
+
console.error(componentName$1, 'Error parsing questions attribute', e);
|
15087
|
+
return [];
|
15088
|
+
}
|
15089
|
+
}
|
15090
|
+
|
15091
|
+
get texts() {
|
15092
|
+
return Array.from(this.baseElement.querySelectorAll('descope-text'));
|
15093
|
+
}
|
15094
|
+
|
15095
|
+
get textFields() {
|
15096
|
+
return Array.from(this.baseElement.querySelectorAll('descope-text-field'));
|
15097
|
+
}
|
15098
|
+
|
15099
|
+
get elements() {
|
15100
|
+
return Array.from(this.baseElement.querySelectorAll('descope-text, descope-text-field'));
|
15101
|
+
}
|
15102
|
+
|
15103
|
+
get value() {
|
15104
|
+
return this.textFields.map((el) => ({ id: el.getAttribute('data-id'), answer: el.value }));
|
15105
|
+
}
|
15106
|
+
|
15107
|
+
set value(val = []) {
|
15108
|
+
val.forEach(({ id, answer }) => {
|
15109
|
+
const textField = this.textFields.find((el) => el.getAttribute('data-id') === id);
|
15110
|
+
if (textField) textField.value = answer;
|
15111
|
+
});
|
15112
|
+
}
|
15113
|
+
|
15114
|
+
// eslint-disable-next-line class-methods-use-this
|
15115
|
+
#updateAttribute(ele, attrName, value) {
|
15116
|
+
if (value === null) ele.removeAttribute(attrName);
|
15117
|
+
else ele.setAttribute(attrName, value);
|
15118
|
+
}
|
15119
|
+
|
15120
|
+
#getElementsToUpdate(attr) {
|
15121
|
+
switch (true) {
|
15122
|
+
case textFieldsAttrs.includes(attr):
|
15123
|
+
return this.textFields;
|
15124
|
+
case textsAttrs.includes(attr):
|
15125
|
+
return this.texts;
|
15126
|
+
default:
|
15127
|
+
return [];
|
15128
|
+
}
|
15129
|
+
}
|
15130
|
+
|
15131
|
+
#syncAttrs(attrs) {
|
15132
|
+
attrs.forEach((attr) => {
|
15133
|
+
this.#getElementsToUpdate(attr).forEach((el) => {
|
15134
|
+
this.#updateAttribute(el, attrMappings[attr] || attr, this.getAttribute(attr));
|
15135
|
+
});
|
15136
|
+
});
|
15137
|
+
}
|
15138
|
+
|
15139
|
+
init() {
|
15140
|
+
super.init?.();
|
15141
|
+
// render new components
|
15142
|
+
observeAttributes(
|
15143
|
+
this,
|
15144
|
+
() => {
|
15145
|
+
this.#renderQuestions();
|
15146
|
+
},
|
15147
|
+
{ includeAttrs: attrsToReRender }
|
15148
|
+
);
|
15149
|
+
|
15150
|
+
// update existing components
|
15151
|
+
observeAttributes(this, this.#syncAttrs.bind(this), {
|
15152
|
+
includeAttrs: attrsToSync,
|
15153
|
+
});
|
15154
|
+
}
|
15155
|
+
}
|
15156
|
+
|
15157
|
+
const SecurityQuestionsVerifyClass = compose(
|
15158
|
+
createStyleMixin({ componentNameOverride: getComponentName('input-wrapper') }),
|
15159
|
+
createStyleMixin({
|
15160
|
+
mappings: {
|
15161
|
+
hostWidth: [{ selector: () => ':host', property: 'width' }, { property: 'width' }],
|
15162
|
+
hostDirection: [
|
15163
|
+
{ selector: () => ':host', property: 'direction' },
|
15164
|
+
{
|
15165
|
+
selector: () => TextClass.componentName,
|
15166
|
+
property: TextClass.cssVarList.hostDirection,
|
15167
|
+
},
|
15168
|
+
{
|
15169
|
+
selector: () => TextFieldClass.componentName,
|
15170
|
+
property: TextFieldClass.cssVarList.hostDirection,
|
15171
|
+
},
|
15172
|
+
],
|
15173
|
+
gap: { selector: () => 'div', property: 'gap' },
|
15174
|
+
questionTextAlign: {
|
15175
|
+
selector: () => TextClass.componentName,
|
15176
|
+
property: TextClass.cssVarList.textAlign,
|
15177
|
+
},
|
15178
|
+
questionFontSize: {
|
15179
|
+
selector: () => TextClass.componentName,
|
15180
|
+
property: TextClass.cssVarList.fontSize,
|
15181
|
+
},
|
15182
|
+
questionFontFamily: {
|
15183
|
+
selector: () => TextClass.componentName,
|
15184
|
+
property: TextClass.cssVarList.fontFamily,
|
15185
|
+
},
|
15186
|
+
questionCursor: {
|
15187
|
+
selector: () => TextClass.componentName,
|
15188
|
+
property: 'cursor',
|
15189
|
+
},
|
15190
|
+
},
|
15191
|
+
}),
|
15192
|
+
draggableMixin,
|
15193
|
+
componentNameValidationMixin
|
15194
|
+
)(RawSecurityQuestionsVerify);
|
15195
|
+
|
15196
|
+
customElements.define(componentName$1, SecurityQuestionsVerifyClass);
|
14996
15197
|
|
14997
15198
|
const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
|
14998
15199
|
|
@@ -15424,7 +15625,7 @@ const globals = {
|
|
15424
15625
|
fonts,
|
15425
15626
|
direction,
|
15426
15627
|
};
|
15427
|
-
const vars$
|
15628
|
+
const vars$S = getThemeVars(globals);
|
15428
15629
|
|
15429
15630
|
const globalRefs$y = getThemeRefs(globals);
|
15430
15631
|
const compVars$6 = ButtonClass.cssVarList;
|
@@ -15437,7 +15638,7 @@ const mode = {
|
|
15437
15638
|
surface: globalRefs$y.colors.surface,
|
15438
15639
|
};
|
15439
15640
|
|
15440
|
-
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$
|
15641
|
+
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$13);
|
15441
15642
|
|
15442
15643
|
const button = {
|
15443
15644
|
...helperTheme$4,
|
@@ -15549,7 +15750,7 @@ const button = {
|
|
15549
15750
|
},
|
15550
15751
|
};
|
15551
15752
|
|
15552
|
-
const vars$
|
15753
|
+
const vars$R = {
|
15553
15754
|
...compVars$6,
|
15554
15755
|
...helperVars$4,
|
15555
15756
|
};
|
@@ -15557,13 +15758,13 @@ const vars$Q = {
|
|
15557
15758
|
var button$1 = /*#__PURE__*/Object.freeze({
|
15558
15759
|
__proto__: null,
|
15559
15760
|
default: button,
|
15560
|
-
vars: vars$
|
15761
|
+
vars: vars$R
|
15561
15762
|
});
|
15562
15763
|
|
15563
15764
|
const componentName = getComponentName('input-wrapper');
|
15564
15765
|
const globalRefs$x = getThemeRefs(globals);
|
15565
15766
|
|
15566
|
-
const [theme$1, refs, vars$
|
15767
|
+
const [theme$1, refs, vars$Q] = createHelperVars(
|
15567
15768
|
{
|
15568
15769
|
labelTextColor: globalRefs$x.colors.surface.dark,
|
15569
15770
|
labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
|
@@ -15682,13 +15883,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
|
|
15682
15883
|
__proto__: null,
|
15683
15884
|
default: theme$1,
|
15684
15885
|
refs: refs,
|
15685
|
-
vars: vars$
|
15886
|
+
vars: vars$Q
|
15686
15887
|
});
|
15687
15888
|
|
15688
15889
|
const globalRefs$w = getThemeRefs(globals);
|
15689
|
-
const vars$
|
15890
|
+
const vars$P = TextFieldClass.cssVarList;
|
15690
15891
|
|
15691
15892
|
const textField = {
|
15893
|
+
[vars$P.hostWidth]: refs.width,
|
15894
|
+
[vars$P.hostMinWidth]: refs.minWidth,
|
15895
|
+
[vars$P.hostDirection]: refs.direction,
|
15896
|
+
[vars$P.fontSize]: refs.fontSize,
|
15897
|
+
[vars$P.fontFamily]: refs.fontFamily,
|
15898
|
+
[vars$P.labelFontSize]: refs.labelFontSize,
|
15899
|
+
[vars$P.labelFontWeight]: refs.labelFontWeight,
|
15900
|
+
[vars$P.labelTextColor]: refs.labelTextColor,
|
15901
|
+
[vars$P.labelRequiredIndicator]: refs.requiredIndicator,
|
15902
|
+
[vars$P.errorMessageTextColor]: refs.errorMessageTextColor,
|
15903
|
+
[vars$P.inputValueTextColor]: refs.valueTextColor,
|
15904
|
+
[vars$P.inputPlaceholderColor]: refs.placeholderTextColor,
|
15905
|
+
[vars$P.inputBorderWidth]: refs.borderWidth,
|
15906
|
+
[vars$P.inputBorderStyle]: refs.borderStyle,
|
15907
|
+
[vars$P.inputBorderColor]: refs.borderColor,
|
15908
|
+
[vars$P.inputBorderRadius]: refs.borderRadius,
|
15909
|
+
[vars$P.inputOutlineWidth]: refs.outlineWidth,
|
15910
|
+
[vars$P.inputOutlineStyle]: refs.outlineStyle,
|
15911
|
+
[vars$P.inputOutlineColor]: refs.outlineColor,
|
15912
|
+
[vars$P.inputOutlineOffset]: refs.outlineOffset,
|
15913
|
+
[vars$P.inputBackgroundColor]: refs.backgroundColor,
|
15914
|
+
[vars$P.inputHeight]: refs.inputHeight,
|
15915
|
+
[vars$P.inputHorizontalPadding]: refs.horizontalPadding,
|
15916
|
+
[vars$P.helperTextColor]: refs.helperTextColor,
|
15917
|
+
[vars$P.textAlign]: refs.textAlign,
|
15918
|
+
textAlign: {
|
15919
|
+
right: { [vars$P.inputTextAlign]: 'right' },
|
15920
|
+
left: { [vars$P.inputTextAlign]: 'left' },
|
15921
|
+
center: { [vars$P.inputTextAlign]: 'center' },
|
15922
|
+
},
|
15923
|
+
[vars$P.labelPosition]: refs.labelPosition,
|
15924
|
+
[vars$P.labelTopPosition]: refs.labelTopPosition,
|
15925
|
+
[vars$P.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
15926
|
+
[vars$P.inputTransformY]: refs.inputTransformY,
|
15927
|
+
[vars$P.inputTransition]: refs.inputTransition,
|
15928
|
+
[vars$P.marginInlineStart]: refs.marginInlineStart,
|
15929
|
+
[vars$P.placeholderOpacity]: refs.placeholderOpacity,
|
15930
|
+
[vars$P.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15931
|
+
[vars$P.valueInputHeight]: refs.valueInputHeight,
|
15932
|
+
[vars$P.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15933
|
+
[vars$P.inputIconOffset]: globalRefs$w.spacing.md,
|
15934
|
+
[vars$P.inputIconSize]: refs.inputIconSize,
|
15935
|
+
[vars$P.inputIconColor]: refs.placeholderTextColor,
|
15936
|
+
};
|
15937
|
+
|
15938
|
+
var textField$1 = /*#__PURE__*/Object.freeze({
|
15939
|
+
__proto__: null,
|
15940
|
+
default: textField,
|
15941
|
+
textField: textField,
|
15942
|
+
vars: vars$P
|
15943
|
+
});
|
15944
|
+
|
15945
|
+
const globalRefs$v = getThemeRefs(globals);
|
15946
|
+
const vars$O = PasswordClass.cssVarList;
|
15947
|
+
|
15948
|
+
const password = {
|
15692
15949
|
[vars$O.hostWidth]: refs.width,
|
15693
15950
|
[vars$O.hostMinWidth]: refs.minWidth,
|
15694
15951
|
[vars$O.hostDirection]: refs.direction,
|
@@ -15697,10 +15954,13 @@ const textField = {
|
|
15697
15954
|
[vars$O.labelFontSize]: refs.labelFontSize,
|
15698
15955
|
[vars$O.labelFontWeight]: refs.labelFontWeight,
|
15699
15956
|
[vars$O.labelTextColor]: refs.labelTextColor,
|
15700
|
-
[vars$O.labelRequiredIndicator]: refs.requiredIndicator,
|
15701
15957
|
[vars$O.errorMessageTextColor]: refs.errorMessageTextColor,
|
15958
|
+
[vars$O.inputHorizontalPadding]: refs.horizontalPadding,
|
15959
|
+
[vars$O.inputHeight]: refs.inputHeight,
|
15960
|
+
[vars$O.inputBackgroundColor]: refs.backgroundColor,
|
15961
|
+
[vars$O.labelRequiredIndicator]: refs.requiredIndicator,
|
15702
15962
|
[vars$O.inputValueTextColor]: refs.valueTextColor,
|
15703
|
-
[vars$O.
|
15963
|
+
[vars$O.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
15704
15964
|
[vars$O.inputBorderWidth]: refs.borderWidth,
|
15705
15965
|
[vars$O.inputBorderStyle]: refs.borderStyle,
|
15706
15966
|
[vars$O.inputBorderColor]: refs.borderColor,
|
@@ -15709,16 +15969,9 @@ const textField = {
|
|
15709
15969
|
[vars$O.inputOutlineStyle]: refs.outlineStyle,
|
15710
15970
|
[vars$O.inputOutlineColor]: refs.outlineColor,
|
15711
15971
|
[vars$O.inputOutlineOffset]: refs.outlineOffset,
|
15712
|
-
[vars$O.
|
15713
|
-
[vars$O.
|
15714
|
-
[vars$O.
|
15715
|
-
[vars$O.helperTextColor]: refs.helperTextColor,
|
15716
|
-
[vars$O.textAlign]: refs.textAlign,
|
15717
|
-
textAlign: {
|
15718
|
-
right: { [vars$O.inputTextAlign]: 'right' },
|
15719
|
-
left: { [vars$O.inputTextAlign]: 'left' },
|
15720
|
-
center: { [vars$O.inputTextAlign]: 'center' },
|
15721
|
-
},
|
15972
|
+
[vars$O.revealButtonOffset]: globalRefs$v.spacing.md,
|
15973
|
+
[vars$O.revealButtonSize]: refs.toggleButtonSize,
|
15974
|
+
[vars$O.revealButtonColor]: refs.placeholderTextColor,
|
15722
15975
|
[vars$O.labelPosition]: refs.labelPosition,
|
15723
15976
|
[vars$O.labelTopPosition]: refs.labelTopPosition,
|
15724
15977
|
[vars$O.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -15728,23 +15981,17 @@ const textField = {
|
|
15728
15981
|
[vars$O.placeholderOpacity]: refs.placeholderOpacity,
|
15729
15982
|
[vars$O.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15730
15983
|
[vars$O.valueInputHeight]: refs.valueInputHeight,
|
15731
|
-
[vars$O.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15732
|
-
[vars$O.inputIconOffset]: globalRefs$w.spacing.md,
|
15733
|
-
[vars$O.inputIconSize]: refs.inputIconSize,
|
15734
|
-
[vars$O.inputIconColor]: refs.placeholderTextColor,
|
15735
15984
|
};
|
15736
15985
|
|
15737
|
-
var
|
15986
|
+
var password$1 = /*#__PURE__*/Object.freeze({
|
15738
15987
|
__proto__: null,
|
15739
|
-
default:
|
15740
|
-
textField: textField,
|
15988
|
+
default: password,
|
15741
15989
|
vars: vars$O
|
15742
15990
|
});
|
15743
15991
|
|
15744
|
-
const
|
15745
|
-
const vars$N = PasswordClass.cssVarList;
|
15992
|
+
const vars$N = NumberFieldClass.cssVarList;
|
15746
15993
|
|
15747
|
-
const
|
15994
|
+
const numberField = {
|
15748
15995
|
[vars$N.hostWidth]: refs.width,
|
15749
15996
|
[vars$N.hostMinWidth]: refs.minWidth,
|
15750
15997
|
[vars$N.hostDirection]: refs.direction,
|
@@ -15754,12 +16001,8 @@ const password = {
|
|
15754
16001
|
[vars$N.labelFontWeight]: refs.labelFontWeight,
|
15755
16002
|
[vars$N.labelTextColor]: refs.labelTextColor,
|
15756
16003
|
[vars$N.errorMessageTextColor]: refs.errorMessageTextColor,
|
15757
|
-
[vars$N.inputHorizontalPadding]: refs.horizontalPadding,
|
15758
|
-
[vars$N.inputHeight]: refs.inputHeight,
|
15759
|
-
[vars$N.inputBackgroundColor]: refs.backgroundColor,
|
15760
|
-
[vars$N.labelRequiredIndicator]: refs.requiredIndicator,
|
15761
16004
|
[vars$N.inputValueTextColor]: refs.valueTextColor,
|
15762
|
-
[vars$N.
|
16005
|
+
[vars$N.inputPlaceholderColor]: refs.placeholderTextColor,
|
15763
16006
|
[vars$N.inputBorderWidth]: refs.borderWidth,
|
15764
16007
|
[vars$N.inputBorderStyle]: refs.borderStyle,
|
15765
16008
|
[vars$N.inputBorderColor]: refs.borderColor,
|
@@ -15768,9 +16011,10 @@ const password = {
|
|
15768
16011
|
[vars$N.inputOutlineStyle]: refs.outlineStyle,
|
15769
16012
|
[vars$N.inputOutlineColor]: refs.outlineColor,
|
15770
16013
|
[vars$N.inputOutlineOffset]: refs.outlineOffset,
|
15771
|
-
[vars$N.
|
15772
|
-
[vars$N.
|
15773
|
-
[vars$N.
|
16014
|
+
[vars$N.inputBackgroundColor]: refs.backgroundColor,
|
16015
|
+
[vars$N.labelRequiredIndicator]: refs.requiredIndicator,
|
16016
|
+
[vars$N.inputHorizontalPadding]: refs.horizontalPadding,
|
16017
|
+
[vars$N.inputHeight]: refs.inputHeight,
|
15774
16018
|
[vars$N.labelPosition]: refs.labelPosition,
|
15775
16019
|
[vars$N.labelTopPosition]: refs.labelTopPosition,
|
15776
16020
|
[vars$N.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -15780,17 +16024,18 @@ const password = {
|
|
15780
16024
|
[vars$N.placeholderOpacity]: refs.placeholderOpacity,
|
15781
16025
|
[vars$N.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15782
16026
|
[vars$N.valueInputHeight]: refs.valueInputHeight,
|
16027
|
+
[vars$N.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15783
16028
|
};
|
15784
16029
|
|
15785
|
-
var
|
16030
|
+
var numberField$1 = /*#__PURE__*/Object.freeze({
|
15786
16031
|
__proto__: null,
|
15787
|
-
default:
|
16032
|
+
default: numberField,
|
15788
16033
|
vars: vars$N
|
15789
16034
|
});
|
15790
16035
|
|
15791
|
-
const vars$M =
|
16036
|
+
const vars$M = EmailFieldClass.cssVarList;
|
15792
16037
|
|
15793
|
-
const
|
16038
|
+
const emailField = {
|
15794
16039
|
[vars$M.hostWidth]: refs.width,
|
15795
16040
|
[vars$M.hostMinWidth]: refs.minWidth,
|
15796
16041
|
[vars$M.hostDirection]: refs.direction,
|
@@ -15801,6 +16046,7 @@ const numberField = {
|
|
15801
16046
|
[vars$M.labelTextColor]: refs.labelTextColor,
|
15802
16047
|
[vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
|
15803
16048
|
[vars$M.inputValueTextColor]: refs.valueTextColor,
|
16049
|
+
[vars$M.labelRequiredIndicator]: refs.requiredIndicator,
|
15804
16050
|
[vars$M.inputPlaceholderColor]: refs.placeholderTextColor,
|
15805
16051
|
[vars$M.inputBorderWidth]: refs.borderWidth,
|
15806
16052
|
[vars$M.inputBorderStyle]: refs.borderStyle,
|
@@ -15811,7 +16057,6 @@ const numberField = {
|
|
15811
16057
|
[vars$M.inputOutlineColor]: refs.outlineColor,
|
15812
16058
|
[vars$M.inputOutlineOffset]: refs.outlineOffset,
|
15813
16059
|
[vars$M.inputBackgroundColor]: refs.backgroundColor,
|
15814
|
-
[vars$M.labelRequiredIndicator]: refs.requiredIndicator,
|
15815
16060
|
[vars$M.inputHorizontalPadding]: refs.horizontalPadding,
|
15816
16061
|
[vars$M.inputHeight]: refs.inputHeight,
|
15817
16062
|
[vars$M.labelPosition]: refs.labelPosition,
|
@@ -15826,197 +16071,153 @@ const numberField = {
|
|
15826
16071
|
[vars$M.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15827
16072
|
};
|
15828
16073
|
|
15829
|
-
var
|
16074
|
+
var emailField$1 = /*#__PURE__*/Object.freeze({
|
15830
16075
|
__proto__: null,
|
15831
|
-
default:
|
16076
|
+
default: emailField,
|
15832
16077
|
vars: vars$M
|
15833
16078
|
});
|
15834
16079
|
|
15835
|
-
const vars$L =
|
16080
|
+
const vars$L = TextAreaClass.cssVarList;
|
15836
16081
|
|
15837
|
-
const
|
16082
|
+
const textArea = {
|
15838
16083
|
[vars$L.hostWidth]: refs.width,
|
15839
16084
|
[vars$L.hostMinWidth]: refs.minWidth,
|
15840
16085
|
[vars$L.hostDirection]: refs.direction,
|
15841
16086
|
[vars$L.fontSize]: refs.fontSize,
|
15842
16087
|
[vars$L.fontFamily]: refs.fontFamily,
|
15843
|
-
[vars$L.labelFontSize]: refs.labelFontSize,
|
15844
|
-
[vars$L.labelFontWeight]: refs.labelFontWeight,
|
15845
16088
|
[vars$L.labelTextColor]: refs.labelTextColor,
|
16089
|
+
[vars$L.labelRequiredIndicator]: refs.requiredIndicator,
|
15846
16090
|
[vars$L.errorMessageTextColor]: refs.errorMessageTextColor,
|
16091
|
+
[vars$L.inputBackgroundColor]: refs.backgroundColor,
|
15847
16092
|
[vars$L.inputValueTextColor]: refs.valueTextColor,
|
15848
|
-
[vars$L.
|
15849
|
-
[vars$L.
|
16093
|
+
[vars$L.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16094
|
+
[vars$L.inputBorderRadius]: refs.borderRadius,
|
15850
16095
|
[vars$L.inputBorderWidth]: refs.borderWidth,
|
15851
16096
|
[vars$L.inputBorderStyle]: refs.borderStyle,
|
15852
16097
|
[vars$L.inputBorderColor]: refs.borderColor,
|
15853
|
-
[vars$L.inputBorderRadius]: refs.borderRadius,
|
15854
16098
|
[vars$L.inputOutlineWidth]: refs.outlineWidth,
|
15855
16099
|
[vars$L.inputOutlineStyle]: refs.outlineStyle,
|
15856
16100
|
[vars$L.inputOutlineColor]: refs.outlineColor,
|
15857
16101
|
[vars$L.inputOutlineOffset]: refs.outlineOffset,
|
15858
|
-
[vars$L.
|
15859
|
-
[vars$L.
|
15860
|
-
|
15861
|
-
|
15862
|
-
|
15863
|
-
|
15864
|
-
|
15865
|
-
|
15866
|
-
|
15867
|
-
|
15868
|
-
|
15869
|
-
[vars$L.valueInputHeight]: refs.valueInputHeight,
|
15870
|
-
[vars$L.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16102
|
+
[vars$L.inputResizeType]: 'vertical',
|
16103
|
+
[vars$L.inputMinHeight]: '5em',
|
16104
|
+
textAlign: {
|
16105
|
+
right: { [vars$L.inputTextAlign]: 'right' },
|
16106
|
+
left: { [vars$L.inputTextAlign]: 'left' },
|
16107
|
+
center: { [vars$L.inputTextAlign]: 'center' },
|
16108
|
+
},
|
16109
|
+
|
16110
|
+
_readonly: {
|
16111
|
+
[vars$L.inputResizeType]: 'none',
|
16112
|
+
},
|
15871
16113
|
};
|
15872
16114
|
|
15873
|
-
var
|
16115
|
+
var textArea$1 = /*#__PURE__*/Object.freeze({
|
15874
16116
|
__proto__: null,
|
15875
|
-
default:
|
16117
|
+
default: textArea,
|
15876
16118
|
vars: vars$L
|
15877
16119
|
});
|
15878
16120
|
|
15879
|
-
const vars$K =
|
16121
|
+
const vars$K = CheckboxClass.cssVarList;
|
16122
|
+
const checkboxSize = '1.35em';
|
15880
16123
|
|
15881
|
-
const
|
16124
|
+
const checkbox = {
|
15882
16125
|
[vars$K.hostWidth]: refs.width,
|
15883
|
-
[vars$K.hostMinWidth]: refs.minWidth,
|
15884
16126
|
[vars$K.hostDirection]: refs.direction,
|
15885
16127
|
[vars$K.fontSize]: refs.fontSize,
|
15886
16128
|
[vars$K.fontFamily]: refs.fontFamily,
|
15887
16129
|
[vars$K.labelTextColor]: refs.labelTextColor,
|
15888
16130
|
[vars$K.labelRequiredIndicator]: refs.requiredIndicator,
|
16131
|
+
[vars$K.labelFontWeight]: '400',
|
16132
|
+
[vars$K.labelLineHeight]: checkboxSize,
|
16133
|
+
[vars$K.labelSpacing]: '1em',
|
15889
16134
|
[vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
|
15890
|
-
[vars$K.
|
15891
|
-
[vars$K.
|
15892
|
-
[vars$K.
|
16135
|
+
[vars$K.inputOutlineWidth]: refs.outlineWidth,
|
16136
|
+
[vars$K.inputOutlineOffset]: refs.outlineOffset,
|
16137
|
+
[vars$K.inputOutlineColor]: refs.outlineColor,
|
16138
|
+
[vars$K.inputOutlineStyle]: refs.outlineStyle,
|
15893
16139
|
[vars$K.inputBorderRadius]: refs.borderRadius,
|
16140
|
+
[vars$K.inputBorderColor]: refs.borderColor,
|
15894
16141
|
[vars$K.inputBorderWidth]: refs.borderWidth,
|
15895
16142
|
[vars$K.inputBorderStyle]: refs.borderStyle,
|
15896
|
-
[vars$K.
|
15897
|
-
[vars$K.
|
15898
|
-
[vars$K.
|
15899
|
-
[vars$K.inputOutlineColor]: refs.outlineColor,
|
15900
|
-
[vars$K.inputOutlineOffset]: refs.outlineOffset,
|
15901
|
-
[vars$K.inputResizeType]: 'vertical',
|
15902
|
-
[vars$K.inputMinHeight]: '5em',
|
15903
|
-
textAlign: {
|
15904
|
-
right: { [vars$K.inputTextAlign]: 'right' },
|
15905
|
-
left: { [vars$K.inputTextAlign]: 'left' },
|
15906
|
-
center: { [vars$K.inputTextAlign]: 'center' },
|
15907
|
-
},
|
15908
|
-
|
15909
|
-
_readonly: {
|
15910
|
-
[vars$K.inputResizeType]: 'none',
|
15911
|
-
},
|
16143
|
+
[vars$K.inputBackgroundColor]: refs.backgroundColor,
|
16144
|
+
[vars$K.inputSize]: checkboxSize,
|
16145
|
+
[vars$K.inputValueTextColor]: refs.valueTextColor,
|
15912
16146
|
};
|
15913
16147
|
|
15914
|
-
var
|
16148
|
+
var checkbox$1 = /*#__PURE__*/Object.freeze({
|
15915
16149
|
__proto__: null,
|
15916
|
-
default:
|
16150
|
+
default: checkbox,
|
15917
16151
|
vars: vars$K
|
15918
16152
|
});
|
15919
16153
|
|
15920
|
-
const
|
15921
|
-
const
|
16154
|
+
const knobMargin = '2px';
|
16155
|
+
const checkboxHeight = '1.25em';
|
15922
16156
|
|
15923
|
-
const
|
16157
|
+
const globalRefs$u = getThemeRefs(globals);
|
16158
|
+
const vars$J = SwitchToggleClass.cssVarList;
|
16159
|
+
|
16160
|
+
const switchToggle = {
|
15924
16161
|
[vars$J.hostWidth]: refs.width,
|
15925
16162
|
[vars$J.hostDirection]: refs.direction,
|
15926
16163
|
[vars$J.fontSize]: refs.fontSize,
|
15927
16164
|
[vars$J.fontFamily]: refs.fontFamily,
|
15928
|
-
|
15929
|
-
[vars$J.labelRequiredIndicator]: refs.requiredIndicator,
|
15930
|
-
[vars$J.labelFontWeight]: '400',
|
15931
|
-
[vars$J.labelLineHeight]: checkboxSize,
|
15932
|
-
[vars$J.labelSpacing]: '1em',
|
15933
|
-
[vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
|
16165
|
+
|
15934
16166
|
[vars$J.inputOutlineWidth]: refs.outlineWidth,
|
15935
16167
|
[vars$J.inputOutlineOffset]: refs.outlineOffset,
|
15936
16168
|
[vars$J.inputOutlineColor]: refs.outlineColor,
|
15937
16169
|
[vars$J.inputOutlineStyle]: refs.outlineStyle,
|
15938
|
-
[vars$J.inputBorderRadius]: refs.borderRadius,
|
15939
|
-
[vars$J.inputBorderColor]: refs.borderColor,
|
15940
|
-
[vars$J.inputBorderWidth]: refs.borderWidth,
|
15941
|
-
[vars$J.inputBorderStyle]: refs.borderStyle,
|
15942
|
-
[vars$J.inputBackgroundColor]: refs.backgroundColor,
|
15943
|
-
[vars$J.inputSize]: checkboxSize,
|
15944
|
-
[vars$J.inputValueTextColor]: refs.valueTextColor,
|
15945
|
-
};
|
15946
16170
|
|
15947
|
-
|
15948
|
-
|
15949
|
-
|
15950
|
-
vars:
|
15951
|
-
|
15952
|
-
|
15953
|
-
|
15954
|
-
|
16171
|
+
[vars$J.trackBorderStyle]: refs.borderStyle,
|
16172
|
+
[vars$J.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
|
16173
|
+
[vars$J.trackBorderColor]: refs.borderColor,
|
16174
|
+
[vars$J.trackBackgroundColor]: refs.backgroundColor,
|
16175
|
+
[vars$J.trackBorderRadius]: globalRefs$u.radius.md,
|
16176
|
+
[vars$J.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
|
16177
|
+
[vars$J.trackHeight]: checkboxHeight,
|
16178
|
+
|
16179
|
+
[vars$J.knobSize]: `calc(1em - ${knobMargin})`,
|
16180
|
+
[vars$J.knobRadius]: '50%',
|
16181
|
+
[vars$J.knobTopOffset]: '1px',
|
16182
|
+
[vars$J.knobLeftOffset]: knobMargin,
|
16183
|
+
[vars$J.knobColor]: refs.labelTextColor,
|
16184
|
+
[vars$J.knobTransitionDuration]: '0.3s',
|
15955
16185
|
|
15956
|
-
|
15957
|
-
|
15958
|
-
|
15959
|
-
|
15960
|
-
[vars$
|
15961
|
-
[vars$
|
15962
|
-
[vars$I.fontSize]: refs.fontSize,
|
15963
|
-
[vars$I.fontFamily]: refs.fontFamily,
|
15964
|
-
|
15965
|
-
[vars$I.inputOutlineWidth]: refs.outlineWidth,
|
15966
|
-
[vars$I.inputOutlineOffset]: refs.outlineOffset,
|
15967
|
-
[vars$I.inputOutlineColor]: refs.outlineColor,
|
15968
|
-
[vars$I.inputOutlineStyle]: refs.outlineStyle,
|
15969
|
-
|
15970
|
-
[vars$I.trackBorderStyle]: refs.borderStyle,
|
15971
|
-
[vars$I.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
|
15972
|
-
[vars$I.trackBorderColor]: refs.borderColor,
|
15973
|
-
[vars$I.trackBackgroundColor]: refs.backgroundColor,
|
15974
|
-
[vars$I.trackBorderRadius]: globalRefs$u.radius.md,
|
15975
|
-
[vars$I.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
|
15976
|
-
[vars$I.trackHeight]: checkboxHeight,
|
15977
|
-
|
15978
|
-
[vars$I.knobSize]: `calc(1em - ${knobMargin})`,
|
15979
|
-
[vars$I.knobRadius]: '50%',
|
15980
|
-
[vars$I.knobTopOffset]: '1px',
|
15981
|
-
[vars$I.knobLeftOffset]: knobMargin,
|
15982
|
-
[vars$I.knobColor]: refs.labelTextColor,
|
15983
|
-
[vars$I.knobTransitionDuration]: '0.3s',
|
15984
|
-
|
15985
|
-
[vars$I.labelTextColor]: refs.labelTextColor,
|
15986
|
-
[vars$I.labelFontWeight]: '400',
|
15987
|
-
[vars$I.labelLineHeight]: '1.35em',
|
15988
|
-
[vars$I.labelSpacing]: '1em',
|
15989
|
-
[vars$I.labelRequiredIndicator]: refs.requiredIndicator,
|
15990
|
-
[vars$I.errorMessageTextColor]: refs.errorMessageTextColor,
|
16186
|
+
[vars$J.labelTextColor]: refs.labelTextColor,
|
16187
|
+
[vars$J.labelFontWeight]: '400',
|
16188
|
+
[vars$J.labelLineHeight]: '1.35em',
|
16189
|
+
[vars$J.labelSpacing]: '1em',
|
16190
|
+
[vars$J.labelRequiredIndicator]: refs.requiredIndicator,
|
16191
|
+
[vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
|
15991
16192
|
|
15992
16193
|
_checked: {
|
15993
|
-
[vars$
|
15994
|
-
[vars$
|
15995
|
-
[vars$
|
15996
|
-
[vars$
|
16194
|
+
[vars$J.trackBorderColor]: refs.borderColor,
|
16195
|
+
[vars$J.knobLeftOffset]: `calc(100% - var(${vars$J.knobSize}) - ${knobMargin})`,
|
16196
|
+
[vars$J.knobColor]: refs.valueTextColor,
|
16197
|
+
[vars$J.knobTextColor]: refs.valueTextColor,
|
15997
16198
|
},
|
15998
16199
|
|
15999
16200
|
_disabled: {
|
16000
|
-
[vars$
|
16001
|
-
[vars$
|
16002
|
-
[vars$
|
16003
|
-
[vars$
|
16201
|
+
[vars$J.knobColor]: globalRefs$u.colors.surface.light,
|
16202
|
+
[vars$J.trackBorderColor]: globalRefs$u.colors.surface.light,
|
16203
|
+
[vars$J.trackBackgroundColor]: globalRefs$u.colors.surface.main,
|
16204
|
+
[vars$J.labelTextColor]: refs.labelTextColor,
|
16004
16205
|
_checked: {
|
16005
|
-
[vars$
|
16006
|
-
[vars$
|
16206
|
+
[vars$J.knobColor]: globalRefs$u.colors.surface.light,
|
16207
|
+
[vars$J.trackBackgroundColor]: globalRefs$u.colors.surface.main,
|
16007
16208
|
},
|
16008
16209
|
},
|
16009
16210
|
|
16010
16211
|
_invalid: {
|
16011
|
-
[vars$
|
16012
|
-
[vars$
|
16212
|
+
[vars$J.trackBorderColor]: globalRefs$u.colors.error.main,
|
16213
|
+
[vars$J.knobColor]: globalRefs$u.colors.error.main,
|
16013
16214
|
},
|
16014
16215
|
};
|
16015
16216
|
|
16016
16217
|
var switchToggle$1 = /*#__PURE__*/Object.freeze({
|
16017
16218
|
__proto__: null,
|
16018
16219
|
default: switchToggle,
|
16019
|
-
vars: vars$
|
16220
|
+
vars: vars$J
|
16020
16221
|
});
|
16021
16222
|
|
16022
16223
|
const globalRefs$t = getThemeRefs(globals);
|
@@ -16041,7 +16242,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
|
|
16041
16242
|
horizontalAlignment,
|
16042
16243
|
shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
|
16043
16244
|
},
|
16044
|
-
componentName$
|
16245
|
+
componentName$Z
|
16045
16246
|
);
|
16046
16247
|
|
16047
16248
|
const { shadowColor: shadowColor$3 } = helperRefs$3;
|
@@ -16128,7 +16329,7 @@ const container = {
|
|
16128
16329
|
},
|
16129
16330
|
};
|
16130
16331
|
|
16131
|
-
const vars$
|
16332
|
+
const vars$I = {
|
16132
16333
|
...compVars$5,
|
16133
16334
|
...helperVars$3,
|
16134
16335
|
};
|
@@ -16136,168 +16337,168 @@ const vars$H = {
|
|
16136
16337
|
var container$1 = /*#__PURE__*/Object.freeze({
|
16137
16338
|
__proto__: null,
|
16138
16339
|
default: container,
|
16139
|
-
vars: vars$
|
16340
|
+
vars: vars$I
|
16140
16341
|
});
|
16141
16342
|
|
16142
|
-
const vars$
|
16343
|
+
const vars$H = LogoClass.cssVarList;
|
16143
16344
|
|
16144
16345
|
const logo$2 = {
|
16145
|
-
[vars$
|
16346
|
+
[vars$H.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
|
16146
16347
|
};
|
16147
16348
|
|
16148
16349
|
var logo$3 = /*#__PURE__*/Object.freeze({
|
16149
16350
|
__proto__: null,
|
16150
16351
|
default: logo$2,
|
16151
|
-
vars: vars$
|
16352
|
+
vars: vars$H
|
16152
16353
|
});
|
16153
16354
|
|
16154
|
-
const vars$
|
16355
|
+
const vars$G = TotpImageClass.cssVarList;
|
16155
16356
|
|
16156
16357
|
const logo$1 = {
|
16157
|
-
[vars$
|
16358
|
+
[vars$G.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
|
16158
16359
|
};
|
16159
16360
|
|
16160
16361
|
var totpImage = /*#__PURE__*/Object.freeze({
|
16161
16362
|
__proto__: null,
|
16162
16363
|
default: logo$1,
|
16163
|
-
vars: vars$
|
16364
|
+
vars: vars$G
|
16164
16365
|
});
|
16165
16366
|
|
16166
|
-
const vars$
|
16367
|
+
const vars$F = NotpImageClass.cssVarList;
|
16167
16368
|
|
16168
16369
|
const logo = {
|
16169
|
-
[vars$
|
16370
|
+
[vars$F.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
|
16170
16371
|
};
|
16171
16372
|
|
16172
16373
|
var notpImage = /*#__PURE__*/Object.freeze({
|
16173
16374
|
__proto__: null,
|
16174
16375
|
default: logo,
|
16175
|
-
vars: vars$
|
16376
|
+
vars: vars$F
|
16176
16377
|
});
|
16177
16378
|
|
16178
16379
|
const globalRefs$s = getThemeRefs(globals);
|
16179
|
-
const vars$
|
16380
|
+
const vars$E = TextClass.cssVarList;
|
16180
16381
|
|
16181
16382
|
const text = {
|
16182
|
-
[vars$
|
16183
|
-
[vars$
|
16184
|
-
[vars$
|
16185
|
-
[vars$
|
16383
|
+
[vars$E.hostDirection]: globalRefs$s.direction,
|
16384
|
+
[vars$E.textLineHeight]: '1.35em',
|
16385
|
+
[vars$E.textAlign]: 'left',
|
16386
|
+
[vars$E.textColor]: globalRefs$s.colors.surface.dark,
|
16186
16387
|
|
16187
16388
|
variant: {
|
16188
16389
|
h1: {
|
16189
|
-
[vars$
|
16190
|
-
[vars$
|
16191
|
-
[vars$
|
16390
|
+
[vars$E.fontSize]: globalRefs$s.typography.h1.size,
|
16391
|
+
[vars$E.fontWeight]: globalRefs$s.typography.h1.weight,
|
16392
|
+
[vars$E.fontFamily]: globalRefs$s.typography.h1.font,
|
16192
16393
|
},
|
16193
16394
|
h2: {
|
16194
|
-
[vars$
|
16195
|
-
[vars$
|
16196
|
-
[vars$
|
16395
|
+
[vars$E.fontSize]: globalRefs$s.typography.h2.size,
|
16396
|
+
[vars$E.fontWeight]: globalRefs$s.typography.h2.weight,
|
16397
|
+
[vars$E.fontFamily]: globalRefs$s.typography.h2.font,
|
16197
16398
|
},
|
16198
16399
|
h3: {
|
16199
|
-
[vars$
|
16200
|
-
[vars$
|
16201
|
-
[vars$
|
16400
|
+
[vars$E.fontSize]: globalRefs$s.typography.h3.size,
|
16401
|
+
[vars$E.fontWeight]: globalRefs$s.typography.h3.weight,
|
16402
|
+
[vars$E.fontFamily]: globalRefs$s.typography.h3.font,
|
16202
16403
|
},
|
16203
16404
|
subtitle1: {
|
16204
|
-
[vars$
|
16205
|
-
[vars$
|
16206
|
-
[vars$
|
16405
|
+
[vars$E.fontSize]: globalRefs$s.typography.subtitle1.size,
|
16406
|
+
[vars$E.fontWeight]: globalRefs$s.typography.subtitle1.weight,
|
16407
|
+
[vars$E.fontFamily]: globalRefs$s.typography.subtitle1.font,
|
16207
16408
|
},
|
16208
16409
|
subtitle2: {
|
16209
|
-
[vars$
|
16210
|
-
[vars$
|
16211
|
-
[vars$
|
16410
|
+
[vars$E.fontSize]: globalRefs$s.typography.subtitle2.size,
|
16411
|
+
[vars$E.fontWeight]: globalRefs$s.typography.subtitle2.weight,
|
16412
|
+
[vars$E.fontFamily]: globalRefs$s.typography.subtitle2.font,
|
16212
16413
|
},
|
16213
16414
|
body1: {
|
16214
|
-
[vars$
|
16215
|
-
[vars$
|
16216
|
-
[vars$
|
16415
|
+
[vars$E.fontSize]: globalRefs$s.typography.body1.size,
|
16416
|
+
[vars$E.fontWeight]: globalRefs$s.typography.body1.weight,
|
16417
|
+
[vars$E.fontFamily]: globalRefs$s.typography.body1.font,
|
16217
16418
|
},
|
16218
16419
|
body2: {
|
16219
|
-
[vars$
|
16220
|
-
[vars$
|
16221
|
-
[vars$
|
16420
|
+
[vars$E.fontSize]: globalRefs$s.typography.body2.size,
|
16421
|
+
[vars$E.fontWeight]: globalRefs$s.typography.body2.weight,
|
16422
|
+
[vars$E.fontFamily]: globalRefs$s.typography.body2.font,
|
16222
16423
|
},
|
16223
16424
|
},
|
16224
16425
|
|
16225
16426
|
mode: {
|
16226
16427
|
primary: {
|
16227
|
-
[vars$
|
16428
|
+
[vars$E.textColor]: globalRefs$s.colors.surface.contrast,
|
16228
16429
|
},
|
16229
16430
|
secondary: {
|
16230
|
-
[vars$
|
16431
|
+
[vars$E.textColor]: globalRefs$s.colors.surface.dark,
|
16231
16432
|
},
|
16232
16433
|
error: {
|
16233
|
-
[vars$
|
16434
|
+
[vars$E.textColor]: globalRefs$s.colors.error.main,
|
16234
16435
|
},
|
16235
16436
|
success: {
|
16236
|
-
[vars$
|
16437
|
+
[vars$E.textColor]: globalRefs$s.colors.success.main,
|
16237
16438
|
},
|
16238
16439
|
},
|
16239
16440
|
|
16240
16441
|
textAlign: {
|
16241
|
-
right: { [vars$
|
16242
|
-
left: { [vars$
|
16243
|
-
center: { [vars$
|
16442
|
+
right: { [vars$E.textAlign]: 'right' },
|
16443
|
+
left: { [vars$E.textAlign]: 'left' },
|
16444
|
+
center: { [vars$E.textAlign]: 'center' },
|
16244
16445
|
},
|
16245
16446
|
|
16246
16447
|
_fullWidth: {
|
16247
|
-
[vars$
|
16448
|
+
[vars$E.hostWidth]: '100%',
|
16248
16449
|
},
|
16249
16450
|
|
16250
16451
|
_italic: {
|
16251
|
-
[vars$
|
16452
|
+
[vars$E.fontStyle]: 'italic',
|
16252
16453
|
},
|
16253
16454
|
|
16254
16455
|
_uppercase: {
|
16255
|
-
[vars$
|
16456
|
+
[vars$E.textTransform]: 'uppercase',
|
16256
16457
|
},
|
16257
16458
|
|
16258
16459
|
_lowercase: {
|
16259
|
-
[vars$
|
16460
|
+
[vars$E.textTransform]: 'lowercase',
|
16260
16461
|
},
|
16261
16462
|
};
|
16262
16463
|
|
16263
16464
|
var text$1 = /*#__PURE__*/Object.freeze({
|
16264
16465
|
__proto__: null,
|
16265
16466
|
default: text,
|
16266
|
-
vars: vars$
|
16467
|
+
vars: vars$E
|
16267
16468
|
});
|
16268
16469
|
|
16269
16470
|
const globalRefs$r = getThemeRefs(globals);
|
16270
|
-
const vars$
|
16471
|
+
const vars$D = LinkClass.cssVarList;
|
16271
16472
|
|
16272
16473
|
const link = {
|
16273
|
-
[vars$
|
16274
|
-
[vars$
|
16474
|
+
[vars$D.hostDirection]: globalRefs$r.direction,
|
16475
|
+
[vars$D.cursor]: 'pointer',
|
16275
16476
|
|
16276
|
-
[vars$
|
16477
|
+
[vars$D.textColor]: globalRefs$r.colors.primary.main,
|
16277
16478
|
|
16278
16479
|
textAlign: {
|
16279
|
-
right: { [vars$
|
16280
|
-
left: { [vars$
|
16281
|
-
center: { [vars$
|
16480
|
+
right: { [vars$D.textAlign]: 'right' },
|
16481
|
+
left: { [vars$D.textAlign]: 'left' },
|
16482
|
+
center: { [vars$D.textAlign]: 'center' },
|
16282
16483
|
},
|
16283
16484
|
|
16284
16485
|
_fullWidth: {
|
16285
|
-
[vars$
|
16486
|
+
[vars$D.hostWidth]: '100%',
|
16286
16487
|
},
|
16287
16488
|
|
16288
16489
|
_hover: {
|
16289
|
-
[vars$
|
16490
|
+
[vars$D.textDecoration]: 'underline',
|
16290
16491
|
},
|
16291
16492
|
|
16292
16493
|
mode: {
|
16293
16494
|
secondary: {
|
16294
|
-
[vars$
|
16495
|
+
[vars$D.textColor]: globalRefs$r.colors.secondary.main,
|
16295
16496
|
},
|
16296
16497
|
error: {
|
16297
|
-
[vars$
|
16498
|
+
[vars$D.textColor]: globalRefs$r.colors.error.main,
|
16298
16499
|
},
|
16299
16500
|
success: {
|
16300
|
-
[vars$
|
16501
|
+
[vars$D.textColor]: globalRefs$r.colors.success.main,
|
16301
16502
|
},
|
16302
16503
|
},
|
16303
16504
|
};
|
@@ -16305,37 +16506,37 @@ const link = {
|
|
16305
16506
|
var link$1 = /*#__PURE__*/Object.freeze({
|
16306
16507
|
__proto__: null,
|
16307
16508
|
default: link,
|
16308
|
-
vars: vars$
|
16509
|
+
vars: vars$D
|
16309
16510
|
});
|
16310
16511
|
|
16311
16512
|
const globalRefs$q = getThemeRefs(globals);
|
16312
|
-
const vars$
|
16513
|
+
const vars$C = EnrichedTextClass.cssVarList;
|
16313
16514
|
|
16314
16515
|
const enrichedText = {
|
16315
|
-
[vars$
|
16316
|
-
[vars$
|
16516
|
+
[vars$C.hostDirection]: globalRefs$q.direction,
|
16517
|
+
[vars$C.hostWidth]: useVar(vars$E.hostWidth),
|
16317
16518
|
|
16318
|
-
[vars$
|
16319
|
-
[vars$
|
16320
|
-
[vars$
|
16519
|
+
[vars$C.textLineHeight]: useVar(vars$E.textLineHeight),
|
16520
|
+
[vars$C.textColor]: useVar(vars$E.textColor),
|
16521
|
+
[vars$C.textAlign]: useVar(vars$E.textAlign),
|
16321
16522
|
|
16322
|
-
[vars$
|
16323
|
-
[vars$
|
16324
|
-
[vars$
|
16523
|
+
[vars$C.fontSize]: useVar(vars$E.fontSize),
|
16524
|
+
[vars$C.fontWeight]: useVar(vars$E.fontWeight),
|
16525
|
+
[vars$C.fontFamily]: useVar(vars$E.fontFamily),
|
16325
16526
|
|
16326
|
-
[vars$
|
16327
|
-
[vars$
|
16328
|
-
[vars$
|
16527
|
+
[vars$C.linkColor]: useVar(vars$D.textColor),
|
16528
|
+
[vars$C.linkTextDecoration]: 'none',
|
16529
|
+
[vars$C.linkHoverTextDecoration]: 'underline',
|
16329
16530
|
|
16330
|
-
[vars$
|
16331
|
-
[vars$
|
16332
|
-
[vars$
|
16531
|
+
[vars$C.fontWeightBold]: '900',
|
16532
|
+
[vars$C.minWidth]: '0.25em',
|
16533
|
+
[vars$C.minHeight]: '1.35em',
|
16333
16534
|
|
16334
|
-
[vars$
|
16535
|
+
[vars$C.hostDisplay]: 'inline-block',
|
16335
16536
|
|
16336
16537
|
_empty: {
|
16337
16538
|
_hideWhenEmpty: {
|
16338
|
-
[vars$
|
16539
|
+
[vars$C.hostDisplay]: 'none',
|
16339
16540
|
},
|
16340
16541
|
},
|
16341
16542
|
};
|
@@ -16343,7 +16544,7 @@ const enrichedText = {
|
|
16343
16544
|
var enrichedText$1 = /*#__PURE__*/Object.freeze({
|
16344
16545
|
__proto__: null,
|
16345
16546
|
default: enrichedText,
|
16346
|
-
vars: vars$
|
16547
|
+
vars: vars$C
|
16347
16548
|
});
|
16348
16549
|
|
16349
16550
|
const globalRefs$p = getThemeRefs(globals);
|
@@ -16354,7 +16555,7 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
|
|
16354
16555
|
thickness: '2px',
|
16355
16556
|
spacing: '10px',
|
16356
16557
|
},
|
16357
|
-
componentName$
|
16558
|
+
componentName$T
|
16358
16559
|
);
|
16359
16560
|
|
16360
16561
|
const divider = {
|
@@ -16385,7 +16586,7 @@ const divider = {
|
|
16385
16586
|
},
|
16386
16587
|
};
|
16387
16588
|
|
16388
|
-
const vars$
|
16589
|
+
const vars$B = {
|
16389
16590
|
...compVars$4,
|
16390
16591
|
...helperVars$2,
|
16391
16592
|
};
|
@@ -16393,93 +16594,93 @@ const vars$A = {
|
|
16393
16594
|
var divider$1 = /*#__PURE__*/Object.freeze({
|
16394
16595
|
__proto__: null,
|
16395
16596
|
default: divider,
|
16396
|
-
vars: vars$
|
16597
|
+
vars: vars$B
|
16397
16598
|
});
|
16398
16599
|
|
16399
|
-
const vars$
|
16600
|
+
const vars$A = PasscodeClass.cssVarList;
|
16400
16601
|
|
16401
16602
|
const passcode = {
|
16402
|
-
[vars$
|
16403
|
-
[vars$
|
16404
|
-
[vars$
|
16405
|
-
[vars$
|
16406
|
-
[vars$
|
16407
|
-
[vars$
|
16408
|
-
[vars$
|
16409
|
-
[vars$
|
16410
|
-
[vars$
|
16411
|
-
[vars$
|
16412
|
-
[vars$
|
16413
|
-
[vars$
|
16414
|
-
[vars$
|
16415
|
-
[vars$
|
16416
|
-
[vars$
|
16603
|
+
[vars$A.hostDirection]: refs.direction,
|
16604
|
+
[vars$A.fontFamily]: refs.fontFamily,
|
16605
|
+
[vars$A.fontSize]: refs.fontSize,
|
16606
|
+
[vars$A.labelTextColor]: refs.labelTextColor,
|
16607
|
+
[vars$A.labelRequiredIndicator]: refs.requiredIndicator,
|
16608
|
+
[vars$A.errorMessageTextColor]: refs.errorMessageTextColor,
|
16609
|
+
[vars$A.digitValueTextColor]: refs.valueTextColor,
|
16610
|
+
[vars$A.digitPadding]: '0',
|
16611
|
+
[vars$A.digitTextAlign]: 'center',
|
16612
|
+
[vars$A.digitSpacing]: '4px',
|
16613
|
+
[vars$A.hostWidth]: refs.width,
|
16614
|
+
[vars$A.digitOutlineColor]: 'transparent',
|
16615
|
+
[vars$A.digitOutlineWidth]: refs.outlineWidth,
|
16616
|
+
[vars$A.focusedDigitFieldOutlineColor]: refs.outlineColor,
|
16617
|
+
[vars$A.digitSize]: refs.inputHeight,
|
16417
16618
|
|
16418
16619
|
size: {
|
16419
|
-
xs: { [vars$
|
16420
|
-
sm: { [vars$
|
16421
|
-
md: { [vars$
|
16422
|
-
lg: { [vars$
|
16620
|
+
xs: { [vars$A.spinnerSize]: '15px' },
|
16621
|
+
sm: { [vars$A.spinnerSize]: '20px' },
|
16622
|
+
md: { [vars$A.spinnerSize]: '20px' },
|
16623
|
+
lg: { [vars$A.spinnerSize]: '20px' },
|
16423
16624
|
},
|
16424
16625
|
|
16425
16626
|
_hideCursor: {
|
16426
|
-
[vars$
|
16627
|
+
[vars$A.digitCaretTextColor]: 'transparent',
|
16427
16628
|
},
|
16428
16629
|
|
16429
16630
|
_loading: {
|
16430
|
-
[vars$
|
16631
|
+
[vars$A.overlayOpacity]: refs.overlayOpacity,
|
16431
16632
|
},
|
16432
16633
|
};
|
16433
16634
|
|
16434
16635
|
var passcode$1 = /*#__PURE__*/Object.freeze({
|
16435
16636
|
__proto__: null,
|
16436
16637
|
default: passcode,
|
16437
|
-
vars: vars$
|
16638
|
+
vars: vars$A
|
16438
16639
|
});
|
16439
16640
|
|
16440
16641
|
const globalRefs$o = getThemeRefs(globals);
|
16441
|
-
const vars$
|
16642
|
+
const vars$z = LoaderLinearClass.cssVarList;
|
16442
16643
|
|
16443
16644
|
const loaderLinear = {
|
16444
|
-
[vars$
|
16445
|
-
[vars$
|
16645
|
+
[vars$z.hostDisplay]: 'inline-block',
|
16646
|
+
[vars$z.hostWidth]: '100%',
|
16446
16647
|
|
16447
|
-
[vars$
|
16448
|
-
[vars$
|
16648
|
+
[vars$z.barColor]: globalRefs$o.colors.surface.contrast,
|
16649
|
+
[vars$z.barWidth]: '20%',
|
16449
16650
|
|
16450
|
-
[vars$
|
16451
|
-
[vars$
|
16651
|
+
[vars$z.barBackgroundColor]: globalRefs$o.colors.surface.light,
|
16652
|
+
[vars$z.barBorderRadius]: '4px',
|
16452
16653
|
|
16453
|
-
[vars$
|
16454
|
-
[vars$
|
16455
|
-
[vars$
|
16456
|
-
[vars$
|
16654
|
+
[vars$z.animationDuration]: '2s',
|
16655
|
+
[vars$z.animationTimingFunction]: 'linear',
|
16656
|
+
[vars$z.animationIterationCount]: 'infinite',
|
16657
|
+
[vars$z.verticalPadding]: '0.25em',
|
16457
16658
|
|
16458
16659
|
size: {
|
16459
|
-
xs: { [vars$
|
16460
|
-
sm: { [vars$
|
16461
|
-
md: { [vars$
|
16462
|
-
lg: { [vars$
|
16660
|
+
xs: { [vars$z.barHeight]: '2px' },
|
16661
|
+
sm: { [vars$z.barHeight]: '4px' },
|
16662
|
+
md: { [vars$z.barHeight]: '6px' },
|
16663
|
+
lg: { [vars$z.barHeight]: '8px' },
|
16463
16664
|
},
|
16464
16665
|
|
16465
16666
|
mode: {
|
16466
16667
|
primary: {
|
16467
|
-
[vars$
|
16668
|
+
[vars$z.barColor]: globalRefs$o.colors.primary.main,
|
16468
16669
|
},
|
16469
16670
|
secondary: {
|
16470
|
-
[vars$
|
16671
|
+
[vars$z.barColor]: globalRefs$o.colors.secondary.main,
|
16471
16672
|
},
|
16472
16673
|
},
|
16473
16674
|
|
16474
16675
|
_hidden: {
|
16475
|
-
[vars$
|
16676
|
+
[vars$z.hostDisplay]: 'none',
|
16476
16677
|
},
|
16477
16678
|
};
|
16478
16679
|
|
16479
16680
|
var loaderLinear$1 = /*#__PURE__*/Object.freeze({
|
16480
16681
|
__proto__: null,
|
16481
16682
|
default: loaderLinear,
|
16482
|
-
vars: vars$
|
16683
|
+
vars: vars$z
|
16483
16684
|
});
|
16484
16685
|
|
16485
16686
|
const globalRefs$n = getThemeRefs(globals);
|
@@ -16497,7 +16698,7 @@ const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
|
|
16497
16698
|
},
|
16498
16699
|
},
|
16499
16700
|
},
|
16500
|
-
componentName$
|
16701
|
+
componentName$_
|
16501
16702
|
);
|
16502
16703
|
|
16503
16704
|
const loaderRadial = {
|
@@ -16526,7 +16727,7 @@ const loaderRadial = {
|
|
16526
16727
|
[compVars$3.hostDisplay]: 'none',
|
16527
16728
|
},
|
16528
16729
|
};
|
16529
|
-
const vars$
|
16730
|
+
const vars$y = {
|
16530
16731
|
...compVars$3,
|
16531
16732
|
...helperVars$1,
|
16532
16733
|
};
|
@@ -16534,93 +16735,134 @@ const vars$x = {
|
|
16534
16735
|
var loaderRadial$1 = /*#__PURE__*/Object.freeze({
|
16535
16736
|
__proto__: null,
|
16536
16737
|
default: loaderRadial,
|
16537
|
-
vars: vars$
|
16738
|
+
vars: vars$y
|
16538
16739
|
});
|
16539
16740
|
|
16540
16741
|
const globalRefs$m = getThemeRefs(globals);
|
16541
|
-
const vars$
|
16742
|
+
const vars$x = ComboBoxClass.cssVarList;
|
16542
16743
|
|
16543
16744
|
const comboBox = {
|
16544
|
-
[vars$
|
16545
|
-
[vars$
|
16546
|
-
[vars$
|
16547
|
-
[vars$
|
16548
|
-
[vars$
|
16549
|
-
[vars$
|
16550
|
-
[vars$
|
16551
|
-
[vars$
|
16552
|
-
[vars$
|
16553
|
-
[vars$
|
16554
|
-
[vars$
|
16555
|
-
[vars$
|
16556
|
-
[vars$
|
16557
|
-
[vars$
|
16558
|
-
[vars$
|
16559
|
-
[vars$
|
16560
|
-
[vars$
|
16561
|
-
[vars$
|
16562
|
-
[vars$
|
16563
|
-
[vars$
|
16564
|
-
[vars$
|
16565
|
-
[vars$
|
16566
|
-
[vars$
|
16567
|
-
[vars$
|
16568
|
-
[vars$
|
16569
|
-
[vars$
|
16570
|
-
[vars$
|
16571
|
-
[vars$
|
16572
|
-
[vars$
|
16573
|
-
[vars$
|
16574
|
-
[vars$
|
16575
|
-
[vars$
|
16576
|
-
[vars$
|
16577
|
-
[vars$
|
16578
|
-
[vars$
|
16579
|
-
[vars$
|
16580
|
-
[vars$
|
16581
|
-
[vars$
|
16745
|
+
[vars$x.hostWidth]: refs.width,
|
16746
|
+
[vars$x.hostDirection]: refs.direction,
|
16747
|
+
[vars$x.fontSize]: refs.fontSize,
|
16748
|
+
[vars$x.fontFamily]: refs.fontFamily,
|
16749
|
+
[vars$x.labelFontSize]: refs.labelFontSize,
|
16750
|
+
[vars$x.labelFontWeight]: refs.labelFontWeight,
|
16751
|
+
[vars$x.labelTextColor]: refs.labelTextColor,
|
16752
|
+
[vars$x.errorMessageTextColor]: refs.errorMessageTextColor,
|
16753
|
+
[vars$x.inputBorderColor]: refs.borderColor,
|
16754
|
+
[vars$x.inputBorderWidth]: refs.borderWidth,
|
16755
|
+
[vars$x.inputBorderStyle]: refs.borderStyle,
|
16756
|
+
[vars$x.inputBorderRadius]: refs.borderRadius,
|
16757
|
+
[vars$x.inputOutlineColor]: refs.outlineColor,
|
16758
|
+
[vars$x.inputOutlineOffset]: refs.outlineOffset,
|
16759
|
+
[vars$x.inputOutlineWidth]: refs.outlineWidth,
|
16760
|
+
[vars$x.inputOutlineStyle]: refs.outlineStyle,
|
16761
|
+
[vars$x.labelRequiredIndicator]: refs.requiredIndicator,
|
16762
|
+
[vars$x.inputValueTextColor]: refs.valueTextColor,
|
16763
|
+
[vars$x.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16764
|
+
[vars$x.inputBackgroundColor]: refs.backgroundColor,
|
16765
|
+
[vars$x.inputHorizontalPadding]: refs.horizontalPadding,
|
16766
|
+
[vars$x.inputHeight]: refs.inputHeight,
|
16767
|
+
[vars$x.inputDropdownButtonColor]: globalRefs$m.colors.surface.dark,
|
16768
|
+
[vars$x.inputDropdownButtonCursor]: 'pointer',
|
16769
|
+
[vars$x.inputDropdownButtonSize]: refs.toggleButtonSize,
|
16770
|
+
[vars$x.inputDropdownButtonOffset]: globalRefs$m.spacing.xs,
|
16771
|
+
[vars$x.overlayItemPaddingInlineStart]: globalRefs$m.spacing.xs,
|
16772
|
+
[vars$x.overlayItemPaddingInlineEnd]: globalRefs$m.spacing.lg,
|
16773
|
+
[vars$x.labelPosition]: refs.labelPosition,
|
16774
|
+
[vars$x.labelTopPosition]: refs.labelTopPosition,
|
16775
|
+
[vars$x.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16776
|
+
[vars$x.inputTransformY]: refs.inputTransformY,
|
16777
|
+
[vars$x.inputTransition]: refs.inputTransition,
|
16778
|
+
[vars$x.marginInlineStart]: refs.marginInlineStart,
|
16779
|
+
[vars$x.placeholderOpacity]: refs.placeholderOpacity,
|
16780
|
+
[vars$x.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
16781
|
+
[vars$x.valueInputHeight]: refs.valueInputHeight,
|
16782
|
+
[vars$x.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16582
16783
|
|
16583
16784
|
_readonly: {
|
16584
|
-
[vars$
|
16785
|
+
[vars$x.inputDropdownButtonCursor]: 'default',
|
16585
16786
|
},
|
16586
16787
|
|
16587
16788
|
// Overlay theme exposed via the component:
|
16588
|
-
[vars$
|
16589
|
-
[vars$
|
16590
|
-
[vars$
|
16591
|
-
[vars$
|
16592
|
-
[vars$
|
16593
|
-
[vars$
|
16789
|
+
[vars$x.overlayFontSize]: refs.fontSize,
|
16790
|
+
[vars$x.overlayFontFamily]: refs.fontFamily,
|
16791
|
+
[vars$x.overlayCursor]: 'pointer',
|
16792
|
+
[vars$x.overlayItemBoxShadow]: 'none',
|
16793
|
+
[vars$x.overlayBackground]: refs.backgroundColor,
|
16794
|
+
[vars$x.overlayTextColor]: refs.valueTextColor,
|
16594
16795
|
|
16595
16796
|
// Overlay direct theme:
|
16596
|
-
[vars$
|
16597
|
-
[vars$
|
16797
|
+
[vars$x.overlay.minHeight]: '400px',
|
16798
|
+
[vars$x.overlay.margin]: '0',
|
16598
16799
|
};
|
16599
16800
|
|
16600
16801
|
var comboBox$1 = /*#__PURE__*/Object.freeze({
|
16601
16802
|
__proto__: null,
|
16602
16803
|
comboBox: comboBox,
|
16603
16804
|
default: comboBox,
|
16604
|
-
vars: vars$
|
16805
|
+
vars: vars$x
|
16605
16806
|
});
|
16606
16807
|
|
16607
|
-
const vars$
|
16808
|
+
const vars$w = ImageClass.cssVarList;
|
16608
16809
|
|
16609
16810
|
const image = {};
|
16610
16811
|
|
16611
16812
|
var image$1 = /*#__PURE__*/Object.freeze({
|
16612
16813
|
__proto__: null,
|
16613
16814
|
default: image,
|
16614
|
-
vars: vars$
|
16815
|
+
vars: vars$w
|
16615
16816
|
});
|
16616
16817
|
|
16617
|
-
const vars$
|
16818
|
+
const vars$v = PhoneFieldClass.cssVarList;
|
16618
16819
|
|
16619
16820
|
const phoneField = {
|
16620
|
-
[vars$
|
16821
|
+
[vars$v.hostWidth]: refs.width,
|
16822
|
+
[vars$v.hostDirection]: refs.direction,
|
16823
|
+
[vars$v.fontSize]: refs.fontSize,
|
16824
|
+
[vars$v.fontFamily]: refs.fontFamily,
|
16825
|
+
[vars$v.labelTextColor]: refs.labelTextColor,
|
16826
|
+
[vars$v.labelRequiredIndicator]: refs.requiredIndicator,
|
16827
|
+
[vars$v.errorMessageTextColor]: refs.errorMessageTextColor,
|
16828
|
+
[vars$v.inputValueTextColor]: refs.valueTextColor,
|
16829
|
+
[vars$v.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16830
|
+
[vars$v.inputBorderStyle]: refs.borderStyle,
|
16831
|
+
[vars$v.inputBorderWidth]: refs.borderWidth,
|
16832
|
+
[vars$v.inputBorderColor]: refs.borderColor,
|
16833
|
+
[vars$v.inputBorderRadius]: refs.borderRadius,
|
16834
|
+
[vars$v.inputOutlineStyle]: refs.outlineStyle,
|
16835
|
+
[vars$v.inputOutlineWidth]: refs.outlineWidth,
|
16836
|
+
[vars$v.inputOutlineColor]: refs.outlineColor,
|
16837
|
+
[vars$v.inputOutlineOffset]: refs.outlineOffset,
|
16838
|
+
[vars$v.phoneInputWidth]: refs.minWidth,
|
16839
|
+
[vars$v.countryCodeInputWidth]: '5em',
|
16840
|
+
[vars$v.countryCodeDropdownWidth]: '20em',
|
16841
|
+
[vars$v.marginInlineStart]: '-0.25em',
|
16842
|
+
[vars$v.valueInputHeight]: refs.valueInputHeight,
|
16843
|
+
[vars$v.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16844
|
+
|
16845
|
+
// '@overlay': {
|
16846
|
+
// overlayItemBackgroundColor: 'red'
|
16847
|
+
// }
|
16848
|
+
};
|
16849
|
+
|
16850
|
+
var phoneField$1 = /*#__PURE__*/Object.freeze({
|
16851
|
+
__proto__: null,
|
16852
|
+
default: phoneField,
|
16853
|
+
vars: vars$v
|
16854
|
+
});
|
16855
|
+
|
16856
|
+
const vars$u = PhoneFieldInputBoxClass.cssVarList;
|
16857
|
+
|
16858
|
+
const phoneInputBoxField = {
|
16859
|
+
[vars$u.hostWidth]: '16em',
|
16860
|
+
[vars$u.hostMinWidth]: refs.minWidth,
|
16621
16861
|
[vars$u.hostDirection]: refs.direction,
|
16622
16862
|
[vars$u.fontSize]: refs.fontSize,
|
16623
16863
|
[vars$u.fontFamily]: refs.fontFamily,
|
16864
|
+
[vars$u.labelFontSize]: refs.labelFontSize,
|
16865
|
+
[vars$u.labelFontWeight]: refs.labelFontWeight,
|
16624
16866
|
[vars$u.labelTextColor]: refs.labelTextColor,
|
16625
16867
|
[vars$u.labelRequiredIndicator]: refs.requiredIndicator,
|
16626
16868
|
[vars$u.errorMessageTextColor]: refs.errorMessageTextColor,
|
@@ -16634,28 +16876,32 @@ const phoneField = {
|
|
16634
16876
|
[vars$u.inputOutlineWidth]: refs.outlineWidth,
|
16635
16877
|
[vars$u.inputOutlineColor]: refs.outlineColor,
|
16636
16878
|
[vars$u.inputOutlineOffset]: refs.outlineOffset,
|
16637
|
-
[vars$u.
|
16638
|
-
[vars$u.
|
16639
|
-
[vars$u.
|
16640
|
-
[vars$u.
|
16879
|
+
[vars$u.labelPosition]: refs.labelPosition,
|
16880
|
+
[vars$u.labelTopPosition]: refs.labelTopPosition,
|
16881
|
+
[vars$u.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16882
|
+
[vars$u.inputTransformY]: refs.inputTransformY,
|
16883
|
+
[vars$u.inputTransition]: refs.inputTransition,
|
16884
|
+
[vars$u.marginInlineStart]: refs.marginInlineStart,
|
16641
16885
|
[vars$u.valueInputHeight]: refs.valueInputHeight,
|
16642
16886
|
[vars$u.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16887
|
+
[vars$u.inputHorizontalPadding]: '0',
|
16643
16888
|
|
16644
|
-
|
16645
|
-
|
16646
|
-
|
16889
|
+
_fullWidth: {
|
16890
|
+
[vars$u.hostWidth]: refs.width,
|
16891
|
+
},
|
16647
16892
|
};
|
16648
16893
|
|
16649
|
-
var
|
16894
|
+
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16650
16895
|
__proto__: null,
|
16651
|
-
default:
|
16896
|
+
default: phoneInputBoxField,
|
16652
16897
|
vars: vars$u
|
16653
16898
|
});
|
16654
16899
|
|
16655
|
-
const
|
16900
|
+
const globalRefs$l = getThemeRefs(globals);
|
16901
|
+
const vars$t = NewPasswordClass.cssVarList;
|
16656
16902
|
|
16657
|
-
const
|
16658
|
-
[vars$t.hostWidth]:
|
16903
|
+
const newPassword = {
|
16904
|
+
[vars$t.hostWidth]: refs.width,
|
16659
16905
|
[vars$t.hostMinWidth]: refs.minWidth,
|
16660
16906
|
[vars$t.hostDirection]: refs.direction,
|
16661
16907
|
[vars$t.fontSize]: refs.fontSize,
|
@@ -16663,171 +16909,126 @@ const phoneInputBoxField = {
|
|
16663
16909
|
[vars$t.labelFontSize]: refs.labelFontSize,
|
16664
16910
|
[vars$t.labelFontWeight]: refs.labelFontWeight,
|
16665
16911
|
[vars$t.labelTextColor]: refs.labelTextColor,
|
16666
|
-
[vars$t.
|
16912
|
+
[vars$t.spaceBetweenInputs]: '1em',
|
16667
16913
|
[vars$t.errorMessageTextColor]: refs.errorMessageTextColor,
|
16668
|
-
[vars$t.
|
16669
|
-
[vars$t.
|
16670
|
-
[vars$t.inputBorderStyle]: refs.borderStyle,
|
16671
|
-
[vars$t.inputBorderWidth]: refs.borderWidth,
|
16672
|
-
[vars$t.inputBorderColor]: refs.borderColor,
|
16673
|
-
[vars$t.inputBorderRadius]: refs.borderRadius,
|
16674
|
-
[vars$t.inputOutlineStyle]: refs.outlineStyle,
|
16675
|
-
[vars$t.inputOutlineWidth]: refs.outlineWidth,
|
16676
|
-
[vars$t.inputOutlineColor]: refs.outlineColor,
|
16677
|
-
[vars$t.inputOutlineOffset]: refs.outlineOffset,
|
16678
|
-
[vars$t.labelPosition]: refs.labelPosition,
|
16679
|
-
[vars$t.labelTopPosition]: refs.labelTopPosition,
|
16680
|
-
[vars$t.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16681
|
-
[vars$t.inputTransformY]: refs.inputTransformY,
|
16682
|
-
[vars$t.inputTransition]: refs.inputTransition,
|
16683
|
-
[vars$t.marginInlineStart]: refs.marginInlineStart,
|
16914
|
+
[vars$t.policyPreviewBackgroundColor]: 'none',
|
16915
|
+
[vars$t.policyPreviewPadding]: globalRefs$l.spacing.lg,
|
16684
16916
|
[vars$t.valueInputHeight]: refs.valueInputHeight,
|
16685
|
-
[vars$t.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16686
|
-
[vars$t.inputHorizontalPadding]: '0',
|
16687
|
-
|
16688
|
-
_fullWidth: {
|
16689
|
-
[vars$t.hostWidth]: refs.width,
|
16690
|
-
},
|
16691
|
-
};
|
16692
|
-
|
16693
|
-
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16694
|
-
__proto__: null,
|
16695
|
-
default: phoneInputBoxField,
|
16696
|
-
vars: vars$t
|
16697
|
-
});
|
16698
|
-
|
16699
|
-
const globalRefs$l = getThemeRefs(globals);
|
16700
|
-
const vars$s = NewPasswordClass.cssVarList;
|
16701
|
-
|
16702
|
-
const newPassword = {
|
16703
|
-
[vars$s.hostWidth]: refs.width,
|
16704
|
-
[vars$s.hostMinWidth]: refs.minWidth,
|
16705
|
-
[vars$s.hostDirection]: refs.direction,
|
16706
|
-
[vars$s.fontSize]: refs.fontSize,
|
16707
|
-
[vars$s.fontFamily]: refs.fontFamily,
|
16708
|
-
[vars$s.labelFontSize]: refs.labelFontSize,
|
16709
|
-
[vars$s.labelFontWeight]: refs.labelFontWeight,
|
16710
|
-
[vars$s.labelTextColor]: refs.labelTextColor,
|
16711
|
-
[vars$s.spaceBetweenInputs]: '1em',
|
16712
|
-
[vars$s.errorMessageTextColor]: refs.errorMessageTextColor,
|
16713
|
-
[vars$s.policyPreviewBackgroundColor]: 'none',
|
16714
|
-
[vars$s.policyPreviewPadding]: globalRefs$l.spacing.lg,
|
16715
|
-
[vars$s.valueInputHeight]: refs.valueInputHeight,
|
16716
16917
|
|
16717
16918
|
_required: {
|
16718
16919
|
// NewPassword doesn't pass `required` attribute to its Password components.
|
16719
16920
|
// That's why we fake the required indicator on each input.
|
16720
16921
|
// We do that by injecting `::after` element, and populating it with requiredIndicator content.
|
16721
|
-
[vars$
|
16922
|
+
[vars$t.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
|
16722
16923
|
},
|
16723
16924
|
};
|
16724
16925
|
|
16725
16926
|
var newPassword$1 = /*#__PURE__*/Object.freeze({
|
16726
16927
|
__proto__: null,
|
16727
16928
|
default: newPassword,
|
16728
|
-
vars: vars$
|
16929
|
+
vars: vars$t
|
16729
16930
|
});
|
16730
16931
|
|
16731
|
-
const vars$
|
16932
|
+
const vars$s = UploadFileClass.cssVarList;
|
16732
16933
|
|
16733
16934
|
const uploadFile = {
|
16734
|
-
[vars$
|
16735
|
-
[vars$
|
16736
|
-
[vars$
|
16935
|
+
[vars$s.hostDirection]: refs.direction,
|
16936
|
+
[vars$s.labelTextColor]: refs.labelTextColor,
|
16937
|
+
[vars$s.fontFamily]: refs.fontFamily,
|
16737
16938
|
|
16738
|
-
[vars$
|
16939
|
+
[vars$s.iconSize]: '2em',
|
16739
16940
|
|
16740
|
-
[vars$
|
16741
|
-
[vars$
|
16941
|
+
[vars$s.hostPadding]: '0.75em',
|
16942
|
+
[vars$s.gap]: '0.5em',
|
16742
16943
|
|
16743
|
-
[vars$
|
16744
|
-
[vars$
|
16745
|
-
[vars$
|
16944
|
+
[vars$s.fontSize]: '16px',
|
16945
|
+
[vars$s.titleFontWeight]: '500',
|
16946
|
+
[vars$s.lineHeight]: '1em',
|
16746
16947
|
|
16747
|
-
[vars$
|
16748
|
-
[vars$
|
16749
|
-
[vars$
|
16750
|
-
[vars$
|
16948
|
+
[vars$s.borderWidth]: refs.borderWidth,
|
16949
|
+
[vars$s.borderColor]: refs.borderColor,
|
16950
|
+
[vars$s.borderRadius]: refs.borderRadius,
|
16951
|
+
[vars$s.borderStyle]: 'dashed',
|
16751
16952
|
|
16752
16953
|
_required: {
|
16753
|
-
[vars$
|
16954
|
+
[vars$s.requiredIndicator]: refs.requiredIndicator,
|
16754
16955
|
},
|
16755
16956
|
|
16756
16957
|
size: {
|
16757
16958
|
xs: {
|
16758
|
-
[vars$
|
16759
|
-
[vars$
|
16760
|
-
[vars$
|
16761
|
-
[vars$
|
16762
|
-
[vars$
|
16959
|
+
[vars$s.hostHeight]: '196px',
|
16960
|
+
[vars$s.hostWidth]: '200px',
|
16961
|
+
[vars$s.titleFontSize]: '0.875em',
|
16962
|
+
[vars$s.descriptionFontSize]: '0.875em',
|
16963
|
+
[vars$s.lineHeight]: '1.25em',
|
16763
16964
|
},
|
16764
16965
|
sm: {
|
16765
|
-
[vars$
|
16766
|
-
[vars$
|
16767
|
-
[vars$
|
16768
|
-
[vars$
|
16769
|
-
[vars$
|
16966
|
+
[vars$s.hostHeight]: '216px',
|
16967
|
+
[vars$s.hostWidth]: '230px',
|
16968
|
+
[vars$s.titleFontSize]: '1em',
|
16969
|
+
[vars$s.descriptionFontSize]: '0.875em',
|
16970
|
+
[vars$s.lineHeight]: '1.25em',
|
16770
16971
|
},
|
16771
16972
|
md: {
|
16772
|
-
[vars$
|
16773
|
-
[vars$
|
16774
|
-
[vars$
|
16775
|
-
[vars$
|
16776
|
-
[vars$
|
16973
|
+
[vars$s.hostHeight]: '256px',
|
16974
|
+
[vars$s.hostWidth]: '312px',
|
16975
|
+
[vars$s.titleFontSize]: '1.125em',
|
16976
|
+
[vars$s.descriptionFontSize]: '1em',
|
16977
|
+
[vars$s.lineHeight]: '1.5em',
|
16777
16978
|
},
|
16778
16979
|
lg: {
|
16779
|
-
[vars$
|
16780
|
-
[vars$
|
16781
|
-
[vars$
|
16782
|
-
[vars$
|
16783
|
-
[vars$
|
16980
|
+
[vars$s.hostHeight]: '280px',
|
16981
|
+
[vars$s.hostWidth]: '336px',
|
16982
|
+
[vars$s.titleFontSize]: '1.125em',
|
16983
|
+
[vars$s.descriptionFontSize]: '1.125em',
|
16984
|
+
[vars$s.lineHeight]: '1.75em',
|
16784
16985
|
},
|
16785
16986
|
},
|
16786
16987
|
|
16787
16988
|
_fullWidth: {
|
16788
|
-
[vars$
|
16989
|
+
[vars$s.hostWidth]: refs.width,
|
16789
16990
|
},
|
16790
16991
|
};
|
16791
16992
|
|
16792
16993
|
var uploadFile$1 = /*#__PURE__*/Object.freeze({
|
16793
16994
|
__proto__: null,
|
16794
16995
|
default: uploadFile,
|
16795
|
-
vars: vars$
|
16996
|
+
vars: vars$s
|
16796
16997
|
});
|
16797
16998
|
|
16798
16999
|
const globalRefs$k = getThemeRefs(globals);
|
16799
17000
|
|
16800
|
-
const vars$
|
17001
|
+
const vars$r = ButtonSelectionGroupItemClass.cssVarList;
|
16801
17002
|
|
16802
17003
|
const buttonSelectionGroupItem = {
|
16803
|
-
[vars$
|
16804
|
-
[vars$
|
16805
|
-
[vars$
|
16806
|
-
[vars$
|
16807
|
-
[vars$
|
16808
|
-
[vars$
|
16809
|
-
[vars$
|
16810
|
-
[vars$
|
17004
|
+
[vars$r.hostDirection]: 'inherit',
|
17005
|
+
[vars$r.backgroundColor]: globalRefs$k.colors.surface.main,
|
17006
|
+
[vars$r.labelTextColor]: globalRefs$k.colors.surface.contrast,
|
17007
|
+
[vars$r.borderColor]: globalRefs$k.colors.surface.light,
|
17008
|
+
[vars$r.borderStyle]: 'solid',
|
17009
|
+
[vars$r.borderRadius]: globalRefs$k.radius.sm,
|
17010
|
+
[vars$r.outlineColor]: 'transparent',
|
17011
|
+
[vars$r.borderWidth]: globalRefs$k.border.xs,
|
16811
17012
|
|
16812
17013
|
_hover: {
|
16813
|
-
[vars$
|
17014
|
+
[vars$r.backgroundColor]: globalRefs$k.colors.surface.highlight,
|
16814
17015
|
},
|
16815
17016
|
|
16816
17017
|
_focused: {
|
16817
|
-
[vars$
|
17018
|
+
[vars$r.outlineColor]: globalRefs$k.colors.surface.light,
|
16818
17019
|
},
|
16819
17020
|
|
16820
17021
|
_selected: {
|
16821
|
-
[vars$
|
16822
|
-
[vars$
|
16823
|
-
[vars$
|
17022
|
+
[vars$r.borderColor]: globalRefs$k.colors.surface.contrast,
|
17023
|
+
[vars$r.backgroundColor]: globalRefs$k.colors.surface.contrast,
|
17024
|
+
[vars$r.labelTextColor]: globalRefs$k.colors.surface.main,
|
16824
17025
|
},
|
16825
17026
|
};
|
16826
17027
|
|
16827
17028
|
var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
|
16828
17029
|
__proto__: null,
|
16829
17030
|
default: buttonSelectionGroupItem,
|
16830
|
-
vars: vars$
|
17031
|
+
vars: vars$r
|
16831
17032
|
});
|
16832
17033
|
|
16833
17034
|
const globalRefs$j = getThemeRefs(globals);
|
@@ -16842,28 +17043,28 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
|
|
16842
17043
|
[vars.hostWidth]: refs.width,
|
16843
17044
|
});
|
16844
17045
|
|
16845
|
-
const vars$
|
17046
|
+
const vars$q = ButtonSelectionGroupClass.cssVarList;
|
16846
17047
|
|
16847
17048
|
const buttonSelectionGroup = {
|
16848
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
17049
|
+
...createBaseButtonSelectionGroupMappings(vars$q),
|
16849
17050
|
};
|
16850
17051
|
|
16851
17052
|
var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
16852
17053
|
__proto__: null,
|
16853
17054
|
default: buttonSelectionGroup,
|
16854
|
-
vars: vars$
|
17055
|
+
vars: vars$q
|
16855
17056
|
});
|
16856
17057
|
|
16857
|
-
const vars$
|
17058
|
+
const vars$p = ButtonMultiSelectionGroupClass.cssVarList;
|
16858
17059
|
|
16859
17060
|
const buttonMultiSelectionGroup = {
|
16860
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
17061
|
+
...createBaseButtonSelectionGroupMappings(vars$p),
|
16861
17062
|
};
|
16862
17063
|
|
16863
17064
|
var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
16864
17065
|
__proto__: null,
|
16865
17066
|
default: buttonMultiSelectionGroup,
|
16866
|
-
vars: vars$
|
17067
|
+
vars: vars$p
|
16867
17068
|
});
|
16868
17069
|
|
16869
17070
|
const globalRefs$i = getThemeRefs(globals);
|
@@ -16876,58 +17077,58 @@ const modal = {
|
|
16876
17077
|
[compVars$2.overlayWidth]: '540px',
|
16877
17078
|
};
|
16878
17079
|
|
16879
|
-
const vars$
|
17080
|
+
const vars$o = {
|
16880
17081
|
...compVars$2,
|
16881
17082
|
};
|
16882
17083
|
|
16883
17084
|
var modal$1 = /*#__PURE__*/Object.freeze({
|
16884
17085
|
__proto__: null,
|
16885
17086
|
default: modal,
|
16886
|
-
vars: vars$
|
17087
|
+
vars: vars$o
|
16887
17088
|
});
|
16888
17089
|
|
16889
17090
|
const globalRefs$h = getThemeRefs(globals);
|
16890
|
-
const vars$
|
17091
|
+
const vars$n = GridClass.cssVarList;
|
16891
17092
|
|
16892
17093
|
const grid = {
|
16893
|
-
[vars$
|
16894
|
-
[vars$
|
16895
|
-
[vars$
|
16896
|
-
[vars$
|
16897
|
-
[vars$
|
16898
|
-
|
16899
|
-
[vars$
|
16900
|
-
[vars$
|
16901
|
-
|
16902
|
-
[vars$
|
16903
|
-
[vars$
|
16904
|
-
[vars$
|
16905
|
-
|
16906
|
-
[vars$
|
16907
|
-
[vars$
|
16908
|
-
[vars$
|
16909
|
-
[vars$
|
16910
|
-
|
16911
|
-
[vars$
|
16912
|
-
[vars$
|
16913
|
-
|
16914
|
-
[vars$
|
16915
|
-
[vars$
|
16916
|
-
[vars$
|
16917
|
-
|
16918
|
-
[vars$
|
16919
|
-
[vars$
|
16920
|
-
[vars$
|
16921
|
-
[vars$
|
16922
|
-
[vars$
|
16923
|
-
[vars$
|
16924
|
-
[vars$
|
16925
|
-
[vars$
|
16926
|
-
[vars$
|
16927
|
-
[vars$
|
17094
|
+
[vars$n.hostWidth]: '100%',
|
17095
|
+
[vars$n.hostHeight]: '100%',
|
17096
|
+
[vars$n.hostMinHeight]: '400px',
|
17097
|
+
[vars$n.fontWeight]: '400',
|
17098
|
+
[vars$n.backgroundColor]: globalRefs$h.colors.surface.main,
|
17099
|
+
|
17100
|
+
[vars$n.fontSize]: refs.fontSize,
|
17101
|
+
[vars$n.fontFamily]: refs.fontFamily,
|
17102
|
+
|
17103
|
+
[vars$n.sortIndicatorsColor]: globalRefs$h.colors.surface.light,
|
17104
|
+
[vars$n.activeSortIndicator]: globalRefs$h.colors.surface.dark,
|
17105
|
+
[vars$n.resizeHandleColor]: globalRefs$h.colors.surface.light,
|
17106
|
+
|
17107
|
+
[vars$n.borderWidth]: refs.borderWidth,
|
17108
|
+
[vars$n.borderStyle]: refs.borderStyle,
|
17109
|
+
[vars$n.borderRadius]: refs.borderRadius,
|
17110
|
+
[vars$n.borderColor]: 'transparent',
|
17111
|
+
|
17112
|
+
[vars$n.headerRowTextColor]: globalRefs$h.colors.surface.dark,
|
17113
|
+
[vars$n.separatorColor]: globalRefs$h.colors.surface.light,
|
17114
|
+
|
17115
|
+
[vars$n.valueTextColor]: globalRefs$h.colors.surface.contrast,
|
17116
|
+
[vars$n.selectedBackgroundColor]: globalRefs$h.colors.surface.highlight,
|
17117
|
+
[vars$n.hostDirection]: globalRefs$h.direction,
|
17118
|
+
|
17119
|
+
[vars$n.toggleDetailsPanelButtonSize]: '1em',
|
17120
|
+
[vars$n.toggleDetailsPanelButtonOpenedColor]: globalRefs$h.colors.surface.contrast,
|
17121
|
+
[vars$n.toggleDetailsPanelButtonClosedColor]: globalRefs$h.colors.surface.light,
|
17122
|
+
[vars$n.toggleDetailsPanelButtonCursor]: 'pointer',
|
17123
|
+
[vars$n.detailsPanelBackgroundColor]: globalRefs$h.colors.surface.highlight,
|
17124
|
+
[vars$n.detailsPanelBorderTopColor]: globalRefs$h.colors.surface.light,
|
17125
|
+
[vars$n.detailsPanelLabelsColor]: globalRefs$h.colors.surface.dark,
|
17126
|
+
[vars$n.detailsPanelLabelsFontSize]: '0.8em',
|
17127
|
+
[vars$n.detailsPanelItemsGap]: '2em',
|
17128
|
+
[vars$n.detailsPanelPadding]: '12px 0',
|
16928
17129
|
|
16929
17130
|
_bordered: {
|
16930
|
-
[vars$
|
17131
|
+
[vars$n.borderColor]: refs.borderColor,
|
16931
17132
|
},
|
16932
17133
|
};
|
16933
17134
|
|
@@ -16935,53 +17136,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
|
|
16935
17136
|
__proto__: null,
|
16936
17137
|
default: grid,
|
16937
17138
|
grid: grid,
|
16938
|
-
vars: vars$
|
17139
|
+
vars: vars$n
|
16939
17140
|
});
|
16940
17141
|
|
16941
17142
|
const globalRefs$g = getThemeRefs(globals);
|
16942
|
-
const vars$
|
17143
|
+
const vars$m = NotificationCardClass.cssVarList;
|
16943
17144
|
|
16944
17145
|
const shadowColor$2 = '#00000020';
|
16945
17146
|
|
16946
17147
|
const notification = {
|
16947
|
-
[vars$
|
16948
|
-
[vars$
|
16949
|
-
[vars$
|
16950
|
-
[vars$
|
16951
|
-
[vars$
|
16952
|
-
[vars$
|
16953
|
-
[vars$
|
16954
|
-
[vars$
|
16955
|
-
[vars$
|
17148
|
+
[vars$m.hostMinWidth]: '415px',
|
17149
|
+
[vars$m.fontFamily]: globalRefs$g.fonts.font1.family,
|
17150
|
+
[vars$m.fontSize]: globalRefs$g.typography.body1.size,
|
17151
|
+
[vars$m.backgroundColor]: globalRefs$g.colors.surface.main,
|
17152
|
+
[vars$m.textColor]: globalRefs$g.colors.surface.contrast,
|
17153
|
+
[vars$m.boxShadow]: `${globalRefs$g.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$g.shadow.narrow.xl} ${shadowColor$2}`,
|
17154
|
+
[vars$m.verticalPadding]: '0.625em',
|
17155
|
+
[vars$m.horizontalPadding]: '1.5em',
|
17156
|
+
[vars$m.borderRadius]: globalRefs$g.radius.xs,
|
16956
17157
|
|
16957
17158
|
_bordered: {
|
16958
|
-
[vars$
|
16959
|
-
[vars$
|
16960
|
-
[vars$
|
17159
|
+
[vars$m.borderWidth]: globalRefs$g.border.sm,
|
17160
|
+
[vars$m.borderStyle]: 'solid',
|
17161
|
+
[vars$m.borderColor]: 'transparent',
|
16961
17162
|
},
|
16962
17163
|
|
16963
17164
|
size: {
|
16964
|
-
xs: { [vars$
|
16965
|
-
sm: { [vars$
|
16966
|
-
md: { [vars$
|
16967
|
-
lg: { [vars$
|
17165
|
+
xs: { [vars$m.fontSize]: '12px' },
|
17166
|
+
sm: { [vars$m.fontSize]: '14px' },
|
17167
|
+
md: { [vars$m.fontSize]: '16px' },
|
17168
|
+
lg: { [vars$m.fontSize]: '18px' },
|
16968
17169
|
},
|
16969
17170
|
|
16970
17171
|
mode: {
|
16971
17172
|
primary: {
|
16972
|
-
[vars$
|
16973
|
-
[vars$
|
16974
|
-
[vars$
|
17173
|
+
[vars$m.backgroundColor]: globalRefs$g.colors.primary.main,
|
17174
|
+
[vars$m.textColor]: globalRefs$g.colors.primary.contrast,
|
17175
|
+
[vars$m.borderColor]: globalRefs$g.colors.primary.light,
|
16975
17176
|
},
|
16976
17177
|
success: {
|
16977
|
-
[vars$
|
16978
|
-
[vars$
|
16979
|
-
[vars$
|
17178
|
+
[vars$m.backgroundColor]: globalRefs$g.colors.success.main,
|
17179
|
+
[vars$m.textColor]: globalRefs$g.colors.success.contrast,
|
17180
|
+
[vars$m.borderColor]: globalRefs$g.colors.success.light,
|
16980
17181
|
},
|
16981
17182
|
error: {
|
16982
|
-
[vars$
|
16983
|
-
[vars$
|
16984
|
-
[vars$
|
17183
|
+
[vars$m.backgroundColor]: globalRefs$g.colors.error.main,
|
17184
|
+
[vars$m.textColor]: globalRefs$g.colors.error.contrast,
|
17185
|
+
[vars$m.borderColor]: globalRefs$g.colors.error.light,
|
16985
17186
|
},
|
16986
17187
|
},
|
16987
17188
|
};
|
@@ -16989,148 +17190,148 @@ const notification = {
|
|
16989
17190
|
var notificationCard = /*#__PURE__*/Object.freeze({
|
16990
17191
|
__proto__: null,
|
16991
17192
|
default: notification,
|
16992
|
-
vars: vars$
|
17193
|
+
vars: vars$m
|
16993
17194
|
});
|
16994
17195
|
|
16995
17196
|
const globalRefs$f = getThemeRefs(globals);
|
16996
|
-
const vars$
|
17197
|
+
const vars$l = MultiSelectComboBoxClass.cssVarList;
|
16997
17198
|
|
16998
17199
|
const multiSelectComboBox = {
|
16999
|
-
[vars$
|
17000
|
-
[vars$
|
17001
|
-
[vars$
|
17002
|
-
[vars$
|
17003
|
-
[vars$
|
17004
|
-
[vars$
|
17005
|
-
[vars$
|
17006
|
-
[vars$
|
17007
|
-
[vars$
|
17008
|
-
[vars$
|
17009
|
-
[vars$
|
17010
|
-
[vars$
|
17011
|
-
[vars$
|
17012
|
-
[vars$
|
17013
|
-
[vars$
|
17014
|
-
[vars$
|
17015
|
-
[vars$
|
17016
|
-
[vars$
|
17017
|
-
[vars$
|
17018
|
-
[vars$
|
17019
|
-
[vars$
|
17020
|
-
[vars$
|
17021
|
-
[vars$
|
17022
|
-
[vars$
|
17023
|
-
[vars$
|
17024
|
-
[vars$
|
17025
|
-
[vars$
|
17026
|
-
[vars$
|
17027
|
-
[vars$
|
17028
|
-
[vars$
|
17029
|
-
[vars$
|
17030
|
-
[vars$
|
17031
|
-
[vars$
|
17032
|
-
[vars$
|
17033
|
-
[vars$
|
17034
|
-
[vars$
|
17035
|
-
[vars$
|
17036
|
-
[vars$
|
17037
|
-
[vars$
|
17038
|
-
[vars$
|
17039
|
-
[vars$
|
17200
|
+
[vars$l.hostWidth]: refs.width,
|
17201
|
+
[vars$l.hostDirection]: refs.direction,
|
17202
|
+
[vars$l.fontSize]: refs.fontSize,
|
17203
|
+
[vars$l.fontFamily]: refs.fontFamily,
|
17204
|
+
[vars$l.labelFontSize]: refs.labelFontSize,
|
17205
|
+
[vars$l.labelFontWeight]: refs.labelFontWeight,
|
17206
|
+
[vars$l.labelTextColor]: refs.labelTextColor,
|
17207
|
+
[vars$l.errorMessageTextColor]: refs.errorMessageTextColor,
|
17208
|
+
[vars$l.inputBorderColor]: refs.borderColor,
|
17209
|
+
[vars$l.inputBorderWidth]: refs.borderWidth,
|
17210
|
+
[vars$l.inputBorderStyle]: refs.borderStyle,
|
17211
|
+
[vars$l.inputBorderRadius]: refs.borderRadius,
|
17212
|
+
[vars$l.inputOutlineColor]: refs.outlineColor,
|
17213
|
+
[vars$l.inputOutlineOffset]: refs.outlineOffset,
|
17214
|
+
[vars$l.inputOutlineWidth]: refs.outlineWidth,
|
17215
|
+
[vars$l.inputOutlineStyle]: refs.outlineStyle,
|
17216
|
+
[vars$l.labelRequiredIndicator]: refs.requiredIndicator,
|
17217
|
+
[vars$l.inputValueTextColor]: refs.valueTextColor,
|
17218
|
+
[vars$l.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
17219
|
+
[vars$l.inputBackgroundColor]: refs.backgroundColor,
|
17220
|
+
[vars$l.inputHorizontalPadding]: refs.horizontalPadding,
|
17221
|
+
[vars$l.inputVerticalPadding]: refs.verticalPadding,
|
17222
|
+
[vars$l.inputHeight]: refs.inputHeight,
|
17223
|
+
[vars$l.inputDropdownButtonColor]: globalRefs$f.colors.surface.dark,
|
17224
|
+
[vars$l.inputDropdownButtonCursor]: 'pointer',
|
17225
|
+
[vars$l.inputDropdownButtonSize]: refs.toggleButtonSize,
|
17226
|
+
[vars$l.inputDropdownButtonOffset]: globalRefs$f.spacing.xs,
|
17227
|
+
[vars$l.overlayItemPaddingInlineStart]: globalRefs$f.spacing.xs,
|
17228
|
+
[vars$l.overlayItemPaddingInlineEnd]: globalRefs$f.spacing.lg,
|
17229
|
+
[vars$l.chipFontSize]: refs.chipFontSize,
|
17230
|
+
[vars$l.chipTextColor]: globalRefs$f.colors.surface.contrast,
|
17231
|
+
[vars$l.chipBackgroundColor]: globalRefs$f.colors.surface.light,
|
17232
|
+
[vars$l.labelPosition]: refs.labelPosition,
|
17233
|
+
[vars$l.labelTopPosition]: refs.labelTopPosition,
|
17234
|
+
[vars$l.labelLeftPosition]: refs.labelLeftPosition,
|
17235
|
+
[vars$l.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
17236
|
+
[vars$l.inputTransformY]: refs.inputTransformY,
|
17237
|
+
[vars$l.inputTransition]: refs.inputTransition,
|
17238
|
+
[vars$l.marginInlineStart]: refs.marginInlineStart,
|
17239
|
+
[vars$l.placeholderOpacity]: refs.placeholderOpacity,
|
17240
|
+
[vars$l.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
17040
17241
|
|
17041
17242
|
labelType: {
|
17042
17243
|
floating: {
|
17043
|
-
[vars$
|
17244
|
+
[vars$l.inputHorizontalPadding]: '0.25em',
|
17044
17245
|
_hasValue: {
|
17045
|
-
[vars$
|
17246
|
+
[vars$l.inputHorizontalPadding]: '0.45em',
|
17046
17247
|
},
|
17047
17248
|
},
|
17048
17249
|
},
|
17049
17250
|
|
17050
17251
|
_readonly: {
|
17051
|
-
[vars$
|
17252
|
+
[vars$l.inputDropdownButtonCursor]: 'default',
|
17052
17253
|
},
|
17053
17254
|
|
17054
17255
|
// Overlay theme exposed via the component:
|
17055
|
-
[vars$
|
17056
|
-
[vars$
|
17057
|
-
[vars$
|
17058
|
-
[vars$
|
17059
|
-
[vars$
|
17060
|
-
[vars$
|
17256
|
+
[vars$l.overlayFontSize]: refs.fontSize,
|
17257
|
+
[vars$l.overlayFontFamily]: refs.fontFamily,
|
17258
|
+
[vars$l.overlayCursor]: 'pointer',
|
17259
|
+
[vars$l.overlayItemBoxShadow]: 'none',
|
17260
|
+
[vars$l.overlayBackground]: refs.backgroundColor,
|
17261
|
+
[vars$l.overlayTextColor]: refs.valueTextColor,
|
17061
17262
|
|
17062
17263
|
// Overlay direct theme:
|
17063
|
-
[vars$
|
17064
|
-
[vars$
|
17264
|
+
[vars$l.overlay.minHeight]: '400px',
|
17265
|
+
[vars$l.overlay.margin]: '0',
|
17065
17266
|
};
|
17066
17267
|
|
17067
17268
|
var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
|
17068
17269
|
__proto__: null,
|
17069
17270
|
default: multiSelectComboBox,
|
17070
17271
|
multiSelectComboBox: multiSelectComboBox,
|
17071
|
-
vars: vars$
|
17272
|
+
vars: vars$l
|
17072
17273
|
});
|
17073
17274
|
|
17074
17275
|
const globalRefs$e = getThemeRefs(globals);
|
17075
|
-
const vars$
|
17276
|
+
const vars$k = BadgeClass.cssVarList;
|
17076
17277
|
|
17077
17278
|
const badge = {
|
17078
|
-
[vars$
|
17079
|
-
[vars$
|
17279
|
+
[vars$k.hostWidth]: 'fit-content',
|
17280
|
+
[vars$k.hostDirection]: globalRefs$e.direction,
|
17080
17281
|
|
17081
|
-
[vars$
|
17282
|
+
[vars$k.textAlign]: 'center',
|
17082
17283
|
|
17083
|
-
[vars$
|
17084
|
-
[vars$
|
17284
|
+
[vars$k.fontFamily]: globalRefs$e.fonts.font1.family,
|
17285
|
+
[vars$k.fontWeight]: '400',
|
17085
17286
|
|
17086
|
-
[vars$
|
17087
|
-
[vars$
|
17287
|
+
[vars$k.verticalPadding]: '0.25em',
|
17288
|
+
[vars$k.horizontalPadding]: '0.5em',
|
17088
17289
|
|
17089
|
-
[vars$
|
17090
|
-
[vars$
|
17091
|
-
[vars$
|
17092
|
-
[vars$
|
17290
|
+
[vars$k.borderWidth]: globalRefs$e.border.xs,
|
17291
|
+
[vars$k.borderRadius]: globalRefs$e.radius.xs,
|
17292
|
+
[vars$k.borderColor]: 'transparent',
|
17293
|
+
[vars$k.borderStyle]: 'solid',
|
17093
17294
|
|
17094
17295
|
_fullWidth: {
|
17095
|
-
[vars$
|
17296
|
+
[vars$k.hostWidth]: '100%',
|
17096
17297
|
},
|
17097
17298
|
|
17098
17299
|
size: {
|
17099
|
-
xs: { [vars$
|
17100
|
-
sm: { [vars$
|
17101
|
-
md: { [vars$
|
17102
|
-
lg: { [vars$
|
17300
|
+
xs: { [vars$k.fontSize]: '12px' },
|
17301
|
+
sm: { [vars$k.fontSize]: '14px' },
|
17302
|
+
md: { [vars$k.fontSize]: '16px' },
|
17303
|
+
lg: { [vars$k.fontSize]: '18px' },
|
17103
17304
|
},
|
17104
17305
|
|
17105
17306
|
mode: {
|
17106
17307
|
default: {
|
17107
|
-
[vars$
|
17308
|
+
[vars$k.textColor]: globalRefs$e.colors.surface.dark,
|
17108
17309
|
_bordered: {
|
17109
|
-
[vars$
|
17310
|
+
[vars$k.borderColor]: globalRefs$e.colors.surface.light,
|
17110
17311
|
},
|
17111
17312
|
},
|
17112
17313
|
primary: {
|
17113
|
-
[vars$
|
17314
|
+
[vars$k.textColor]: globalRefs$e.colors.primary.main,
|
17114
17315
|
_bordered: {
|
17115
|
-
[vars$
|
17316
|
+
[vars$k.borderColor]: globalRefs$e.colors.primary.light,
|
17116
17317
|
},
|
17117
17318
|
},
|
17118
17319
|
secondary: {
|
17119
|
-
[vars$
|
17320
|
+
[vars$k.textColor]: globalRefs$e.colors.secondary.main,
|
17120
17321
|
_bordered: {
|
17121
|
-
[vars$
|
17322
|
+
[vars$k.borderColor]: globalRefs$e.colors.secondary.light,
|
17122
17323
|
},
|
17123
17324
|
},
|
17124
17325
|
error: {
|
17125
|
-
[vars$
|
17326
|
+
[vars$k.textColor]: globalRefs$e.colors.error.main,
|
17126
17327
|
_bordered: {
|
17127
|
-
[vars$
|
17328
|
+
[vars$k.borderColor]: globalRefs$e.colors.error.light,
|
17128
17329
|
},
|
17129
17330
|
},
|
17130
17331
|
success: {
|
17131
|
-
[vars$
|
17332
|
+
[vars$k.textColor]: globalRefs$e.colors.success.main,
|
17132
17333
|
_bordered: {
|
17133
|
-
[vars$
|
17334
|
+
[vars$k.borderColor]: globalRefs$e.colors.success.light,
|
17134
17335
|
},
|
17135
17336
|
},
|
17136
17337
|
},
|
@@ -17139,7 +17340,7 @@ const badge = {
|
|
17139
17340
|
var badge$1 = /*#__PURE__*/Object.freeze({
|
17140
17341
|
__proto__: null,
|
17141
17342
|
default: badge,
|
17142
|
-
vars: vars$
|
17343
|
+
vars: vars$k
|
17143
17344
|
});
|
17144
17345
|
|
17145
17346
|
const globalRefs$d = getThemeRefs(globals);
|
@@ -17177,143 +17378,143 @@ const avatar = {
|
|
17177
17378
|
},
|
17178
17379
|
};
|
17179
17380
|
|
17180
|
-
const vars$
|
17381
|
+
const vars$j = {
|
17181
17382
|
...compVars$1,
|
17182
17383
|
};
|
17183
17384
|
|
17184
17385
|
var avatar$1 = /*#__PURE__*/Object.freeze({
|
17185
17386
|
__proto__: null,
|
17186
17387
|
default: avatar,
|
17187
|
-
vars: vars$
|
17388
|
+
vars: vars$j
|
17188
17389
|
});
|
17189
17390
|
|
17190
17391
|
const globalRefs$c = getThemeRefs(globals);
|
17191
17392
|
|
17192
|
-
const vars$
|
17393
|
+
const vars$i = MappingsFieldClass.cssVarList;
|
17193
17394
|
|
17194
17395
|
const mappingsField = {
|
17195
|
-
[vars$
|
17196
|
-
[vars$
|
17197
|
-
[vars$
|
17198
|
-
[vars$
|
17199
|
-
[vars$
|
17200
|
-
[vars$
|
17201
|
-
[vars$
|
17202
|
-
[vars$
|
17203
|
-
[vars$
|
17204
|
-
[vars$
|
17396
|
+
[vars$i.hostWidth]: refs.width,
|
17397
|
+
[vars$i.hostDirection]: refs.direction,
|
17398
|
+
[vars$i.fontSize]: refs.fontSize,
|
17399
|
+
[vars$i.fontFamily]: refs.fontFamily,
|
17400
|
+
[vars$i.separatorFontSize]: '14px',
|
17401
|
+
[vars$i.labelsFontSize]: '14px',
|
17402
|
+
[vars$i.labelsLineHeight]: '1',
|
17403
|
+
[vars$i.labelsMarginBottom]: '6px',
|
17404
|
+
[vars$i.labelTextColor]: refs.labelTextColor,
|
17405
|
+
[vars$i.itemMarginBottom]: '1em',
|
17205
17406
|
// To be positioned correctly, the min width has to match the text field min width
|
17206
|
-
[vars$
|
17407
|
+
[vars$i.valueLabelMinWidth]: refs.minWidth,
|
17207
17408
|
// To be positioned correctly, the min width has to match the combo box field min width
|
17208
|
-
[vars$
|
17209
|
-
[vars$
|
17210
|
-
[vars$
|
17409
|
+
[vars$i.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
|
17410
|
+
[vars$i.separatorWidth]: '70px',
|
17411
|
+
[vars$i.removeButtonWidth]: '60px',
|
17211
17412
|
};
|
17212
17413
|
|
17213
17414
|
var mappingsField$1 = /*#__PURE__*/Object.freeze({
|
17214
17415
|
__proto__: null,
|
17215
17416
|
default: mappingsField,
|
17216
17417
|
mappingsField: mappingsField,
|
17217
|
-
vars: vars$
|
17418
|
+
vars: vars$i
|
17218
17419
|
});
|
17219
17420
|
|
17220
17421
|
const globalRefs$b = getThemeRefs(globals);
|
17221
|
-
const vars$
|
17422
|
+
const vars$h = UserAttributeClass.cssVarList;
|
17222
17423
|
|
17223
17424
|
const userAttribute = {
|
17224
|
-
[vars$
|
17225
|
-
[vars$
|
17226
|
-
[vars$
|
17227
|
-
[vars$
|
17228
|
-
[vars$
|
17229
|
-
[vars$
|
17425
|
+
[vars$h.hostDirection]: globalRefs$b.direction,
|
17426
|
+
[vars$h.labelTextWidth]: '150px',
|
17427
|
+
[vars$h.valueTextWidth]: '200px',
|
17428
|
+
[vars$h.badgeMaxWidth]: '85px',
|
17429
|
+
[vars$h.itemsGap]: '16px',
|
17430
|
+
[vars$h.hostMinWidth]: '530px',
|
17230
17431
|
_fullWidth: {
|
17231
|
-
[vars$
|
17432
|
+
[vars$h.hostWidth]: '100%',
|
17232
17433
|
},
|
17233
17434
|
};
|
17234
17435
|
|
17235
17436
|
var userAttribute$1 = /*#__PURE__*/Object.freeze({
|
17236
17437
|
__proto__: null,
|
17237
17438
|
default: userAttribute,
|
17238
|
-
vars: vars$
|
17439
|
+
vars: vars$h
|
17239
17440
|
});
|
17240
17441
|
|
17241
17442
|
const globalRefs$a = getThemeRefs(globals);
|
17242
|
-
const vars$
|
17443
|
+
const vars$g = UserAuthMethodClass.cssVarList;
|
17243
17444
|
|
17244
17445
|
const userAuthMethod = {
|
17245
|
-
[vars$
|
17246
|
-
[vars$
|
17247
|
-
[vars$
|
17248
|
-
[vars$
|
17249
|
-
[vars$
|
17446
|
+
[vars$g.hostDirection]: globalRefs$a.direction,
|
17447
|
+
[vars$g.labelTextWidth]: '200px',
|
17448
|
+
[vars$g.itemsGap]: '16px',
|
17449
|
+
[vars$g.hostMinWidth]: '530px',
|
17450
|
+
[vars$g.iconSize]: '24px',
|
17250
17451
|
_fullWidth: {
|
17251
|
-
[vars$
|
17452
|
+
[vars$g.hostWidth]: '100%',
|
17252
17453
|
},
|
17253
17454
|
};
|
17254
17455
|
|
17255
17456
|
var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
|
17256
17457
|
__proto__: null,
|
17257
17458
|
default: userAuthMethod,
|
17258
|
-
vars: vars$
|
17459
|
+
vars: vars$g
|
17259
17460
|
});
|
17260
17461
|
|
17261
|
-
const vars$
|
17462
|
+
const vars$f = SamlGroupMappingsClass.cssVarList;
|
17262
17463
|
|
17263
17464
|
const samlGroupMappings = {
|
17264
|
-
[vars$
|
17265
|
-
[vars$
|
17266
|
-
[vars$
|
17465
|
+
[vars$f.hostWidth]: refs.width,
|
17466
|
+
[vars$f.hostDirection]: refs.direction,
|
17467
|
+
[vars$f.groupNameInputMarginBottom]: '1em',
|
17267
17468
|
};
|
17268
17469
|
|
17269
17470
|
var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
|
17270
17471
|
__proto__: null,
|
17271
17472
|
default: samlGroupMappings,
|
17272
17473
|
samlGroupMappings: samlGroupMappings,
|
17273
|
-
vars: vars$
|
17474
|
+
vars: vars$f
|
17274
17475
|
});
|
17275
17476
|
|
17276
17477
|
const globalRefs$9 = getThemeRefs(globals);
|
17277
|
-
const vars$
|
17478
|
+
const vars$e = PolicyValidationClass.cssVarList;
|
17278
17479
|
|
17279
17480
|
const policyValidation = {
|
17280
|
-
[vars$
|
17281
|
-
[vars$
|
17282
|
-
[vars$
|
17283
|
-
[vars$
|
17284
|
-
[vars$
|
17285
|
-
[vars$
|
17286
|
-
[vars$
|
17287
|
-
[vars$
|
17288
|
-
[vars$
|
17289
|
-
[vars$
|
17290
|
-
[vars$
|
17291
|
-
[vars$
|
17292
|
-
[vars$
|
17293
|
-
[vars$
|
17294
|
-
[vars$
|
17295
|
-
[vars$
|
17481
|
+
[vars$e.fontFamily]: refs.fontFamily,
|
17482
|
+
[vars$e.fontSize]: refs.labelFontSize,
|
17483
|
+
[vars$e.textColor]: refs.labelTextColor,
|
17484
|
+
[vars$e.borderWidth]: refs.borderWidth,
|
17485
|
+
[vars$e.borderStyle]: refs.borderStyle,
|
17486
|
+
[vars$e.borderColor]: refs.borderColor,
|
17487
|
+
[vars$e.borderRadius]: globalRefs$9.radius.sm,
|
17488
|
+
[vars$e.backgroundColor]: 'none',
|
17489
|
+
[vars$e.padding]: '0px',
|
17490
|
+
[vars$e.labelMargin]: globalRefs$9.spacing.sm,
|
17491
|
+
[vars$e.itemsSpacing]: globalRefs$9.spacing.lg,
|
17492
|
+
[vars$e.itemSymbolDefault]: "'\\2022'", // "•"
|
17493
|
+
[vars$e.itemSymbolSuccess]: "'\\2713'", // "✓"
|
17494
|
+
[vars$e.itemSymbolError]: "'\\2A09'", // "⨉"
|
17495
|
+
[vars$e.itemSymbolSuccessColor]: globalRefs$9.colors.success.main,
|
17496
|
+
[vars$e.itemSymbolErrorColor]: globalRefs$9.colors.error.main,
|
17296
17497
|
};
|
17297
17498
|
|
17298
17499
|
var policyValidation$1 = /*#__PURE__*/Object.freeze({
|
17299
17500
|
__proto__: null,
|
17300
17501
|
default: policyValidation,
|
17301
|
-
vars: vars$
|
17502
|
+
vars: vars$e
|
17302
17503
|
});
|
17303
17504
|
|
17304
|
-
const vars$
|
17505
|
+
const vars$d = IconClass.cssVarList;
|
17305
17506
|
|
17306
17507
|
const icon = {};
|
17307
17508
|
|
17308
17509
|
var icon$1 = /*#__PURE__*/Object.freeze({
|
17309
17510
|
__proto__: null,
|
17310
17511
|
default: icon,
|
17311
|
-
vars: vars$
|
17512
|
+
vars: vars$d
|
17312
17513
|
});
|
17313
17514
|
|
17314
17515
|
const globalRefs$8 = getThemeRefs(globals);
|
17315
17516
|
|
17316
|
-
const vars$
|
17517
|
+
const vars$c = CodeSnippetClass.cssVarList;
|
17317
17518
|
|
17318
17519
|
const light = {
|
17319
17520
|
color1: '#fa0',
|
@@ -17348,50 +17549,50 @@ const dark = {
|
|
17348
17549
|
};
|
17349
17550
|
|
17350
17551
|
const CodeSnippet = {
|
17351
|
-
[vars$
|
17352
|
-
[vars$
|
17353
|
-
[vars$
|
17354
|
-
[vars$
|
17355
|
-
[vars$
|
17356
|
-
[vars$
|
17357
|
-
[vars$
|
17358
|
-
[vars$
|
17359
|
-
[vars$
|
17360
|
-
[vars$
|
17361
|
-
[vars$
|
17362
|
-
[vars$
|
17363
|
-
[vars$
|
17364
|
-
[vars$
|
17365
|
-
[vars$
|
17366
|
-
[vars$
|
17367
|
-
[vars$
|
17368
|
-
[vars$
|
17369
|
-
[vars$
|
17370
|
-
[vars$
|
17371
|
-
[vars$
|
17372
|
-
[vars$
|
17373
|
-
[vars$
|
17374
|
-
[vars$
|
17375
|
-
[vars$
|
17376
|
-
[vars$
|
17377
|
-
[vars$
|
17378
|
-
[vars$
|
17379
|
-
[vars$
|
17380
|
-
[vars$
|
17381
|
-
[vars$
|
17382
|
-
[vars$
|
17383
|
-
[vars$
|
17384
|
-
[vars$
|
17385
|
-
[vars$
|
17386
|
-
[vars$
|
17387
|
-
[vars$
|
17388
|
-
[vars$
|
17389
|
-
[vars$
|
17390
|
-
[vars$
|
17391
|
-
[vars$
|
17392
|
-
[vars$
|
17393
|
-
[vars$
|
17394
|
-
[vars$
|
17552
|
+
[vars$c.rootBgColor]: globalRefs$8.colors.surface.main,
|
17553
|
+
[vars$c.rootTextColor]: globalRefs$8.colors.surface.contrast,
|
17554
|
+
[vars$c.docTagTextColor]: light.color2,
|
17555
|
+
[vars$c.keywordTextColor]: light.color2,
|
17556
|
+
[vars$c.metaKeywordTextColor]: light.color2,
|
17557
|
+
[vars$c.templateTagTextColor]: light.color2,
|
17558
|
+
[vars$c.templateVariableTextColor]: light.color2,
|
17559
|
+
[vars$c.typeTextColor]: light.color2,
|
17560
|
+
[vars$c.variableLanguageTextColor]: light.color2,
|
17561
|
+
[vars$c.titleTextColor]: light.color3,
|
17562
|
+
[vars$c.titleClassTextColor]: light.color3,
|
17563
|
+
[vars$c.titleClassInheritedTextColor]: light.color3,
|
17564
|
+
[vars$c.titleFunctionTextColor]: light.color3,
|
17565
|
+
[vars$c.attrTextColor]: light.color4,
|
17566
|
+
[vars$c.attributeTextColor]: light.color4,
|
17567
|
+
[vars$c.literalTextColor]: light.color4,
|
17568
|
+
[vars$c.metaTextColor]: light.color4,
|
17569
|
+
[vars$c.numberTextColor]: light.color4,
|
17570
|
+
[vars$c.operatorTextColor]: light.color4,
|
17571
|
+
[vars$c.variableTextColor]: light.color4,
|
17572
|
+
[vars$c.selectorAttrTextColor]: light.color4,
|
17573
|
+
[vars$c.selectorClassTextColor]: light.color4,
|
17574
|
+
[vars$c.selectorIdTextColor]: light.color4,
|
17575
|
+
[vars$c.regexpTextColor]: light.color13,
|
17576
|
+
[vars$c.stringTextColor]: light.color13,
|
17577
|
+
[vars$c.metaStringTextColor]: light.color13,
|
17578
|
+
[vars$c.builtInTextColor]: light.color5,
|
17579
|
+
[vars$c.symbolTextColor]: light.color5,
|
17580
|
+
[vars$c.commentTextColor]: light.color6,
|
17581
|
+
[vars$c.codeTextColor]: light.color6,
|
17582
|
+
[vars$c.formulaTextColor]: light.color6,
|
17583
|
+
[vars$c.nameTextColor]: light.color7,
|
17584
|
+
[vars$c.quoteTextColor]: light.color7,
|
17585
|
+
[vars$c.selectorTagTextColor]: light.color7,
|
17586
|
+
[vars$c.selectorPseudoTextColor]: light.color7,
|
17587
|
+
[vars$c.substTextColor]: light.color8,
|
17588
|
+
[vars$c.sectionTextColor]: light.color4,
|
17589
|
+
[vars$c.bulletTextColor]: light.color9,
|
17590
|
+
[vars$c.emphasisTextColor]: light.color8,
|
17591
|
+
[vars$c.strongTextColor]: light.color8,
|
17592
|
+
[vars$c.additionTextColor]: light.color7,
|
17593
|
+
[vars$c.additionBgColor]: light.color10,
|
17594
|
+
[vars$c.deletionTextColor]: light.color2,
|
17595
|
+
[vars$c.deletionBgColor]: light.color10,
|
17395
17596
|
/* purposely ignored */
|
17396
17597
|
// [vars.charEscapeTextColor]: '',
|
17397
17598
|
// [vars.linkTextColor]: '',
|
@@ -17403,50 +17604,50 @@ const CodeSnippet = {
|
|
17403
17604
|
|
17404
17605
|
const codeSnippetDarkThemeOverrides = {
|
17405
17606
|
codeSnippet: {
|
17406
|
-
[vars$
|
17407
|
-
[vars$
|
17408
|
-
[vars$
|
17409
|
-
[vars$
|
17410
|
-
[vars$
|
17411
|
-
[vars$
|
17412
|
-
[vars$
|
17413
|
-
[vars$
|
17414
|
-
[vars$
|
17415
|
-
[vars$
|
17416
|
-
[vars$
|
17417
|
-
[vars$
|
17418
|
-
[vars$
|
17419
|
-
[vars$
|
17420
|
-
[vars$
|
17421
|
-
[vars$
|
17422
|
-
[vars$
|
17423
|
-
[vars$
|
17424
|
-
[vars$
|
17425
|
-
[vars$
|
17426
|
-
[vars$
|
17427
|
-
[vars$
|
17428
|
-
[vars$
|
17429
|
-
[vars$
|
17430
|
-
[vars$
|
17431
|
-
[vars$
|
17432
|
-
[vars$
|
17433
|
-
[vars$
|
17434
|
-
[vars$
|
17435
|
-
[vars$
|
17436
|
-
[vars$
|
17437
|
-
[vars$
|
17438
|
-
[vars$
|
17439
|
-
[vars$
|
17440
|
-
[vars$
|
17441
|
-
[vars$
|
17442
|
-
[vars$
|
17443
|
-
[vars$
|
17444
|
-
[vars$
|
17445
|
-
[vars$
|
17446
|
-
[vars$
|
17447
|
-
[vars$
|
17448
|
-
[vars$
|
17449
|
-
[vars$
|
17607
|
+
[vars$c.rootBgColor]: globalRefs$8.colors.surface.main,
|
17608
|
+
[vars$c.rootTextColor]: globalRefs$8.colors.surface.contrast,
|
17609
|
+
[vars$c.docTagTextColor]: dark.color2,
|
17610
|
+
[vars$c.keywordTextColor]: dark.color2,
|
17611
|
+
[vars$c.metaKeywordTextColor]: dark.color2,
|
17612
|
+
[vars$c.templateTagTextColor]: dark.color2,
|
17613
|
+
[vars$c.templateVariableTextColor]: dark.color2,
|
17614
|
+
[vars$c.typeTextColor]: dark.color2,
|
17615
|
+
[vars$c.variableLanguageTextColor]: dark.color2,
|
17616
|
+
[vars$c.titleTextColor]: dark.color3,
|
17617
|
+
[vars$c.titleClassTextColor]: dark.color3,
|
17618
|
+
[vars$c.titleClassInheritedTextColor]: dark.color3,
|
17619
|
+
[vars$c.titleFunctionTextColor]: dark.color3,
|
17620
|
+
[vars$c.attrTextColor]: dark.color4,
|
17621
|
+
[vars$c.attributeTextColor]: dark.color4,
|
17622
|
+
[vars$c.literalTextColor]: dark.color4,
|
17623
|
+
[vars$c.metaTextColor]: dark.color4,
|
17624
|
+
[vars$c.numberTextColor]: dark.color4,
|
17625
|
+
[vars$c.operatorTextColor]: dark.color4,
|
17626
|
+
[vars$c.variableTextColor]: dark.color4,
|
17627
|
+
[vars$c.selectorAttrTextColor]: dark.color4,
|
17628
|
+
[vars$c.selectorClassTextColor]: dark.color4,
|
17629
|
+
[vars$c.selectorIdTextColor]: dark.color4,
|
17630
|
+
[vars$c.regexpTextColor]: dark.color13,
|
17631
|
+
[vars$c.stringTextColor]: dark.color13,
|
17632
|
+
[vars$c.metaStringTextColor]: dark.color13,
|
17633
|
+
[vars$c.builtInTextColor]: dark.color5,
|
17634
|
+
[vars$c.symbolTextColor]: dark.color5,
|
17635
|
+
[vars$c.commentTextColor]: dark.color6,
|
17636
|
+
[vars$c.codeTextColor]: dark.color6,
|
17637
|
+
[vars$c.formulaTextColor]: dark.color6,
|
17638
|
+
[vars$c.nameTextColor]: dark.color7,
|
17639
|
+
[vars$c.quoteTextColor]: dark.color7,
|
17640
|
+
[vars$c.selectorTagTextColor]: dark.color7,
|
17641
|
+
[vars$c.selectorPseudoTextColor]: dark.color7,
|
17642
|
+
[vars$c.substTextColor]: dark.color8,
|
17643
|
+
[vars$c.sectionTextColor]: dark.color4,
|
17644
|
+
[vars$c.bulletTextColor]: dark.color9,
|
17645
|
+
[vars$c.emphasisTextColor]: dark.color8,
|
17646
|
+
[vars$c.strongTextColor]: dark.color8,
|
17647
|
+
[vars$c.additionTextColor]: dark.color7,
|
17648
|
+
[vars$c.additionBgColor]: dark.color10,
|
17649
|
+
[vars$c.deletionTextColor]: dark.color2,
|
17650
|
+
[vars$c.deletionBgColor]: dark.color10,
|
17450
17651
|
},
|
17451
17652
|
};
|
17452
17653
|
|
@@ -17454,36 +17655,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
|
|
17454
17655
|
__proto__: null,
|
17455
17656
|
codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
|
17456
17657
|
default: CodeSnippet,
|
17457
|
-
vars: vars$
|
17658
|
+
vars: vars$c
|
17458
17659
|
});
|
17459
17660
|
|
17460
|
-
const vars$
|
17661
|
+
const vars$b = RadioGroupClass.cssVarList;
|
17461
17662
|
const globalRefs$7 = getThemeRefs(globals);
|
17462
17663
|
|
17463
17664
|
const radioGroup = {
|
17464
|
-
[vars$
|
17465
|
-
[vars$
|
17466
|
-
[vars$
|
17467
|
-
[vars$
|
17468
|
-
[vars$
|
17469
|
-
[vars$
|
17470
|
-
[vars$
|
17471
|
-
[vars$
|
17472
|
-
[vars$
|
17473
|
-
[vars$
|
17665
|
+
[vars$b.buttonsRowGap]: '9px',
|
17666
|
+
[vars$b.hostWidth]: refs.width,
|
17667
|
+
[vars$b.hostDirection]: refs.direction,
|
17668
|
+
[vars$b.fontSize]: refs.fontSize,
|
17669
|
+
[vars$b.fontFamily]: refs.fontFamily,
|
17670
|
+
[vars$b.labelTextColor]: refs.labelTextColor,
|
17671
|
+
[vars$b.labelRequiredIndicator]: refs.requiredIndicator,
|
17672
|
+
[vars$b.errorMessageTextColor]: refs.errorMessageTextColor,
|
17673
|
+
[vars$b.helperTextColor]: refs.helperTextColor,
|
17674
|
+
[vars$b.itemsLabelColor]: globalRefs$7.colors.surface.contrast,
|
17474
17675
|
|
17475
17676
|
textAlign: {
|
17476
|
-
right: { [vars$
|
17477
|
-
left: { [vars$
|
17478
|
-
center: { [vars$
|
17677
|
+
right: { [vars$b.inputTextAlign]: 'right' },
|
17678
|
+
left: { [vars$b.inputTextAlign]: 'left' },
|
17679
|
+
center: { [vars$b.inputTextAlign]: 'center' },
|
17479
17680
|
},
|
17480
17681
|
|
17481
17682
|
_fullWidth: {
|
17482
|
-
[vars$
|
17683
|
+
[vars$b.buttonsSpacing]: 'space-between',
|
17483
17684
|
},
|
17484
17685
|
|
17485
17686
|
_disabled: {
|
17486
|
-
[vars$
|
17687
|
+
[vars$b.itemsLabelColor]: globalRefs$7.colors.surface.light,
|
17487
17688
|
},
|
17488
17689
|
};
|
17489
17690
|
|
@@ -17491,24 +17692,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
|
|
17491
17692
|
__proto__: null,
|
17492
17693
|
default: radioGroup,
|
17493
17694
|
radioGroup: radioGroup,
|
17494
|
-
vars: vars$
|
17695
|
+
vars: vars$b
|
17495
17696
|
});
|
17496
17697
|
|
17497
|
-
const vars$
|
17698
|
+
const vars$a = RadioButtonClass.cssVarList;
|
17498
17699
|
const globalRefs$6 = getThemeRefs(globals);
|
17499
17700
|
|
17500
17701
|
const radioButton = {
|
17501
|
-
[vars$
|
17502
|
-
[vars$
|
17503
|
-
[vars$
|
17504
|
-
[vars$
|
17505
|
-
[vars$
|
17506
|
-
[vars$
|
17507
|
-
[vars$
|
17508
|
-
[vars$
|
17702
|
+
[vars$a.fontFamily]: refs.fontFamily,
|
17703
|
+
[vars$a.radioSize]: 'calc(1em + 6px)',
|
17704
|
+
[vars$a.radioMargin]: 'auto 4px',
|
17705
|
+
[vars$a.radioCheckedSize]: `calc(var(${vars$a.radioSize})/5)`,
|
17706
|
+
[vars$a.radioCheckedColor]: globalRefs$6.colors.surface.light,
|
17707
|
+
[vars$a.radioBackgroundColor]: globalRefs$6.colors.surface.light,
|
17708
|
+
[vars$a.radioBorderColor]: 'none',
|
17709
|
+
[vars$a.radioBorderWidth]: 0,
|
17509
17710
|
|
17510
17711
|
_checked: {
|
17511
|
-
[vars$
|
17712
|
+
[vars$a.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
|
17512
17713
|
},
|
17513
17714
|
|
17514
17715
|
_hover: {
|
@@ -17517,16 +17718,16 @@ const radioButton = {
|
|
17517
17718
|
|
17518
17719
|
size: {
|
17519
17720
|
xs: {
|
17520
|
-
[vars$
|
17721
|
+
[vars$a.fontSize]: '12px',
|
17521
17722
|
},
|
17522
17723
|
sm: {
|
17523
|
-
[vars$
|
17724
|
+
[vars$a.fontSize]: '14px',
|
17524
17725
|
},
|
17525
17726
|
md: {
|
17526
|
-
[vars$
|
17727
|
+
[vars$a.fontSize]: '16px',
|
17527
17728
|
},
|
17528
17729
|
lg: {
|
17529
|
-
[vars$
|
17730
|
+
[vars$a.fontSize]: '18px',
|
17530
17731
|
},
|
17531
17732
|
},
|
17532
17733
|
};
|
@@ -17535,128 +17736,128 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
|
|
17535
17736
|
__proto__: null,
|
17536
17737
|
default: radioButton,
|
17537
17738
|
radioButton: radioButton,
|
17538
|
-
vars: vars$
|
17739
|
+
vars: vars$a
|
17539
17740
|
});
|
17540
17741
|
|
17541
17742
|
const globalRefs$5 = getThemeRefs(globals);
|
17542
17743
|
|
17543
|
-
const vars$
|
17744
|
+
const vars$9 = CalendarClass.cssVarList;
|
17544
17745
|
|
17545
17746
|
const calendar = {
|
17546
|
-
[vars$
|
17547
|
-
[vars$
|
17548
|
-
[vars$
|
17747
|
+
[vars$9.fontFamily]: refs.fontFamily,
|
17748
|
+
[vars$9.fontSize]: refs.fontSize,
|
17749
|
+
[vars$9.hostDirection]: refs.direction,
|
17549
17750
|
|
17550
|
-
[vars$
|
17751
|
+
[vars$9.calendarPadding]: '1em',
|
17551
17752
|
|
17552
|
-
[vars$
|
17553
|
-
[vars$
|
17554
|
-
[vars$
|
17555
|
-
[vars$
|
17753
|
+
[vars$9.topNavVerticalPadding]: '1em',
|
17754
|
+
[vars$9.topNavAlignment]: 'space-between',
|
17755
|
+
[vars$9.topNavGap]: '0',
|
17756
|
+
[vars$9.topNavSelectorsGap]: '0.5em',
|
17556
17757
|
|
17557
|
-
[vars$
|
17558
|
-
[vars$
|
17559
|
-
[vars$
|
17560
|
-
[vars$
|
17758
|
+
[vars$9.bottomNavVerticalPadding]: '0.75em',
|
17759
|
+
[vars$9.bottomNavHorizontalPadding]: '1.5em',
|
17760
|
+
[vars$9.bottomNavAlignment]: 'space-between',
|
17761
|
+
[vars$9.bottomNavGap]: '0.5em',
|
17561
17762
|
|
17562
|
-
[vars$
|
17563
|
-
[vars$
|
17564
|
-
[vars$
|
17565
|
-
[vars$
|
17763
|
+
[vars$9.navMarginBottom]: '0.75em',
|
17764
|
+
[vars$9.navBorderBottomWidth]: '1px',
|
17765
|
+
[vars$9.navBorderBottomColor]: globalRefs$5.colors.surface.highlight,
|
17766
|
+
[vars$9.navBorderBottomStyle]: 'solid',
|
17566
17767
|
|
17567
|
-
[vars$
|
17568
|
-
[vars$
|
17768
|
+
[vars$9.yearInputWidth]: '6em',
|
17769
|
+
[vars$9.monthInputWidth]: '8em',
|
17569
17770
|
|
17570
|
-
[vars$
|
17571
|
-
[vars$
|
17771
|
+
[vars$9.navButtonSize]: '24px',
|
17772
|
+
[vars$9.navButtonCursor]: 'pointer',
|
17572
17773
|
|
17573
|
-
[vars$
|
17574
|
-
[vars$
|
17774
|
+
[vars$9.weekdayFontSize]: '0.875em',
|
17775
|
+
[vars$9.weekdayFontWeight]: '500',
|
17575
17776
|
|
17576
17777
|
// day table cell
|
17577
|
-
[vars$
|
17778
|
+
[vars$9.dayHeight]: '3.125em',
|
17578
17779
|
|
17579
17780
|
// day value
|
17580
|
-
[vars$
|
17581
|
-
[vars$
|
17582
|
-
[vars$
|
17583
|
-
[vars$
|
17584
|
-
[vars$
|
17585
|
-
[vars$
|
17586
|
-
[vars$
|
17587
|
-
[vars$
|
17588
|
-
[vars$
|
17589
|
-
[vars$
|
17781
|
+
[vars$9.daySize]: '2.125em',
|
17782
|
+
[vars$9.dayFontSize]: '1em',
|
17783
|
+
[vars$9.dayRadius]: '50%',
|
17784
|
+
[vars$9.dayTextAlign]: 'center',
|
17785
|
+
[vars$9.dayPadding]: '0',
|
17786
|
+
[vars$9.dayTextColor]: globalRefs$5.colors.surface.contrast,
|
17787
|
+
[vars$9.dayFontWeight]: '500',
|
17788
|
+
[vars$9.dayBackgroundColor]: 'transparent',
|
17789
|
+
[vars$9.dayCursor]: 'pointer',
|
17790
|
+
[vars$9.dayBackgroundColorHover]: globalRefs$5.colors.primary.highlight,
|
17590
17791
|
|
17591
17792
|
// selected day
|
17592
|
-
[vars$
|
17593
|
-
[vars$
|
17793
|
+
[vars$9.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
|
17794
|
+
[vars$9.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
|
17594
17795
|
|
17595
17796
|
// disabled day (out of min/max range)
|
17596
|
-
[vars$
|
17797
|
+
[vars$9.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
|
17597
17798
|
|
17598
17799
|
// today
|
17599
|
-
[vars$
|
17600
|
-
[vars$
|
17601
|
-
[vars$
|
17800
|
+
[vars$9.currentDayBorderColor]: globalRefs$5.colors.surface.light,
|
17801
|
+
[vars$9.currentDayBorderWidth]: '1px',
|
17802
|
+
[vars$9.currentDayBorderStyle]: 'solid',
|
17602
17803
|
|
17603
17804
|
size: {
|
17604
|
-
xs: { [vars$
|
17605
|
-
sm: { [vars$
|
17606
|
-
md: { [vars$
|
17607
|
-
lg: { [vars$
|
17805
|
+
xs: { [vars$9.fontSize]: '12px' },
|
17806
|
+
sm: { [vars$9.fontSize]: '14px' },
|
17807
|
+
md: { [vars$9.fontSize]: '16px' },
|
17808
|
+
lg: { [vars$9.fontSize]: '18px' },
|
17608
17809
|
},
|
17609
17810
|
|
17610
|
-
[vars$
|
17811
|
+
[vars$9.navButtonRotation]: 'rotate(180deg)',
|
17611
17812
|
|
17612
17813
|
_disabled: {
|
17613
|
-
[vars$
|
17614
|
-
[vars$
|
17615
|
-
[vars$
|
17616
|
-
[vars$
|
17814
|
+
[vars$9.navButtonOpacity]: '0.5',
|
17815
|
+
[vars$9.dayBackgroundColorHover]: 'none',
|
17816
|
+
[vars$9.navButtonCursor]: 'default',
|
17817
|
+
[vars$9.dayCursor]: 'default',
|
17617
17818
|
},
|
17618
17819
|
|
17619
17820
|
_fullWidth: {
|
17620
|
-
[vars$
|
17621
|
-
[vars$
|
17821
|
+
[vars$9.hostWidth]: '100%',
|
17822
|
+
[vars$9.dayBlockAlign]: '0 auto',
|
17622
17823
|
},
|
17623
17824
|
};
|
17624
17825
|
|
17625
17826
|
var calendar$1 = /*#__PURE__*/Object.freeze({
|
17626
17827
|
__proto__: null,
|
17627
17828
|
default: calendar,
|
17628
|
-
vars: vars$
|
17829
|
+
vars: vars$9
|
17629
17830
|
});
|
17630
17831
|
|
17631
17832
|
const globalRefs$4 = getThemeRefs(globals);
|
17632
17833
|
const shadowColor$1 = '#00000020';
|
17633
17834
|
const { shadow } = globalRefs$4;
|
17634
17835
|
|
17635
|
-
const vars$
|
17836
|
+
const vars$8 = DateFieldClass.cssVarList;
|
17636
17837
|
|
17637
17838
|
const dateField = {
|
17638
|
-
[vars$
|
17639
|
-
[vars$
|
17640
|
-
[vars$
|
17641
|
-
|
17642
|
-
[vars$
|
17643
|
-
[vars$
|
17644
|
-
[vars$
|
17645
|
-
[vars$
|
17646
|
-
[vars$
|
17647
|
-
[vars$
|
17648
|
-
[vars$
|
17649
|
-
[vars$
|
17650
|
-
[vars$
|
17651
|
-
|
17652
|
-
[vars$
|
17653
|
-
[vars$
|
17839
|
+
[vars$8.hostWidth]: refs.width,
|
17840
|
+
[vars$8.hostDirection]: refs.direction,
|
17841
|
+
[vars$8.iconMargin]: '0.375em',
|
17842
|
+
|
17843
|
+
[vars$8.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
|
17844
|
+
[vars$8.overlay.backgroundColor]: refs.backgroundColor,
|
17845
|
+
[vars$8.overlay.backdropBackgroundColor]: 'transparent',
|
17846
|
+
[vars$8.overlay.backdropPointerEvents]: 'all',
|
17847
|
+
[vars$8.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
|
17848
|
+
[vars$8.overlay.outlineWidth]: '0',
|
17849
|
+
[vars$8.overlay.outlineColor]: 'transparent',
|
17850
|
+
[vars$8.overlay.outlineStyle]: 'none',
|
17851
|
+
[vars$8.overlay.padding]: '0',
|
17852
|
+
|
17853
|
+
[vars$8.rtlInputDirection]: 'ltr',
|
17854
|
+
[vars$8.rtlInputAlignment]: 'right',
|
17654
17855
|
};
|
17655
17856
|
|
17656
17857
|
var dateField$1 = /*#__PURE__*/Object.freeze({
|
17657
17858
|
__proto__: null,
|
17658
17859
|
default: dateField,
|
17659
|
-
vars: vars$
|
17860
|
+
vars: vars$8
|
17660
17861
|
});
|
17661
17862
|
|
17662
17863
|
const globalRefs$3 = getThemeRefs(globals);
|
@@ -17665,7 +17866,7 @@ const compVars = ListClass.cssVarList;
|
|
17665
17866
|
|
17666
17867
|
const [helperTheme, helperRefs, helperVars] = createHelperVars(
|
17667
17868
|
{ shadowColor: '#00000020' },
|
17668
|
-
componentName$
|
17869
|
+
componentName$6
|
17669
17870
|
);
|
17670
17871
|
|
17671
17872
|
const { shadowColor } = helperRefs;
|
@@ -17705,7 +17906,7 @@ const list$1 = {
|
|
17705
17906
|
},
|
17706
17907
|
};
|
17707
17908
|
|
17708
|
-
const vars$
|
17909
|
+
const vars$7 = {
|
17709
17910
|
...compVars,
|
17710
17911
|
...helperVars,
|
17711
17912
|
};
|
@@ -17713,78 +17914,78 @@ const vars$6 = {
|
|
17713
17914
|
var list$2 = /*#__PURE__*/Object.freeze({
|
17714
17915
|
__proto__: null,
|
17715
17916
|
default: list$1,
|
17716
|
-
vars: vars$
|
17917
|
+
vars: vars$7
|
17717
17918
|
});
|
17718
17919
|
|
17719
17920
|
const globalRefs$2 = getThemeRefs(globals);
|
17720
17921
|
|
17721
|
-
const vars$
|
17922
|
+
const vars$6 = ListItemClass.cssVarList;
|
17722
17923
|
|
17723
17924
|
const list = {
|
17724
|
-
[vars$
|
17725
|
-
[vars$
|
17726
|
-
[vars$
|
17727
|
-
[vars$
|
17728
|
-
[vars$
|
17729
|
-
[vars$
|
17730
|
-
[vars$
|
17731
|
-
[vars$
|
17732
|
-
[vars$
|
17733
|
-
[vars$
|
17734
|
-
[vars$
|
17925
|
+
[vars$6.backgroundColor]: globalRefs$2.colors.surface.main,
|
17926
|
+
[vars$6.padding]: globalRefs$2.spacing.lg,
|
17927
|
+
[vars$6.gap]: globalRefs$2.spacing.md,
|
17928
|
+
[vars$6.borderStyle]: 'solid',
|
17929
|
+
[vars$6.borderWidth]: globalRefs$2.border.xs,
|
17930
|
+
[vars$6.borderColor]: globalRefs$2.colors.surface.main,
|
17931
|
+
[vars$6.borderRadius]: globalRefs$2.radius.sm,
|
17932
|
+
[vars$6.cursor]: 'pointer',
|
17933
|
+
[vars$6.alignItems]: 'center',
|
17934
|
+
[vars$6.flexDirection]: 'row',
|
17935
|
+
[vars$6.transition]: 'border-color 0.2s, background-color 0.2s',
|
17735
17936
|
|
17736
17937
|
variant: {
|
17737
17938
|
tile: {
|
17738
|
-
[vars$
|
17739
|
-
[vars$
|
17740
|
-
[vars$
|
17939
|
+
[vars$6.alignItems]: 'flex-start',
|
17940
|
+
[vars$6.flexDirection]: 'column',
|
17941
|
+
[vars$6.borderColor]: globalRefs$2.colors.surface.light,
|
17741
17942
|
},
|
17742
17943
|
},
|
17743
17944
|
|
17744
17945
|
_hover: {
|
17745
|
-
[vars$
|
17946
|
+
[vars$6.backgroundColor]: globalRefs$2.colors.surface.highlight,
|
17746
17947
|
},
|
17747
17948
|
|
17748
17949
|
_active: {
|
17749
|
-
[vars$
|
17750
|
-
[vars$
|
17751
|
-
[vars$
|
17950
|
+
[vars$6.backgroundColor]: globalRefs$2.colors.surface.main,
|
17951
|
+
[vars$6.borderColor]: globalRefs$2.colors.primary.light,
|
17952
|
+
[vars$6.outline]: `1px solid ${globalRefs$2.colors.primary.light}`,
|
17752
17953
|
},
|
17753
17954
|
};
|
17754
17955
|
|
17755
17956
|
var listItem = /*#__PURE__*/Object.freeze({
|
17756
17957
|
__proto__: null,
|
17757
17958
|
default: list,
|
17758
|
-
vars: vars$
|
17959
|
+
vars: vars$6
|
17759
17960
|
});
|
17760
17961
|
|
17761
|
-
const vars$
|
17962
|
+
const vars$5 = AppsListClass.cssVarList;
|
17762
17963
|
const globalRefs$1 = getThemeRefs(globals);
|
17763
17964
|
|
17764
17965
|
const defaultHeight = '400px';
|
17765
17966
|
|
17766
17967
|
const appsList = {
|
17767
|
-
[vars$
|
17768
|
-
[vars$
|
17769
|
-
[vars$
|
17770
|
-
[vars$
|
17968
|
+
[vars$5.itemsFontWeight]: 'normal',
|
17969
|
+
[vars$5.itemsTextAlign]: 'start',
|
17970
|
+
[vars$5.hostDirection]: globalRefs$1.direction,
|
17971
|
+
[vars$5.maxHeight]: defaultHeight,
|
17771
17972
|
|
17772
17973
|
_empty: {
|
17773
|
-
[vars$
|
17974
|
+
[vars$5.minHeight]: defaultHeight,
|
17774
17975
|
},
|
17775
17976
|
|
17776
17977
|
size: {
|
17777
17978
|
xs: {
|
17778
|
-
[vars$
|
17979
|
+
[vars$5.itemsFontSize]: '14px',
|
17779
17980
|
},
|
17780
17981
|
sm: {
|
17781
|
-
[vars$
|
17982
|
+
[vars$5.itemsFontSize]: '14px',
|
17782
17983
|
},
|
17783
17984
|
md: {
|
17784
|
-
[vars$
|
17985
|
+
[vars$5.itemsFontSize]: '16px',
|
17785
17986
|
},
|
17786
17987
|
lg: {
|
17787
|
-
[vars$
|
17988
|
+
[vars$5.itemsFontSize]: '20px',
|
17788
17989
|
},
|
17789
17990
|
},
|
17790
17991
|
};
|
@@ -17792,52 +17993,52 @@ const appsList = {
|
|
17792
17993
|
var appsList$1 = /*#__PURE__*/Object.freeze({
|
17793
17994
|
__proto__: null,
|
17794
17995
|
default: appsList,
|
17795
|
-
vars: vars$
|
17996
|
+
vars: vars$5
|
17796
17997
|
});
|
17797
17998
|
|
17798
|
-
const vars$
|
17999
|
+
const vars$4 = ScopesListClass.cssVarList;
|
17799
18000
|
|
17800
|
-
const scopesList
|
17801
|
-
[vars$
|
17802
|
-
[vars$
|
17803
|
-
[vars$
|
18001
|
+
const scopesList = {
|
18002
|
+
[vars$4.requiredInputBorderColor]: theme$1._disabled[vars$Q.borderColor],
|
18003
|
+
[vars$4.requiredInputValueTextColor]: theme$1._disabled[vars$Q.valueTextColor],
|
18004
|
+
[vars$4.hostWidth]: '280px',
|
17804
18005
|
_fullWidth: {
|
17805
|
-
[vars$
|
18006
|
+
[vars$4.hostWidth]: '100%',
|
17806
18007
|
},
|
17807
18008
|
};
|
17808
18009
|
|
17809
|
-
var scopesList$
|
18010
|
+
var scopesList$1 = /*#__PURE__*/Object.freeze({
|
17810
18011
|
__proto__: null,
|
17811
|
-
default: scopesList
|
17812
|
-
vars: vars$
|
18012
|
+
default: scopesList,
|
18013
|
+
vars: vars$4
|
17813
18014
|
});
|
17814
18015
|
|
17815
18016
|
const globalRefs = getThemeRefs(globals);
|
17816
|
-
const vars$
|
18017
|
+
const vars$3 = ThirdPartyAppLogoClass.cssVarList;
|
17817
18018
|
|
17818
18019
|
const thirdPartyAppLogo = {
|
17819
|
-
[vars$
|
17820
|
-
[vars$
|
17821
|
-
[vars$
|
18020
|
+
[vars$3.gap]: globalRefs.spacing.lg,
|
18021
|
+
[vars$3.arrowsColor]: globalRefs.colors.surface.dark,
|
18022
|
+
[vars$3.thirdPartyAppLogoFallback]:
|
17822
18023
|
'url(https://imgs.descope.com/components/third-party-app-logo-placeholder.svg)',
|
17823
|
-
[vars$
|
18024
|
+
[vars$3.companyLogoFallback]:
|
17824
18025
|
'url(https://imgs.descope.com/components/project-logo-placeholder.svg)',
|
17825
18026
|
size: {
|
17826
18027
|
xs: {
|
17827
|
-
[vars$
|
17828
|
-
[vars$
|
18028
|
+
[vars$3.logoMaxHeight]: '30px',
|
18029
|
+
[vars$3.logoMaxWidth]: '120px',
|
17829
18030
|
},
|
17830
18031
|
sm: {
|
17831
|
-
[vars$
|
17832
|
-
[vars$
|
18032
|
+
[vars$3.logoMaxHeight]: '40px',
|
18033
|
+
[vars$3.logoMaxWidth]: '160px',
|
17833
18034
|
},
|
17834
18035
|
md: {
|
17835
|
-
[vars$
|
17836
|
-
[vars$
|
18036
|
+
[vars$3.logoMaxHeight]: '48px',
|
18037
|
+
[vars$3.logoMaxWidth]: '200px',
|
17837
18038
|
},
|
17838
18039
|
lg: {
|
17839
|
-
[vars$
|
17840
|
-
[vars$
|
18040
|
+
[vars$3.logoMaxHeight]: '60px',
|
18041
|
+
[vars$3.logoMaxWidth]: '240px',
|
17841
18042
|
},
|
17842
18043
|
},
|
17843
18044
|
};
|
@@ -17845,21 +18046,39 @@ const thirdPartyAppLogo = {
|
|
17845
18046
|
var thirdPartyAppLogo$1 = /*#__PURE__*/Object.freeze({
|
17846
18047
|
__proto__: null,
|
17847
18048
|
default: thirdPartyAppLogo,
|
18049
|
+
vars: vars$3
|
18050
|
+
});
|
18051
|
+
|
18052
|
+
const vars$2 = SecurityQuestionsSetupClass.cssVarList;
|
18053
|
+
|
18054
|
+
const securityQuestionsSetup = {
|
18055
|
+
[vars$2.hostWidth]: 'fit-content',
|
18056
|
+
_fullWidth: {
|
18057
|
+
[vars$2.hostWidth]: '100%',
|
18058
|
+
},
|
18059
|
+
};
|
18060
|
+
|
18061
|
+
var securityQuestionsSetup$1 = /*#__PURE__*/Object.freeze({
|
18062
|
+
__proto__: null,
|
18063
|
+
default: securityQuestionsSetup,
|
17848
18064
|
vars: vars$2
|
17849
18065
|
});
|
17850
18066
|
|
17851
|
-
const vars$1 =
|
18067
|
+
const vars$1 = SecurityQuestionsVerifyClass.cssVarList;
|
17852
18068
|
|
17853
|
-
const
|
17854
|
-
[vars$1.hostWidth]: '
|
18069
|
+
const securityQuestionsVerify = {
|
18070
|
+
[vars$1.hostWidth]: 'min-content',
|
18071
|
+
[vars$1.questionCursor]: 'pointer',
|
17855
18072
|
_fullWidth: {
|
17856
18073
|
[vars$1.hostWidth]: '100%',
|
17857
18074
|
},
|
18075
|
+
[vars$1.questionFontSize]: refs.fontSize,
|
18076
|
+
[vars$1.questionFontFamily]: refs.fontFamily,
|
17858
18077
|
};
|
17859
18078
|
|
17860
|
-
var
|
18079
|
+
var securityQuestionsVerify$1 = /*#__PURE__*/Object.freeze({
|
17861
18080
|
__proto__: null,
|
17862
|
-
default:
|
18081
|
+
default: securityQuestionsVerify,
|
17863
18082
|
vars: vars$1
|
17864
18083
|
});
|
17865
18084
|
|
@@ -17913,9 +18132,10 @@ const components = {
|
|
17913
18132
|
list: list$2,
|
17914
18133
|
listItem,
|
17915
18134
|
appsList: appsList$1,
|
17916
|
-
scopesList: scopesList$
|
18135
|
+
scopesList: scopesList$1,
|
17917
18136
|
thirdPartyAppLogo: thirdPartyAppLogo$1,
|
17918
|
-
securityQuestionsSetup,
|
18137
|
+
securityQuestionsSetup: securityQuestionsSetup$1,
|
18138
|
+
securityQuestionsVerify: securityQuestionsVerify$1,
|
17919
18139
|
};
|
17920
18140
|
|
17921
18141
|
const theme = Object.keys(components).reduce(
|
@@ -17928,7 +18148,7 @@ const vars = Object.keys(components).reduce(
|
|
17928
18148
|
);
|
17929
18149
|
|
17930
18150
|
const defaultTheme = { globals, components: theme };
|
17931
|
-
const themeVars = { globals: vars$
|
18151
|
+
const themeVars = { globals: vars$S, components: vars };
|
17932
18152
|
|
17933
18153
|
const colors = {
|
17934
18154
|
surface: {
|
@@ -17977,5 +18197,5 @@ const darkTheme = merge({}, defaultTheme, {
|
|
17977
18197
|
},
|
17978
18198
|
});
|
17979
18199
|
|
17980
|
-
export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, IconClass, ImageClass, LinkClass, ListClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, RecaptchaClass, SamlGroupMappingsClass, ScopesListClass, SecurityQuestionsSetupClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, ThirdPartyAppLogoClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
|
18200
|
+
export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, IconClass, ImageClass, LinkClass, ListClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, RecaptchaClass, SamlGroupMappingsClass, ScopesListClass, SecurityQuestionsSetupClass, SecurityQuestionsVerifyClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, ThirdPartyAppLogoClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
|
17981
18201
|
//# sourceMappingURL=index.esm.js.map
|