@descope/web-components-ui 1.0.394 → 1.0.395
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 +1407 -1193
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1387 -1172
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/descope-security-questions-setup-index-js.js +1 -1
- package/dist/umd/descope-security-questions-verify-index-js.js +37 -0
- package/dist/umd/descope-security-questions-verify-index-js.js.LICENSE.txt +11 -0
- package/dist/umd/index.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-security-questions-setup/SecurityQuestionsSetupClass.js +1 -9
- package/src/components/descope-security-questions-setup/index.js +0 -1
- package/src/components/descope-security-questions-verify/SecurityQuestionsVerifyClass.js +208 -0
- package/src/components/descope-security-questions-verify/index.js +7 -0
- package/src/index.cjs.js +1 -0
- package/src/index.js +1 -0
- package/src/theme/components/index.js +2 -0
- package/src/theme/components/securityQuestionsSetup.js +2 -2
- package/src/theme/components/securityQuestionsVerify.js +16 -0
package/dist/index.esm.js
CHANGED
@@ -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$14 = getComponentName('icon');
|
1753
1753
|
|
1754
|
-
class RawIcon extends createBaseClass({ componentName: componentName$
|
1754
|
+
class RawIcon extends createBaseClass({ componentName: componentName$14, 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$13 = 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$13,
|
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$13, 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$12 = 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$12, 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$12}
|
2083
2083
|
tabindex="-1"
|
2084
2084
|
slot="input"
|
2085
|
-
></${componentName$
|
2085
|
+
></${componentName$12}>
|
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$12);
|
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$11 = 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$11,
|
2416
2416
|
})
|
2417
2417
|
);
|
2418
2418
|
|
2419
|
-
customElements.define(componentName$
|
2419
|
+
customElements.define(componentName$12, BooleanInputInternal);
|
2420
2420
|
|
2421
|
-
customElements.define(componentName$
|
2421
|
+
customElements.define(componentName$11, CheckboxClass);
|
2422
2422
|
|
2423
|
-
const componentName
|
2423
|
+
const componentName$10 = 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$10,
|
2556
2556
|
})
|
2557
2557
|
);
|
2558
2558
|
|
2559
|
-
customElements.define(componentName
|
2559
|
+
customElements.define(componentName$10, 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$_ = getComponentName('loader-radial');
|
2629
2629
|
|
2630
|
-
class RawLoaderRadial extends createBaseClass({ componentName: componentName$
|
2630
|
+
class RawLoaderRadial extends createBaseClass({ componentName: componentName$_, 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$_, LoaderRadialClass);
|
2675
2675
|
|
2676
|
-
const componentName$
|
2676
|
+
const componentName$Z = getComponentName('container');
|
2677
2677
|
|
2678
|
-
class RawContainer extends createBaseClass({ componentName: componentName$
|
2678
|
+
class RawContainer extends createBaseClass({ componentName: componentName$Z, 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$Z, ContainerClass);
|
2732
2732
|
|
2733
|
-
const componentName$
|
2733
|
+
const componentName$Y = getComponentName('combo-box');
|
2734
2734
|
|
2735
2735
|
const ComboBoxMixin = (superclass) =>
|
2736
2736
|
class ComboBoxMixinClass extends superclass {
|
@@ -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$Y,
|
3179
3179
|
includeForwardProps: ['items', 'renderer', 'selectedItem'],
|
3180
3180
|
})
|
3181
3181
|
);
|
3182
3182
|
|
3183
|
-
customElements.define(componentName$
|
3183
|
+
customElements.define(componentName$Y, ComboBoxClass);
|
3184
3184
|
|
3185
|
-
customElements.define(componentName$
|
3185
|
+
customElements.define(componentName$14, 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$X = 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$X, 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$X, 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$W = 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$W,
|
4403
4403
|
})
|
4404
4404
|
);
|
4405
4405
|
|
4406
|
-
customElements.define(componentName$
|
4406
|
+
customElements.define(componentName$W, 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$V = 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$V, 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$V, DateFieldClass);
|
5216
5216
|
|
5217
|
-
const componentName$
|
5217
|
+
const componentName$U = getComponentName('text');
|
5218
5218
|
|
5219
|
-
class RawText extends createBaseClass({ componentName: componentName$
|
5219
|
+
class RawText extends createBaseClass({ componentName: componentName$U, 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$T = getComponentName('divider');
|
5277
|
+
class RawDivider extends createBaseClass({ componentName: componentName$T, 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$U, TextClass);
|
5377
5377
|
|
5378
|
-
customElements.define(componentName$
|
5378
|
+
customElements.define(componentName$T, DividerClass);
|
5379
5379
|
|
5380
|
-
const componentName$
|
5380
|
+
const componentName$S = 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$S,
|
5449
5449
|
})
|
5450
5450
|
);
|
5451
5451
|
|
5452
|
-
customElements.define(componentName$
|
5452
|
+
customElements.define(componentName$S, EmailFieldClass);
|
5453
5453
|
|
5454
|
-
const componentName$
|
5454
|
+
const componentName$R = getComponentName('link');
|
5455
5455
|
|
5456
|
-
class RawLink extends createBaseClass({ componentName: componentName$
|
5456
|
+
class RawLink extends createBaseClass({ componentName: componentName$R, 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$R, 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$Q = getComponentName('logo');
|
5573
5573
|
|
5574
5574
|
const LogoClass = createCssVarImageClass({
|
5575
|
-
componentName: componentName$
|
5575
|
+
componentName: componentName$Q,
|
5576
5576
|
varName: 'url',
|
5577
5577
|
fallbackVarName: 'fallbackUrl',
|
5578
5578
|
});
|
5579
5579
|
|
5580
|
-
customElements.define(componentName$
|
5580
|
+
customElements.define(componentName$Q, LogoClass);
|
5581
5581
|
|
5582
|
-
const componentName$
|
5582
|
+
const componentName$P = getComponentName('totp-image');
|
5583
5583
|
|
5584
5584
|
const TotpImageClass = createCssVarImageClass({
|
5585
|
-
componentName: componentName$
|
5585
|
+
componentName: componentName$P,
|
5586
5586
|
varName: 'url',
|
5587
5587
|
fallbackVarName: 'fallbackUrl',
|
5588
5588
|
});
|
5589
5589
|
|
5590
|
-
customElements.define(componentName$
|
5590
|
+
customElements.define(componentName$P, TotpImageClass);
|
5591
5591
|
|
5592
|
-
const componentName$
|
5592
|
+
const componentName$O = getComponentName('notp-image');
|
5593
5593
|
|
5594
5594
|
const NotpImageClass = createCssVarImageClass({
|
5595
|
-
componentName: componentName$
|
5595
|
+
componentName: componentName$O,
|
5596
5596
|
varName: 'url',
|
5597
5597
|
fallbackVarName: 'fallbackUrl',
|
5598
5598
|
});
|
5599
5599
|
|
5600
|
-
customElements.define(componentName$
|
5600
|
+
customElements.define(componentName$O, NotpImageClass);
|
5601
5601
|
|
5602
|
-
const componentName$
|
5602
|
+
const componentName$N = 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$N,
|
5637
5637
|
})
|
5638
5638
|
);
|
5639
5639
|
|
5640
|
-
customElements.define(componentName$
|
5640
|
+
customElements.define(componentName$N, 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$M = 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$M, 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$L = 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$M}
|
5930
5930
|
bordered="true"
|
5931
5931
|
name="code"
|
5932
5932
|
tabindex="-1"
|
5933
5933
|
slot="input"
|
5934
|
-
><slot></slot></${componentName$
|
5934
|
+
><slot></slot></${componentName$M}>
|
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$M);
|
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$L,
|
6092
6092
|
})
|
6093
6093
|
);
|
6094
6094
|
|
6095
|
-
customElements.define(componentName$
|
6095
|
+
customElements.define(componentName$M, PasscodeInternal);
|
6096
6096
|
|
6097
|
-
customElements.define(componentName$
|
6097
|
+
customElements.define(componentName$L, 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$K = 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$K,
|
6414
6414
|
})
|
6415
6415
|
);
|
6416
6416
|
|
6417
|
-
customElements.define(componentName$
|
6417
|
+
customElements.define(componentName$K, 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$J = getComponentName('enriched-text');
|
6444
6444
|
|
6445
|
-
class EnrichedText extends createBaseClass({ componentName: componentName$
|
6445
|
+
class EnrichedText extends createBaseClass({ componentName: componentName$J, 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$J, EnrichedTextClass);
|
6642
6642
|
|
6643
|
-
const componentName$
|
6643
|
+
const componentName$I = 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$I,
|
6720
6720
|
})
|
6721
6721
|
);
|
6722
6722
|
|
6723
|
-
customElements.define(componentName$
|
6723
|
+
customElements.define(componentName$I, TextAreaClass);
|
6724
6724
|
|
6725
6725
|
const observedAttributes$3 = ['src', 'alt'];
|
6726
6726
|
|
6727
|
-
const componentName$
|
6727
|
+
const componentName$H = getComponentName('image');
|
6728
6728
|
|
6729
|
-
const BaseClass$1 = createBaseClass({ componentName: componentName$
|
6729
|
+
const BaseClass$1 = createBaseClass({ componentName: componentName$H, 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$H, 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$G = 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$G, 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$G, 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$F = 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$G}
|
8289
8289
|
tabindex="-1"
|
8290
8290
|
slot="input"
|
8291
|
-
></${componentName$
|
8291
|
+
></${componentName$G}>
|
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$G);
|
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$F,
|
8519
8519
|
})
|
8520
8520
|
);
|
8521
8521
|
|
8522
|
-
customElements.define(componentName$
|
8522
|
+
customElements.define(componentName$F, 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$E = 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$E, 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$E, PhoneFieldInternal);
|
8685
8685
|
|
8686
8686
|
const textVars = TextFieldClass.cssVarList;
|
8687
8687
|
|
8688
|
-
const componentName$
|
8688
|
+
const componentName$D = 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$E}
|
8703
8703
|
tabindex="-1"
|
8704
8704
|
slot="input"
|
8705
|
-
></${componentName$
|
8705
|
+
></${componentName$E}>
|
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$E);
|
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$D,
|
8888
8888
|
})
|
8889
8889
|
);
|
8890
8890
|
|
8891
|
-
customElements.define(componentName$
|
8891
|
+
customElements.define(componentName$D, PhoneFieldInputBoxClass);
|
8892
8892
|
|
8893
|
-
const componentName$
|
8893
|
+
const componentName$C = 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$B = 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$B, 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$A = 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$C}
|
9129
9129
|
name="new-password"
|
9130
9130
|
tabindex="-1"
|
9131
9131
|
slot="input"
|
9132
9132
|
external-input="${externalInputAttr}"
|
9133
9133
|
>
|
9134
|
-
</${componentName$
|
9134
|
+
</${componentName$C}>
|
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$C);
|
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$A,
|
9316
9316
|
})
|
9317
9317
|
);
|
9318
9318
|
|
9319
|
-
customElements.define(componentName$
|
9319
|
+
customElements.define(componentName$B, 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$C, 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$C, NewPasswordInternal);
|
9562
9562
|
|
9563
|
-
customElements.define(componentName$
|
9563
|
+
customElements.define(componentName$A, NewPasswordClass);
|
9564
9564
|
|
9565
|
-
const componentName$
|
9565
|
+
const componentName$z = 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$z,
|
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$z, 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$y = 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$y, 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$y, 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$x = getComponentName('button-selection-group-internal');
|
10100
10100
|
|
10101
10101
|
class ButtonSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
10102
|
-
componentName$
|
10102
|
+
componentName$x
|
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$w = 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$x}
|
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$x}>
|
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$x);
|
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$w,
|
10381
10381
|
})
|
10382
10382
|
);
|
10383
10383
|
|
10384
|
-
customElements.define(componentName$
|
10384
|
+
customElements.define(componentName$x, ButtonSelectionGroupInternalClass);
|
10385
10385
|
|
10386
|
-
const componentName$
|
10386
|
+
const componentName$v = getComponentName('button-selection-group-item');
|
10387
10387
|
|
10388
10388
|
class RawSelectItem extends createBaseClass({
|
10389
|
-
componentName: componentName$
|
10389
|
+
componentName: componentName$v,
|
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$v, ButtonSelectionGroupItemClass);
|
10497
10497
|
|
10498
|
-
customElements.define(componentName$
|
10498
|
+
customElements.define(componentName$w, ButtonSelectionGroupClass);
|
10499
10499
|
|
10500
|
-
const componentName$
|
10500
|
+
const componentName$u = getComponentName('button-multi-selection-group-internal');
|
10501
10501
|
|
10502
10502
|
class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
10503
|
-
componentName$
|
10503
|
+
componentName$u
|
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$t = 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$u}
|
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$u}>
|
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$u);
|
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$t,
|
10653
10653
|
})
|
10654
10654
|
);
|
10655
10655
|
|
10656
|
-
customElements.define(componentName$
|
10656
|
+
customElements.define(componentName$u, ButtonMultiSelectionGroupInternalClass);
|
10657
10657
|
|
10658
|
-
customElements.define(componentName$
|
10658
|
+
customElements.define(componentName$t, 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$s = getComponentName('grid-text-column');
|
10687
10687
|
|
10688
|
-
customElements.define(componentName$
|
10688
|
+
customElements.define(componentName$s, 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$r = getComponentName('grid-custom-column');
|
10724
10724
|
|
10725
|
-
customElements.define(componentName$
|
10725
|
+
customElements.define(componentName$r, 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$q = getComponentName('grid-selection-column');
|
10785
10785
|
|
10786
|
-
customElements.define(componentName$
|
10786
|
+
customElements.define(componentName$q, 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$p = getComponentName('grid-item-details-column');
|
10826
10826
|
|
10827
|
-
customElements.define(componentName$
|
10827
|
+
customElements.define(componentName$p, 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$o = 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$o, 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$o, 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$n = 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$n,
|
11501
11501
|
})
|
11502
11502
|
);
|
11503
11503
|
|
11504
|
-
customElements.define(componentName$
|
11504
|
+
customElements.define(componentName$n, GridClass);
|
11505
11505
|
|
11506
|
-
const componentName$
|
11506
|
+
const componentName$m = 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$m,
|
12141
12141
|
includeForwardProps: ['items', 'renderer', 'selectedItems'],
|
12142
12142
|
})
|
12143
12143
|
);
|
12144
12144
|
|
12145
|
-
customElements.define(componentName$
|
12145
|
+
customElements.define(componentName$m, MultiSelectComboBoxClass);
|
12146
12146
|
|
12147
|
-
const componentName$
|
12147
|
+
const componentName$l = getComponentName('badge');
|
12148
12148
|
|
12149
|
-
class RawBadge extends createBaseClass({ componentName: componentName$
|
12149
|
+
class RawBadge extends createBaseClass({ componentName: componentName$l, 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$l, BadgeClass);
|
12201
12201
|
|
12202
|
-
const componentName$
|
12202
|
+
const componentName$k = 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$k,
|
12302
12302
|
})
|
12303
12303
|
);
|
12304
12304
|
|
12305
|
-
customElements.define(componentName$
|
12305
|
+
customElements.define(componentName$k, 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$j = 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$j,
|
12425
12425
|
})
|
12426
12426
|
);
|
12427
12427
|
|
12428
|
-
customElements.define(componentName$
|
12428
|
+
customElements.define(componentName$j, NotificationCardClass);
|
12429
12429
|
|
12430
|
-
const componentName$
|
12430
|
+
const componentName$i = 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$i,
|
12526
12526
|
})
|
12527
12527
|
);
|
12528
12528
|
|
12529
|
-
customElements.define(componentName$
|
12529
|
+
customElements.define(componentName$i, NotificationClass);
|
12530
12530
|
|
12531
|
-
const componentName$
|
12532
|
-
class RawAvatar extends createBaseClass({ componentName: componentName$
|
12531
|
+
const componentName$h = getComponentName('avatar');
|
12532
|
+
class RawAvatar extends createBaseClass({ componentName: componentName$h, 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$h, AvatarClass);
|
12637
12637
|
|
12638
|
-
const componentName$
|
12638
|
+
const componentName$g = getComponentName('mappings-field-internal');
|
12639
12639
|
|
12640
|
-
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$
|
12640
|
+
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$g, 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$f = 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$g}
|
12905
12905
|
tabindex="-1"
|
12906
|
-
></${componentName$
|
12906
|
+
></${componentName$g}>
|
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$g);
|
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$f,
|
13044
13044
|
})
|
13045
13045
|
);
|
13046
13046
|
|
13047
|
-
customElements.define(componentName$
|
13047
|
+
customElements.define(componentName$g, MappingsFieldInternal);
|
13048
13048
|
|
13049
|
-
const componentName$
|
13049
|
+
const componentName$e = 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$e, 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$e, MappingItem);
|
13204
13204
|
|
13205
|
-
customElements.define(componentName$
|
13205
|
+
customElements.define(componentName$f, 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$d = getComponentName('user-attribute');
|
13212
13212
|
class RawUserAttribute extends createBaseClass({
|
13213
|
-
componentName: componentName$
|
13213
|
+
componentName: componentName$d,
|
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$d, UserAttributeClass);
|
13448
13448
|
|
13449
13449
|
var greenVIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhDMCAxMi40IDMuNiAxNiA4IDE2QzEyLjQgMTYgMTYgMTIuNCAxNiA4QzE2IDMuNiAxMi40IDAgOCAwWk03LjEgMTEuN0wyLjkgNy42TDQuMyA2LjJMNyA4LjlMMTIgNEwxMy40IDUuNEw3LjEgMTEuN1oiIGZpbGw9IiM0Q0FGNTAiLz4KPC9zdmc+Cg==";
|
13450
13450
|
|
13451
|
-
const componentName$
|
13451
|
+
const componentName$c = getComponentName('user-auth-method');
|
13452
13452
|
class RawUserAuthMethod extends createBaseClass({
|
13453
|
-
componentName: componentName$
|
13453
|
+
componentName: componentName$c,
|
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$c, UserAuthMethodClass);
|
13646
13646
|
|
13647
|
-
const componentName$
|
13647
|
+
const componentName$b = getComponentName('saml-group-mappings-internal');
|
13648
13648
|
|
13649
|
-
const BaseInputClass = createBaseInputClass({ componentName: componentName$
|
13649
|
+
const BaseInputClass = createBaseInputClass({ componentName: componentName$b, 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$a = 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$b}
|
13786
13786
|
tabindex="-1"
|
13787
|
-
></${componentName$
|
13787
|
+
></${componentName$b}>
|
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$b);
|
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$a,
|
13870
13870
|
})
|
13871
13871
|
);
|
13872
13872
|
|
13873
|
-
customElements.define(componentName$
|
13873
|
+
customElements.define(componentName$b, SamlGroupMappingsInternal);
|
13874
13874
|
|
13875
|
-
customElements.define(componentName$
|
13875
|
+
customElements.define(componentName$a, SamlGroupMappingsClass);
|
13876
13876
|
|
13877
|
-
const componentName$
|
13877
|
+
const componentName$9 = 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$9,
|
13943
13943
|
})
|
13944
13944
|
);
|
13945
13945
|
|
13946
|
-
const componentName$
|
13946
|
+
const componentName$8 = 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$9),
|
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$9);
|
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$8,
|
14117
14117
|
includeForwardProps: ['value'],
|
14118
14118
|
})
|
14119
14119
|
);
|
14120
14120
|
|
14121
|
-
customElements.define(componentName$
|
14122
|
-
customElements.define(componentName$
|
14121
|
+
customElements.define(componentName$8, RadioGroupClass);
|
14122
|
+
customElements.define(componentName$9, 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$7 = 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$7, baseSelector: 'slot' }));
|
14189
14189
|
|
14190
|
-
const componentName$
|
14190
|
+
const componentName$6 = getComponentName('list');
|
14191
14191
|
|
14192
|
-
class RawList extends createBaseClass({ componentName: componentName$
|
14192
|
+
class RawList extends createBaseClass({ componentName: componentName$6, 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$6, ListClass);
|
14340
|
+
customElements.define(componentName$7, 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$5 = 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$5,
|
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$5, AppsListClass);
|
14529
14529
|
|
14530
|
-
const componentName$
|
14530
|
+
const componentName$4 = 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$4, 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$4, ScopesListClass);
|
14655
14655
|
|
14656
14656
|
var arrowsImg = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOSAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMTQ0OTIgMTUuNjQ1TDcuNDk5OTIgMTRMMi44MzMyNSAxOC42NjY3TDcuNDk5OTIgMjMuMzMzM0w5LjE0NDkyIDIxLjY4ODNMNy4zMDE1OSAxOS44MzMzSDI0Ljk5OTlWMTcuNUg3LjMwMTU5TDkuMTQ0OTIgMTUuNjQ1WiIgZmlsbD0iIzYzNkM3NCIvPgo8cGF0aCBkPSJNMTkuODU1IDEyLjM1NTNMMjEuNSAxNC4wMDAzTDI2LjE2NjcgOS4zMzM2NkwyMS41IDQuNjY2OTlMMTkuODU1IDYuMzExOTlMMjEuNjk4MyA4LjE2Njk5SDRWMTAuNTAwM0gyMS42OTgzTDE5Ljg1NSAxMi4zNTUzWiIgZmlsbD0iIzYzNkM3NCIvPgo8L3N2Zz4K";
|
14657
14657
|
|
14658
|
-
const componentName$
|
14658
|
+
const componentName$3 = getComponentName('third-party-app-logo');
|
14659
14659
|
class RawThirdPartyAppLogoClass extends createBaseClass({
|
14660
|
-
componentName: componentName$
|
14660
|
+
componentName: componentName$3,
|
14661
14661
|
baseSelector: '.wrapper',
|
14662
14662
|
}) {
|
14663
14663
|
constructor() {
|
@@ -14751,11 +14751,11 @@ const ThirdPartyAppLogoClass = compose(
|
|
14751
14751
|
componentNameValidationMixin
|
14752
14752
|
)(RawThirdPartyAppLogoClass);
|
14753
14753
|
|
14754
|
-
customElements.define(componentName$
|
14754
|
+
customElements.define(componentName$3, ThirdPartyAppLogoClass);
|
14755
14755
|
|
14756
|
-
const componentName$
|
14756
|
+
const componentName$2 = getComponentName('security-questions-setup');
|
14757
14757
|
|
14758
|
-
const attrsToSync = [
|
14758
|
+
const attrsToSync$1 = [
|
14759
14759
|
'full-width',
|
14760
14760
|
'readonly',
|
14761
14761
|
'size',
|
@@ -14768,8 +14768,8 @@ const attrsToSync = [
|
|
14768
14768
|
'answer-data-errormessage-value-missing',
|
14769
14769
|
];
|
14770
14770
|
|
14771
|
-
const attrsToReRender = ['count', 'questions'];
|
14772
|
-
class RawSecurityQuestionsSetup extends createBaseClass({ componentName: componentName$
|
14771
|
+
const attrsToReRender$1 = ['count', 'questions'];
|
14772
|
+
class RawSecurityQuestionsSetup extends createBaseClass({ componentName: componentName$2, baseSelector: 'div' }) {
|
14773
14773
|
constructor() {
|
14774
14774
|
super();
|
14775
14775
|
|
@@ -14789,14 +14789,6 @@ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: compone
|
|
14789
14789
|
`;
|
14790
14790
|
}
|
14791
14791
|
|
14792
|
-
get isReadOnly() {
|
14793
|
-
return this.getAttribute('readonly') === 'true';
|
14794
|
-
}
|
14795
|
-
|
14796
|
-
get size() {
|
14797
|
-
return this.getAttribute('size') || 'sm';
|
14798
|
-
}
|
14799
|
-
|
14800
14792
|
get count() {
|
14801
14793
|
return Number(this.getAttribute('count')) || 0;
|
14802
14794
|
}
|
@@ -14843,7 +14835,7 @@ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: compone
|
|
14843
14835
|
el.data = this.data;
|
14844
14836
|
});
|
14845
14837
|
|
14846
|
-
this.#syncAttrs(attrsToSync);
|
14838
|
+
this.#syncAttrs(attrsToSync$1);
|
14847
14839
|
}
|
14848
14840
|
|
14849
14841
|
getAttachedTextField(combo) {
|
@@ -14884,7 +14876,7 @@ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: compone
|
|
14884
14876
|
return JSON.parse(this.getAttribute('questions')) || [];
|
14885
14877
|
} catch (e) {
|
14886
14878
|
// eslint-disable-next-line no-console
|
14887
|
-
console.error(componentName$
|
14879
|
+
console.error(componentName$2, 'Error parsing questions attribute', e);
|
14888
14880
|
return [];
|
14889
14881
|
}
|
14890
14882
|
}
|
@@ -14960,12 +14952,12 @@ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: compone
|
|
14960
14952
|
() => {
|
14961
14953
|
this.#renderQuestions();
|
14962
14954
|
},
|
14963
|
-
{ includeAttrs: attrsToReRender }
|
14955
|
+
{ includeAttrs: attrsToReRender$1 }
|
14964
14956
|
);
|
14965
14957
|
|
14966
14958
|
// update existing components
|
14967
14959
|
observeAttributes(this, this.#syncAttrs.bind(this), {
|
14968
|
-
includeAttrs: attrsToSync,
|
14960
|
+
includeAttrs: attrsToSync$1,
|
14969
14961
|
});
|
14970
14962
|
}
|
14971
14963
|
}
|
@@ -14992,7 +14984,211 @@ const SecurityQuestionsSetupClass = compose(
|
|
14992
14984
|
componentNameValidationMixin
|
14993
14985
|
)(RawSecurityQuestionsSetup);
|
14994
14986
|
|
14995
|
-
customElements.define(componentName$
|
14987
|
+
customElements.define(componentName$2, SecurityQuestionsSetupClass);
|
14988
|
+
|
14989
|
+
const componentName$1 = getComponentName('security-questions-verify');
|
14990
|
+
|
14991
|
+
const textFieldsAttrs = [
|
14992
|
+
'full-width',
|
14993
|
+
'readonly',
|
14994
|
+
'size',
|
14995
|
+
'answer-placeholder',
|
14996
|
+
'answer-data-errormessage-value-missing',
|
14997
|
+
];
|
14998
|
+
|
14999
|
+
const textsAttrs = ['question-mode'];
|
15000
|
+
|
15001
|
+
const attrMappings = {
|
15002
|
+
'answer-placeholder': 'placeholder',
|
15003
|
+
'answer-data-errormessage-value-missing': 'data-errormessage-value-missing',
|
15004
|
+
'question-mode': 'mode',
|
15005
|
+
};
|
15006
|
+
|
15007
|
+
const attrsToSync = [...textFieldsAttrs, ...textsAttrs];
|
15008
|
+
|
15009
|
+
const attrsToReRender = ['questions'];
|
15010
|
+
class RawSecurityQuestionsVerify extends createBaseClass({ componentName: componentName$1, baseSelector: 'div' }) {
|
15011
|
+
constructor() {
|
15012
|
+
super();
|
15013
|
+
|
15014
|
+
this.attachShadow({ mode: 'open' }).innerHTML = `
|
15015
|
+
<style>
|
15016
|
+
:host {
|
15017
|
+
display: inline-flex;
|
15018
|
+
}
|
15019
|
+
|
15020
|
+
div {
|
15021
|
+
display: flex;
|
15022
|
+
flex-direction: column;
|
15023
|
+
}
|
15024
|
+
|
15025
|
+
</style>
|
15026
|
+
<div></div>
|
15027
|
+
`;
|
15028
|
+
}
|
15029
|
+
|
15030
|
+
#renderQuestions() {
|
15031
|
+
const res = this.questions.map(
|
15032
|
+
({ id, text }) =>
|
15033
|
+
// <!--html-->
|
15034
|
+
`
|
15035
|
+
<div class="question-wrapper">
|
15036
|
+
<descope-text
|
15037
|
+
data-id="${id}"
|
15038
|
+
>${text}</descope-text>
|
15039
|
+
|
15040
|
+
<descope-text-field
|
15041
|
+
data-id="${id}"
|
15042
|
+
required="true"
|
15043
|
+
bordered="true"
|
15044
|
+
></descope-text-field>
|
15045
|
+
</div>
|
15046
|
+
`
|
15047
|
+
// <!--!html-->
|
15048
|
+
);
|
15049
|
+
|
15050
|
+
this.baseElement.innerHTML = res.join(
|
15051
|
+
'<spacer></spacer><descope-divider></descope-divider><spacer></spacer>'
|
15052
|
+
);
|
15053
|
+
|
15054
|
+
this.#syncAttrs(attrsToSync);
|
15055
|
+
|
15056
|
+
// focus input when text is clicked
|
15057
|
+
this.texts.forEach((el) => {
|
15058
|
+
const input = this.textFields.find(
|
15059
|
+
(field) => field.getAttribute('data-id') === el.getAttribute('data-id')
|
15060
|
+
);
|
15061
|
+
// eslint-disable-next-line no-param-reassign
|
15062
|
+
if (input) el.onclick = input.focus.bind(input);
|
15063
|
+
});
|
15064
|
+
}
|
15065
|
+
|
15066
|
+
reportValidity() {
|
15067
|
+
this.textFields.reverse().forEach((el) => el.reportValidity());
|
15068
|
+
|
15069
|
+
return this.checkValidity();
|
15070
|
+
}
|
15071
|
+
|
15072
|
+
checkValidity() {
|
15073
|
+
return this.textFields.every((el) => el.checkValidity());
|
15074
|
+
}
|
15075
|
+
|
15076
|
+
get questions() {
|
15077
|
+
try {
|
15078
|
+
return JSON.parse(this.getAttribute('questions')) || [];
|
15079
|
+
} catch (e) {
|
15080
|
+
// eslint-disable-next-line no-console
|
15081
|
+
console.error(componentName$1, 'Error parsing questions attribute', e);
|
15082
|
+
return [];
|
15083
|
+
}
|
15084
|
+
}
|
15085
|
+
|
15086
|
+
get texts() {
|
15087
|
+
return Array.from(this.baseElement.querySelectorAll('descope-text'));
|
15088
|
+
}
|
15089
|
+
|
15090
|
+
get textFields() {
|
15091
|
+
return Array.from(this.baseElement.querySelectorAll('descope-text-field'));
|
15092
|
+
}
|
15093
|
+
|
15094
|
+
get elements() {
|
15095
|
+
return Array.from(this.baseElement.querySelectorAll('descope-text, descope-text-field'));
|
15096
|
+
}
|
15097
|
+
|
15098
|
+
get value() {
|
15099
|
+
return this.textFields.map((el) => ({ id: el.getAttribute('data-id'), answer: el.value }));
|
15100
|
+
}
|
15101
|
+
|
15102
|
+
set value(val = []) {
|
15103
|
+
val.forEach(({ id, answer }) => {
|
15104
|
+
const textField = this.textFields.find((el) => el.getAttribute('data-id') === id);
|
15105
|
+
if (textField) textField.value = answer;
|
15106
|
+
});
|
15107
|
+
}
|
15108
|
+
|
15109
|
+
// eslint-disable-next-line class-methods-use-this
|
15110
|
+
#updateAttribute(ele, attrName, value) {
|
15111
|
+
if (value === null) ele.removeAttribute(attrName);
|
15112
|
+
else ele.setAttribute(attrName, value);
|
15113
|
+
}
|
15114
|
+
|
15115
|
+
#getElementsToUpdate(attr) {
|
15116
|
+
switch (true) {
|
15117
|
+
case textFieldsAttrs.includes(attr):
|
15118
|
+
return this.textFields;
|
15119
|
+
case textsAttrs.includes(attr):
|
15120
|
+
return this.texts;
|
15121
|
+
default:
|
15122
|
+
return [];
|
15123
|
+
}
|
15124
|
+
}
|
15125
|
+
|
15126
|
+
#syncAttrs(attrs) {
|
15127
|
+
attrs.forEach((attr) => {
|
15128
|
+
this.#getElementsToUpdate(attr).forEach((el) => {
|
15129
|
+
this.#updateAttribute(el, attrMappings[attr] || attr, this.getAttribute(attr));
|
15130
|
+
});
|
15131
|
+
});
|
15132
|
+
}
|
15133
|
+
|
15134
|
+
init() {
|
15135
|
+
super.init?.();
|
15136
|
+
// render new components
|
15137
|
+
observeAttributes(
|
15138
|
+
this,
|
15139
|
+
() => {
|
15140
|
+
this.#renderQuestions();
|
15141
|
+
},
|
15142
|
+
{ includeAttrs: attrsToReRender }
|
15143
|
+
);
|
15144
|
+
|
15145
|
+
// update existing components
|
15146
|
+
observeAttributes(this, this.#syncAttrs.bind(this), {
|
15147
|
+
includeAttrs: attrsToSync,
|
15148
|
+
});
|
15149
|
+
}
|
15150
|
+
}
|
15151
|
+
|
15152
|
+
const SecurityQuestionsVerifyClass = compose(
|
15153
|
+
createStyleMixin({ componentNameOverride: getComponentName('input-wrapper') }),
|
15154
|
+
createStyleMixin({
|
15155
|
+
mappings: {
|
15156
|
+
hostWidth: [{ selector: () => ':host', property: 'width' }, { property: 'width' }],
|
15157
|
+
hostDirection: [
|
15158
|
+
{ selector: () => ':host', property: 'direction' },
|
15159
|
+
{
|
15160
|
+
selector: () => TextClass.componentName,
|
15161
|
+
property: TextClass.cssVarList.hostDirection,
|
15162
|
+
},
|
15163
|
+
{
|
15164
|
+
selector: () => TextFieldClass.componentName,
|
15165
|
+
property: TextFieldClass.cssVarList.hostDirection,
|
15166
|
+
},
|
15167
|
+
],
|
15168
|
+
gap: { selector: () => 'div', property: 'gap' },
|
15169
|
+
questionTextAlign: {
|
15170
|
+
selector: () => TextClass.componentName,
|
15171
|
+
property: TextClass.cssVarList.textAlign,
|
15172
|
+
},
|
15173
|
+
questionFontSize: {
|
15174
|
+
selector: () => TextClass.componentName,
|
15175
|
+
property: TextClass.cssVarList.fontSize,
|
15176
|
+
},
|
15177
|
+
questionFontFamily: {
|
15178
|
+
selector: () => TextClass.componentName,
|
15179
|
+
property: TextClass.cssVarList.fontFamily,
|
15180
|
+
},
|
15181
|
+
questionCursor: {
|
15182
|
+
selector: () => TextClass.componentName,
|
15183
|
+
property: 'cursor',
|
15184
|
+
},
|
15185
|
+
},
|
15186
|
+
}),
|
15187
|
+
draggableMixin,
|
15188
|
+
componentNameValidationMixin
|
15189
|
+
)(RawSecurityQuestionsVerify);
|
15190
|
+
|
15191
|
+
customElements.define(componentName$1, SecurityQuestionsVerifyClass);
|
14996
15192
|
|
14997
15193
|
const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
|
14998
15194
|
|
@@ -15424,7 +15620,7 @@ const globals = {
|
|
15424
15620
|
fonts,
|
15425
15621
|
direction,
|
15426
15622
|
};
|
15427
|
-
const vars$
|
15623
|
+
const vars$S = getThemeVars(globals);
|
15428
15624
|
|
15429
15625
|
const globalRefs$y = getThemeRefs(globals);
|
15430
15626
|
const compVars$6 = ButtonClass.cssVarList;
|
@@ -15437,7 +15633,7 @@ const mode = {
|
|
15437
15633
|
surface: globalRefs$y.colors.surface,
|
15438
15634
|
};
|
15439
15635
|
|
15440
|
-
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$
|
15636
|
+
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$13);
|
15441
15637
|
|
15442
15638
|
const button = {
|
15443
15639
|
...helperTheme$4,
|
@@ -15549,7 +15745,7 @@ const button = {
|
|
15549
15745
|
},
|
15550
15746
|
};
|
15551
15747
|
|
15552
|
-
const vars$
|
15748
|
+
const vars$R = {
|
15553
15749
|
...compVars$6,
|
15554
15750
|
...helperVars$4,
|
15555
15751
|
};
|
@@ -15557,13 +15753,13 @@ const vars$Q = {
|
|
15557
15753
|
var button$1 = /*#__PURE__*/Object.freeze({
|
15558
15754
|
__proto__: null,
|
15559
15755
|
default: button,
|
15560
|
-
vars: vars$
|
15756
|
+
vars: vars$R
|
15561
15757
|
});
|
15562
15758
|
|
15563
15759
|
const componentName = getComponentName('input-wrapper');
|
15564
15760
|
const globalRefs$x = getThemeRefs(globals);
|
15565
15761
|
|
15566
|
-
const [theme$1, refs, vars$
|
15762
|
+
const [theme$1, refs, vars$Q] = createHelperVars(
|
15567
15763
|
{
|
15568
15764
|
labelTextColor: globalRefs$x.colors.surface.dark,
|
15569
15765
|
labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
|
@@ -15682,13 +15878,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
|
|
15682
15878
|
__proto__: null,
|
15683
15879
|
default: theme$1,
|
15684
15880
|
refs: refs,
|
15685
|
-
vars: vars$
|
15881
|
+
vars: vars$Q
|
15686
15882
|
});
|
15687
15883
|
|
15688
15884
|
const globalRefs$w = getThemeRefs(globals);
|
15689
|
-
const vars$
|
15885
|
+
const vars$P = TextFieldClass.cssVarList;
|
15690
15886
|
|
15691
15887
|
const textField = {
|
15888
|
+
[vars$P.hostWidth]: refs.width,
|
15889
|
+
[vars$P.hostMinWidth]: refs.minWidth,
|
15890
|
+
[vars$P.hostDirection]: refs.direction,
|
15891
|
+
[vars$P.fontSize]: refs.fontSize,
|
15892
|
+
[vars$P.fontFamily]: refs.fontFamily,
|
15893
|
+
[vars$P.labelFontSize]: refs.labelFontSize,
|
15894
|
+
[vars$P.labelFontWeight]: refs.labelFontWeight,
|
15895
|
+
[vars$P.labelTextColor]: refs.labelTextColor,
|
15896
|
+
[vars$P.labelRequiredIndicator]: refs.requiredIndicator,
|
15897
|
+
[vars$P.errorMessageTextColor]: refs.errorMessageTextColor,
|
15898
|
+
[vars$P.inputValueTextColor]: refs.valueTextColor,
|
15899
|
+
[vars$P.inputPlaceholderColor]: refs.placeholderTextColor,
|
15900
|
+
[vars$P.inputBorderWidth]: refs.borderWidth,
|
15901
|
+
[vars$P.inputBorderStyle]: refs.borderStyle,
|
15902
|
+
[vars$P.inputBorderColor]: refs.borderColor,
|
15903
|
+
[vars$P.inputBorderRadius]: refs.borderRadius,
|
15904
|
+
[vars$P.inputOutlineWidth]: refs.outlineWidth,
|
15905
|
+
[vars$P.inputOutlineStyle]: refs.outlineStyle,
|
15906
|
+
[vars$P.inputOutlineColor]: refs.outlineColor,
|
15907
|
+
[vars$P.inputOutlineOffset]: refs.outlineOffset,
|
15908
|
+
[vars$P.inputBackgroundColor]: refs.backgroundColor,
|
15909
|
+
[vars$P.inputHeight]: refs.inputHeight,
|
15910
|
+
[vars$P.inputHorizontalPadding]: refs.horizontalPadding,
|
15911
|
+
[vars$P.helperTextColor]: refs.helperTextColor,
|
15912
|
+
[vars$P.textAlign]: refs.textAlign,
|
15913
|
+
textAlign: {
|
15914
|
+
right: { [vars$P.inputTextAlign]: 'right' },
|
15915
|
+
left: { [vars$P.inputTextAlign]: 'left' },
|
15916
|
+
center: { [vars$P.inputTextAlign]: 'center' },
|
15917
|
+
},
|
15918
|
+
[vars$P.labelPosition]: refs.labelPosition,
|
15919
|
+
[vars$P.labelTopPosition]: refs.labelTopPosition,
|
15920
|
+
[vars$P.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
15921
|
+
[vars$P.inputTransformY]: refs.inputTransformY,
|
15922
|
+
[vars$P.inputTransition]: refs.inputTransition,
|
15923
|
+
[vars$P.marginInlineStart]: refs.marginInlineStart,
|
15924
|
+
[vars$P.placeholderOpacity]: refs.placeholderOpacity,
|
15925
|
+
[vars$P.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15926
|
+
[vars$P.valueInputHeight]: refs.valueInputHeight,
|
15927
|
+
[vars$P.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15928
|
+
[vars$P.inputIconOffset]: globalRefs$w.spacing.md,
|
15929
|
+
[vars$P.inputIconSize]: refs.inputIconSize,
|
15930
|
+
[vars$P.inputIconColor]: refs.placeholderTextColor,
|
15931
|
+
};
|
15932
|
+
|
15933
|
+
var textField$1 = /*#__PURE__*/Object.freeze({
|
15934
|
+
__proto__: null,
|
15935
|
+
default: textField,
|
15936
|
+
textField: textField,
|
15937
|
+
vars: vars$P
|
15938
|
+
});
|
15939
|
+
|
15940
|
+
const globalRefs$v = getThemeRefs(globals);
|
15941
|
+
const vars$O = PasswordClass.cssVarList;
|
15942
|
+
|
15943
|
+
const password = {
|
15692
15944
|
[vars$O.hostWidth]: refs.width,
|
15693
15945
|
[vars$O.hostMinWidth]: refs.minWidth,
|
15694
15946
|
[vars$O.hostDirection]: refs.direction,
|
@@ -15697,10 +15949,13 @@ const textField = {
|
|
15697
15949
|
[vars$O.labelFontSize]: refs.labelFontSize,
|
15698
15950
|
[vars$O.labelFontWeight]: refs.labelFontWeight,
|
15699
15951
|
[vars$O.labelTextColor]: refs.labelTextColor,
|
15700
|
-
[vars$O.labelRequiredIndicator]: refs.requiredIndicator,
|
15701
15952
|
[vars$O.errorMessageTextColor]: refs.errorMessageTextColor,
|
15953
|
+
[vars$O.inputHorizontalPadding]: refs.horizontalPadding,
|
15954
|
+
[vars$O.inputHeight]: refs.inputHeight,
|
15955
|
+
[vars$O.inputBackgroundColor]: refs.backgroundColor,
|
15956
|
+
[vars$O.labelRequiredIndicator]: refs.requiredIndicator,
|
15702
15957
|
[vars$O.inputValueTextColor]: refs.valueTextColor,
|
15703
|
-
[vars$O.
|
15958
|
+
[vars$O.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
15704
15959
|
[vars$O.inputBorderWidth]: refs.borderWidth,
|
15705
15960
|
[vars$O.inputBorderStyle]: refs.borderStyle,
|
15706
15961
|
[vars$O.inputBorderColor]: refs.borderColor,
|
@@ -15709,16 +15964,9 @@ const textField = {
|
|
15709
15964
|
[vars$O.inputOutlineStyle]: refs.outlineStyle,
|
15710
15965
|
[vars$O.inputOutlineColor]: refs.outlineColor,
|
15711
15966
|
[vars$O.inputOutlineOffset]: refs.outlineOffset,
|
15712
|
-
[vars$O.
|
15713
|
-
[vars$O.
|
15714
|
-
[vars$O.
|
15715
|
-
[vars$O.helperTextColor]: refs.helperTextColor,
|
15716
|
-
[vars$O.textAlign]: refs.textAlign,
|
15717
|
-
textAlign: {
|
15718
|
-
right: { [vars$O.inputTextAlign]: 'right' },
|
15719
|
-
left: { [vars$O.inputTextAlign]: 'left' },
|
15720
|
-
center: { [vars$O.inputTextAlign]: 'center' },
|
15721
|
-
},
|
15967
|
+
[vars$O.revealButtonOffset]: globalRefs$v.spacing.md,
|
15968
|
+
[vars$O.revealButtonSize]: refs.toggleButtonSize,
|
15969
|
+
[vars$O.revealButtonColor]: refs.placeholderTextColor,
|
15722
15970
|
[vars$O.labelPosition]: refs.labelPosition,
|
15723
15971
|
[vars$O.labelTopPosition]: refs.labelTopPosition,
|
15724
15972
|
[vars$O.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -15728,23 +15976,17 @@ const textField = {
|
|
15728
15976
|
[vars$O.placeholderOpacity]: refs.placeholderOpacity,
|
15729
15977
|
[vars$O.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15730
15978
|
[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
15979
|
};
|
15736
15980
|
|
15737
|
-
var
|
15981
|
+
var password$1 = /*#__PURE__*/Object.freeze({
|
15738
15982
|
__proto__: null,
|
15739
|
-
default:
|
15740
|
-
textField: textField,
|
15983
|
+
default: password,
|
15741
15984
|
vars: vars$O
|
15742
15985
|
});
|
15743
15986
|
|
15744
|
-
const
|
15745
|
-
const vars$N = PasswordClass.cssVarList;
|
15987
|
+
const vars$N = NumberFieldClass.cssVarList;
|
15746
15988
|
|
15747
|
-
const
|
15989
|
+
const numberField = {
|
15748
15990
|
[vars$N.hostWidth]: refs.width,
|
15749
15991
|
[vars$N.hostMinWidth]: refs.minWidth,
|
15750
15992
|
[vars$N.hostDirection]: refs.direction,
|
@@ -15754,12 +15996,8 @@ const password = {
|
|
15754
15996
|
[vars$N.labelFontWeight]: refs.labelFontWeight,
|
15755
15997
|
[vars$N.labelTextColor]: refs.labelTextColor,
|
15756
15998
|
[vars$N.errorMessageTextColor]: refs.errorMessageTextColor,
|
15757
|
-
[vars$N.inputHorizontalPadding]: refs.horizontalPadding,
|
15758
|
-
[vars$N.inputHeight]: refs.inputHeight,
|
15759
|
-
[vars$N.inputBackgroundColor]: refs.backgroundColor,
|
15760
|
-
[vars$N.labelRequiredIndicator]: refs.requiredIndicator,
|
15761
15999
|
[vars$N.inputValueTextColor]: refs.valueTextColor,
|
15762
|
-
[vars$N.
|
16000
|
+
[vars$N.inputPlaceholderColor]: refs.placeholderTextColor,
|
15763
16001
|
[vars$N.inputBorderWidth]: refs.borderWidth,
|
15764
16002
|
[vars$N.inputBorderStyle]: refs.borderStyle,
|
15765
16003
|
[vars$N.inputBorderColor]: refs.borderColor,
|
@@ -15768,9 +16006,10 @@ const password = {
|
|
15768
16006
|
[vars$N.inputOutlineStyle]: refs.outlineStyle,
|
15769
16007
|
[vars$N.inputOutlineColor]: refs.outlineColor,
|
15770
16008
|
[vars$N.inputOutlineOffset]: refs.outlineOffset,
|
15771
|
-
[vars$N.
|
15772
|
-
[vars$N.
|
15773
|
-
[vars$N.
|
16009
|
+
[vars$N.inputBackgroundColor]: refs.backgroundColor,
|
16010
|
+
[vars$N.labelRequiredIndicator]: refs.requiredIndicator,
|
16011
|
+
[vars$N.inputHorizontalPadding]: refs.horizontalPadding,
|
16012
|
+
[vars$N.inputHeight]: refs.inputHeight,
|
15774
16013
|
[vars$N.labelPosition]: refs.labelPosition,
|
15775
16014
|
[vars$N.labelTopPosition]: refs.labelTopPosition,
|
15776
16015
|
[vars$N.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -15780,17 +16019,18 @@ const password = {
|
|
15780
16019
|
[vars$N.placeholderOpacity]: refs.placeholderOpacity,
|
15781
16020
|
[vars$N.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15782
16021
|
[vars$N.valueInputHeight]: refs.valueInputHeight,
|
16022
|
+
[vars$N.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15783
16023
|
};
|
15784
16024
|
|
15785
|
-
var
|
16025
|
+
var numberField$1 = /*#__PURE__*/Object.freeze({
|
15786
16026
|
__proto__: null,
|
15787
|
-
default:
|
16027
|
+
default: numberField,
|
15788
16028
|
vars: vars$N
|
15789
16029
|
});
|
15790
16030
|
|
15791
|
-
const vars$M =
|
16031
|
+
const vars$M = EmailFieldClass.cssVarList;
|
15792
16032
|
|
15793
|
-
const
|
16033
|
+
const emailField = {
|
15794
16034
|
[vars$M.hostWidth]: refs.width,
|
15795
16035
|
[vars$M.hostMinWidth]: refs.minWidth,
|
15796
16036
|
[vars$M.hostDirection]: refs.direction,
|
@@ -15801,6 +16041,7 @@ const numberField = {
|
|
15801
16041
|
[vars$M.labelTextColor]: refs.labelTextColor,
|
15802
16042
|
[vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
|
15803
16043
|
[vars$M.inputValueTextColor]: refs.valueTextColor,
|
16044
|
+
[vars$M.labelRequiredIndicator]: refs.requiredIndicator,
|
15804
16045
|
[vars$M.inputPlaceholderColor]: refs.placeholderTextColor,
|
15805
16046
|
[vars$M.inputBorderWidth]: refs.borderWidth,
|
15806
16047
|
[vars$M.inputBorderStyle]: refs.borderStyle,
|
@@ -15811,7 +16052,6 @@ const numberField = {
|
|
15811
16052
|
[vars$M.inputOutlineColor]: refs.outlineColor,
|
15812
16053
|
[vars$M.inputOutlineOffset]: refs.outlineOffset,
|
15813
16054
|
[vars$M.inputBackgroundColor]: refs.backgroundColor,
|
15814
|
-
[vars$M.labelRequiredIndicator]: refs.requiredIndicator,
|
15815
16055
|
[vars$M.inputHorizontalPadding]: refs.horizontalPadding,
|
15816
16056
|
[vars$M.inputHeight]: refs.inputHeight,
|
15817
16057
|
[vars$M.labelPosition]: refs.labelPosition,
|
@@ -15826,197 +16066,153 @@ const numberField = {
|
|
15826
16066
|
[vars$M.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15827
16067
|
};
|
15828
16068
|
|
15829
|
-
var
|
16069
|
+
var emailField$1 = /*#__PURE__*/Object.freeze({
|
15830
16070
|
__proto__: null,
|
15831
|
-
default:
|
16071
|
+
default: emailField,
|
15832
16072
|
vars: vars$M
|
15833
16073
|
});
|
15834
16074
|
|
15835
|
-
const vars$L =
|
16075
|
+
const vars$L = TextAreaClass.cssVarList;
|
15836
16076
|
|
15837
|
-
const
|
16077
|
+
const textArea = {
|
15838
16078
|
[vars$L.hostWidth]: refs.width,
|
15839
16079
|
[vars$L.hostMinWidth]: refs.minWidth,
|
15840
16080
|
[vars$L.hostDirection]: refs.direction,
|
15841
16081
|
[vars$L.fontSize]: refs.fontSize,
|
15842
16082
|
[vars$L.fontFamily]: refs.fontFamily,
|
15843
|
-
[vars$L.labelFontSize]: refs.labelFontSize,
|
15844
|
-
[vars$L.labelFontWeight]: refs.labelFontWeight,
|
15845
16083
|
[vars$L.labelTextColor]: refs.labelTextColor,
|
16084
|
+
[vars$L.labelRequiredIndicator]: refs.requiredIndicator,
|
15846
16085
|
[vars$L.errorMessageTextColor]: refs.errorMessageTextColor,
|
16086
|
+
[vars$L.inputBackgroundColor]: refs.backgroundColor,
|
15847
16087
|
[vars$L.inputValueTextColor]: refs.valueTextColor,
|
15848
|
-
[vars$L.
|
15849
|
-
[vars$L.
|
16088
|
+
[vars$L.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16089
|
+
[vars$L.inputBorderRadius]: refs.borderRadius,
|
15850
16090
|
[vars$L.inputBorderWidth]: refs.borderWidth,
|
15851
16091
|
[vars$L.inputBorderStyle]: refs.borderStyle,
|
15852
16092
|
[vars$L.inputBorderColor]: refs.borderColor,
|
15853
|
-
[vars$L.inputBorderRadius]: refs.borderRadius,
|
15854
16093
|
[vars$L.inputOutlineWidth]: refs.outlineWidth,
|
15855
16094
|
[vars$L.inputOutlineStyle]: refs.outlineStyle,
|
15856
16095
|
[vars$L.inputOutlineColor]: refs.outlineColor,
|
15857
16096
|
[vars$L.inputOutlineOffset]: refs.outlineOffset,
|
15858
|
-
[vars$L.
|
15859
|
-
[vars$L.
|
15860
|
-
|
15861
|
-
|
15862
|
-
|
15863
|
-
|
15864
|
-
|
15865
|
-
|
15866
|
-
|
15867
|
-
|
15868
|
-
|
15869
|
-
[vars$L.valueInputHeight]: refs.valueInputHeight,
|
15870
|
-
[vars$L.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16097
|
+
[vars$L.inputResizeType]: 'vertical',
|
16098
|
+
[vars$L.inputMinHeight]: '5em',
|
16099
|
+
textAlign: {
|
16100
|
+
right: { [vars$L.inputTextAlign]: 'right' },
|
16101
|
+
left: { [vars$L.inputTextAlign]: 'left' },
|
16102
|
+
center: { [vars$L.inputTextAlign]: 'center' },
|
16103
|
+
},
|
16104
|
+
|
16105
|
+
_readonly: {
|
16106
|
+
[vars$L.inputResizeType]: 'none',
|
16107
|
+
},
|
15871
16108
|
};
|
15872
16109
|
|
15873
|
-
var
|
16110
|
+
var textArea$1 = /*#__PURE__*/Object.freeze({
|
15874
16111
|
__proto__: null,
|
15875
|
-
default:
|
16112
|
+
default: textArea,
|
15876
16113
|
vars: vars$L
|
15877
16114
|
});
|
15878
16115
|
|
15879
|
-
const vars$K =
|
16116
|
+
const vars$K = CheckboxClass.cssVarList;
|
16117
|
+
const checkboxSize = '1.35em';
|
15880
16118
|
|
15881
|
-
const
|
16119
|
+
const checkbox = {
|
15882
16120
|
[vars$K.hostWidth]: refs.width,
|
15883
|
-
[vars$K.hostMinWidth]: refs.minWidth,
|
15884
16121
|
[vars$K.hostDirection]: refs.direction,
|
15885
16122
|
[vars$K.fontSize]: refs.fontSize,
|
15886
16123
|
[vars$K.fontFamily]: refs.fontFamily,
|
15887
16124
|
[vars$K.labelTextColor]: refs.labelTextColor,
|
15888
16125
|
[vars$K.labelRequiredIndicator]: refs.requiredIndicator,
|
16126
|
+
[vars$K.labelFontWeight]: '400',
|
16127
|
+
[vars$K.labelLineHeight]: checkboxSize,
|
16128
|
+
[vars$K.labelSpacing]: '1em',
|
15889
16129
|
[vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
|
15890
|
-
[vars$K.
|
15891
|
-
[vars$K.
|
15892
|
-
[vars$K.
|
16130
|
+
[vars$K.inputOutlineWidth]: refs.outlineWidth,
|
16131
|
+
[vars$K.inputOutlineOffset]: refs.outlineOffset,
|
16132
|
+
[vars$K.inputOutlineColor]: refs.outlineColor,
|
16133
|
+
[vars$K.inputOutlineStyle]: refs.outlineStyle,
|
15893
16134
|
[vars$K.inputBorderRadius]: refs.borderRadius,
|
16135
|
+
[vars$K.inputBorderColor]: refs.borderColor,
|
15894
16136
|
[vars$K.inputBorderWidth]: refs.borderWidth,
|
15895
16137
|
[vars$K.inputBorderStyle]: refs.borderStyle,
|
15896
|
-
[vars$K.
|
15897
|
-
[vars$K.
|
15898
|
-
[vars$K.
|
15899
|
-
[vars$K.inputOutlineColor]: refs.outlineColor,
|
15900
|
-
[vars$K.inputOutlineOffset]: refs.outlineOffset,
|
15901
|
-
[vars$K.inputResizeType]: 'vertical',
|
15902
|
-
[vars$K.inputMinHeight]: '5em',
|
15903
|
-
textAlign: {
|
15904
|
-
right: { [vars$K.inputTextAlign]: 'right' },
|
15905
|
-
left: { [vars$K.inputTextAlign]: 'left' },
|
15906
|
-
center: { [vars$K.inputTextAlign]: 'center' },
|
15907
|
-
},
|
15908
|
-
|
15909
|
-
_readonly: {
|
15910
|
-
[vars$K.inputResizeType]: 'none',
|
15911
|
-
},
|
16138
|
+
[vars$K.inputBackgroundColor]: refs.backgroundColor,
|
16139
|
+
[vars$K.inputSize]: checkboxSize,
|
16140
|
+
[vars$K.inputValueTextColor]: refs.valueTextColor,
|
15912
16141
|
};
|
15913
16142
|
|
15914
|
-
var
|
16143
|
+
var checkbox$1 = /*#__PURE__*/Object.freeze({
|
15915
16144
|
__proto__: null,
|
15916
|
-
default:
|
16145
|
+
default: checkbox,
|
15917
16146
|
vars: vars$K
|
15918
16147
|
});
|
15919
16148
|
|
15920
|
-
const
|
15921
|
-
const
|
16149
|
+
const knobMargin = '2px';
|
16150
|
+
const checkboxHeight = '1.25em';
|
15922
16151
|
|
15923
|
-
const
|
16152
|
+
const globalRefs$u = getThemeRefs(globals);
|
16153
|
+
const vars$J = SwitchToggleClass.cssVarList;
|
16154
|
+
|
16155
|
+
const switchToggle = {
|
15924
16156
|
[vars$J.hostWidth]: refs.width,
|
15925
16157
|
[vars$J.hostDirection]: refs.direction,
|
15926
16158
|
[vars$J.fontSize]: refs.fontSize,
|
15927
16159
|
[vars$J.fontFamily]: refs.fontFamily,
|
15928
|
-
|
15929
|
-
[vars$J.labelRequiredIndicator]: refs.requiredIndicator,
|
15930
|
-
[vars$J.labelFontWeight]: '400',
|
15931
|
-
[vars$J.labelLineHeight]: checkboxSize,
|
15932
|
-
[vars$J.labelSpacing]: '1em',
|
15933
|
-
[vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
|
16160
|
+
|
15934
16161
|
[vars$J.inputOutlineWidth]: refs.outlineWidth,
|
15935
16162
|
[vars$J.inputOutlineOffset]: refs.outlineOffset,
|
15936
16163
|
[vars$J.inputOutlineColor]: refs.outlineColor,
|
15937
16164
|
[vars$J.inputOutlineStyle]: refs.outlineStyle,
|
15938
|
-
[vars$J.inputBorderRadius]: refs.borderRadius,
|
15939
|
-
[vars$J.inputBorderColor]: refs.borderColor,
|
15940
|
-
[vars$J.inputBorderWidth]: refs.borderWidth,
|
15941
|
-
[vars$J.inputBorderStyle]: refs.borderStyle,
|
15942
|
-
[vars$J.inputBackgroundColor]: refs.backgroundColor,
|
15943
|
-
[vars$J.inputSize]: checkboxSize,
|
15944
|
-
[vars$J.inputValueTextColor]: refs.valueTextColor,
|
15945
|
-
};
|
15946
16165
|
|
15947
|
-
|
15948
|
-
|
15949
|
-
|
15950
|
-
vars:
|
15951
|
-
|
15952
|
-
|
15953
|
-
|
15954
|
-
|
16166
|
+
[vars$J.trackBorderStyle]: refs.borderStyle,
|
16167
|
+
[vars$J.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
|
16168
|
+
[vars$J.trackBorderColor]: refs.borderColor,
|
16169
|
+
[vars$J.trackBackgroundColor]: refs.backgroundColor,
|
16170
|
+
[vars$J.trackBorderRadius]: globalRefs$u.radius.md,
|
16171
|
+
[vars$J.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
|
16172
|
+
[vars$J.trackHeight]: checkboxHeight,
|
16173
|
+
|
16174
|
+
[vars$J.knobSize]: `calc(1em - ${knobMargin})`,
|
16175
|
+
[vars$J.knobRadius]: '50%',
|
16176
|
+
[vars$J.knobTopOffset]: '1px',
|
16177
|
+
[vars$J.knobLeftOffset]: knobMargin,
|
16178
|
+
[vars$J.knobColor]: refs.labelTextColor,
|
16179
|
+
[vars$J.knobTransitionDuration]: '0.3s',
|
15955
16180
|
|
15956
|
-
|
15957
|
-
|
15958
|
-
|
15959
|
-
|
15960
|
-
[vars$
|
15961
|
-
[vars$
|
15962
|
-
[vars$I.fontSize]: refs.fontSize,
|
15963
|
-
[vars$I.fontFamily]: refs.fontFamily,
|
15964
|
-
|
15965
|
-
[vars$I.inputOutlineWidth]: refs.outlineWidth,
|
15966
|
-
[vars$I.inputOutlineOffset]: refs.outlineOffset,
|
15967
|
-
[vars$I.inputOutlineColor]: refs.outlineColor,
|
15968
|
-
[vars$I.inputOutlineStyle]: refs.outlineStyle,
|
15969
|
-
|
15970
|
-
[vars$I.trackBorderStyle]: refs.borderStyle,
|
15971
|
-
[vars$I.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
|
15972
|
-
[vars$I.trackBorderColor]: refs.borderColor,
|
15973
|
-
[vars$I.trackBackgroundColor]: refs.backgroundColor,
|
15974
|
-
[vars$I.trackBorderRadius]: globalRefs$u.radius.md,
|
15975
|
-
[vars$I.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
|
15976
|
-
[vars$I.trackHeight]: checkboxHeight,
|
15977
|
-
|
15978
|
-
[vars$I.knobSize]: `calc(1em - ${knobMargin})`,
|
15979
|
-
[vars$I.knobRadius]: '50%',
|
15980
|
-
[vars$I.knobTopOffset]: '1px',
|
15981
|
-
[vars$I.knobLeftOffset]: knobMargin,
|
15982
|
-
[vars$I.knobColor]: refs.labelTextColor,
|
15983
|
-
[vars$I.knobTransitionDuration]: '0.3s',
|
15984
|
-
|
15985
|
-
[vars$I.labelTextColor]: refs.labelTextColor,
|
15986
|
-
[vars$I.labelFontWeight]: '400',
|
15987
|
-
[vars$I.labelLineHeight]: '1.35em',
|
15988
|
-
[vars$I.labelSpacing]: '1em',
|
15989
|
-
[vars$I.labelRequiredIndicator]: refs.requiredIndicator,
|
15990
|
-
[vars$I.errorMessageTextColor]: refs.errorMessageTextColor,
|
16181
|
+
[vars$J.labelTextColor]: refs.labelTextColor,
|
16182
|
+
[vars$J.labelFontWeight]: '400',
|
16183
|
+
[vars$J.labelLineHeight]: '1.35em',
|
16184
|
+
[vars$J.labelSpacing]: '1em',
|
16185
|
+
[vars$J.labelRequiredIndicator]: refs.requiredIndicator,
|
16186
|
+
[vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
|
15991
16187
|
|
15992
16188
|
_checked: {
|
15993
|
-
[vars$
|
15994
|
-
[vars$
|
15995
|
-
[vars$
|
15996
|
-
[vars$
|
16189
|
+
[vars$J.trackBorderColor]: refs.borderColor,
|
16190
|
+
[vars$J.knobLeftOffset]: `calc(100% - var(${vars$J.knobSize}) - ${knobMargin})`,
|
16191
|
+
[vars$J.knobColor]: refs.valueTextColor,
|
16192
|
+
[vars$J.knobTextColor]: refs.valueTextColor,
|
15997
16193
|
},
|
15998
16194
|
|
15999
16195
|
_disabled: {
|
16000
|
-
[vars$
|
16001
|
-
[vars$
|
16002
|
-
[vars$
|
16003
|
-
[vars$
|
16196
|
+
[vars$J.knobColor]: globalRefs$u.colors.surface.light,
|
16197
|
+
[vars$J.trackBorderColor]: globalRefs$u.colors.surface.light,
|
16198
|
+
[vars$J.trackBackgroundColor]: globalRefs$u.colors.surface.main,
|
16199
|
+
[vars$J.labelTextColor]: refs.labelTextColor,
|
16004
16200
|
_checked: {
|
16005
|
-
[vars$
|
16006
|
-
[vars$
|
16201
|
+
[vars$J.knobColor]: globalRefs$u.colors.surface.light,
|
16202
|
+
[vars$J.trackBackgroundColor]: globalRefs$u.colors.surface.main,
|
16007
16203
|
},
|
16008
16204
|
},
|
16009
16205
|
|
16010
16206
|
_invalid: {
|
16011
|
-
[vars$
|
16012
|
-
[vars$
|
16207
|
+
[vars$J.trackBorderColor]: globalRefs$u.colors.error.main,
|
16208
|
+
[vars$J.knobColor]: globalRefs$u.colors.error.main,
|
16013
16209
|
},
|
16014
16210
|
};
|
16015
16211
|
|
16016
16212
|
var switchToggle$1 = /*#__PURE__*/Object.freeze({
|
16017
16213
|
__proto__: null,
|
16018
16214
|
default: switchToggle,
|
16019
|
-
vars: vars$
|
16215
|
+
vars: vars$J
|
16020
16216
|
});
|
16021
16217
|
|
16022
16218
|
const globalRefs$t = getThemeRefs(globals);
|
@@ -16041,7 +16237,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
|
|
16041
16237
|
horizontalAlignment,
|
16042
16238
|
shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
|
16043
16239
|
},
|
16044
|
-
componentName$
|
16240
|
+
componentName$Z
|
16045
16241
|
);
|
16046
16242
|
|
16047
16243
|
const { shadowColor: shadowColor$3 } = helperRefs$3;
|
@@ -16128,7 +16324,7 @@ const container = {
|
|
16128
16324
|
},
|
16129
16325
|
};
|
16130
16326
|
|
16131
|
-
const vars$
|
16327
|
+
const vars$I = {
|
16132
16328
|
...compVars$5,
|
16133
16329
|
...helperVars$3,
|
16134
16330
|
};
|
@@ -16136,168 +16332,168 @@ const vars$H = {
|
|
16136
16332
|
var container$1 = /*#__PURE__*/Object.freeze({
|
16137
16333
|
__proto__: null,
|
16138
16334
|
default: container,
|
16139
|
-
vars: vars$
|
16335
|
+
vars: vars$I
|
16140
16336
|
});
|
16141
16337
|
|
16142
|
-
const vars$
|
16338
|
+
const vars$H = LogoClass.cssVarList;
|
16143
16339
|
|
16144
16340
|
const logo$2 = {
|
16145
|
-
[vars$
|
16341
|
+
[vars$H.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
|
16146
16342
|
};
|
16147
16343
|
|
16148
16344
|
var logo$3 = /*#__PURE__*/Object.freeze({
|
16149
16345
|
__proto__: null,
|
16150
16346
|
default: logo$2,
|
16151
|
-
vars: vars$
|
16347
|
+
vars: vars$H
|
16152
16348
|
});
|
16153
16349
|
|
16154
|
-
const vars$
|
16350
|
+
const vars$G = TotpImageClass.cssVarList;
|
16155
16351
|
|
16156
16352
|
const logo$1 = {
|
16157
|
-
[vars$
|
16353
|
+
[vars$G.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
|
16158
16354
|
};
|
16159
16355
|
|
16160
16356
|
var totpImage = /*#__PURE__*/Object.freeze({
|
16161
16357
|
__proto__: null,
|
16162
16358
|
default: logo$1,
|
16163
|
-
vars: vars$
|
16359
|
+
vars: vars$G
|
16164
16360
|
});
|
16165
16361
|
|
16166
|
-
const vars$
|
16362
|
+
const vars$F = NotpImageClass.cssVarList;
|
16167
16363
|
|
16168
16364
|
const logo = {
|
16169
|
-
[vars$
|
16365
|
+
[vars$F.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
|
16170
16366
|
};
|
16171
16367
|
|
16172
16368
|
var notpImage = /*#__PURE__*/Object.freeze({
|
16173
16369
|
__proto__: null,
|
16174
16370
|
default: logo,
|
16175
|
-
vars: vars$
|
16371
|
+
vars: vars$F
|
16176
16372
|
});
|
16177
16373
|
|
16178
16374
|
const globalRefs$s = getThemeRefs(globals);
|
16179
|
-
const vars$
|
16375
|
+
const vars$E = TextClass.cssVarList;
|
16180
16376
|
|
16181
16377
|
const text = {
|
16182
|
-
[vars$
|
16183
|
-
[vars$
|
16184
|
-
[vars$
|
16185
|
-
[vars$
|
16378
|
+
[vars$E.hostDirection]: globalRefs$s.direction,
|
16379
|
+
[vars$E.textLineHeight]: '1.35em',
|
16380
|
+
[vars$E.textAlign]: 'left',
|
16381
|
+
[vars$E.textColor]: globalRefs$s.colors.surface.dark,
|
16186
16382
|
|
16187
16383
|
variant: {
|
16188
16384
|
h1: {
|
16189
|
-
[vars$
|
16190
|
-
[vars$
|
16191
|
-
[vars$
|
16385
|
+
[vars$E.fontSize]: globalRefs$s.typography.h1.size,
|
16386
|
+
[vars$E.fontWeight]: globalRefs$s.typography.h1.weight,
|
16387
|
+
[vars$E.fontFamily]: globalRefs$s.typography.h1.font,
|
16192
16388
|
},
|
16193
16389
|
h2: {
|
16194
|
-
[vars$
|
16195
|
-
[vars$
|
16196
|
-
[vars$
|
16390
|
+
[vars$E.fontSize]: globalRefs$s.typography.h2.size,
|
16391
|
+
[vars$E.fontWeight]: globalRefs$s.typography.h2.weight,
|
16392
|
+
[vars$E.fontFamily]: globalRefs$s.typography.h2.font,
|
16197
16393
|
},
|
16198
16394
|
h3: {
|
16199
|
-
[vars$
|
16200
|
-
[vars$
|
16201
|
-
[vars$
|
16395
|
+
[vars$E.fontSize]: globalRefs$s.typography.h3.size,
|
16396
|
+
[vars$E.fontWeight]: globalRefs$s.typography.h3.weight,
|
16397
|
+
[vars$E.fontFamily]: globalRefs$s.typography.h3.font,
|
16202
16398
|
},
|
16203
16399
|
subtitle1: {
|
16204
|
-
[vars$
|
16205
|
-
[vars$
|
16206
|
-
[vars$
|
16400
|
+
[vars$E.fontSize]: globalRefs$s.typography.subtitle1.size,
|
16401
|
+
[vars$E.fontWeight]: globalRefs$s.typography.subtitle1.weight,
|
16402
|
+
[vars$E.fontFamily]: globalRefs$s.typography.subtitle1.font,
|
16207
16403
|
},
|
16208
16404
|
subtitle2: {
|
16209
|
-
[vars$
|
16210
|
-
[vars$
|
16211
|
-
[vars$
|
16405
|
+
[vars$E.fontSize]: globalRefs$s.typography.subtitle2.size,
|
16406
|
+
[vars$E.fontWeight]: globalRefs$s.typography.subtitle2.weight,
|
16407
|
+
[vars$E.fontFamily]: globalRefs$s.typography.subtitle2.font,
|
16212
16408
|
},
|
16213
16409
|
body1: {
|
16214
|
-
[vars$
|
16215
|
-
[vars$
|
16216
|
-
[vars$
|
16410
|
+
[vars$E.fontSize]: globalRefs$s.typography.body1.size,
|
16411
|
+
[vars$E.fontWeight]: globalRefs$s.typography.body1.weight,
|
16412
|
+
[vars$E.fontFamily]: globalRefs$s.typography.body1.font,
|
16217
16413
|
},
|
16218
16414
|
body2: {
|
16219
|
-
[vars$
|
16220
|
-
[vars$
|
16221
|
-
[vars$
|
16415
|
+
[vars$E.fontSize]: globalRefs$s.typography.body2.size,
|
16416
|
+
[vars$E.fontWeight]: globalRefs$s.typography.body2.weight,
|
16417
|
+
[vars$E.fontFamily]: globalRefs$s.typography.body2.font,
|
16222
16418
|
},
|
16223
16419
|
},
|
16224
16420
|
|
16225
16421
|
mode: {
|
16226
16422
|
primary: {
|
16227
|
-
[vars$
|
16423
|
+
[vars$E.textColor]: globalRefs$s.colors.surface.contrast,
|
16228
16424
|
},
|
16229
16425
|
secondary: {
|
16230
|
-
[vars$
|
16426
|
+
[vars$E.textColor]: globalRefs$s.colors.surface.dark,
|
16231
16427
|
},
|
16232
16428
|
error: {
|
16233
|
-
[vars$
|
16429
|
+
[vars$E.textColor]: globalRefs$s.colors.error.main,
|
16234
16430
|
},
|
16235
16431
|
success: {
|
16236
|
-
[vars$
|
16432
|
+
[vars$E.textColor]: globalRefs$s.colors.success.main,
|
16237
16433
|
},
|
16238
16434
|
},
|
16239
16435
|
|
16240
16436
|
textAlign: {
|
16241
|
-
right: { [vars$
|
16242
|
-
left: { [vars$
|
16243
|
-
center: { [vars$
|
16437
|
+
right: { [vars$E.textAlign]: 'right' },
|
16438
|
+
left: { [vars$E.textAlign]: 'left' },
|
16439
|
+
center: { [vars$E.textAlign]: 'center' },
|
16244
16440
|
},
|
16245
16441
|
|
16246
16442
|
_fullWidth: {
|
16247
|
-
[vars$
|
16443
|
+
[vars$E.hostWidth]: '100%',
|
16248
16444
|
},
|
16249
16445
|
|
16250
16446
|
_italic: {
|
16251
|
-
[vars$
|
16447
|
+
[vars$E.fontStyle]: 'italic',
|
16252
16448
|
},
|
16253
16449
|
|
16254
16450
|
_uppercase: {
|
16255
|
-
[vars$
|
16451
|
+
[vars$E.textTransform]: 'uppercase',
|
16256
16452
|
},
|
16257
16453
|
|
16258
16454
|
_lowercase: {
|
16259
|
-
[vars$
|
16455
|
+
[vars$E.textTransform]: 'lowercase',
|
16260
16456
|
},
|
16261
16457
|
};
|
16262
16458
|
|
16263
16459
|
var text$1 = /*#__PURE__*/Object.freeze({
|
16264
16460
|
__proto__: null,
|
16265
16461
|
default: text,
|
16266
|
-
vars: vars$
|
16462
|
+
vars: vars$E
|
16267
16463
|
});
|
16268
16464
|
|
16269
16465
|
const globalRefs$r = getThemeRefs(globals);
|
16270
|
-
const vars$
|
16466
|
+
const vars$D = LinkClass.cssVarList;
|
16271
16467
|
|
16272
16468
|
const link = {
|
16273
|
-
[vars$
|
16274
|
-
[vars$
|
16469
|
+
[vars$D.hostDirection]: globalRefs$r.direction,
|
16470
|
+
[vars$D.cursor]: 'pointer',
|
16275
16471
|
|
16276
|
-
[vars$
|
16472
|
+
[vars$D.textColor]: globalRefs$r.colors.primary.main,
|
16277
16473
|
|
16278
16474
|
textAlign: {
|
16279
|
-
right: { [vars$
|
16280
|
-
left: { [vars$
|
16281
|
-
center: { [vars$
|
16475
|
+
right: { [vars$D.textAlign]: 'right' },
|
16476
|
+
left: { [vars$D.textAlign]: 'left' },
|
16477
|
+
center: { [vars$D.textAlign]: 'center' },
|
16282
16478
|
},
|
16283
16479
|
|
16284
16480
|
_fullWidth: {
|
16285
|
-
[vars$
|
16481
|
+
[vars$D.hostWidth]: '100%',
|
16286
16482
|
},
|
16287
16483
|
|
16288
16484
|
_hover: {
|
16289
|
-
[vars$
|
16485
|
+
[vars$D.textDecoration]: 'underline',
|
16290
16486
|
},
|
16291
16487
|
|
16292
16488
|
mode: {
|
16293
16489
|
secondary: {
|
16294
|
-
[vars$
|
16490
|
+
[vars$D.textColor]: globalRefs$r.colors.secondary.main,
|
16295
16491
|
},
|
16296
16492
|
error: {
|
16297
|
-
[vars$
|
16493
|
+
[vars$D.textColor]: globalRefs$r.colors.error.main,
|
16298
16494
|
},
|
16299
16495
|
success: {
|
16300
|
-
[vars$
|
16496
|
+
[vars$D.textColor]: globalRefs$r.colors.success.main,
|
16301
16497
|
},
|
16302
16498
|
},
|
16303
16499
|
};
|
@@ -16305,37 +16501,37 @@ const link = {
|
|
16305
16501
|
var link$1 = /*#__PURE__*/Object.freeze({
|
16306
16502
|
__proto__: null,
|
16307
16503
|
default: link,
|
16308
|
-
vars: vars$
|
16504
|
+
vars: vars$D
|
16309
16505
|
});
|
16310
16506
|
|
16311
16507
|
const globalRefs$q = getThemeRefs(globals);
|
16312
|
-
const vars$
|
16508
|
+
const vars$C = EnrichedTextClass.cssVarList;
|
16313
16509
|
|
16314
16510
|
const enrichedText = {
|
16315
|
-
[vars$
|
16316
|
-
[vars$
|
16511
|
+
[vars$C.hostDirection]: globalRefs$q.direction,
|
16512
|
+
[vars$C.hostWidth]: useVar(vars$E.hostWidth),
|
16317
16513
|
|
16318
|
-
[vars$
|
16319
|
-
[vars$
|
16320
|
-
[vars$
|
16514
|
+
[vars$C.textLineHeight]: useVar(vars$E.textLineHeight),
|
16515
|
+
[vars$C.textColor]: useVar(vars$E.textColor),
|
16516
|
+
[vars$C.textAlign]: useVar(vars$E.textAlign),
|
16321
16517
|
|
16322
|
-
[vars$
|
16323
|
-
[vars$
|
16324
|
-
[vars$
|
16518
|
+
[vars$C.fontSize]: useVar(vars$E.fontSize),
|
16519
|
+
[vars$C.fontWeight]: useVar(vars$E.fontWeight),
|
16520
|
+
[vars$C.fontFamily]: useVar(vars$E.fontFamily),
|
16325
16521
|
|
16326
|
-
[vars$
|
16327
|
-
[vars$
|
16328
|
-
[vars$
|
16522
|
+
[vars$C.linkColor]: useVar(vars$D.textColor),
|
16523
|
+
[vars$C.linkTextDecoration]: 'none',
|
16524
|
+
[vars$C.linkHoverTextDecoration]: 'underline',
|
16329
16525
|
|
16330
|
-
[vars$
|
16331
|
-
[vars$
|
16332
|
-
[vars$
|
16526
|
+
[vars$C.fontWeightBold]: '900',
|
16527
|
+
[vars$C.minWidth]: '0.25em',
|
16528
|
+
[vars$C.minHeight]: '1.35em',
|
16333
16529
|
|
16334
|
-
[vars$
|
16530
|
+
[vars$C.hostDisplay]: 'inline-block',
|
16335
16531
|
|
16336
16532
|
_empty: {
|
16337
16533
|
_hideWhenEmpty: {
|
16338
|
-
[vars$
|
16534
|
+
[vars$C.hostDisplay]: 'none',
|
16339
16535
|
},
|
16340
16536
|
},
|
16341
16537
|
};
|
@@ -16343,7 +16539,7 @@ const enrichedText = {
|
|
16343
16539
|
var enrichedText$1 = /*#__PURE__*/Object.freeze({
|
16344
16540
|
__proto__: null,
|
16345
16541
|
default: enrichedText,
|
16346
|
-
vars: vars$
|
16542
|
+
vars: vars$C
|
16347
16543
|
});
|
16348
16544
|
|
16349
16545
|
const globalRefs$p = getThemeRefs(globals);
|
@@ -16354,7 +16550,7 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
|
|
16354
16550
|
thickness: '2px',
|
16355
16551
|
spacing: '10px',
|
16356
16552
|
},
|
16357
|
-
componentName$
|
16553
|
+
componentName$T
|
16358
16554
|
);
|
16359
16555
|
|
16360
16556
|
const divider = {
|
@@ -16385,7 +16581,7 @@ const divider = {
|
|
16385
16581
|
},
|
16386
16582
|
};
|
16387
16583
|
|
16388
|
-
const vars$
|
16584
|
+
const vars$B = {
|
16389
16585
|
...compVars$4,
|
16390
16586
|
...helperVars$2,
|
16391
16587
|
};
|
@@ -16393,93 +16589,93 @@ const vars$A = {
|
|
16393
16589
|
var divider$1 = /*#__PURE__*/Object.freeze({
|
16394
16590
|
__proto__: null,
|
16395
16591
|
default: divider,
|
16396
|
-
vars: vars$
|
16592
|
+
vars: vars$B
|
16397
16593
|
});
|
16398
16594
|
|
16399
|
-
const vars$
|
16595
|
+
const vars$A = PasscodeClass.cssVarList;
|
16400
16596
|
|
16401
16597
|
const passcode = {
|
16402
|
-
[vars$
|
16403
|
-
[vars$
|
16404
|
-
[vars$
|
16405
|
-
[vars$
|
16406
|
-
[vars$
|
16407
|
-
[vars$
|
16408
|
-
[vars$
|
16409
|
-
[vars$
|
16410
|
-
[vars$
|
16411
|
-
[vars$
|
16412
|
-
[vars$
|
16413
|
-
[vars$
|
16414
|
-
[vars$
|
16415
|
-
[vars$
|
16416
|
-
[vars$
|
16598
|
+
[vars$A.hostDirection]: refs.direction,
|
16599
|
+
[vars$A.fontFamily]: refs.fontFamily,
|
16600
|
+
[vars$A.fontSize]: refs.fontSize,
|
16601
|
+
[vars$A.labelTextColor]: refs.labelTextColor,
|
16602
|
+
[vars$A.labelRequiredIndicator]: refs.requiredIndicator,
|
16603
|
+
[vars$A.errorMessageTextColor]: refs.errorMessageTextColor,
|
16604
|
+
[vars$A.digitValueTextColor]: refs.valueTextColor,
|
16605
|
+
[vars$A.digitPadding]: '0',
|
16606
|
+
[vars$A.digitTextAlign]: 'center',
|
16607
|
+
[vars$A.digitSpacing]: '4px',
|
16608
|
+
[vars$A.hostWidth]: refs.width,
|
16609
|
+
[vars$A.digitOutlineColor]: 'transparent',
|
16610
|
+
[vars$A.digitOutlineWidth]: refs.outlineWidth,
|
16611
|
+
[vars$A.focusedDigitFieldOutlineColor]: refs.outlineColor,
|
16612
|
+
[vars$A.digitSize]: refs.inputHeight,
|
16417
16613
|
|
16418
16614
|
size: {
|
16419
|
-
xs: { [vars$
|
16420
|
-
sm: { [vars$
|
16421
|
-
md: { [vars$
|
16422
|
-
lg: { [vars$
|
16615
|
+
xs: { [vars$A.spinnerSize]: '15px' },
|
16616
|
+
sm: { [vars$A.spinnerSize]: '20px' },
|
16617
|
+
md: { [vars$A.spinnerSize]: '20px' },
|
16618
|
+
lg: { [vars$A.spinnerSize]: '20px' },
|
16423
16619
|
},
|
16424
16620
|
|
16425
16621
|
_hideCursor: {
|
16426
|
-
[vars$
|
16622
|
+
[vars$A.digitCaretTextColor]: 'transparent',
|
16427
16623
|
},
|
16428
16624
|
|
16429
16625
|
_loading: {
|
16430
|
-
[vars$
|
16626
|
+
[vars$A.overlayOpacity]: refs.overlayOpacity,
|
16431
16627
|
},
|
16432
16628
|
};
|
16433
16629
|
|
16434
16630
|
var passcode$1 = /*#__PURE__*/Object.freeze({
|
16435
16631
|
__proto__: null,
|
16436
16632
|
default: passcode,
|
16437
|
-
vars: vars$
|
16633
|
+
vars: vars$A
|
16438
16634
|
});
|
16439
16635
|
|
16440
16636
|
const globalRefs$o = getThemeRefs(globals);
|
16441
|
-
const vars$
|
16637
|
+
const vars$z = LoaderLinearClass.cssVarList;
|
16442
16638
|
|
16443
16639
|
const loaderLinear = {
|
16444
|
-
[vars$
|
16445
|
-
[vars$
|
16640
|
+
[vars$z.hostDisplay]: 'inline-block',
|
16641
|
+
[vars$z.hostWidth]: '100%',
|
16446
16642
|
|
16447
|
-
[vars$
|
16448
|
-
[vars$
|
16643
|
+
[vars$z.barColor]: globalRefs$o.colors.surface.contrast,
|
16644
|
+
[vars$z.barWidth]: '20%',
|
16449
16645
|
|
16450
|
-
[vars$
|
16451
|
-
[vars$
|
16646
|
+
[vars$z.barBackgroundColor]: globalRefs$o.colors.surface.light,
|
16647
|
+
[vars$z.barBorderRadius]: '4px',
|
16452
16648
|
|
16453
|
-
[vars$
|
16454
|
-
[vars$
|
16455
|
-
[vars$
|
16456
|
-
[vars$
|
16649
|
+
[vars$z.animationDuration]: '2s',
|
16650
|
+
[vars$z.animationTimingFunction]: 'linear',
|
16651
|
+
[vars$z.animationIterationCount]: 'infinite',
|
16652
|
+
[vars$z.verticalPadding]: '0.25em',
|
16457
16653
|
|
16458
16654
|
size: {
|
16459
|
-
xs: { [vars$
|
16460
|
-
sm: { [vars$
|
16461
|
-
md: { [vars$
|
16462
|
-
lg: { [vars$
|
16655
|
+
xs: { [vars$z.barHeight]: '2px' },
|
16656
|
+
sm: { [vars$z.barHeight]: '4px' },
|
16657
|
+
md: { [vars$z.barHeight]: '6px' },
|
16658
|
+
lg: { [vars$z.barHeight]: '8px' },
|
16463
16659
|
},
|
16464
16660
|
|
16465
16661
|
mode: {
|
16466
16662
|
primary: {
|
16467
|
-
[vars$
|
16663
|
+
[vars$z.barColor]: globalRefs$o.colors.primary.main,
|
16468
16664
|
},
|
16469
16665
|
secondary: {
|
16470
|
-
[vars$
|
16666
|
+
[vars$z.barColor]: globalRefs$o.colors.secondary.main,
|
16471
16667
|
},
|
16472
16668
|
},
|
16473
16669
|
|
16474
16670
|
_hidden: {
|
16475
|
-
[vars$
|
16671
|
+
[vars$z.hostDisplay]: 'none',
|
16476
16672
|
},
|
16477
16673
|
};
|
16478
16674
|
|
16479
16675
|
var loaderLinear$1 = /*#__PURE__*/Object.freeze({
|
16480
16676
|
__proto__: null,
|
16481
16677
|
default: loaderLinear,
|
16482
|
-
vars: vars$
|
16678
|
+
vars: vars$z
|
16483
16679
|
});
|
16484
16680
|
|
16485
16681
|
const globalRefs$n = getThemeRefs(globals);
|
@@ -16497,7 +16693,7 @@ const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
|
|
16497
16693
|
},
|
16498
16694
|
},
|
16499
16695
|
},
|
16500
|
-
componentName$
|
16696
|
+
componentName$_
|
16501
16697
|
);
|
16502
16698
|
|
16503
16699
|
const loaderRadial = {
|
@@ -16526,7 +16722,7 @@ const loaderRadial = {
|
|
16526
16722
|
[compVars$3.hostDisplay]: 'none',
|
16527
16723
|
},
|
16528
16724
|
};
|
16529
|
-
const vars$
|
16725
|
+
const vars$y = {
|
16530
16726
|
...compVars$3,
|
16531
16727
|
...helperVars$1,
|
16532
16728
|
};
|
@@ -16534,93 +16730,134 @@ const vars$x = {
|
|
16534
16730
|
var loaderRadial$1 = /*#__PURE__*/Object.freeze({
|
16535
16731
|
__proto__: null,
|
16536
16732
|
default: loaderRadial,
|
16537
|
-
vars: vars$
|
16733
|
+
vars: vars$y
|
16538
16734
|
});
|
16539
16735
|
|
16540
16736
|
const globalRefs$m = getThemeRefs(globals);
|
16541
|
-
const vars$
|
16737
|
+
const vars$x = ComboBoxClass.cssVarList;
|
16542
16738
|
|
16543
16739
|
const comboBox = {
|
16544
|
-
[vars$
|
16545
|
-
[vars$
|
16546
|
-
[vars$
|
16547
|
-
[vars$
|
16548
|
-
[vars$
|
16549
|
-
[vars$
|
16550
|
-
[vars$
|
16551
|
-
[vars$
|
16552
|
-
[vars$
|
16553
|
-
[vars$
|
16554
|
-
[vars$
|
16555
|
-
[vars$
|
16556
|
-
[vars$
|
16557
|
-
[vars$
|
16558
|
-
[vars$
|
16559
|
-
[vars$
|
16560
|
-
[vars$
|
16561
|
-
[vars$
|
16562
|
-
[vars$
|
16563
|
-
[vars$
|
16564
|
-
[vars$
|
16565
|
-
[vars$
|
16566
|
-
[vars$
|
16567
|
-
[vars$
|
16568
|
-
[vars$
|
16569
|
-
[vars$
|
16570
|
-
[vars$
|
16571
|
-
[vars$
|
16572
|
-
[vars$
|
16573
|
-
[vars$
|
16574
|
-
[vars$
|
16575
|
-
[vars$
|
16576
|
-
[vars$
|
16577
|
-
[vars$
|
16578
|
-
[vars$
|
16579
|
-
[vars$
|
16580
|
-
[vars$
|
16581
|
-
[vars$
|
16740
|
+
[vars$x.hostWidth]: refs.width,
|
16741
|
+
[vars$x.hostDirection]: refs.direction,
|
16742
|
+
[vars$x.fontSize]: refs.fontSize,
|
16743
|
+
[vars$x.fontFamily]: refs.fontFamily,
|
16744
|
+
[vars$x.labelFontSize]: refs.labelFontSize,
|
16745
|
+
[vars$x.labelFontWeight]: refs.labelFontWeight,
|
16746
|
+
[vars$x.labelTextColor]: refs.labelTextColor,
|
16747
|
+
[vars$x.errorMessageTextColor]: refs.errorMessageTextColor,
|
16748
|
+
[vars$x.inputBorderColor]: refs.borderColor,
|
16749
|
+
[vars$x.inputBorderWidth]: refs.borderWidth,
|
16750
|
+
[vars$x.inputBorderStyle]: refs.borderStyle,
|
16751
|
+
[vars$x.inputBorderRadius]: refs.borderRadius,
|
16752
|
+
[vars$x.inputOutlineColor]: refs.outlineColor,
|
16753
|
+
[vars$x.inputOutlineOffset]: refs.outlineOffset,
|
16754
|
+
[vars$x.inputOutlineWidth]: refs.outlineWidth,
|
16755
|
+
[vars$x.inputOutlineStyle]: refs.outlineStyle,
|
16756
|
+
[vars$x.labelRequiredIndicator]: refs.requiredIndicator,
|
16757
|
+
[vars$x.inputValueTextColor]: refs.valueTextColor,
|
16758
|
+
[vars$x.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16759
|
+
[vars$x.inputBackgroundColor]: refs.backgroundColor,
|
16760
|
+
[vars$x.inputHorizontalPadding]: refs.horizontalPadding,
|
16761
|
+
[vars$x.inputHeight]: refs.inputHeight,
|
16762
|
+
[vars$x.inputDropdownButtonColor]: globalRefs$m.colors.surface.dark,
|
16763
|
+
[vars$x.inputDropdownButtonCursor]: 'pointer',
|
16764
|
+
[vars$x.inputDropdownButtonSize]: refs.toggleButtonSize,
|
16765
|
+
[vars$x.inputDropdownButtonOffset]: globalRefs$m.spacing.xs,
|
16766
|
+
[vars$x.overlayItemPaddingInlineStart]: globalRefs$m.spacing.xs,
|
16767
|
+
[vars$x.overlayItemPaddingInlineEnd]: globalRefs$m.spacing.lg,
|
16768
|
+
[vars$x.labelPosition]: refs.labelPosition,
|
16769
|
+
[vars$x.labelTopPosition]: refs.labelTopPosition,
|
16770
|
+
[vars$x.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16771
|
+
[vars$x.inputTransformY]: refs.inputTransformY,
|
16772
|
+
[vars$x.inputTransition]: refs.inputTransition,
|
16773
|
+
[vars$x.marginInlineStart]: refs.marginInlineStart,
|
16774
|
+
[vars$x.placeholderOpacity]: refs.placeholderOpacity,
|
16775
|
+
[vars$x.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
16776
|
+
[vars$x.valueInputHeight]: refs.valueInputHeight,
|
16777
|
+
[vars$x.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16582
16778
|
|
16583
16779
|
_readonly: {
|
16584
|
-
[vars$
|
16780
|
+
[vars$x.inputDropdownButtonCursor]: 'default',
|
16585
16781
|
},
|
16586
16782
|
|
16587
16783
|
// Overlay theme exposed via the component:
|
16588
|
-
[vars$
|
16589
|
-
[vars$
|
16590
|
-
[vars$
|
16591
|
-
[vars$
|
16592
|
-
[vars$
|
16593
|
-
[vars$
|
16784
|
+
[vars$x.overlayFontSize]: refs.fontSize,
|
16785
|
+
[vars$x.overlayFontFamily]: refs.fontFamily,
|
16786
|
+
[vars$x.overlayCursor]: 'pointer',
|
16787
|
+
[vars$x.overlayItemBoxShadow]: 'none',
|
16788
|
+
[vars$x.overlayBackground]: refs.backgroundColor,
|
16789
|
+
[vars$x.overlayTextColor]: refs.valueTextColor,
|
16594
16790
|
|
16595
16791
|
// Overlay direct theme:
|
16596
|
-
[vars$
|
16597
|
-
[vars$
|
16792
|
+
[vars$x.overlay.minHeight]: '400px',
|
16793
|
+
[vars$x.overlay.margin]: '0',
|
16598
16794
|
};
|
16599
16795
|
|
16600
16796
|
var comboBox$1 = /*#__PURE__*/Object.freeze({
|
16601
16797
|
__proto__: null,
|
16602
16798
|
comboBox: comboBox,
|
16603
16799
|
default: comboBox,
|
16604
|
-
vars: vars$
|
16800
|
+
vars: vars$x
|
16605
16801
|
});
|
16606
16802
|
|
16607
|
-
const vars$
|
16803
|
+
const vars$w = ImageClass.cssVarList;
|
16608
16804
|
|
16609
16805
|
const image = {};
|
16610
16806
|
|
16611
16807
|
var image$1 = /*#__PURE__*/Object.freeze({
|
16612
16808
|
__proto__: null,
|
16613
16809
|
default: image,
|
16614
|
-
vars: vars$
|
16810
|
+
vars: vars$w
|
16615
16811
|
});
|
16616
16812
|
|
16617
|
-
const vars$
|
16813
|
+
const vars$v = PhoneFieldClass.cssVarList;
|
16618
16814
|
|
16619
16815
|
const phoneField = {
|
16620
|
-
[vars$
|
16816
|
+
[vars$v.hostWidth]: refs.width,
|
16817
|
+
[vars$v.hostDirection]: refs.direction,
|
16818
|
+
[vars$v.fontSize]: refs.fontSize,
|
16819
|
+
[vars$v.fontFamily]: refs.fontFamily,
|
16820
|
+
[vars$v.labelTextColor]: refs.labelTextColor,
|
16821
|
+
[vars$v.labelRequiredIndicator]: refs.requiredIndicator,
|
16822
|
+
[vars$v.errorMessageTextColor]: refs.errorMessageTextColor,
|
16823
|
+
[vars$v.inputValueTextColor]: refs.valueTextColor,
|
16824
|
+
[vars$v.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16825
|
+
[vars$v.inputBorderStyle]: refs.borderStyle,
|
16826
|
+
[vars$v.inputBorderWidth]: refs.borderWidth,
|
16827
|
+
[vars$v.inputBorderColor]: refs.borderColor,
|
16828
|
+
[vars$v.inputBorderRadius]: refs.borderRadius,
|
16829
|
+
[vars$v.inputOutlineStyle]: refs.outlineStyle,
|
16830
|
+
[vars$v.inputOutlineWidth]: refs.outlineWidth,
|
16831
|
+
[vars$v.inputOutlineColor]: refs.outlineColor,
|
16832
|
+
[vars$v.inputOutlineOffset]: refs.outlineOffset,
|
16833
|
+
[vars$v.phoneInputWidth]: refs.minWidth,
|
16834
|
+
[vars$v.countryCodeInputWidth]: '5em',
|
16835
|
+
[vars$v.countryCodeDropdownWidth]: '20em',
|
16836
|
+
[vars$v.marginInlineStart]: '-0.25em',
|
16837
|
+
[vars$v.valueInputHeight]: refs.valueInputHeight,
|
16838
|
+
[vars$v.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16839
|
+
|
16840
|
+
// '@overlay': {
|
16841
|
+
// overlayItemBackgroundColor: 'red'
|
16842
|
+
// }
|
16843
|
+
};
|
16844
|
+
|
16845
|
+
var phoneField$1 = /*#__PURE__*/Object.freeze({
|
16846
|
+
__proto__: null,
|
16847
|
+
default: phoneField,
|
16848
|
+
vars: vars$v
|
16849
|
+
});
|
16850
|
+
|
16851
|
+
const vars$u = PhoneFieldInputBoxClass.cssVarList;
|
16852
|
+
|
16853
|
+
const phoneInputBoxField = {
|
16854
|
+
[vars$u.hostWidth]: '16em',
|
16855
|
+
[vars$u.hostMinWidth]: refs.minWidth,
|
16621
16856
|
[vars$u.hostDirection]: refs.direction,
|
16622
16857
|
[vars$u.fontSize]: refs.fontSize,
|
16623
16858
|
[vars$u.fontFamily]: refs.fontFamily,
|
16859
|
+
[vars$u.labelFontSize]: refs.labelFontSize,
|
16860
|
+
[vars$u.labelFontWeight]: refs.labelFontWeight,
|
16624
16861
|
[vars$u.labelTextColor]: refs.labelTextColor,
|
16625
16862
|
[vars$u.labelRequiredIndicator]: refs.requiredIndicator,
|
16626
16863
|
[vars$u.errorMessageTextColor]: refs.errorMessageTextColor,
|
@@ -16634,28 +16871,32 @@ const phoneField = {
|
|
16634
16871
|
[vars$u.inputOutlineWidth]: refs.outlineWidth,
|
16635
16872
|
[vars$u.inputOutlineColor]: refs.outlineColor,
|
16636
16873
|
[vars$u.inputOutlineOffset]: refs.outlineOffset,
|
16637
|
-
[vars$u.
|
16638
|
-
[vars$u.
|
16639
|
-
[vars$u.
|
16640
|
-
[vars$u.
|
16874
|
+
[vars$u.labelPosition]: refs.labelPosition,
|
16875
|
+
[vars$u.labelTopPosition]: refs.labelTopPosition,
|
16876
|
+
[vars$u.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16877
|
+
[vars$u.inputTransformY]: refs.inputTransformY,
|
16878
|
+
[vars$u.inputTransition]: refs.inputTransition,
|
16879
|
+
[vars$u.marginInlineStart]: refs.marginInlineStart,
|
16641
16880
|
[vars$u.valueInputHeight]: refs.valueInputHeight,
|
16642
16881
|
[vars$u.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16882
|
+
[vars$u.inputHorizontalPadding]: '0',
|
16643
16883
|
|
16644
|
-
|
16645
|
-
|
16646
|
-
|
16884
|
+
_fullWidth: {
|
16885
|
+
[vars$u.hostWidth]: refs.width,
|
16886
|
+
},
|
16647
16887
|
};
|
16648
16888
|
|
16649
|
-
var
|
16889
|
+
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16650
16890
|
__proto__: null,
|
16651
|
-
default:
|
16891
|
+
default: phoneInputBoxField,
|
16652
16892
|
vars: vars$u
|
16653
16893
|
});
|
16654
16894
|
|
16655
|
-
const
|
16895
|
+
const globalRefs$l = getThemeRefs(globals);
|
16896
|
+
const vars$t = NewPasswordClass.cssVarList;
|
16656
16897
|
|
16657
|
-
const
|
16658
|
-
[vars$t.hostWidth]:
|
16898
|
+
const newPassword = {
|
16899
|
+
[vars$t.hostWidth]: refs.width,
|
16659
16900
|
[vars$t.hostMinWidth]: refs.minWidth,
|
16660
16901
|
[vars$t.hostDirection]: refs.direction,
|
16661
16902
|
[vars$t.fontSize]: refs.fontSize,
|
@@ -16663,171 +16904,126 @@ const phoneInputBoxField = {
|
|
16663
16904
|
[vars$t.labelFontSize]: refs.labelFontSize,
|
16664
16905
|
[vars$t.labelFontWeight]: refs.labelFontWeight,
|
16665
16906
|
[vars$t.labelTextColor]: refs.labelTextColor,
|
16666
|
-
[vars$t.
|
16907
|
+
[vars$t.spaceBetweenInputs]: '1em',
|
16667
16908
|
[vars$t.errorMessageTextColor]: refs.errorMessageTextColor,
|
16668
|
-
[vars$t.
|
16669
|
-
[vars$t.
|
16670
|
-
[vars$t.inputBorderStyle]: refs.borderStyle,
|
16671
|
-
[vars$t.inputBorderWidth]: refs.borderWidth,
|
16672
|
-
[vars$t.inputBorderColor]: refs.borderColor,
|
16673
|
-
[vars$t.inputBorderRadius]: refs.borderRadius,
|
16674
|
-
[vars$t.inputOutlineStyle]: refs.outlineStyle,
|
16675
|
-
[vars$t.inputOutlineWidth]: refs.outlineWidth,
|
16676
|
-
[vars$t.inputOutlineColor]: refs.outlineColor,
|
16677
|
-
[vars$t.inputOutlineOffset]: refs.outlineOffset,
|
16678
|
-
[vars$t.labelPosition]: refs.labelPosition,
|
16679
|
-
[vars$t.labelTopPosition]: refs.labelTopPosition,
|
16680
|
-
[vars$t.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16681
|
-
[vars$t.inputTransformY]: refs.inputTransformY,
|
16682
|
-
[vars$t.inputTransition]: refs.inputTransition,
|
16683
|
-
[vars$t.marginInlineStart]: refs.marginInlineStart,
|
16909
|
+
[vars$t.policyPreviewBackgroundColor]: 'none',
|
16910
|
+
[vars$t.policyPreviewPadding]: globalRefs$l.spacing.lg,
|
16684
16911
|
[vars$t.valueInputHeight]: refs.valueInputHeight,
|
16685
|
-
[vars$t.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16686
|
-
[vars$t.inputHorizontalPadding]: '0',
|
16687
|
-
|
16688
|
-
_fullWidth: {
|
16689
|
-
[vars$t.hostWidth]: refs.width,
|
16690
|
-
},
|
16691
|
-
};
|
16692
|
-
|
16693
|
-
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16694
|
-
__proto__: null,
|
16695
|
-
default: phoneInputBoxField,
|
16696
|
-
vars: vars$t
|
16697
|
-
});
|
16698
|
-
|
16699
|
-
const globalRefs$l = getThemeRefs(globals);
|
16700
|
-
const vars$s = NewPasswordClass.cssVarList;
|
16701
|
-
|
16702
|
-
const newPassword = {
|
16703
|
-
[vars$s.hostWidth]: refs.width,
|
16704
|
-
[vars$s.hostMinWidth]: refs.minWidth,
|
16705
|
-
[vars$s.hostDirection]: refs.direction,
|
16706
|
-
[vars$s.fontSize]: refs.fontSize,
|
16707
|
-
[vars$s.fontFamily]: refs.fontFamily,
|
16708
|
-
[vars$s.labelFontSize]: refs.labelFontSize,
|
16709
|
-
[vars$s.labelFontWeight]: refs.labelFontWeight,
|
16710
|
-
[vars$s.labelTextColor]: refs.labelTextColor,
|
16711
|
-
[vars$s.spaceBetweenInputs]: '1em',
|
16712
|
-
[vars$s.errorMessageTextColor]: refs.errorMessageTextColor,
|
16713
|
-
[vars$s.policyPreviewBackgroundColor]: 'none',
|
16714
|
-
[vars$s.policyPreviewPadding]: globalRefs$l.spacing.lg,
|
16715
|
-
[vars$s.valueInputHeight]: refs.valueInputHeight,
|
16716
16912
|
|
16717
16913
|
_required: {
|
16718
16914
|
// NewPassword doesn't pass `required` attribute to its Password components.
|
16719
16915
|
// That's why we fake the required indicator on each input.
|
16720
16916
|
// We do that by injecting `::after` element, and populating it with requiredIndicator content.
|
16721
|
-
[vars$
|
16917
|
+
[vars$t.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
|
16722
16918
|
},
|
16723
16919
|
};
|
16724
16920
|
|
16725
16921
|
var newPassword$1 = /*#__PURE__*/Object.freeze({
|
16726
16922
|
__proto__: null,
|
16727
16923
|
default: newPassword,
|
16728
|
-
vars: vars$
|
16924
|
+
vars: vars$t
|
16729
16925
|
});
|
16730
16926
|
|
16731
|
-
const vars$
|
16927
|
+
const vars$s = UploadFileClass.cssVarList;
|
16732
16928
|
|
16733
16929
|
const uploadFile = {
|
16734
|
-
[vars$
|
16735
|
-
[vars$
|
16736
|
-
[vars$
|
16930
|
+
[vars$s.hostDirection]: refs.direction,
|
16931
|
+
[vars$s.labelTextColor]: refs.labelTextColor,
|
16932
|
+
[vars$s.fontFamily]: refs.fontFamily,
|
16737
16933
|
|
16738
|
-
[vars$
|
16934
|
+
[vars$s.iconSize]: '2em',
|
16739
16935
|
|
16740
|
-
[vars$
|
16741
|
-
[vars$
|
16936
|
+
[vars$s.hostPadding]: '0.75em',
|
16937
|
+
[vars$s.gap]: '0.5em',
|
16742
16938
|
|
16743
|
-
[vars$
|
16744
|
-
[vars$
|
16745
|
-
[vars$
|
16939
|
+
[vars$s.fontSize]: '16px',
|
16940
|
+
[vars$s.titleFontWeight]: '500',
|
16941
|
+
[vars$s.lineHeight]: '1em',
|
16746
16942
|
|
16747
|
-
[vars$
|
16748
|
-
[vars$
|
16749
|
-
[vars$
|
16750
|
-
[vars$
|
16943
|
+
[vars$s.borderWidth]: refs.borderWidth,
|
16944
|
+
[vars$s.borderColor]: refs.borderColor,
|
16945
|
+
[vars$s.borderRadius]: refs.borderRadius,
|
16946
|
+
[vars$s.borderStyle]: 'dashed',
|
16751
16947
|
|
16752
16948
|
_required: {
|
16753
|
-
[vars$
|
16949
|
+
[vars$s.requiredIndicator]: refs.requiredIndicator,
|
16754
16950
|
},
|
16755
16951
|
|
16756
16952
|
size: {
|
16757
16953
|
xs: {
|
16758
|
-
[vars$
|
16759
|
-
[vars$
|
16760
|
-
[vars$
|
16761
|
-
[vars$
|
16762
|
-
[vars$
|
16954
|
+
[vars$s.hostHeight]: '196px',
|
16955
|
+
[vars$s.hostWidth]: '200px',
|
16956
|
+
[vars$s.titleFontSize]: '0.875em',
|
16957
|
+
[vars$s.descriptionFontSize]: '0.875em',
|
16958
|
+
[vars$s.lineHeight]: '1.25em',
|
16763
16959
|
},
|
16764
16960
|
sm: {
|
16765
|
-
[vars$
|
16766
|
-
[vars$
|
16767
|
-
[vars$
|
16768
|
-
[vars$
|
16769
|
-
[vars$
|
16961
|
+
[vars$s.hostHeight]: '216px',
|
16962
|
+
[vars$s.hostWidth]: '230px',
|
16963
|
+
[vars$s.titleFontSize]: '1em',
|
16964
|
+
[vars$s.descriptionFontSize]: '0.875em',
|
16965
|
+
[vars$s.lineHeight]: '1.25em',
|
16770
16966
|
},
|
16771
16967
|
md: {
|
16772
|
-
[vars$
|
16773
|
-
[vars$
|
16774
|
-
[vars$
|
16775
|
-
[vars$
|
16776
|
-
[vars$
|
16968
|
+
[vars$s.hostHeight]: '256px',
|
16969
|
+
[vars$s.hostWidth]: '312px',
|
16970
|
+
[vars$s.titleFontSize]: '1.125em',
|
16971
|
+
[vars$s.descriptionFontSize]: '1em',
|
16972
|
+
[vars$s.lineHeight]: '1.5em',
|
16777
16973
|
},
|
16778
16974
|
lg: {
|
16779
|
-
[vars$
|
16780
|
-
[vars$
|
16781
|
-
[vars$
|
16782
|
-
[vars$
|
16783
|
-
[vars$
|
16975
|
+
[vars$s.hostHeight]: '280px',
|
16976
|
+
[vars$s.hostWidth]: '336px',
|
16977
|
+
[vars$s.titleFontSize]: '1.125em',
|
16978
|
+
[vars$s.descriptionFontSize]: '1.125em',
|
16979
|
+
[vars$s.lineHeight]: '1.75em',
|
16784
16980
|
},
|
16785
16981
|
},
|
16786
16982
|
|
16787
16983
|
_fullWidth: {
|
16788
|
-
[vars$
|
16984
|
+
[vars$s.hostWidth]: refs.width,
|
16789
16985
|
},
|
16790
16986
|
};
|
16791
16987
|
|
16792
16988
|
var uploadFile$1 = /*#__PURE__*/Object.freeze({
|
16793
16989
|
__proto__: null,
|
16794
16990
|
default: uploadFile,
|
16795
|
-
vars: vars$
|
16991
|
+
vars: vars$s
|
16796
16992
|
});
|
16797
16993
|
|
16798
16994
|
const globalRefs$k = getThemeRefs(globals);
|
16799
16995
|
|
16800
|
-
const vars$
|
16996
|
+
const vars$r = ButtonSelectionGroupItemClass.cssVarList;
|
16801
16997
|
|
16802
16998
|
const buttonSelectionGroupItem = {
|
16803
|
-
[vars$
|
16804
|
-
[vars$
|
16805
|
-
[vars$
|
16806
|
-
[vars$
|
16807
|
-
[vars$
|
16808
|
-
[vars$
|
16809
|
-
[vars$
|
16810
|
-
[vars$
|
16999
|
+
[vars$r.hostDirection]: 'inherit',
|
17000
|
+
[vars$r.backgroundColor]: globalRefs$k.colors.surface.main,
|
17001
|
+
[vars$r.labelTextColor]: globalRefs$k.colors.surface.contrast,
|
17002
|
+
[vars$r.borderColor]: globalRefs$k.colors.surface.light,
|
17003
|
+
[vars$r.borderStyle]: 'solid',
|
17004
|
+
[vars$r.borderRadius]: globalRefs$k.radius.sm,
|
17005
|
+
[vars$r.outlineColor]: 'transparent',
|
17006
|
+
[vars$r.borderWidth]: globalRefs$k.border.xs,
|
16811
17007
|
|
16812
17008
|
_hover: {
|
16813
|
-
[vars$
|
17009
|
+
[vars$r.backgroundColor]: globalRefs$k.colors.surface.highlight,
|
16814
17010
|
},
|
16815
17011
|
|
16816
17012
|
_focused: {
|
16817
|
-
[vars$
|
17013
|
+
[vars$r.outlineColor]: globalRefs$k.colors.surface.light,
|
16818
17014
|
},
|
16819
17015
|
|
16820
17016
|
_selected: {
|
16821
|
-
[vars$
|
16822
|
-
[vars$
|
16823
|
-
[vars$
|
17017
|
+
[vars$r.borderColor]: globalRefs$k.colors.surface.contrast,
|
17018
|
+
[vars$r.backgroundColor]: globalRefs$k.colors.surface.contrast,
|
17019
|
+
[vars$r.labelTextColor]: globalRefs$k.colors.surface.main,
|
16824
17020
|
},
|
16825
17021
|
};
|
16826
17022
|
|
16827
17023
|
var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
|
16828
17024
|
__proto__: null,
|
16829
17025
|
default: buttonSelectionGroupItem,
|
16830
|
-
vars: vars$
|
17026
|
+
vars: vars$r
|
16831
17027
|
});
|
16832
17028
|
|
16833
17029
|
const globalRefs$j = getThemeRefs(globals);
|
@@ -16842,28 +17038,28 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
|
|
16842
17038
|
[vars.hostWidth]: refs.width,
|
16843
17039
|
});
|
16844
17040
|
|
16845
|
-
const vars$
|
17041
|
+
const vars$q = ButtonSelectionGroupClass.cssVarList;
|
16846
17042
|
|
16847
17043
|
const buttonSelectionGroup = {
|
16848
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
17044
|
+
...createBaseButtonSelectionGroupMappings(vars$q),
|
16849
17045
|
};
|
16850
17046
|
|
16851
17047
|
var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
16852
17048
|
__proto__: null,
|
16853
17049
|
default: buttonSelectionGroup,
|
16854
|
-
vars: vars$
|
17050
|
+
vars: vars$q
|
16855
17051
|
});
|
16856
17052
|
|
16857
|
-
const vars$
|
17053
|
+
const vars$p = ButtonMultiSelectionGroupClass.cssVarList;
|
16858
17054
|
|
16859
17055
|
const buttonMultiSelectionGroup = {
|
16860
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
17056
|
+
...createBaseButtonSelectionGroupMappings(vars$p),
|
16861
17057
|
};
|
16862
17058
|
|
16863
17059
|
var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
16864
17060
|
__proto__: null,
|
16865
17061
|
default: buttonMultiSelectionGroup,
|
16866
|
-
vars: vars$
|
17062
|
+
vars: vars$p
|
16867
17063
|
});
|
16868
17064
|
|
16869
17065
|
const globalRefs$i = getThemeRefs(globals);
|
@@ -16876,58 +17072,58 @@ const modal = {
|
|
16876
17072
|
[compVars$2.overlayWidth]: '540px',
|
16877
17073
|
};
|
16878
17074
|
|
16879
|
-
const vars$
|
17075
|
+
const vars$o = {
|
16880
17076
|
...compVars$2,
|
16881
17077
|
};
|
16882
17078
|
|
16883
17079
|
var modal$1 = /*#__PURE__*/Object.freeze({
|
16884
17080
|
__proto__: null,
|
16885
17081
|
default: modal,
|
16886
|
-
vars: vars$
|
17082
|
+
vars: vars$o
|
16887
17083
|
});
|
16888
17084
|
|
16889
17085
|
const globalRefs$h = getThemeRefs(globals);
|
16890
|
-
const vars$
|
17086
|
+
const vars$n = GridClass.cssVarList;
|
16891
17087
|
|
16892
17088
|
const grid = {
|
16893
|
-
[vars$
|
16894
|
-
[vars$
|
16895
|
-
[vars$
|
16896
|
-
[vars$
|
16897
|
-
[vars$
|
16898
|
-
|
16899
|
-
[vars$
|
16900
|
-
[vars$
|
16901
|
-
|
16902
|
-
[vars$
|
16903
|
-
[vars$
|
16904
|
-
[vars$
|
16905
|
-
|
16906
|
-
[vars$
|
16907
|
-
[vars$
|
16908
|
-
[vars$
|
16909
|
-
[vars$
|
16910
|
-
|
16911
|
-
[vars$
|
16912
|
-
[vars$
|
16913
|
-
|
16914
|
-
[vars$
|
16915
|
-
[vars$
|
16916
|
-
[vars$
|
16917
|
-
|
16918
|
-
[vars$
|
16919
|
-
[vars$
|
16920
|
-
[vars$
|
16921
|
-
[vars$
|
16922
|
-
[vars$
|
16923
|
-
[vars$
|
16924
|
-
[vars$
|
16925
|
-
[vars$
|
16926
|
-
[vars$
|
16927
|
-
[vars$
|
17089
|
+
[vars$n.hostWidth]: '100%',
|
17090
|
+
[vars$n.hostHeight]: '100%',
|
17091
|
+
[vars$n.hostMinHeight]: '400px',
|
17092
|
+
[vars$n.fontWeight]: '400',
|
17093
|
+
[vars$n.backgroundColor]: globalRefs$h.colors.surface.main,
|
17094
|
+
|
17095
|
+
[vars$n.fontSize]: refs.fontSize,
|
17096
|
+
[vars$n.fontFamily]: refs.fontFamily,
|
17097
|
+
|
17098
|
+
[vars$n.sortIndicatorsColor]: globalRefs$h.colors.surface.light,
|
17099
|
+
[vars$n.activeSortIndicator]: globalRefs$h.colors.surface.dark,
|
17100
|
+
[vars$n.resizeHandleColor]: globalRefs$h.colors.surface.light,
|
17101
|
+
|
17102
|
+
[vars$n.borderWidth]: refs.borderWidth,
|
17103
|
+
[vars$n.borderStyle]: refs.borderStyle,
|
17104
|
+
[vars$n.borderRadius]: refs.borderRadius,
|
17105
|
+
[vars$n.borderColor]: 'transparent',
|
17106
|
+
|
17107
|
+
[vars$n.headerRowTextColor]: globalRefs$h.colors.surface.dark,
|
17108
|
+
[vars$n.separatorColor]: globalRefs$h.colors.surface.light,
|
17109
|
+
|
17110
|
+
[vars$n.valueTextColor]: globalRefs$h.colors.surface.contrast,
|
17111
|
+
[vars$n.selectedBackgroundColor]: globalRefs$h.colors.surface.highlight,
|
17112
|
+
[vars$n.hostDirection]: globalRefs$h.direction,
|
17113
|
+
|
17114
|
+
[vars$n.toggleDetailsPanelButtonSize]: '1em',
|
17115
|
+
[vars$n.toggleDetailsPanelButtonOpenedColor]: globalRefs$h.colors.surface.contrast,
|
17116
|
+
[vars$n.toggleDetailsPanelButtonClosedColor]: globalRefs$h.colors.surface.light,
|
17117
|
+
[vars$n.toggleDetailsPanelButtonCursor]: 'pointer',
|
17118
|
+
[vars$n.detailsPanelBackgroundColor]: globalRefs$h.colors.surface.highlight,
|
17119
|
+
[vars$n.detailsPanelBorderTopColor]: globalRefs$h.colors.surface.light,
|
17120
|
+
[vars$n.detailsPanelLabelsColor]: globalRefs$h.colors.surface.dark,
|
17121
|
+
[vars$n.detailsPanelLabelsFontSize]: '0.8em',
|
17122
|
+
[vars$n.detailsPanelItemsGap]: '2em',
|
17123
|
+
[vars$n.detailsPanelPadding]: '12px 0',
|
16928
17124
|
|
16929
17125
|
_bordered: {
|
16930
|
-
[vars$
|
17126
|
+
[vars$n.borderColor]: refs.borderColor,
|
16931
17127
|
},
|
16932
17128
|
};
|
16933
17129
|
|
@@ -16935,53 +17131,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
|
|
16935
17131
|
__proto__: null,
|
16936
17132
|
default: grid,
|
16937
17133
|
grid: grid,
|
16938
|
-
vars: vars$
|
17134
|
+
vars: vars$n
|
16939
17135
|
});
|
16940
17136
|
|
16941
17137
|
const globalRefs$g = getThemeRefs(globals);
|
16942
|
-
const vars$
|
17138
|
+
const vars$m = NotificationCardClass.cssVarList;
|
16943
17139
|
|
16944
17140
|
const shadowColor$2 = '#00000020';
|
16945
17141
|
|
16946
17142
|
const notification = {
|
16947
|
-
[vars$
|
16948
|
-
[vars$
|
16949
|
-
[vars$
|
16950
|
-
[vars$
|
16951
|
-
[vars$
|
16952
|
-
[vars$
|
16953
|
-
[vars$
|
16954
|
-
[vars$
|
16955
|
-
[vars$
|
17143
|
+
[vars$m.hostMinWidth]: '415px',
|
17144
|
+
[vars$m.fontFamily]: globalRefs$g.fonts.font1.family,
|
17145
|
+
[vars$m.fontSize]: globalRefs$g.typography.body1.size,
|
17146
|
+
[vars$m.backgroundColor]: globalRefs$g.colors.surface.main,
|
17147
|
+
[vars$m.textColor]: globalRefs$g.colors.surface.contrast,
|
17148
|
+
[vars$m.boxShadow]: `${globalRefs$g.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$g.shadow.narrow.xl} ${shadowColor$2}`,
|
17149
|
+
[vars$m.verticalPadding]: '0.625em',
|
17150
|
+
[vars$m.horizontalPadding]: '1.5em',
|
17151
|
+
[vars$m.borderRadius]: globalRefs$g.radius.xs,
|
16956
17152
|
|
16957
17153
|
_bordered: {
|
16958
|
-
[vars$
|
16959
|
-
[vars$
|
16960
|
-
[vars$
|
17154
|
+
[vars$m.borderWidth]: globalRefs$g.border.sm,
|
17155
|
+
[vars$m.borderStyle]: 'solid',
|
17156
|
+
[vars$m.borderColor]: 'transparent',
|
16961
17157
|
},
|
16962
17158
|
|
16963
17159
|
size: {
|
16964
|
-
xs: { [vars$
|
16965
|
-
sm: { [vars$
|
16966
|
-
md: { [vars$
|
16967
|
-
lg: { [vars$
|
17160
|
+
xs: { [vars$m.fontSize]: '12px' },
|
17161
|
+
sm: { [vars$m.fontSize]: '14px' },
|
17162
|
+
md: { [vars$m.fontSize]: '16px' },
|
17163
|
+
lg: { [vars$m.fontSize]: '18px' },
|
16968
17164
|
},
|
16969
17165
|
|
16970
17166
|
mode: {
|
16971
17167
|
primary: {
|
16972
|
-
[vars$
|
16973
|
-
[vars$
|
16974
|
-
[vars$
|
17168
|
+
[vars$m.backgroundColor]: globalRefs$g.colors.primary.main,
|
17169
|
+
[vars$m.textColor]: globalRefs$g.colors.primary.contrast,
|
17170
|
+
[vars$m.borderColor]: globalRefs$g.colors.primary.light,
|
16975
17171
|
},
|
16976
17172
|
success: {
|
16977
|
-
[vars$
|
16978
|
-
[vars$
|
16979
|
-
[vars$
|
17173
|
+
[vars$m.backgroundColor]: globalRefs$g.colors.success.main,
|
17174
|
+
[vars$m.textColor]: globalRefs$g.colors.success.contrast,
|
17175
|
+
[vars$m.borderColor]: globalRefs$g.colors.success.light,
|
16980
17176
|
},
|
16981
17177
|
error: {
|
16982
|
-
[vars$
|
16983
|
-
[vars$
|
16984
|
-
[vars$
|
17178
|
+
[vars$m.backgroundColor]: globalRefs$g.colors.error.main,
|
17179
|
+
[vars$m.textColor]: globalRefs$g.colors.error.contrast,
|
17180
|
+
[vars$m.borderColor]: globalRefs$g.colors.error.light,
|
16985
17181
|
},
|
16986
17182
|
},
|
16987
17183
|
};
|
@@ -16989,148 +17185,148 @@ const notification = {
|
|
16989
17185
|
var notificationCard = /*#__PURE__*/Object.freeze({
|
16990
17186
|
__proto__: null,
|
16991
17187
|
default: notification,
|
16992
|
-
vars: vars$
|
17188
|
+
vars: vars$m
|
16993
17189
|
});
|
16994
17190
|
|
16995
17191
|
const globalRefs$f = getThemeRefs(globals);
|
16996
|
-
const vars$
|
17192
|
+
const vars$l = MultiSelectComboBoxClass.cssVarList;
|
16997
17193
|
|
16998
17194
|
const multiSelectComboBox = {
|
16999
|
-
[vars$
|
17000
|
-
[vars$
|
17001
|
-
[vars$
|
17002
|
-
[vars$
|
17003
|
-
[vars$
|
17004
|
-
[vars$
|
17005
|
-
[vars$
|
17006
|
-
[vars$
|
17007
|
-
[vars$
|
17008
|
-
[vars$
|
17009
|
-
[vars$
|
17010
|
-
[vars$
|
17011
|
-
[vars$
|
17012
|
-
[vars$
|
17013
|
-
[vars$
|
17014
|
-
[vars$
|
17015
|
-
[vars$
|
17016
|
-
[vars$
|
17017
|
-
[vars$
|
17018
|
-
[vars$
|
17019
|
-
[vars$
|
17020
|
-
[vars$
|
17021
|
-
[vars$
|
17022
|
-
[vars$
|
17023
|
-
[vars$
|
17024
|
-
[vars$
|
17025
|
-
[vars$
|
17026
|
-
[vars$
|
17027
|
-
[vars$
|
17028
|
-
[vars$
|
17029
|
-
[vars$
|
17030
|
-
[vars$
|
17031
|
-
[vars$
|
17032
|
-
[vars$
|
17033
|
-
[vars$
|
17034
|
-
[vars$
|
17035
|
-
[vars$
|
17036
|
-
[vars$
|
17037
|
-
[vars$
|
17038
|
-
[vars$
|
17039
|
-
[vars$
|
17195
|
+
[vars$l.hostWidth]: refs.width,
|
17196
|
+
[vars$l.hostDirection]: refs.direction,
|
17197
|
+
[vars$l.fontSize]: refs.fontSize,
|
17198
|
+
[vars$l.fontFamily]: refs.fontFamily,
|
17199
|
+
[vars$l.labelFontSize]: refs.labelFontSize,
|
17200
|
+
[vars$l.labelFontWeight]: refs.labelFontWeight,
|
17201
|
+
[vars$l.labelTextColor]: refs.labelTextColor,
|
17202
|
+
[vars$l.errorMessageTextColor]: refs.errorMessageTextColor,
|
17203
|
+
[vars$l.inputBorderColor]: refs.borderColor,
|
17204
|
+
[vars$l.inputBorderWidth]: refs.borderWidth,
|
17205
|
+
[vars$l.inputBorderStyle]: refs.borderStyle,
|
17206
|
+
[vars$l.inputBorderRadius]: refs.borderRadius,
|
17207
|
+
[vars$l.inputOutlineColor]: refs.outlineColor,
|
17208
|
+
[vars$l.inputOutlineOffset]: refs.outlineOffset,
|
17209
|
+
[vars$l.inputOutlineWidth]: refs.outlineWidth,
|
17210
|
+
[vars$l.inputOutlineStyle]: refs.outlineStyle,
|
17211
|
+
[vars$l.labelRequiredIndicator]: refs.requiredIndicator,
|
17212
|
+
[vars$l.inputValueTextColor]: refs.valueTextColor,
|
17213
|
+
[vars$l.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
17214
|
+
[vars$l.inputBackgroundColor]: refs.backgroundColor,
|
17215
|
+
[vars$l.inputHorizontalPadding]: refs.horizontalPadding,
|
17216
|
+
[vars$l.inputVerticalPadding]: refs.verticalPadding,
|
17217
|
+
[vars$l.inputHeight]: refs.inputHeight,
|
17218
|
+
[vars$l.inputDropdownButtonColor]: globalRefs$f.colors.surface.dark,
|
17219
|
+
[vars$l.inputDropdownButtonCursor]: 'pointer',
|
17220
|
+
[vars$l.inputDropdownButtonSize]: refs.toggleButtonSize,
|
17221
|
+
[vars$l.inputDropdownButtonOffset]: globalRefs$f.spacing.xs,
|
17222
|
+
[vars$l.overlayItemPaddingInlineStart]: globalRefs$f.spacing.xs,
|
17223
|
+
[vars$l.overlayItemPaddingInlineEnd]: globalRefs$f.spacing.lg,
|
17224
|
+
[vars$l.chipFontSize]: refs.chipFontSize,
|
17225
|
+
[vars$l.chipTextColor]: globalRefs$f.colors.surface.contrast,
|
17226
|
+
[vars$l.chipBackgroundColor]: globalRefs$f.colors.surface.light,
|
17227
|
+
[vars$l.labelPosition]: refs.labelPosition,
|
17228
|
+
[vars$l.labelTopPosition]: refs.labelTopPosition,
|
17229
|
+
[vars$l.labelLeftPosition]: refs.labelLeftPosition,
|
17230
|
+
[vars$l.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
17231
|
+
[vars$l.inputTransformY]: refs.inputTransformY,
|
17232
|
+
[vars$l.inputTransition]: refs.inputTransition,
|
17233
|
+
[vars$l.marginInlineStart]: refs.marginInlineStart,
|
17234
|
+
[vars$l.placeholderOpacity]: refs.placeholderOpacity,
|
17235
|
+
[vars$l.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
17040
17236
|
|
17041
17237
|
labelType: {
|
17042
17238
|
floating: {
|
17043
|
-
[vars$
|
17239
|
+
[vars$l.inputHorizontalPadding]: '0.25em',
|
17044
17240
|
_hasValue: {
|
17045
|
-
[vars$
|
17241
|
+
[vars$l.inputHorizontalPadding]: '0.45em',
|
17046
17242
|
},
|
17047
17243
|
},
|
17048
17244
|
},
|
17049
17245
|
|
17050
17246
|
_readonly: {
|
17051
|
-
[vars$
|
17247
|
+
[vars$l.inputDropdownButtonCursor]: 'default',
|
17052
17248
|
},
|
17053
17249
|
|
17054
17250
|
// Overlay theme exposed via the component:
|
17055
|
-
[vars$
|
17056
|
-
[vars$
|
17057
|
-
[vars$
|
17058
|
-
[vars$
|
17059
|
-
[vars$
|
17060
|
-
[vars$
|
17251
|
+
[vars$l.overlayFontSize]: refs.fontSize,
|
17252
|
+
[vars$l.overlayFontFamily]: refs.fontFamily,
|
17253
|
+
[vars$l.overlayCursor]: 'pointer',
|
17254
|
+
[vars$l.overlayItemBoxShadow]: 'none',
|
17255
|
+
[vars$l.overlayBackground]: refs.backgroundColor,
|
17256
|
+
[vars$l.overlayTextColor]: refs.valueTextColor,
|
17061
17257
|
|
17062
17258
|
// Overlay direct theme:
|
17063
|
-
[vars$
|
17064
|
-
[vars$
|
17259
|
+
[vars$l.overlay.minHeight]: '400px',
|
17260
|
+
[vars$l.overlay.margin]: '0',
|
17065
17261
|
};
|
17066
17262
|
|
17067
17263
|
var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
|
17068
17264
|
__proto__: null,
|
17069
17265
|
default: multiSelectComboBox,
|
17070
17266
|
multiSelectComboBox: multiSelectComboBox,
|
17071
|
-
vars: vars$
|
17267
|
+
vars: vars$l
|
17072
17268
|
});
|
17073
17269
|
|
17074
17270
|
const globalRefs$e = getThemeRefs(globals);
|
17075
|
-
const vars$
|
17271
|
+
const vars$k = BadgeClass.cssVarList;
|
17076
17272
|
|
17077
17273
|
const badge = {
|
17078
|
-
[vars$
|
17079
|
-
[vars$
|
17274
|
+
[vars$k.hostWidth]: 'fit-content',
|
17275
|
+
[vars$k.hostDirection]: globalRefs$e.direction,
|
17080
17276
|
|
17081
|
-
[vars$
|
17277
|
+
[vars$k.textAlign]: 'center',
|
17082
17278
|
|
17083
|
-
[vars$
|
17084
|
-
[vars$
|
17279
|
+
[vars$k.fontFamily]: globalRefs$e.fonts.font1.family,
|
17280
|
+
[vars$k.fontWeight]: '400',
|
17085
17281
|
|
17086
|
-
[vars$
|
17087
|
-
[vars$
|
17282
|
+
[vars$k.verticalPadding]: '0.25em',
|
17283
|
+
[vars$k.horizontalPadding]: '0.5em',
|
17088
17284
|
|
17089
|
-
[vars$
|
17090
|
-
[vars$
|
17091
|
-
[vars$
|
17092
|
-
[vars$
|
17285
|
+
[vars$k.borderWidth]: globalRefs$e.border.xs,
|
17286
|
+
[vars$k.borderRadius]: globalRefs$e.radius.xs,
|
17287
|
+
[vars$k.borderColor]: 'transparent',
|
17288
|
+
[vars$k.borderStyle]: 'solid',
|
17093
17289
|
|
17094
17290
|
_fullWidth: {
|
17095
|
-
[vars$
|
17291
|
+
[vars$k.hostWidth]: '100%',
|
17096
17292
|
},
|
17097
17293
|
|
17098
17294
|
size: {
|
17099
|
-
xs: { [vars$
|
17100
|
-
sm: { [vars$
|
17101
|
-
md: { [vars$
|
17102
|
-
lg: { [vars$
|
17295
|
+
xs: { [vars$k.fontSize]: '12px' },
|
17296
|
+
sm: { [vars$k.fontSize]: '14px' },
|
17297
|
+
md: { [vars$k.fontSize]: '16px' },
|
17298
|
+
lg: { [vars$k.fontSize]: '18px' },
|
17103
17299
|
},
|
17104
17300
|
|
17105
17301
|
mode: {
|
17106
17302
|
default: {
|
17107
|
-
[vars$
|
17303
|
+
[vars$k.textColor]: globalRefs$e.colors.surface.dark,
|
17108
17304
|
_bordered: {
|
17109
|
-
[vars$
|
17305
|
+
[vars$k.borderColor]: globalRefs$e.colors.surface.light,
|
17110
17306
|
},
|
17111
17307
|
},
|
17112
17308
|
primary: {
|
17113
|
-
[vars$
|
17309
|
+
[vars$k.textColor]: globalRefs$e.colors.primary.main,
|
17114
17310
|
_bordered: {
|
17115
|
-
[vars$
|
17311
|
+
[vars$k.borderColor]: globalRefs$e.colors.primary.light,
|
17116
17312
|
},
|
17117
17313
|
},
|
17118
17314
|
secondary: {
|
17119
|
-
[vars$
|
17315
|
+
[vars$k.textColor]: globalRefs$e.colors.secondary.main,
|
17120
17316
|
_bordered: {
|
17121
|
-
[vars$
|
17317
|
+
[vars$k.borderColor]: globalRefs$e.colors.secondary.light,
|
17122
17318
|
},
|
17123
17319
|
},
|
17124
17320
|
error: {
|
17125
|
-
[vars$
|
17321
|
+
[vars$k.textColor]: globalRefs$e.colors.error.main,
|
17126
17322
|
_bordered: {
|
17127
|
-
[vars$
|
17323
|
+
[vars$k.borderColor]: globalRefs$e.colors.error.light,
|
17128
17324
|
},
|
17129
17325
|
},
|
17130
17326
|
success: {
|
17131
|
-
[vars$
|
17327
|
+
[vars$k.textColor]: globalRefs$e.colors.success.main,
|
17132
17328
|
_bordered: {
|
17133
|
-
[vars$
|
17329
|
+
[vars$k.borderColor]: globalRefs$e.colors.success.light,
|
17134
17330
|
},
|
17135
17331
|
},
|
17136
17332
|
},
|
@@ -17139,7 +17335,7 @@ const badge = {
|
|
17139
17335
|
var badge$1 = /*#__PURE__*/Object.freeze({
|
17140
17336
|
__proto__: null,
|
17141
17337
|
default: badge,
|
17142
|
-
vars: vars$
|
17338
|
+
vars: vars$k
|
17143
17339
|
});
|
17144
17340
|
|
17145
17341
|
const globalRefs$d = getThemeRefs(globals);
|
@@ -17177,143 +17373,143 @@ const avatar = {
|
|
17177
17373
|
},
|
17178
17374
|
};
|
17179
17375
|
|
17180
|
-
const vars$
|
17376
|
+
const vars$j = {
|
17181
17377
|
...compVars$1,
|
17182
17378
|
};
|
17183
17379
|
|
17184
17380
|
var avatar$1 = /*#__PURE__*/Object.freeze({
|
17185
17381
|
__proto__: null,
|
17186
17382
|
default: avatar,
|
17187
|
-
vars: vars$
|
17383
|
+
vars: vars$j
|
17188
17384
|
});
|
17189
17385
|
|
17190
17386
|
const globalRefs$c = getThemeRefs(globals);
|
17191
17387
|
|
17192
|
-
const vars$
|
17388
|
+
const vars$i = MappingsFieldClass.cssVarList;
|
17193
17389
|
|
17194
17390
|
const mappingsField = {
|
17195
|
-
[vars$
|
17196
|
-
[vars$
|
17197
|
-
[vars$
|
17198
|
-
[vars$
|
17199
|
-
[vars$
|
17200
|
-
[vars$
|
17201
|
-
[vars$
|
17202
|
-
[vars$
|
17203
|
-
[vars$
|
17204
|
-
[vars$
|
17391
|
+
[vars$i.hostWidth]: refs.width,
|
17392
|
+
[vars$i.hostDirection]: refs.direction,
|
17393
|
+
[vars$i.fontSize]: refs.fontSize,
|
17394
|
+
[vars$i.fontFamily]: refs.fontFamily,
|
17395
|
+
[vars$i.separatorFontSize]: '14px',
|
17396
|
+
[vars$i.labelsFontSize]: '14px',
|
17397
|
+
[vars$i.labelsLineHeight]: '1',
|
17398
|
+
[vars$i.labelsMarginBottom]: '6px',
|
17399
|
+
[vars$i.labelTextColor]: refs.labelTextColor,
|
17400
|
+
[vars$i.itemMarginBottom]: '1em',
|
17205
17401
|
// To be positioned correctly, the min width has to match the text field min width
|
17206
|
-
[vars$
|
17402
|
+
[vars$i.valueLabelMinWidth]: refs.minWidth,
|
17207
17403
|
// To be positioned correctly, the min width has to match the combo box field min width
|
17208
|
-
[vars$
|
17209
|
-
[vars$
|
17210
|
-
[vars$
|
17404
|
+
[vars$i.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
|
17405
|
+
[vars$i.separatorWidth]: '70px',
|
17406
|
+
[vars$i.removeButtonWidth]: '60px',
|
17211
17407
|
};
|
17212
17408
|
|
17213
17409
|
var mappingsField$1 = /*#__PURE__*/Object.freeze({
|
17214
17410
|
__proto__: null,
|
17215
17411
|
default: mappingsField,
|
17216
17412
|
mappingsField: mappingsField,
|
17217
|
-
vars: vars$
|
17413
|
+
vars: vars$i
|
17218
17414
|
});
|
17219
17415
|
|
17220
17416
|
const globalRefs$b = getThemeRefs(globals);
|
17221
|
-
const vars$
|
17417
|
+
const vars$h = UserAttributeClass.cssVarList;
|
17222
17418
|
|
17223
17419
|
const userAttribute = {
|
17224
|
-
[vars$
|
17225
|
-
[vars$
|
17226
|
-
[vars$
|
17227
|
-
[vars$
|
17228
|
-
[vars$
|
17229
|
-
[vars$
|
17420
|
+
[vars$h.hostDirection]: globalRefs$b.direction,
|
17421
|
+
[vars$h.labelTextWidth]: '150px',
|
17422
|
+
[vars$h.valueTextWidth]: '200px',
|
17423
|
+
[vars$h.badgeMaxWidth]: '85px',
|
17424
|
+
[vars$h.itemsGap]: '16px',
|
17425
|
+
[vars$h.hostMinWidth]: '530px',
|
17230
17426
|
_fullWidth: {
|
17231
|
-
[vars$
|
17427
|
+
[vars$h.hostWidth]: '100%',
|
17232
17428
|
},
|
17233
17429
|
};
|
17234
17430
|
|
17235
17431
|
var userAttribute$1 = /*#__PURE__*/Object.freeze({
|
17236
17432
|
__proto__: null,
|
17237
17433
|
default: userAttribute,
|
17238
|
-
vars: vars$
|
17434
|
+
vars: vars$h
|
17239
17435
|
});
|
17240
17436
|
|
17241
17437
|
const globalRefs$a = getThemeRefs(globals);
|
17242
|
-
const vars$
|
17438
|
+
const vars$g = UserAuthMethodClass.cssVarList;
|
17243
17439
|
|
17244
17440
|
const userAuthMethod = {
|
17245
|
-
[vars$
|
17246
|
-
[vars$
|
17247
|
-
[vars$
|
17248
|
-
[vars$
|
17249
|
-
[vars$
|
17441
|
+
[vars$g.hostDirection]: globalRefs$a.direction,
|
17442
|
+
[vars$g.labelTextWidth]: '200px',
|
17443
|
+
[vars$g.itemsGap]: '16px',
|
17444
|
+
[vars$g.hostMinWidth]: '530px',
|
17445
|
+
[vars$g.iconSize]: '24px',
|
17250
17446
|
_fullWidth: {
|
17251
|
-
[vars$
|
17447
|
+
[vars$g.hostWidth]: '100%',
|
17252
17448
|
},
|
17253
17449
|
};
|
17254
17450
|
|
17255
17451
|
var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
|
17256
17452
|
__proto__: null,
|
17257
17453
|
default: userAuthMethod,
|
17258
|
-
vars: vars$
|
17454
|
+
vars: vars$g
|
17259
17455
|
});
|
17260
17456
|
|
17261
|
-
const vars$
|
17457
|
+
const vars$f = SamlGroupMappingsClass.cssVarList;
|
17262
17458
|
|
17263
17459
|
const samlGroupMappings = {
|
17264
|
-
[vars$
|
17265
|
-
[vars$
|
17266
|
-
[vars$
|
17460
|
+
[vars$f.hostWidth]: refs.width,
|
17461
|
+
[vars$f.hostDirection]: refs.direction,
|
17462
|
+
[vars$f.groupNameInputMarginBottom]: '1em',
|
17267
17463
|
};
|
17268
17464
|
|
17269
17465
|
var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
|
17270
17466
|
__proto__: null,
|
17271
17467
|
default: samlGroupMappings,
|
17272
17468
|
samlGroupMappings: samlGroupMappings,
|
17273
|
-
vars: vars$
|
17469
|
+
vars: vars$f
|
17274
17470
|
});
|
17275
17471
|
|
17276
17472
|
const globalRefs$9 = getThemeRefs(globals);
|
17277
|
-
const vars$
|
17473
|
+
const vars$e = PolicyValidationClass.cssVarList;
|
17278
17474
|
|
17279
17475
|
const policyValidation = {
|
17280
|
-
[vars$
|
17281
|
-
[vars$
|
17282
|
-
[vars$
|
17283
|
-
[vars$
|
17284
|
-
[vars$
|
17285
|
-
[vars$
|
17286
|
-
[vars$
|
17287
|
-
[vars$
|
17288
|
-
[vars$
|
17289
|
-
[vars$
|
17290
|
-
[vars$
|
17291
|
-
[vars$
|
17292
|
-
[vars$
|
17293
|
-
[vars$
|
17294
|
-
[vars$
|
17295
|
-
[vars$
|
17476
|
+
[vars$e.fontFamily]: refs.fontFamily,
|
17477
|
+
[vars$e.fontSize]: refs.labelFontSize,
|
17478
|
+
[vars$e.textColor]: refs.labelTextColor,
|
17479
|
+
[vars$e.borderWidth]: refs.borderWidth,
|
17480
|
+
[vars$e.borderStyle]: refs.borderStyle,
|
17481
|
+
[vars$e.borderColor]: refs.borderColor,
|
17482
|
+
[vars$e.borderRadius]: globalRefs$9.radius.sm,
|
17483
|
+
[vars$e.backgroundColor]: 'none',
|
17484
|
+
[vars$e.padding]: '0px',
|
17485
|
+
[vars$e.labelMargin]: globalRefs$9.spacing.sm,
|
17486
|
+
[vars$e.itemsSpacing]: globalRefs$9.spacing.lg,
|
17487
|
+
[vars$e.itemSymbolDefault]: "'\\2022'", // "•"
|
17488
|
+
[vars$e.itemSymbolSuccess]: "'\\2713'", // "✓"
|
17489
|
+
[vars$e.itemSymbolError]: "'\\2A09'", // "⨉"
|
17490
|
+
[vars$e.itemSymbolSuccessColor]: globalRefs$9.colors.success.main,
|
17491
|
+
[vars$e.itemSymbolErrorColor]: globalRefs$9.colors.error.main,
|
17296
17492
|
};
|
17297
17493
|
|
17298
17494
|
var policyValidation$1 = /*#__PURE__*/Object.freeze({
|
17299
17495
|
__proto__: null,
|
17300
17496
|
default: policyValidation,
|
17301
|
-
vars: vars$
|
17497
|
+
vars: vars$e
|
17302
17498
|
});
|
17303
17499
|
|
17304
|
-
const vars$
|
17500
|
+
const vars$d = IconClass.cssVarList;
|
17305
17501
|
|
17306
17502
|
const icon = {};
|
17307
17503
|
|
17308
17504
|
var icon$1 = /*#__PURE__*/Object.freeze({
|
17309
17505
|
__proto__: null,
|
17310
17506
|
default: icon,
|
17311
|
-
vars: vars$
|
17507
|
+
vars: vars$d
|
17312
17508
|
});
|
17313
17509
|
|
17314
17510
|
const globalRefs$8 = getThemeRefs(globals);
|
17315
17511
|
|
17316
|
-
const vars$
|
17512
|
+
const vars$c = CodeSnippetClass.cssVarList;
|
17317
17513
|
|
17318
17514
|
const light = {
|
17319
17515
|
color1: '#fa0',
|
@@ -17348,50 +17544,50 @@ const dark = {
|
|
17348
17544
|
};
|
17349
17545
|
|
17350
17546
|
const CodeSnippet = {
|
17351
|
-
[vars$
|
17352
|
-
[vars$
|
17353
|
-
[vars$
|
17354
|
-
[vars$
|
17355
|
-
[vars$
|
17356
|
-
[vars$
|
17357
|
-
[vars$
|
17358
|
-
[vars$
|
17359
|
-
[vars$
|
17360
|
-
[vars$
|
17361
|
-
[vars$
|
17362
|
-
[vars$
|
17363
|
-
[vars$
|
17364
|
-
[vars$
|
17365
|
-
[vars$
|
17366
|
-
[vars$
|
17367
|
-
[vars$
|
17368
|
-
[vars$
|
17369
|
-
[vars$
|
17370
|
-
[vars$
|
17371
|
-
[vars$
|
17372
|
-
[vars$
|
17373
|
-
[vars$
|
17374
|
-
[vars$
|
17375
|
-
[vars$
|
17376
|
-
[vars$
|
17377
|
-
[vars$
|
17378
|
-
[vars$
|
17379
|
-
[vars$
|
17380
|
-
[vars$
|
17381
|
-
[vars$
|
17382
|
-
[vars$
|
17383
|
-
[vars$
|
17384
|
-
[vars$
|
17385
|
-
[vars$
|
17386
|
-
[vars$
|
17387
|
-
[vars$
|
17388
|
-
[vars$
|
17389
|
-
[vars$
|
17390
|
-
[vars$
|
17391
|
-
[vars$
|
17392
|
-
[vars$
|
17393
|
-
[vars$
|
17394
|
-
[vars$
|
17547
|
+
[vars$c.rootBgColor]: globalRefs$8.colors.surface.main,
|
17548
|
+
[vars$c.rootTextColor]: globalRefs$8.colors.surface.contrast,
|
17549
|
+
[vars$c.docTagTextColor]: light.color2,
|
17550
|
+
[vars$c.keywordTextColor]: light.color2,
|
17551
|
+
[vars$c.metaKeywordTextColor]: light.color2,
|
17552
|
+
[vars$c.templateTagTextColor]: light.color2,
|
17553
|
+
[vars$c.templateVariableTextColor]: light.color2,
|
17554
|
+
[vars$c.typeTextColor]: light.color2,
|
17555
|
+
[vars$c.variableLanguageTextColor]: light.color2,
|
17556
|
+
[vars$c.titleTextColor]: light.color3,
|
17557
|
+
[vars$c.titleClassTextColor]: light.color3,
|
17558
|
+
[vars$c.titleClassInheritedTextColor]: light.color3,
|
17559
|
+
[vars$c.titleFunctionTextColor]: light.color3,
|
17560
|
+
[vars$c.attrTextColor]: light.color4,
|
17561
|
+
[vars$c.attributeTextColor]: light.color4,
|
17562
|
+
[vars$c.literalTextColor]: light.color4,
|
17563
|
+
[vars$c.metaTextColor]: light.color4,
|
17564
|
+
[vars$c.numberTextColor]: light.color4,
|
17565
|
+
[vars$c.operatorTextColor]: light.color4,
|
17566
|
+
[vars$c.variableTextColor]: light.color4,
|
17567
|
+
[vars$c.selectorAttrTextColor]: light.color4,
|
17568
|
+
[vars$c.selectorClassTextColor]: light.color4,
|
17569
|
+
[vars$c.selectorIdTextColor]: light.color4,
|
17570
|
+
[vars$c.regexpTextColor]: light.color13,
|
17571
|
+
[vars$c.stringTextColor]: light.color13,
|
17572
|
+
[vars$c.metaStringTextColor]: light.color13,
|
17573
|
+
[vars$c.builtInTextColor]: light.color5,
|
17574
|
+
[vars$c.symbolTextColor]: light.color5,
|
17575
|
+
[vars$c.commentTextColor]: light.color6,
|
17576
|
+
[vars$c.codeTextColor]: light.color6,
|
17577
|
+
[vars$c.formulaTextColor]: light.color6,
|
17578
|
+
[vars$c.nameTextColor]: light.color7,
|
17579
|
+
[vars$c.quoteTextColor]: light.color7,
|
17580
|
+
[vars$c.selectorTagTextColor]: light.color7,
|
17581
|
+
[vars$c.selectorPseudoTextColor]: light.color7,
|
17582
|
+
[vars$c.substTextColor]: light.color8,
|
17583
|
+
[vars$c.sectionTextColor]: light.color4,
|
17584
|
+
[vars$c.bulletTextColor]: light.color9,
|
17585
|
+
[vars$c.emphasisTextColor]: light.color8,
|
17586
|
+
[vars$c.strongTextColor]: light.color8,
|
17587
|
+
[vars$c.additionTextColor]: light.color7,
|
17588
|
+
[vars$c.additionBgColor]: light.color10,
|
17589
|
+
[vars$c.deletionTextColor]: light.color2,
|
17590
|
+
[vars$c.deletionBgColor]: light.color10,
|
17395
17591
|
/* purposely ignored */
|
17396
17592
|
// [vars.charEscapeTextColor]: '',
|
17397
17593
|
// [vars.linkTextColor]: '',
|
@@ -17403,50 +17599,50 @@ const CodeSnippet = {
|
|
17403
17599
|
|
17404
17600
|
const codeSnippetDarkThemeOverrides = {
|
17405
17601
|
codeSnippet: {
|
17406
|
-
[vars$
|
17407
|
-
[vars$
|
17408
|
-
[vars$
|
17409
|
-
[vars$
|
17410
|
-
[vars$
|
17411
|
-
[vars$
|
17412
|
-
[vars$
|
17413
|
-
[vars$
|
17414
|
-
[vars$
|
17415
|
-
[vars$
|
17416
|
-
[vars$
|
17417
|
-
[vars$
|
17418
|
-
[vars$
|
17419
|
-
[vars$
|
17420
|
-
[vars$
|
17421
|
-
[vars$
|
17422
|
-
[vars$
|
17423
|
-
[vars$
|
17424
|
-
[vars$
|
17425
|
-
[vars$
|
17426
|
-
[vars$
|
17427
|
-
[vars$
|
17428
|
-
[vars$
|
17429
|
-
[vars$
|
17430
|
-
[vars$
|
17431
|
-
[vars$
|
17432
|
-
[vars$
|
17433
|
-
[vars$
|
17434
|
-
[vars$
|
17435
|
-
[vars$
|
17436
|
-
[vars$
|
17437
|
-
[vars$
|
17438
|
-
[vars$
|
17439
|
-
[vars$
|
17440
|
-
[vars$
|
17441
|
-
[vars$
|
17442
|
-
[vars$
|
17443
|
-
[vars$
|
17444
|
-
[vars$
|
17445
|
-
[vars$
|
17446
|
-
[vars$
|
17447
|
-
[vars$
|
17448
|
-
[vars$
|
17449
|
-
[vars$
|
17602
|
+
[vars$c.rootBgColor]: globalRefs$8.colors.surface.main,
|
17603
|
+
[vars$c.rootTextColor]: globalRefs$8.colors.surface.contrast,
|
17604
|
+
[vars$c.docTagTextColor]: dark.color2,
|
17605
|
+
[vars$c.keywordTextColor]: dark.color2,
|
17606
|
+
[vars$c.metaKeywordTextColor]: dark.color2,
|
17607
|
+
[vars$c.templateTagTextColor]: dark.color2,
|
17608
|
+
[vars$c.templateVariableTextColor]: dark.color2,
|
17609
|
+
[vars$c.typeTextColor]: dark.color2,
|
17610
|
+
[vars$c.variableLanguageTextColor]: dark.color2,
|
17611
|
+
[vars$c.titleTextColor]: dark.color3,
|
17612
|
+
[vars$c.titleClassTextColor]: dark.color3,
|
17613
|
+
[vars$c.titleClassInheritedTextColor]: dark.color3,
|
17614
|
+
[vars$c.titleFunctionTextColor]: dark.color3,
|
17615
|
+
[vars$c.attrTextColor]: dark.color4,
|
17616
|
+
[vars$c.attributeTextColor]: dark.color4,
|
17617
|
+
[vars$c.literalTextColor]: dark.color4,
|
17618
|
+
[vars$c.metaTextColor]: dark.color4,
|
17619
|
+
[vars$c.numberTextColor]: dark.color4,
|
17620
|
+
[vars$c.operatorTextColor]: dark.color4,
|
17621
|
+
[vars$c.variableTextColor]: dark.color4,
|
17622
|
+
[vars$c.selectorAttrTextColor]: dark.color4,
|
17623
|
+
[vars$c.selectorClassTextColor]: dark.color4,
|
17624
|
+
[vars$c.selectorIdTextColor]: dark.color4,
|
17625
|
+
[vars$c.regexpTextColor]: dark.color13,
|
17626
|
+
[vars$c.stringTextColor]: dark.color13,
|
17627
|
+
[vars$c.metaStringTextColor]: dark.color13,
|
17628
|
+
[vars$c.builtInTextColor]: dark.color5,
|
17629
|
+
[vars$c.symbolTextColor]: dark.color5,
|
17630
|
+
[vars$c.commentTextColor]: dark.color6,
|
17631
|
+
[vars$c.codeTextColor]: dark.color6,
|
17632
|
+
[vars$c.formulaTextColor]: dark.color6,
|
17633
|
+
[vars$c.nameTextColor]: dark.color7,
|
17634
|
+
[vars$c.quoteTextColor]: dark.color7,
|
17635
|
+
[vars$c.selectorTagTextColor]: dark.color7,
|
17636
|
+
[vars$c.selectorPseudoTextColor]: dark.color7,
|
17637
|
+
[vars$c.substTextColor]: dark.color8,
|
17638
|
+
[vars$c.sectionTextColor]: dark.color4,
|
17639
|
+
[vars$c.bulletTextColor]: dark.color9,
|
17640
|
+
[vars$c.emphasisTextColor]: dark.color8,
|
17641
|
+
[vars$c.strongTextColor]: dark.color8,
|
17642
|
+
[vars$c.additionTextColor]: dark.color7,
|
17643
|
+
[vars$c.additionBgColor]: dark.color10,
|
17644
|
+
[vars$c.deletionTextColor]: dark.color2,
|
17645
|
+
[vars$c.deletionBgColor]: dark.color10,
|
17450
17646
|
},
|
17451
17647
|
};
|
17452
17648
|
|
@@ -17454,36 +17650,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
|
|
17454
17650
|
__proto__: null,
|
17455
17651
|
codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
|
17456
17652
|
default: CodeSnippet,
|
17457
|
-
vars: vars$
|
17653
|
+
vars: vars$c
|
17458
17654
|
});
|
17459
17655
|
|
17460
|
-
const vars$
|
17656
|
+
const vars$b = RadioGroupClass.cssVarList;
|
17461
17657
|
const globalRefs$7 = getThemeRefs(globals);
|
17462
17658
|
|
17463
17659
|
const radioGroup = {
|
17464
|
-
[vars$
|
17465
|
-
[vars$
|
17466
|
-
[vars$
|
17467
|
-
[vars$
|
17468
|
-
[vars$
|
17469
|
-
[vars$
|
17470
|
-
[vars$
|
17471
|
-
[vars$
|
17472
|
-
[vars$
|
17473
|
-
[vars$
|
17660
|
+
[vars$b.buttonsRowGap]: '9px',
|
17661
|
+
[vars$b.hostWidth]: refs.width,
|
17662
|
+
[vars$b.hostDirection]: refs.direction,
|
17663
|
+
[vars$b.fontSize]: refs.fontSize,
|
17664
|
+
[vars$b.fontFamily]: refs.fontFamily,
|
17665
|
+
[vars$b.labelTextColor]: refs.labelTextColor,
|
17666
|
+
[vars$b.labelRequiredIndicator]: refs.requiredIndicator,
|
17667
|
+
[vars$b.errorMessageTextColor]: refs.errorMessageTextColor,
|
17668
|
+
[vars$b.helperTextColor]: refs.helperTextColor,
|
17669
|
+
[vars$b.itemsLabelColor]: globalRefs$7.colors.surface.contrast,
|
17474
17670
|
|
17475
17671
|
textAlign: {
|
17476
|
-
right: { [vars$
|
17477
|
-
left: { [vars$
|
17478
|
-
center: { [vars$
|
17672
|
+
right: { [vars$b.inputTextAlign]: 'right' },
|
17673
|
+
left: { [vars$b.inputTextAlign]: 'left' },
|
17674
|
+
center: { [vars$b.inputTextAlign]: 'center' },
|
17479
17675
|
},
|
17480
17676
|
|
17481
17677
|
_fullWidth: {
|
17482
|
-
[vars$
|
17678
|
+
[vars$b.buttonsSpacing]: 'space-between',
|
17483
17679
|
},
|
17484
17680
|
|
17485
17681
|
_disabled: {
|
17486
|
-
[vars$
|
17682
|
+
[vars$b.itemsLabelColor]: globalRefs$7.colors.surface.light,
|
17487
17683
|
},
|
17488
17684
|
};
|
17489
17685
|
|
@@ -17491,24 +17687,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
|
|
17491
17687
|
__proto__: null,
|
17492
17688
|
default: radioGroup,
|
17493
17689
|
radioGroup: radioGroup,
|
17494
|
-
vars: vars$
|
17690
|
+
vars: vars$b
|
17495
17691
|
});
|
17496
17692
|
|
17497
|
-
const vars$
|
17693
|
+
const vars$a = RadioButtonClass.cssVarList;
|
17498
17694
|
const globalRefs$6 = getThemeRefs(globals);
|
17499
17695
|
|
17500
17696
|
const radioButton = {
|
17501
|
-
[vars$
|
17502
|
-
[vars$
|
17503
|
-
[vars$
|
17504
|
-
[vars$
|
17505
|
-
[vars$
|
17506
|
-
[vars$
|
17507
|
-
[vars$
|
17508
|
-
[vars$
|
17697
|
+
[vars$a.fontFamily]: refs.fontFamily,
|
17698
|
+
[vars$a.radioSize]: 'calc(1em + 6px)',
|
17699
|
+
[vars$a.radioMargin]: 'auto 4px',
|
17700
|
+
[vars$a.radioCheckedSize]: `calc(var(${vars$a.radioSize})/5)`,
|
17701
|
+
[vars$a.radioCheckedColor]: globalRefs$6.colors.surface.light,
|
17702
|
+
[vars$a.radioBackgroundColor]: globalRefs$6.colors.surface.light,
|
17703
|
+
[vars$a.radioBorderColor]: 'none',
|
17704
|
+
[vars$a.radioBorderWidth]: 0,
|
17509
17705
|
|
17510
17706
|
_checked: {
|
17511
|
-
[vars$
|
17707
|
+
[vars$a.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
|
17512
17708
|
},
|
17513
17709
|
|
17514
17710
|
_hover: {
|
@@ -17517,16 +17713,16 @@ const radioButton = {
|
|
17517
17713
|
|
17518
17714
|
size: {
|
17519
17715
|
xs: {
|
17520
|
-
[vars$
|
17716
|
+
[vars$a.fontSize]: '12px',
|
17521
17717
|
},
|
17522
17718
|
sm: {
|
17523
|
-
[vars$
|
17719
|
+
[vars$a.fontSize]: '14px',
|
17524
17720
|
},
|
17525
17721
|
md: {
|
17526
|
-
[vars$
|
17722
|
+
[vars$a.fontSize]: '16px',
|
17527
17723
|
},
|
17528
17724
|
lg: {
|
17529
|
-
[vars$
|
17725
|
+
[vars$a.fontSize]: '18px',
|
17530
17726
|
},
|
17531
17727
|
},
|
17532
17728
|
};
|
@@ -17535,128 +17731,128 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
|
|
17535
17731
|
__proto__: null,
|
17536
17732
|
default: radioButton,
|
17537
17733
|
radioButton: radioButton,
|
17538
|
-
vars: vars$
|
17734
|
+
vars: vars$a
|
17539
17735
|
});
|
17540
17736
|
|
17541
17737
|
const globalRefs$5 = getThemeRefs(globals);
|
17542
17738
|
|
17543
|
-
const vars$
|
17739
|
+
const vars$9 = CalendarClass.cssVarList;
|
17544
17740
|
|
17545
17741
|
const calendar = {
|
17546
|
-
[vars$
|
17547
|
-
[vars$
|
17548
|
-
[vars$
|
17742
|
+
[vars$9.fontFamily]: refs.fontFamily,
|
17743
|
+
[vars$9.fontSize]: refs.fontSize,
|
17744
|
+
[vars$9.hostDirection]: refs.direction,
|
17549
17745
|
|
17550
|
-
[vars$
|
17746
|
+
[vars$9.calendarPadding]: '1em',
|
17551
17747
|
|
17552
|
-
[vars$
|
17553
|
-
[vars$
|
17554
|
-
[vars$
|
17555
|
-
[vars$
|
17748
|
+
[vars$9.topNavVerticalPadding]: '1em',
|
17749
|
+
[vars$9.topNavAlignment]: 'space-between',
|
17750
|
+
[vars$9.topNavGap]: '0',
|
17751
|
+
[vars$9.topNavSelectorsGap]: '0.5em',
|
17556
17752
|
|
17557
|
-
[vars$
|
17558
|
-
[vars$
|
17559
|
-
[vars$
|
17560
|
-
[vars$
|
17753
|
+
[vars$9.bottomNavVerticalPadding]: '0.75em',
|
17754
|
+
[vars$9.bottomNavHorizontalPadding]: '1.5em',
|
17755
|
+
[vars$9.bottomNavAlignment]: 'space-between',
|
17756
|
+
[vars$9.bottomNavGap]: '0.5em',
|
17561
17757
|
|
17562
|
-
[vars$
|
17563
|
-
[vars$
|
17564
|
-
[vars$
|
17565
|
-
[vars$
|
17758
|
+
[vars$9.navMarginBottom]: '0.75em',
|
17759
|
+
[vars$9.navBorderBottomWidth]: '1px',
|
17760
|
+
[vars$9.navBorderBottomColor]: globalRefs$5.colors.surface.highlight,
|
17761
|
+
[vars$9.navBorderBottomStyle]: 'solid',
|
17566
17762
|
|
17567
|
-
[vars$
|
17568
|
-
[vars$
|
17763
|
+
[vars$9.yearInputWidth]: '6em',
|
17764
|
+
[vars$9.monthInputWidth]: '8em',
|
17569
17765
|
|
17570
|
-
[vars$
|
17571
|
-
[vars$
|
17766
|
+
[vars$9.navButtonSize]: '24px',
|
17767
|
+
[vars$9.navButtonCursor]: 'pointer',
|
17572
17768
|
|
17573
|
-
[vars$
|
17574
|
-
[vars$
|
17769
|
+
[vars$9.weekdayFontSize]: '0.875em',
|
17770
|
+
[vars$9.weekdayFontWeight]: '500',
|
17575
17771
|
|
17576
17772
|
// day table cell
|
17577
|
-
[vars$
|
17773
|
+
[vars$9.dayHeight]: '3.125em',
|
17578
17774
|
|
17579
17775
|
// day value
|
17580
|
-
[vars$
|
17581
|
-
[vars$
|
17582
|
-
[vars$
|
17583
|
-
[vars$
|
17584
|
-
[vars$
|
17585
|
-
[vars$
|
17586
|
-
[vars$
|
17587
|
-
[vars$
|
17588
|
-
[vars$
|
17589
|
-
[vars$
|
17776
|
+
[vars$9.daySize]: '2.125em',
|
17777
|
+
[vars$9.dayFontSize]: '1em',
|
17778
|
+
[vars$9.dayRadius]: '50%',
|
17779
|
+
[vars$9.dayTextAlign]: 'center',
|
17780
|
+
[vars$9.dayPadding]: '0',
|
17781
|
+
[vars$9.dayTextColor]: globalRefs$5.colors.surface.contrast,
|
17782
|
+
[vars$9.dayFontWeight]: '500',
|
17783
|
+
[vars$9.dayBackgroundColor]: 'transparent',
|
17784
|
+
[vars$9.dayCursor]: 'pointer',
|
17785
|
+
[vars$9.dayBackgroundColorHover]: globalRefs$5.colors.primary.highlight,
|
17590
17786
|
|
17591
17787
|
// selected day
|
17592
|
-
[vars$
|
17593
|
-
[vars$
|
17788
|
+
[vars$9.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
|
17789
|
+
[vars$9.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
|
17594
17790
|
|
17595
17791
|
// disabled day (out of min/max range)
|
17596
|
-
[vars$
|
17792
|
+
[vars$9.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
|
17597
17793
|
|
17598
17794
|
// today
|
17599
|
-
[vars$
|
17600
|
-
[vars$
|
17601
|
-
[vars$
|
17795
|
+
[vars$9.currentDayBorderColor]: globalRefs$5.colors.surface.light,
|
17796
|
+
[vars$9.currentDayBorderWidth]: '1px',
|
17797
|
+
[vars$9.currentDayBorderStyle]: 'solid',
|
17602
17798
|
|
17603
17799
|
size: {
|
17604
|
-
xs: { [vars$
|
17605
|
-
sm: { [vars$
|
17606
|
-
md: { [vars$
|
17607
|
-
lg: { [vars$
|
17800
|
+
xs: { [vars$9.fontSize]: '12px' },
|
17801
|
+
sm: { [vars$9.fontSize]: '14px' },
|
17802
|
+
md: { [vars$9.fontSize]: '16px' },
|
17803
|
+
lg: { [vars$9.fontSize]: '18px' },
|
17608
17804
|
},
|
17609
17805
|
|
17610
|
-
[vars$
|
17806
|
+
[vars$9.navButtonRotation]: 'rotate(180deg)',
|
17611
17807
|
|
17612
17808
|
_disabled: {
|
17613
|
-
[vars$
|
17614
|
-
[vars$
|
17615
|
-
[vars$
|
17616
|
-
[vars$
|
17809
|
+
[vars$9.navButtonOpacity]: '0.5',
|
17810
|
+
[vars$9.dayBackgroundColorHover]: 'none',
|
17811
|
+
[vars$9.navButtonCursor]: 'default',
|
17812
|
+
[vars$9.dayCursor]: 'default',
|
17617
17813
|
},
|
17618
17814
|
|
17619
17815
|
_fullWidth: {
|
17620
|
-
[vars$
|
17621
|
-
[vars$
|
17816
|
+
[vars$9.hostWidth]: '100%',
|
17817
|
+
[vars$9.dayBlockAlign]: '0 auto',
|
17622
17818
|
},
|
17623
17819
|
};
|
17624
17820
|
|
17625
17821
|
var calendar$1 = /*#__PURE__*/Object.freeze({
|
17626
17822
|
__proto__: null,
|
17627
17823
|
default: calendar,
|
17628
|
-
vars: vars$
|
17824
|
+
vars: vars$9
|
17629
17825
|
});
|
17630
17826
|
|
17631
17827
|
const globalRefs$4 = getThemeRefs(globals);
|
17632
17828
|
const shadowColor$1 = '#00000020';
|
17633
17829
|
const { shadow } = globalRefs$4;
|
17634
17830
|
|
17635
|
-
const vars$
|
17831
|
+
const vars$8 = DateFieldClass.cssVarList;
|
17636
17832
|
|
17637
17833
|
const dateField = {
|
17638
|
-
[vars$
|
17639
|
-
[vars$
|
17640
|
-
[vars$
|
17641
|
-
|
17642
|
-
[vars$
|
17643
|
-
[vars$
|
17644
|
-
[vars$
|
17645
|
-
[vars$
|
17646
|
-
[vars$
|
17647
|
-
[vars$
|
17648
|
-
[vars$
|
17649
|
-
[vars$
|
17650
|
-
[vars$
|
17651
|
-
|
17652
|
-
[vars$
|
17653
|
-
[vars$
|
17834
|
+
[vars$8.hostWidth]: refs.width,
|
17835
|
+
[vars$8.hostDirection]: refs.direction,
|
17836
|
+
[vars$8.iconMargin]: '0.375em',
|
17837
|
+
|
17838
|
+
[vars$8.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
|
17839
|
+
[vars$8.overlay.backgroundColor]: refs.backgroundColor,
|
17840
|
+
[vars$8.overlay.backdropBackgroundColor]: 'transparent',
|
17841
|
+
[vars$8.overlay.backdropPointerEvents]: 'all',
|
17842
|
+
[vars$8.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
|
17843
|
+
[vars$8.overlay.outlineWidth]: '0',
|
17844
|
+
[vars$8.overlay.outlineColor]: 'transparent',
|
17845
|
+
[vars$8.overlay.outlineStyle]: 'none',
|
17846
|
+
[vars$8.overlay.padding]: '0',
|
17847
|
+
|
17848
|
+
[vars$8.rtlInputDirection]: 'ltr',
|
17849
|
+
[vars$8.rtlInputAlignment]: 'right',
|
17654
17850
|
};
|
17655
17851
|
|
17656
17852
|
var dateField$1 = /*#__PURE__*/Object.freeze({
|
17657
17853
|
__proto__: null,
|
17658
17854
|
default: dateField,
|
17659
|
-
vars: vars$
|
17855
|
+
vars: vars$8
|
17660
17856
|
});
|
17661
17857
|
|
17662
17858
|
const globalRefs$3 = getThemeRefs(globals);
|
@@ -17665,7 +17861,7 @@ const compVars = ListClass.cssVarList;
|
|
17665
17861
|
|
17666
17862
|
const [helperTheme, helperRefs, helperVars] = createHelperVars(
|
17667
17863
|
{ shadowColor: '#00000020' },
|
17668
|
-
componentName$
|
17864
|
+
componentName$6
|
17669
17865
|
);
|
17670
17866
|
|
17671
17867
|
const { shadowColor } = helperRefs;
|
@@ -17705,7 +17901,7 @@ const list$1 = {
|
|
17705
17901
|
},
|
17706
17902
|
};
|
17707
17903
|
|
17708
|
-
const vars$
|
17904
|
+
const vars$7 = {
|
17709
17905
|
...compVars,
|
17710
17906
|
...helperVars,
|
17711
17907
|
};
|
@@ -17713,78 +17909,78 @@ const vars$6 = {
|
|
17713
17909
|
var list$2 = /*#__PURE__*/Object.freeze({
|
17714
17910
|
__proto__: null,
|
17715
17911
|
default: list$1,
|
17716
|
-
vars: vars$
|
17912
|
+
vars: vars$7
|
17717
17913
|
});
|
17718
17914
|
|
17719
17915
|
const globalRefs$2 = getThemeRefs(globals);
|
17720
17916
|
|
17721
|
-
const vars$
|
17917
|
+
const vars$6 = ListItemClass.cssVarList;
|
17722
17918
|
|
17723
17919
|
const list = {
|
17724
|
-
[vars$
|
17725
|
-
[vars$
|
17726
|
-
[vars$
|
17727
|
-
[vars$
|
17728
|
-
[vars$
|
17729
|
-
[vars$
|
17730
|
-
[vars$
|
17731
|
-
[vars$
|
17732
|
-
[vars$
|
17733
|
-
[vars$
|
17734
|
-
[vars$
|
17920
|
+
[vars$6.backgroundColor]: globalRefs$2.colors.surface.main,
|
17921
|
+
[vars$6.padding]: globalRefs$2.spacing.lg,
|
17922
|
+
[vars$6.gap]: globalRefs$2.spacing.md,
|
17923
|
+
[vars$6.borderStyle]: 'solid',
|
17924
|
+
[vars$6.borderWidth]: globalRefs$2.border.xs,
|
17925
|
+
[vars$6.borderColor]: globalRefs$2.colors.surface.main,
|
17926
|
+
[vars$6.borderRadius]: globalRefs$2.radius.sm,
|
17927
|
+
[vars$6.cursor]: 'pointer',
|
17928
|
+
[vars$6.alignItems]: 'center',
|
17929
|
+
[vars$6.flexDirection]: 'row',
|
17930
|
+
[vars$6.transition]: 'border-color 0.2s, background-color 0.2s',
|
17735
17931
|
|
17736
17932
|
variant: {
|
17737
17933
|
tile: {
|
17738
|
-
[vars$
|
17739
|
-
[vars$
|
17740
|
-
[vars$
|
17934
|
+
[vars$6.alignItems]: 'flex-start',
|
17935
|
+
[vars$6.flexDirection]: 'column',
|
17936
|
+
[vars$6.borderColor]: globalRefs$2.colors.surface.light,
|
17741
17937
|
},
|
17742
17938
|
},
|
17743
17939
|
|
17744
17940
|
_hover: {
|
17745
|
-
[vars$
|
17941
|
+
[vars$6.backgroundColor]: globalRefs$2.colors.surface.highlight,
|
17746
17942
|
},
|
17747
17943
|
|
17748
17944
|
_active: {
|
17749
|
-
[vars$
|
17750
|
-
[vars$
|
17751
|
-
[vars$
|
17945
|
+
[vars$6.backgroundColor]: globalRefs$2.colors.surface.main,
|
17946
|
+
[vars$6.borderColor]: globalRefs$2.colors.primary.light,
|
17947
|
+
[vars$6.outline]: `1px solid ${globalRefs$2.colors.primary.light}`,
|
17752
17948
|
},
|
17753
17949
|
};
|
17754
17950
|
|
17755
17951
|
var listItem = /*#__PURE__*/Object.freeze({
|
17756
17952
|
__proto__: null,
|
17757
17953
|
default: list,
|
17758
|
-
vars: vars$
|
17954
|
+
vars: vars$6
|
17759
17955
|
});
|
17760
17956
|
|
17761
|
-
const vars$
|
17957
|
+
const vars$5 = AppsListClass.cssVarList;
|
17762
17958
|
const globalRefs$1 = getThemeRefs(globals);
|
17763
17959
|
|
17764
17960
|
const defaultHeight = '400px';
|
17765
17961
|
|
17766
17962
|
const appsList = {
|
17767
|
-
[vars$
|
17768
|
-
[vars$
|
17769
|
-
[vars$
|
17770
|
-
[vars$
|
17963
|
+
[vars$5.itemsFontWeight]: 'normal',
|
17964
|
+
[vars$5.itemsTextAlign]: 'start',
|
17965
|
+
[vars$5.hostDirection]: globalRefs$1.direction,
|
17966
|
+
[vars$5.maxHeight]: defaultHeight,
|
17771
17967
|
|
17772
17968
|
_empty: {
|
17773
|
-
[vars$
|
17969
|
+
[vars$5.minHeight]: defaultHeight,
|
17774
17970
|
},
|
17775
17971
|
|
17776
17972
|
size: {
|
17777
17973
|
xs: {
|
17778
|
-
[vars$
|
17974
|
+
[vars$5.itemsFontSize]: '14px',
|
17779
17975
|
},
|
17780
17976
|
sm: {
|
17781
|
-
[vars$
|
17977
|
+
[vars$5.itemsFontSize]: '14px',
|
17782
17978
|
},
|
17783
17979
|
md: {
|
17784
|
-
[vars$
|
17980
|
+
[vars$5.itemsFontSize]: '16px',
|
17785
17981
|
},
|
17786
17982
|
lg: {
|
17787
|
-
[vars$
|
17983
|
+
[vars$5.itemsFontSize]: '20px',
|
17788
17984
|
},
|
17789
17985
|
},
|
17790
17986
|
};
|
@@ -17792,52 +17988,52 @@ const appsList = {
|
|
17792
17988
|
var appsList$1 = /*#__PURE__*/Object.freeze({
|
17793
17989
|
__proto__: null,
|
17794
17990
|
default: appsList,
|
17795
|
-
vars: vars$
|
17991
|
+
vars: vars$5
|
17796
17992
|
});
|
17797
17993
|
|
17798
|
-
const vars$
|
17994
|
+
const vars$4 = ScopesListClass.cssVarList;
|
17799
17995
|
|
17800
|
-
const scopesList
|
17801
|
-
[vars$
|
17802
|
-
[vars$
|
17803
|
-
[vars$
|
17996
|
+
const scopesList = {
|
17997
|
+
[vars$4.requiredInputBorderColor]: theme$1._disabled[vars$Q.borderColor],
|
17998
|
+
[vars$4.requiredInputValueTextColor]: theme$1._disabled[vars$Q.valueTextColor],
|
17999
|
+
[vars$4.hostWidth]: '280px',
|
17804
18000
|
_fullWidth: {
|
17805
|
-
[vars$
|
18001
|
+
[vars$4.hostWidth]: '100%',
|
17806
18002
|
},
|
17807
18003
|
};
|
17808
18004
|
|
17809
|
-
var scopesList$
|
18005
|
+
var scopesList$1 = /*#__PURE__*/Object.freeze({
|
17810
18006
|
__proto__: null,
|
17811
|
-
default: scopesList
|
17812
|
-
vars: vars$
|
18007
|
+
default: scopesList,
|
18008
|
+
vars: vars$4
|
17813
18009
|
});
|
17814
18010
|
|
17815
18011
|
const globalRefs = getThemeRefs(globals);
|
17816
|
-
const vars$
|
18012
|
+
const vars$3 = ThirdPartyAppLogoClass.cssVarList;
|
17817
18013
|
|
17818
18014
|
const thirdPartyAppLogo = {
|
17819
|
-
[vars$
|
17820
|
-
[vars$
|
17821
|
-
[vars$
|
18015
|
+
[vars$3.gap]: globalRefs.spacing.lg,
|
18016
|
+
[vars$3.arrowsColor]: globalRefs.colors.surface.dark,
|
18017
|
+
[vars$3.thirdPartyAppLogoFallback]:
|
17822
18018
|
'url(https://imgs.descope.com/components/third-party-app-logo-placeholder.svg)',
|
17823
|
-
[vars$
|
18019
|
+
[vars$3.companyLogoFallback]:
|
17824
18020
|
'url(https://imgs.descope.com/components/project-logo-placeholder.svg)',
|
17825
18021
|
size: {
|
17826
18022
|
xs: {
|
17827
|
-
[vars$
|
17828
|
-
[vars$
|
18023
|
+
[vars$3.logoMaxHeight]: '30px',
|
18024
|
+
[vars$3.logoMaxWidth]: '120px',
|
17829
18025
|
},
|
17830
18026
|
sm: {
|
17831
|
-
[vars$
|
17832
|
-
[vars$
|
18027
|
+
[vars$3.logoMaxHeight]: '40px',
|
18028
|
+
[vars$3.logoMaxWidth]: '160px',
|
17833
18029
|
},
|
17834
18030
|
md: {
|
17835
|
-
[vars$
|
17836
|
-
[vars$
|
18031
|
+
[vars$3.logoMaxHeight]: '48px',
|
18032
|
+
[vars$3.logoMaxWidth]: '200px',
|
17837
18033
|
},
|
17838
18034
|
lg: {
|
17839
|
-
[vars$
|
17840
|
-
[vars$
|
18035
|
+
[vars$3.logoMaxHeight]: '60px',
|
18036
|
+
[vars$3.logoMaxWidth]: '240px',
|
17841
18037
|
},
|
17842
18038
|
},
|
17843
18039
|
};
|
@@ -17845,21 +18041,39 @@ const thirdPartyAppLogo = {
|
|
17845
18041
|
var thirdPartyAppLogo$1 = /*#__PURE__*/Object.freeze({
|
17846
18042
|
__proto__: null,
|
17847
18043
|
default: thirdPartyAppLogo,
|
18044
|
+
vars: vars$3
|
18045
|
+
});
|
18046
|
+
|
18047
|
+
const vars$2 = SecurityQuestionsSetupClass.cssVarList;
|
18048
|
+
|
18049
|
+
const securityQuestionsSetup = {
|
18050
|
+
[vars$2.hostWidth]: 'fit-content',
|
18051
|
+
_fullWidth: {
|
18052
|
+
[vars$2.hostWidth]: '100%',
|
18053
|
+
},
|
18054
|
+
};
|
18055
|
+
|
18056
|
+
var securityQuestionsSetup$1 = /*#__PURE__*/Object.freeze({
|
18057
|
+
__proto__: null,
|
18058
|
+
default: securityQuestionsSetup,
|
17848
18059
|
vars: vars$2
|
17849
18060
|
});
|
17850
18061
|
|
17851
|
-
const vars$1 =
|
18062
|
+
const vars$1 = SecurityQuestionsVerifyClass.cssVarList;
|
17852
18063
|
|
17853
|
-
const
|
17854
|
-
[vars$1.hostWidth]: '
|
18064
|
+
const securityQuestionsVerify = {
|
18065
|
+
[vars$1.hostWidth]: 'min-content',
|
18066
|
+
[vars$1.questionCursor]: 'pointer',
|
17855
18067
|
_fullWidth: {
|
17856
18068
|
[vars$1.hostWidth]: '100%',
|
17857
18069
|
},
|
18070
|
+
[vars$1.questionFontSize]: refs.fontSize,
|
18071
|
+
[vars$1.questionFontFamily]: refs.fontFamily,
|
17858
18072
|
};
|
17859
18073
|
|
17860
|
-
var
|
18074
|
+
var securityQuestionsVerify$1 = /*#__PURE__*/Object.freeze({
|
17861
18075
|
__proto__: null,
|
17862
|
-
default:
|
18076
|
+
default: securityQuestionsVerify,
|
17863
18077
|
vars: vars$1
|
17864
18078
|
});
|
17865
18079
|
|
@@ -17913,9 +18127,10 @@ const components = {
|
|
17913
18127
|
list: list$2,
|
17914
18128
|
listItem,
|
17915
18129
|
appsList: appsList$1,
|
17916
|
-
scopesList: scopesList$
|
18130
|
+
scopesList: scopesList$1,
|
17917
18131
|
thirdPartyAppLogo: thirdPartyAppLogo$1,
|
17918
|
-
securityQuestionsSetup,
|
18132
|
+
securityQuestionsSetup: securityQuestionsSetup$1,
|
18133
|
+
securityQuestionsVerify: securityQuestionsVerify$1,
|
17919
18134
|
};
|
17920
18135
|
|
17921
18136
|
const theme = Object.keys(components).reduce(
|
@@ -17928,7 +18143,7 @@ const vars = Object.keys(components).reduce(
|
|
17928
18143
|
);
|
17929
18144
|
|
17930
18145
|
const defaultTheme = { globals, components: theme };
|
17931
|
-
const themeVars = { globals: vars$
|
18146
|
+
const themeVars = { globals: vars$S, components: vars };
|
17932
18147
|
|
17933
18148
|
const colors = {
|
17934
18149
|
surface: {
|
@@ -17977,5 +18192,5 @@ const darkTheme = merge({}, defaultTheme, {
|
|
17977
18192
|
},
|
17978
18193
|
});
|
17979
18194
|
|
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 };
|
18195
|
+
export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, IconClass, ImageClass, LinkClass, ListClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, RecaptchaClass, SamlGroupMappingsClass, ScopesListClass, SecurityQuestionsSetupClass, SecurityQuestionsVerifyClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, ThirdPartyAppLogoClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
|
17981
18196
|
//# sourceMappingURL=index.esm.js.map
|