@descope/web-components-ui 1.0.393 → 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 +1427 -1171
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1407 -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/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/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() {
|
@@ -14751,7 +14751,248 @@ const ThirdPartyAppLogoClass = compose(
|
|
14751
14751
|
componentNameValidationMixin
|
14752
14752
|
)(RawThirdPartyAppLogoClass);
|
14753
14753
|
|
14754
|
-
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);
|
14755
14996
|
|
14756
14997
|
const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
|
14757
14998
|
|
@@ -15183,7 +15424,7 @@ const globals = {
|
|
15183
15424
|
fonts,
|
15184
15425
|
direction,
|
15185
15426
|
};
|
15186
|
-
const vars$
|
15427
|
+
const vars$R = getThemeVars(globals);
|
15187
15428
|
|
15188
15429
|
const globalRefs$y = getThemeRefs(globals);
|
15189
15430
|
const compVars$6 = ButtonClass.cssVarList;
|
@@ -15196,7 +15437,7 @@ const mode = {
|
|
15196
15437
|
surface: globalRefs$y.colors.surface,
|
15197
15438
|
};
|
15198
15439
|
|
15199
|
-
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$
|
15440
|
+
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$12);
|
15200
15441
|
|
15201
15442
|
const button = {
|
15202
15443
|
...helperTheme$4,
|
@@ -15308,7 +15549,7 @@ const button = {
|
|
15308
15549
|
},
|
15309
15550
|
};
|
15310
15551
|
|
15311
|
-
const vars$
|
15552
|
+
const vars$Q = {
|
15312
15553
|
...compVars$6,
|
15313
15554
|
...helperVars$4,
|
15314
15555
|
};
|
@@ -15316,13 +15557,13 @@ const vars$P = {
|
|
15316
15557
|
var button$1 = /*#__PURE__*/Object.freeze({
|
15317
15558
|
__proto__: null,
|
15318
15559
|
default: button,
|
15319
|
-
vars: vars$
|
15560
|
+
vars: vars$Q
|
15320
15561
|
});
|
15321
15562
|
|
15322
15563
|
const componentName = getComponentName('input-wrapper');
|
15323
15564
|
const globalRefs$x = getThemeRefs(globals);
|
15324
15565
|
|
15325
|
-
const [theme$1, refs, vars$
|
15566
|
+
const [theme$1, refs, vars$P] = createHelperVars(
|
15326
15567
|
{
|
15327
15568
|
labelTextColor: globalRefs$x.colors.surface.dark,
|
15328
15569
|
labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
|
@@ -15441,13 +15682,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
|
|
15441
15682
|
__proto__: null,
|
15442
15683
|
default: theme$1,
|
15443
15684
|
refs: refs,
|
15444
|
-
vars: vars$
|
15685
|
+
vars: vars$P
|
15445
15686
|
});
|
15446
15687
|
|
15447
15688
|
const globalRefs$w = getThemeRefs(globals);
|
15448
|
-
const vars$
|
15689
|
+
const vars$O = TextFieldClass.cssVarList;
|
15449
15690
|
|
15450
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 = {
|
15451
15748
|
[vars$N.hostWidth]: refs.width,
|
15452
15749
|
[vars$N.hostMinWidth]: refs.minWidth,
|
15453
15750
|
[vars$N.hostDirection]: refs.direction,
|
@@ -15456,10 +15753,13 @@ const textField = {
|
|
15456
15753
|
[vars$N.labelFontSize]: refs.labelFontSize,
|
15457
15754
|
[vars$N.labelFontWeight]: refs.labelFontWeight,
|
15458
15755
|
[vars$N.labelTextColor]: refs.labelTextColor,
|
15459
|
-
[vars$N.labelRequiredIndicator]: refs.requiredIndicator,
|
15460
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,
|
15461
15761
|
[vars$N.inputValueTextColor]: refs.valueTextColor,
|
15462
|
-
[vars$N.
|
15762
|
+
[vars$N.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
15463
15763
|
[vars$N.inputBorderWidth]: refs.borderWidth,
|
15464
15764
|
[vars$N.inputBorderStyle]: refs.borderStyle,
|
15465
15765
|
[vars$N.inputBorderColor]: refs.borderColor,
|
@@ -15468,16 +15768,9 @@ const textField = {
|
|
15468
15768
|
[vars$N.inputOutlineStyle]: refs.outlineStyle,
|
15469
15769
|
[vars$N.inputOutlineColor]: refs.outlineColor,
|
15470
15770
|
[vars$N.inputOutlineOffset]: refs.outlineOffset,
|
15471
|
-
[vars$N.
|
15472
|
-
[vars$N.
|
15473
|
-
[vars$N.
|
15474
|
-
[vars$N.helperTextColor]: refs.helperTextColor,
|
15475
|
-
[vars$N.textAlign]: refs.textAlign,
|
15476
|
-
textAlign: {
|
15477
|
-
right: { [vars$N.inputTextAlign]: 'right' },
|
15478
|
-
left: { [vars$N.inputTextAlign]: 'left' },
|
15479
|
-
center: { [vars$N.inputTextAlign]: 'center' },
|
15480
|
-
},
|
15771
|
+
[vars$N.revealButtonOffset]: globalRefs$v.spacing.md,
|
15772
|
+
[vars$N.revealButtonSize]: refs.toggleButtonSize,
|
15773
|
+
[vars$N.revealButtonColor]: refs.placeholderTextColor,
|
15481
15774
|
[vars$N.labelPosition]: refs.labelPosition,
|
15482
15775
|
[vars$N.labelTopPosition]: refs.labelTopPosition,
|
15483
15776
|
[vars$N.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -15487,23 +15780,17 @@ const textField = {
|
|
15487
15780
|
[vars$N.placeholderOpacity]: refs.placeholderOpacity,
|
15488
15781
|
[vars$N.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15489
15782
|
[vars$N.valueInputHeight]: refs.valueInputHeight,
|
15490
|
-
[vars$N.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15491
|
-
[vars$N.inputIconOffset]: globalRefs$w.spacing.md,
|
15492
|
-
[vars$N.inputIconSize]: refs.inputIconSize,
|
15493
|
-
[vars$N.inputIconColor]: refs.placeholderTextColor,
|
15494
15783
|
};
|
15495
15784
|
|
15496
|
-
var
|
15785
|
+
var password$1 = /*#__PURE__*/Object.freeze({
|
15497
15786
|
__proto__: null,
|
15498
|
-
default:
|
15499
|
-
textField: textField,
|
15787
|
+
default: password,
|
15500
15788
|
vars: vars$N
|
15501
15789
|
});
|
15502
15790
|
|
15503
|
-
const
|
15504
|
-
const vars$M = PasswordClass.cssVarList;
|
15791
|
+
const vars$M = NumberFieldClass.cssVarList;
|
15505
15792
|
|
15506
|
-
const
|
15793
|
+
const numberField = {
|
15507
15794
|
[vars$M.hostWidth]: refs.width,
|
15508
15795
|
[vars$M.hostMinWidth]: refs.minWidth,
|
15509
15796
|
[vars$M.hostDirection]: refs.direction,
|
@@ -15513,12 +15800,8 @@ const password = {
|
|
15513
15800
|
[vars$M.labelFontWeight]: refs.labelFontWeight,
|
15514
15801
|
[vars$M.labelTextColor]: refs.labelTextColor,
|
15515
15802
|
[vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
|
15516
|
-
[vars$M.inputHorizontalPadding]: refs.horizontalPadding,
|
15517
|
-
[vars$M.inputHeight]: refs.inputHeight,
|
15518
|
-
[vars$M.inputBackgroundColor]: refs.backgroundColor,
|
15519
|
-
[vars$M.labelRequiredIndicator]: refs.requiredIndicator,
|
15520
15803
|
[vars$M.inputValueTextColor]: refs.valueTextColor,
|
15521
|
-
[vars$M.
|
15804
|
+
[vars$M.inputPlaceholderColor]: refs.placeholderTextColor,
|
15522
15805
|
[vars$M.inputBorderWidth]: refs.borderWidth,
|
15523
15806
|
[vars$M.inputBorderStyle]: refs.borderStyle,
|
15524
15807
|
[vars$M.inputBorderColor]: refs.borderColor,
|
@@ -15527,9 +15810,10 @@ const password = {
|
|
15527
15810
|
[vars$M.inputOutlineStyle]: refs.outlineStyle,
|
15528
15811
|
[vars$M.inputOutlineColor]: refs.outlineColor,
|
15529
15812
|
[vars$M.inputOutlineOffset]: refs.outlineOffset,
|
15530
|
-
[vars$M.
|
15531
|
-
[vars$M.
|
15532
|
-
[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,
|
15533
15817
|
[vars$M.labelPosition]: refs.labelPosition,
|
15534
15818
|
[vars$M.labelTopPosition]: refs.labelTopPosition,
|
15535
15819
|
[vars$M.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -15539,17 +15823,18 @@ const password = {
|
|
15539
15823
|
[vars$M.placeholderOpacity]: refs.placeholderOpacity,
|
15540
15824
|
[vars$M.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15541
15825
|
[vars$M.valueInputHeight]: refs.valueInputHeight,
|
15826
|
+
[vars$M.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15542
15827
|
};
|
15543
15828
|
|
15544
|
-
var
|
15829
|
+
var numberField$1 = /*#__PURE__*/Object.freeze({
|
15545
15830
|
__proto__: null,
|
15546
|
-
default:
|
15831
|
+
default: numberField,
|
15547
15832
|
vars: vars$M
|
15548
15833
|
});
|
15549
15834
|
|
15550
|
-
const vars$L =
|
15835
|
+
const vars$L = EmailFieldClass.cssVarList;
|
15551
15836
|
|
15552
|
-
const
|
15837
|
+
const emailField = {
|
15553
15838
|
[vars$L.hostWidth]: refs.width,
|
15554
15839
|
[vars$L.hostMinWidth]: refs.minWidth,
|
15555
15840
|
[vars$L.hostDirection]: refs.direction,
|
@@ -15560,6 +15845,7 @@ const numberField = {
|
|
15560
15845
|
[vars$L.labelTextColor]: refs.labelTextColor,
|
15561
15846
|
[vars$L.errorMessageTextColor]: refs.errorMessageTextColor,
|
15562
15847
|
[vars$L.inputValueTextColor]: refs.valueTextColor,
|
15848
|
+
[vars$L.labelRequiredIndicator]: refs.requiredIndicator,
|
15563
15849
|
[vars$L.inputPlaceholderColor]: refs.placeholderTextColor,
|
15564
15850
|
[vars$L.inputBorderWidth]: refs.borderWidth,
|
15565
15851
|
[vars$L.inputBorderStyle]: refs.borderStyle,
|
@@ -15570,7 +15856,6 @@ const numberField = {
|
|
15570
15856
|
[vars$L.inputOutlineColor]: refs.outlineColor,
|
15571
15857
|
[vars$L.inputOutlineOffset]: refs.outlineOffset,
|
15572
15858
|
[vars$L.inputBackgroundColor]: refs.backgroundColor,
|
15573
|
-
[vars$L.labelRequiredIndicator]: refs.requiredIndicator,
|
15574
15859
|
[vars$L.inputHorizontalPadding]: refs.horizontalPadding,
|
15575
15860
|
[vars$L.inputHeight]: refs.inputHeight,
|
15576
15861
|
[vars$L.labelPosition]: refs.labelPosition,
|
@@ -15585,197 +15870,153 @@ const numberField = {
|
|
15585
15870
|
[vars$L.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15586
15871
|
};
|
15587
15872
|
|
15588
|
-
var
|
15873
|
+
var emailField$1 = /*#__PURE__*/Object.freeze({
|
15589
15874
|
__proto__: null,
|
15590
|
-
default:
|
15875
|
+
default: emailField,
|
15591
15876
|
vars: vars$L
|
15592
15877
|
});
|
15593
15878
|
|
15594
|
-
const vars$K =
|
15879
|
+
const vars$K = TextAreaClass.cssVarList;
|
15595
15880
|
|
15596
|
-
const
|
15881
|
+
const textArea = {
|
15597
15882
|
[vars$K.hostWidth]: refs.width,
|
15598
15883
|
[vars$K.hostMinWidth]: refs.minWidth,
|
15599
15884
|
[vars$K.hostDirection]: refs.direction,
|
15600
15885
|
[vars$K.fontSize]: refs.fontSize,
|
15601
15886
|
[vars$K.fontFamily]: refs.fontFamily,
|
15602
|
-
[vars$K.labelFontSize]: refs.labelFontSize,
|
15603
|
-
[vars$K.labelFontWeight]: refs.labelFontWeight,
|
15604
15887
|
[vars$K.labelTextColor]: refs.labelTextColor,
|
15888
|
+
[vars$K.labelRequiredIndicator]: refs.requiredIndicator,
|
15605
15889
|
[vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
|
15890
|
+
[vars$K.inputBackgroundColor]: refs.backgroundColor,
|
15606
15891
|
[vars$K.inputValueTextColor]: refs.valueTextColor,
|
15607
|
-
[vars$K.
|
15608
|
-
[vars$K.
|
15892
|
+
[vars$K.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
15893
|
+
[vars$K.inputBorderRadius]: refs.borderRadius,
|
15609
15894
|
[vars$K.inputBorderWidth]: refs.borderWidth,
|
15610
15895
|
[vars$K.inputBorderStyle]: refs.borderStyle,
|
15611
15896
|
[vars$K.inputBorderColor]: refs.borderColor,
|
15612
|
-
[vars$K.inputBorderRadius]: refs.borderRadius,
|
15613
15897
|
[vars$K.inputOutlineWidth]: refs.outlineWidth,
|
15614
15898
|
[vars$K.inputOutlineStyle]: refs.outlineStyle,
|
15615
15899
|
[vars$K.inputOutlineColor]: refs.outlineColor,
|
15616
15900
|
[vars$K.inputOutlineOffset]: refs.outlineOffset,
|
15617
|
-
[vars$K.
|
15618
|
-
[vars$K.
|
15619
|
-
|
15620
|
-
|
15621
|
-
|
15622
|
-
|
15623
|
-
|
15624
|
-
|
15625
|
-
|
15626
|
-
|
15627
|
-
|
15628
|
-
[vars$K.valueInputHeight]: refs.valueInputHeight,
|
15629
|
-
[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
|
+
},
|
15630
15912
|
};
|
15631
15913
|
|
15632
|
-
var
|
15914
|
+
var textArea$1 = /*#__PURE__*/Object.freeze({
|
15633
15915
|
__proto__: null,
|
15634
|
-
default:
|
15916
|
+
default: textArea,
|
15635
15917
|
vars: vars$K
|
15636
15918
|
});
|
15637
15919
|
|
15638
|
-
const vars$J =
|
15920
|
+
const vars$J = CheckboxClass.cssVarList;
|
15921
|
+
const checkboxSize = '1.35em';
|
15639
15922
|
|
15640
|
-
const
|
15923
|
+
const checkbox = {
|
15641
15924
|
[vars$J.hostWidth]: refs.width,
|
15642
|
-
[vars$J.hostMinWidth]: refs.minWidth,
|
15643
15925
|
[vars$J.hostDirection]: refs.direction,
|
15644
15926
|
[vars$J.fontSize]: refs.fontSize,
|
15645
15927
|
[vars$J.fontFamily]: refs.fontFamily,
|
15646
15928
|
[vars$J.labelTextColor]: refs.labelTextColor,
|
15647
15929
|
[vars$J.labelRequiredIndicator]: refs.requiredIndicator,
|
15930
|
+
[vars$J.labelFontWeight]: '400',
|
15931
|
+
[vars$J.labelLineHeight]: checkboxSize,
|
15932
|
+
[vars$J.labelSpacing]: '1em',
|
15648
15933
|
[vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
|
15649
|
-
[vars$J.
|
15650
|
-
[vars$J.
|
15651
|
-
[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,
|
15652
15938
|
[vars$J.inputBorderRadius]: refs.borderRadius,
|
15939
|
+
[vars$J.inputBorderColor]: refs.borderColor,
|
15653
15940
|
[vars$J.inputBorderWidth]: refs.borderWidth,
|
15654
15941
|
[vars$J.inputBorderStyle]: refs.borderStyle,
|
15655
|
-
[vars$J.
|
15656
|
-
[vars$J.
|
15657
|
-
[vars$J.
|
15658
|
-
[vars$J.inputOutlineColor]: refs.outlineColor,
|
15659
|
-
[vars$J.inputOutlineOffset]: refs.outlineOffset,
|
15660
|
-
[vars$J.inputResizeType]: 'vertical',
|
15661
|
-
[vars$J.inputMinHeight]: '5em',
|
15662
|
-
textAlign: {
|
15663
|
-
right: { [vars$J.inputTextAlign]: 'right' },
|
15664
|
-
left: { [vars$J.inputTextAlign]: 'left' },
|
15665
|
-
center: { [vars$J.inputTextAlign]: 'center' },
|
15666
|
-
},
|
15667
|
-
|
15668
|
-
_readonly: {
|
15669
|
-
[vars$J.inputResizeType]: 'none',
|
15670
|
-
},
|
15942
|
+
[vars$J.inputBackgroundColor]: refs.backgroundColor,
|
15943
|
+
[vars$J.inputSize]: checkboxSize,
|
15944
|
+
[vars$J.inputValueTextColor]: refs.valueTextColor,
|
15671
15945
|
};
|
15672
15946
|
|
15673
|
-
var
|
15947
|
+
var checkbox$1 = /*#__PURE__*/Object.freeze({
|
15674
15948
|
__proto__: null,
|
15675
|
-
default:
|
15949
|
+
default: checkbox,
|
15676
15950
|
vars: vars$J
|
15677
15951
|
});
|
15678
15952
|
|
15679
|
-
const
|
15680
|
-
const
|
15953
|
+
const knobMargin = '2px';
|
15954
|
+
const checkboxHeight = '1.25em';
|
15681
15955
|
|
15682
|
-
const
|
15956
|
+
const globalRefs$u = getThemeRefs(globals);
|
15957
|
+
const vars$I = SwitchToggleClass.cssVarList;
|
15958
|
+
|
15959
|
+
const switchToggle = {
|
15683
15960
|
[vars$I.hostWidth]: refs.width,
|
15684
15961
|
[vars$I.hostDirection]: refs.direction,
|
15685
15962
|
[vars$I.fontSize]: refs.fontSize,
|
15686
15963
|
[vars$I.fontFamily]: refs.fontFamily,
|
15687
|
-
|
15688
|
-
[vars$I.labelRequiredIndicator]: refs.requiredIndicator,
|
15689
|
-
[vars$I.labelFontWeight]: '400',
|
15690
|
-
[vars$I.labelLineHeight]: checkboxSize,
|
15691
|
-
[vars$I.labelSpacing]: '1em',
|
15692
|
-
[vars$I.errorMessageTextColor]: refs.errorMessageTextColor,
|
15964
|
+
|
15693
15965
|
[vars$I.inputOutlineWidth]: refs.outlineWidth,
|
15694
15966
|
[vars$I.inputOutlineOffset]: refs.outlineOffset,
|
15695
15967
|
[vars$I.inputOutlineColor]: refs.outlineColor,
|
15696
15968
|
[vars$I.inputOutlineStyle]: refs.outlineStyle,
|
15697
|
-
[vars$I.inputBorderRadius]: refs.borderRadius,
|
15698
|
-
[vars$I.inputBorderColor]: refs.borderColor,
|
15699
|
-
[vars$I.inputBorderWidth]: refs.borderWidth,
|
15700
|
-
[vars$I.inputBorderStyle]: refs.borderStyle,
|
15701
|
-
[vars$I.inputBackgroundColor]: refs.backgroundColor,
|
15702
|
-
[vars$I.inputSize]: checkboxSize,
|
15703
|
-
[vars$I.inputValueTextColor]: refs.valueTextColor,
|
15704
|
-
};
|
15705
|
-
|
15706
|
-
var checkbox$1 = /*#__PURE__*/Object.freeze({
|
15707
|
-
__proto__: null,
|
15708
|
-
default: checkbox,
|
15709
|
-
vars: vars$I
|
15710
|
-
});
|
15711
15969
|
|
15712
|
-
|
15713
|
-
|
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',
|
15714
15984
|
|
15715
|
-
|
15716
|
-
|
15717
|
-
|
15718
|
-
|
15719
|
-
[vars$
|
15720
|
-
[vars$
|
15721
|
-
[vars$H.fontSize]: refs.fontSize,
|
15722
|
-
[vars$H.fontFamily]: refs.fontFamily,
|
15723
|
-
|
15724
|
-
[vars$H.inputOutlineWidth]: refs.outlineWidth,
|
15725
|
-
[vars$H.inputOutlineOffset]: refs.outlineOffset,
|
15726
|
-
[vars$H.inputOutlineColor]: refs.outlineColor,
|
15727
|
-
[vars$H.inputOutlineStyle]: refs.outlineStyle,
|
15728
|
-
|
15729
|
-
[vars$H.trackBorderStyle]: refs.borderStyle,
|
15730
|
-
[vars$H.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
|
15731
|
-
[vars$H.trackBorderColor]: refs.borderColor,
|
15732
|
-
[vars$H.trackBackgroundColor]: refs.backgroundColor,
|
15733
|
-
[vars$H.trackBorderRadius]: globalRefs$u.radius.md,
|
15734
|
-
[vars$H.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
|
15735
|
-
[vars$H.trackHeight]: checkboxHeight,
|
15736
|
-
|
15737
|
-
[vars$H.knobSize]: `calc(1em - ${knobMargin})`,
|
15738
|
-
[vars$H.knobRadius]: '50%',
|
15739
|
-
[vars$H.knobTopOffset]: '1px',
|
15740
|
-
[vars$H.knobLeftOffset]: knobMargin,
|
15741
|
-
[vars$H.knobColor]: refs.labelTextColor,
|
15742
|
-
[vars$H.knobTransitionDuration]: '0.3s',
|
15743
|
-
|
15744
|
-
[vars$H.labelTextColor]: refs.labelTextColor,
|
15745
|
-
[vars$H.labelFontWeight]: '400',
|
15746
|
-
[vars$H.labelLineHeight]: '1.35em',
|
15747
|
-
[vars$H.labelSpacing]: '1em',
|
15748
|
-
[vars$H.labelRequiredIndicator]: refs.requiredIndicator,
|
15749
|
-
[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,
|
15750
15991
|
|
15751
15992
|
_checked: {
|
15752
|
-
[vars$
|
15753
|
-
[vars$
|
15754
|
-
[vars$
|
15755
|
-
[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,
|
15756
15997
|
},
|
15757
15998
|
|
15758
15999
|
_disabled: {
|
15759
|
-
[vars$
|
15760
|
-
[vars$
|
15761
|
-
[vars$
|
15762
|
-
[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,
|
15763
16004
|
_checked: {
|
15764
|
-
[vars$
|
15765
|
-
[vars$
|
16005
|
+
[vars$I.knobColor]: globalRefs$u.colors.surface.light,
|
16006
|
+
[vars$I.trackBackgroundColor]: globalRefs$u.colors.surface.main,
|
15766
16007
|
},
|
15767
16008
|
},
|
15768
16009
|
|
15769
16010
|
_invalid: {
|
15770
|
-
[vars$
|
15771
|
-
[vars$
|
16011
|
+
[vars$I.trackBorderColor]: globalRefs$u.colors.error.main,
|
16012
|
+
[vars$I.knobColor]: globalRefs$u.colors.error.main,
|
15772
16013
|
},
|
15773
16014
|
};
|
15774
16015
|
|
15775
16016
|
var switchToggle$1 = /*#__PURE__*/Object.freeze({
|
15776
16017
|
__proto__: null,
|
15777
16018
|
default: switchToggle,
|
15778
|
-
vars: vars$
|
16019
|
+
vars: vars$I
|
15779
16020
|
});
|
15780
16021
|
|
15781
16022
|
const globalRefs$t = getThemeRefs(globals);
|
@@ -15800,7 +16041,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
|
|
15800
16041
|
horizontalAlignment,
|
15801
16042
|
shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
|
15802
16043
|
},
|
15803
|
-
componentName$
|
16044
|
+
componentName$Y
|
15804
16045
|
);
|
15805
16046
|
|
15806
16047
|
const { shadowColor: shadowColor$3 } = helperRefs$3;
|
@@ -15887,7 +16128,7 @@ const container = {
|
|
15887
16128
|
},
|
15888
16129
|
};
|
15889
16130
|
|
15890
|
-
const vars$
|
16131
|
+
const vars$H = {
|
15891
16132
|
...compVars$5,
|
15892
16133
|
...helperVars$3,
|
15893
16134
|
};
|
@@ -15895,168 +16136,168 @@ const vars$G = {
|
|
15895
16136
|
var container$1 = /*#__PURE__*/Object.freeze({
|
15896
16137
|
__proto__: null,
|
15897
16138
|
default: container,
|
15898
|
-
vars: vars$
|
16139
|
+
vars: vars$H
|
15899
16140
|
});
|
15900
16141
|
|
15901
|
-
const vars$
|
16142
|
+
const vars$G = LogoClass.cssVarList;
|
15902
16143
|
|
15903
16144
|
const logo$2 = {
|
15904
|
-
[vars$
|
16145
|
+
[vars$G.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
|
15905
16146
|
};
|
15906
16147
|
|
15907
16148
|
var logo$3 = /*#__PURE__*/Object.freeze({
|
15908
16149
|
__proto__: null,
|
15909
16150
|
default: logo$2,
|
15910
|
-
vars: vars$
|
16151
|
+
vars: vars$G
|
15911
16152
|
});
|
15912
16153
|
|
15913
|
-
const vars$
|
16154
|
+
const vars$F = TotpImageClass.cssVarList;
|
15914
16155
|
|
15915
16156
|
const logo$1 = {
|
15916
|
-
[vars$
|
16157
|
+
[vars$F.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
|
15917
16158
|
};
|
15918
16159
|
|
15919
16160
|
var totpImage = /*#__PURE__*/Object.freeze({
|
15920
16161
|
__proto__: null,
|
15921
16162
|
default: logo$1,
|
15922
|
-
vars: vars$
|
16163
|
+
vars: vars$F
|
15923
16164
|
});
|
15924
16165
|
|
15925
|
-
const vars$
|
16166
|
+
const vars$E = NotpImageClass.cssVarList;
|
15926
16167
|
|
15927
16168
|
const logo = {
|
15928
|
-
[vars$
|
16169
|
+
[vars$E.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
|
15929
16170
|
};
|
15930
16171
|
|
15931
16172
|
var notpImage = /*#__PURE__*/Object.freeze({
|
15932
16173
|
__proto__: null,
|
15933
16174
|
default: logo,
|
15934
|
-
vars: vars$
|
16175
|
+
vars: vars$E
|
15935
16176
|
});
|
15936
16177
|
|
15937
16178
|
const globalRefs$s = getThemeRefs(globals);
|
15938
|
-
const vars$
|
16179
|
+
const vars$D = TextClass.cssVarList;
|
15939
16180
|
|
15940
16181
|
const text = {
|
15941
|
-
[vars$
|
15942
|
-
[vars$
|
15943
|
-
[vars$
|
15944
|
-
[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,
|
15945
16186
|
|
15946
16187
|
variant: {
|
15947
16188
|
h1: {
|
15948
|
-
[vars$
|
15949
|
-
[vars$
|
15950
|
-
[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,
|
15951
16192
|
},
|
15952
16193
|
h2: {
|
15953
|
-
[vars$
|
15954
|
-
[vars$
|
15955
|
-
[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,
|
15956
16197
|
},
|
15957
16198
|
h3: {
|
15958
|
-
[vars$
|
15959
|
-
[vars$
|
15960
|
-
[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,
|
15961
16202
|
},
|
15962
16203
|
subtitle1: {
|
15963
|
-
[vars$
|
15964
|
-
[vars$
|
15965
|
-
[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,
|
15966
16207
|
},
|
15967
16208
|
subtitle2: {
|
15968
|
-
[vars$
|
15969
|
-
[vars$
|
15970
|
-
[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,
|
15971
16212
|
},
|
15972
16213
|
body1: {
|
15973
|
-
[vars$
|
15974
|
-
[vars$
|
15975
|
-
[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,
|
15976
16217
|
},
|
15977
16218
|
body2: {
|
15978
|
-
[vars$
|
15979
|
-
[vars$
|
15980
|
-
[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,
|
15981
16222
|
},
|
15982
16223
|
},
|
15983
16224
|
|
15984
16225
|
mode: {
|
15985
16226
|
primary: {
|
15986
|
-
[vars$
|
16227
|
+
[vars$D.textColor]: globalRefs$s.colors.surface.contrast,
|
15987
16228
|
},
|
15988
16229
|
secondary: {
|
15989
|
-
[vars$
|
16230
|
+
[vars$D.textColor]: globalRefs$s.colors.surface.dark,
|
15990
16231
|
},
|
15991
16232
|
error: {
|
15992
|
-
[vars$
|
16233
|
+
[vars$D.textColor]: globalRefs$s.colors.error.main,
|
15993
16234
|
},
|
15994
16235
|
success: {
|
15995
|
-
[vars$
|
16236
|
+
[vars$D.textColor]: globalRefs$s.colors.success.main,
|
15996
16237
|
},
|
15997
16238
|
},
|
15998
16239
|
|
15999
16240
|
textAlign: {
|
16000
|
-
right: { [vars$
|
16001
|
-
left: { [vars$
|
16002
|
-
center: { [vars$
|
16241
|
+
right: { [vars$D.textAlign]: 'right' },
|
16242
|
+
left: { [vars$D.textAlign]: 'left' },
|
16243
|
+
center: { [vars$D.textAlign]: 'center' },
|
16003
16244
|
},
|
16004
16245
|
|
16005
16246
|
_fullWidth: {
|
16006
|
-
[vars$
|
16247
|
+
[vars$D.hostWidth]: '100%',
|
16007
16248
|
},
|
16008
16249
|
|
16009
16250
|
_italic: {
|
16010
|
-
[vars$
|
16251
|
+
[vars$D.fontStyle]: 'italic',
|
16011
16252
|
},
|
16012
16253
|
|
16013
16254
|
_uppercase: {
|
16014
|
-
[vars$
|
16255
|
+
[vars$D.textTransform]: 'uppercase',
|
16015
16256
|
},
|
16016
16257
|
|
16017
16258
|
_lowercase: {
|
16018
|
-
[vars$
|
16259
|
+
[vars$D.textTransform]: 'lowercase',
|
16019
16260
|
},
|
16020
16261
|
};
|
16021
16262
|
|
16022
16263
|
var text$1 = /*#__PURE__*/Object.freeze({
|
16023
16264
|
__proto__: null,
|
16024
16265
|
default: text,
|
16025
|
-
vars: vars$
|
16266
|
+
vars: vars$D
|
16026
16267
|
});
|
16027
16268
|
|
16028
16269
|
const globalRefs$r = getThemeRefs(globals);
|
16029
|
-
const vars$
|
16270
|
+
const vars$C = LinkClass.cssVarList;
|
16030
16271
|
|
16031
16272
|
const link = {
|
16032
|
-
[vars$
|
16033
|
-
[vars$
|
16273
|
+
[vars$C.hostDirection]: globalRefs$r.direction,
|
16274
|
+
[vars$C.cursor]: 'pointer',
|
16034
16275
|
|
16035
|
-
[vars$
|
16276
|
+
[vars$C.textColor]: globalRefs$r.colors.primary.main,
|
16036
16277
|
|
16037
16278
|
textAlign: {
|
16038
|
-
right: { [vars$
|
16039
|
-
left: { [vars$
|
16040
|
-
center: { [vars$
|
16279
|
+
right: { [vars$C.textAlign]: 'right' },
|
16280
|
+
left: { [vars$C.textAlign]: 'left' },
|
16281
|
+
center: { [vars$C.textAlign]: 'center' },
|
16041
16282
|
},
|
16042
16283
|
|
16043
16284
|
_fullWidth: {
|
16044
|
-
[vars$
|
16285
|
+
[vars$C.hostWidth]: '100%',
|
16045
16286
|
},
|
16046
16287
|
|
16047
16288
|
_hover: {
|
16048
|
-
[vars$
|
16289
|
+
[vars$C.textDecoration]: 'underline',
|
16049
16290
|
},
|
16050
16291
|
|
16051
16292
|
mode: {
|
16052
16293
|
secondary: {
|
16053
|
-
[vars$
|
16294
|
+
[vars$C.textColor]: globalRefs$r.colors.secondary.main,
|
16054
16295
|
},
|
16055
16296
|
error: {
|
16056
|
-
[vars$
|
16297
|
+
[vars$C.textColor]: globalRefs$r.colors.error.main,
|
16057
16298
|
},
|
16058
16299
|
success: {
|
16059
|
-
[vars$
|
16300
|
+
[vars$C.textColor]: globalRefs$r.colors.success.main,
|
16060
16301
|
},
|
16061
16302
|
},
|
16062
16303
|
};
|
@@ -16064,37 +16305,37 @@ const link = {
|
|
16064
16305
|
var link$1 = /*#__PURE__*/Object.freeze({
|
16065
16306
|
__proto__: null,
|
16066
16307
|
default: link,
|
16067
|
-
vars: vars$
|
16308
|
+
vars: vars$C
|
16068
16309
|
});
|
16069
16310
|
|
16070
16311
|
const globalRefs$q = getThemeRefs(globals);
|
16071
|
-
const vars$
|
16312
|
+
const vars$B = EnrichedTextClass.cssVarList;
|
16072
16313
|
|
16073
16314
|
const enrichedText = {
|
16074
|
-
[vars$
|
16075
|
-
[vars$
|
16315
|
+
[vars$B.hostDirection]: globalRefs$q.direction,
|
16316
|
+
[vars$B.hostWidth]: useVar(vars$D.hostWidth),
|
16076
16317
|
|
16077
|
-
[vars$
|
16078
|
-
[vars$
|
16079
|
-
[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),
|
16080
16321
|
|
16081
|
-
[vars$
|
16082
|
-
[vars$
|
16083
|
-
[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),
|
16084
16325
|
|
16085
|
-
[vars$
|
16086
|
-
[vars$
|
16087
|
-
[vars$
|
16326
|
+
[vars$B.linkColor]: useVar(vars$C.textColor),
|
16327
|
+
[vars$B.linkTextDecoration]: 'none',
|
16328
|
+
[vars$B.linkHoverTextDecoration]: 'underline',
|
16088
16329
|
|
16089
|
-
[vars$
|
16090
|
-
[vars$
|
16091
|
-
[vars$
|
16330
|
+
[vars$B.fontWeightBold]: '900',
|
16331
|
+
[vars$B.minWidth]: '0.25em',
|
16332
|
+
[vars$B.minHeight]: '1.35em',
|
16092
16333
|
|
16093
|
-
[vars$
|
16334
|
+
[vars$B.hostDisplay]: 'inline-block',
|
16094
16335
|
|
16095
16336
|
_empty: {
|
16096
16337
|
_hideWhenEmpty: {
|
16097
|
-
[vars$
|
16338
|
+
[vars$B.hostDisplay]: 'none',
|
16098
16339
|
},
|
16099
16340
|
},
|
16100
16341
|
};
|
@@ -16102,7 +16343,7 @@ const enrichedText = {
|
|
16102
16343
|
var enrichedText$1 = /*#__PURE__*/Object.freeze({
|
16103
16344
|
__proto__: null,
|
16104
16345
|
default: enrichedText,
|
16105
|
-
vars: vars$
|
16346
|
+
vars: vars$B
|
16106
16347
|
});
|
16107
16348
|
|
16108
16349
|
const globalRefs$p = getThemeRefs(globals);
|
@@ -16113,7 +16354,7 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
|
|
16113
16354
|
thickness: '2px',
|
16114
16355
|
spacing: '10px',
|
16115
16356
|
},
|
16116
|
-
componentName$
|
16357
|
+
componentName$S
|
16117
16358
|
);
|
16118
16359
|
|
16119
16360
|
const divider = {
|
@@ -16144,7 +16385,7 @@ const divider = {
|
|
16144
16385
|
},
|
16145
16386
|
};
|
16146
16387
|
|
16147
|
-
const vars$
|
16388
|
+
const vars$A = {
|
16148
16389
|
...compVars$4,
|
16149
16390
|
...helperVars$2,
|
16150
16391
|
};
|
@@ -16152,93 +16393,93 @@ const vars$z = {
|
|
16152
16393
|
var divider$1 = /*#__PURE__*/Object.freeze({
|
16153
16394
|
__proto__: null,
|
16154
16395
|
default: divider,
|
16155
|
-
vars: vars$
|
16396
|
+
vars: vars$A
|
16156
16397
|
});
|
16157
16398
|
|
16158
|
-
const vars$
|
16399
|
+
const vars$z = PasscodeClass.cssVarList;
|
16159
16400
|
|
16160
16401
|
const passcode = {
|
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$
|
16175
|
-
[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,
|
16176
16417
|
|
16177
16418
|
size: {
|
16178
|
-
xs: { [vars$
|
16179
|
-
sm: { [vars$
|
16180
|
-
md: { [vars$
|
16181
|
-
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' },
|
16182
16423
|
},
|
16183
16424
|
|
16184
16425
|
_hideCursor: {
|
16185
|
-
[vars$
|
16426
|
+
[vars$z.digitCaretTextColor]: 'transparent',
|
16186
16427
|
},
|
16187
16428
|
|
16188
16429
|
_loading: {
|
16189
|
-
[vars$
|
16430
|
+
[vars$z.overlayOpacity]: refs.overlayOpacity,
|
16190
16431
|
},
|
16191
16432
|
};
|
16192
16433
|
|
16193
16434
|
var passcode$1 = /*#__PURE__*/Object.freeze({
|
16194
16435
|
__proto__: null,
|
16195
16436
|
default: passcode,
|
16196
|
-
vars: vars$
|
16437
|
+
vars: vars$z
|
16197
16438
|
});
|
16198
16439
|
|
16199
16440
|
const globalRefs$o = getThemeRefs(globals);
|
16200
|
-
const vars$
|
16441
|
+
const vars$y = LoaderLinearClass.cssVarList;
|
16201
16442
|
|
16202
16443
|
const loaderLinear = {
|
16203
|
-
[vars$
|
16204
|
-
[vars$
|
16444
|
+
[vars$y.hostDisplay]: 'inline-block',
|
16445
|
+
[vars$y.hostWidth]: '100%',
|
16205
16446
|
|
16206
|
-
[vars$
|
16207
|
-
[vars$
|
16447
|
+
[vars$y.barColor]: globalRefs$o.colors.surface.contrast,
|
16448
|
+
[vars$y.barWidth]: '20%',
|
16208
16449
|
|
16209
|
-
[vars$
|
16210
|
-
[vars$
|
16450
|
+
[vars$y.barBackgroundColor]: globalRefs$o.colors.surface.light,
|
16451
|
+
[vars$y.barBorderRadius]: '4px',
|
16211
16452
|
|
16212
|
-
[vars$
|
16213
|
-
[vars$
|
16214
|
-
[vars$
|
16215
|
-
[vars$
|
16453
|
+
[vars$y.animationDuration]: '2s',
|
16454
|
+
[vars$y.animationTimingFunction]: 'linear',
|
16455
|
+
[vars$y.animationIterationCount]: 'infinite',
|
16456
|
+
[vars$y.verticalPadding]: '0.25em',
|
16216
16457
|
|
16217
16458
|
size: {
|
16218
|
-
xs: { [vars$
|
16219
|
-
sm: { [vars$
|
16220
|
-
md: { [vars$
|
16221
|
-
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' },
|
16222
16463
|
},
|
16223
16464
|
|
16224
16465
|
mode: {
|
16225
16466
|
primary: {
|
16226
|
-
[vars$
|
16467
|
+
[vars$y.barColor]: globalRefs$o.colors.primary.main,
|
16227
16468
|
},
|
16228
16469
|
secondary: {
|
16229
|
-
[vars$
|
16470
|
+
[vars$y.barColor]: globalRefs$o.colors.secondary.main,
|
16230
16471
|
},
|
16231
16472
|
},
|
16232
16473
|
|
16233
16474
|
_hidden: {
|
16234
|
-
[vars$
|
16475
|
+
[vars$y.hostDisplay]: 'none',
|
16235
16476
|
},
|
16236
16477
|
};
|
16237
16478
|
|
16238
16479
|
var loaderLinear$1 = /*#__PURE__*/Object.freeze({
|
16239
16480
|
__proto__: null,
|
16240
16481
|
default: loaderLinear,
|
16241
|
-
vars: vars$
|
16482
|
+
vars: vars$y
|
16242
16483
|
});
|
16243
16484
|
|
16244
16485
|
const globalRefs$n = getThemeRefs(globals);
|
@@ -16256,7 +16497,7 @@ const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
|
|
16256
16497
|
},
|
16257
16498
|
},
|
16258
16499
|
},
|
16259
|
-
componentName$
|
16500
|
+
componentName$Z
|
16260
16501
|
);
|
16261
16502
|
|
16262
16503
|
const loaderRadial = {
|
@@ -16285,7 +16526,7 @@ const loaderRadial = {
|
|
16285
16526
|
[compVars$3.hostDisplay]: 'none',
|
16286
16527
|
},
|
16287
16528
|
};
|
16288
|
-
const vars$
|
16529
|
+
const vars$x = {
|
16289
16530
|
...compVars$3,
|
16290
16531
|
...helperVars$1,
|
16291
16532
|
};
|
@@ -16293,93 +16534,134 @@ const vars$w = {
|
|
16293
16534
|
var loaderRadial$1 = /*#__PURE__*/Object.freeze({
|
16294
16535
|
__proto__: null,
|
16295
16536
|
default: loaderRadial,
|
16296
|
-
vars: vars$
|
16537
|
+
vars: vars$x
|
16297
16538
|
});
|
16298
16539
|
|
16299
16540
|
const globalRefs$m = getThemeRefs(globals);
|
16300
|
-
const vars$
|
16541
|
+
const vars$w = ComboBoxClass.cssVarList;
|
16301
16542
|
|
16302
16543
|
const comboBox = {
|
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$
|
16340
|
-
[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,
|
16341
16582
|
|
16342
16583
|
_readonly: {
|
16343
|
-
[vars$
|
16584
|
+
[vars$w.inputDropdownButtonCursor]: 'default',
|
16344
16585
|
},
|
16345
16586
|
|
16346
16587
|
// Overlay theme exposed via the component:
|
16347
|
-
[vars$
|
16348
|
-
[vars$
|
16349
|
-
[vars$
|
16350
|
-
[vars$
|
16351
|
-
[vars$
|
16352
|
-
[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,
|
16353
16594
|
|
16354
16595
|
// Overlay direct theme:
|
16355
|
-
[vars$
|
16356
|
-
[vars$
|
16596
|
+
[vars$w.overlay.minHeight]: '400px',
|
16597
|
+
[vars$w.overlay.margin]: '0',
|
16357
16598
|
};
|
16358
16599
|
|
16359
16600
|
var comboBox$1 = /*#__PURE__*/Object.freeze({
|
16360
16601
|
__proto__: null,
|
16361
16602
|
comboBox: comboBox,
|
16362
16603
|
default: comboBox,
|
16363
|
-
vars: vars$
|
16604
|
+
vars: vars$w
|
16364
16605
|
});
|
16365
16606
|
|
16366
|
-
const vars$
|
16607
|
+
const vars$v = ImageClass.cssVarList;
|
16367
16608
|
|
16368
16609
|
const image = {};
|
16369
16610
|
|
16370
16611
|
var image$1 = /*#__PURE__*/Object.freeze({
|
16371
16612
|
__proto__: null,
|
16372
16613
|
default: image,
|
16373
|
-
vars: vars$
|
16614
|
+
vars: vars$v
|
16374
16615
|
});
|
16375
16616
|
|
16376
|
-
const vars$
|
16617
|
+
const vars$u = PhoneFieldClass.cssVarList;
|
16377
16618
|
|
16378
16619
|
const phoneField = {
|
16379
|
-
[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,
|
16380
16660
|
[vars$t.hostDirection]: refs.direction,
|
16381
16661
|
[vars$t.fontSize]: refs.fontSize,
|
16382
16662
|
[vars$t.fontFamily]: refs.fontFamily,
|
16663
|
+
[vars$t.labelFontSize]: refs.labelFontSize,
|
16664
|
+
[vars$t.labelFontWeight]: refs.labelFontWeight,
|
16383
16665
|
[vars$t.labelTextColor]: refs.labelTextColor,
|
16384
16666
|
[vars$t.labelRequiredIndicator]: refs.requiredIndicator,
|
16385
16667
|
[vars$t.errorMessageTextColor]: refs.errorMessageTextColor,
|
@@ -16393,28 +16675,32 @@ const phoneField = {
|
|
16393
16675
|
[vars$t.inputOutlineWidth]: refs.outlineWidth,
|
16394
16676
|
[vars$t.inputOutlineColor]: refs.outlineColor,
|
16395
16677
|
[vars$t.inputOutlineOffset]: refs.outlineOffset,
|
16396
|
-
[vars$t.
|
16397
|
-
[vars$t.
|
16398
|
-
[vars$t.
|
16399
|
-
[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,
|
16400
16684
|
[vars$t.valueInputHeight]: refs.valueInputHeight,
|
16401
16685
|
[vars$t.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16686
|
+
[vars$t.inputHorizontalPadding]: '0',
|
16402
16687
|
|
16403
|
-
|
16404
|
-
|
16405
|
-
|
16688
|
+
_fullWidth: {
|
16689
|
+
[vars$t.hostWidth]: refs.width,
|
16690
|
+
},
|
16406
16691
|
};
|
16407
16692
|
|
16408
|
-
var
|
16693
|
+
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16409
16694
|
__proto__: null,
|
16410
|
-
default:
|
16695
|
+
default: phoneInputBoxField,
|
16411
16696
|
vars: vars$t
|
16412
16697
|
});
|
16413
16698
|
|
16414
|
-
const
|
16699
|
+
const globalRefs$l = getThemeRefs(globals);
|
16700
|
+
const vars$s = NewPasswordClass.cssVarList;
|
16415
16701
|
|
16416
|
-
const
|
16417
|
-
[vars$s.hostWidth]:
|
16702
|
+
const newPassword = {
|
16703
|
+
[vars$s.hostWidth]: refs.width,
|
16418
16704
|
[vars$s.hostMinWidth]: refs.minWidth,
|
16419
16705
|
[vars$s.hostDirection]: refs.direction,
|
16420
16706
|
[vars$s.fontSize]: refs.fontSize,
|
@@ -16422,171 +16708,126 @@ const phoneInputBoxField = {
|
|
16422
16708
|
[vars$s.labelFontSize]: refs.labelFontSize,
|
16423
16709
|
[vars$s.labelFontWeight]: refs.labelFontWeight,
|
16424
16710
|
[vars$s.labelTextColor]: refs.labelTextColor,
|
16425
|
-
[vars$s.
|
16711
|
+
[vars$s.spaceBetweenInputs]: '1em',
|
16426
16712
|
[vars$s.errorMessageTextColor]: refs.errorMessageTextColor,
|
16427
|
-
[vars$s.
|
16428
|
-
[vars$s.
|
16429
|
-
[vars$s.inputBorderStyle]: refs.borderStyle,
|
16430
|
-
[vars$s.inputBorderWidth]: refs.borderWidth,
|
16431
|
-
[vars$s.inputBorderColor]: refs.borderColor,
|
16432
|
-
[vars$s.inputBorderRadius]: refs.borderRadius,
|
16433
|
-
[vars$s.inputOutlineStyle]: refs.outlineStyle,
|
16434
|
-
[vars$s.inputOutlineWidth]: refs.outlineWidth,
|
16435
|
-
[vars$s.inputOutlineColor]: refs.outlineColor,
|
16436
|
-
[vars$s.inputOutlineOffset]: refs.outlineOffset,
|
16437
|
-
[vars$s.labelPosition]: refs.labelPosition,
|
16438
|
-
[vars$s.labelTopPosition]: refs.labelTopPosition,
|
16439
|
-
[vars$s.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16440
|
-
[vars$s.inputTransformY]: refs.inputTransformY,
|
16441
|
-
[vars$s.inputTransition]: refs.inputTransition,
|
16442
|
-
[vars$s.marginInlineStart]: refs.marginInlineStart,
|
16713
|
+
[vars$s.policyPreviewBackgroundColor]: 'none',
|
16714
|
+
[vars$s.policyPreviewPadding]: globalRefs$l.spacing.lg,
|
16443
16715
|
[vars$s.valueInputHeight]: refs.valueInputHeight,
|
16444
|
-
[vars$s.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16445
|
-
[vars$s.inputHorizontalPadding]: '0',
|
16446
|
-
|
16447
|
-
_fullWidth: {
|
16448
|
-
[vars$s.hostWidth]: refs.width,
|
16449
|
-
},
|
16450
|
-
};
|
16451
|
-
|
16452
|
-
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16453
|
-
__proto__: null,
|
16454
|
-
default: phoneInputBoxField,
|
16455
|
-
vars: vars$s
|
16456
|
-
});
|
16457
|
-
|
16458
|
-
const globalRefs$l = getThemeRefs(globals);
|
16459
|
-
const vars$r = NewPasswordClass.cssVarList;
|
16460
|
-
|
16461
|
-
const newPassword = {
|
16462
|
-
[vars$r.hostWidth]: refs.width,
|
16463
|
-
[vars$r.hostMinWidth]: refs.minWidth,
|
16464
|
-
[vars$r.hostDirection]: refs.direction,
|
16465
|
-
[vars$r.fontSize]: refs.fontSize,
|
16466
|
-
[vars$r.fontFamily]: refs.fontFamily,
|
16467
|
-
[vars$r.labelFontSize]: refs.labelFontSize,
|
16468
|
-
[vars$r.labelFontWeight]: refs.labelFontWeight,
|
16469
|
-
[vars$r.labelTextColor]: refs.labelTextColor,
|
16470
|
-
[vars$r.spaceBetweenInputs]: '1em',
|
16471
|
-
[vars$r.errorMessageTextColor]: refs.errorMessageTextColor,
|
16472
|
-
[vars$r.policyPreviewBackgroundColor]: 'none',
|
16473
|
-
[vars$r.policyPreviewPadding]: globalRefs$l.spacing.lg,
|
16474
|
-
[vars$r.valueInputHeight]: refs.valueInputHeight,
|
16475
16716
|
|
16476
16717
|
_required: {
|
16477
16718
|
// NewPassword doesn't pass `required` attribute to its Password components.
|
16478
16719
|
// That's why we fake the required indicator on each input.
|
16479
16720
|
// We do that by injecting `::after` element, and populating it with requiredIndicator content.
|
16480
|
-
[vars$
|
16721
|
+
[vars$s.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
|
16481
16722
|
},
|
16482
16723
|
};
|
16483
16724
|
|
16484
16725
|
var newPassword$1 = /*#__PURE__*/Object.freeze({
|
16485
16726
|
__proto__: null,
|
16486
16727
|
default: newPassword,
|
16487
|
-
vars: vars$
|
16728
|
+
vars: vars$s
|
16488
16729
|
});
|
16489
16730
|
|
16490
|
-
const vars$
|
16731
|
+
const vars$r = UploadFileClass.cssVarList;
|
16491
16732
|
|
16492
16733
|
const uploadFile = {
|
16493
|
-
[vars$
|
16494
|
-
[vars$
|
16495
|
-
[vars$
|
16734
|
+
[vars$r.hostDirection]: refs.direction,
|
16735
|
+
[vars$r.labelTextColor]: refs.labelTextColor,
|
16736
|
+
[vars$r.fontFamily]: refs.fontFamily,
|
16496
16737
|
|
16497
|
-
[vars$
|
16738
|
+
[vars$r.iconSize]: '2em',
|
16498
16739
|
|
16499
|
-
[vars$
|
16500
|
-
[vars$
|
16740
|
+
[vars$r.hostPadding]: '0.75em',
|
16741
|
+
[vars$r.gap]: '0.5em',
|
16501
16742
|
|
16502
|
-
[vars$
|
16503
|
-
[vars$
|
16504
|
-
[vars$
|
16743
|
+
[vars$r.fontSize]: '16px',
|
16744
|
+
[vars$r.titleFontWeight]: '500',
|
16745
|
+
[vars$r.lineHeight]: '1em',
|
16505
16746
|
|
16506
|
-
[vars$
|
16507
|
-
[vars$
|
16508
|
-
[vars$
|
16509
|
-
[vars$
|
16747
|
+
[vars$r.borderWidth]: refs.borderWidth,
|
16748
|
+
[vars$r.borderColor]: refs.borderColor,
|
16749
|
+
[vars$r.borderRadius]: refs.borderRadius,
|
16750
|
+
[vars$r.borderStyle]: 'dashed',
|
16510
16751
|
|
16511
16752
|
_required: {
|
16512
|
-
[vars$
|
16753
|
+
[vars$r.requiredIndicator]: refs.requiredIndicator,
|
16513
16754
|
},
|
16514
16755
|
|
16515
16756
|
size: {
|
16516
16757
|
xs: {
|
16517
|
-
[vars$
|
16518
|
-
[vars$
|
16519
|
-
[vars$
|
16520
|
-
[vars$
|
16521
|
-
[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',
|
16522
16763
|
},
|
16523
16764
|
sm: {
|
16524
|
-
[vars$
|
16525
|
-
[vars$
|
16526
|
-
[vars$
|
16527
|
-
[vars$
|
16528
|
-
[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',
|
16529
16770
|
},
|
16530
16771
|
md: {
|
16531
|
-
[vars$
|
16532
|
-
[vars$
|
16533
|
-
[vars$
|
16534
|
-
[vars$
|
16535
|
-
[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',
|
16536
16777
|
},
|
16537
16778
|
lg: {
|
16538
|
-
[vars$
|
16539
|
-
[vars$
|
16540
|
-
[vars$
|
16541
|
-
[vars$
|
16542
|
-
[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',
|
16543
16784
|
},
|
16544
16785
|
},
|
16545
16786
|
|
16546
16787
|
_fullWidth: {
|
16547
|
-
[vars$
|
16788
|
+
[vars$r.hostWidth]: refs.width,
|
16548
16789
|
},
|
16549
16790
|
};
|
16550
16791
|
|
16551
16792
|
var uploadFile$1 = /*#__PURE__*/Object.freeze({
|
16552
16793
|
__proto__: null,
|
16553
16794
|
default: uploadFile,
|
16554
|
-
vars: vars$
|
16795
|
+
vars: vars$r
|
16555
16796
|
});
|
16556
16797
|
|
16557
16798
|
const globalRefs$k = getThemeRefs(globals);
|
16558
16799
|
|
16559
|
-
const vars$
|
16800
|
+
const vars$q = ButtonSelectionGroupItemClass.cssVarList;
|
16560
16801
|
|
16561
16802
|
const buttonSelectionGroupItem = {
|
16562
|
-
[vars$
|
16563
|
-
[vars$
|
16564
|
-
[vars$
|
16565
|
-
[vars$
|
16566
|
-
[vars$
|
16567
|
-
[vars$
|
16568
|
-
[vars$
|
16569
|
-
[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,
|
16570
16811
|
|
16571
16812
|
_hover: {
|
16572
|
-
[vars$
|
16813
|
+
[vars$q.backgroundColor]: globalRefs$k.colors.surface.highlight,
|
16573
16814
|
},
|
16574
16815
|
|
16575
16816
|
_focused: {
|
16576
|
-
[vars$
|
16817
|
+
[vars$q.outlineColor]: globalRefs$k.colors.surface.light,
|
16577
16818
|
},
|
16578
16819
|
|
16579
16820
|
_selected: {
|
16580
|
-
[vars$
|
16581
|
-
[vars$
|
16582
|
-
[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,
|
16583
16824
|
},
|
16584
16825
|
};
|
16585
16826
|
|
16586
16827
|
var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
|
16587
16828
|
__proto__: null,
|
16588
16829
|
default: buttonSelectionGroupItem,
|
16589
|
-
vars: vars$
|
16830
|
+
vars: vars$q
|
16590
16831
|
});
|
16591
16832
|
|
16592
16833
|
const globalRefs$j = getThemeRefs(globals);
|
@@ -16601,28 +16842,28 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
|
|
16601
16842
|
[vars.hostWidth]: refs.width,
|
16602
16843
|
});
|
16603
16844
|
|
16604
|
-
const vars$
|
16845
|
+
const vars$p = ButtonSelectionGroupClass.cssVarList;
|
16605
16846
|
|
16606
16847
|
const buttonSelectionGroup = {
|
16607
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
16848
|
+
...createBaseButtonSelectionGroupMappings(vars$p),
|
16608
16849
|
};
|
16609
16850
|
|
16610
16851
|
var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
16611
16852
|
__proto__: null,
|
16612
16853
|
default: buttonSelectionGroup,
|
16613
|
-
vars: vars$
|
16854
|
+
vars: vars$p
|
16614
16855
|
});
|
16615
16856
|
|
16616
|
-
const vars$
|
16857
|
+
const vars$o = ButtonMultiSelectionGroupClass.cssVarList;
|
16617
16858
|
|
16618
16859
|
const buttonMultiSelectionGroup = {
|
16619
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
16860
|
+
...createBaseButtonSelectionGroupMappings(vars$o),
|
16620
16861
|
};
|
16621
16862
|
|
16622
16863
|
var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
16623
16864
|
__proto__: null,
|
16624
16865
|
default: buttonMultiSelectionGroup,
|
16625
|
-
vars: vars$
|
16866
|
+
vars: vars$o
|
16626
16867
|
});
|
16627
16868
|
|
16628
16869
|
const globalRefs$i = getThemeRefs(globals);
|
@@ -16635,58 +16876,58 @@ const modal = {
|
|
16635
16876
|
[compVars$2.overlayWidth]: '540px',
|
16636
16877
|
};
|
16637
16878
|
|
16638
|
-
const vars$
|
16879
|
+
const vars$n = {
|
16639
16880
|
...compVars$2,
|
16640
16881
|
};
|
16641
16882
|
|
16642
16883
|
var modal$1 = /*#__PURE__*/Object.freeze({
|
16643
16884
|
__proto__: null,
|
16644
16885
|
default: modal,
|
16645
|
-
vars: vars$
|
16886
|
+
vars: vars$n
|
16646
16887
|
});
|
16647
16888
|
|
16648
16889
|
const globalRefs$h = getThemeRefs(globals);
|
16649
|
-
const vars$
|
16890
|
+
const vars$m = GridClass.cssVarList;
|
16650
16891
|
|
16651
16892
|
const grid = {
|
16652
|
-
[vars$
|
16653
|
-
[vars$
|
16654
|
-
[vars$
|
16655
|
-
[vars$
|
16656
|
-
[vars$
|
16657
|
-
|
16658
|
-
[vars$
|
16659
|
-
[vars$
|
16660
|
-
|
16661
|
-
[vars$
|
16662
|
-
[vars$
|
16663
|
-
[vars$
|
16664
|
-
|
16665
|
-
[vars$
|
16666
|
-
[vars$
|
16667
|
-
[vars$
|
16668
|
-
[vars$
|
16669
|
-
|
16670
|
-
[vars$
|
16671
|
-
[vars$
|
16672
|
-
|
16673
|
-
[vars$
|
16674
|
-
[vars$
|
16675
|
-
[vars$
|
16676
|
-
|
16677
|
-
[vars$
|
16678
|
-
[vars$
|
16679
|
-
[vars$
|
16680
|
-
[vars$
|
16681
|
-
[vars$
|
16682
|
-
[vars$
|
16683
|
-
[vars$
|
16684
|
-
[vars$
|
16685
|
-
[vars$
|
16686
|
-
[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',
|
16687
16928
|
|
16688
16929
|
_bordered: {
|
16689
|
-
[vars$
|
16930
|
+
[vars$m.borderColor]: refs.borderColor,
|
16690
16931
|
},
|
16691
16932
|
};
|
16692
16933
|
|
@@ -16694,53 +16935,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
|
|
16694
16935
|
__proto__: null,
|
16695
16936
|
default: grid,
|
16696
16937
|
grid: grid,
|
16697
|
-
vars: vars$
|
16938
|
+
vars: vars$m
|
16698
16939
|
});
|
16699
16940
|
|
16700
16941
|
const globalRefs$g = getThemeRefs(globals);
|
16701
|
-
const vars$
|
16942
|
+
const vars$l = NotificationCardClass.cssVarList;
|
16702
16943
|
|
16703
16944
|
const shadowColor$2 = '#00000020';
|
16704
16945
|
|
16705
16946
|
const notification = {
|
16706
|
-
[vars$
|
16707
|
-
[vars$
|
16708
|
-
[vars$
|
16709
|
-
[vars$
|
16710
|
-
[vars$
|
16711
|
-
[vars$
|
16712
|
-
[vars$
|
16713
|
-
[vars$
|
16714
|
-
[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,
|
16715
16956
|
|
16716
16957
|
_bordered: {
|
16717
|
-
[vars$
|
16718
|
-
[vars$
|
16719
|
-
[vars$
|
16958
|
+
[vars$l.borderWidth]: globalRefs$g.border.sm,
|
16959
|
+
[vars$l.borderStyle]: 'solid',
|
16960
|
+
[vars$l.borderColor]: 'transparent',
|
16720
16961
|
},
|
16721
16962
|
|
16722
16963
|
size: {
|
16723
|
-
xs: { [vars$
|
16724
|
-
sm: { [vars$
|
16725
|
-
md: { [vars$
|
16726
|
-
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' },
|
16727
16968
|
},
|
16728
16969
|
|
16729
16970
|
mode: {
|
16730
16971
|
primary: {
|
16731
|
-
[vars$
|
16732
|
-
[vars$
|
16733
|
-
[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,
|
16734
16975
|
},
|
16735
16976
|
success: {
|
16736
|
-
[vars$
|
16737
|
-
[vars$
|
16738
|
-
[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,
|
16739
16980
|
},
|
16740
16981
|
error: {
|
16741
|
-
[vars$
|
16742
|
-
[vars$
|
16743
|
-
[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,
|
16744
16985
|
},
|
16745
16986
|
},
|
16746
16987
|
};
|
@@ -16748,148 +16989,148 @@ const notification = {
|
|
16748
16989
|
var notificationCard = /*#__PURE__*/Object.freeze({
|
16749
16990
|
__proto__: null,
|
16750
16991
|
default: notification,
|
16751
|
-
vars: vars$
|
16992
|
+
vars: vars$l
|
16752
16993
|
});
|
16753
16994
|
|
16754
16995
|
const globalRefs$f = getThemeRefs(globals);
|
16755
|
-
const vars$
|
16996
|
+
const vars$k = MultiSelectComboBoxClass.cssVarList;
|
16756
16997
|
|
16757
16998
|
const multiSelectComboBox = {
|
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$
|
16798
|
-
[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,
|
16799
17040
|
|
16800
17041
|
labelType: {
|
16801
17042
|
floating: {
|
16802
|
-
[vars$
|
17043
|
+
[vars$k.inputHorizontalPadding]: '0.25em',
|
16803
17044
|
_hasValue: {
|
16804
|
-
[vars$
|
17045
|
+
[vars$k.inputHorizontalPadding]: '0.45em',
|
16805
17046
|
},
|
16806
17047
|
},
|
16807
17048
|
},
|
16808
17049
|
|
16809
17050
|
_readonly: {
|
16810
|
-
[vars$
|
17051
|
+
[vars$k.inputDropdownButtonCursor]: 'default',
|
16811
17052
|
},
|
16812
17053
|
|
16813
17054
|
// Overlay theme exposed via the component:
|
16814
|
-
[vars$
|
16815
|
-
[vars$
|
16816
|
-
[vars$
|
16817
|
-
[vars$
|
16818
|
-
[vars$
|
16819
|
-
[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,
|
16820
17061
|
|
16821
17062
|
// Overlay direct theme:
|
16822
|
-
[vars$
|
16823
|
-
[vars$
|
17063
|
+
[vars$k.overlay.minHeight]: '400px',
|
17064
|
+
[vars$k.overlay.margin]: '0',
|
16824
17065
|
};
|
16825
17066
|
|
16826
17067
|
var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
|
16827
17068
|
__proto__: null,
|
16828
17069
|
default: multiSelectComboBox,
|
16829
17070
|
multiSelectComboBox: multiSelectComboBox,
|
16830
|
-
vars: vars$
|
17071
|
+
vars: vars$k
|
16831
17072
|
});
|
16832
17073
|
|
16833
17074
|
const globalRefs$e = getThemeRefs(globals);
|
16834
|
-
const vars$
|
17075
|
+
const vars$j = BadgeClass.cssVarList;
|
16835
17076
|
|
16836
17077
|
const badge = {
|
16837
|
-
[vars$
|
16838
|
-
[vars$
|
17078
|
+
[vars$j.hostWidth]: 'fit-content',
|
17079
|
+
[vars$j.hostDirection]: globalRefs$e.direction,
|
16839
17080
|
|
16840
|
-
[vars$
|
17081
|
+
[vars$j.textAlign]: 'center',
|
16841
17082
|
|
16842
|
-
[vars$
|
16843
|
-
[vars$
|
17083
|
+
[vars$j.fontFamily]: globalRefs$e.fonts.font1.family,
|
17084
|
+
[vars$j.fontWeight]: '400',
|
16844
17085
|
|
16845
|
-
[vars$
|
16846
|
-
[vars$
|
17086
|
+
[vars$j.verticalPadding]: '0.25em',
|
17087
|
+
[vars$j.horizontalPadding]: '0.5em',
|
16847
17088
|
|
16848
|
-
[vars$
|
16849
|
-
[vars$
|
16850
|
-
[vars$
|
16851
|
-
[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',
|
16852
17093
|
|
16853
17094
|
_fullWidth: {
|
16854
|
-
[vars$
|
17095
|
+
[vars$j.hostWidth]: '100%',
|
16855
17096
|
},
|
16856
17097
|
|
16857
17098
|
size: {
|
16858
|
-
xs: { [vars$
|
16859
|
-
sm: { [vars$
|
16860
|
-
md: { [vars$
|
16861
|
-
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' },
|
16862
17103
|
},
|
16863
17104
|
|
16864
17105
|
mode: {
|
16865
17106
|
default: {
|
16866
|
-
[vars$
|
17107
|
+
[vars$j.textColor]: globalRefs$e.colors.surface.dark,
|
16867
17108
|
_bordered: {
|
16868
|
-
[vars$
|
17109
|
+
[vars$j.borderColor]: globalRefs$e.colors.surface.light,
|
16869
17110
|
},
|
16870
17111
|
},
|
16871
17112
|
primary: {
|
16872
|
-
[vars$
|
17113
|
+
[vars$j.textColor]: globalRefs$e.colors.primary.main,
|
16873
17114
|
_bordered: {
|
16874
|
-
[vars$
|
17115
|
+
[vars$j.borderColor]: globalRefs$e.colors.primary.light,
|
16875
17116
|
},
|
16876
17117
|
},
|
16877
17118
|
secondary: {
|
16878
|
-
[vars$
|
17119
|
+
[vars$j.textColor]: globalRefs$e.colors.secondary.main,
|
16879
17120
|
_bordered: {
|
16880
|
-
[vars$
|
17121
|
+
[vars$j.borderColor]: globalRefs$e.colors.secondary.light,
|
16881
17122
|
},
|
16882
17123
|
},
|
16883
17124
|
error: {
|
16884
|
-
[vars$
|
17125
|
+
[vars$j.textColor]: globalRefs$e.colors.error.main,
|
16885
17126
|
_bordered: {
|
16886
|
-
[vars$
|
17127
|
+
[vars$j.borderColor]: globalRefs$e.colors.error.light,
|
16887
17128
|
},
|
16888
17129
|
},
|
16889
17130
|
success: {
|
16890
|
-
[vars$
|
17131
|
+
[vars$j.textColor]: globalRefs$e.colors.success.main,
|
16891
17132
|
_bordered: {
|
16892
|
-
[vars$
|
17133
|
+
[vars$j.borderColor]: globalRefs$e.colors.success.light,
|
16893
17134
|
},
|
16894
17135
|
},
|
16895
17136
|
},
|
@@ -16898,7 +17139,7 @@ const badge = {
|
|
16898
17139
|
var badge$1 = /*#__PURE__*/Object.freeze({
|
16899
17140
|
__proto__: null,
|
16900
17141
|
default: badge,
|
16901
|
-
vars: vars$
|
17142
|
+
vars: vars$j
|
16902
17143
|
});
|
16903
17144
|
|
16904
17145
|
const globalRefs$d = getThemeRefs(globals);
|
@@ -16936,143 +17177,143 @@ const avatar = {
|
|
16936
17177
|
},
|
16937
17178
|
};
|
16938
17179
|
|
16939
|
-
const vars$
|
17180
|
+
const vars$i = {
|
16940
17181
|
...compVars$1,
|
16941
17182
|
};
|
16942
17183
|
|
16943
17184
|
var avatar$1 = /*#__PURE__*/Object.freeze({
|
16944
17185
|
__proto__: null,
|
16945
17186
|
default: avatar,
|
16946
|
-
vars: vars$
|
17187
|
+
vars: vars$i
|
16947
17188
|
});
|
16948
17189
|
|
16949
17190
|
const globalRefs$c = getThemeRefs(globals);
|
16950
17191
|
|
16951
|
-
const vars$
|
17192
|
+
const vars$h = MappingsFieldClass.cssVarList;
|
16952
17193
|
|
16953
17194
|
const mappingsField = {
|
16954
|
-
[vars$
|
16955
|
-
[vars$
|
16956
|
-
[vars$
|
16957
|
-
[vars$
|
16958
|
-
[vars$
|
16959
|
-
[vars$
|
16960
|
-
[vars$
|
16961
|
-
[vars$
|
16962
|
-
[vars$
|
16963
|
-
[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',
|
16964
17205
|
// To be positioned correctly, the min width has to match the text field min width
|
16965
|
-
[vars$
|
17206
|
+
[vars$h.valueLabelMinWidth]: refs.minWidth,
|
16966
17207
|
// To be positioned correctly, the min width has to match the combo box field min width
|
16967
|
-
[vars$
|
16968
|
-
[vars$
|
16969
|
-
[vars$
|
17208
|
+
[vars$h.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
|
17209
|
+
[vars$h.separatorWidth]: '70px',
|
17210
|
+
[vars$h.removeButtonWidth]: '60px',
|
16970
17211
|
};
|
16971
17212
|
|
16972
17213
|
var mappingsField$1 = /*#__PURE__*/Object.freeze({
|
16973
17214
|
__proto__: null,
|
16974
17215
|
default: mappingsField,
|
16975
17216
|
mappingsField: mappingsField,
|
16976
|
-
vars: vars$
|
17217
|
+
vars: vars$h
|
16977
17218
|
});
|
16978
17219
|
|
16979
17220
|
const globalRefs$b = getThemeRefs(globals);
|
16980
|
-
const vars$
|
17221
|
+
const vars$g = UserAttributeClass.cssVarList;
|
16981
17222
|
|
16982
17223
|
const userAttribute = {
|
16983
|
-
[vars$
|
16984
|
-
[vars$
|
16985
|
-
[vars$
|
16986
|
-
[vars$
|
16987
|
-
[vars$
|
16988
|
-
[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',
|
16989
17230
|
_fullWidth: {
|
16990
|
-
[vars$
|
17231
|
+
[vars$g.hostWidth]: '100%',
|
16991
17232
|
},
|
16992
17233
|
};
|
16993
17234
|
|
16994
17235
|
var userAttribute$1 = /*#__PURE__*/Object.freeze({
|
16995
17236
|
__proto__: null,
|
16996
17237
|
default: userAttribute,
|
16997
|
-
vars: vars$
|
17238
|
+
vars: vars$g
|
16998
17239
|
});
|
16999
17240
|
|
17000
17241
|
const globalRefs$a = getThemeRefs(globals);
|
17001
|
-
const vars$
|
17242
|
+
const vars$f = UserAuthMethodClass.cssVarList;
|
17002
17243
|
|
17003
17244
|
const userAuthMethod = {
|
17004
|
-
[vars$
|
17005
|
-
[vars$
|
17006
|
-
[vars$
|
17007
|
-
[vars$
|
17008
|
-
[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',
|
17009
17250
|
_fullWidth: {
|
17010
|
-
[vars$
|
17251
|
+
[vars$f.hostWidth]: '100%',
|
17011
17252
|
},
|
17012
17253
|
};
|
17013
17254
|
|
17014
17255
|
var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
|
17015
17256
|
__proto__: null,
|
17016
17257
|
default: userAuthMethod,
|
17017
|
-
vars: vars$
|
17258
|
+
vars: vars$f
|
17018
17259
|
});
|
17019
17260
|
|
17020
|
-
const vars$
|
17261
|
+
const vars$e = SamlGroupMappingsClass.cssVarList;
|
17021
17262
|
|
17022
17263
|
const samlGroupMappings = {
|
17023
|
-
[vars$
|
17024
|
-
[vars$
|
17025
|
-
[vars$
|
17264
|
+
[vars$e.hostWidth]: refs.width,
|
17265
|
+
[vars$e.hostDirection]: refs.direction,
|
17266
|
+
[vars$e.groupNameInputMarginBottom]: '1em',
|
17026
17267
|
};
|
17027
17268
|
|
17028
17269
|
var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
|
17029
17270
|
__proto__: null,
|
17030
17271
|
default: samlGroupMappings,
|
17031
17272
|
samlGroupMappings: samlGroupMappings,
|
17032
|
-
vars: vars$
|
17273
|
+
vars: vars$e
|
17033
17274
|
});
|
17034
17275
|
|
17035
17276
|
const globalRefs$9 = getThemeRefs(globals);
|
17036
|
-
const vars$
|
17277
|
+
const vars$d = PolicyValidationClass.cssVarList;
|
17037
17278
|
|
17038
17279
|
const policyValidation = {
|
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$
|
17054
|
-
[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,
|
17055
17296
|
};
|
17056
17297
|
|
17057
17298
|
var policyValidation$1 = /*#__PURE__*/Object.freeze({
|
17058
17299
|
__proto__: null,
|
17059
17300
|
default: policyValidation,
|
17060
|
-
vars: vars$
|
17301
|
+
vars: vars$d
|
17061
17302
|
});
|
17062
17303
|
|
17063
|
-
const vars$
|
17304
|
+
const vars$c = IconClass.cssVarList;
|
17064
17305
|
|
17065
17306
|
const icon = {};
|
17066
17307
|
|
17067
17308
|
var icon$1 = /*#__PURE__*/Object.freeze({
|
17068
17309
|
__proto__: null,
|
17069
17310
|
default: icon,
|
17070
|
-
vars: vars$
|
17311
|
+
vars: vars$c
|
17071
17312
|
});
|
17072
17313
|
|
17073
17314
|
const globalRefs$8 = getThemeRefs(globals);
|
17074
17315
|
|
17075
|
-
const vars$
|
17316
|
+
const vars$b = CodeSnippetClass.cssVarList;
|
17076
17317
|
|
17077
17318
|
const light = {
|
17078
17319
|
color1: '#fa0',
|
@@ -17107,50 +17348,50 @@ const dark = {
|
|
17107
17348
|
};
|
17108
17349
|
|
17109
17350
|
const CodeSnippet = {
|
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$
|
17153
|
-
[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,
|
17154
17395
|
/* purposely ignored */
|
17155
17396
|
// [vars.charEscapeTextColor]: '',
|
17156
17397
|
// [vars.linkTextColor]: '',
|
@@ -17162,50 +17403,50 @@ const CodeSnippet = {
|
|
17162
17403
|
|
17163
17404
|
const codeSnippetDarkThemeOverrides = {
|
17164
17405
|
codeSnippet: {
|
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$
|
17208
|
-
[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,
|
17209
17450
|
},
|
17210
17451
|
};
|
17211
17452
|
|
@@ -17213,36 +17454,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
|
|
17213
17454
|
__proto__: null,
|
17214
17455
|
codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
|
17215
17456
|
default: CodeSnippet,
|
17216
|
-
vars: vars$
|
17457
|
+
vars: vars$b
|
17217
17458
|
});
|
17218
17459
|
|
17219
|
-
const vars$
|
17460
|
+
const vars$a = RadioGroupClass.cssVarList;
|
17220
17461
|
const globalRefs$7 = getThemeRefs(globals);
|
17221
17462
|
|
17222
17463
|
const radioGroup = {
|
17223
|
-
[vars$
|
17224
|
-
[vars$
|
17225
|
-
[vars$
|
17226
|
-
[vars$
|
17227
|
-
[vars$
|
17228
|
-
[vars$
|
17229
|
-
[vars$
|
17230
|
-
[vars$
|
17231
|
-
[vars$
|
17232
|
-
[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,
|
17233
17474
|
|
17234
17475
|
textAlign: {
|
17235
|
-
right: { [vars$
|
17236
|
-
left: { [vars$
|
17237
|
-
center: { [vars$
|
17476
|
+
right: { [vars$a.inputTextAlign]: 'right' },
|
17477
|
+
left: { [vars$a.inputTextAlign]: 'left' },
|
17478
|
+
center: { [vars$a.inputTextAlign]: 'center' },
|
17238
17479
|
},
|
17239
17480
|
|
17240
17481
|
_fullWidth: {
|
17241
|
-
[vars$
|
17482
|
+
[vars$a.buttonsSpacing]: 'space-between',
|
17242
17483
|
},
|
17243
17484
|
|
17244
17485
|
_disabled: {
|
17245
|
-
[vars$
|
17486
|
+
[vars$a.itemsLabelColor]: globalRefs$7.colors.surface.light,
|
17246
17487
|
},
|
17247
17488
|
};
|
17248
17489
|
|
@@ -17250,24 +17491,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
|
|
17250
17491
|
__proto__: null,
|
17251
17492
|
default: radioGroup,
|
17252
17493
|
radioGroup: radioGroup,
|
17253
|
-
vars: vars$
|
17494
|
+
vars: vars$a
|
17254
17495
|
});
|
17255
17496
|
|
17256
|
-
const vars$
|
17497
|
+
const vars$9 = RadioButtonClass.cssVarList;
|
17257
17498
|
const globalRefs$6 = getThemeRefs(globals);
|
17258
17499
|
|
17259
17500
|
const radioButton = {
|
17260
|
-
[vars$
|
17261
|
-
[vars$
|
17262
|
-
[vars$
|
17263
|
-
[vars$
|
17264
|
-
[vars$
|
17265
|
-
[vars$
|
17266
|
-
[vars$
|
17267
|
-
[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,
|
17268
17509
|
|
17269
17510
|
_checked: {
|
17270
|
-
[vars$
|
17511
|
+
[vars$9.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
|
17271
17512
|
},
|
17272
17513
|
|
17273
17514
|
_hover: {
|
@@ -17276,16 +17517,16 @@ const radioButton = {
|
|
17276
17517
|
|
17277
17518
|
size: {
|
17278
17519
|
xs: {
|
17279
|
-
[vars$
|
17520
|
+
[vars$9.fontSize]: '12px',
|
17280
17521
|
},
|
17281
17522
|
sm: {
|
17282
|
-
[vars$
|
17523
|
+
[vars$9.fontSize]: '14px',
|
17283
17524
|
},
|
17284
17525
|
md: {
|
17285
|
-
[vars$
|
17526
|
+
[vars$9.fontSize]: '16px',
|
17286
17527
|
},
|
17287
17528
|
lg: {
|
17288
|
-
[vars$
|
17529
|
+
[vars$9.fontSize]: '18px',
|
17289
17530
|
},
|
17290
17531
|
},
|
17291
17532
|
};
|
@@ -17294,128 +17535,128 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
|
|
17294
17535
|
__proto__: null,
|
17295
17536
|
default: radioButton,
|
17296
17537
|
radioButton: radioButton,
|
17297
|
-
vars: vars$
|
17538
|
+
vars: vars$9
|
17298
17539
|
});
|
17299
17540
|
|
17300
17541
|
const globalRefs$5 = getThemeRefs(globals);
|
17301
17542
|
|
17302
|
-
const vars$
|
17543
|
+
const vars$8 = CalendarClass.cssVarList;
|
17303
17544
|
|
17304
17545
|
const calendar = {
|
17305
|
-
[vars$
|
17306
|
-
[vars$
|
17307
|
-
[vars$
|
17546
|
+
[vars$8.fontFamily]: refs.fontFamily,
|
17547
|
+
[vars$8.fontSize]: refs.fontSize,
|
17548
|
+
[vars$8.hostDirection]: refs.direction,
|
17308
17549
|
|
17309
|
-
[vars$
|
17550
|
+
[vars$8.calendarPadding]: '1em',
|
17310
17551
|
|
17311
|
-
[vars$
|
17312
|
-
[vars$
|
17313
|
-
[vars$
|
17314
|
-
[vars$
|
17552
|
+
[vars$8.topNavVerticalPadding]: '1em',
|
17553
|
+
[vars$8.topNavAlignment]: 'space-between',
|
17554
|
+
[vars$8.topNavGap]: '0',
|
17555
|
+
[vars$8.topNavSelectorsGap]: '0.5em',
|
17315
17556
|
|
17316
|
-
[vars$
|
17317
|
-
[vars$
|
17318
|
-
[vars$
|
17319
|
-
[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',
|
17320
17561
|
|
17321
|
-
[vars$
|
17322
|
-
[vars$
|
17323
|
-
[vars$
|
17324
|
-
[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',
|
17325
17566
|
|
17326
|
-
[vars$
|
17327
|
-
[vars$
|
17567
|
+
[vars$8.yearInputWidth]: '6em',
|
17568
|
+
[vars$8.monthInputWidth]: '8em',
|
17328
17569
|
|
17329
|
-
[vars$
|
17330
|
-
[vars$
|
17570
|
+
[vars$8.navButtonSize]: '24px',
|
17571
|
+
[vars$8.navButtonCursor]: 'pointer',
|
17331
17572
|
|
17332
|
-
[vars$
|
17333
|
-
[vars$
|
17573
|
+
[vars$8.weekdayFontSize]: '0.875em',
|
17574
|
+
[vars$8.weekdayFontWeight]: '500',
|
17334
17575
|
|
17335
17576
|
// day table cell
|
17336
|
-
[vars$
|
17577
|
+
[vars$8.dayHeight]: '3.125em',
|
17337
17578
|
|
17338
17579
|
// day value
|
17339
|
-
[vars$
|
17340
|
-
[vars$
|
17341
|
-
[vars$
|
17342
|
-
[vars$
|
17343
|
-
[vars$
|
17344
|
-
[vars$
|
17345
|
-
[vars$
|
17346
|
-
[vars$
|
17347
|
-
[vars$
|
17348
|
-
[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,
|
17349
17590
|
|
17350
17591
|
// selected day
|
17351
|
-
[vars$
|
17352
|
-
[vars$
|
17592
|
+
[vars$8.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
|
17593
|
+
[vars$8.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
|
17353
17594
|
|
17354
17595
|
// disabled day (out of min/max range)
|
17355
|
-
[vars$
|
17596
|
+
[vars$8.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
|
17356
17597
|
|
17357
17598
|
// today
|
17358
|
-
[vars$
|
17359
|
-
[vars$
|
17360
|
-
[vars$
|
17599
|
+
[vars$8.currentDayBorderColor]: globalRefs$5.colors.surface.light,
|
17600
|
+
[vars$8.currentDayBorderWidth]: '1px',
|
17601
|
+
[vars$8.currentDayBorderStyle]: 'solid',
|
17361
17602
|
|
17362
17603
|
size: {
|
17363
|
-
xs: { [vars$
|
17364
|
-
sm: { [vars$
|
17365
|
-
md: { [vars$
|
17366
|
-
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' },
|
17367
17608
|
},
|
17368
17609
|
|
17369
|
-
[vars$
|
17610
|
+
[vars$8.navButtonRotation]: 'rotate(180deg)',
|
17370
17611
|
|
17371
17612
|
_disabled: {
|
17372
|
-
[vars$
|
17373
|
-
[vars$
|
17374
|
-
[vars$
|
17375
|
-
[vars$
|
17613
|
+
[vars$8.navButtonOpacity]: '0.5',
|
17614
|
+
[vars$8.dayBackgroundColorHover]: 'none',
|
17615
|
+
[vars$8.navButtonCursor]: 'default',
|
17616
|
+
[vars$8.dayCursor]: 'default',
|
17376
17617
|
},
|
17377
17618
|
|
17378
17619
|
_fullWidth: {
|
17379
|
-
[vars$
|
17380
|
-
[vars$
|
17620
|
+
[vars$8.hostWidth]: '100%',
|
17621
|
+
[vars$8.dayBlockAlign]: '0 auto',
|
17381
17622
|
},
|
17382
17623
|
};
|
17383
17624
|
|
17384
17625
|
var calendar$1 = /*#__PURE__*/Object.freeze({
|
17385
17626
|
__proto__: null,
|
17386
17627
|
default: calendar,
|
17387
|
-
vars: vars$
|
17628
|
+
vars: vars$8
|
17388
17629
|
});
|
17389
17630
|
|
17390
17631
|
const globalRefs$4 = getThemeRefs(globals);
|
17391
17632
|
const shadowColor$1 = '#00000020';
|
17392
17633
|
const { shadow } = globalRefs$4;
|
17393
17634
|
|
17394
|
-
const vars$
|
17635
|
+
const vars$7 = DateFieldClass.cssVarList;
|
17395
17636
|
|
17396
17637
|
const dateField = {
|
17397
|
-
[vars$
|
17398
|
-
[vars$
|
17399
|
-
[vars$
|
17400
|
-
|
17401
|
-
[vars$
|
17402
|
-
[vars$
|
17403
|
-
[vars$
|
17404
|
-
[vars$
|
17405
|
-
[vars$
|
17406
|
-
[vars$
|
17407
|
-
[vars$
|
17408
|
-
[vars$
|
17409
|
-
[vars$
|
17410
|
-
|
17411
|
-
[vars$
|
17412
|
-
[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',
|
17413
17654
|
};
|
17414
17655
|
|
17415
17656
|
var dateField$1 = /*#__PURE__*/Object.freeze({
|
17416
17657
|
__proto__: null,
|
17417
17658
|
default: dateField,
|
17418
|
-
vars: vars$
|
17659
|
+
vars: vars$7
|
17419
17660
|
});
|
17420
17661
|
|
17421
17662
|
const globalRefs$3 = getThemeRefs(globals);
|
@@ -17424,7 +17665,7 @@ const compVars = ListClass.cssVarList;
|
|
17424
17665
|
|
17425
17666
|
const [helperTheme, helperRefs, helperVars] = createHelperVars(
|
17426
17667
|
{ shadowColor: '#00000020' },
|
17427
|
-
componentName$
|
17668
|
+
componentName$5
|
17428
17669
|
);
|
17429
17670
|
|
17430
17671
|
const { shadowColor } = helperRefs;
|
@@ -17464,7 +17705,7 @@ const list$1 = {
|
|
17464
17705
|
},
|
17465
17706
|
};
|
17466
17707
|
|
17467
|
-
const vars$
|
17708
|
+
const vars$6 = {
|
17468
17709
|
...compVars,
|
17469
17710
|
...helperVars,
|
17470
17711
|
};
|
@@ -17472,78 +17713,78 @@ const vars$5 = {
|
|
17472
17713
|
var list$2 = /*#__PURE__*/Object.freeze({
|
17473
17714
|
__proto__: null,
|
17474
17715
|
default: list$1,
|
17475
|
-
vars: vars$
|
17716
|
+
vars: vars$6
|
17476
17717
|
});
|
17477
17718
|
|
17478
17719
|
const globalRefs$2 = getThemeRefs(globals);
|
17479
17720
|
|
17480
|
-
const vars$
|
17721
|
+
const vars$5 = ListItemClass.cssVarList;
|
17481
17722
|
|
17482
17723
|
const list = {
|
17483
|
-
[vars$
|
17484
|
-
[vars$
|
17485
|
-
[vars$
|
17486
|
-
[vars$
|
17487
|
-
[vars$
|
17488
|
-
[vars$
|
17489
|
-
[vars$
|
17490
|
-
[vars$
|
17491
|
-
[vars$
|
17492
|
-
[vars$
|
17493
|
-
[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',
|
17494
17735
|
|
17495
17736
|
variant: {
|
17496
17737
|
tile: {
|
17497
|
-
[vars$
|
17498
|
-
[vars$
|
17499
|
-
[vars$
|
17738
|
+
[vars$5.alignItems]: 'flex-start',
|
17739
|
+
[vars$5.flexDirection]: 'column',
|
17740
|
+
[vars$5.borderColor]: globalRefs$2.colors.surface.light,
|
17500
17741
|
},
|
17501
17742
|
},
|
17502
17743
|
|
17503
17744
|
_hover: {
|
17504
|
-
[vars$
|
17745
|
+
[vars$5.backgroundColor]: globalRefs$2.colors.surface.highlight,
|
17505
17746
|
},
|
17506
17747
|
|
17507
17748
|
_active: {
|
17508
|
-
[vars$
|
17509
|
-
[vars$
|
17510
|
-
[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}`,
|
17511
17752
|
},
|
17512
17753
|
};
|
17513
17754
|
|
17514
17755
|
var listItem = /*#__PURE__*/Object.freeze({
|
17515
17756
|
__proto__: null,
|
17516
17757
|
default: list,
|
17517
|
-
vars: vars$
|
17758
|
+
vars: vars$5
|
17518
17759
|
});
|
17519
17760
|
|
17520
|
-
const vars$
|
17761
|
+
const vars$4 = AppsListClass.cssVarList;
|
17521
17762
|
const globalRefs$1 = getThemeRefs(globals);
|
17522
17763
|
|
17523
17764
|
const defaultHeight = '400px';
|
17524
17765
|
|
17525
17766
|
const appsList = {
|
17526
|
-
[vars$
|
17527
|
-
[vars$
|
17528
|
-
[vars$
|
17529
|
-
[vars$
|
17767
|
+
[vars$4.itemsFontWeight]: 'normal',
|
17768
|
+
[vars$4.itemsTextAlign]: 'start',
|
17769
|
+
[vars$4.hostDirection]: globalRefs$1.direction,
|
17770
|
+
[vars$4.maxHeight]: defaultHeight,
|
17530
17771
|
|
17531
17772
|
_empty: {
|
17532
|
-
[vars$
|
17773
|
+
[vars$4.minHeight]: defaultHeight,
|
17533
17774
|
},
|
17534
17775
|
|
17535
17776
|
size: {
|
17536
17777
|
xs: {
|
17537
|
-
[vars$
|
17778
|
+
[vars$4.itemsFontSize]: '14px',
|
17538
17779
|
},
|
17539
17780
|
sm: {
|
17540
|
-
[vars$
|
17781
|
+
[vars$4.itemsFontSize]: '14px',
|
17541
17782
|
},
|
17542
17783
|
md: {
|
17543
|
-
[vars$
|
17784
|
+
[vars$4.itemsFontSize]: '16px',
|
17544
17785
|
},
|
17545
17786
|
lg: {
|
17546
|
-
[vars$
|
17787
|
+
[vars$4.itemsFontSize]: '20px',
|
17547
17788
|
},
|
17548
17789
|
},
|
17549
17790
|
};
|
@@ -17551,52 +17792,52 @@ const appsList = {
|
|
17551
17792
|
var appsList$1 = /*#__PURE__*/Object.freeze({
|
17552
17793
|
__proto__: null,
|
17553
17794
|
default: appsList,
|
17554
|
-
vars: vars$
|
17795
|
+
vars: vars$4
|
17555
17796
|
});
|
17556
17797
|
|
17557
|
-
const vars$
|
17798
|
+
const vars$3 = ScopesListClass.cssVarList;
|
17558
17799
|
|
17559
|
-
const scopesList = {
|
17560
|
-
[vars$
|
17561
|
-
[vars$
|
17562
|
-
[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',
|
17563
17804
|
_fullWidth: {
|
17564
|
-
[vars$
|
17805
|
+
[vars$3.hostWidth]: '100%',
|
17565
17806
|
},
|
17566
17807
|
};
|
17567
17808
|
|
17568
|
-
var scopesList$
|
17809
|
+
var scopesList$2 = /*#__PURE__*/Object.freeze({
|
17569
17810
|
__proto__: null,
|
17570
|
-
default: scopesList,
|
17571
|
-
vars: vars$
|
17811
|
+
default: scopesList$1,
|
17812
|
+
vars: vars$3
|
17572
17813
|
});
|
17573
17814
|
|
17574
17815
|
const globalRefs = getThemeRefs(globals);
|
17575
|
-
const vars$
|
17816
|
+
const vars$2 = ThirdPartyAppLogoClass.cssVarList;
|
17576
17817
|
|
17577
17818
|
const thirdPartyAppLogo = {
|
17578
|
-
[vars$
|
17579
|
-
[vars$
|
17580
|
-
[vars$
|
17819
|
+
[vars$2.gap]: globalRefs.spacing.lg,
|
17820
|
+
[vars$2.arrowsColor]: globalRefs.colors.surface.dark,
|
17821
|
+
[vars$2.thirdPartyAppLogoFallback]:
|
17581
17822
|
'url(https://imgs.descope.com/components/third-party-app-logo-placeholder.svg)',
|
17582
|
-
[vars$
|
17823
|
+
[vars$2.companyLogoFallback]:
|
17583
17824
|
'url(https://imgs.descope.com/components/project-logo-placeholder.svg)',
|
17584
17825
|
size: {
|
17585
17826
|
xs: {
|
17586
|
-
[vars$
|
17587
|
-
[vars$
|
17827
|
+
[vars$2.logoMaxHeight]: '30px',
|
17828
|
+
[vars$2.logoMaxWidth]: '120px',
|
17588
17829
|
},
|
17589
17830
|
sm: {
|
17590
|
-
[vars$
|
17591
|
-
[vars$
|
17831
|
+
[vars$2.logoMaxHeight]: '40px',
|
17832
|
+
[vars$2.logoMaxWidth]: '160px',
|
17592
17833
|
},
|
17593
17834
|
md: {
|
17594
|
-
[vars$
|
17595
|
-
[vars$
|
17835
|
+
[vars$2.logoMaxHeight]: '48px',
|
17836
|
+
[vars$2.logoMaxWidth]: '200px',
|
17596
17837
|
},
|
17597
17838
|
lg: {
|
17598
|
-
[vars$
|
17599
|
-
[vars$
|
17839
|
+
[vars$2.logoMaxHeight]: '60px',
|
17840
|
+
[vars$2.logoMaxWidth]: '240px',
|
17600
17841
|
},
|
17601
17842
|
},
|
17602
17843
|
};
|
@@ -17604,6 +17845,21 @@ const thirdPartyAppLogo = {
|
|
17604
17845
|
var thirdPartyAppLogo$1 = /*#__PURE__*/Object.freeze({
|
17605
17846
|
__proto__: null,
|
17606
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,
|
17607
17863
|
vars: vars$1
|
17608
17864
|
});
|
17609
17865
|
|
@@ -17657,8 +17913,9 @@ const components = {
|
|
17657
17913
|
list: list$2,
|
17658
17914
|
listItem,
|
17659
17915
|
appsList: appsList$1,
|
17660
|
-
scopesList: scopesList$
|
17916
|
+
scopesList: scopesList$2,
|
17661
17917
|
thirdPartyAppLogo: thirdPartyAppLogo$1,
|
17918
|
+
securityQuestionsSetup,
|
17662
17919
|
};
|
17663
17920
|
|
17664
17921
|
const theme = Object.keys(components).reduce(
|
@@ -17671,7 +17928,7 @@ const vars = Object.keys(components).reduce(
|
|
17671
17928
|
);
|
17672
17929
|
|
17673
17930
|
const defaultTheme = { globals, components: theme };
|
17674
|
-
const themeVars = { globals: vars$
|
17931
|
+
const themeVars = { globals: vars$R, components: vars };
|
17675
17932
|
|
17676
17933
|
const colors = {
|
17677
17934
|
surface: {
|
@@ -17720,5 +17977,5 @@ const darkTheme = merge({}, defaultTheme, {
|
|
17720
17977
|
},
|
17721
17978
|
});
|
17722
17979
|
|
17723
|
-
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 };
|
17724
17981
|
//# sourceMappingURL=index.esm.js.map
|