@descope/web-components-ui 1.0.392 → 1.0.394
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 +1428 -1171
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1408 -1150
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/descope-combo-box-index-js.js +1 -1
- package/dist/umd/descope-date-field-descope-calendar-index-js.js +1 -1
- package/dist/umd/descope-security-questions-setup-index-js.js +2 -0
- package/dist/umd/descope-security-questions-setup-index-js.js.LICENSE.txt +5 -0
- package/dist/umd/descope-third-party-app-logo-index-js.js +1 -1
- package/dist/umd/index.js +1 -1
- package/dist/umd/mapping-fields-descope-mappings-field-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-field-descope-phone-field-internal-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-field-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-input-box-field-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-combo-box/ComboBoxClass.js +1 -1
- package/src/components/descope-security-questions-setup/SecurityQuestionsSetupClass.js +245 -0
- package/src/components/descope-security-questions-setup/index.js +7 -0
- package/src/components/descope-third-party-app-logo/ThirdPartyAppLogoClass.js +1 -0
- package/src/index.cjs.js +1 -0
- package/src/index.js +1 -0
- package/src/theme/components/index.js +2 -0
- package/src/theme/components/securityQuestionsSetup.js +12 -0
package/dist/index.esm.js
CHANGED
@@ -1749,9 +1749,9 @@ const createIcon = async (src) => {
|
|
1749
1749
|
|
1750
1750
|
/* eslint-disable no-use-before-define */
|
1751
1751
|
|
1752
|
-
const componentName$
|
1752
|
+
const componentName$13 = getComponentName('icon');
|
1753
1753
|
|
1754
|
-
class RawIcon extends createBaseClass({ componentName: componentName$
|
1754
|
+
class RawIcon extends createBaseClass({ componentName: componentName$13, baseSelector: 'slot' }) {
|
1755
1755
|
static get observedAttributes() {
|
1756
1756
|
return ['src'];
|
1757
1757
|
}
|
@@ -1836,7 +1836,7 @@ const clickableMixin = (superclass) =>
|
|
1836
1836
|
}
|
1837
1837
|
};
|
1838
1838
|
|
1839
|
-
const componentName$
|
1839
|
+
const componentName$12 = getComponentName('button');
|
1840
1840
|
|
1841
1841
|
const resetStyles = `
|
1842
1842
|
:host {
|
@@ -1952,7 +1952,7 @@ const ButtonClass = compose(
|
|
1952
1952
|
}
|
1953
1953
|
`,
|
1954
1954
|
excludeAttrsSync: ['tabindex'],
|
1955
|
-
componentName: componentName$
|
1955
|
+
componentName: componentName$12,
|
1956
1956
|
})
|
1957
1957
|
);
|
1958
1958
|
|
@@ -1989,7 +1989,7 @@ loadingIndicatorStyles = `
|
|
1989
1989
|
}
|
1990
1990
|
`;
|
1991
1991
|
|
1992
|
-
customElements.define(componentName$
|
1992
|
+
customElements.define(componentName$12, ButtonClass);
|
1993
1993
|
|
1994
1994
|
const createBaseInputClass = (...args) =>
|
1995
1995
|
compose(
|
@@ -1999,11 +1999,11 @@ const createBaseInputClass = (...args) =>
|
|
1999
1999
|
inputEventsDispatchingMixin
|
2000
2000
|
)(createBaseClass(...args));
|
2001
2001
|
|
2002
|
-
const componentName$
|
2002
|
+
const componentName$11 = getComponentName('boolean-field-internal');
|
2003
2003
|
|
2004
2004
|
const forwardAttributes$1 = ['disabled', 'label', 'invalid', 'readonly'];
|
2005
2005
|
|
2006
|
-
const BaseInputClass$a = createBaseInputClass({ componentName: componentName$
|
2006
|
+
const BaseInputClass$a = createBaseInputClass({ componentName: componentName$11, baseSelector: 'div' });
|
2007
2007
|
|
2008
2008
|
class BooleanInputInternal extends BaseInputClass$a {
|
2009
2009
|
static get observedAttributes() {
|
@@ -2079,14 +2079,14 @@ const booleanFieldMixin = (superclass) =>
|
|
2079
2079
|
|
2080
2080
|
const template = document.createElement('template');
|
2081
2081
|
template.innerHTML = `
|
2082
|
-
<${componentName$
|
2082
|
+
<${componentName$11}
|
2083
2083
|
tabindex="-1"
|
2084
2084
|
slot="input"
|
2085
|
-
></${componentName$
|
2085
|
+
></${componentName$11}>
|
2086
2086
|
`;
|
2087
2087
|
|
2088
2088
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
2089
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
2089
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$11);
|
2090
2090
|
this.checkbox = this.inputElement.querySelector('vaadin-checkbox');
|
2091
2091
|
|
2092
2092
|
forwardAttrs(this, this.inputElement, {
|
@@ -2300,7 +2300,7 @@ descope-boolean-field-internal {
|
|
2300
2300
|
}
|
2301
2301
|
`;
|
2302
2302
|
|
2303
|
-
const componentName
|
2303
|
+
const componentName$10 = getComponentName('checkbox');
|
2304
2304
|
|
2305
2305
|
const {
|
2306
2306
|
host: host$n,
|
@@ -2412,15 +2412,15 @@ const CheckboxClass = compose(
|
|
2412
2412
|
}
|
2413
2413
|
`,
|
2414
2414
|
excludeAttrsSync: ['label', 'tabindex'],
|
2415
|
-
componentName: componentName
|
2415
|
+
componentName: componentName$10,
|
2416
2416
|
})
|
2417
2417
|
);
|
2418
2418
|
|
2419
|
-
customElements.define(componentName$
|
2419
|
+
customElements.define(componentName$11, BooleanInputInternal);
|
2420
2420
|
|
2421
|
-
customElements.define(componentName
|
2421
|
+
customElements.define(componentName$10, CheckboxClass);
|
2422
2422
|
|
2423
|
-
const componentName
|
2423
|
+
const componentName$$ = getComponentName('switch-toggle');
|
2424
2424
|
|
2425
2425
|
const {
|
2426
2426
|
host: host$m,
|
@@ -2552,17 +2552,17 @@ const SwitchToggleClass = compose(
|
|
2552
2552
|
}
|
2553
2553
|
`,
|
2554
2554
|
excludeAttrsSync: ['label', 'tabindex'],
|
2555
|
-
componentName: componentName
|
2555
|
+
componentName: componentName$$,
|
2556
2556
|
})
|
2557
2557
|
);
|
2558
2558
|
|
2559
|
-
customElements.define(componentName
|
2559
|
+
customElements.define(componentName$$, SwitchToggleClass);
|
2560
2560
|
|
2561
|
-
const componentName$
|
2561
|
+
const componentName$_ = getComponentName('loader-linear');
|
2562
2562
|
|
2563
|
-
class RawLoaderLinear extends createBaseClass({ componentName: componentName$
|
2563
|
+
class RawLoaderLinear extends createBaseClass({ componentName: componentName$_, baseSelector: ':host > div' }) {
|
2564
2564
|
static get componentName() {
|
2565
|
-
return componentName$
|
2565
|
+
return componentName$_;
|
2566
2566
|
}
|
2567
2567
|
|
2568
2568
|
constructor() {
|
@@ -2623,11 +2623,11 @@ const LoaderLinearClass = compose(
|
|
2623
2623
|
componentNameValidationMixin
|
2624
2624
|
)(RawLoaderLinear);
|
2625
2625
|
|
2626
|
-
customElements.define(componentName$
|
2626
|
+
customElements.define(componentName$_, LoaderLinearClass);
|
2627
2627
|
|
2628
|
-
const componentName$
|
2628
|
+
const componentName$Z = getComponentName('loader-radial');
|
2629
2629
|
|
2630
|
-
class RawLoaderRadial extends createBaseClass({ componentName: componentName$
|
2630
|
+
class RawLoaderRadial extends createBaseClass({ componentName: componentName$Z, baseSelector: ':host > div' }) {
|
2631
2631
|
constructor() {
|
2632
2632
|
super();
|
2633
2633
|
|
@@ -2671,11 +2671,11 @@ const LoaderRadialClass = compose(
|
|
2671
2671
|
componentNameValidationMixin
|
2672
2672
|
)(RawLoaderRadial);
|
2673
2673
|
|
2674
|
-
customElements.define(componentName$
|
2674
|
+
customElements.define(componentName$Z, LoaderRadialClass);
|
2675
2675
|
|
2676
|
-
const componentName$
|
2676
|
+
const componentName$Y = getComponentName('container');
|
2677
2677
|
|
2678
|
-
class RawContainer extends createBaseClass({ componentName: componentName$
|
2678
|
+
class RawContainer extends createBaseClass({ componentName: componentName$Y, baseSelector: 'slot' }) {
|
2679
2679
|
constructor() {
|
2680
2680
|
super();
|
2681
2681
|
|
@@ -2728,9 +2728,9 @@ const ContainerClass = compose(
|
|
2728
2728
|
componentNameValidationMixin
|
2729
2729
|
)(RawContainer);
|
2730
2730
|
|
2731
|
-
customElements.define(componentName$
|
2731
|
+
customElements.define(componentName$Y, ContainerClass);
|
2732
2732
|
|
2733
|
-
const componentName$
|
2733
|
+
const componentName$X = getComponentName('combo-box');
|
2734
2734
|
|
2735
2735
|
const ComboBoxMixin = (superclass) =>
|
2736
2736
|
class ComboBoxMixinClass extends superclass {
|
@@ -3166,7 +3166,7 @@ const ComboBoxClass = compose(
|
|
3166
3166
|
vaadin-combo-box[label-type="floating"]:not([focused])[disabled] > input:placeholder-shown {
|
3167
3167
|
opacity: 0;
|
3168
3168
|
}
|
3169
|
-
|
3169
|
+
|
3170
3170
|
${resetInputLabelPosition('vaadin-combo-box')}
|
3171
3171
|
${inputFloatingLabelStyle()}
|
3172
3172
|
`,
|
@@ -3175,14 +3175,14 @@ const ComboBoxClass = compose(
|
|
3175
3175
|
// and reset items to an empty array, and opening the list box with no items
|
3176
3176
|
// to display.
|
3177
3177
|
excludeAttrsSync: ['tabindex', 'size', 'data'],
|
3178
|
-
componentName: componentName$
|
3178
|
+
componentName: componentName$X,
|
3179
3179
|
includeForwardProps: ['items', 'renderer', 'selectedItem'],
|
3180
3180
|
})
|
3181
3181
|
);
|
3182
3182
|
|
3183
|
-
customElements.define(componentName$
|
3183
|
+
customElements.define(componentName$X, ComboBoxClass);
|
3184
3184
|
|
3185
|
-
customElements.define(componentName$
|
3185
|
+
customElements.define(componentName$13, IconClass);
|
3186
3186
|
|
3187
3187
|
const SUPPORTED_FORMATS = ['MM/DD/YYYY', 'DD/MM/YYYY', 'YYYY/MM/DD'];
|
3188
3188
|
|
@@ -3499,7 +3499,7 @@ const nextMonth = (timestamp) => {
|
|
3499
3499
|
return date;
|
3500
3500
|
};
|
3501
3501
|
|
3502
|
-
const componentName$
|
3502
|
+
const componentName$W = getComponentName('calendar');
|
3503
3503
|
|
3504
3504
|
const observedAttrs$2 = [
|
3505
3505
|
'initial-value',
|
@@ -3516,7 +3516,7 @@ const observedAttrs$2 = [
|
|
3516
3516
|
|
3517
3517
|
const calendarUiAttrs = ['calendar-label-submit', 'calendar-label-cancel'];
|
3518
3518
|
|
3519
|
-
const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$
|
3519
|
+
const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$W, baseSelector: 'div' });
|
3520
3520
|
|
3521
3521
|
class RawCalendar extends BaseInputClass$9 {
|
3522
3522
|
static get observedAttributes() {
|
@@ -4129,7 +4129,7 @@ const CalendarClass = compose(
|
|
4129
4129
|
componentNameValidationMixin
|
4130
4130
|
)(RawCalendar);
|
4131
4131
|
|
4132
|
-
customElements.define(componentName$
|
4132
|
+
customElements.define(componentName$W, CalendarClass);
|
4133
4133
|
|
4134
4134
|
const {
|
4135
4135
|
host: host$j,
|
@@ -4277,7 +4277,7 @@ var textFieldMappings = {
|
|
4277
4277
|
inputIconColor: { ...inputIcon, property: 'color' },
|
4278
4278
|
};
|
4279
4279
|
|
4280
|
-
const componentName$
|
4280
|
+
const componentName$V = getComponentName('text-field');
|
4281
4281
|
|
4282
4282
|
const observedAttrs$1 = ['type', 'label-type', 'copy-to-clipboard'];
|
4283
4283
|
|
@@ -4399,11 +4399,11 @@ const TextFieldClass = compose(
|
|
4399
4399
|
}
|
4400
4400
|
`,
|
4401
4401
|
excludeAttrsSync: ['tabindex'],
|
4402
|
-
componentName: componentName$
|
4402
|
+
componentName: componentName$V,
|
4403
4403
|
})
|
4404
4404
|
);
|
4405
4405
|
|
4406
|
-
customElements.define(componentName$
|
4406
|
+
customElements.define(componentName$V, TextFieldClass);
|
4407
4407
|
|
4408
4408
|
const patterns = {
|
4409
4409
|
MM: '(0?[1-9]|1[0-2])',
|
@@ -4536,12 +4536,12 @@ class DateCounter {
|
|
4536
4536
|
}
|
4537
4537
|
}
|
4538
4538
|
|
4539
|
-
const componentName$
|
4539
|
+
const componentName$U = getComponentName('date-field');
|
4540
4540
|
|
4541
4541
|
// we set baseSelector to `vaadin-popover` as a temporary hack, so our portalMixin will
|
4542
4542
|
// be able to process this component's overlay. The whole process needs refactoring as soon as possible.
|
4543
4543
|
const BASE_SELECTOR = 'vaadin-popover';
|
4544
|
-
const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$
|
4544
|
+
const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$U, baseSelector: BASE_SELECTOR });
|
4545
4545
|
|
4546
4546
|
const dateFieldAttrs = ['format', 'opened', 'initial-value', 'readonly'];
|
4547
4547
|
const calendarAttrs = ['years-range', 'calendar-months', 'calendar-weekdays'];
|
@@ -5212,11 +5212,11 @@ const DateFieldClass = compose(
|
|
5212
5212
|
componentNameValidationMixin
|
5213
5213
|
)(RawDateFieldClass);
|
5214
5214
|
|
5215
|
-
customElements.define(componentName$
|
5215
|
+
customElements.define(componentName$U, DateFieldClass);
|
5216
5216
|
|
5217
|
-
const componentName$
|
5217
|
+
const componentName$T = getComponentName('text');
|
5218
5218
|
|
5219
|
-
class RawText extends createBaseClass({ componentName: componentName$
|
5219
|
+
class RawText extends createBaseClass({ componentName: componentName$T, baseSelector: ':host > slot' }) {
|
5220
5220
|
constructor() {
|
5221
5221
|
super();
|
5222
5222
|
|
@@ -5273,8 +5273,8 @@ const TextClass = compose(
|
|
5273
5273
|
componentNameValidationMixin
|
5274
5274
|
)(RawText);
|
5275
5275
|
|
5276
|
-
const componentName$
|
5277
|
-
class RawDivider extends createBaseClass({ componentName: componentName$
|
5276
|
+
const componentName$S = getComponentName('divider');
|
5277
|
+
class RawDivider extends createBaseClass({ componentName: componentName$S, baseSelector: ':host > div' }) {
|
5278
5278
|
constructor() {
|
5279
5279
|
super();
|
5280
5280
|
|
@@ -5373,11 +5373,11 @@ const DividerClass = compose(
|
|
5373
5373
|
componentNameValidationMixin
|
5374
5374
|
)(RawDivider);
|
5375
5375
|
|
5376
|
-
customElements.define(componentName$
|
5376
|
+
customElements.define(componentName$T, TextClass);
|
5377
5377
|
|
5378
|
-
customElements.define(componentName$
|
5378
|
+
customElements.define(componentName$S, DividerClass);
|
5379
5379
|
|
5380
|
-
const componentName$
|
5380
|
+
const componentName$R = getComponentName('email-field');
|
5381
5381
|
|
5382
5382
|
const defaultPattern = "^[\\w\\.\\%\\+\\-']+@[\\w\\.\\-]+\\.[A-Za-z]{2,}$";
|
5383
5383
|
const defaultAutocomplete = 'username';
|
@@ -5445,15 +5445,15 @@ const EmailFieldClass = compose(
|
|
5445
5445
|
}
|
5446
5446
|
`,
|
5447
5447
|
excludeAttrsSync: ['tabindex'],
|
5448
|
-
componentName: componentName$
|
5448
|
+
componentName: componentName$R,
|
5449
5449
|
})
|
5450
5450
|
);
|
5451
5451
|
|
5452
|
-
customElements.define(componentName$
|
5452
|
+
customElements.define(componentName$R, EmailFieldClass);
|
5453
5453
|
|
5454
|
-
const componentName$
|
5454
|
+
const componentName$Q = getComponentName('link');
|
5455
5455
|
|
5456
|
-
class RawLink extends createBaseClass({ componentName: componentName$
|
5456
|
+
class RawLink extends createBaseClass({ componentName: componentName$Q, baseSelector: ':host a' }) {
|
5457
5457
|
constructor() {
|
5458
5458
|
super();
|
5459
5459
|
|
@@ -5517,7 +5517,7 @@ const LinkClass = compose(
|
|
5517
5517
|
componentNameValidationMixin
|
5518
5518
|
)(RawLink);
|
5519
5519
|
|
5520
|
-
customElements.define(componentName$
|
5520
|
+
customElements.define(componentName$Q, LinkClass);
|
5521
5521
|
|
5522
5522
|
const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) => {
|
5523
5523
|
let style;
|
@@ -5569,37 +5569,37 @@ const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) =>
|
|
5569
5569
|
return CssVarImageClass;
|
5570
5570
|
};
|
5571
5571
|
|
5572
|
-
const componentName$
|
5572
|
+
const componentName$P = getComponentName('logo');
|
5573
5573
|
|
5574
5574
|
const LogoClass = createCssVarImageClass({
|
5575
|
-
componentName: componentName$
|
5575
|
+
componentName: componentName$P,
|
5576
5576
|
varName: 'url',
|
5577
5577
|
fallbackVarName: 'fallbackUrl',
|
5578
5578
|
});
|
5579
5579
|
|
5580
|
-
customElements.define(componentName$
|
5580
|
+
customElements.define(componentName$P, LogoClass);
|
5581
5581
|
|
5582
|
-
const componentName$
|
5582
|
+
const componentName$O = getComponentName('totp-image');
|
5583
5583
|
|
5584
5584
|
const TotpImageClass = createCssVarImageClass({
|
5585
|
-
componentName: componentName$
|
5585
|
+
componentName: componentName$O,
|
5586
5586
|
varName: 'url',
|
5587
5587
|
fallbackVarName: 'fallbackUrl',
|
5588
5588
|
});
|
5589
5589
|
|
5590
|
-
customElements.define(componentName$
|
5590
|
+
customElements.define(componentName$O, TotpImageClass);
|
5591
5591
|
|
5592
|
-
const componentName$
|
5592
|
+
const componentName$N = getComponentName('notp-image');
|
5593
5593
|
|
5594
5594
|
const NotpImageClass = createCssVarImageClass({
|
5595
|
-
componentName: componentName$
|
5595
|
+
componentName: componentName$N,
|
5596
5596
|
varName: 'url',
|
5597
5597
|
fallbackVarName: 'fallbackUrl',
|
5598
5598
|
});
|
5599
5599
|
|
5600
|
-
customElements.define(componentName$
|
5600
|
+
customElements.define(componentName$N, NotpImageClass);
|
5601
5601
|
|
5602
|
-
const componentName$
|
5602
|
+
const componentName$M = getComponentName('number-field');
|
5603
5603
|
|
5604
5604
|
const NumberFieldClass = compose(
|
5605
5605
|
createStyleMixin({
|
@@ -5633,11 +5633,11 @@ const NumberFieldClass = compose(
|
|
5633
5633
|
}
|
5634
5634
|
`,
|
5635
5635
|
excludeAttrsSync: ['tabindex'],
|
5636
|
-
componentName: componentName$
|
5636
|
+
componentName: componentName$M,
|
5637
5637
|
})
|
5638
5638
|
);
|
5639
5639
|
|
5640
|
-
customElements.define(componentName$
|
5640
|
+
customElements.define(componentName$M, NumberFieldClass);
|
5641
5641
|
|
5642
5642
|
const INPUT_MASK_TEXT_PROP = '--descope-input-mask-content';
|
5643
5643
|
const INPUT_MASK_DISPLAY_PROP = '--descope-input-mask-display';
|
@@ -5683,13 +5683,13 @@ const toggleMaskVisibility = (input, value) => {
|
|
5683
5683
|
|
5684
5684
|
/* eslint-disable no-param-reassign */
|
5685
5685
|
|
5686
|
-
const componentName$
|
5686
|
+
const componentName$L = getComponentName('passcode-internal');
|
5687
5687
|
|
5688
5688
|
const observedAttributes$5 = ['digits', 'loading'];
|
5689
5689
|
|
5690
5690
|
const forwardAttributes = ['disabled', 'bordered', 'size', 'invalid', 'readonly'];
|
5691
5691
|
|
5692
|
-
const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$
|
5692
|
+
const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$L, baseSelector: 'div' });
|
5693
5693
|
|
5694
5694
|
class PasscodeInternal extends BaseInputClass$7 {
|
5695
5695
|
static get observedAttributes() {
|
@@ -5907,7 +5907,7 @@ class PasscodeInternal extends BaseInputClass$7 {
|
|
5907
5907
|
}
|
5908
5908
|
}
|
5909
5909
|
|
5910
|
-
const componentName$
|
5910
|
+
const componentName$K = getComponentName('passcode');
|
5911
5911
|
|
5912
5912
|
const observedAttributes$4 = ['digits'];
|
5913
5913
|
|
@@ -5926,17 +5926,17 @@ const customMixin$a = (superclass) =>
|
|
5926
5926
|
const template = document.createElement('template');
|
5927
5927
|
|
5928
5928
|
template.innerHTML = `
|
5929
|
-
<${componentName$
|
5929
|
+
<${componentName$L}
|
5930
5930
|
bordered="true"
|
5931
5931
|
name="code"
|
5932
5932
|
tabindex="-1"
|
5933
5933
|
slot="input"
|
5934
|
-
><slot></slot></${componentName$
|
5934
|
+
><slot></slot></${componentName$L}>
|
5935
5935
|
`;
|
5936
5936
|
|
5937
5937
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
5938
5938
|
|
5939
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
5939
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$L);
|
5940
5940
|
|
5941
5941
|
forwardAttrs(this, this.inputElement, { includeAttrs: ['digits', 'size', 'loading'] });
|
5942
5942
|
}
|
@@ -6088,13 +6088,13 @@ const PasscodeClass = compose(
|
|
6088
6088
|
${resetInputCursor('vaadin-text-field')}
|
6089
6089
|
`,
|
6090
6090
|
excludeAttrsSync: ['tabindex'],
|
6091
|
-
componentName: componentName$
|
6091
|
+
componentName: componentName$K,
|
6092
6092
|
})
|
6093
6093
|
);
|
6094
6094
|
|
6095
|
-
customElements.define(componentName$
|
6095
|
+
customElements.define(componentName$L, PasscodeInternal);
|
6096
6096
|
|
6097
|
-
customElements.define(componentName$
|
6097
|
+
customElements.define(componentName$K, PasscodeClass);
|
6098
6098
|
|
6099
6099
|
const passwordDraggableMixin = (superclass) =>
|
6100
6100
|
class PasswordDraggableMixinClass extends superclass {
|
@@ -6135,7 +6135,7 @@ const passwordDraggableMixin = (superclass) =>
|
|
6135
6135
|
}
|
6136
6136
|
};
|
6137
6137
|
|
6138
|
-
const componentName$
|
6138
|
+
const componentName$J = getComponentName('password');
|
6139
6139
|
|
6140
6140
|
const customMixin$9 = (superclass) =>
|
6141
6141
|
class PasswordFieldMixinClass extends superclass {
|
@@ -6410,11 +6410,11 @@ const PasswordClass = compose(
|
|
6410
6410
|
}
|
6411
6411
|
`,
|
6412
6412
|
excludeAttrsSync: ['tabindex'],
|
6413
|
-
componentName: componentName$
|
6413
|
+
componentName: componentName$J,
|
6414
6414
|
})
|
6415
6415
|
);
|
6416
6416
|
|
6417
|
-
customElements.define(componentName$
|
6417
|
+
customElements.define(componentName$J, PasswordClass);
|
6418
6418
|
|
6419
6419
|
const disableRules = [
|
6420
6420
|
'blockquote',
|
@@ -6440,9 +6440,9 @@ const decodeHTML = (html) => {
|
|
6440
6440
|
/* eslint-disable no-param-reassign */
|
6441
6441
|
|
6442
6442
|
|
6443
|
-
const componentName$
|
6443
|
+
const componentName$I = getComponentName('enriched-text');
|
6444
6444
|
|
6445
|
-
class EnrichedText extends createBaseClass({ componentName: componentName$
|
6445
|
+
class EnrichedText extends createBaseClass({ componentName: componentName$I, baseSelector: ':host > div' }) {
|
6446
6446
|
#origLinkRenderer;
|
6447
6447
|
|
6448
6448
|
#origEmRenderer;
|
@@ -6638,9 +6638,9 @@ const EnrichedTextClass = compose(
|
|
6638
6638
|
componentNameValidationMixin
|
6639
6639
|
)(EnrichedText);
|
6640
6640
|
|
6641
|
-
customElements.define(componentName$
|
6641
|
+
customElements.define(componentName$I, EnrichedTextClass);
|
6642
6642
|
|
6643
|
-
const componentName$
|
6643
|
+
const componentName$H = getComponentName('text-area');
|
6644
6644
|
|
6645
6645
|
const {
|
6646
6646
|
host: host$d,
|
@@ -6716,17 +6716,17 @@ const TextAreaClass = compose(
|
|
6716
6716
|
${resetInputCursor('vaadin-text-area')}
|
6717
6717
|
`,
|
6718
6718
|
excludeAttrsSync: ['tabindex'],
|
6719
|
-
componentName: componentName$
|
6719
|
+
componentName: componentName$H,
|
6720
6720
|
})
|
6721
6721
|
);
|
6722
6722
|
|
6723
|
-
customElements.define(componentName$
|
6723
|
+
customElements.define(componentName$H, TextAreaClass);
|
6724
6724
|
|
6725
6725
|
const observedAttributes$3 = ['src', 'alt'];
|
6726
6726
|
|
6727
|
-
const componentName$
|
6727
|
+
const componentName$G = getComponentName('image');
|
6728
6728
|
|
6729
|
-
const BaseClass$1 = createBaseClass({ componentName: componentName$
|
6729
|
+
const BaseClass$1 = createBaseClass({ componentName: componentName$G, baseSelector: ':host > img' });
|
6730
6730
|
class RawImage extends BaseClass$1 {
|
6731
6731
|
static get observedAttributes() {
|
6732
6732
|
return observedAttributes$3.concat(BaseClass$1.observedAttributes || []);
|
@@ -6766,7 +6766,7 @@ const ImageClass = compose(
|
|
6766
6766
|
draggableMixin
|
6767
6767
|
)(RawImage);
|
6768
6768
|
|
6769
|
-
customElements.define(componentName$
|
6769
|
+
customElements.define(componentName$G, ImageClass);
|
6770
6770
|
|
6771
6771
|
var CountryCodes = [
|
6772
6772
|
// United States should be the first option
|
@@ -8035,7 +8035,7 @@ const parsePhoneNumber = (val) => {
|
|
8035
8035
|
return [countryCode, phoneNumber];
|
8036
8036
|
};
|
8037
8037
|
|
8038
|
-
const componentName$
|
8038
|
+
const componentName$F = getComponentName('phone-field-internal');
|
8039
8039
|
|
8040
8040
|
const commonAttrs$1 = ['disabled', 'size', 'bordered', 'invalid', 'readonly'];
|
8041
8041
|
const countryAttrs = ['country-input-placeholder', 'default-code', 'restrict-countries'];
|
@@ -8049,7 +8049,7 @@ const mapAttrs$1 = {
|
|
8049
8049
|
|
8050
8050
|
const inputRelatedAttrs$1 = [].concat(commonAttrs$1, countryAttrs, phoneAttrs, labelTypeAttrs);
|
8051
8051
|
|
8052
|
-
const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$
|
8052
|
+
const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$F, baseSelector: 'div' });
|
8053
8053
|
|
8054
8054
|
let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
8055
8055
|
static get observedAttributes() {
|
@@ -8266,12 +8266,12 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
|
8266
8266
|
}
|
8267
8267
|
};
|
8268
8268
|
|
8269
|
-
customElements.define(componentName$
|
8269
|
+
customElements.define(componentName$F, PhoneFieldInternal$1);
|
8270
8270
|
|
8271
8271
|
const textVars$1 = TextFieldClass.cssVarList;
|
8272
8272
|
const comboVars = ComboBoxClass.cssVarList;
|
8273
8273
|
|
8274
|
-
const componentName$
|
8274
|
+
const componentName$E = getComponentName('phone-field');
|
8275
8275
|
|
8276
8276
|
const customMixin$8 = (superclass) =>
|
8277
8277
|
class PhoneFieldMixinClass extends superclass {
|
@@ -8285,15 +8285,15 @@ const customMixin$8 = (superclass) =>
|
|
8285
8285
|
const template = document.createElement('template');
|
8286
8286
|
|
8287
8287
|
template.innerHTML = `
|
8288
|
-
<${componentName$
|
8288
|
+
<${componentName$F}
|
8289
8289
|
tabindex="-1"
|
8290
8290
|
slot="input"
|
8291
|
-
></${componentName$
|
8291
|
+
></${componentName$F}>
|
8292
8292
|
`;
|
8293
8293
|
|
8294
8294
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
8295
8295
|
|
8296
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
8296
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$F);
|
8297
8297
|
|
8298
8298
|
forwardAttrs(this.shadowRoot.host, this.inputElement, {
|
8299
8299
|
includeAttrs: [
|
@@ -8515,17 +8515,17 @@ const PhoneFieldClass = compose(
|
|
8515
8515
|
${resetInputLabelPosition('vaadin-text-field')}
|
8516
8516
|
`,
|
8517
8517
|
excludeAttrsSync: ['tabindex'],
|
8518
|
-
componentName: componentName$
|
8518
|
+
componentName: componentName$E,
|
8519
8519
|
})
|
8520
8520
|
);
|
8521
8521
|
|
8522
|
-
customElements.define(componentName$
|
8522
|
+
customElements.define(componentName$E, PhoneFieldClass);
|
8523
8523
|
|
8524
8524
|
const getCountryByCodeId = (countryCode) => {
|
8525
8525
|
return CountryCodes.find((c) => c.code === countryCode)?.dialCode;
|
8526
8526
|
};
|
8527
8527
|
|
8528
|
-
const componentName$
|
8528
|
+
const componentName$D = getComponentName('phone-field-internal-input-box');
|
8529
8529
|
|
8530
8530
|
const observedAttributes$2 = [
|
8531
8531
|
'disabled',
|
@@ -8542,7 +8542,7 @@ const mapAttrs = {
|
|
8542
8542
|
'phone-input-placeholder': 'placeholder',
|
8543
8543
|
};
|
8544
8544
|
|
8545
|
-
const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$
|
8545
|
+
const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$D, baseSelector: 'div' });
|
8546
8546
|
|
8547
8547
|
class PhoneFieldInternal extends BaseInputClass$5 {
|
8548
8548
|
static get observedAttributes() {
|
@@ -8681,11 +8681,11 @@ class PhoneFieldInternal extends BaseInputClass$5 {
|
|
8681
8681
|
}
|
8682
8682
|
}
|
8683
8683
|
|
8684
|
-
customElements.define(componentName$
|
8684
|
+
customElements.define(componentName$D, PhoneFieldInternal);
|
8685
8685
|
|
8686
8686
|
const textVars = TextFieldClass.cssVarList;
|
8687
8687
|
|
8688
|
-
const componentName$
|
8688
|
+
const componentName$C = getComponentName('phone-input-box-field');
|
8689
8689
|
|
8690
8690
|
const customMixin$7 = (superclass) =>
|
8691
8691
|
class PhoneInputBoxFieldMixinClass extends superclass {
|
@@ -8699,15 +8699,15 @@ const customMixin$7 = (superclass) =>
|
|
8699
8699
|
const template = document.createElement('template');
|
8700
8700
|
|
8701
8701
|
template.innerHTML = `
|
8702
|
-
<${componentName$
|
8702
|
+
<${componentName$D}
|
8703
8703
|
tabindex="-1"
|
8704
8704
|
slot="input"
|
8705
|
-
></${componentName$
|
8705
|
+
></${componentName$D}>
|
8706
8706
|
`;
|
8707
8707
|
|
8708
8708
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
8709
8709
|
|
8710
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
8710
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$D);
|
8711
8711
|
|
8712
8712
|
forwardAttrs(this.shadowRoot.host, this.inputElement, {
|
8713
8713
|
includeAttrs: [
|
@@ -8884,26 +8884,26 @@ const PhoneFieldInputBoxClass = compose(
|
|
8884
8884
|
${inputFloatingLabelStyle()}
|
8885
8885
|
`,
|
8886
8886
|
excludeAttrsSync: ['tabindex'],
|
8887
|
-
componentName: componentName$
|
8887
|
+
componentName: componentName$C,
|
8888
8888
|
})
|
8889
8889
|
);
|
8890
8890
|
|
8891
|
-
customElements.define(componentName$
|
8891
|
+
customElements.define(componentName$C, PhoneFieldInputBoxClass);
|
8892
8892
|
|
8893
|
-
const componentName$
|
8893
|
+
const componentName$B = getComponentName('new-password-internal');
|
8894
8894
|
|
8895
8895
|
const interpolateString = (template, values) =>
|
8896
8896
|
template.replace(/{{(\w+)+}}/g, (match, key) => values?.[key] || match);
|
8897
8897
|
|
8898
8898
|
// eslint-disable-next-line max-classes-per-file
|
8899
8899
|
|
8900
|
-
const componentName$
|
8900
|
+
const componentName$A = getComponentName('policy-validation');
|
8901
8901
|
|
8902
8902
|
const overrideAttrs = ['data-password-policy-value-minlength'];
|
8903
8903
|
const dataAttrs = ['data', 'active-policies', 'overrides', ...overrideAttrs];
|
8904
8904
|
const policyAttrs = ['label', 'value', ...dataAttrs];
|
8905
8905
|
|
8906
|
-
class RawPolicyValidation extends createBaseClass({ componentName: componentName$
|
8906
|
+
class RawPolicyValidation extends createBaseClass({ componentName: componentName$A, baseSelector: ':host > div' }) {
|
8907
8907
|
#availablePolicies;
|
8908
8908
|
|
8909
8909
|
#activePolicies = [];
|
@@ -9111,7 +9111,7 @@ const PolicyValidationClass = compose(
|
|
9111
9111
|
componentNameValidationMixin
|
9112
9112
|
)(RawPolicyValidation);
|
9113
9113
|
|
9114
|
-
const componentName$
|
9114
|
+
const componentName$z = getComponentName('new-password');
|
9115
9115
|
|
9116
9116
|
const policyPreviewVars = PolicyValidationClass.cssVarList;
|
9117
9117
|
|
@@ -9125,18 +9125,18 @@ const customMixin$6 = (superclass) =>
|
|
9125
9125
|
const externalInputAttr = this.getAttribute('external-input');
|
9126
9126
|
|
9127
9127
|
template.innerHTML = `
|
9128
|
-
<${componentName$
|
9128
|
+
<${componentName$B}
|
9129
9129
|
name="new-password"
|
9130
9130
|
tabindex="-1"
|
9131
9131
|
slot="input"
|
9132
9132
|
external-input="${externalInputAttr}"
|
9133
9133
|
>
|
9134
|
-
</${componentName$
|
9134
|
+
</${componentName$B}>
|
9135
9135
|
`;
|
9136
9136
|
|
9137
9137
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
9138
9138
|
|
9139
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
9139
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$B);
|
9140
9140
|
|
9141
9141
|
if (this.getAttribute('external-input') === 'true') {
|
9142
9142
|
this.initExternalInput();
|
@@ -9312,11 +9312,11 @@ const NewPasswordClass = compose(
|
|
9312
9312
|
}
|
9313
9313
|
`,
|
9314
9314
|
excludeAttrsSync: ['tabindex'],
|
9315
|
-
componentName: componentName$
|
9315
|
+
componentName: componentName$z,
|
9316
9316
|
})
|
9317
9317
|
);
|
9318
9318
|
|
9319
|
-
customElements.define(componentName$
|
9319
|
+
customElements.define(componentName$A, PolicyValidationClass);
|
9320
9320
|
|
9321
9321
|
const passwordAttrPrefixRegex = /^password-/;
|
9322
9322
|
const confirmAttrPrefixRegex = /^confirm-/;
|
@@ -9348,7 +9348,7 @@ const inputRelatedAttrs = [].concat(
|
|
9348
9348
|
policyPanelAttrs
|
9349
9349
|
);
|
9350
9350
|
|
9351
|
-
const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$
|
9351
|
+
const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$B, baseSelector: 'div' });
|
9352
9352
|
|
9353
9353
|
class NewPasswordInternal extends BaseInputClass$4 {
|
9354
9354
|
static get observedAttributes() {
|
@@ -9558,16 +9558,16 @@ class NewPasswordInternal extends BaseInputClass$4 {
|
|
9558
9558
|
}
|
9559
9559
|
}
|
9560
9560
|
|
9561
|
-
customElements.define(componentName$
|
9561
|
+
customElements.define(componentName$B, NewPasswordInternal);
|
9562
9562
|
|
9563
|
-
customElements.define(componentName$
|
9563
|
+
customElements.define(componentName$z, NewPasswordClass);
|
9564
9564
|
|
9565
|
-
const componentName$
|
9565
|
+
const componentName$y = getComponentName('recaptcha');
|
9566
9566
|
|
9567
9567
|
const observedAttributes$1 = ['enabled', 'site-key', 'action', 'enterprise'];
|
9568
9568
|
|
9569
9569
|
const BaseClass = createBaseClass({
|
9570
|
-
componentName: componentName$
|
9570
|
+
componentName: componentName$y,
|
9571
9571
|
baseSelector: ':host > div',
|
9572
9572
|
});
|
9573
9573
|
class RawRecaptcha extends BaseClass {
|
@@ -9754,7 +9754,7 @@ class RawRecaptcha extends BaseClass {
|
|
9754
9754
|
|
9755
9755
|
const RecaptchaClass = compose(draggableMixin)(RawRecaptcha);
|
9756
9756
|
|
9757
|
-
customElements.define(componentName$
|
9757
|
+
customElements.define(componentName$y, RecaptchaClass);
|
9758
9758
|
|
9759
9759
|
const getFileBase64 = (fileObj) => {
|
9760
9760
|
return new Promise((resolve) => {
|
@@ -9768,7 +9768,7 @@ const getFilename = (fileObj) => {
|
|
9768
9768
|
return fileObj.name.replace(/^.*\\/, '');
|
9769
9769
|
};
|
9770
9770
|
|
9771
|
-
const componentName$
|
9771
|
+
const componentName$x = getComponentName('upload-file');
|
9772
9772
|
|
9773
9773
|
const observedAttributes = [
|
9774
9774
|
'title',
|
@@ -9783,7 +9783,7 @@ const observedAttributes = [
|
|
9783
9783
|
'icon',
|
9784
9784
|
];
|
9785
9785
|
|
9786
|
-
const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$
|
9786
|
+
const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$x, baseSelector: ':host > div' });
|
9787
9787
|
|
9788
9788
|
class RawUploadFile extends BaseInputClass$3 {
|
9789
9789
|
static get observedAttributes() {
|
@@ -9998,7 +9998,7 @@ const UploadFileClass = compose(
|
|
9998
9998
|
componentNameValidationMixin
|
9999
9999
|
)(RawUploadFile);
|
10000
10000
|
|
10001
|
-
customElements.define(componentName$
|
10001
|
+
customElements.define(componentName$x, UploadFileClass);
|
10002
10002
|
|
10003
10003
|
const createBaseButtonSelectionGroupInternalClass = (componentName) => {
|
10004
10004
|
class BaseButtonSelectionGroupInternalClass extends createBaseInputClass({
|
@@ -10096,10 +10096,10 @@ const createBaseButtonSelectionGroupInternalClass = (componentName) => {
|
|
10096
10096
|
return BaseButtonSelectionGroupInternalClass;
|
10097
10097
|
};
|
10098
10098
|
|
10099
|
-
const componentName$
|
10099
|
+
const componentName$w = getComponentName('button-selection-group-internal');
|
10100
10100
|
|
10101
10101
|
class ButtonSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
10102
|
-
componentName$
|
10102
|
+
componentName$w
|
10103
10103
|
) {
|
10104
10104
|
getSelectedNode() {
|
10105
10105
|
return this.items.find((item) => item.hasAttribute('selected'));
|
@@ -10331,7 +10331,7 @@ const buttonSelectionGroupStyles = `
|
|
10331
10331
|
${resetInputCursor('vaadin-text-field')}
|
10332
10332
|
`;
|
10333
10333
|
|
10334
|
-
const componentName$
|
10334
|
+
const componentName$v = getComponentName('button-selection-group');
|
10335
10335
|
|
10336
10336
|
const buttonSelectionGroupMixin = (superclass) =>
|
10337
10337
|
class ButtonMultiSelectionGroupMixinClass extends superclass {
|
@@ -10340,19 +10340,19 @@ const buttonSelectionGroupMixin = (superclass) =>
|
|
10340
10340
|
const template = document.createElement('template');
|
10341
10341
|
|
10342
10342
|
template.innerHTML = `
|
10343
|
-
<${componentName$
|
10343
|
+
<${componentName$w}
|
10344
10344
|
name="button-selection-group"
|
10345
10345
|
slot="input"
|
10346
10346
|
tabindex="-1"
|
10347
10347
|
part="internal-component"
|
10348
10348
|
>
|
10349
10349
|
<slot></slot>
|
10350
|
-
</${componentName$
|
10350
|
+
</${componentName$w}>
|
10351
10351
|
`;
|
10352
10352
|
|
10353
10353
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
10354
10354
|
|
10355
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
10355
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$w);
|
10356
10356
|
|
10357
10357
|
forwardAttrs(this, this.inputElement, {
|
10358
10358
|
includeAttrs: ['size', 'default-value', 'allow-deselect'],
|
@@ -10377,16 +10377,16 @@ const ButtonSelectionGroupClass = compose(
|
|
10377
10377
|
wrappedEleName: 'vaadin-text-field',
|
10378
10378
|
style: () => buttonSelectionGroupStyles,
|
10379
10379
|
excludeAttrsSync: ['tabindex'],
|
10380
|
-
componentName: componentName$
|
10380
|
+
componentName: componentName$v,
|
10381
10381
|
})
|
10382
10382
|
);
|
10383
10383
|
|
10384
|
-
customElements.define(componentName$
|
10384
|
+
customElements.define(componentName$w, ButtonSelectionGroupInternalClass);
|
10385
10385
|
|
10386
|
-
const componentName$
|
10386
|
+
const componentName$u = getComponentName('button-selection-group-item');
|
10387
10387
|
|
10388
10388
|
class RawSelectItem extends createBaseClass({
|
10389
|
-
componentName: componentName$
|
10389
|
+
componentName: componentName$u,
|
10390
10390
|
baseSelector: ':host > descope-button',
|
10391
10391
|
}) {
|
10392
10392
|
get size() {
|
@@ -10493,14 +10493,14 @@ const ButtonSelectionGroupItemClass = compose(
|
|
10493
10493
|
componentNameValidationMixin
|
10494
10494
|
)(RawSelectItem);
|
10495
10495
|
|
10496
|
-
customElements.define(componentName$
|
10496
|
+
customElements.define(componentName$u, ButtonSelectionGroupItemClass);
|
10497
10497
|
|
10498
|
-
customElements.define(componentName$
|
10498
|
+
customElements.define(componentName$v, ButtonSelectionGroupClass);
|
10499
10499
|
|
10500
|
-
const componentName$
|
10500
|
+
const componentName$t = getComponentName('button-multi-selection-group-internal');
|
10501
10501
|
|
10502
10502
|
class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
10503
|
-
componentName$
|
10503
|
+
componentName$t
|
10504
10504
|
) {
|
10505
10505
|
#getSelectedNodes() {
|
10506
10506
|
return this.items.filter((item) => item.hasAttribute('selected'));
|
@@ -10603,7 +10603,7 @@ class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGr
|
|
10603
10603
|
}
|
10604
10604
|
}
|
10605
10605
|
|
10606
|
-
const componentName$
|
10606
|
+
const componentName$s = getComponentName('button-multi-selection-group');
|
10607
10607
|
|
10608
10608
|
const buttonMultiSelectionGroupMixin = (superclass) =>
|
10609
10609
|
class ButtonMultiSelectionGroupMixinClass extends superclass {
|
@@ -10612,19 +10612,19 @@ const buttonMultiSelectionGroupMixin = (superclass) =>
|
|
10612
10612
|
const template = document.createElement('template');
|
10613
10613
|
|
10614
10614
|
template.innerHTML = `
|
10615
|
-
<${componentName$
|
10615
|
+
<${componentName$t}
|
10616
10616
|
name="button-selection-group"
|
10617
10617
|
slot="input"
|
10618
10618
|
tabindex="-1"
|
10619
10619
|
part="internal-component"
|
10620
10620
|
>
|
10621
10621
|
<slot></slot>
|
10622
|
-
</${componentName$
|
10622
|
+
</${componentName$t}>
|
10623
10623
|
`;
|
10624
10624
|
|
10625
10625
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
10626
10626
|
|
10627
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
10627
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$t);
|
10628
10628
|
|
10629
10629
|
forwardAttrs(this, this.inputElement, {
|
10630
10630
|
includeAttrs: ['size', 'default-values', 'min-items-selection', 'max-items-selection'],
|
@@ -10649,13 +10649,13 @@ const ButtonMultiSelectionGroupClass = compose(
|
|
10649
10649
|
wrappedEleName: 'vaadin-text-field',
|
10650
10650
|
style: () => buttonSelectionGroupStyles,
|
10651
10651
|
excludeAttrsSync: ['tabindex'],
|
10652
|
-
componentName: componentName$
|
10652
|
+
componentName: componentName$s,
|
10653
10653
|
})
|
10654
10654
|
);
|
10655
10655
|
|
10656
|
-
customElements.define(componentName$
|
10656
|
+
customElements.define(componentName$t, ButtonMultiSelectionGroupInternalClass);
|
10657
10657
|
|
10658
|
-
customElements.define(componentName$
|
10658
|
+
customElements.define(componentName$s, ButtonMultiSelectionGroupClass);
|
10659
10659
|
|
10660
10660
|
/* eslint-disable no-param-reassign */
|
10661
10661
|
|
@@ -10683,9 +10683,9 @@ class GridTextColumnClass extends GridSortColumn {
|
|
10683
10683
|
}
|
10684
10684
|
}
|
10685
10685
|
|
10686
|
-
const componentName$
|
10686
|
+
const componentName$r = getComponentName('grid-text-column');
|
10687
10687
|
|
10688
|
-
customElements.define(componentName$
|
10688
|
+
customElements.define(componentName$r, GridTextColumnClass);
|
10689
10689
|
|
10690
10690
|
/* eslint-disable no-param-reassign */
|
10691
10691
|
|
@@ -10720,9 +10720,9 @@ class GridCustomColumnClass extends GridTextColumnClass {
|
|
10720
10720
|
|
10721
10721
|
/* eslint-disable no-param-reassign */
|
10722
10722
|
|
10723
|
-
const componentName$
|
10723
|
+
const componentName$q = getComponentName('grid-custom-column');
|
10724
10724
|
|
10725
|
-
customElements.define(componentName$
|
10725
|
+
customElements.define(componentName$q, GridCustomColumnClass);
|
10726
10726
|
|
10727
10727
|
const createCheckboxEle = () => {
|
10728
10728
|
const checkbox = document.createElement('descope-checkbox');
|
@@ -10781,9 +10781,9 @@ class GridSelectionColumnClass extends GridSelectionColumn {
|
|
10781
10781
|
}
|
10782
10782
|
}
|
10783
10783
|
|
10784
|
-
const componentName$
|
10784
|
+
const componentName$p = getComponentName('grid-selection-column');
|
10785
10785
|
|
10786
|
-
customElements.define(componentName$
|
10786
|
+
customElements.define(componentName$p, GridSelectionColumnClass);
|
10787
10787
|
|
10788
10788
|
/* eslint-disable no-param-reassign */
|
10789
10789
|
|
@@ -10822,9 +10822,9 @@ class GridItemDetailsColumnClass extends GridSortColumn {
|
|
10822
10822
|
}
|
10823
10823
|
}
|
10824
10824
|
|
10825
|
-
const componentName$
|
10825
|
+
const componentName$o = getComponentName('grid-item-details-column');
|
10826
10826
|
|
10827
|
-
customElements.define(componentName$
|
10827
|
+
customElements.define(componentName$o, GridItemDetailsColumnClass);
|
10828
10828
|
|
10829
10829
|
const decode = (input) => {
|
10830
10830
|
const txt = document.createElement('textarea');
|
@@ -10836,9 +10836,9 @@ const tpl = (input, inline) => {
|
|
10836
10836
|
return inline ? input : `<pre>${input}</pre>`;
|
10837
10837
|
};
|
10838
10838
|
|
10839
|
-
const componentName$
|
10839
|
+
const componentName$n = getComponentName('code-snippet');
|
10840
10840
|
|
10841
|
-
let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$
|
10841
|
+
let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$n, baseSelector: ':host > code' }) {
|
10842
10842
|
static get observedAttributes() {
|
10843
10843
|
return ['lang', 'inline'];
|
10844
10844
|
}
|
@@ -11068,7 +11068,7 @@ const CodeSnippetClass = compose(
|
|
11068
11068
|
componentNameValidationMixin
|
11069
11069
|
)(CodeSnippet$1);
|
11070
11070
|
|
11071
|
-
customElements.define(componentName$
|
11071
|
+
customElements.define(componentName$n, CodeSnippetClass);
|
11072
11072
|
|
11073
11073
|
const isValidDataType = (data) => {
|
11074
11074
|
const isValid = Array.isArray(data);
|
@@ -11143,7 +11143,7 @@ const defaultRowDetailsRenderer = (item, itemLabelsMapping) => {
|
|
11143
11143
|
`;
|
11144
11144
|
};
|
11145
11145
|
|
11146
|
-
const componentName$
|
11146
|
+
const componentName$m = getComponentName('grid');
|
11147
11147
|
|
11148
11148
|
const GridMixin = (superclass) =>
|
11149
11149
|
class GridMixinClass extends superclass {
|
@@ -11497,13 +11497,13 @@ const GridClass = compose(
|
|
11497
11497
|
/*!css*/
|
11498
11498
|
`,
|
11499
11499
|
excludeAttrsSync: ['columns', 'tabindex'],
|
11500
|
-
componentName: componentName$
|
11500
|
+
componentName: componentName$m,
|
11501
11501
|
})
|
11502
11502
|
);
|
11503
11503
|
|
11504
|
-
customElements.define(componentName$
|
11504
|
+
customElements.define(componentName$m, GridClass);
|
11505
11505
|
|
11506
|
-
const componentName$
|
11506
|
+
const componentName$l = getComponentName('multi-select-combo-box');
|
11507
11507
|
|
11508
11508
|
const multiSelectComboBoxMixin = (superclass) =>
|
11509
11509
|
class MultiSelectComboBoxMixinClass extends superclass {
|
@@ -12137,16 +12137,16 @@ const MultiSelectComboBoxClass = compose(
|
|
12137
12137
|
// Note: we exclude `placeholder` because the vaadin component observes it and
|
12138
12138
|
// tries to override it, causing us to lose the user set placeholder.
|
12139
12139
|
excludeAttrsSync: ['tabindex', 'size', 'data', 'placeholder'],
|
12140
|
-
componentName: componentName$
|
12140
|
+
componentName: componentName$l,
|
12141
12141
|
includeForwardProps: ['items', 'renderer', 'selectedItems'],
|
12142
12142
|
})
|
12143
12143
|
);
|
12144
12144
|
|
12145
|
-
customElements.define(componentName$
|
12145
|
+
customElements.define(componentName$l, MultiSelectComboBoxClass);
|
12146
12146
|
|
12147
|
-
const componentName$
|
12147
|
+
const componentName$k = getComponentName('badge');
|
12148
12148
|
|
12149
|
-
class RawBadge extends createBaseClass({ componentName: componentName$
|
12149
|
+
class RawBadge extends createBaseClass({ componentName: componentName$k, baseSelector: ':host > div' }) {
|
12150
12150
|
constructor() {
|
12151
12151
|
super();
|
12152
12152
|
|
@@ -12197,9 +12197,9 @@ const BadgeClass = compose(
|
|
12197
12197
|
componentNameValidationMixin
|
12198
12198
|
)(RawBadge);
|
12199
12199
|
|
12200
|
-
customElements.define(componentName$
|
12200
|
+
customElements.define(componentName$k, BadgeClass);
|
12201
12201
|
|
12202
|
-
const componentName$
|
12202
|
+
const componentName$j = getComponentName('modal');
|
12203
12203
|
|
12204
12204
|
const customMixin$5 = (superclass) =>
|
12205
12205
|
class ModalMixinClass extends superclass {
|
@@ -12298,11 +12298,11 @@ const ModalClass = compose(
|
|
12298
12298
|
wrappedEleName: 'vaadin-dialog',
|
12299
12299
|
style: () => ``,
|
12300
12300
|
excludeAttrsSync: ['tabindex', 'opened'],
|
12301
|
-
componentName: componentName$
|
12301
|
+
componentName: componentName$j,
|
12302
12302
|
})
|
12303
12303
|
);
|
12304
12304
|
|
12305
|
-
customElements.define(componentName$
|
12305
|
+
customElements.define(componentName$j, ModalClass);
|
12306
12306
|
|
12307
12307
|
const vaadinContainerClass = window.customElements.get('vaadin-notification-container');
|
12308
12308
|
|
@@ -12313,7 +12313,7 @@ if (!vaadinContainerClass) {
|
|
12313
12313
|
class NotificationContainerClass extends vaadinContainerClass {}
|
12314
12314
|
customElements.define(getComponentName('notification-container'), NotificationContainerClass);
|
12315
12315
|
|
12316
|
-
const componentName$
|
12316
|
+
const componentName$i = getComponentName('notification-card');
|
12317
12317
|
|
12318
12318
|
const notificationCardMixin = (superclass) =>
|
12319
12319
|
class NotificationCardMixinClass extends superclass {
|
@@ -12421,13 +12421,13 @@ const NotificationCardClass = compose(
|
|
12421
12421
|
}
|
12422
12422
|
`,
|
12423
12423
|
excludeAttrsSync: ['tabindex'],
|
12424
|
-
componentName: componentName$
|
12424
|
+
componentName: componentName$i,
|
12425
12425
|
})
|
12426
12426
|
);
|
12427
12427
|
|
12428
|
-
customElements.define(componentName$
|
12428
|
+
customElements.define(componentName$i, NotificationCardClass);
|
12429
12429
|
|
12430
|
-
const componentName$
|
12430
|
+
const componentName$h = getComponentName('notification');
|
12431
12431
|
|
12432
12432
|
const NotificationMixin = (superclass) =>
|
12433
12433
|
class NotificationMixinClass extends superclass {
|
@@ -12522,14 +12522,14 @@ const NotificationClass = compose(
|
|
12522
12522
|
createProxy({
|
12523
12523
|
wrappedEleName: 'vaadin-notification',
|
12524
12524
|
excludeAttrsSync: ['tabindex'],
|
12525
|
-
componentName: componentName$
|
12525
|
+
componentName: componentName$h,
|
12526
12526
|
})
|
12527
12527
|
);
|
12528
12528
|
|
12529
|
-
customElements.define(componentName$
|
12529
|
+
customElements.define(componentName$h, NotificationClass);
|
12530
12530
|
|
12531
|
-
const componentName$
|
12532
|
-
class RawAvatar extends createBaseClass({ componentName: componentName$
|
12531
|
+
const componentName$g = getComponentName('avatar');
|
12532
|
+
class RawAvatar extends createBaseClass({ componentName: componentName$g, baseSelector: ':host > .wrapper' }) {
|
12533
12533
|
constructor() {
|
12534
12534
|
super();
|
12535
12535
|
|
@@ -12633,11 +12633,11 @@ const AvatarClass = compose(
|
|
12633
12633
|
componentNameValidationMixin
|
12634
12634
|
)(RawAvatar);
|
12635
12635
|
|
12636
|
-
customElements.define(componentName$
|
12636
|
+
customElements.define(componentName$g, AvatarClass);
|
12637
12637
|
|
12638
|
-
const componentName$
|
12638
|
+
const componentName$f = getComponentName('mappings-field-internal');
|
12639
12639
|
|
12640
|
-
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$
|
12640
|
+
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$f, baseSelector: 'div' });
|
12641
12641
|
|
12642
12642
|
class MappingsFieldInternal extends BaseInputClass$2 {
|
12643
12643
|
#errorItem;
|
@@ -12872,7 +12872,7 @@ class MappingsFieldInternal extends BaseInputClass$2 {
|
|
12872
12872
|
}
|
12873
12873
|
}
|
12874
12874
|
|
12875
|
-
const componentName$
|
12875
|
+
const componentName$e = getComponentName('mappings-field');
|
12876
12876
|
|
12877
12877
|
const customMixin$4 = (superclass) =>
|
12878
12878
|
class MappingsFieldMixinClass extends superclass {
|
@@ -12901,14 +12901,14 @@ const customMixin$4 = (superclass) =>
|
|
12901
12901
|
const template = document.createElement('template');
|
12902
12902
|
|
12903
12903
|
template.innerHTML = `
|
12904
|
-
<${componentName$
|
12904
|
+
<${componentName$f}
|
12905
12905
|
tabindex="-1"
|
12906
|
-
></${componentName$
|
12906
|
+
></${componentName$f}>
|
12907
12907
|
`;
|
12908
12908
|
|
12909
12909
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
12910
12910
|
|
12911
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
12911
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$f);
|
12912
12912
|
|
12913
12913
|
forwardAttrs(this, this.inputElement, {
|
12914
12914
|
includeAttrs: [
|
@@ -13040,17 +13040,17 @@ const MappingsFieldClass = compose(
|
|
13040
13040
|
'options',
|
13041
13041
|
'error-message',
|
13042
13042
|
],
|
13043
|
-
componentName: componentName$
|
13043
|
+
componentName: componentName$e,
|
13044
13044
|
})
|
13045
13045
|
);
|
13046
13046
|
|
13047
|
-
customElements.define(componentName$
|
13047
|
+
customElements.define(componentName$f, MappingsFieldInternal);
|
13048
13048
|
|
13049
|
-
const componentName$
|
13049
|
+
const componentName$d = getComponentName('mapping-item');
|
13050
13050
|
|
13051
13051
|
const inputAttrs = ['size', 'bordered', 'readonly', 'full-width', 'disabled'];
|
13052
13052
|
|
13053
|
-
const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$
|
13053
|
+
const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$d, baseSelector: 'div' });
|
13054
13054
|
|
13055
13055
|
class MappingItem extends BaseInputClass$1 {
|
13056
13056
|
static get observedAttributes() {
|
@@ -13200,17 +13200,17 @@ class MappingItem extends BaseInputClass$1 {
|
|
13200
13200
|
}
|
13201
13201
|
}
|
13202
13202
|
|
13203
|
-
customElements.define(componentName$
|
13203
|
+
customElements.define(componentName$d, MappingItem);
|
13204
13204
|
|
13205
|
-
customElements.define(componentName$
|
13205
|
+
customElements.define(componentName$e, MappingsFieldClass);
|
13206
13206
|
|
13207
13207
|
var deleteIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTZDMSAxNy4xIDEuOSAxOCAzIDE4SDExQzEyLjEgMTggMTMgMTcuMSAxMyAxNlY0SDFWMTZaTTMgNkgxMVYxNkgzVjZaTTEwLjUgMUw5LjUgMEg0LjVMMy41IDFIMFYzSDE0VjFIMTAuNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
|
13208
13208
|
|
13209
13209
|
var editIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjAwMDIgMC45OTIxNDlDMTAuMDAwMiAxLjAxNjE1IDEwLjAwMDIgMS4wMTYxNSAxMC4wMDAyIDEuMDE2MTVMOC4yMjQxOSAzLjAwODE1SDIuOTkyMTlDMi40NjQxOSAzLjAwODE1IDIuMDA4MTkgMy40NDAxNSAyLjAwODE5IDMuOTkyMTVWMTIuMDA4MkMyLjAwODE5IDEyLjUzNjIgMi40NDAxOSAxMi45OTIyIDIuOTkyMTkgMTIuOTkyMkg1LjUzNjE5QzUuODQ4MTkgMTMuMDQwMiA2LjE2MDE5IDEzLjA0MDIgNi40NzIxOSAxMi45OTIySDExLjAwODJDMTEuNTM2MiAxMi45OTIyIDExLjk5MjIgMTIuNTYwMiAxMS45OTIyIDEyLjAwODJWNy43ODQxNkwxMy45MzYyIDUuNjI0MTVMMTQuMDA4MiA1LjY3MjE1VjExLjk4NDJDMTQuMDA4MiAxMy42NjQyIDEyLjY2NDIgMTUuMDA4MiAxMS4wMDgyIDE1LjAwODJIMy4wMTYxOUMxLjMzNjE5IDE1LjAwODIgLTAuMDA3ODEyNSAxMy42NjQyIC0wLjAwNzgxMjUgMTEuOTg0MlYzLjk5MjE1Qy0wLjAwNzgxMjUgMi4zMzYxNSAxLjMzNjE5IDAuOTkyMTQ5IDMuMDE2MTkgMC45OTIxNDlIMTAuMDAwMlpNMTEuMjcyMiAyLjYyNDE1TDEyLjYxNjIgNC4xMTIxNUw3LjcyMDE5IDkuNjgwMTZDNy41MDQxOSA5LjkyMDE2IDYuODMyMTkgMTAuMjMyMiA1LjY4MDE5IDEwLjYxNjJDNS42NTYxOSAxMC42NDAyIDUuNjA4MTkgMTAuNjQwMiA1LjU2MDE5IDEwLjYxNjJDNS40NjQxOSAxMC41OTIyIDUuMzkyMTkgMTAuNDcyMiA1LjQ0MDE5IDEwLjM3NjJDNS43NTIxOSA5LjI0ODE2IDYuMDQwMTkgOC41NTIxNiA2LjI1NjE5IDguMzEyMTZMMTEuMjcyMiAyLjYyNDE1Wk0xMS45MjAyIDEuODU2MTVMMTMuMjg4MiAwLjMyMDE0OUMxMy42NDgyIC0wLjA4Nzg1MTYgMTQuMjcyMiAtMC4xMTE4NTIgMTQuNjgwMiAwLjI3MjE0OUMxNS4wODgyIDAuNjMyMTQ5IDE1LjExMjIgMS4yODAxNSAxNC43NTIyIDEuNjg4MTVMMTMuMjY0MiAzLjM2ODE1TDExLjkyMDIgMS44NTYxNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
|
13210
13210
|
|
13211
|
-
const componentName$
|
13211
|
+
const componentName$c = getComponentName('user-attribute');
|
13212
13212
|
class RawUserAttribute extends createBaseClass({
|
13213
|
-
componentName: componentName$
|
13213
|
+
componentName: componentName$c,
|
13214
13214
|
baseSelector: ':host > .root',
|
13215
13215
|
}) {
|
13216
13216
|
constructor() {
|
@@ -13444,13 +13444,13 @@ const UserAttributeClass = compose(
|
|
13444
13444
|
componentNameValidationMixin
|
13445
13445
|
)(RawUserAttribute);
|
13446
13446
|
|
13447
|
-
customElements.define(componentName$
|
13447
|
+
customElements.define(componentName$c, UserAttributeClass);
|
13448
13448
|
|
13449
13449
|
var greenVIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhDMCAxMi40IDMuNiAxNiA4IDE2QzEyLjQgMTYgMTYgMTIuNCAxNiA4QzE2IDMuNiAxMi40IDAgOCAwWk03LjEgMTEuN0wyLjkgNy42TDQuMyA2LjJMNyA4LjlMMTIgNEwxMy40IDUuNEw3LjEgMTEuN1oiIGZpbGw9IiM0Q0FGNTAiLz4KPC9zdmc+Cg==";
|
13450
13450
|
|
13451
|
-
const componentName$
|
13451
|
+
const componentName$b = getComponentName('user-auth-method');
|
13452
13452
|
class RawUserAuthMethod extends createBaseClass({
|
13453
|
-
componentName: componentName$
|
13453
|
+
componentName: componentName$b,
|
13454
13454
|
baseSelector: ':host > .root',
|
13455
13455
|
}) {
|
13456
13456
|
constructor() {
|
@@ -13642,11 +13642,11 @@ const UserAuthMethodClass = compose(
|
|
13642
13642
|
componentNameValidationMixin
|
13643
13643
|
)(RawUserAuthMethod);
|
13644
13644
|
|
13645
|
-
customElements.define(componentName$
|
13645
|
+
customElements.define(componentName$b, UserAuthMethodClass);
|
13646
13646
|
|
13647
|
-
const componentName$
|
13647
|
+
const componentName$a = getComponentName('saml-group-mappings-internal');
|
13648
13648
|
|
13649
|
-
const BaseInputClass = createBaseInputClass({ componentName: componentName$
|
13649
|
+
const BaseInputClass = createBaseInputClass({ componentName: componentName$a, baseSelector: '' });
|
13650
13650
|
|
13651
13651
|
class SamlGroupMappingsInternal extends BaseInputClass {
|
13652
13652
|
static get observedAttributes() {
|
@@ -13772,7 +13772,7 @@ class SamlGroupMappingsInternal extends BaseInputClass {
|
|
13772
13772
|
}
|
13773
13773
|
}
|
13774
13774
|
|
13775
|
-
const componentName$
|
13775
|
+
const componentName$9 = getComponentName('saml-group-mappings');
|
13776
13776
|
|
13777
13777
|
const customMixin$3 = (superclass) =>
|
13778
13778
|
class SamlGroupMappingsMixinClass extends superclass {
|
@@ -13782,14 +13782,14 @@ const customMixin$3 = (superclass) =>
|
|
13782
13782
|
const template = document.createElement('template');
|
13783
13783
|
|
13784
13784
|
template.innerHTML = `
|
13785
|
-
<${componentName$
|
13785
|
+
<${componentName$a}
|
13786
13786
|
tabindex="-1"
|
13787
|
-
></${componentName$
|
13787
|
+
></${componentName$a}>
|
13788
13788
|
`;
|
13789
13789
|
|
13790
13790
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
13791
13791
|
|
13792
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
13792
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$a);
|
13793
13793
|
|
13794
13794
|
forwardAttrs(this, this.inputElement, {
|
13795
13795
|
includeAttrs: [
|
@@ -13866,15 +13866,15 @@ const SamlGroupMappingsClass = compose(
|
|
13866
13866
|
'options',
|
13867
13867
|
'error-message',
|
13868
13868
|
],
|
13869
|
-
componentName: componentName$
|
13869
|
+
componentName: componentName$9,
|
13870
13870
|
})
|
13871
13871
|
);
|
13872
13872
|
|
13873
|
-
customElements.define(componentName$
|
13873
|
+
customElements.define(componentName$a, SamlGroupMappingsInternal);
|
13874
13874
|
|
13875
|
-
customElements.define(componentName$
|
13875
|
+
customElements.define(componentName$9, SamlGroupMappingsClass);
|
13876
13876
|
|
13877
|
-
const componentName$
|
13877
|
+
const componentName$8 = getComponentName('radio-button');
|
13878
13878
|
|
13879
13879
|
const customMixin$2 = (superclass) =>
|
13880
13880
|
class CustomMixin extends superclass {
|
@@ -13939,11 +13939,11 @@ const RadioButtonClass = compose(
|
|
13939
13939
|
wrappedEleName: 'vaadin-radio-button',
|
13940
13940
|
excludeAttrsSync: ['tabindex', 'data'],
|
13941
13941
|
includeForwardProps: ['checked', 'name', 'disabled'],
|
13942
|
-
componentName: componentName$
|
13942
|
+
componentName: componentName$8,
|
13943
13943
|
})
|
13944
13944
|
);
|
13945
13945
|
|
13946
|
-
const componentName$
|
13946
|
+
const componentName$7 = getComponentName('radio-group');
|
13947
13947
|
|
13948
13948
|
const RadioGroupMixin = (superclass) =>
|
13949
13949
|
class RadioGroupMixinClass extends superclass {
|
@@ -13958,12 +13958,12 @@ const RadioGroupMixin = (superclass) =>
|
|
13958
13958
|
|
13959
13959
|
// we are overriding vaadin children getter so it will run on our custom elements
|
13960
13960
|
Object.defineProperty(this.baseElement, 'children', {
|
13961
|
-
get: () => this.querySelectorAll(componentName$
|
13961
|
+
get: () => this.querySelectorAll(componentName$8),
|
13962
13962
|
});
|
13963
13963
|
|
13964
13964
|
// we are overriding vaadin __filterRadioButtons so it will run on our custom elements
|
13965
13965
|
this.baseElement.__filterRadioButtons = (nodes) => {
|
13966
|
-
return nodes.filter((node) => node.localName === componentName$
|
13966
|
+
return nodes.filter((node) => node.localName === componentName$8);
|
13967
13967
|
};
|
13968
13968
|
|
13969
13969
|
// vaadin radio group missing some input properties
|
@@ -14113,13 +14113,13 @@ const RadioGroupClass = compose(
|
|
14113
14113
|
`,
|
14114
14114
|
|
14115
14115
|
excludeAttrsSync: ['tabindex', 'size', 'data', 'direction'],
|
14116
|
-
componentName: componentName$
|
14116
|
+
componentName: componentName$7,
|
14117
14117
|
includeForwardProps: ['value'],
|
14118
14118
|
})
|
14119
14119
|
);
|
14120
14120
|
|
14121
|
-
customElements.define(componentName$
|
14122
|
-
customElements.define(componentName$
|
14121
|
+
customElements.define(componentName$7, RadioGroupClass);
|
14122
|
+
customElements.define(componentName$8, RadioButtonClass);
|
14123
14123
|
|
14124
14124
|
const activeableMixin = (superclass) =>
|
14125
14125
|
class ActiveableMixinClass extends superclass {
|
@@ -14136,7 +14136,7 @@ const activeableMixin = (superclass) =>
|
|
14136
14136
|
}
|
14137
14137
|
};
|
14138
14138
|
|
14139
|
-
const componentName$
|
14139
|
+
const componentName$6 = getComponentName('list-item');
|
14140
14140
|
|
14141
14141
|
const customMixin$1 = (superclass) =>
|
14142
14142
|
class ListItemMixinClass extends superclass {
|
@@ -14185,11 +14185,11 @@ const ListItemClass = compose(
|
|
14185
14185
|
componentNameValidationMixin,
|
14186
14186
|
customMixin$1,
|
14187
14187
|
activeableMixin
|
14188
|
-
)(createBaseClass({ componentName: componentName$
|
14188
|
+
)(createBaseClass({ componentName: componentName$6, baseSelector: 'slot' }));
|
14189
14189
|
|
14190
|
-
const componentName$
|
14190
|
+
const componentName$5 = getComponentName('list');
|
14191
14191
|
|
14192
|
-
class RawList extends createBaseClass({ componentName: componentName$
|
14192
|
+
class RawList extends createBaseClass({ componentName: componentName$5, baseSelector: '.wrapper' }) {
|
14193
14193
|
static get observedAttributes() {
|
14194
14194
|
return ['variant', 'readonly'];
|
14195
14195
|
}
|
@@ -14336,8 +14336,8 @@ const ListClass = compose(
|
|
14336
14336
|
componentNameValidationMixin
|
14337
14337
|
)(RawList);
|
14338
14338
|
|
14339
|
-
customElements.define(componentName$
|
14340
|
-
customElements.define(componentName$
|
14339
|
+
customElements.define(componentName$5, ListClass);
|
14340
|
+
customElements.define(componentName$6, ListItemClass);
|
14341
14341
|
|
14342
14342
|
const defaultValidateSchema = () => true;
|
14343
14343
|
const defaultItemRenderer = (item) => `<pre>${JSON.stringify(item, null, 4)}</pre>`;
|
@@ -14438,7 +14438,7 @@ const createDynamicDataMixin =
|
|
14438
14438
|
}
|
14439
14439
|
};
|
14440
14440
|
|
14441
|
-
const componentName$
|
14441
|
+
const componentName$4 = getComponentName('apps-list');
|
14442
14442
|
|
14443
14443
|
const limitAbbreviation = (str, limit = 2) =>
|
14444
14444
|
str
|
@@ -14500,7 +14500,7 @@ const AppsListClass = compose(
|
|
14500
14500
|
slots: ['empty-state'],
|
14501
14501
|
wrappedEleName: 'descope-list',
|
14502
14502
|
excludeAttrsSync: ['tabindex', 'class', 'empty'],
|
14503
|
-
componentName: componentName$
|
14503
|
+
componentName: componentName$4,
|
14504
14504
|
style: () => `
|
14505
14505
|
:host {
|
14506
14506
|
width: 100%;
|
@@ -14525,9 +14525,9 @@ const AppsListClass = compose(
|
|
14525
14525
|
})
|
14526
14526
|
);
|
14527
14527
|
|
14528
|
-
customElements.define(componentName$
|
14528
|
+
customElements.define(componentName$4, AppsListClass);
|
14529
14529
|
|
14530
|
-
const componentName$
|
14530
|
+
const componentName$3 = getComponentName('scopes-list');
|
14531
14531
|
const variants = ['checkbox', 'switch'];
|
14532
14532
|
|
14533
14533
|
const itemRenderer = ({ id, desc, required = false }, _, ref) => {
|
@@ -14546,7 +14546,7 @@ const itemRenderer = ({ id, desc, required = false }, _, ref) => {
|
|
14546
14546
|
`;
|
14547
14547
|
};
|
14548
14548
|
|
14549
|
-
class RawScopesList extends createBaseClass({ componentName: componentName$
|
14549
|
+
class RawScopesList extends createBaseClass({ componentName: componentName$3, baseSelector: 'div' }) {
|
14550
14550
|
constructor() {
|
14551
14551
|
super();
|
14552
14552
|
|
@@ -14651,13 +14651,13 @@ const ScopesListClass = compose(
|
|
14651
14651
|
componentNameValidationMixin
|
14652
14652
|
)(RawScopesList);
|
14653
14653
|
|
14654
|
-
customElements.define(componentName$
|
14654
|
+
customElements.define(componentName$3, ScopesListClass);
|
14655
14655
|
|
14656
14656
|
var arrowsImg = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOSAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMTQ0OTIgMTUuNjQ1TDcuNDk5OTIgMTRMMi44MzMyNSAxOC42NjY3TDcuNDk5OTIgMjMuMzMzM0w5LjE0NDkyIDIxLjY4ODNMNy4zMDE1OSAxOS44MzMzSDI0Ljk5OTlWMTcuNUg3LjMwMTU5TDkuMTQ0OTIgMTUuNjQ1WiIgZmlsbD0iIzYzNkM3NCIvPgo8cGF0aCBkPSJNMTkuODU1IDEyLjM1NTNMMjEuNSAxNC4wMDAzTDI2LjE2NjcgOS4zMzM2NkwyMS41IDQuNjY2OTlMMTkuODU1IDYuMzExOTlMMjEuNjk4MyA4LjE2Njk5SDRWMTAuNTAwM0gyMS42OTgzTDE5Ljg1NSAxMi4zNTUzWiIgZmlsbD0iIzYzNkM3NCIvPgo8L3N2Zz4K";
|
14657
14657
|
|
14658
|
-
const componentName$
|
14658
|
+
const componentName$2 = getComponentName('third-party-app-logo');
|
14659
14659
|
class RawThirdPartyAppLogoClass extends createBaseClass({
|
14660
|
-
componentName: componentName$
|
14660
|
+
componentName: componentName$2,
|
14661
14661
|
baseSelector: '.wrapper',
|
14662
14662
|
}) {
|
14663
14663
|
constructor() {
|
@@ -14675,6 +14675,7 @@ class RawThirdPartyAppLogoClass extends createBaseClass({
|
|
14675
14675
|
display: flex;
|
14676
14676
|
justify-content: center;
|
14677
14677
|
align-items: center;
|
14678
|
+
min-width: max-content;
|
14678
14679
|
}
|
14679
14680
|
|
14680
14681
|
.third-party-app-logo {
|
@@ -14750,7 +14751,248 @@ const ThirdPartyAppLogoClass = compose(
|
|
14750
14751
|
componentNameValidationMixin
|
14751
14752
|
)(RawThirdPartyAppLogoClass);
|
14752
14753
|
|
14753
|
-
customElements.define(componentName$
|
14754
|
+
customElements.define(componentName$2, ThirdPartyAppLogoClass);
|
14755
|
+
|
14756
|
+
const componentName$1 = getComponentName('security-questions-setup');
|
14757
|
+
|
14758
|
+
const attrsToSync = [
|
14759
|
+
'full-width',
|
14760
|
+
'readonly',
|
14761
|
+
'size',
|
14762
|
+
'label-type',
|
14763
|
+
'question-label',
|
14764
|
+
'question-placeholder',
|
14765
|
+
'question-data-errormessage-value-missing',
|
14766
|
+
'answer-label',
|
14767
|
+
'answer-placeholder',
|
14768
|
+
'answer-data-errormessage-value-missing',
|
14769
|
+
];
|
14770
|
+
|
14771
|
+
const attrsToReRender = ['count', 'questions'];
|
14772
|
+
class RawSecurityQuestionsSetup extends createBaseClass({ componentName: componentName$1, baseSelector: 'div' }) {
|
14773
|
+
constructor() {
|
14774
|
+
super();
|
14775
|
+
|
14776
|
+
this.attachShadow({ mode: 'open' }).innerHTML = `
|
14777
|
+
<style>
|
14778
|
+
:host {
|
14779
|
+
display: inline-flex;
|
14780
|
+
}
|
14781
|
+
|
14782
|
+
div {
|
14783
|
+
display: flex;
|
14784
|
+
flex-direction: column;
|
14785
|
+
}
|
14786
|
+
|
14787
|
+
</style>
|
14788
|
+
<div></div>
|
14789
|
+
`;
|
14790
|
+
}
|
14791
|
+
|
14792
|
+
get isReadOnly() {
|
14793
|
+
return this.getAttribute('readonly') === 'true';
|
14794
|
+
}
|
14795
|
+
|
14796
|
+
get size() {
|
14797
|
+
return this.getAttribute('size') || 'sm';
|
14798
|
+
}
|
14799
|
+
|
14800
|
+
get count() {
|
14801
|
+
return Number(this.getAttribute('count')) || 0;
|
14802
|
+
}
|
14803
|
+
|
14804
|
+
#renderQuestions() {
|
14805
|
+
const res = Array.from({ length: this.count }).map(
|
14806
|
+
(_, index) =>
|
14807
|
+
// <!--html-->
|
14808
|
+
`
|
14809
|
+
<div class="question-wrapper">
|
14810
|
+
<descope-combo-box
|
14811
|
+
data-id="${index}"
|
14812
|
+
item-label-path="data-name"
|
14813
|
+
item-value-path="data-id"
|
14814
|
+
bordered="true"
|
14815
|
+
required="true"
|
14816
|
+
clear-button-visible="true"
|
14817
|
+
></descope-combo-box>
|
14818
|
+
|
14819
|
+
<descope-text-field
|
14820
|
+
data-id="${index}"
|
14821
|
+
required="true"
|
14822
|
+
bordered="true"
|
14823
|
+
minlength="2"
|
14824
|
+
></descope-text-field>
|
14825
|
+
</div>
|
14826
|
+
`
|
14827
|
+
// <!--!html-->
|
14828
|
+
);
|
14829
|
+
|
14830
|
+
this.baseElement.innerHTML = res.join(
|
14831
|
+
'<spacer></spacer><descope-divider></descope-divider><spacer></spacer>'
|
14832
|
+
);
|
14833
|
+
|
14834
|
+
this.comboBoxes.forEach((el) => {
|
14835
|
+
el.addEventListener('change', (e) => {
|
14836
|
+
this.updateRemainingCombosData(e.target);
|
14837
|
+
const AttachedTextField = this.getAttachedTextField(e.target);
|
14838
|
+
|
14839
|
+
AttachedTextField.value = '';
|
14840
|
+
});
|
14841
|
+
|
14842
|
+
// eslint-disable-next-line no-param-reassign
|
14843
|
+
el.data = this.data;
|
14844
|
+
});
|
14845
|
+
|
14846
|
+
this.#syncAttrs(attrsToSync);
|
14847
|
+
}
|
14848
|
+
|
14849
|
+
getAttachedTextField(combo) {
|
14850
|
+
const selector = `descope-text-field[data-id="${combo.getAttribute('data-id')}"]`;
|
14851
|
+
|
14852
|
+
return this.baseElement.querySelector(selector);
|
14853
|
+
}
|
14854
|
+
|
14855
|
+
filterData(comboValue) {
|
14856
|
+
const res = this.data.filter((item) => {
|
14857
|
+
return item.value === comboValue || !this.selectedQuestionIds.includes(item.value);
|
14858
|
+
});
|
14859
|
+
|
14860
|
+
return res;
|
14861
|
+
}
|
14862
|
+
|
14863
|
+
reportValidity() {
|
14864
|
+
this.inputs.reverse().forEach((el) => el.reportValidity());
|
14865
|
+
|
14866
|
+
return this.checkValidity();
|
14867
|
+
}
|
14868
|
+
|
14869
|
+
checkValidity() {
|
14870
|
+
return [...this.comboBoxes, ...this.textFields].every((el) => el.checkValidity());
|
14871
|
+
}
|
14872
|
+
|
14873
|
+
updateRemainingCombosData(sourceCombo) {
|
14874
|
+
this.comboBoxes
|
14875
|
+
.filter((combo) => combo !== sourceCombo)
|
14876
|
+
.forEach((combo) => {
|
14877
|
+
// eslint-disable-next-line no-param-reassign
|
14878
|
+
combo.data = this.filterData(combo.value);
|
14879
|
+
});
|
14880
|
+
}
|
14881
|
+
|
14882
|
+
get questions() {
|
14883
|
+
try {
|
14884
|
+
return JSON.parse(this.getAttribute('questions')) || [];
|
14885
|
+
} catch (e) {
|
14886
|
+
// eslint-disable-next-line no-console
|
14887
|
+
console.error(componentName$1, 'Error parsing data attribute', e);
|
14888
|
+
return [];
|
14889
|
+
}
|
14890
|
+
}
|
14891
|
+
|
14892
|
+
// this returns the structure expected by the combo box
|
14893
|
+
get data() {
|
14894
|
+
return this.questions.map(({ id, text }) => ({ value: id, label: text }));
|
14895
|
+
}
|
14896
|
+
|
14897
|
+
get comboBoxes() {
|
14898
|
+
return Array.from(this.baseElement.querySelectorAll('descope-combo-box'));
|
14899
|
+
}
|
14900
|
+
|
14901
|
+
get textFields() {
|
14902
|
+
return Array.from(this.baseElement.querySelectorAll('descope-text-field'));
|
14903
|
+
}
|
14904
|
+
|
14905
|
+
get inputs() {
|
14906
|
+
return Array.from(this.baseElement.querySelectorAll('descope-combo-box, descope-text-field'));
|
14907
|
+
}
|
14908
|
+
|
14909
|
+
get selectedQuestionIds() {
|
14910
|
+
return this.comboBoxes.map((el) => el.value);
|
14911
|
+
}
|
14912
|
+
|
14913
|
+
get value() {
|
14914
|
+
return this.comboBoxes.map((combo) => {
|
14915
|
+
const id = combo.value;
|
14916
|
+
const answer = this.getAttachedTextField(combo).value;
|
14917
|
+
|
14918
|
+
return { id, answer };
|
14919
|
+
});
|
14920
|
+
}
|
14921
|
+
|
14922
|
+
set value(val = []) {
|
14923
|
+
val.forEach((item, index) => {
|
14924
|
+
const combo = this.comboBoxes[index];
|
14925
|
+
const textField = this.getAttachedTextField(combo);
|
14926
|
+
|
14927
|
+
combo.value = item.id;
|
14928
|
+
textField.value = item.answer;
|
14929
|
+
});
|
14930
|
+
}
|
14931
|
+
|
14932
|
+
// eslint-disable-next-line class-methods-use-this
|
14933
|
+
#updateAttribute(ele, attrName, value) {
|
14934
|
+
if (value === null) ele.removeAttribute(attrName);
|
14935
|
+
else ele.setAttribute(attrName, value);
|
14936
|
+
}
|
14937
|
+
|
14938
|
+
#syncAttrs(attrs) {
|
14939
|
+
const componentMap = {
|
14940
|
+
question: this.comboBoxes,
|
14941
|
+
answer: this.textFields,
|
14942
|
+
};
|
14943
|
+
|
14944
|
+
attrs.forEach((attr) => {
|
14945
|
+
const [maybeComponentType, ...rest] = attr.split('-');
|
14946
|
+
const elements = componentMap[maybeComponentType] || this.inputs;
|
14947
|
+
const attrName = componentMap[maybeComponentType] ? rest.join('-') : attr;
|
14948
|
+
|
14949
|
+
elements.forEach((el) => {
|
14950
|
+
this.#updateAttribute(el, attrName, this.getAttribute(attr));
|
14951
|
+
});
|
14952
|
+
});
|
14953
|
+
}
|
14954
|
+
|
14955
|
+
init() {
|
14956
|
+
super.init?.();
|
14957
|
+
// render new components
|
14958
|
+
observeAttributes(
|
14959
|
+
this,
|
14960
|
+
() => {
|
14961
|
+
this.#renderQuestions();
|
14962
|
+
},
|
14963
|
+
{ includeAttrs: attrsToReRender }
|
14964
|
+
);
|
14965
|
+
|
14966
|
+
// update existing components
|
14967
|
+
observeAttributes(this, this.#syncAttrs.bind(this), {
|
14968
|
+
includeAttrs: attrsToSync,
|
14969
|
+
});
|
14970
|
+
}
|
14971
|
+
}
|
14972
|
+
|
14973
|
+
const SecurityQuestionsSetupClass = compose(
|
14974
|
+
createStyleMixin({
|
14975
|
+
mappings: {
|
14976
|
+
hostWidth: [{ selector: () => ':host', property: 'width' }, { property: 'width' }],
|
14977
|
+
hostDirection: [
|
14978
|
+
{ selector: () => ':host', property: 'direction' },
|
14979
|
+
{
|
14980
|
+
selector: () => ComboBoxClass.componentName,
|
14981
|
+
property: ComboBoxClass.cssVarList.hostDirection,
|
14982
|
+
},
|
14983
|
+
{
|
14984
|
+
selector: () => TextFieldClass.componentName,
|
14985
|
+
property: TextFieldClass.cssVarList.hostDirection,
|
14986
|
+
},
|
14987
|
+
],
|
14988
|
+
gap: { selector: () => 'div', property: 'gap' },
|
14989
|
+
},
|
14990
|
+
}),
|
14991
|
+
draggableMixin,
|
14992
|
+
componentNameValidationMixin
|
14993
|
+
)(RawSecurityQuestionsSetup);
|
14994
|
+
|
14995
|
+
customElements.define(componentName$1, SecurityQuestionsSetupClass);
|
14754
14996
|
|
14755
14997
|
const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
|
14756
14998
|
|
@@ -15182,7 +15424,7 @@ const globals = {
|
|
15182
15424
|
fonts,
|
15183
15425
|
direction,
|
15184
15426
|
};
|
15185
|
-
const vars$
|
15427
|
+
const vars$R = getThemeVars(globals);
|
15186
15428
|
|
15187
15429
|
const globalRefs$y = getThemeRefs(globals);
|
15188
15430
|
const compVars$6 = ButtonClass.cssVarList;
|
@@ -15195,7 +15437,7 @@ const mode = {
|
|
15195
15437
|
surface: globalRefs$y.colors.surface,
|
15196
15438
|
};
|
15197
15439
|
|
15198
|
-
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$
|
15440
|
+
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$12);
|
15199
15441
|
|
15200
15442
|
const button = {
|
15201
15443
|
...helperTheme$4,
|
@@ -15307,7 +15549,7 @@ const button = {
|
|
15307
15549
|
},
|
15308
15550
|
};
|
15309
15551
|
|
15310
|
-
const vars$
|
15552
|
+
const vars$Q = {
|
15311
15553
|
...compVars$6,
|
15312
15554
|
...helperVars$4,
|
15313
15555
|
};
|
@@ -15315,13 +15557,13 @@ const vars$P = {
|
|
15315
15557
|
var button$1 = /*#__PURE__*/Object.freeze({
|
15316
15558
|
__proto__: null,
|
15317
15559
|
default: button,
|
15318
|
-
vars: vars$
|
15560
|
+
vars: vars$Q
|
15319
15561
|
});
|
15320
15562
|
|
15321
15563
|
const componentName = getComponentName('input-wrapper');
|
15322
15564
|
const globalRefs$x = getThemeRefs(globals);
|
15323
15565
|
|
15324
|
-
const [theme$1, refs, vars$
|
15566
|
+
const [theme$1, refs, vars$P] = createHelperVars(
|
15325
15567
|
{
|
15326
15568
|
labelTextColor: globalRefs$x.colors.surface.dark,
|
15327
15569
|
labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
|
@@ -15440,13 +15682,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
|
|
15440
15682
|
__proto__: null,
|
15441
15683
|
default: theme$1,
|
15442
15684
|
refs: refs,
|
15443
|
-
vars: vars$
|
15685
|
+
vars: vars$P
|
15444
15686
|
});
|
15445
15687
|
|
15446
15688
|
const globalRefs$w = getThemeRefs(globals);
|
15447
|
-
const vars$
|
15689
|
+
const vars$O = TextFieldClass.cssVarList;
|
15448
15690
|
|
15449
15691
|
const textField = {
|
15692
|
+
[vars$O.hostWidth]: refs.width,
|
15693
|
+
[vars$O.hostMinWidth]: refs.minWidth,
|
15694
|
+
[vars$O.hostDirection]: refs.direction,
|
15695
|
+
[vars$O.fontSize]: refs.fontSize,
|
15696
|
+
[vars$O.fontFamily]: refs.fontFamily,
|
15697
|
+
[vars$O.labelFontSize]: refs.labelFontSize,
|
15698
|
+
[vars$O.labelFontWeight]: refs.labelFontWeight,
|
15699
|
+
[vars$O.labelTextColor]: refs.labelTextColor,
|
15700
|
+
[vars$O.labelRequiredIndicator]: refs.requiredIndicator,
|
15701
|
+
[vars$O.errorMessageTextColor]: refs.errorMessageTextColor,
|
15702
|
+
[vars$O.inputValueTextColor]: refs.valueTextColor,
|
15703
|
+
[vars$O.inputPlaceholderColor]: refs.placeholderTextColor,
|
15704
|
+
[vars$O.inputBorderWidth]: refs.borderWidth,
|
15705
|
+
[vars$O.inputBorderStyle]: refs.borderStyle,
|
15706
|
+
[vars$O.inputBorderColor]: refs.borderColor,
|
15707
|
+
[vars$O.inputBorderRadius]: refs.borderRadius,
|
15708
|
+
[vars$O.inputOutlineWidth]: refs.outlineWidth,
|
15709
|
+
[vars$O.inputOutlineStyle]: refs.outlineStyle,
|
15710
|
+
[vars$O.inputOutlineColor]: refs.outlineColor,
|
15711
|
+
[vars$O.inputOutlineOffset]: refs.outlineOffset,
|
15712
|
+
[vars$O.inputBackgroundColor]: refs.backgroundColor,
|
15713
|
+
[vars$O.inputHeight]: refs.inputHeight,
|
15714
|
+
[vars$O.inputHorizontalPadding]: refs.horizontalPadding,
|
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
|
+
},
|
15722
|
+
[vars$O.labelPosition]: refs.labelPosition,
|
15723
|
+
[vars$O.labelTopPosition]: refs.labelTopPosition,
|
15724
|
+
[vars$O.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
15725
|
+
[vars$O.inputTransformY]: refs.inputTransformY,
|
15726
|
+
[vars$O.inputTransition]: refs.inputTransition,
|
15727
|
+
[vars$O.marginInlineStart]: refs.marginInlineStart,
|
15728
|
+
[vars$O.placeholderOpacity]: refs.placeholderOpacity,
|
15729
|
+
[vars$O.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15730
|
+
[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
|
+
};
|
15736
|
+
|
15737
|
+
var textField$1 = /*#__PURE__*/Object.freeze({
|
15738
|
+
__proto__: null,
|
15739
|
+
default: textField,
|
15740
|
+
textField: textField,
|
15741
|
+
vars: vars$O
|
15742
|
+
});
|
15743
|
+
|
15744
|
+
const globalRefs$v = getThemeRefs(globals);
|
15745
|
+
const vars$N = PasswordClass.cssVarList;
|
15746
|
+
|
15747
|
+
const password = {
|
15450
15748
|
[vars$N.hostWidth]: refs.width,
|
15451
15749
|
[vars$N.hostMinWidth]: refs.minWidth,
|
15452
15750
|
[vars$N.hostDirection]: refs.direction,
|
@@ -15455,10 +15753,13 @@ const textField = {
|
|
15455
15753
|
[vars$N.labelFontSize]: refs.labelFontSize,
|
15456
15754
|
[vars$N.labelFontWeight]: refs.labelFontWeight,
|
15457
15755
|
[vars$N.labelTextColor]: refs.labelTextColor,
|
15458
|
-
[vars$N.labelRequiredIndicator]: refs.requiredIndicator,
|
15459
15756
|
[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,
|
15460
15761
|
[vars$N.inputValueTextColor]: refs.valueTextColor,
|
15461
|
-
[vars$N.
|
15762
|
+
[vars$N.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
15462
15763
|
[vars$N.inputBorderWidth]: refs.borderWidth,
|
15463
15764
|
[vars$N.inputBorderStyle]: refs.borderStyle,
|
15464
15765
|
[vars$N.inputBorderColor]: refs.borderColor,
|
@@ -15467,16 +15768,9 @@ const textField = {
|
|
15467
15768
|
[vars$N.inputOutlineStyle]: refs.outlineStyle,
|
15468
15769
|
[vars$N.inputOutlineColor]: refs.outlineColor,
|
15469
15770
|
[vars$N.inputOutlineOffset]: refs.outlineOffset,
|
15470
|
-
[vars$N.
|
15471
|
-
[vars$N.
|
15472
|
-
[vars$N.
|
15473
|
-
[vars$N.helperTextColor]: refs.helperTextColor,
|
15474
|
-
[vars$N.textAlign]: refs.textAlign,
|
15475
|
-
textAlign: {
|
15476
|
-
right: { [vars$N.inputTextAlign]: 'right' },
|
15477
|
-
left: { [vars$N.inputTextAlign]: 'left' },
|
15478
|
-
center: { [vars$N.inputTextAlign]: 'center' },
|
15479
|
-
},
|
15771
|
+
[vars$N.revealButtonOffset]: globalRefs$v.spacing.md,
|
15772
|
+
[vars$N.revealButtonSize]: refs.toggleButtonSize,
|
15773
|
+
[vars$N.revealButtonColor]: refs.placeholderTextColor,
|
15480
15774
|
[vars$N.labelPosition]: refs.labelPosition,
|
15481
15775
|
[vars$N.labelTopPosition]: refs.labelTopPosition,
|
15482
15776
|
[vars$N.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -15486,23 +15780,17 @@ const textField = {
|
|
15486
15780
|
[vars$N.placeholderOpacity]: refs.placeholderOpacity,
|
15487
15781
|
[vars$N.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15488
15782
|
[vars$N.valueInputHeight]: refs.valueInputHeight,
|
15489
|
-
[vars$N.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15490
|
-
[vars$N.inputIconOffset]: globalRefs$w.spacing.md,
|
15491
|
-
[vars$N.inputIconSize]: refs.inputIconSize,
|
15492
|
-
[vars$N.inputIconColor]: refs.placeholderTextColor,
|
15493
15783
|
};
|
15494
15784
|
|
15495
|
-
var
|
15785
|
+
var password$1 = /*#__PURE__*/Object.freeze({
|
15496
15786
|
__proto__: null,
|
15497
|
-
default:
|
15498
|
-
textField: textField,
|
15787
|
+
default: password,
|
15499
15788
|
vars: vars$N
|
15500
15789
|
});
|
15501
15790
|
|
15502
|
-
const
|
15503
|
-
const vars$M = PasswordClass.cssVarList;
|
15791
|
+
const vars$M = NumberFieldClass.cssVarList;
|
15504
15792
|
|
15505
|
-
const
|
15793
|
+
const numberField = {
|
15506
15794
|
[vars$M.hostWidth]: refs.width,
|
15507
15795
|
[vars$M.hostMinWidth]: refs.minWidth,
|
15508
15796
|
[vars$M.hostDirection]: refs.direction,
|
@@ -15512,12 +15800,8 @@ const password = {
|
|
15512
15800
|
[vars$M.labelFontWeight]: refs.labelFontWeight,
|
15513
15801
|
[vars$M.labelTextColor]: refs.labelTextColor,
|
15514
15802
|
[vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
|
15515
|
-
[vars$M.inputHorizontalPadding]: refs.horizontalPadding,
|
15516
|
-
[vars$M.inputHeight]: refs.inputHeight,
|
15517
|
-
[vars$M.inputBackgroundColor]: refs.backgroundColor,
|
15518
|
-
[vars$M.labelRequiredIndicator]: refs.requiredIndicator,
|
15519
15803
|
[vars$M.inputValueTextColor]: refs.valueTextColor,
|
15520
|
-
[vars$M.
|
15804
|
+
[vars$M.inputPlaceholderColor]: refs.placeholderTextColor,
|
15521
15805
|
[vars$M.inputBorderWidth]: refs.borderWidth,
|
15522
15806
|
[vars$M.inputBorderStyle]: refs.borderStyle,
|
15523
15807
|
[vars$M.inputBorderColor]: refs.borderColor,
|
@@ -15526,9 +15810,10 @@ const password = {
|
|
15526
15810
|
[vars$M.inputOutlineStyle]: refs.outlineStyle,
|
15527
15811
|
[vars$M.inputOutlineColor]: refs.outlineColor,
|
15528
15812
|
[vars$M.inputOutlineOffset]: refs.outlineOffset,
|
15529
|
-
[vars$M.
|
15530
|
-
[vars$M.
|
15531
|
-
[vars$M.
|
15813
|
+
[vars$M.inputBackgroundColor]: refs.backgroundColor,
|
15814
|
+
[vars$M.labelRequiredIndicator]: refs.requiredIndicator,
|
15815
|
+
[vars$M.inputHorizontalPadding]: refs.horizontalPadding,
|
15816
|
+
[vars$M.inputHeight]: refs.inputHeight,
|
15532
15817
|
[vars$M.labelPosition]: refs.labelPosition,
|
15533
15818
|
[vars$M.labelTopPosition]: refs.labelTopPosition,
|
15534
15819
|
[vars$M.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -15538,17 +15823,18 @@ const password = {
|
|
15538
15823
|
[vars$M.placeholderOpacity]: refs.placeholderOpacity,
|
15539
15824
|
[vars$M.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15540
15825
|
[vars$M.valueInputHeight]: refs.valueInputHeight,
|
15826
|
+
[vars$M.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15541
15827
|
};
|
15542
15828
|
|
15543
|
-
var
|
15829
|
+
var numberField$1 = /*#__PURE__*/Object.freeze({
|
15544
15830
|
__proto__: null,
|
15545
|
-
default:
|
15831
|
+
default: numberField,
|
15546
15832
|
vars: vars$M
|
15547
15833
|
});
|
15548
15834
|
|
15549
|
-
const vars$L =
|
15835
|
+
const vars$L = EmailFieldClass.cssVarList;
|
15550
15836
|
|
15551
|
-
const
|
15837
|
+
const emailField = {
|
15552
15838
|
[vars$L.hostWidth]: refs.width,
|
15553
15839
|
[vars$L.hostMinWidth]: refs.minWidth,
|
15554
15840
|
[vars$L.hostDirection]: refs.direction,
|
@@ -15559,6 +15845,7 @@ const numberField = {
|
|
15559
15845
|
[vars$L.labelTextColor]: refs.labelTextColor,
|
15560
15846
|
[vars$L.errorMessageTextColor]: refs.errorMessageTextColor,
|
15561
15847
|
[vars$L.inputValueTextColor]: refs.valueTextColor,
|
15848
|
+
[vars$L.labelRequiredIndicator]: refs.requiredIndicator,
|
15562
15849
|
[vars$L.inputPlaceholderColor]: refs.placeholderTextColor,
|
15563
15850
|
[vars$L.inputBorderWidth]: refs.borderWidth,
|
15564
15851
|
[vars$L.inputBorderStyle]: refs.borderStyle,
|
@@ -15569,7 +15856,6 @@ const numberField = {
|
|
15569
15856
|
[vars$L.inputOutlineColor]: refs.outlineColor,
|
15570
15857
|
[vars$L.inputOutlineOffset]: refs.outlineOffset,
|
15571
15858
|
[vars$L.inputBackgroundColor]: refs.backgroundColor,
|
15572
|
-
[vars$L.labelRequiredIndicator]: refs.requiredIndicator,
|
15573
15859
|
[vars$L.inputHorizontalPadding]: refs.horizontalPadding,
|
15574
15860
|
[vars$L.inputHeight]: refs.inputHeight,
|
15575
15861
|
[vars$L.labelPosition]: refs.labelPosition,
|
@@ -15584,197 +15870,153 @@ const numberField = {
|
|
15584
15870
|
[vars$L.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15585
15871
|
};
|
15586
15872
|
|
15587
|
-
var
|
15873
|
+
var emailField$1 = /*#__PURE__*/Object.freeze({
|
15588
15874
|
__proto__: null,
|
15589
|
-
default:
|
15875
|
+
default: emailField,
|
15590
15876
|
vars: vars$L
|
15591
15877
|
});
|
15592
15878
|
|
15593
|
-
const vars$K =
|
15879
|
+
const vars$K = TextAreaClass.cssVarList;
|
15594
15880
|
|
15595
|
-
const
|
15881
|
+
const textArea = {
|
15596
15882
|
[vars$K.hostWidth]: refs.width,
|
15597
15883
|
[vars$K.hostMinWidth]: refs.minWidth,
|
15598
15884
|
[vars$K.hostDirection]: refs.direction,
|
15599
15885
|
[vars$K.fontSize]: refs.fontSize,
|
15600
15886
|
[vars$K.fontFamily]: refs.fontFamily,
|
15601
|
-
[vars$K.labelFontSize]: refs.labelFontSize,
|
15602
|
-
[vars$K.labelFontWeight]: refs.labelFontWeight,
|
15603
15887
|
[vars$K.labelTextColor]: refs.labelTextColor,
|
15888
|
+
[vars$K.labelRequiredIndicator]: refs.requiredIndicator,
|
15604
15889
|
[vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
|
15890
|
+
[vars$K.inputBackgroundColor]: refs.backgroundColor,
|
15605
15891
|
[vars$K.inputValueTextColor]: refs.valueTextColor,
|
15606
|
-
[vars$K.
|
15607
|
-
[vars$K.
|
15892
|
+
[vars$K.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
15893
|
+
[vars$K.inputBorderRadius]: refs.borderRadius,
|
15608
15894
|
[vars$K.inputBorderWidth]: refs.borderWidth,
|
15609
15895
|
[vars$K.inputBorderStyle]: refs.borderStyle,
|
15610
15896
|
[vars$K.inputBorderColor]: refs.borderColor,
|
15611
|
-
[vars$K.inputBorderRadius]: refs.borderRadius,
|
15612
15897
|
[vars$K.inputOutlineWidth]: refs.outlineWidth,
|
15613
15898
|
[vars$K.inputOutlineStyle]: refs.outlineStyle,
|
15614
15899
|
[vars$K.inputOutlineColor]: refs.outlineColor,
|
15615
15900
|
[vars$K.inputOutlineOffset]: refs.outlineOffset,
|
15616
|
-
[vars$K.
|
15617
|
-
[vars$K.
|
15618
|
-
|
15619
|
-
|
15620
|
-
|
15621
|
-
|
15622
|
-
|
15623
|
-
|
15624
|
-
|
15625
|
-
|
15626
|
-
|
15627
|
-
[vars$K.valueInputHeight]: refs.valueInputHeight,
|
15628
|
-
[vars$K.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
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
|
+
},
|
15629
15912
|
};
|
15630
15913
|
|
15631
|
-
var
|
15914
|
+
var textArea$1 = /*#__PURE__*/Object.freeze({
|
15632
15915
|
__proto__: null,
|
15633
|
-
default:
|
15916
|
+
default: textArea,
|
15634
15917
|
vars: vars$K
|
15635
15918
|
});
|
15636
15919
|
|
15637
|
-
const vars$J =
|
15920
|
+
const vars$J = CheckboxClass.cssVarList;
|
15921
|
+
const checkboxSize = '1.35em';
|
15638
15922
|
|
15639
|
-
const
|
15923
|
+
const checkbox = {
|
15640
15924
|
[vars$J.hostWidth]: refs.width,
|
15641
|
-
[vars$J.hostMinWidth]: refs.minWidth,
|
15642
15925
|
[vars$J.hostDirection]: refs.direction,
|
15643
15926
|
[vars$J.fontSize]: refs.fontSize,
|
15644
15927
|
[vars$J.fontFamily]: refs.fontFamily,
|
15645
15928
|
[vars$J.labelTextColor]: refs.labelTextColor,
|
15646
15929
|
[vars$J.labelRequiredIndicator]: refs.requiredIndicator,
|
15930
|
+
[vars$J.labelFontWeight]: '400',
|
15931
|
+
[vars$J.labelLineHeight]: checkboxSize,
|
15932
|
+
[vars$J.labelSpacing]: '1em',
|
15647
15933
|
[vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
|
15648
|
-
[vars$J.
|
15649
|
-
[vars$J.
|
15650
|
-
[vars$J.
|
15934
|
+
[vars$J.inputOutlineWidth]: refs.outlineWidth,
|
15935
|
+
[vars$J.inputOutlineOffset]: refs.outlineOffset,
|
15936
|
+
[vars$J.inputOutlineColor]: refs.outlineColor,
|
15937
|
+
[vars$J.inputOutlineStyle]: refs.outlineStyle,
|
15651
15938
|
[vars$J.inputBorderRadius]: refs.borderRadius,
|
15939
|
+
[vars$J.inputBorderColor]: refs.borderColor,
|
15652
15940
|
[vars$J.inputBorderWidth]: refs.borderWidth,
|
15653
15941
|
[vars$J.inputBorderStyle]: refs.borderStyle,
|
15654
|
-
[vars$J.
|
15655
|
-
[vars$J.
|
15656
|
-
[vars$J.
|
15657
|
-
[vars$J.inputOutlineColor]: refs.outlineColor,
|
15658
|
-
[vars$J.inputOutlineOffset]: refs.outlineOffset,
|
15659
|
-
[vars$J.inputResizeType]: 'vertical',
|
15660
|
-
[vars$J.inputMinHeight]: '5em',
|
15661
|
-
textAlign: {
|
15662
|
-
right: { [vars$J.inputTextAlign]: 'right' },
|
15663
|
-
left: { [vars$J.inputTextAlign]: 'left' },
|
15664
|
-
center: { [vars$J.inputTextAlign]: 'center' },
|
15665
|
-
},
|
15666
|
-
|
15667
|
-
_readonly: {
|
15668
|
-
[vars$J.inputResizeType]: 'none',
|
15669
|
-
},
|
15942
|
+
[vars$J.inputBackgroundColor]: refs.backgroundColor,
|
15943
|
+
[vars$J.inputSize]: checkboxSize,
|
15944
|
+
[vars$J.inputValueTextColor]: refs.valueTextColor,
|
15670
15945
|
};
|
15671
15946
|
|
15672
|
-
var
|
15947
|
+
var checkbox$1 = /*#__PURE__*/Object.freeze({
|
15673
15948
|
__proto__: null,
|
15674
|
-
default:
|
15949
|
+
default: checkbox,
|
15675
15950
|
vars: vars$J
|
15676
15951
|
});
|
15677
15952
|
|
15678
|
-
const
|
15679
|
-
const
|
15953
|
+
const knobMargin = '2px';
|
15954
|
+
const checkboxHeight = '1.25em';
|
15680
15955
|
|
15681
|
-
const
|
15956
|
+
const globalRefs$u = getThemeRefs(globals);
|
15957
|
+
const vars$I = SwitchToggleClass.cssVarList;
|
15958
|
+
|
15959
|
+
const switchToggle = {
|
15682
15960
|
[vars$I.hostWidth]: refs.width,
|
15683
15961
|
[vars$I.hostDirection]: refs.direction,
|
15684
15962
|
[vars$I.fontSize]: refs.fontSize,
|
15685
15963
|
[vars$I.fontFamily]: refs.fontFamily,
|
15686
|
-
|
15687
|
-
[vars$I.labelRequiredIndicator]: refs.requiredIndicator,
|
15688
|
-
[vars$I.labelFontWeight]: '400',
|
15689
|
-
[vars$I.labelLineHeight]: checkboxSize,
|
15690
|
-
[vars$I.labelSpacing]: '1em',
|
15691
|
-
[vars$I.errorMessageTextColor]: refs.errorMessageTextColor,
|
15964
|
+
|
15692
15965
|
[vars$I.inputOutlineWidth]: refs.outlineWidth,
|
15693
15966
|
[vars$I.inputOutlineOffset]: refs.outlineOffset,
|
15694
15967
|
[vars$I.inputOutlineColor]: refs.outlineColor,
|
15695
15968
|
[vars$I.inputOutlineStyle]: refs.outlineStyle,
|
15696
|
-
[vars$I.inputBorderRadius]: refs.borderRadius,
|
15697
|
-
[vars$I.inputBorderColor]: refs.borderColor,
|
15698
|
-
[vars$I.inputBorderWidth]: refs.borderWidth,
|
15699
|
-
[vars$I.inputBorderStyle]: refs.borderStyle,
|
15700
|
-
[vars$I.inputBackgroundColor]: refs.backgroundColor,
|
15701
|
-
[vars$I.inputSize]: checkboxSize,
|
15702
|
-
[vars$I.inputValueTextColor]: refs.valueTextColor,
|
15703
|
-
};
|
15704
|
-
|
15705
|
-
var checkbox$1 = /*#__PURE__*/Object.freeze({
|
15706
|
-
__proto__: null,
|
15707
|
-
default: checkbox,
|
15708
|
-
vars: vars$I
|
15709
|
-
});
|
15710
15969
|
|
15711
|
-
|
15712
|
-
|
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',
|
15713
15984
|
|
15714
|
-
|
15715
|
-
|
15716
|
-
|
15717
|
-
|
15718
|
-
[vars$
|
15719
|
-
[vars$
|
15720
|
-
[vars$H.fontSize]: refs.fontSize,
|
15721
|
-
[vars$H.fontFamily]: refs.fontFamily,
|
15722
|
-
|
15723
|
-
[vars$H.inputOutlineWidth]: refs.outlineWidth,
|
15724
|
-
[vars$H.inputOutlineOffset]: refs.outlineOffset,
|
15725
|
-
[vars$H.inputOutlineColor]: refs.outlineColor,
|
15726
|
-
[vars$H.inputOutlineStyle]: refs.outlineStyle,
|
15727
|
-
|
15728
|
-
[vars$H.trackBorderStyle]: refs.borderStyle,
|
15729
|
-
[vars$H.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
|
15730
|
-
[vars$H.trackBorderColor]: refs.borderColor,
|
15731
|
-
[vars$H.trackBackgroundColor]: refs.backgroundColor,
|
15732
|
-
[vars$H.trackBorderRadius]: globalRefs$u.radius.md,
|
15733
|
-
[vars$H.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
|
15734
|
-
[vars$H.trackHeight]: checkboxHeight,
|
15735
|
-
|
15736
|
-
[vars$H.knobSize]: `calc(1em - ${knobMargin})`,
|
15737
|
-
[vars$H.knobRadius]: '50%',
|
15738
|
-
[vars$H.knobTopOffset]: '1px',
|
15739
|
-
[vars$H.knobLeftOffset]: knobMargin,
|
15740
|
-
[vars$H.knobColor]: refs.labelTextColor,
|
15741
|
-
[vars$H.knobTransitionDuration]: '0.3s',
|
15742
|
-
|
15743
|
-
[vars$H.labelTextColor]: refs.labelTextColor,
|
15744
|
-
[vars$H.labelFontWeight]: '400',
|
15745
|
-
[vars$H.labelLineHeight]: '1.35em',
|
15746
|
-
[vars$H.labelSpacing]: '1em',
|
15747
|
-
[vars$H.labelRequiredIndicator]: refs.requiredIndicator,
|
15748
|
-
[vars$H.errorMessageTextColor]: refs.errorMessageTextColor,
|
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,
|
15749
15991
|
|
15750
15992
|
_checked: {
|
15751
|
-
[vars$
|
15752
|
-
[vars$
|
15753
|
-
[vars$
|
15754
|
-
[vars$
|
15993
|
+
[vars$I.trackBorderColor]: refs.borderColor,
|
15994
|
+
[vars$I.knobLeftOffset]: `calc(100% - var(${vars$I.knobSize}) - ${knobMargin})`,
|
15995
|
+
[vars$I.knobColor]: refs.valueTextColor,
|
15996
|
+
[vars$I.knobTextColor]: refs.valueTextColor,
|
15755
15997
|
},
|
15756
15998
|
|
15757
15999
|
_disabled: {
|
15758
|
-
[vars$
|
15759
|
-
[vars$
|
15760
|
-
[vars$
|
15761
|
-
[vars$
|
16000
|
+
[vars$I.knobColor]: globalRefs$u.colors.surface.light,
|
16001
|
+
[vars$I.trackBorderColor]: globalRefs$u.colors.surface.light,
|
16002
|
+
[vars$I.trackBackgroundColor]: globalRefs$u.colors.surface.main,
|
16003
|
+
[vars$I.labelTextColor]: refs.labelTextColor,
|
15762
16004
|
_checked: {
|
15763
|
-
[vars$
|
15764
|
-
[vars$
|
16005
|
+
[vars$I.knobColor]: globalRefs$u.colors.surface.light,
|
16006
|
+
[vars$I.trackBackgroundColor]: globalRefs$u.colors.surface.main,
|
15765
16007
|
},
|
15766
16008
|
},
|
15767
16009
|
|
15768
16010
|
_invalid: {
|
15769
|
-
[vars$
|
15770
|
-
[vars$
|
16011
|
+
[vars$I.trackBorderColor]: globalRefs$u.colors.error.main,
|
16012
|
+
[vars$I.knobColor]: globalRefs$u.colors.error.main,
|
15771
16013
|
},
|
15772
16014
|
};
|
15773
16015
|
|
15774
16016
|
var switchToggle$1 = /*#__PURE__*/Object.freeze({
|
15775
16017
|
__proto__: null,
|
15776
16018
|
default: switchToggle,
|
15777
|
-
vars: vars$
|
16019
|
+
vars: vars$I
|
15778
16020
|
});
|
15779
16021
|
|
15780
16022
|
const globalRefs$t = getThemeRefs(globals);
|
@@ -15799,7 +16041,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
|
|
15799
16041
|
horizontalAlignment,
|
15800
16042
|
shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
|
15801
16043
|
},
|
15802
|
-
componentName$
|
16044
|
+
componentName$Y
|
15803
16045
|
);
|
15804
16046
|
|
15805
16047
|
const { shadowColor: shadowColor$3 } = helperRefs$3;
|
@@ -15886,7 +16128,7 @@ const container = {
|
|
15886
16128
|
},
|
15887
16129
|
};
|
15888
16130
|
|
15889
|
-
const vars$
|
16131
|
+
const vars$H = {
|
15890
16132
|
...compVars$5,
|
15891
16133
|
...helperVars$3,
|
15892
16134
|
};
|
@@ -15894,168 +16136,168 @@ const vars$G = {
|
|
15894
16136
|
var container$1 = /*#__PURE__*/Object.freeze({
|
15895
16137
|
__proto__: null,
|
15896
16138
|
default: container,
|
15897
|
-
vars: vars$
|
16139
|
+
vars: vars$H
|
15898
16140
|
});
|
15899
16141
|
|
15900
|
-
const vars$
|
16142
|
+
const vars$G = LogoClass.cssVarList;
|
15901
16143
|
|
15902
16144
|
const logo$2 = {
|
15903
|
-
[vars$
|
16145
|
+
[vars$G.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
|
15904
16146
|
};
|
15905
16147
|
|
15906
16148
|
var logo$3 = /*#__PURE__*/Object.freeze({
|
15907
16149
|
__proto__: null,
|
15908
16150
|
default: logo$2,
|
15909
|
-
vars: vars$
|
16151
|
+
vars: vars$G
|
15910
16152
|
});
|
15911
16153
|
|
15912
|
-
const vars$
|
16154
|
+
const vars$F = TotpImageClass.cssVarList;
|
15913
16155
|
|
15914
16156
|
const logo$1 = {
|
15915
|
-
[vars$
|
16157
|
+
[vars$F.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
|
15916
16158
|
};
|
15917
16159
|
|
15918
16160
|
var totpImage = /*#__PURE__*/Object.freeze({
|
15919
16161
|
__proto__: null,
|
15920
16162
|
default: logo$1,
|
15921
|
-
vars: vars$
|
16163
|
+
vars: vars$F
|
15922
16164
|
});
|
15923
16165
|
|
15924
|
-
const vars$
|
16166
|
+
const vars$E = NotpImageClass.cssVarList;
|
15925
16167
|
|
15926
16168
|
const logo = {
|
15927
|
-
[vars$
|
16169
|
+
[vars$E.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
|
15928
16170
|
};
|
15929
16171
|
|
15930
16172
|
var notpImage = /*#__PURE__*/Object.freeze({
|
15931
16173
|
__proto__: null,
|
15932
16174
|
default: logo,
|
15933
|
-
vars: vars$
|
16175
|
+
vars: vars$E
|
15934
16176
|
});
|
15935
16177
|
|
15936
16178
|
const globalRefs$s = getThemeRefs(globals);
|
15937
|
-
const vars$
|
16179
|
+
const vars$D = TextClass.cssVarList;
|
15938
16180
|
|
15939
16181
|
const text = {
|
15940
|
-
[vars$
|
15941
|
-
[vars$
|
15942
|
-
[vars$
|
15943
|
-
[vars$
|
16182
|
+
[vars$D.hostDirection]: globalRefs$s.direction,
|
16183
|
+
[vars$D.textLineHeight]: '1.35em',
|
16184
|
+
[vars$D.textAlign]: 'left',
|
16185
|
+
[vars$D.textColor]: globalRefs$s.colors.surface.dark,
|
15944
16186
|
|
15945
16187
|
variant: {
|
15946
16188
|
h1: {
|
15947
|
-
[vars$
|
15948
|
-
[vars$
|
15949
|
-
[vars$
|
16189
|
+
[vars$D.fontSize]: globalRefs$s.typography.h1.size,
|
16190
|
+
[vars$D.fontWeight]: globalRefs$s.typography.h1.weight,
|
16191
|
+
[vars$D.fontFamily]: globalRefs$s.typography.h1.font,
|
15950
16192
|
},
|
15951
16193
|
h2: {
|
15952
|
-
[vars$
|
15953
|
-
[vars$
|
15954
|
-
[vars$
|
16194
|
+
[vars$D.fontSize]: globalRefs$s.typography.h2.size,
|
16195
|
+
[vars$D.fontWeight]: globalRefs$s.typography.h2.weight,
|
16196
|
+
[vars$D.fontFamily]: globalRefs$s.typography.h2.font,
|
15955
16197
|
},
|
15956
16198
|
h3: {
|
15957
|
-
[vars$
|
15958
|
-
[vars$
|
15959
|
-
[vars$
|
16199
|
+
[vars$D.fontSize]: globalRefs$s.typography.h3.size,
|
16200
|
+
[vars$D.fontWeight]: globalRefs$s.typography.h3.weight,
|
16201
|
+
[vars$D.fontFamily]: globalRefs$s.typography.h3.font,
|
15960
16202
|
},
|
15961
16203
|
subtitle1: {
|
15962
|
-
[vars$
|
15963
|
-
[vars$
|
15964
|
-
[vars$
|
16204
|
+
[vars$D.fontSize]: globalRefs$s.typography.subtitle1.size,
|
16205
|
+
[vars$D.fontWeight]: globalRefs$s.typography.subtitle1.weight,
|
16206
|
+
[vars$D.fontFamily]: globalRefs$s.typography.subtitle1.font,
|
15965
16207
|
},
|
15966
16208
|
subtitle2: {
|
15967
|
-
[vars$
|
15968
|
-
[vars$
|
15969
|
-
[vars$
|
16209
|
+
[vars$D.fontSize]: globalRefs$s.typography.subtitle2.size,
|
16210
|
+
[vars$D.fontWeight]: globalRefs$s.typography.subtitle2.weight,
|
16211
|
+
[vars$D.fontFamily]: globalRefs$s.typography.subtitle2.font,
|
15970
16212
|
},
|
15971
16213
|
body1: {
|
15972
|
-
[vars$
|
15973
|
-
[vars$
|
15974
|
-
[vars$
|
16214
|
+
[vars$D.fontSize]: globalRefs$s.typography.body1.size,
|
16215
|
+
[vars$D.fontWeight]: globalRefs$s.typography.body1.weight,
|
16216
|
+
[vars$D.fontFamily]: globalRefs$s.typography.body1.font,
|
15975
16217
|
},
|
15976
16218
|
body2: {
|
15977
|
-
[vars$
|
15978
|
-
[vars$
|
15979
|
-
[vars$
|
16219
|
+
[vars$D.fontSize]: globalRefs$s.typography.body2.size,
|
16220
|
+
[vars$D.fontWeight]: globalRefs$s.typography.body2.weight,
|
16221
|
+
[vars$D.fontFamily]: globalRefs$s.typography.body2.font,
|
15980
16222
|
},
|
15981
16223
|
},
|
15982
16224
|
|
15983
16225
|
mode: {
|
15984
16226
|
primary: {
|
15985
|
-
[vars$
|
16227
|
+
[vars$D.textColor]: globalRefs$s.colors.surface.contrast,
|
15986
16228
|
},
|
15987
16229
|
secondary: {
|
15988
|
-
[vars$
|
16230
|
+
[vars$D.textColor]: globalRefs$s.colors.surface.dark,
|
15989
16231
|
},
|
15990
16232
|
error: {
|
15991
|
-
[vars$
|
16233
|
+
[vars$D.textColor]: globalRefs$s.colors.error.main,
|
15992
16234
|
},
|
15993
16235
|
success: {
|
15994
|
-
[vars$
|
16236
|
+
[vars$D.textColor]: globalRefs$s.colors.success.main,
|
15995
16237
|
},
|
15996
16238
|
},
|
15997
16239
|
|
15998
16240
|
textAlign: {
|
15999
|
-
right: { [vars$
|
16000
|
-
left: { [vars$
|
16001
|
-
center: { [vars$
|
16241
|
+
right: { [vars$D.textAlign]: 'right' },
|
16242
|
+
left: { [vars$D.textAlign]: 'left' },
|
16243
|
+
center: { [vars$D.textAlign]: 'center' },
|
16002
16244
|
},
|
16003
16245
|
|
16004
16246
|
_fullWidth: {
|
16005
|
-
[vars$
|
16247
|
+
[vars$D.hostWidth]: '100%',
|
16006
16248
|
},
|
16007
16249
|
|
16008
16250
|
_italic: {
|
16009
|
-
[vars$
|
16251
|
+
[vars$D.fontStyle]: 'italic',
|
16010
16252
|
},
|
16011
16253
|
|
16012
16254
|
_uppercase: {
|
16013
|
-
[vars$
|
16255
|
+
[vars$D.textTransform]: 'uppercase',
|
16014
16256
|
},
|
16015
16257
|
|
16016
16258
|
_lowercase: {
|
16017
|
-
[vars$
|
16259
|
+
[vars$D.textTransform]: 'lowercase',
|
16018
16260
|
},
|
16019
16261
|
};
|
16020
16262
|
|
16021
16263
|
var text$1 = /*#__PURE__*/Object.freeze({
|
16022
16264
|
__proto__: null,
|
16023
16265
|
default: text,
|
16024
|
-
vars: vars$
|
16266
|
+
vars: vars$D
|
16025
16267
|
});
|
16026
16268
|
|
16027
16269
|
const globalRefs$r = getThemeRefs(globals);
|
16028
|
-
const vars$
|
16270
|
+
const vars$C = LinkClass.cssVarList;
|
16029
16271
|
|
16030
16272
|
const link = {
|
16031
|
-
[vars$
|
16032
|
-
[vars$
|
16273
|
+
[vars$C.hostDirection]: globalRefs$r.direction,
|
16274
|
+
[vars$C.cursor]: 'pointer',
|
16033
16275
|
|
16034
|
-
[vars$
|
16276
|
+
[vars$C.textColor]: globalRefs$r.colors.primary.main,
|
16035
16277
|
|
16036
16278
|
textAlign: {
|
16037
|
-
right: { [vars$
|
16038
|
-
left: { [vars$
|
16039
|
-
center: { [vars$
|
16279
|
+
right: { [vars$C.textAlign]: 'right' },
|
16280
|
+
left: { [vars$C.textAlign]: 'left' },
|
16281
|
+
center: { [vars$C.textAlign]: 'center' },
|
16040
16282
|
},
|
16041
16283
|
|
16042
16284
|
_fullWidth: {
|
16043
|
-
[vars$
|
16285
|
+
[vars$C.hostWidth]: '100%',
|
16044
16286
|
},
|
16045
16287
|
|
16046
16288
|
_hover: {
|
16047
|
-
[vars$
|
16289
|
+
[vars$C.textDecoration]: 'underline',
|
16048
16290
|
},
|
16049
16291
|
|
16050
16292
|
mode: {
|
16051
16293
|
secondary: {
|
16052
|
-
[vars$
|
16294
|
+
[vars$C.textColor]: globalRefs$r.colors.secondary.main,
|
16053
16295
|
},
|
16054
16296
|
error: {
|
16055
|
-
[vars$
|
16297
|
+
[vars$C.textColor]: globalRefs$r.colors.error.main,
|
16056
16298
|
},
|
16057
16299
|
success: {
|
16058
|
-
[vars$
|
16300
|
+
[vars$C.textColor]: globalRefs$r.colors.success.main,
|
16059
16301
|
},
|
16060
16302
|
},
|
16061
16303
|
};
|
@@ -16063,37 +16305,37 @@ const link = {
|
|
16063
16305
|
var link$1 = /*#__PURE__*/Object.freeze({
|
16064
16306
|
__proto__: null,
|
16065
16307
|
default: link,
|
16066
|
-
vars: vars$
|
16308
|
+
vars: vars$C
|
16067
16309
|
});
|
16068
16310
|
|
16069
16311
|
const globalRefs$q = getThemeRefs(globals);
|
16070
|
-
const vars$
|
16312
|
+
const vars$B = EnrichedTextClass.cssVarList;
|
16071
16313
|
|
16072
16314
|
const enrichedText = {
|
16073
|
-
[vars$
|
16074
|
-
[vars$
|
16315
|
+
[vars$B.hostDirection]: globalRefs$q.direction,
|
16316
|
+
[vars$B.hostWidth]: useVar(vars$D.hostWidth),
|
16075
16317
|
|
16076
|
-
[vars$
|
16077
|
-
[vars$
|
16078
|
-
[vars$
|
16318
|
+
[vars$B.textLineHeight]: useVar(vars$D.textLineHeight),
|
16319
|
+
[vars$B.textColor]: useVar(vars$D.textColor),
|
16320
|
+
[vars$B.textAlign]: useVar(vars$D.textAlign),
|
16079
16321
|
|
16080
|
-
[vars$
|
16081
|
-
[vars$
|
16082
|
-
[vars$
|
16322
|
+
[vars$B.fontSize]: useVar(vars$D.fontSize),
|
16323
|
+
[vars$B.fontWeight]: useVar(vars$D.fontWeight),
|
16324
|
+
[vars$B.fontFamily]: useVar(vars$D.fontFamily),
|
16083
16325
|
|
16084
|
-
[vars$
|
16085
|
-
[vars$
|
16086
|
-
[vars$
|
16326
|
+
[vars$B.linkColor]: useVar(vars$C.textColor),
|
16327
|
+
[vars$B.linkTextDecoration]: 'none',
|
16328
|
+
[vars$B.linkHoverTextDecoration]: 'underline',
|
16087
16329
|
|
16088
|
-
[vars$
|
16089
|
-
[vars$
|
16090
|
-
[vars$
|
16330
|
+
[vars$B.fontWeightBold]: '900',
|
16331
|
+
[vars$B.minWidth]: '0.25em',
|
16332
|
+
[vars$B.minHeight]: '1.35em',
|
16091
16333
|
|
16092
|
-
[vars$
|
16334
|
+
[vars$B.hostDisplay]: 'inline-block',
|
16093
16335
|
|
16094
16336
|
_empty: {
|
16095
16337
|
_hideWhenEmpty: {
|
16096
|
-
[vars$
|
16338
|
+
[vars$B.hostDisplay]: 'none',
|
16097
16339
|
},
|
16098
16340
|
},
|
16099
16341
|
};
|
@@ -16101,7 +16343,7 @@ const enrichedText = {
|
|
16101
16343
|
var enrichedText$1 = /*#__PURE__*/Object.freeze({
|
16102
16344
|
__proto__: null,
|
16103
16345
|
default: enrichedText,
|
16104
|
-
vars: vars$
|
16346
|
+
vars: vars$B
|
16105
16347
|
});
|
16106
16348
|
|
16107
16349
|
const globalRefs$p = getThemeRefs(globals);
|
@@ -16112,7 +16354,7 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
|
|
16112
16354
|
thickness: '2px',
|
16113
16355
|
spacing: '10px',
|
16114
16356
|
},
|
16115
|
-
componentName$
|
16357
|
+
componentName$S
|
16116
16358
|
);
|
16117
16359
|
|
16118
16360
|
const divider = {
|
@@ -16143,7 +16385,7 @@ const divider = {
|
|
16143
16385
|
},
|
16144
16386
|
};
|
16145
16387
|
|
16146
|
-
const vars$
|
16388
|
+
const vars$A = {
|
16147
16389
|
...compVars$4,
|
16148
16390
|
...helperVars$2,
|
16149
16391
|
};
|
@@ -16151,93 +16393,93 @@ const vars$z = {
|
|
16151
16393
|
var divider$1 = /*#__PURE__*/Object.freeze({
|
16152
16394
|
__proto__: null,
|
16153
16395
|
default: divider,
|
16154
|
-
vars: vars$
|
16396
|
+
vars: vars$A
|
16155
16397
|
});
|
16156
16398
|
|
16157
|
-
const vars$
|
16399
|
+
const vars$z = PasscodeClass.cssVarList;
|
16158
16400
|
|
16159
16401
|
const passcode = {
|
16160
|
-
[vars$
|
16161
|
-
[vars$
|
16162
|
-
[vars$
|
16163
|
-
[vars$
|
16164
|
-
[vars$
|
16165
|
-
[vars$
|
16166
|
-
[vars$
|
16167
|
-
[vars$
|
16168
|
-
[vars$
|
16169
|
-
[vars$
|
16170
|
-
[vars$
|
16171
|
-
[vars$
|
16172
|
-
[vars$
|
16173
|
-
[vars$
|
16174
|
-
[vars$
|
16402
|
+
[vars$z.hostDirection]: refs.direction,
|
16403
|
+
[vars$z.fontFamily]: refs.fontFamily,
|
16404
|
+
[vars$z.fontSize]: refs.fontSize,
|
16405
|
+
[vars$z.labelTextColor]: refs.labelTextColor,
|
16406
|
+
[vars$z.labelRequiredIndicator]: refs.requiredIndicator,
|
16407
|
+
[vars$z.errorMessageTextColor]: refs.errorMessageTextColor,
|
16408
|
+
[vars$z.digitValueTextColor]: refs.valueTextColor,
|
16409
|
+
[vars$z.digitPadding]: '0',
|
16410
|
+
[vars$z.digitTextAlign]: 'center',
|
16411
|
+
[vars$z.digitSpacing]: '4px',
|
16412
|
+
[vars$z.hostWidth]: refs.width,
|
16413
|
+
[vars$z.digitOutlineColor]: 'transparent',
|
16414
|
+
[vars$z.digitOutlineWidth]: refs.outlineWidth,
|
16415
|
+
[vars$z.focusedDigitFieldOutlineColor]: refs.outlineColor,
|
16416
|
+
[vars$z.digitSize]: refs.inputHeight,
|
16175
16417
|
|
16176
16418
|
size: {
|
16177
|
-
xs: { [vars$
|
16178
|
-
sm: { [vars$
|
16179
|
-
md: { [vars$
|
16180
|
-
lg: { [vars$
|
16419
|
+
xs: { [vars$z.spinnerSize]: '15px' },
|
16420
|
+
sm: { [vars$z.spinnerSize]: '20px' },
|
16421
|
+
md: { [vars$z.spinnerSize]: '20px' },
|
16422
|
+
lg: { [vars$z.spinnerSize]: '20px' },
|
16181
16423
|
},
|
16182
16424
|
|
16183
16425
|
_hideCursor: {
|
16184
|
-
[vars$
|
16426
|
+
[vars$z.digitCaretTextColor]: 'transparent',
|
16185
16427
|
},
|
16186
16428
|
|
16187
16429
|
_loading: {
|
16188
|
-
[vars$
|
16430
|
+
[vars$z.overlayOpacity]: refs.overlayOpacity,
|
16189
16431
|
},
|
16190
16432
|
};
|
16191
16433
|
|
16192
16434
|
var passcode$1 = /*#__PURE__*/Object.freeze({
|
16193
16435
|
__proto__: null,
|
16194
16436
|
default: passcode,
|
16195
|
-
vars: vars$
|
16437
|
+
vars: vars$z
|
16196
16438
|
});
|
16197
16439
|
|
16198
16440
|
const globalRefs$o = getThemeRefs(globals);
|
16199
|
-
const vars$
|
16441
|
+
const vars$y = LoaderLinearClass.cssVarList;
|
16200
16442
|
|
16201
16443
|
const loaderLinear = {
|
16202
|
-
[vars$
|
16203
|
-
[vars$
|
16444
|
+
[vars$y.hostDisplay]: 'inline-block',
|
16445
|
+
[vars$y.hostWidth]: '100%',
|
16204
16446
|
|
16205
|
-
[vars$
|
16206
|
-
[vars$
|
16447
|
+
[vars$y.barColor]: globalRefs$o.colors.surface.contrast,
|
16448
|
+
[vars$y.barWidth]: '20%',
|
16207
16449
|
|
16208
|
-
[vars$
|
16209
|
-
[vars$
|
16450
|
+
[vars$y.barBackgroundColor]: globalRefs$o.colors.surface.light,
|
16451
|
+
[vars$y.barBorderRadius]: '4px',
|
16210
16452
|
|
16211
|
-
[vars$
|
16212
|
-
[vars$
|
16213
|
-
[vars$
|
16214
|
-
[vars$
|
16453
|
+
[vars$y.animationDuration]: '2s',
|
16454
|
+
[vars$y.animationTimingFunction]: 'linear',
|
16455
|
+
[vars$y.animationIterationCount]: 'infinite',
|
16456
|
+
[vars$y.verticalPadding]: '0.25em',
|
16215
16457
|
|
16216
16458
|
size: {
|
16217
|
-
xs: { [vars$
|
16218
|
-
sm: { [vars$
|
16219
|
-
md: { [vars$
|
16220
|
-
lg: { [vars$
|
16459
|
+
xs: { [vars$y.barHeight]: '2px' },
|
16460
|
+
sm: { [vars$y.barHeight]: '4px' },
|
16461
|
+
md: { [vars$y.barHeight]: '6px' },
|
16462
|
+
lg: { [vars$y.barHeight]: '8px' },
|
16221
16463
|
},
|
16222
16464
|
|
16223
16465
|
mode: {
|
16224
16466
|
primary: {
|
16225
|
-
[vars$
|
16467
|
+
[vars$y.barColor]: globalRefs$o.colors.primary.main,
|
16226
16468
|
},
|
16227
16469
|
secondary: {
|
16228
|
-
[vars$
|
16470
|
+
[vars$y.barColor]: globalRefs$o.colors.secondary.main,
|
16229
16471
|
},
|
16230
16472
|
},
|
16231
16473
|
|
16232
16474
|
_hidden: {
|
16233
|
-
[vars$
|
16475
|
+
[vars$y.hostDisplay]: 'none',
|
16234
16476
|
},
|
16235
16477
|
};
|
16236
16478
|
|
16237
16479
|
var loaderLinear$1 = /*#__PURE__*/Object.freeze({
|
16238
16480
|
__proto__: null,
|
16239
16481
|
default: loaderLinear,
|
16240
|
-
vars: vars$
|
16482
|
+
vars: vars$y
|
16241
16483
|
});
|
16242
16484
|
|
16243
16485
|
const globalRefs$n = getThemeRefs(globals);
|
@@ -16255,7 +16497,7 @@ const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
|
|
16255
16497
|
},
|
16256
16498
|
},
|
16257
16499
|
},
|
16258
|
-
componentName$
|
16500
|
+
componentName$Z
|
16259
16501
|
);
|
16260
16502
|
|
16261
16503
|
const loaderRadial = {
|
@@ -16284,7 +16526,7 @@ const loaderRadial = {
|
|
16284
16526
|
[compVars$3.hostDisplay]: 'none',
|
16285
16527
|
},
|
16286
16528
|
};
|
16287
|
-
const vars$
|
16529
|
+
const vars$x = {
|
16288
16530
|
...compVars$3,
|
16289
16531
|
...helperVars$1,
|
16290
16532
|
};
|
@@ -16292,93 +16534,134 @@ const vars$w = {
|
|
16292
16534
|
var loaderRadial$1 = /*#__PURE__*/Object.freeze({
|
16293
16535
|
__proto__: null,
|
16294
16536
|
default: loaderRadial,
|
16295
|
-
vars: vars$
|
16537
|
+
vars: vars$x
|
16296
16538
|
});
|
16297
16539
|
|
16298
16540
|
const globalRefs$m = getThemeRefs(globals);
|
16299
|
-
const vars$
|
16541
|
+
const vars$w = ComboBoxClass.cssVarList;
|
16300
16542
|
|
16301
16543
|
const comboBox = {
|
16302
|
-
[vars$
|
16303
|
-
[vars$
|
16304
|
-
[vars$
|
16305
|
-
[vars$
|
16306
|
-
[vars$
|
16307
|
-
[vars$
|
16308
|
-
[vars$
|
16309
|
-
[vars$
|
16310
|
-
[vars$
|
16311
|
-
[vars$
|
16312
|
-
[vars$
|
16313
|
-
[vars$
|
16314
|
-
[vars$
|
16315
|
-
[vars$
|
16316
|
-
[vars$
|
16317
|
-
[vars$
|
16318
|
-
[vars$
|
16319
|
-
[vars$
|
16320
|
-
[vars$
|
16321
|
-
[vars$
|
16322
|
-
[vars$
|
16323
|
-
[vars$
|
16324
|
-
[vars$
|
16325
|
-
[vars$
|
16326
|
-
[vars$
|
16327
|
-
[vars$
|
16328
|
-
[vars$
|
16329
|
-
[vars$
|
16330
|
-
[vars$
|
16331
|
-
[vars$
|
16332
|
-
[vars$
|
16333
|
-
[vars$
|
16334
|
-
[vars$
|
16335
|
-
[vars$
|
16336
|
-
[vars$
|
16337
|
-
[vars$
|
16338
|
-
[vars$
|
16339
|
-
[vars$
|
16544
|
+
[vars$w.hostWidth]: refs.width,
|
16545
|
+
[vars$w.hostDirection]: refs.direction,
|
16546
|
+
[vars$w.fontSize]: refs.fontSize,
|
16547
|
+
[vars$w.fontFamily]: refs.fontFamily,
|
16548
|
+
[vars$w.labelFontSize]: refs.labelFontSize,
|
16549
|
+
[vars$w.labelFontWeight]: refs.labelFontWeight,
|
16550
|
+
[vars$w.labelTextColor]: refs.labelTextColor,
|
16551
|
+
[vars$w.errorMessageTextColor]: refs.errorMessageTextColor,
|
16552
|
+
[vars$w.inputBorderColor]: refs.borderColor,
|
16553
|
+
[vars$w.inputBorderWidth]: refs.borderWidth,
|
16554
|
+
[vars$w.inputBorderStyle]: refs.borderStyle,
|
16555
|
+
[vars$w.inputBorderRadius]: refs.borderRadius,
|
16556
|
+
[vars$w.inputOutlineColor]: refs.outlineColor,
|
16557
|
+
[vars$w.inputOutlineOffset]: refs.outlineOffset,
|
16558
|
+
[vars$w.inputOutlineWidth]: refs.outlineWidth,
|
16559
|
+
[vars$w.inputOutlineStyle]: refs.outlineStyle,
|
16560
|
+
[vars$w.labelRequiredIndicator]: refs.requiredIndicator,
|
16561
|
+
[vars$w.inputValueTextColor]: refs.valueTextColor,
|
16562
|
+
[vars$w.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16563
|
+
[vars$w.inputBackgroundColor]: refs.backgroundColor,
|
16564
|
+
[vars$w.inputHorizontalPadding]: refs.horizontalPadding,
|
16565
|
+
[vars$w.inputHeight]: refs.inputHeight,
|
16566
|
+
[vars$w.inputDropdownButtonColor]: globalRefs$m.colors.surface.dark,
|
16567
|
+
[vars$w.inputDropdownButtonCursor]: 'pointer',
|
16568
|
+
[vars$w.inputDropdownButtonSize]: refs.toggleButtonSize,
|
16569
|
+
[vars$w.inputDropdownButtonOffset]: globalRefs$m.spacing.xs,
|
16570
|
+
[vars$w.overlayItemPaddingInlineStart]: globalRefs$m.spacing.xs,
|
16571
|
+
[vars$w.overlayItemPaddingInlineEnd]: globalRefs$m.spacing.lg,
|
16572
|
+
[vars$w.labelPosition]: refs.labelPosition,
|
16573
|
+
[vars$w.labelTopPosition]: refs.labelTopPosition,
|
16574
|
+
[vars$w.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16575
|
+
[vars$w.inputTransformY]: refs.inputTransformY,
|
16576
|
+
[vars$w.inputTransition]: refs.inputTransition,
|
16577
|
+
[vars$w.marginInlineStart]: refs.marginInlineStart,
|
16578
|
+
[vars$w.placeholderOpacity]: refs.placeholderOpacity,
|
16579
|
+
[vars$w.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
16580
|
+
[vars$w.valueInputHeight]: refs.valueInputHeight,
|
16581
|
+
[vars$w.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16340
16582
|
|
16341
16583
|
_readonly: {
|
16342
|
-
[vars$
|
16584
|
+
[vars$w.inputDropdownButtonCursor]: 'default',
|
16343
16585
|
},
|
16344
16586
|
|
16345
16587
|
// Overlay theme exposed via the component:
|
16346
|
-
[vars$
|
16347
|
-
[vars$
|
16348
|
-
[vars$
|
16349
|
-
[vars$
|
16350
|
-
[vars$
|
16351
|
-
[vars$
|
16588
|
+
[vars$w.overlayFontSize]: refs.fontSize,
|
16589
|
+
[vars$w.overlayFontFamily]: refs.fontFamily,
|
16590
|
+
[vars$w.overlayCursor]: 'pointer',
|
16591
|
+
[vars$w.overlayItemBoxShadow]: 'none',
|
16592
|
+
[vars$w.overlayBackground]: refs.backgroundColor,
|
16593
|
+
[vars$w.overlayTextColor]: refs.valueTextColor,
|
16352
16594
|
|
16353
16595
|
// Overlay direct theme:
|
16354
|
-
[vars$
|
16355
|
-
[vars$
|
16596
|
+
[vars$w.overlay.minHeight]: '400px',
|
16597
|
+
[vars$w.overlay.margin]: '0',
|
16356
16598
|
};
|
16357
16599
|
|
16358
16600
|
var comboBox$1 = /*#__PURE__*/Object.freeze({
|
16359
16601
|
__proto__: null,
|
16360
16602
|
comboBox: comboBox,
|
16361
16603
|
default: comboBox,
|
16362
|
-
vars: vars$
|
16604
|
+
vars: vars$w
|
16363
16605
|
});
|
16364
16606
|
|
16365
|
-
const vars$
|
16607
|
+
const vars$v = ImageClass.cssVarList;
|
16366
16608
|
|
16367
16609
|
const image = {};
|
16368
16610
|
|
16369
16611
|
var image$1 = /*#__PURE__*/Object.freeze({
|
16370
16612
|
__proto__: null,
|
16371
16613
|
default: image,
|
16372
|
-
vars: vars$
|
16614
|
+
vars: vars$v
|
16373
16615
|
});
|
16374
16616
|
|
16375
|
-
const vars$
|
16617
|
+
const vars$u = PhoneFieldClass.cssVarList;
|
16376
16618
|
|
16377
16619
|
const phoneField = {
|
16378
|
-
[vars$
|
16620
|
+
[vars$u.hostWidth]: refs.width,
|
16621
|
+
[vars$u.hostDirection]: refs.direction,
|
16622
|
+
[vars$u.fontSize]: refs.fontSize,
|
16623
|
+
[vars$u.fontFamily]: refs.fontFamily,
|
16624
|
+
[vars$u.labelTextColor]: refs.labelTextColor,
|
16625
|
+
[vars$u.labelRequiredIndicator]: refs.requiredIndicator,
|
16626
|
+
[vars$u.errorMessageTextColor]: refs.errorMessageTextColor,
|
16627
|
+
[vars$u.inputValueTextColor]: refs.valueTextColor,
|
16628
|
+
[vars$u.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16629
|
+
[vars$u.inputBorderStyle]: refs.borderStyle,
|
16630
|
+
[vars$u.inputBorderWidth]: refs.borderWidth,
|
16631
|
+
[vars$u.inputBorderColor]: refs.borderColor,
|
16632
|
+
[vars$u.inputBorderRadius]: refs.borderRadius,
|
16633
|
+
[vars$u.inputOutlineStyle]: refs.outlineStyle,
|
16634
|
+
[vars$u.inputOutlineWidth]: refs.outlineWidth,
|
16635
|
+
[vars$u.inputOutlineColor]: refs.outlineColor,
|
16636
|
+
[vars$u.inputOutlineOffset]: refs.outlineOffset,
|
16637
|
+
[vars$u.phoneInputWidth]: refs.minWidth,
|
16638
|
+
[vars$u.countryCodeInputWidth]: '5em',
|
16639
|
+
[vars$u.countryCodeDropdownWidth]: '20em',
|
16640
|
+
[vars$u.marginInlineStart]: '-0.25em',
|
16641
|
+
[vars$u.valueInputHeight]: refs.valueInputHeight,
|
16642
|
+
[vars$u.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16643
|
+
|
16644
|
+
// '@overlay': {
|
16645
|
+
// overlayItemBackgroundColor: 'red'
|
16646
|
+
// }
|
16647
|
+
};
|
16648
|
+
|
16649
|
+
var phoneField$1 = /*#__PURE__*/Object.freeze({
|
16650
|
+
__proto__: null,
|
16651
|
+
default: phoneField,
|
16652
|
+
vars: vars$u
|
16653
|
+
});
|
16654
|
+
|
16655
|
+
const vars$t = PhoneFieldInputBoxClass.cssVarList;
|
16656
|
+
|
16657
|
+
const phoneInputBoxField = {
|
16658
|
+
[vars$t.hostWidth]: '16em',
|
16659
|
+
[vars$t.hostMinWidth]: refs.minWidth,
|
16379
16660
|
[vars$t.hostDirection]: refs.direction,
|
16380
16661
|
[vars$t.fontSize]: refs.fontSize,
|
16381
16662
|
[vars$t.fontFamily]: refs.fontFamily,
|
16663
|
+
[vars$t.labelFontSize]: refs.labelFontSize,
|
16664
|
+
[vars$t.labelFontWeight]: refs.labelFontWeight,
|
16382
16665
|
[vars$t.labelTextColor]: refs.labelTextColor,
|
16383
16666
|
[vars$t.labelRequiredIndicator]: refs.requiredIndicator,
|
16384
16667
|
[vars$t.errorMessageTextColor]: refs.errorMessageTextColor,
|
@@ -16392,28 +16675,32 @@ const phoneField = {
|
|
16392
16675
|
[vars$t.inputOutlineWidth]: refs.outlineWidth,
|
16393
16676
|
[vars$t.inputOutlineColor]: refs.outlineColor,
|
16394
16677
|
[vars$t.inputOutlineOffset]: refs.outlineOffset,
|
16395
|
-
[vars$t.
|
16396
|
-
[vars$t.
|
16397
|
-
[vars$t.
|
16398
|
-
[vars$t.
|
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,
|
16399
16684
|
[vars$t.valueInputHeight]: refs.valueInputHeight,
|
16400
16685
|
[vars$t.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16686
|
+
[vars$t.inputHorizontalPadding]: '0',
|
16401
16687
|
|
16402
|
-
|
16403
|
-
|
16404
|
-
|
16688
|
+
_fullWidth: {
|
16689
|
+
[vars$t.hostWidth]: refs.width,
|
16690
|
+
},
|
16405
16691
|
};
|
16406
16692
|
|
16407
|
-
var
|
16693
|
+
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16408
16694
|
__proto__: null,
|
16409
|
-
default:
|
16695
|
+
default: phoneInputBoxField,
|
16410
16696
|
vars: vars$t
|
16411
16697
|
});
|
16412
16698
|
|
16413
|
-
const
|
16699
|
+
const globalRefs$l = getThemeRefs(globals);
|
16700
|
+
const vars$s = NewPasswordClass.cssVarList;
|
16414
16701
|
|
16415
|
-
const
|
16416
|
-
[vars$s.hostWidth]:
|
16702
|
+
const newPassword = {
|
16703
|
+
[vars$s.hostWidth]: refs.width,
|
16417
16704
|
[vars$s.hostMinWidth]: refs.minWidth,
|
16418
16705
|
[vars$s.hostDirection]: refs.direction,
|
16419
16706
|
[vars$s.fontSize]: refs.fontSize,
|
@@ -16421,171 +16708,126 @@ const phoneInputBoxField = {
|
|
16421
16708
|
[vars$s.labelFontSize]: refs.labelFontSize,
|
16422
16709
|
[vars$s.labelFontWeight]: refs.labelFontWeight,
|
16423
16710
|
[vars$s.labelTextColor]: refs.labelTextColor,
|
16424
|
-
[vars$s.
|
16711
|
+
[vars$s.spaceBetweenInputs]: '1em',
|
16425
16712
|
[vars$s.errorMessageTextColor]: refs.errorMessageTextColor,
|
16426
|
-
[vars$s.
|
16427
|
-
[vars$s.
|
16428
|
-
[vars$s.inputBorderStyle]: refs.borderStyle,
|
16429
|
-
[vars$s.inputBorderWidth]: refs.borderWidth,
|
16430
|
-
[vars$s.inputBorderColor]: refs.borderColor,
|
16431
|
-
[vars$s.inputBorderRadius]: refs.borderRadius,
|
16432
|
-
[vars$s.inputOutlineStyle]: refs.outlineStyle,
|
16433
|
-
[vars$s.inputOutlineWidth]: refs.outlineWidth,
|
16434
|
-
[vars$s.inputOutlineColor]: refs.outlineColor,
|
16435
|
-
[vars$s.inputOutlineOffset]: refs.outlineOffset,
|
16436
|
-
[vars$s.labelPosition]: refs.labelPosition,
|
16437
|
-
[vars$s.labelTopPosition]: refs.labelTopPosition,
|
16438
|
-
[vars$s.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16439
|
-
[vars$s.inputTransformY]: refs.inputTransformY,
|
16440
|
-
[vars$s.inputTransition]: refs.inputTransition,
|
16441
|
-
[vars$s.marginInlineStart]: refs.marginInlineStart,
|
16713
|
+
[vars$s.policyPreviewBackgroundColor]: 'none',
|
16714
|
+
[vars$s.policyPreviewPadding]: globalRefs$l.spacing.lg,
|
16442
16715
|
[vars$s.valueInputHeight]: refs.valueInputHeight,
|
16443
|
-
[vars$s.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16444
|
-
[vars$s.inputHorizontalPadding]: '0',
|
16445
|
-
|
16446
|
-
_fullWidth: {
|
16447
|
-
[vars$s.hostWidth]: refs.width,
|
16448
|
-
},
|
16449
|
-
};
|
16450
|
-
|
16451
|
-
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16452
|
-
__proto__: null,
|
16453
|
-
default: phoneInputBoxField,
|
16454
|
-
vars: vars$s
|
16455
|
-
});
|
16456
|
-
|
16457
|
-
const globalRefs$l = getThemeRefs(globals);
|
16458
|
-
const vars$r = NewPasswordClass.cssVarList;
|
16459
|
-
|
16460
|
-
const newPassword = {
|
16461
|
-
[vars$r.hostWidth]: refs.width,
|
16462
|
-
[vars$r.hostMinWidth]: refs.minWidth,
|
16463
|
-
[vars$r.hostDirection]: refs.direction,
|
16464
|
-
[vars$r.fontSize]: refs.fontSize,
|
16465
|
-
[vars$r.fontFamily]: refs.fontFamily,
|
16466
|
-
[vars$r.labelFontSize]: refs.labelFontSize,
|
16467
|
-
[vars$r.labelFontWeight]: refs.labelFontWeight,
|
16468
|
-
[vars$r.labelTextColor]: refs.labelTextColor,
|
16469
|
-
[vars$r.spaceBetweenInputs]: '1em',
|
16470
|
-
[vars$r.errorMessageTextColor]: refs.errorMessageTextColor,
|
16471
|
-
[vars$r.policyPreviewBackgroundColor]: 'none',
|
16472
|
-
[vars$r.policyPreviewPadding]: globalRefs$l.spacing.lg,
|
16473
|
-
[vars$r.valueInputHeight]: refs.valueInputHeight,
|
16474
16716
|
|
16475
16717
|
_required: {
|
16476
16718
|
// NewPassword doesn't pass `required` attribute to its Password components.
|
16477
16719
|
// That's why we fake the required indicator on each input.
|
16478
16720
|
// We do that by injecting `::after` element, and populating it with requiredIndicator content.
|
16479
|
-
[vars$
|
16721
|
+
[vars$s.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
|
16480
16722
|
},
|
16481
16723
|
};
|
16482
16724
|
|
16483
16725
|
var newPassword$1 = /*#__PURE__*/Object.freeze({
|
16484
16726
|
__proto__: null,
|
16485
16727
|
default: newPassword,
|
16486
|
-
vars: vars$
|
16728
|
+
vars: vars$s
|
16487
16729
|
});
|
16488
16730
|
|
16489
|
-
const vars$
|
16731
|
+
const vars$r = UploadFileClass.cssVarList;
|
16490
16732
|
|
16491
16733
|
const uploadFile = {
|
16492
|
-
[vars$
|
16493
|
-
[vars$
|
16494
|
-
[vars$
|
16734
|
+
[vars$r.hostDirection]: refs.direction,
|
16735
|
+
[vars$r.labelTextColor]: refs.labelTextColor,
|
16736
|
+
[vars$r.fontFamily]: refs.fontFamily,
|
16495
16737
|
|
16496
|
-
[vars$
|
16738
|
+
[vars$r.iconSize]: '2em',
|
16497
16739
|
|
16498
|
-
[vars$
|
16499
|
-
[vars$
|
16740
|
+
[vars$r.hostPadding]: '0.75em',
|
16741
|
+
[vars$r.gap]: '0.5em',
|
16500
16742
|
|
16501
|
-
[vars$
|
16502
|
-
[vars$
|
16503
|
-
[vars$
|
16743
|
+
[vars$r.fontSize]: '16px',
|
16744
|
+
[vars$r.titleFontWeight]: '500',
|
16745
|
+
[vars$r.lineHeight]: '1em',
|
16504
16746
|
|
16505
|
-
[vars$
|
16506
|
-
[vars$
|
16507
|
-
[vars$
|
16508
|
-
[vars$
|
16747
|
+
[vars$r.borderWidth]: refs.borderWidth,
|
16748
|
+
[vars$r.borderColor]: refs.borderColor,
|
16749
|
+
[vars$r.borderRadius]: refs.borderRadius,
|
16750
|
+
[vars$r.borderStyle]: 'dashed',
|
16509
16751
|
|
16510
16752
|
_required: {
|
16511
|
-
[vars$
|
16753
|
+
[vars$r.requiredIndicator]: refs.requiredIndicator,
|
16512
16754
|
},
|
16513
16755
|
|
16514
16756
|
size: {
|
16515
16757
|
xs: {
|
16516
|
-
[vars$
|
16517
|
-
[vars$
|
16518
|
-
[vars$
|
16519
|
-
[vars$
|
16520
|
-
[vars$
|
16758
|
+
[vars$r.hostHeight]: '196px',
|
16759
|
+
[vars$r.hostWidth]: '200px',
|
16760
|
+
[vars$r.titleFontSize]: '0.875em',
|
16761
|
+
[vars$r.descriptionFontSize]: '0.875em',
|
16762
|
+
[vars$r.lineHeight]: '1.25em',
|
16521
16763
|
},
|
16522
16764
|
sm: {
|
16523
|
-
[vars$
|
16524
|
-
[vars$
|
16525
|
-
[vars$
|
16526
|
-
[vars$
|
16527
|
-
[vars$
|
16765
|
+
[vars$r.hostHeight]: '216px',
|
16766
|
+
[vars$r.hostWidth]: '230px',
|
16767
|
+
[vars$r.titleFontSize]: '1em',
|
16768
|
+
[vars$r.descriptionFontSize]: '0.875em',
|
16769
|
+
[vars$r.lineHeight]: '1.25em',
|
16528
16770
|
},
|
16529
16771
|
md: {
|
16530
|
-
[vars$
|
16531
|
-
[vars$
|
16532
|
-
[vars$
|
16533
|
-
[vars$
|
16534
|
-
[vars$
|
16772
|
+
[vars$r.hostHeight]: '256px',
|
16773
|
+
[vars$r.hostWidth]: '312px',
|
16774
|
+
[vars$r.titleFontSize]: '1.125em',
|
16775
|
+
[vars$r.descriptionFontSize]: '1em',
|
16776
|
+
[vars$r.lineHeight]: '1.5em',
|
16535
16777
|
},
|
16536
16778
|
lg: {
|
16537
|
-
[vars$
|
16538
|
-
[vars$
|
16539
|
-
[vars$
|
16540
|
-
[vars$
|
16541
|
-
[vars$
|
16779
|
+
[vars$r.hostHeight]: '280px',
|
16780
|
+
[vars$r.hostWidth]: '336px',
|
16781
|
+
[vars$r.titleFontSize]: '1.125em',
|
16782
|
+
[vars$r.descriptionFontSize]: '1.125em',
|
16783
|
+
[vars$r.lineHeight]: '1.75em',
|
16542
16784
|
},
|
16543
16785
|
},
|
16544
16786
|
|
16545
16787
|
_fullWidth: {
|
16546
|
-
[vars$
|
16788
|
+
[vars$r.hostWidth]: refs.width,
|
16547
16789
|
},
|
16548
16790
|
};
|
16549
16791
|
|
16550
16792
|
var uploadFile$1 = /*#__PURE__*/Object.freeze({
|
16551
16793
|
__proto__: null,
|
16552
16794
|
default: uploadFile,
|
16553
|
-
vars: vars$
|
16795
|
+
vars: vars$r
|
16554
16796
|
});
|
16555
16797
|
|
16556
16798
|
const globalRefs$k = getThemeRefs(globals);
|
16557
16799
|
|
16558
|
-
const vars$
|
16800
|
+
const vars$q = ButtonSelectionGroupItemClass.cssVarList;
|
16559
16801
|
|
16560
16802
|
const buttonSelectionGroupItem = {
|
16561
|
-
[vars$
|
16562
|
-
[vars$
|
16563
|
-
[vars$
|
16564
|
-
[vars$
|
16565
|
-
[vars$
|
16566
|
-
[vars$
|
16567
|
-
[vars$
|
16568
|
-
[vars$
|
16803
|
+
[vars$q.hostDirection]: 'inherit',
|
16804
|
+
[vars$q.backgroundColor]: globalRefs$k.colors.surface.main,
|
16805
|
+
[vars$q.labelTextColor]: globalRefs$k.colors.surface.contrast,
|
16806
|
+
[vars$q.borderColor]: globalRefs$k.colors.surface.light,
|
16807
|
+
[vars$q.borderStyle]: 'solid',
|
16808
|
+
[vars$q.borderRadius]: globalRefs$k.radius.sm,
|
16809
|
+
[vars$q.outlineColor]: 'transparent',
|
16810
|
+
[vars$q.borderWidth]: globalRefs$k.border.xs,
|
16569
16811
|
|
16570
16812
|
_hover: {
|
16571
|
-
[vars$
|
16813
|
+
[vars$q.backgroundColor]: globalRefs$k.colors.surface.highlight,
|
16572
16814
|
},
|
16573
16815
|
|
16574
16816
|
_focused: {
|
16575
|
-
[vars$
|
16817
|
+
[vars$q.outlineColor]: globalRefs$k.colors.surface.light,
|
16576
16818
|
},
|
16577
16819
|
|
16578
16820
|
_selected: {
|
16579
|
-
[vars$
|
16580
|
-
[vars$
|
16581
|
-
[vars$
|
16821
|
+
[vars$q.borderColor]: globalRefs$k.colors.surface.contrast,
|
16822
|
+
[vars$q.backgroundColor]: globalRefs$k.colors.surface.contrast,
|
16823
|
+
[vars$q.labelTextColor]: globalRefs$k.colors.surface.main,
|
16582
16824
|
},
|
16583
16825
|
};
|
16584
16826
|
|
16585
16827
|
var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
|
16586
16828
|
__proto__: null,
|
16587
16829
|
default: buttonSelectionGroupItem,
|
16588
|
-
vars: vars$
|
16830
|
+
vars: vars$q
|
16589
16831
|
});
|
16590
16832
|
|
16591
16833
|
const globalRefs$j = getThemeRefs(globals);
|
@@ -16600,28 +16842,28 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
|
|
16600
16842
|
[vars.hostWidth]: refs.width,
|
16601
16843
|
});
|
16602
16844
|
|
16603
|
-
const vars$
|
16845
|
+
const vars$p = ButtonSelectionGroupClass.cssVarList;
|
16604
16846
|
|
16605
16847
|
const buttonSelectionGroup = {
|
16606
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
16848
|
+
...createBaseButtonSelectionGroupMappings(vars$p),
|
16607
16849
|
};
|
16608
16850
|
|
16609
16851
|
var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
16610
16852
|
__proto__: null,
|
16611
16853
|
default: buttonSelectionGroup,
|
16612
|
-
vars: vars$
|
16854
|
+
vars: vars$p
|
16613
16855
|
});
|
16614
16856
|
|
16615
|
-
const vars$
|
16857
|
+
const vars$o = ButtonMultiSelectionGroupClass.cssVarList;
|
16616
16858
|
|
16617
16859
|
const buttonMultiSelectionGroup = {
|
16618
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
16860
|
+
...createBaseButtonSelectionGroupMappings(vars$o),
|
16619
16861
|
};
|
16620
16862
|
|
16621
16863
|
var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
16622
16864
|
__proto__: null,
|
16623
16865
|
default: buttonMultiSelectionGroup,
|
16624
|
-
vars: vars$
|
16866
|
+
vars: vars$o
|
16625
16867
|
});
|
16626
16868
|
|
16627
16869
|
const globalRefs$i = getThemeRefs(globals);
|
@@ -16634,58 +16876,58 @@ const modal = {
|
|
16634
16876
|
[compVars$2.overlayWidth]: '540px',
|
16635
16877
|
};
|
16636
16878
|
|
16637
|
-
const vars$
|
16879
|
+
const vars$n = {
|
16638
16880
|
...compVars$2,
|
16639
16881
|
};
|
16640
16882
|
|
16641
16883
|
var modal$1 = /*#__PURE__*/Object.freeze({
|
16642
16884
|
__proto__: null,
|
16643
16885
|
default: modal,
|
16644
|
-
vars: vars$
|
16886
|
+
vars: vars$n
|
16645
16887
|
});
|
16646
16888
|
|
16647
16889
|
const globalRefs$h = getThemeRefs(globals);
|
16648
|
-
const vars$
|
16890
|
+
const vars$m = GridClass.cssVarList;
|
16649
16891
|
|
16650
16892
|
const grid = {
|
16651
|
-
[vars$
|
16652
|
-
[vars$
|
16653
|
-
[vars$
|
16654
|
-
[vars$
|
16655
|
-
[vars$
|
16656
|
-
|
16657
|
-
[vars$
|
16658
|
-
[vars$
|
16659
|
-
|
16660
|
-
[vars$
|
16661
|
-
[vars$
|
16662
|
-
[vars$
|
16663
|
-
|
16664
|
-
[vars$
|
16665
|
-
[vars$
|
16666
|
-
[vars$
|
16667
|
-
[vars$
|
16668
|
-
|
16669
|
-
[vars$
|
16670
|
-
[vars$
|
16671
|
-
|
16672
|
-
[vars$
|
16673
|
-
[vars$
|
16674
|
-
[vars$
|
16675
|
-
|
16676
|
-
[vars$
|
16677
|
-
[vars$
|
16678
|
-
[vars$
|
16679
|
-
[vars$
|
16680
|
-
[vars$
|
16681
|
-
[vars$
|
16682
|
-
[vars$
|
16683
|
-
[vars$
|
16684
|
-
[vars$
|
16685
|
-
[vars$
|
16893
|
+
[vars$m.hostWidth]: '100%',
|
16894
|
+
[vars$m.hostHeight]: '100%',
|
16895
|
+
[vars$m.hostMinHeight]: '400px',
|
16896
|
+
[vars$m.fontWeight]: '400',
|
16897
|
+
[vars$m.backgroundColor]: globalRefs$h.colors.surface.main,
|
16898
|
+
|
16899
|
+
[vars$m.fontSize]: refs.fontSize,
|
16900
|
+
[vars$m.fontFamily]: refs.fontFamily,
|
16901
|
+
|
16902
|
+
[vars$m.sortIndicatorsColor]: globalRefs$h.colors.surface.light,
|
16903
|
+
[vars$m.activeSortIndicator]: globalRefs$h.colors.surface.dark,
|
16904
|
+
[vars$m.resizeHandleColor]: globalRefs$h.colors.surface.light,
|
16905
|
+
|
16906
|
+
[vars$m.borderWidth]: refs.borderWidth,
|
16907
|
+
[vars$m.borderStyle]: refs.borderStyle,
|
16908
|
+
[vars$m.borderRadius]: refs.borderRadius,
|
16909
|
+
[vars$m.borderColor]: 'transparent',
|
16910
|
+
|
16911
|
+
[vars$m.headerRowTextColor]: globalRefs$h.colors.surface.dark,
|
16912
|
+
[vars$m.separatorColor]: globalRefs$h.colors.surface.light,
|
16913
|
+
|
16914
|
+
[vars$m.valueTextColor]: globalRefs$h.colors.surface.contrast,
|
16915
|
+
[vars$m.selectedBackgroundColor]: globalRefs$h.colors.surface.highlight,
|
16916
|
+
[vars$m.hostDirection]: globalRefs$h.direction,
|
16917
|
+
|
16918
|
+
[vars$m.toggleDetailsPanelButtonSize]: '1em',
|
16919
|
+
[vars$m.toggleDetailsPanelButtonOpenedColor]: globalRefs$h.colors.surface.contrast,
|
16920
|
+
[vars$m.toggleDetailsPanelButtonClosedColor]: globalRefs$h.colors.surface.light,
|
16921
|
+
[vars$m.toggleDetailsPanelButtonCursor]: 'pointer',
|
16922
|
+
[vars$m.detailsPanelBackgroundColor]: globalRefs$h.colors.surface.highlight,
|
16923
|
+
[vars$m.detailsPanelBorderTopColor]: globalRefs$h.colors.surface.light,
|
16924
|
+
[vars$m.detailsPanelLabelsColor]: globalRefs$h.colors.surface.dark,
|
16925
|
+
[vars$m.detailsPanelLabelsFontSize]: '0.8em',
|
16926
|
+
[vars$m.detailsPanelItemsGap]: '2em',
|
16927
|
+
[vars$m.detailsPanelPadding]: '12px 0',
|
16686
16928
|
|
16687
16929
|
_bordered: {
|
16688
|
-
[vars$
|
16930
|
+
[vars$m.borderColor]: refs.borderColor,
|
16689
16931
|
},
|
16690
16932
|
};
|
16691
16933
|
|
@@ -16693,53 +16935,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
|
|
16693
16935
|
__proto__: null,
|
16694
16936
|
default: grid,
|
16695
16937
|
grid: grid,
|
16696
|
-
vars: vars$
|
16938
|
+
vars: vars$m
|
16697
16939
|
});
|
16698
16940
|
|
16699
16941
|
const globalRefs$g = getThemeRefs(globals);
|
16700
|
-
const vars$
|
16942
|
+
const vars$l = NotificationCardClass.cssVarList;
|
16701
16943
|
|
16702
16944
|
const shadowColor$2 = '#00000020';
|
16703
16945
|
|
16704
16946
|
const notification = {
|
16705
|
-
[vars$
|
16706
|
-
[vars$
|
16707
|
-
[vars$
|
16708
|
-
[vars$
|
16709
|
-
[vars$
|
16710
|
-
[vars$
|
16711
|
-
[vars$
|
16712
|
-
[vars$
|
16713
|
-
[vars$
|
16947
|
+
[vars$l.hostMinWidth]: '415px',
|
16948
|
+
[vars$l.fontFamily]: globalRefs$g.fonts.font1.family,
|
16949
|
+
[vars$l.fontSize]: globalRefs$g.typography.body1.size,
|
16950
|
+
[vars$l.backgroundColor]: globalRefs$g.colors.surface.main,
|
16951
|
+
[vars$l.textColor]: globalRefs$g.colors.surface.contrast,
|
16952
|
+
[vars$l.boxShadow]: `${globalRefs$g.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$g.shadow.narrow.xl} ${shadowColor$2}`,
|
16953
|
+
[vars$l.verticalPadding]: '0.625em',
|
16954
|
+
[vars$l.horizontalPadding]: '1.5em',
|
16955
|
+
[vars$l.borderRadius]: globalRefs$g.radius.xs,
|
16714
16956
|
|
16715
16957
|
_bordered: {
|
16716
|
-
[vars$
|
16717
|
-
[vars$
|
16718
|
-
[vars$
|
16958
|
+
[vars$l.borderWidth]: globalRefs$g.border.sm,
|
16959
|
+
[vars$l.borderStyle]: 'solid',
|
16960
|
+
[vars$l.borderColor]: 'transparent',
|
16719
16961
|
},
|
16720
16962
|
|
16721
16963
|
size: {
|
16722
|
-
xs: { [vars$
|
16723
|
-
sm: { [vars$
|
16724
|
-
md: { [vars$
|
16725
|
-
lg: { [vars$
|
16964
|
+
xs: { [vars$l.fontSize]: '12px' },
|
16965
|
+
sm: { [vars$l.fontSize]: '14px' },
|
16966
|
+
md: { [vars$l.fontSize]: '16px' },
|
16967
|
+
lg: { [vars$l.fontSize]: '18px' },
|
16726
16968
|
},
|
16727
16969
|
|
16728
16970
|
mode: {
|
16729
16971
|
primary: {
|
16730
|
-
[vars$
|
16731
|
-
[vars$
|
16732
|
-
[vars$
|
16972
|
+
[vars$l.backgroundColor]: globalRefs$g.colors.primary.main,
|
16973
|
+
[vars$l.textColor]: globalRefs$g.colors.primary.contrast,
|
16974
|
+
[vars$l.borderColor]: globalRefs$g.colors.primary.light,
|
16733
16975
|
},
|
16734
16976
|
success: {
|
16735
|
-
[vars$
|
16736
|
-
[vars$
|
16737
|
-
[vars$
|
16977
|
+
[vars$l.backgroundColor]: globalRefs$g.colors.success.main,
|
16978
|
+
[vars$l.textColor]: globalRefs$g.colors.success.contrast,
|
16979
|
+
[vars$l.borderColor]: globalRefs$g.colors.success.light,
|
16738
16980
|
},
|
16739
16981
|
error: {
|
16740
|
-
[vars$
|
16741
|
-
[vars$
|
16742
|
-
[vars$
|
16982
|
+
[vars$l.backgroundColor]: globalRefs$g.colors.error.main,
|
16983
|
+
[vars$l.textColor]: globalRefs$g.colors.error.contrast,
|
16984
|
+
[vars$l.borderColor]: globalRefs$g.colors.error.light,
|
16743
16985
|
},
|
16744
16986
|
},
|
16745
16987
|
};
|
@@ -16747,148 +16989,148 @@ const notification = {
|
|
16747
16989
|
var notificationCard = /*#__PURE__*/Object.freeze({
|
16748
16990
|
__proto__: null,
|
16749
16991
|
default: notification,
|
16750
|
-
vars: vars$
|
16992
|
+
vars: vars$l
|
16751
16993
|
});
|
16752
16994
|
|
16753
16995
|
const globalRefs$f = getThemeRefs(globals);
|
16754
|
-
const vars$
|
16996
|
+
const vars$k = MultiSelectComboBoxClass.cssVarList;
|
16755
16997
|
|
16756
16998
|
const multiSelectComboBox = {
|
16757
|
-
[vars$
|
16758
|
-
[vars$
|
16759
|
-
[vars$
|
16760
|
-
[vars$
|
16761
|
-
[vars$
|
16762
|
-
[vars$
|
16763
|
-
[vars$
|
16764
|
-
[vars$
|
16765
|
-
[vars$
|
16766
|
-
[vars$
|
16767
|
-
[vars$
|
16768
|
-
[vars$
|
16769
|
-
[vars$
|
16770
|
-
[vars$
|
16771
|
-
[vars$
|
16772
|
-
[vars$
|
16773
|
-
[vars$
|
16774
|
-
[vars$
|
16775
|
-
[vars$
|
16776
|
-
[vars$
|
16777
|
-
[vars$
|
16778
|
-
[vars$
|
16779
|
-
[vars$
|
16780
|
-
[vars$
|
16781
|
-
[vars$
|
16782
|
-
[vars$
|
16783
|
-
[vars$
|
16784
|
-
[vars$
|
16785
|
-
[vars$
|
16786
|
-
[vars$
|
16787
|
-
[vars$
|
16788
|
-
[vars$
|
16789
|
-
[vars$
|
16790
|
-
[vars$
|
16791
|
-
[vars$
|
16792
|
-
[vars$
|
16793
|
-
[vars$
|
16794
|
-
[vars$
|
16795
|
-
[vars$
|
16796
|
-
[vars$
|
16797
|
-
[vars$
|
16999
|
+
[vars$k.hostWidth]: refs.width,
|
17000
|
+
[vars$k.hostDirection]: refs.direction,
|
17001
|
+
[vars$k.fontSize]: refs.fontSize,
|
17002
|
+
[vars$k.fontFamily]: refs.fontFamily,
|
17003
|
+
[vars$k.labelFontSize]: refs.labelFontSize,
|
17004
|
+
[vars$k.labelFontWeight]: refs.labelFontWeight,
|
17005
|
+
[vars$k.labelTextColor]: refs.labelTextColor,
|
17006
|
+
[vars$k.errorMessageTextColor]: refs.errorMessageTextColor,
|
17007
|
+
[vars$k.inputBorderColor]: refs.borderColor,
|
17008
|
+
[vars$k.inputBorderWidth]: refs.borderWidth,
|
17009
|
+
[vars$k.inputBorderStyle]: refs.borderStyle,
|
17010
|
+
[vars$k.inputBorderRadius]: refs.borderRadius,
|
17011
|
+
[vars$k.inputOutlineColor]: refs.outlineColor,
|
17012
|
+
[vars$k.inputOutlineOffset]: refs.outlineOffset,
|
17013
|
+
[vars$k.inputOutlineWidth]: refs.outlineWidth,
|
17014
|
+
[vars$k.inputOutlineStyle]: refs.outlineStyle,
|
17015
|
+
[vars$k.labelRequiredIndicator]: refs.requiredIndicator,
|
17016
|
+
[vars$k.inputValueTextColor]: refs.valueTextColor,
|
17017
|
+
[vars$k.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
17018
|
+
[vars$k.inputBackgroundColor]: refs.backgroundColor,
|
17019
|
+
[vars$k.inputHorizontalPadding]: refs.horizontalPadding,
|
17020
|
+
[vars$k.inputVerticalPadding]: refs.verticalPadding,
|
17021
|
+
[vars$k.inputHeight]: refs.inputHeight,
|
17022
|
+
[vars$k.inputDropdownButtonColor]: globalRefs$f.colors.surface.dark,
|
17023
|
+
[vars$k.inputDropdownButtonCursor]: 'pointer',
|
17024
|
+
[vars$k.inputDropdownButtonSize]: refs.toggleButtonSize,
|
17025
|
+
[vars$k.inputDropdownButtonOffset]: globalRefs$f.spacing.xs,
|
17026
|
+
[vars$k.overlayItemPaddingInlineStart]: globalRefs$f.spacing.xs,
|
17027
|
+
[vars$k.overlayItemPaddingInlineEnd]: globalRefs$f.spacing.lg,
|
17028
|
+
[vars$k.chipFontSize]: refs.chipFontSize,
|
17029
|
+
[vars$k.chipTextColor]: globalRefs$f.colors.surface.contrast,
|
17030
|
+
[vars$k.chipBackgroundColor]: globalRefs$f.colors.surface.light,
|
17031
|
+
[vars$k.labelPosition]: refs.labelPosition,
|
17032
|
+
[vars$k.labelTopPosition]: refs.labelTopPosition,
|
17033
|
+
[vars$k.labelLeftPosition]: refs.labelLeftPosition,
|
17034
|
+
[vars$k.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
17035
|
+
[vars$k.inputTransformY]: refs.inputTransformY,
|
17036
|
+
[vars$k.inputTransition]: refs.inputTransition,
|
17037
|
+
[vars$k.marginInlineStart]: refs.marginInlineStart,
|
17038
|
+
[vars$k.placeholderOpacity]: refs.placeholderOpacity,
|
17039
|
+
[vars$k.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
16798
17040
|
|
16799
17041
|
labelType: {
|
16800
17042
|
floating: {
|
16801
|
-
[vars$
|
17043
|
+
[vars$k.inputHorizontalPadding]: '0.25em',
|
16802
17044
|
_hasValue: {
|
16803
|
-
[vars$
|
17045
|
+
[vars$k.inputHorizontalPadding]: '0.45em',
|
16804
17046
|
},
|
16805
17047
|
},
|
16806
17048
|
},
|
16807
17049
|
|
16808
17050
|
_readonly: {
|
16809
|
-
[vars$
|
17051
|
+
[vars$k.inputDropdownButtonCursor]: 'default',
|
16810
17052
|
},
|
16811
17053
|
|
16812
17054
|
// Overlay theme exposed via the component:
|
16813
|
-
[vars$
|
16814
|
-
[vars$
|
16815
|
-
[vars$
|
16816
|
-
[vars$
|
16817
|
-
[vars$
|
16818
|
-
[vars$
|
17055
|
+
[vars$k.overlayFontSize]: refs.fontSize,
|
17056
|
+
[vars$k.overlayFontFamily]: refs.fontFamily,
|
17057
|
+
[vars$k.overlayCursor]: 'pointer',
|
17058
|
+
[vars$k.overlayItemBoxShadow]: 'none',
|
17059
|
+
[vars$k.overlayBackground]: refs.backgroundColor,
|
17060
|
+
[vars$k.overlayTextColor]: refs.valueTextColor,
|
16819
17061
|
|
16820
17062
|
// Overlay direct theme:
|
16821
|
-
[vars$
|
16822
|
-
[vars$
|
17063
|
+
[vars$k.overlay.minHeight]: '400px',
|
17064
|
+
[vars$k.overlay.margin]: '0',
|
16823
17065
|
};
|
16824
17066
|
|
16825
17067
|
var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
|
16826
17068
|
__proto__: null,
|
16827
17069
|
default: multiSelectComboBox,
|
16828
17070
|
multiSelectComboBox: multiSelectComboBox,
|
16829
|
-
vars: vars$
|
17071
|
+
vars: vars$k
|
16830
17072
|
});
|
16831
17073
|
|
16832
17074
|
const globalRefs$e = getThemeRefs(globals);
|
16833
|
-
const vars$
|
17075
|
+
const vars$j = BadgeClass.cssVarList;
|
16834
17076
|
|
16835
17077
|
const badge = {
|
16836
|
-
[vars$
|
16837
|
-
[vars$
|
17078
|
+
[vars$j.hostWidth]: 'fit-content',
|
17079
|
+
[vars$j.hostDirection]: globalRefs$e.direction,
|
16838
17080
|
|
16839
|
-
[vars$
|
17081
|
+
[vars$j.textAlign]: 'center',
|
16840
17082
|
|
16841
|
-
[vars$
|
16842
|
-
[vars$
|
17083
|
+
[vars$j.fontFamily]: globalRefs$e.fonts.font1.family,
|
17084
|
+
[vars$j.fontWeight]: '400',
|
16843
17085
|
|
16844
|
-
[vars$
|
16845
|
-
[vars$
|
17086
|
+
[vars$j.verticalPadding]: '0.25em',
|
17087
|
+
[vars$j.horizontalPadding]: '0.5em',
|
16846
17088
|
|
16847
|
-
[vars$
|
16848
|
-
[vars$
|
16849
|
-
[vars$
|
16850
|
-
[vars$
|
17089
|
+
[vars$j.borderWidth]: globalRefs$e.border.xs,
|
17090
|
+
[vars$j.borderRadius]: globalRefs$e.radius.xs,
|
17091
|
+
[vars$j.borderColor]: 'transparent',
|
17092
|
+
[vars$j.borderStyle]: 'solid',
|
16851
17093
|
|
16852
17094
|
_fullWidth: {
|
16853
|
-
[vars$
|
17095
|
+
[vars$j.hostWidth]: '100%',
|
16854
17096
|
},
|
16855
17097
|
|
16856
17098
|
size: {
|
16857
|
-
xs: { [vars$
|
16858
|
-
sm: { [vars$
|
16859
|
-
md: { [vars$
|
16860
|
-
lg: { [vars$
|
17099
|
+
xs: { [vars$j.fontSize]: '12px' },
|
17100
|
+
sm: { [vars$j.fontSize]: '14px' },
|
17101
|
+
md: { [vars$j.fontSize]: '16px' },
|
17102
|
+
lg: { [vars$j.fontSize]: '18px' },
|
16861
17103
|
},
|
16862
17104
|
|
16863
17105
|
mode: {
|
16864
17106
|
default: {
|
16865
|
-
[vars$
|
17107
|
+
[vars$j.textColor]: globalRefs$e.colors.surface.dark,
|
16866
17108
|
_bordered: {
|
16867
|
-
[vars$
|
17109
|
+
[vars$j.borderColor]: globalRefs$e.colors.surface.light,
|
16868
17110
|
},
|
16869
17111
|
},
|
16870
17112
|
primary: {
|
16871
|
-
[vars$
|
17113
|
+
[vars$j.textColor]: globalRefs$e.colors.primary.main,
|
16872
17114
|
_bordered: {
|
16873
|
-
[vars$
|
17115
|
+
[vars$j.borderColor]: globalRefs$e.colors.primary.light,
|
16874
17116
|
},
|
16875
17117
|
},
|
16876
17118
|
secondary: {
|
16877
|
-
[vars$
|
17119
|
+
[vars$j.textColor]: globalRefs$e.colors.secondary.main,
|
16878
17120
|
_bordered: {
|
16879
|
-
[vars$
|
17121
|
+
[vars$j.borderColor]: globalRefs$e.colors.secondary.light,
|
16880
17122
|
},
|
16881
17123
|
},
|
16882
17124
|
error: {
|
16883
|
-
[vars$
|
17125
|
+
[vars$j.textColor]: globalRefs$e.colors.error.main,
|
16884
17126
|
_bordered: {
|
16885
|
-
[vars$
|
17127
|
+
[vars$j.borderColor]: globalRefs$e.colors.error.light,
|
16886
17128
|
},
|
16887
17129
|
},
|
16888
17130
|
success: {
|
16889
|
-
[vars$
|
17131
|
+
[vars$j.textColor]: globalRefs$e.colors.success.main,
|
16890
17132
|
_bordered: {
|
16891
|
-
[vars$
|
17133
|
+
[vars$j.borderColor]: globalRefs$e.colors.success.light,
|
16892
17134
|
},
|
16893
17135
|
},
|
16894
17136
|
},
|
@@ -16897,7 +17139,7 @@ const badge = {
|
|
16897
17139
|
var badge$1 = /*#__PURE__*/Object.freeze({
|
16898
17140
|
__proto__: null,
|
16899
17141
|
default: badge,
|
16900
|
-
vars: vars$
|
17142
|
+
vars: vars$j
|
16901
17143
|
});
|
16902
17144
|
|
16903
17145
|
const globalRefs$d = getThemeRefs(globals);
|
@@ -16935,143 +17177,143 @@ const avatar = {
|
|
16935
17177
|
},
|
16936
17178
|
};
|
16937
17179
|
|
16938
|
-
const vars$
|
17180
|
+
const vars$i = {
|
16939
17181
|
...compVars$1,
|
16940
17182
|
};
|
16941
17183
|
|
16942
17184
|
var avatar$1 = /*#__PURE__*/Object.freeze({
|
16943
17185
|
__proto__: null,
|
16944
17186
|
default: avatar,
|
16945
|
-
vars: vars$
|
17187
|
+
vars: vars$i
|
16946
17188
|
});
|
16947
17189
|
|
16948
17190
|
const globalRefs$c = getThemeRefs(globals);
|
16949
17191
|
|
16950
|
-
const vars$
|
17192
|
+
const vars$h = MappingsFieldClass.cssVarList;
|
16951
17193
|
|
16952
17194
|
const mappingsField = {
|
16953
|
-
[vars$
|
16954
|
-
[vars$
|
16955
|
-
[vars$
|
16956
|
-
[vars$
|
16957
|
-
[vars$
|
16958
|
-
[vars$
|
16959
|
-
[vars$
|
16960
|
-
[vars$
|
16961
|
-
[vars$
|
16962
|
-
[vars$
|
17195
|
+
[vars$h.hostWidth]: refs.width,
|
17196
|
+
[vars$h.hostDirection]: refs.direction,
|
17197
|
+
[vars$h.fontSize]: refs.fontSize,
|
17198
|
+
[vars$h.fontFamily]: refs.fontFamily,
|
17199
|
+
[vars$h.separatorFontSize]: '14px',
|
17200
|
+
[vars$h.labelsFontSize]: '14px',
|
17201
|
+
[vars$h.labelsLineHeight]: '1',
|
17202
|
+
[vars$h.labelsMarginBottom]: '6px',
|
17203
|
+
[vars$h.labelTextColor]: refs.labelTextColor,
|
17204
|
+
[vars$h.itemMarginBottom]: '1em',
|
16963
17205
|
// To be positioned correctly, the min width has to match the text field min width
|
16964
|
-
[vars$
|
17206
|
+
[vars$h.valueLabelMinWidth]: refs.minWidth,
|
16965
17207
|
// To be positioned correctly, the min width has to match the combo box field min width
|
16966
|
-
[vars$
|
16967
|
-
[vars$
|
16968
|
-
[vars$
|
17208
|
+
[vars$h.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
|
17209
|
+
[vars$h.separatorWidth]: '70px',
|
17210
|
+
[vars$h.removeButtonWidth]: '60px',
|
16969
17211
|
};
|
16970
17212
|
|
16971
17213
|
var mappingsField$1 = /*#__PURE__*/Object.freeze({
|
16972
17214
|
__proto__: null,
|
16973
17215
|
default: mappingsField,
|
16974
17216
|
mappingsField: mappingsField,
|
16975
|
-
vars: vars$
|
17217
|
+
vars: vars$h
|
16976
17218
|
});
|
16977
17219
|
|
16978
17220
|
const globalRefs$b = getThemeRefs(globals);
|
16979
|
-
const vars$
|
17221
|
+
const vars$g = UserAttributeClass.cssVarList;
|
16980
17222
|
|
16981
17223
|
const userAttribute = {
|
16982
|
-
[vars$
|
16983
|
-
[vars$
|
16984
|
-
[vars$
|
16985
|
-
[vars$
|
16986
|
-
[vars$
|
16987
|
-
[vars$
|
17224
|
+
[vars$g.hostDirection]: globalRefs$b.direction,
|
17225
|
+
[vars$g.labelTextWidth]: '150px',
|
17226
|
+
[vars$g.valueTextWidth]: '200px',
|
17227
|
+
[vars$g.badgeMaxWidth]: '85px',
|
17228
|
+
[vars$g.itemsGap]: '16px',
|
17229
|
+
[vars$g.hostMinWidth]: '530px',
|
16988
17230
|
_fullWidth: {
|
16989
|
-
[vars$
|
17231
|
+
[vars$g.hostWidth]: '100%',
|
16990
17232
|
},
|
16991
17233
|
};
|
16992
17234
|
|
16993
17235
|
var userAttribute$1 = /*#__PURE__*/Object.freeze({
|
16994
17236
|
__proto__: null,
|
16995
17237
|
default: userAttribute,
|
16996
|
-
vars: vars$
|
17238
|
+
vars: vars$g
|
16997
17239
|
});
|
16998
17240
|
|
16999
17241
|
const globalRefs$a = getThemeRefs(globals);
|
17000
|
-
const vars$
|
17242
|
+
const vars$f = UserAuthMethodClass.cssVarList;
|
17001
17243
|
|
17002
17244
|
const userAuthMethod = {
|
17003
|
-
[vars$
|
17004
|
-
[vars$
|
17005
|
-
[vars$
|
17006
|
-
[vars$
|
17007
|
-
[vars$
|
17245
|
+
[vars$f.hostDirection]: globalRefs$a.direction,
|
17246
|
+
[vars$f.labelTextWidth]: '200px',
|
17247
|
+
[vars$f.itemsGap]: '16px',
|
17248
|
+
[vars$f.hostMinWidth]: '530px',
|
17249
|
+
[vars$f.iconSize]: '24px',
|
17008
17250
|
_fullWidth: {
|
17009
|
-
[vars$
|
17251
|
+
[vars$f.hostWidth]: '100%',
|
17010
17252
|
},
|
17011
17253
|
};
|
17012
17254
|
|
17013
17255
|
var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
|
17014
17256
|
__proto__: null,
|
17015
17257
|
default: userAuthMethod,
|
17016
|
-
vars: vars$
|
17258
|
+
vars: vars$f
|
17017
17259
|
});
|
17018
17260
|
|
17019
|
-
const vars$
|
17261
|
+
const vars$e = SamlGroupMappingsClass.cssVarList;
|
17020
17262
|
|
17021
17263
|
const samlGroupMappings = {
|
17022
|
-
[vars$
|
17023
|
-
[vars$
|
17024
|
-
[vars$
|
17264
|
+
[vars$e.hostWidth]: refs.width,
|
17265
|
+
[vars$e.hostDirection]: refs.direction,
|
17266
|
+
[vars$e.groupNameInputMarginBottom]: '1em',
|
17025
17267
|
};
|
17026
17268
|
|
17027
17269
|
var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
|
17028
17270
|
__proto__: null,
|
17029
17271
|
default: samlGroupMappings,
|
17030
17272
|
samlGroupMappings: samlGroupMappings,
|
17031
|
-
vars: vars$
|
17273
|
+
vars: vars$e
|
17032
17274
|
});
|
17033
17275
|
|
17034
17276
|
const globalRefs$9 = getThemeRefs(globals);
|
17035
|
-
const vars$
|
17277
|
+
const vars$d = PolicyValidationClass.cssVarList;
|
17036
17278
|
|
17037
17279
|
const policyValidation = {
|
17038
|
-
[vars$
|
17039
|
-
[vars$
|
17040
|
-
[vars$
|
17041
|
-
[vars$
|
17042
|
-
[vars$
|
17043
|
-
[vars$
|
17044
|
-
[vars$
|
17045
|
-
[vars$
|
17046
|
-
[vars$
|
17047
|
-
[vars$
|
17048
|
-
[vars$
|
17049
|
-
[vars$
|
17050
|
-
[vars$
|
17051
|
-
[vars$
|
17052
|
-
[vars$
|
17053
|
-
[vars$
|
17280
|
+
[vars$d.fontFamily]: refs.fontFamily,
|
17281
|
+
[vars$d.fontSize]: refs.labelFontSize,
|
17282
|
+
[vars$d.textColor]: refs.labelTextColor,
|
17283
|
+
[vars$d.borderWidth]: refs.borderWidth,
|
17284
|
+
[vars$d.borderStyle]: refs.borderStyle,
|
17285
|
+
[vars$d.borderColor]: refs.borderColor,
|
17286
|
+
[vars$d.borderRadius]: globalRefs$9.radius.sm,
|
17287
|
+
[vars$d.backgroundColor]: 'none',
|
17288
|
+
[vars$d.padding]: '0px',
|
17289
|
+
[vars$d.labelMargin]: globalRefs$9.spacing.sm,
|
17290
|
+
[vars$d.itemsSpacing]: globalRefs$9.spacing.lg,
|
17291
|
+
[vars$d.itemSymbolDefault]: "'\\2022'", // "•"
|
17292
|
+
[vars$d.itemSymbolSuccess]: "'\\2713'", // "✓"
|
17293
|
+
[vars$d.itemSymbolError]: "'\\2A09'", // "⨉"
|
17294
|
+
[vars$d.itemSymbolSuccessColor]: globalRefs$9.colors.success.main,
|
17295
|
+
[vars$d.itemSymbolErrorColor]: globalRefs$9.colors.error.main,
|
17054
17296
|
};
|
17055
17297
|
|
17056
17298
|
var policyValidation$1 = /*#__PURE__*/Object.freeze({
|
17057
17299
|
__proto__: null,
|
17058
17300
|
default: policyValidation,
|
17059
|
-
vars: vars$
|
17301
|
+
vars: vars$d
|
17060
17302
|
});
|
17061
17303
|
|
17062
|
-
const vars$
|
17304
|
+
const vars$c = IconClass.cssVarList;
|
17063
17305
|
|
17064
17306
|
const icon = {};
|
17065
17307
|
|
17066
17308
|
var icon$1 = /*#__PURE__*/Object.freeze({
|
17067
17309
|
__proto__: null,
|
17068
17310
|
default: icon,
|
17069
|
-
vars: vars$
|
17311
|
+
vars: vars$c
|
17070
17312
|
});
|
17071
17313
|
|
17072
17314
|
const globalRefs$8 = getThemeRefs(globals);
|
17073
17315
|
|
17074
|
-
const vars$
|
17316
|
+
const vars$b = CodeSnippetClass.cssVarList;
|
17075
17317
|
|
17076
17318
|
const light = {
|
17077
17319
|
color1: '#fa0',
|
@@ -17106,50 +17348,50 @@ const dark = {
|
|
17106
17348
|
};
|
17107
17349
|
|
17108
17350
|
const CodeSnippet = {
|
17109
|
-
[vars$
|
17110
|
-
[vars$
|
17111
|
-
[vars$
|
17112
|
-
[vars$
|
17113
|
-
[vars$
|
17114
|
-
[vars$
|
17115
|
-
[vars$
|
17116
|
-
[vars$
|
17117
|
-
[vars$
|
17118
|
-
[vars$
|
17119
|
-
[vars$
|
17120
|
-
[vars$
|
17121
|
-
[vars$
|
17122
|
-
[vars$
|
17123
|
-
[vars$
|
17124
|
-
[vars$
|
17125
|
-
[vars$
|
17126
|
-
[vars$
|
17127
|
-
[vars$
|
17128
|
-
[vars$
|
17129
|
-
[vars$
|
17130
|
-
[vars$
|
17131
|
-
[vars$
|
17132
|
-
[vars$
|
17133
|
-
[vars$
|
17134
|
-
[vars$
|
17135
|
-
[vars$
|
17136
|
-
[vars$
|
17137
|
-
[vars$
|
17138
|
-
[vars$
|
17139
|
-
[vars$
|
17140
|
-
[vars$
|
17141
|
-
[vars$
|
17142
|
-
[vars$
|
17143
|
-
[vars$
|
17144
|
-
[vars$
|
17145
|
-
[vars$
|
17146
|
-
[vars$
|
17147
|
-
[vars$
|
17148
|
-
[vars$
|
17149
|
-
[vars$
|
17150
|
-
[vars$
|
17151
|
-
[vars$
|
17152
|
-
[vars$
|
17351
|
+
[vars$b.rootBgColor]: globalRefs$8.colors.surface.main,
|
17352
|
+
[vars$b.rootTextColor]: globalRefs$8.colors.surface.contrast,
|
17353
|
+
[vars$b.docTagTextColor]: light.color2,
|
17354
|
+
[vars$b.keywordTextColor]: light.color2,
|
17355
|
+
[vars$b.metaKeywordTextColor]: light.color2,
|
17356
|
+
[vars$b.templateTagTextColor]: light.color2,
|
17357
|
+
[vars$b.templateVariableTextColor]: light.color2,
|
17358
|
+
[vars$b.typeTextColor]: light.color2,
|
17359
|
+
[vars$b.variableLanguageTextColor]: light.color2,
|
17360
|
+
[vars$b.titleTextColor]: light.color3,
|
17361
|
+
[vars$b.titleClassTextColor]: light.color3,
|
17362
|
+
[vars$b.titleClassInheritedTextColor]: light.color3,
|
17363
|
+
[vars$b.titleFunctionTextColor]: light.color3,
|
17364
|
+
[vars$b.attrTextColor]: light.color4,
|
17365
|
+
[vars$b.attributeTextColor]: light.color4,
|
17366
|
+
[vars$b.literalTextColor]: light.color4,
|
17367
|
+
[vars$b.metaTextColor]: light.color4,
|
17368
|
+
[vars$b.numberTextColor]: light.color4,
|
17369
|
+
[vars$b.operatorTextColor]: light.color4,
|
17370
|
+
[vars$b.variableTextColor]: light.color4,
|
17371
|
+
[vars$b.selectorAttrTextColor]: light.color4,
|
17372
|
+
[vars$b.selectorClassTextColor]: light.color4,
|
17373
|
+
[vars$b.selectorIdTextColor]: light.color4,
|
17374
|
+
[vars$b.regexpTextColor]: light.color13,
|
17375
|
+
[vars$b.stringTextColor]: light.color13,
|
17376
|
+
[vars$b.metaStringTextColor]: light.color13,
|
17377
|
+
[vars$b.builtInTextColor]: light.color5,
|
17378
|
+
[vars$b.symbolTextColor]: light.color5,
|
17379
|
+
[vars$b.commentTextColor]: light.color6,
|
17380
|
+
[vars$b.codeTextColor]: light.color6,
|
17381
|
+
[vars$b.formulaTextColor]: light.color6,
|
17382
|
+
[vars$b.nameTextColor]: light.color7,
|
17383
|
+
[vars$b.quoteTextColor]: light.color7,
|
17384
|
+
[vars$b.selectorTagTextColor]: light.color7,
|
17385
|
+
[vars$b.selectorPseudoTextColor]: light.color7,
|
17386
|
+
[vars$b.substTextColor]: light.color8,
|
17387
|
+
[vars$b.sectionTextColor]: light.color4,
|
17388
|
+
[vars$b.bulletTextColor]: light.color9,
|
17389
|
+
[vars$b.emphasisTextColor]: light.color8,
|
17390
|
+
[vars$b.strongTextColor]: light.color8,
|
17391
|
+
[vars$b.additionTextColor]: light.color7,
|
17392
|
+
[vars$b.additionBgColor]: light.color10,
|
17393
|
+
[vars$b.deletionTextColor]: light.color2,
|
17394
|
+
[vars$b.deletionBgColor]: light.color10,
|
17153
17395
|
/* purposely ignored */
|
17154
17396
|
// [vars.charEscapeTextColor]: '',
|
17155
17397
|
// [vars.linkTextColor]: '',
|
@@ -17161,50 +17403,50 @@ const CodeSnippet = {
|
|
17161
17403
|
|
17162
17404
|
const codeSnippetDarkThemeOverrides = {
|
17163
17405
|
codeSnippet: {
|
17164
|
-
[vars$
|
17165
|
-
[vars$
|
17166
|
-
[vars$
|
17167
|
-
[vars$
|
17168
|
-
[vars$
|
17169
|
-
[vars$
|
17170
|
-
[vars$
|
17171
|
-
[vars$
|
17172
|
-
[vars$
|
17173
|
-
[vars$
|
17174
|
-
[vars$
|
17175
|
-
[vars$
|
17176
|
-
[vars$
|
17177
|
-
[vars$
|
17178
|
-
[vars$
|
17179
|
-
[vars$
|
17180
|
-
[vars$
|
17181
|
-
[vars$
|
17182
|
-
[vars$
|
17183
|
-
[vars$
|
17184
|
-
[vars$
|
17185
|
-
[vars$
|
17186
|
-
[vars$
|
17187
|
-
[vars$
|
17188
|
-
[vars$
|
17189
|
-
[vars$
|
17190
|
-
[vars$
|
17191
|
-
[vars$
|
17192
|
-
[vars$
|
17193
|
-
[vars$
|
17194
|
-
[vars$
|
17195
|
-
[vars$
|
17196
|
-
[vars$
|
17197
|
-
[vars$
|
17198
|
-
[vars$
|
17199
|
-
[vars$
|
17200
|
-
[vars$
|
17201
|
-
[vars$
|
17202
|
-
[vars$
|
17203
|
-
[vars$
|
17204
|
-
[vars$
|
17205
|
-
[vars$
|
17206
|
-
[vars$
|
17207
|
-
[vars$
|
17406
|
+
[vars$b.rootBgColor]: globalRefs$8.colors.surface.main,
|
17407
|
+
[vars$b.rootTextColor]: globalRefs$8.colors.surface.contrast,
|
17408
|
+
[vars$b.docTagTextColor]: dark.color2,
|
17409
|
+
[vars$b.keywordTextColor]: dark.color2,
|
17410
|
+
[vars$b.metaKeywordTextColor]: dark.color2,
|
17411
|
+
[vars$b.templateTagTextColor]: dark.color2,
|
17412
|
+
[vars$b.templateVariableTextColor]: dark.color2,
|
17413
|
+
[vars$b.typeTextColor]: dark.color2,
|
17414
|
+
[vars$b.variableLanguageTextColor]: dark.color2,
|
17415
|
+
[vars$b.titleTextColor]: dark.color3,
|
17416
|
+
[vars$b.titleClassTextColor]: dark.color3,
|
17417
|
+
[vars$b.titleClassInheritedTextColor]: dark.color3,
|
17418
|
+
[vars$b.titleFunctionTextColor]: dark.color3,
|
17419
|
+
[vars$b.attrTextColor]: dark.color4,
|
17420
|
+
[vars$b.attributeTextColor]: dark.color4,
|
17421
|
+
[vars$b.literalTextColor]: dark.color4,
|
17422
|
+
[vars$b.metaTextColor]: dark.color4,
|
17423
|
+
[vars$b.numberTextColor]: dark.color4,
|
17424
|
+
[vars$b.operatorTextColor]: dark.color4,
|
17425
|
+
[vars$b.variableTextColor]: dark.color4,
|
17426
|
+
[vars$b.selectorAttrTextColor]: dark.color4,
|
17427
|
+
[vars$b.selectorClassTextColor]: dark.color4,
|
17428
|
+
[vars$b.selectorIdTextColor]: dark.color4,
|
17429
|
+
[vars$b.regexpTextColor]: dark.color13,
|
17430
|
+
[vars$b.stringTextColor]: dark.color13,
|
17431
|
+
[vars$b.metaStringTextColor]: dark.color13,
|
17432
|
+
[vars$b.builtInTextColor]: dark.color5,
|
17433
|
+
[vars$b.symbolTextColor]: dark.color5,
|
17434
|
+
[vars$b.commentTextColor]: dark.color6,
|
17435
|
+
[vars$b.codeTextColor]: dark.color6,
|
17436
|
+
[vars$b.formulaTextColor]: dark.color6,
|
17437
|
+
[vars$b.nameTextColor]: dark.color7,
|
17438
|
+
[vars$b.quoteTextColor]: dark.color7,
|
17439
|
+
[vars$b.selectorTagTextColor]: dark.color7,
|
17440
|
+
[vars$b.selectorPseudoTextColor]: dark.color7,
|
17441
|
+
[vars$b.substTextColor]: dark.color8,
|
17442
|
+
[vars$b.sectionTextColor]: dark.color4,
|
17443
|
+
[vars$b.bulletTextColor]: dark.color9,
|
17444
|
+
[vars$b.emphasisTextColor]: dark.color8,
|
17445
|
+
[vars$b.strongTextColor]: dark.color8,
|
17446
|
+
[vars$b.additionTextColor]: dark.color7,
|
17447
|
+
[vars$b.additionBgColor]: dark.color10,
|
17448
|
+
[vars$b.deletionTextColor]: dark.color2,
|
17449
|
+
[vars$b.deletionBgColor]: dark.color10,
|
17208
17450
|
},
|
17209
17451
|
};
|
17210
17452
|
|
@@ -17212,36 +17454,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
|
|
17212
17454
|
__proto__: null,
|
17213
17455
|
codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
|
17214
17456
|
default: CodeSnippet,
|
17215
|
-
vars: vars$
|
17457
|
+
vars: vars$b
|
17216
17458
|
});
|
17217
17459
|
|
17218
|
-
const vars$
|
17460
|
+
const vars$a = RadioGroupClass.cssVarList;
|
17219
17461
|
const globalRefs$7 = getThemeRefs(globals);
|
17220
17462
|
|
17221
17463
|
const radioGroup = {
|
17222
|
-
[vars$
|
17223
|
-
[vars$
|
17224
|
-
[vars$
|
17225
|
-
[vars$
|
17226
|
-
[vars$
|
17227
|
-
[vars$
|
17228
|
-
[vars$
|
17229
|
-
[vars$
|
17230
|
-
[vars$
|
17231
|
-
[vars$
|
17464
|
+
[vars$a.buttonsRowGap]: '9px',
|
17465
|
+
[vars$a.hostWidth]: refs.width,
|
17466
|
+
[vars$a.hostDirection]: refs.direction,
|
17467
|
+
[vars$a.fontSize]: refs.fontSize,
|
17468
|
+
[vars$a.fontFamily]: refs.fontFamily,
|
17469
|
+
[vars$a.labelTextColor]: refs.labelTextColor,
|
17470
|
+
[vars$a.labelRequiredIndicator]: refs.requiredIndicator,
|
17471
|
+
[vars$a.errorMessageTextColor]: refs.errorMessageTextColor,
|
17472
|
+
[vars$a.helperTextColor]: refs.helperTextColor,
|
17473
|
+
[vars$a.itemsLabelColor]: globalRefs$7.colors.surface.contrast,
|
17232
17474
|
|
17233
17475
|
textAlign: {
|
17234
|
-
right: { [vars$
|
17235
|
-
left: { [vars$
|
17236
|
-
center: { [vars$
|
17476
|
+
right: { [vars$a.inputTextAlign]: 'right' },
|
17477
|
+
left: { [vars$a.inputTextAlign]: 'left' },
|
17478
|
+
center: { [vars$a.inputTextAlign]: 'center' },
|
17237
17479
|
},
|
17238
17480
|
|
17239
17481
|
_fullWidth: {
|
17240
|
-
[vars$
|
17482
|
+
[vars$a.buttonsSpacing]: 'space-between',
|
17241
17483
|
},
|
17242
17484
|
|
17243
17485
|
_disabled: {
|
17244
|
-
[vars$
|
17486
|
+
[vars$a.itemsLabelColor]: globalRefs$7.colors.surface.light,
|
17245
17487
|
},
|
17246
17488
|
};
|
17247
17489
|
|
@@ -17249,24 +17491,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
|
|
17249
17491
|
__proto__: null,
|
17250
17492
|
default: radioGroup,
|
17251
17493
|
radioGroup: radioGroup,
|
17252
|
-
vars: vars$
|
17494
|
+
vars: vars$a
|
17253
17495
|
});
|
17254
17496
|
|
17255
|
-
const vars$
|
17497
|
+
const vars$9 = RadioButtonClass.cssVarList;
|
17256
17498
|
const globalRefs$6 = getThemeRefs(globals);
|
17257
17499
|
|
17258
17500
|
const radioButton = {
|
17259
|
-
[vars$
|
17260
|
-
[vars$
|
17261
|
-
[vars$
|
17262
|
-
[vars$
|
17263
|
-
[vars$
|
17264
|
-
[vars$
|
17265
|
-
[vars$
|
17266
|
-
[vars$
|
17501
|
+
[vars$9.fontFamily]: refs.fontFamily,
|
17502
|
+
[vars$9.radioSize]: 'calc(1em + 6px)',
|
17503
|
+
[vars$9.radioMargin]: 'auto 4px',
|
17504
|
+
[vars$9.radioCheckedSize]: `calc(var(${vars$9.radioSize})/5)`,
|
17505
|
+
[vars$9.radioCheckedColor]: globalRefs$6.colors.surface.light,
|
17506
|
+
[vars$9.radioBackgroundColor]: globalRefs$6.colors.surface.light,
|
17507
|
+
[vars$9.radioBorderColor]: 'none',
|
17508
|
+
[vars$9.radioBorderWidth]: 0,
|
17267
17509
|
|
17268
17510
|
_checked: {
|
17269
|
-
[vars$
|
17511
|
+
[vars$9.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
|
17270
17512
|
},
|
17271
17513
|
|
17272
17514
|
_hover: {
|
@@ -17275,16 +17517,16 @@ const radioButton = {
|
|
17275
17517
|
|
17276
17518
|
size: {
|
17277
17519
|
xs: {
|
17278
|
-
[vars$
|
17520
|
+
[vars$9.fontSize]: '12px',
|
17279
17521
|
},
|
17280
17522
|
sm: {
|
17281
|
-
[vars$
|
17523
|
+
[vars$9.fontSize]: '14px',
|
17282
17524
|
},
|
17283
17525
|
md: {
|
17284
|
-
[vars$
|
17526
|
+
[vars$9.fontSize]: '16px',
|
17285
17527
|
},
|
17286
17528
|
lg: {
|
17287
|
-
[vars$
|
17529
|
+
[vars$9.fontSize]: '18px',
|
17288
17530
|
},
|
17289
17531
|
},
|
17290
17532
|
};
|
@@ -17293,128 +17535,128 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
|
|
17293
17535
|
__proto__: null,
|
17294
17536
|
default: radioButton,
|
17295
17537
|
radioButton: radioButton,
|
17296
|
-
vars: vars$
|
17538
|
+
vars: vars$9
|
17297
17539
|
});
|
17298
17540
|
|
17299
17541
|
const globalRefs$5 = getThemeRefs(globals);
|
17300
17542
|
|
17301
|
-
const vars$
|
17543
|
+
const vars$8 = CalendarClass.cssVarList;
|
17302
17544
|
|
17303
17545
|
const calendar = {
|
17304
|
-
[vars$
|
17305
|
-
[vars$
|
17306
|
-
[vars$
|
17546
|
+
[vars$8.fontFamily]: refs.fontFamily,
|
17547
|
+
[vars$8.fontSize]: refs.fontSize,
|
17548
|
+
[vars$8.hostDirection]: refs.direction,
|
17307
17549
|
|
17308
|
-
[vars$
|
17550
|
+
[vars$8.calendarPadding]: '1em',
|
17309
17551
|
|
17310
|
-
[vars$
|
17311
|
-
[vars$
|
17312
|
-
[vars$
|
17313
|
-
[vars$
|
17552
|
+
[vars$8.topNavVerticalPadding]: '1em',
|
17553
|
+
[vars$8.topNavAlignment]: 'space-between',
|
17554
|
+
[vars$8.topNavGap]: '0',
|
17555
|
+
[vars$8.topNavSelectorsGap]: '0.5em',
|
17314
17556
|
|
17315
|
-
[vars$
|
17316
|
-
[vars$
|
17317
|
-
[vars$
|
17318
|
-
[vars$
|
17557
|
+
[vars$8.bottomNavVerticalPadding]: '0.75em',
|
17558
|
+
[vars$8.bottomNavHorizontalPadding]: '1.5em',
|
17559
|
+
[vars$8.bottomNavAlignment]: 'space-between',
|
17560
|
+
[vars$8.bottomNavGap]: '0.5em',
|
17319
17561
|
|
17320
|
-
[vars$
|
17321
|
-
[vars$
|
17322
|
-
[vars$
|
17323
|
-
[vars$
|
17562
|
+
[vars$8.navMarginBottom]: '0.75em',
|
17563
|
+
[vars$8.navBorderBottomWidth]: '1px',
|
17564
|
+
[vars$8.navBorderBottomColor]: globalRefs$5.colors.surface.highlight,
|
17565
|
+
[vars$8.navBorderBottomStyle]: 'solid',
|
17324
17566
|
|
17325
|
-
[vars$
|
17326
|
-
[vars$
|
17567
|
+
[vars$8.yearInputWidth]: '6em',
|
17568
|
+
[vars$8.monthInputWidth]: '8em',
|
17327
17569
|
|
17328
|
-
[vars$
|
17329
|
-
[vars$
|
17570
|
+
[vars$8.navButtonSize]: '24px',
|
17571
|
+
[vars$8.navButtonCursor]: 'pointer',
|
17330
17572
|
|
17331
|
-
[vars$
|
17332
|
-
[vars$
|
17573
|
+
[vars$8.weekdayFontSize]: '0.875em',
|
17574
|
+
[vars$8.weekdayFontWeight]: '500',
|
17333
17575
|
|
17334
17576
|
// day table cell
|
17335
|
-
[vars$
|
17577
|
+
[vars$8.dayHeight]: '3.125em',
|
17336
17578
|
|
17337
17579
|
// day value
|
17338
|
-
[vars$
|
17339
|
-
[vars$
|
17340
|
-
[vars$
|
17341
|
-
[vars$
|
17342
|
-
[vars$
|
17343
|
-
[vars$
|
17344
|
-
[vars$
|
17345
|
-
[vars$
|
17346
|
-
[vars$
|
17347
|
-
[vars$
|
17580
|
+
[vars$8.daySize]: '2.125em',
|
17581
|
+
[vars$8.dayFontSize]: '1em',
|
17582
|
+
[vars$8.dayRadius]: '50%',
|
17583
|
+
[vars$8.dayTextAlign]: 'center',
|
17584
|
+
[vars$8.dayPadding]: '0',
|
17585
|
+
[vars$8.dayTextColor]: globalRefs$5.colors.surface.contrast,
|
17586
|
+
[vars$8.dayFontWeight]: '500',
|
17587
|
+
[vars$8.dayBackgroundColor]: 'transparent',
|
17588
|
+
[vars$8.dayCursor]: 'pointer',
|
17589
|
+
[vars$8.dayBackgroundColorHover]: globalRefs$5.colors.primary.highlight,
|
17348
17590
|
|
17349
17591
|
// selected day
|
17350
|
-
[vars$
|
17351
|
-
[vars$
|
17592
|
+
[vars$8.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
|
17593
|
+
[vars$8.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
|
17352
17594
|
|
17353
17595
|
// disabled day (out of min/max range)
|
17354
|
-
[vars$
|
17596
|
+
[vars$8.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
|
17355
17597
|
|
17356
17598
|
// today
|
17357
|
-
[vars$
|
17358
|
-
[vars$
|
17359
|
-
[vars$
|
17599
|
+
[vars$8.currentDayBorderColor]: globalRefs$5.colors.surface.light,
|
17600
|
+
[vars$8.currentDayBorderWidth]: '1px',
|
17601
|
+
[vars$8.currentDayBorderStyle]: 'solid',
|
17360
17602
|
|
17361
17603
|
size: {
|
17362
|
-
xs: { [vars$
|
17363
|
-
sm: { [vars$
|
17364
|
-
md: { [vars$
|
17365
|
-
lg: { [vars$
|
17604
|
+
xs: { [vars$8.fontSize]: '12px' },
|
17605
|
+
sm: { [vars$8.fontSize]: '14px' },
|
17606
|
+
md: { [vars$8.fontSize]: '16px' },
|
17607
|
+
lg: { [vars$8.fontSize]: '18px' },
|
17366
17608
|
},
|
17367
17609
|
|
17368
|
-
[vars$
|
17610
|
+
[vars$8.navButtonRotation]: 'rotate(180deg)',
|
17369
17611
|
|
17370
17612
|
_disabled: {
|
17371
|
-
[vars$
|
17372
|
-
[vars$
|
17373
|
-
[vars$
|
17374
|
-
[vars$
|
17613
|
+
[vars$8.navButtonOpacity]: '0.5',
|
17614
|
+
[vars$8.dayBackgroundColorHover]: 'none',
|
17615
|
+
[vars$8.navButtonCursor]: 'default',
|
17616
|
+
[vars$8.dayCursor]: 'default',
|
17375
17617
|
},
|
17376
17618
|
|
17377
17619
|
_fullWidth: {
|
17378
|
-
[vars$
|
17379
|
-
[vars$
|
17620
|
+
[vars$8.hostWidth]: '100%',
|
17621
|
+
[vars$8.dayBlockAlign]: '0 auto',
|
17380
17622
|
},
|
17381
17623
|
};
|
17382
17624
|
|
17383
17625
|
var calendar$1 = /*#__PURE__*/Object.freeze({
|
17384
17626
|
__proto__: null,
|
17385
17627
|
default: calendar,
|
17386
|
-
vars: vars$
|
17628
|
+
vars: vars$8
|
17387
17629
|
});
|
17388
17630
|
|
17389
17631
|
const globalRefs$4 = getThemeRefs(globals);
|
17390
17632
|
const shadowColor$1 = '#00000020';
|
17391
17633
|
const { shadow } = globalRefs$4;
|
17392
17634
|
|
17393
|
-
const vars$
|
17635
|
+
const vars$7 = DateFieldClass.cssVarList;
|
17394
17636
|
|
17395
17637
|
const dateField = {
|
17396
|
-
[vars$
|
17397
|
-
[vars$
|
17398
|
-
[vars$
|
17399
|
-
|
17400
|
-
[vars$
|
17401
|
-
[vars$
|
17402
|
-
[vars$
|
17403
|
-
[vars$
|
17404
|
-
[vars$
|
17405
|
-
[vars$
|
17406
|
-
[vars$
|
17407
|
-
[vars$
|
17408
|
-
[vars$
|
17409
|
-
|
17410
|
-
[vars$
|
17411
|
-
[vars$
|
17638
|
+
[vars$7.hostWidth]: refs.width,
|
17639
|
+
[vars$7.hostDirection]: refs.direction,
|
17640
|
+
[vars$7.iconMargin]: '0.375em',
|
17641
|
+
|
17642
|
+
[vars$7.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
|
17643
|
+
[vars$7.overlay.backgroundColor]: refs.backgroundColor,
|
17644
|
+
[vars$7.overlay.backdropBackgroundColor]: 'transparent',
|
17645
|
+
[vars$7.overlay.backdropPointerEvents]: 'all',
|
17646
|
+
[vars$7.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
|
17647
|
+
[vars$7.overlay.outlineWidth]: '0',
|
17648
|
+
[vars$7.overlay.outlineColor]: 'transparent',
|
17649
|
+
[vars$7.overlay.outlineStyle]: 'none',
|
17650
|
+
[vars$7.overlay.padding]: '0',
|
17651
|
+
|
17652
|
+
[vars$7.rtlInputDirection]: 'ltr',
|
17653
|
+
[vars$7.rtlInputAlignment]: 'right',
|
17412
17654
|
};
|
17413
17655
|
|
17414
17656
|
var dateField$1 = /*#__PURE__*/Object.freeze({
|
17415
17657
|
__proto__: null,
|
17416
17658
|
default: dateField,
|
17417
|
-
vars: vars$
|
17659
|
+
vars: vars$7
|
17418
17660
|
});
|
17419
17661
|
|
17420
17662
|
const globalRefs$3 = getThemeRefs(globals);
|
@@ -17423,7 +17665,7 @@ const compVars = ListClass.cssVarList;
|
|
17423
17665
|
|
17424
17666
|
const [helperTheme, helperRefs, helperVars] = createHelperVars(
|
17425
17667
|
{ shadowColor: '#00000020' },
|
17426
|
-
componentName$
|
17668
|
+
componentName$5
|
17427
17669
|
);
|
17428
17670
|
|
17429
17671
|
const { shadowColor } = helperRefs;
|
@@ -17463,7 +17705,7 @@ const list$1 = {
|
|
17463
17705
|
},
|
17464
17706
|
};
|
17465
17707
|
|
17466
|
-
const vars$
|
17708
|
+
const vars$6 = {
|
17467
17709
|
...compVars,
|
17468
17710
|
...helperVars,
|
17469
17711
|
};
|
@@ -17471,78 +17713,78 @@ const vars$5 = {
|
|
17471
17713
|
var list$2 = /*#__PURE__*/Object.freeze({
|
17472
17714
|
__proto__: null,
|
17473
17715
|
default: list$1,
|
17474
|
-
vars: vars$
|
17716
|
+
vars: vars$6
|
17475
17717
|
});
|
17476
17718
|
|
17477
17719
|
const globalRefs$2 = getThemeRefs(globals);
|
17478
17720
|
|
17479
|
-
const vars$
|
17721
|
+
const vars$5 = ListItemClass.cssVarList;
|
17480
17722
|
|
17481
17723
|
const list = {
|
17482
|
-
[vars$
|
17483
|
-
[vars$
|
17484
|
-
[vars$
|
17485
|
-
[vars$
|
17486
|
-
[vars$
|
17487
|
-
[vars$
|
17488
|
-
[vars$
|
17489
|
-
[vars$
|
17490
|
-
[vars$
|
17491
|
-
[vars$
|
17492
|
-
[vars$
|
17724
|
+
[vars$5.backgroundColor]: globalRefs$2.colors.surface.main,
|
17725
|
+
[vars$5.padding]: globalRefs$2.spacing.lg,
|
17726
|
+
[vars$5.gap]: globalRefs$2.spacing.md,
|
17727
|
+
[vars$5.borderStyle]: 'solid',
|
17728
|
+
[vars$5.borderWidth]: globalRefs$2.border.xs,
|
17729
|
+
[vars$5.borderColor]: globalRefs$2.colors.surface.main,
|
17730
|
+
[vars$5.borderRadius]: globalRefs$2.radius.sm,
|
17731
|
+
[vars$5.cursor]: 'pointer',
|
17732
|
+
[vars$5.alignItems]: 'center',
|
17733
|
+
[vars$5.flexDirection]: 'row',
|
17734
|
+
[vars$5.transition]: 'border-color 0.2s, background-color 0.2s',
|
17493
17735
|
|
17494
17736
|
variant: {
|
17495
17737
|
tile: {
|
17496
|
-
[vars$
|
17497
|
-
[vars$
|
17498
|
-
[vars$
|
17738
|
+
[vars$5.alignItems]: 'flex-start',
|
17739
|
+
[vars$5.flexDirection]: 'column',
|
17740
|
+
[vars$5.borderColor]: globalRefs$2.colors.surface.light,
|
17499
17741
|
},
|
17500
17742
|
},
|
17501
17743
|
|
17502
17744
|
_hover: {
|
17503
|
-
[vars$
|
17745
|
+
[vars$5.backgroundColor]: globalRefs$2.colors.surface.highlight,
|
17504
17746
|
},
|
17505
17747
|
|
17506
17748
|
_active: {
|
17507
|
-
[vars$
|
17508
|
-
[vars$
|
17509
|
-
[vars$
|
17749
|
+
[vars$5.backgroundColor]: globalRefs$2.colors.surface.main,
|
17750
|
+
[vars$5.borderColor]: globalRefs$2.colors.primary.light,
|
17751
|
+
[vars$5.outline]: `1px solid ${globalRefs$2.colors.primary.light}`,
|
17510
17752
|
},
|
17511
17753
|
};
|
17512
17754
|
|
17513
17755
|
var listItem = /*#__PURE__*/Object.freeze({
|
17514
17756
|
__proto__: null,
|
17515
17757
|
default: list,
|
17516
|
-
vars: vars$
|
17758
|
+
vars: vars$5
|
17517
17759
|
});
|
17518
17760
|
|
17519
|
-
const vars$
|
17761
|
+
const vars$4 = AppsListClass.cssVarList;
|
17520
17762
|
const globalRefs$1 = getThemeRefs(globals);
|
17521
17763
|
|
17522
17764
|
const defaultHeight = '400px';
|
17523
17765
|
|
17524
17766
|
const appsList = {
|
17525
|
-
[vars$
|
17526
|
-
[vars$
|
17527
|
-
[vars$
|
17528
|
-
[vars$
|
17767
|
+
[vars$4.itemsFontWeight]: 'normal',
|
17768
|
+
[vars$4.itemsTextAlign]: 'start',
|
17769
|
+
[vars$4.hostDirection]: globalRefs$1.direction,
|
17770
|
+
[vars$4.maxHeight]: defaultHeight,
|
17529
17771
|
|
17530
17772
|
_empty: {
|
17531
|
-
[vars$
|
17773
|
+
[vars$4.minHeight]: defaultHeight,
|
17532
17774
|
},
|
17533
17775
|
|
17534
17776
|
size: {
|
17535
17777
|
xs: {
|
17536
|
-
[vars$
|
17778
|
+
[vars$4.itemsFontSize]: '14px',
|
17537
17779
|
},
|
17538
17780
|
sm: {
|
17539
|
-
[vars$
|
17781
|
+
[vars$4.itemsFontSize]: '14px',
|
17540
17782
|
},
|
17541
17783
|
md: {
|
17542
|
-
[vars$
|
17784
|
+
[vars$4.itemsFontSize]: '16px',
|
17543
17785
|
},
|
17544
17786
|
lg: {
|
17545
|
-
[vars$
|
17787
|
+
[vars$4.itemsFontSize]: '20px',
|
17546
17788
|
},
|
17547
17789
|
},
|
17548
17790
|
};
|
@@ -17550,52 +17792,52 @@ const appsList = {
|
|
17550
17792
|
var appsList$1 = /*#__PURE__*/Object.freeze({
|
17551
17793
|
__proto__: null,
|
17552
17794
|
default: appsList,
|
17553
|
-
vars: vars$
|
17795
|
+
vars: vars$4
|
17554
17796
|
});
|
17555
17797
|
|
17556
|
-
const vars$
|
17798
|
+
const vars$3 = ScopesListClass.cssVarList;
|
17557
17799
|
|
17558
|
-
const scopesList = {
|
17559
|
-
[vars$
|
17560
|
-
[vars$
|
17561
|
-
[vars$
|
17800
|
+
const scopesList$1 = {
|
17801
|
+
[vars$3.requiredInputBorderColor]: theme$1._disabled[vars$P.borderColor],
|
17802
|
+
[vars$3.requiredInputValueTextColor]: theme$1._disabled[vars$P.valueTextColor],
|
17803
|
+
[vars$3.hostWidth]: '280px',
|
17562
17804
|
_fullWidth: {
|
17563
|
-
[vars$
|
17805
|
+
[vars$3.hostWidth]: '100%',
|
17564
17806
|
},
|
17565
17807
|
};
|
17566
17808
|
|
17567
|
-
var scopesList$
|
17809
|
+
var scopesList$2 = /*#__PURE__*/Object.freeze({
|
17568
17810
|
__proto__: null,
|
17569
|
-
default: scopesList,
|
17570
|
-
vars: vars$
|
17811
|
+
default: scopesList$1,
|
17812
|
+
vars: vars$3
|
17571
17813
|
});
|
17572
17814
|
|
17573
17815
|
const globalRefs = getThemeRefs(globals);
|
17574
|
-
const vars$
|
17816
|
+
const vars$2 = ThirdPartyAppLogoClass.cssVarList;
|
17575
17817
|
|
17576
17818
|
const thirdPartyAppLogo = {
|
17577
|
-
[vars$
|
17578
|
-
[vars$
|
17579
|
-
[vars$
|
17819
|
+
[vars$2.gap]: globalRefs.spacing.lg,
|
17820
|
+
[vars$2.arrowsColor]: globalRefs.colors.surface.dark,
|
17821
|
+
[vars$2.thirdPartyAppLogoFallback]:
|
17580
17822
|
'url(https://imgs.descope.com/components/third-party-app-logo-placeholder.svg)',
|
17581
|
-
[vars$
|
17823
|
+
[vars$2.companyLogoFallback]:
|
17582
17824
|
'url(https://imgs.descope.com/components/project-logo-placeholder.svg)',
|
17583
17825
|
size: {
|
17584
17826
|
xs: {
|
17585
|
-
[vars$
|
17586
|
-
[vars$
|
17827
|
+
[vars$2.logoMaxHeight]: '30px',
|
17828
|
+
[vars$2.logoMaxWidth]: '120px',
|
17587
17829
|
},
|
17588
17830
|
sm: {
|
17589
|
-
[vars$
|
17590
|
-
[vars$
|
17831
|
+
[vars$2.logoMaxHeight]: '40px',
|
17832
|
+
[vars$2.logoMaxWidth]: '160px',
|
17591
17833
|
},
|
17592
17834
|
md: {
|
17593
|
-
[vars$
|
17594
|
-
[vars$
|
17835
|
+
[vars$2.logoMaxHeight]: '48px',
|
17836
|
+
[vars$2.logoMaxWidth]: '200px',
|
17595
17837
|
},
|
17596
17838
|
lg: {
|
17597
|
-
[vars$
|
17598
|
-
[vars$
|
17839
|
+
[vars$2.logoMaxHeight]: '60px',
|
17840
|
+
[vars$2.logoMaxWidth]: '240px',
|
17599
17841
|
},
|
17600
17842
|
},
|
17601
17843
|
};
|
@@ -17603,6 +17845,21 @@ const thirdPartyAppLogo = {
|
|
17603
17845
|
var thirdPartyAppLogo$1 = /*#__PURE__*/Object.freeze({
|
17604
17846
|
__proto__: null,
|
17605
17847
|
default: thirdPartyAppLogo,
|
17848
|
+
vars: vars$2
|
17849
|
+
});
|
17850
|
+
|
17851
|
+
const vars$1 = SecurityQuestionsSetupClass.cssVarList;
|
17852
|
+
|
17853
|
+
const scopesList = {
|
17854
|
+
[vars$1.hostWidth]: 'fit-content',
|
17855
|
+
_fullWidth: {
|
17856
|
+
[vars$1.hostWidth]: '100%',
|
17857
|
+
},
|
17858
|
+
};
|
17859
|
+
|
17860
|
+
var securityQuestionsSetup = /*#__PURE__*/Object.freeze({
|
17861
|
+
__proto__: null,
|
17862
|
+
default: scopesList,
|
17606
17863
|
vars: vars$1
|
17607
17864
|
});
|
17608
17865
|
|
@@ -17656,8 +17913,9 @@ const components = {
|
|
17656
17913
|
list: list$2,
|
17657
17914
|
listItem,
|
17658
17915
|
appsList: appsList$1,
|
17659
|
-
scopesList: scopesList$
|
17916
|
+
scopesList: scopesList$2,
|
17660
17917
|
thirdPartyAppLogo: thirdPartyAppLogo$1,
|
17918
|
+
securityQuestionsSetup,
|
17661
17919
|
};
|
17662
17920
|
|
17663
17921
|
const theme = Object.keys(components).reduce(
|
@@ -17670,7 +17928,7 @@ const vars = Object.keys(components).reduce(
|
|
17670
17928
|
);
|
17671
17929
|
|
17672
17930
|
const defaultTheme = { globals, components: theme };
|
17673
|
-
const themeVars = { globals: vars$
|
17931
|
+
const themeVars = { globals: vars$R, components: vars };
|
17674
17932
|
|
17675
17933
|
const colors = {
|
17676
17934
|
surface: {
|
@@ -17719,5 +17977,5 @@ const darkTheme = merge({}, defaultTheme, {
|
|
17719
17977
|
},
|
17720
17978
|
});
|
17721
17979
|
|
17722
|
-
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, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, ThirdPartyAppLogoClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
|
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 };
|
17723
17981
|
//# sourceMappingURL=index.esm.js.map
|