@descope/web-components-ui 1.0.402 → 1.0.404
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 +1582 -1208
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +1629 -1208
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/1053.js +1 -1
- package/dist/umd/4619.js +1 -1
- package/dist/umd/6726.js +1 -1
- package/dist/umd/7212.js +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/descope-hybrid-field-index-js.js +19 -0
- package/dist/umd/descope-hybrid-field-index-js.js.LICENSE.txt +5 -0
- package/dist/umd/index.js +1 -1
- package/dist/umd/phone-fields-descope-phone-field-descope-phone-field-internal-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-field-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-input-box-field-descope-phone-input-box-internal-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-input-box-field-index-js.js +148 -1
- package/package.json +1 -1
- package/src/components/descope-hybrid-field/HybridFieldClass.js +306 -0
- package/src/components/descope-hybrid-field/helpers.js +5 -0
- package/src/components/descope-hybrid-field/index.js +9 -0
- package/src/components/phone-fields/descope-phone-field/PhoneFieldClass.js +45 -5
- package/src/components/phone-fields/descope-phone-field/descope-phone-field-internal/PhoneFieldInternal.js +45 -11
- package/src/components/phone-fields/descope-phone-input-box-field/PhoneFieldInputBoxClass.js +21 -12
- package/src/components/phone-fields/descope-phone-input-box-field/descope-phone-input-box-internal/PhoneFieldInternalInputBox.js +17 -5
- package/src/index.cjs.js +1 -0
- package/src/index.d.ts +2 -1
- package/src/index.js +1 -0
- package/src/mixins/inputEventsDispatchingMixin.js +5 -5
- package/src/theme/components/hybridField.js +15 -0
- package/src/theme/components/index.js +2 -0
- package/dist/umd/4831.js +0 -148
- /package/dist/umd/{4831.js.LICENSE.txt → phone-fields-descope-phone-input-box-field-index-js.js.LICENSE.txt} +0 -0
package/dist/index.esm.js
CHANGED
@@ -1433,13 +1433,13 @@ const inputEventsDispatchingMixin = (superclass) =>
|
|
1433
1433
|
handleInputEventDispatching() {
|
1434
1434
|
let previousRootComponentValue = this.value;
|
1435
1435
|
|
1436
|
+
// we are comparing the previous value to the new one,
|
1437
|
+
// and if they have the same value, we are blocking the input event
|
1436
1438
|
this.addEventListener('input', (e) => {
|
1437
|
-
|
1438
|
-
|
1439
|
-
if (previousRootComponentValue === this.value) {
|
1440
|
-
e.stopImmediatePropagation();
|
1441
|
-
} else {
|
1439
|
+
e.stopImmediatePropagation();
|
1440
|
+
if (previousRootComponentValue !== this.value) {
|
1442
1441
|
previousRootComponentValue = this.value;
|
1442
|
+
createDispatchEvent.call(this, 'input', { bubbles: true });
|
1443
1443
|
}
|
1444
1444
|
});
|
1445
1445
|
}
|
@@ -1755,9 +1755,9 @@ const createIcon = async (src) => {
|
|
1755
1755
|
|
1756
1756
|
/* eslint-disable no-use-before-define */
|
1757
1757
|
|
1758
|
-
const componentName$
|
1758
|
+
const componentName$15 = getComponentName('icon');
|
1759
1759
|
|
1760
|
-
class RawIcon extends createBaseClass({ componentName: componentName$
|
1760
|
+
class RawIcon extends createBaseClass({ componentName: componentName$15, baseSelector: 'slot' }) {
|
1761
1761
|
static get observedAttributes() {
|
1762
1762
|
return ['src'];
|
1763
1763
|
}
|
@@ -1842,7 +1842,7 @@ const clickableMixin = (superclass) =>
|
|
1842
1842
|
}
|
1843
1843
|
};
|
1844
1844
|
|
1845
|
-
const componentName$
|
1845
|
+
const componentName$14 = getComponentName('button');
|
1846
1846
|
|
1847
1847
|
const resetStyles = `
|
1848
1848
|
:host {
|
@@ -1958,7 +1958,7 @@ const ButtonClass = compose(
|
|
1958
1958
|
}
|
1959
1959
|
`,
|
1960
1960
|
excludeAttrsSync: ['tabindex'],
|
1961
|
-
componentName: componentName$
|
1961
|
+
componentName: componentName$14,
|
1962
1962
|
})
|
1963
1963
|
);
|
1964
1964
|
|
@@ -1995,7 +1995,7 @@ loadingIndicatorStyles = `
|
|
1995
1995
|
}
|
1996
1996
|
`;
|
1997
1997
|
|
1998
|
-
customElements.define(componentName$
|
1998
|
+
customElements.define(componentName$14, ButtonClass);
|
1999
1999
|
|
2000
2000
|
const createBaseInputClass = (...args) =>
|
2001
2001
|
compose(
|
@@ -2005,11 +2005,11 @@ const createBaseInputClass = (...args) =>
|
|
2005
2005
|
inputEventsDispatchingMixin
|
2006
2006
|
)(createBaseClass(...args));
|
2007
2007
|
|
2008
|
-
const componentName$
|
2008
|
+
const componentName$13 = getComponentName('boolean-field-internal');
|
2009
2009
|
|
2010
2010
|
const forwardAttributes$1 = ['disabled', 'label', 'invalid', 'readonly'];
|
2011
2011
|
|
2012
|
-
const BaseInputClass$a = createBaseInputClass({ componentName: componentName$
|
2012
|
+
const BaseInputClass$a = createBaseInputClass({ componentName: componentName$13, baseSelector: 'div' });
|
2013
2013
|
|
2014
2014
|
class BooleanInputInternal extends BaseInputClass$a {
|
2015
2015
|
static get observedAttributes() {
|
@@ -2085,14 +2085,14 @@ const booleanFieldMixin = (superclass) =>
|
|
2085
2085
|
|
2086
2086
|
const template = document.createElement('template');
|
2087
2087
|
template.innerHTML = `
|
2088
|
-
<${componentName$
|
2088
|
+
<${componentName$13}
|
2089
2089
|
tabindex="-1"
|
2090
2090
|
slot="input"
|
2091
|
-
></${componentName$
|
2091
|
+
></${componentName$13}>
|
2092
2092
|
`;
|
2093
2093
|
|
2094
2094
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
2095
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
2095
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$13);
|
2096
2096
|
this.checkbox = this.inputElement.querySelector('vaadin-checkbox');
|
2097
2097
|
|
2098
2098
|
forwardAttrs(this, this.inputElement, {
|
@@ -2306,7 +2306,7 @@ descope-boolean-field-internal {
|
|
2306
2306
|
}
|
2307
2307
|
`;
|
2308
2308
|
|
2309
|
-
const componentName$
|
2309
|
+
const componentName$12 = getComponentName('checkbox');
|
2310
2310
|
|
2311
2311
|
const {
|
2312
2312
|
host: host$n,
|
@@ -2418,15 +2418,15 @@ const CheckboxClass = compose(
|
|
2418
2418
|
}
|
2419
2419
|
`,
|
2420
2420
|
excludeAttrsSync: ['label', 'tabindex'],
|
2421
|
-
componentName: componentName$
|
2421
|
+
componentName: componentName$12,
|
2422
2422
|
})
|
2423
2423
|
);
|
2424
2424
|
|
2425
|
-
customElements.define(componentName$
|
2425
|
+
customElements.define(componentName$13, BooleanInputInternal);
|
2426
2426
|
|
2427
|
-
customElements.define(componentName$
|
2427
|
+
customElements.define(componentName$12, CheckboxClass);
|
2428
2428
|
|
2429
|
-
const componentName$
|
2429
|
+
const componentName$11 = getComponentName('switch-toggle');
|
2430
2430
|
|
2431
2431
|
const {
|
2432
2432
|
host: host$m,
|
@@ -2558,17 +2558,17 @@ const SwitchToggleClass = compose(
|
|
2558
2558
|
}
|
2559
2559
|
`,
|
2560
2560
|
excludeAttrsSync: ['label', 'tabindex'],
|
2561
|
-
componentName: componentName$
|
2561
|
+
componentName: componentName$11,
|
2562
2562
|
})
|
2563
2563
|
);
|
2564
2564
|
|
2565
|
-
customElements.define(componentName$
|
2565
|
+
customElements.define(componentName$11, SwitchToggleClass);
|
2566
2566
|
|
2567
|
-
const componentName
|
2567
|
+
const componentName$10 = getComponentName('loader-linear');
|
2568
2568
|
|
2569
|
-
class RawLoaderLinear extends createBaseClass({ componentName: componentName
|
2569
|
+
class RawLoaderLinear extends createBaseClass({ componentName: componentName$10, baseSelector: ':host > div' }) {
|
2570
2570
|
static get componentName() {
|
2571
|
-
return componentName
|
2571
|
+
return componentName$10;
|
2572
2572
|
}
|
2573
2573
|
|
2574
2574
|
constructor() {
|
@@ -2629,11 +2629,11 @@ const LoaderLinearClass = compose(
|
|
2629
2629
|
componentNameValidationMixin
|
2630
2630
|
)(RawLoaderLinear);
|
2631
2631
|
|
2632
|
-
customElements.define(componentName
|
2632
|
+
customElements.define(componentName$10, LoaderLinearClass);
|
2633
2633
|
|
2634
|
-
const componentName
|
2634
|
+
const componentName$$ = getComponentName('loader-radial');
|
2635
2635
|
|
2636
|
-
class RawLoaderRadial extends createBaseClass({ componentName: componentName
|
2636
|
+
class RawLoaderRadial extends createBaseClass({ componentName: componentName$$, baseSelector: ':host > div' }) {
|
2637
2637
|
constructor() {
|
2638
2638
|
super();
|
2639
2639
|
|
@@ -2677,11 +2677,11 @@ const LoaderRadialClass = compose(
|
|
2677
2677
|
componentNameValidationMixin
|
2678
2678
|
)(RawLoaderRadial);
|
2679
2679
|
|
2680
|
-
customElements.define(componentName
|
2680
|
+
customElements.define(componentName$$, LoaderRadialClass);
|
2681
2681
|
|
2682
|
-
const componentName$
|
2682
|
+
const componentName$_ = getComponentName('container');
|
2683
2683
|
|
2684
|
-
class RawContainer extends createBaseClass({ componentName: componentName$
|
2684
|
+
class RawContainer extends createBaseClass({ componentName: componentName$_, baseSelector: 'slot' }) {
|
2685
2685
|
constructor() {
|
2686
2686
|
super();
|
2687
2687
|
|
@@ -2740,9 +2740,9 @@ const ContainerClass = compose(
|
|
2740
2740
|
componentNameValidationMixin
|
2741
2741
|
)(RawContainer);
|
2742
2742
|
|
2743
|
-
customElements.define(componentName$
|
2743
|
+
customElements.define(componentName$_, ContainerClass);
|
2744
2744
|
|
2745
|
-
const componentName$
|
2745
|
+
const componentName$Z = getComponentName('combo-box');
|
2746
2746
|
|
2747
2747
|
const ComboBoxMixin = (superclass) =>
|
2748
2748
|
class ComboBoxMixinClass extends superclass {
|
@@ -3187,14 +3187,14 @@ const ComboBoxClass = compose(
|
|
3187
3187
|
// and reset items to an empty array, and opening the list box with no items
|
3188
3188
|
// to display.
|
3189
3189
|
excludeAttrsSync: ['tabindex', 'size', 'data'],
|
3190
|
-
componentName: componentName$
|
3190
|
+
componentName: componentName$Z,
|
3191
3191
|
includeForwardProps: ['items', 'renderer', 'selectedItem'],
|
3192
3192
|
})
|
3193
3193
|
);
|
3194
3194
|
|
3195
|
-
customElements.define(componentName$
|
3195
|
+
customElements.define(componentName$Z, ComboBoxClass);
|
3196
3196
|
|
3197
|
-
customElements.define(componentName$
|
3197
|
+
customElements.define(componentName$15, IconClass);
|
3198
3198
|
|
3199
3199
|
const SUPPORTED_FORMATS = ['MM/DD/YYYY', 'DD/MM/YYYY', 'YYYY/MM/DD'];
|
3200
3200
|
|
@@ -3511,7 +3511,7 @@ const nextMonth = (timestamp) => {
|
|
3511
3511
|
return date;
|
3512
3512
|
};
|
3513
3513
|
|
3514
|
-
const componentName$
|
3514
|
+
const componentName$Y = getComponentName('calendar');
|
3515
3515
|
|
3516
3516
|
const observedAttrs$2 = [
|
3517
3517
|
'initial-value',
|
@@ -3528,7 +3528,7 @@ const observedAttrs$2 = [
|
|
3528
3528
|
|
3529
3529
|
const calendarUiAttrs = ['calendar-label-submit', 'calendar-label-cancel'];
|
3530
3530
|
|
3531
|
-
const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$
|
3531
|
+
const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$Y, baseSelector: 'div' });
|
3532
3532
|
|
3533
3533
|
class RawCalendar extends BaseInputClass$9 {
|
3534
3534
|
static get observedAttributes() {
|
@@ -4141,7 +4141,7 @@ const CalendarClass = compose(
|
|
4141
4141
|
componentNameValidationMixin
|
4142
4142
|
)(RawCalendar);
|
4143
4143
|
|
4144
|
-
customElements.define(componentName$
|
4144
|
+
customElements.define(componentName$Y, CalendarClass);
|
4145
4145
|
|
4146
4146
|
const {
|
4147
4147
|
host: host$j,
|
@@ -4289,7 +4289,7 @@ var textFieldMappings = {
|
|
4289
4289
|
inputIconColor: { ...inputIcon, property: 'color' },
|
4290
4290
|
};
|
4291
4291
|
|
4292
|
-
const componentName$
|
4292
|
+
const componentName$X = getComponentName('text-field');
|
4293
4293
|
|
4294
4294
|
const observedAttrs$1 = ['type', 'label-type', 'copy-to-clipboard'];
|
4295
4295
|
|
@@ -4411,11 +4411,11 @@ const TextFieldClass = compose(
|
|
4411
4411
|
}
|
4412
4412
|
`,
|
4413
4413
|
excludeAttrsSync: ['tabindex'],
|
4414
|
-
componentName: componentName$
|
4414
|
+
componentName: componentName$X,
|
4415
4415
|
})
|
4416
4416
|
);
|
4417
4417
|
|
4418
|
-
customElements.define(componentName$
|
4418
|
+
customElements.define(componentName$X, TextFieldClass);
|
4419
4419
|
|
4420
4420
|
const patterns = {
|
4421
4421
|
MM: '(0?[1-9]|1[0-2])',
|
@@ -4548,12 +4548,12 @@ class DateCounter {
|
|
4548
4548
|
}
|
4549
4549
|
}
|
4550
4550
|
|
4551
|
-
const componentName$
|
4551
|
+
const componentName$W = getComponentName('date-field');
|
4552
4552
|
|
4553
4553
|
// we set baseSelector to `vaadin-popover` as a temporary hack, so our portalMixin will
|
4554
4554
|
// be able to process this component's overlay. The whole process needs refactoring as soon as possible.
|
4555
4555
|
const BASE_SELECTOR = 'vaadin-popover';
|
4556
|
-
const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$
|
4556
|
+
const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$W, baseSelector: BASE_SELECTOR });
|
4557
4557
|
|
4558
4558
|
const dateFieldAttrs = ['format', 'opened', 'initial-value', 'readonly'];
|
4559
4559
|
const calendarAttrs = ['years-range', 'calendar-months', 'calendar-weekdays'];
|
@@ -5224,11 +5224,11 @@ const DateFieldClass = compose(
|
|
5224
5224
|
componentNameValidationMixin
|
5225
5225
|
)(RawDateFieldClass);
|
5226
5226
|
|
5227
|
-
customElements.define(componentName$
|
5227
|
+
customElements.define(componentName$W, DateFieldClass);
|
5228
5228
|
|
5229
|
-
const componentName$
|
5229
|
+
const componentName$V = getComponentName('text');
|
5230
5230
|
|
5231
|
-
class RawText extends createBaseClass({ componentName: componentName$
|
5231
|
+
class RawText extends createBaseClass({ componentName: componentName$V, baseSelector: ':host > slot' }) {
|
5232
5232
|
constructor() {
|
5233
5233
|
super();
|
5234
5234
|
|
@@ -5285,8 +5285,8 @@ const TextClass = compose(
|
|
5285
5285
|
componentNameValidationMixin
|
5286
5286
|
)(RawText);
|
5287
5287
|
|
5288
|
-
const componentName$
|
5289
|
-
class RawDivider extends createBaseClass({ componentName: componentName$
|
5288
|
+
const componentName$U = getComponentName('divider');
|
5289
|
+
class RawDivider extends createBaseClass({ componentName: componentName$U, baseSelector: ':host > div' }) {
|
5290
5290
|
constructor() {
|
5291
5291
|
super();
|
5292
5292
|
|
@@ -5385,11 +5385,11 @@ const DividerClass = compose(
|
|
5385
5385
|
componentNameValidationMixin
|
5386
5386
|
)(RawDivider);
|
5387
5387
|
|
5388
|
-
customElements.define(componentName$
|
5388
|
+
customElements.define(componentName$V, TextClass);
|
5389
5389
|
|
5390
|
-
customElements.define(componentName$
|
5390
|
+
customElements.define(componentName$U, DividerClass);
|
5391
5391
|
|
5392
|
-
const componentName$
|
5392
|
+
const componentName$T = getComponentName('email-field');
|
5393
5393
|
|
5394
5394
|
const defaultPattern = "^[\\w\\.\\%\\+\\-']+@[\\w\\.\\-]+\\.[A-Za-z]{2,}$";
|
5395
5395
|
const defaultAutocomplete = 'username';
|
@@ -5458,15 +5458,15 @@ const EmailFieldClass = compose(
|
|
5458
5458
|
}
|
5459
5459
|
`,
|
5460
5460
|
excludeAttrsSync: ['tabindex'],
|
5461
|
-
componentName: componentName$
|
5461
|
+
componentName: componentName$T,
|
5462
5462
|
})
|
5463
5463
|
);
|
5464
5464
|
|
5465
|
-
customElements.define(componentName$
|
5465
|
+
customElements.define(componentName$T, EmailFieldClass);
|
5466
5466
|
|
5467
|
-
const componentName$
|
5467
|
+
const componentName$S = getComponentName('link');
|
5468
5468
|
|
5469
|
-
class RawLink extends createBaseClass({ componentName: componentName$
|
5469
|
+
class RawLink extends createBaseClass({ componentName: componentName$S, baseSelector: ':host a' }) {
|
5470
5470
|
constructor() {
|
5471
5471
|
super();
|
5472
5472
|
|
@@ -5530,7 +5530,7 @@ const LinkClass = compose(
|
|
5530
5530
|
componentNameValidationMixin
|
5531
5531
|
)(RawLink);
|
5532
5532
|
|
5533
|
-
customElements.define(componentName$
|
5533
|
+
customElements.define(componentName$S, LinkClass);
|
5534
5534
|
|
5535
5535
|
const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) => {
|
5536
5536
|
let style;
|
@@ -5582,37 +5582,37 @@ const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) =>
|
|
5582
5582
|
return CssVarImageClass;
|
5583
5583
|
};
|
5584
5584
|
|
5585
|
-
const componentName$
|
5585
|
+
const componentName$R = getComponentName('logo');
|
5586
5586
|
|
5587
5587
|
const LogoClass = createCssVarImageClass({
|
5588
|
-
componentName: componentName$
|
5588
|
+
componentName: componentName$R,
|
5589
5589
|
varName: 'url',
|
5590
5590
|
fallbackVarName: 'fallbackUrl',
|
5591
5591
|
});
|
5592
5592
|
|
5593
|
-
customElements.define(componentName$
|
5593
|
+
customElements.define(componentName$R, LogoClass);
|
5594
5594
|
|
5595
|
-
const componentName$
|
5595
|
+
const componentName$Q = getComponentName('totp-image');
|
5596
5596
|
|
5597
5597
|
const TotpImageClass = createCssVarImageClass({
|
5598
|
-
componentName: componentName$
|
5598
|
+
componentName: componentName$Q,
|
5599
5599
|
varName: 'url',
|
5600
5600
|
fallbackVarName: 'fallbackUrl',
|
5601
5601
|
});
|
5602
5602
|
|
5603
|
-
customElements.define(componentName$
|
5603
|
+
customElements.define(componentName$Q, TotpImageClass);
|
5604
5604
|
|
5605
|
-
const componentName$
|
5605
|
+
const componentName$P = getComponentName('notp-image');
|
5606
5606
|
|
5607
5607
|
const NotpImageClass = createCssVarImageClass({
|
5608
|
-
componentName: componentName$
|
5608
|
+
componentName: componentName$P,
|
5609
5609
|
varName: 'url',
|
5610
5610
|
fallbackVarName: 'fallbackUrl',
|
5611
5611
|
});
|
5612
5612
|
|
5613
|
-
customElements.define(componentName$
|
5613
|
+
customElements.define(componentName$P, NotpImageClass);
|
5614
5614
|
|
5615
|
-
const componentName$
|
5615
|
+
const componentName$O = getComponentName('number-field');
|
5616
5616
|
|
5617
5617
|
const NumberFieldClass = compose(
|
5618
5618
|
createStyleMixin({
|
@@ -5646,11 +5646,11 @@ const NumberFieldClass = compose(
|
|
5646
5646
|
}
|
5647
5647
|
`,
|
5648
5648
|
excludeAttrsSync: ['tabindex'],
|
5649
|
-
componentName: componentName$
|
5649
|
+
componentName: componentName$O,
|
5650
5650
|
})
|
5651
5651
|
);
|
5652
5652
|
|
5653
|
-
customElements.define(componentName$
|
5653
|
+
customElements.define(componentName$O, NumberFieldClass);
|
5654
5654
|
|
5655
5655
|
const INPUT_MASK_TEXT_PROP = '--descope-input-mask-content';
|
5656
5656
|
const INPUT_MASK_DISPLAY_PROP = '--descope-input-mask-display';
|
@@ -5696,13 +5696,13 @@ const toggleMaskVisibility = (input, value) => {
|
|
5696
5696
|
|
5697
5697
|
/* eslint-disable no-param-reassign */
|
5698
5698
|
|
5699
|
-
const componentName$
|
5699
|
+
const componentName$N = getComponentName('passcode-internal');
|
5700
5700
|
|
5701
5701
|
const observedAttributes$5 = ['digits', 'loading'];
|
5702
5702
|
|
5703
5703
|
const forwardAttributes = ['disabled', 'bordered', 'size', 'invalid', 'readonly'];
|
5704
5704
|
|
5705
|
-
const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$
|
5705
|
+
const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$N, baseSelector: 'div' });
|
5706
5706
|
|
5707
5707
|
class PasscodeInternal extends BaseInputClass$7 {
|
5708
5708
|
static get observedAttributes() {
|
@@ -5920,7 +5920,7 @@ class PasscodeInternal extends BaseInputClass$7 {
|
|
5920
5920
|
}
|
5921
5921
|
}
|
5922
5922
|
|
5923
|
-
const componentName$
|
5923
|
+
const componentName$M = getComponentName('passcode');
|
5924
5924
|
|
5925
5925
|
const observedAttributes$4 = ['digits'];
|
5926
5926
|
|
@@ -5939,17 +5939,17 @@ const customMixin$a = (superclass) =>
|
|
5939
5939
|
const template = document.createElement('template');
|
5940
5940
|
|
5941
5941
|
template.innerHTML = `
|
5942
|
-
<${componentName$
|
5942
|
+
<${componentName$N}
|
5943
5943
|
bordered="true"
|
5944
5944
|
name="code"
|
5945
5945
|
tabindex="-1"
|
5946
5946
|
slot="input"
|
5947
|
-
><slot></slot></${componentName$
|
5947
|
+
><slot></slot></${componentName$N}>
|
5948
5948
|
`;
|
5949
5949
|
|
5950
5950
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
5951
5951
|
|
5952
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
5952
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$N);
|
5953
5953
|
|
5954
5954
|
forwardAttrs(this, this.inputElement, { includeAttrs: ['digits', 'size', 'loading'] });
|
5955
5955
|
}
|
@@ -6101,13 +6101,13 @@ const PasscodeClass = compose(
|
|
6101
6101
|
${resetInputCursor('vaadin-text-field')}
|
6102
6102
|
`,
|
6103
6103
|
excludeAttrsSync: ['tabindex'],
|
6104
|
-
componentName: componentName$
|
6104
|
+
componentName: componentName$M,
|
6105
6105
|
})
|
6106
6106
|
);
|
6107
6107
|
|
6108
|
-
customElements.define(componentName$
|
6108
|
+
customElements.define(componentName$N, PasscodeInternal);
|
6109
6109
|
|
6110
|
-
customElements.define(componentName$
|
6110
|
+
customElements.define(componentName$M, PasscodeClass);
|
6111
6111
|
|
6112
6112
|
const passwordDraggableMixin = (superclass) =>
|
6113
6113
|
class PasswordDraggableMixinClass extends superclass {
|
@@ -6148,7 +6148,7 @@ const passwordDraggableMixin = (superclass) =>
|
|
6148
6148
|
}
|
6149
6149
|
};
|
6150
6150
|
|
6151
|
-
const componentName$
|
6151
|
+
const componentName$L = getComponentName('password');
|
6152
6152
|
|
6153
6153
|
const customMixin$9 = (superclass) =>
|
6154
6154
|
class PasswordFieldMixinClass extends superclass {
|
@@ -6424,11 +6424,11 @@ const PasswordClass = compose(
|
|
6424
6424
|
}
|
6425
6425
|
`,
|
6426
6426
|
excludeAttrsSync: ['tabindex'],
|
6427
|
-
componentName: componentName$
|
6427
|
+
componentName: componentName$L,
|
6428
6428
|
})
|
6429
6429
|
);
|
6430
6430
|
|
6431
|
-
customElements.define(componentName$
|
6431
|
+
customElements.define(componentName$L, PasswordClass);
|
6432
6432
|
|
6433
6433
|
const disableRules = [
|
6434
6434
|
'blockquote',
|
@@ -6454,9 +6454,9 @@ const decodeHTML = (html) => {
|
|
6454
6454
|
/* eslint-disable no-param-reassign */
|
6455
6455
|
|
6456
6456
|
|
6457
|
-
const componentName$
|
6457
|
+
const componentName$K = getComponentName('enriched-text');
|
6458
6458
|
|
6459
|
-
class EnrichedText extends createBaseClass({ componentName: componentName$
|
6459
|
+
class EnrichedText extends createBaseClass({ componentName: componentName$K, baseSelector: ':host > div' }) {
|
6460
6460
|
#origLinkRenderer;
|
6461
6461
|
|
6462
6462
|
#origEmRenderer;
|
@@ -6652,9 +6652,9 @@ const EnrichedTextClass = compose(
|
|
6652
6652
|
componentNameValidationMixin
|
6653
6653
|
)(EnrichedText);
|
6654
6654
|
|
6655
|
-
customElements.define(componentName$
|
6655
|
+
customElements.define(componentName$K, EnrichedTextClass);
|
6656
6656
|
|
6657
|
-
const componentName$
|
6657
|
+
const componentName$J = getComponentName('text-area');
|
6658
6658
|
|
6659
6659
|
const {
|
6660
6660
|
host: host$d,
|
@@ -6730,20 +6730,20 @@ const TextAreaClass = compose(
|
|
6730
6730
|
${resetInputCursor('vaadin-text-area')}
|
6731
6731
|
`,
|
6732
6732
|
excludeAttrsSync: ['tabindex'],
|
6733
|
-
componentName: componentName$
|
6733
|
+
componentName: componentName$J,
|
6734
6734
|
})
|
6735
6735
|
);
|
6736
6736
|
|
6737
|
-
customElements.define(componentName$
|
6737
|
+
customElements.define(componentName$J, TextAreaClass);
|
6738
6738
|
|
6739
6739
|
const observedAttributes$3 = ['src', 'alt'];
|
6740
6740
|
|
6741
|
-
const componentName$
|
6741
|
+
const componentName$I = getComponentName('image');
|
6742
6742
|
|
6743
|
-
const BaseClass$
|
6744
|
-
class RawImage extends BaseClass$
|
6743
|
+
const BaseClass$2 = createBaseClass({ componentName: componentName$I, baseSelector: ':host > img' });
|
6744
|
+
class RawImage extends BaseClass$2 {
|
6745
6745
|
static get observedAttributes() {
|
6746
|
-
return observedAttributes$3.concat(BaseClass$
|
6746
|
+
return observedAttributes$3.concat(BaseClass$2.observedAttributes || []);
|
6747
6747
|
}
|
6748
6748
|
|
6749
6749
|
constructor() {
|
@@ -6780,7 +6780,7 @@ const ImageClass = compose(
|
|
6780
6780
|
draggableMixin
|
6781
6781
|
)(RawImage);
|
6782
6782
|
|
6783
|
-
customElements.define(componentName$
|
6783
|
+
customElements.define(componentName$I, ImageClass);
|
6784
6784
|
|
6785
6785
|
var CountryCodes = [
|
6786
6786
|
// United States should be the first option
|
@@ -8049,9 +8049,9 @@ const parsePhoneNumber = (val) => {
|
|
8049
8049
|
return [countryCode, phoneNumber];
|
8050
8050
|
};
|
8051
8051
|
|
8052
|
-
const componentName$
|
8052
|
+
const componentName$H = getComponentName('phone-field-internal');
|
8053
8053
|
|
8054
|
-
const commonAttrs$1 = ['disabled', 'size', 'bordered', '
|
8054
|
+
const commonAttrs$1 = ['disabled', 'size', 'bordered', 'readonly', 'allow-alphanumeric-input'];
|
8055
8055
|
const countryAttrs = ['country-input-placeholder', 'default-code', 'restrict-countries'];
|
8056
8056
|
const phoneAttrs = ['phone-input-placeholder', 'maxlength', 'autocomplete', 'name'];
|
8057
8057
|
const labelTypeAttrs = ['label-type', 'country-input-label', 'label'];
|
@@ -8063,7 +8063,7 @@ const mapAttrs$1 = {
|
|
8063
8063
|
|
8064
8064
|
const inputRelatedAttrs$1 = [].concat(commonAttrs$1, countryAttrs, phoneAttrs, labelTypeAttrs);
|
8065
8065
|
|
8066
|
-
const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$
|
8066
|
+
const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$H, baseSelector: 'div' });
|
8067
8067
|
|
8068
8068
|
let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
8069
8069
|
static get observedAttributes() {
|
@@ -8074,7 +8074,7 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
|
8074
8074
|
super();
|
8075
8075
|
|
8076
8076
|
this.innerHTML = `
|
8077
|
-
<div>
|
8077
|
+
<div class="wrapper">
|
8078
8078
|
<descope-combo-box
|
8079
8079
|
item-label-path="data-name"
|
8080
8080
|
item-value-path="data-id"
|
@@ -8100,6 +8100,14 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
|
8100
8100
|
};
|
8101
8101
|
}
|
8102
8102
|
|
8103
|
+
get countryCodeInputData() {
|
8104
|
+
return this.countryCodeInput.items;
|
8105
|
+
}
|
8106
|
+
|
8107
|
+
get allowAlphanumericInput() {
|
8108
|
+
return this.getAttribute('allow-alphanumeric-input') === 'true';
|
8109
|
+
}
|
8110
|
+
|
8103
8111
|
get value() {
|
8104
8112
|
if (!this.phoneNumberValue) {
|
8105
8113
|
return '';
|
@@ -8110,15 +8118,35 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
|
8110
8118
|
set value(val) {
|
8111
8119
|
const [countryCode, phoneNumber] = parsePhoneNumber(val);
|
8112
8120
|
|
8113
|
-
|
8114
|
-
|
8121
|
+
this.#setCountryCode(countryCode);
|
8122
|
+
this.#setPhoneNumber(phoneNumber);
|
8123
|
+
}
|
8124
|
+
|
8125
|
+
setSelectionRange(...args) {
|
8126
|
+
this.phoneNumberInput.setSelectionRange(...args);
|
8127
|
+
}
|
8128
|
+
|
8129
|
+
get selectionStart() {
|
8130
|
+
return this.phoneNumberInput.selectionStart;
|
8131
|
+
}
|
8132
|
+
|
8133
|
+
#setCountryCode(val) {
|
8134
|
+
if (val) {
|
8135
|
+
const countryCodeItem = this.getCountryByDialCode(val);
|
8115
8136
|
if (countryCodeItem) {
|
8116
8137
|
this.countryCodeInput.selectedItem = countryCodeItem;
|
8117
8138
|
}
|
8118
8139
|
} else {
|
8119
8140
|
this.countryCodeInput.selectedItem = undefined;
|
8120
8141
|
}
|
8121
|
-
|
8142
|
+
}
|
8143
|
+
|
8144
|
+
#setPhoneNumber(val) {
|
8145
|
+
if (this.phoneNumberInput.value === val) {
|
8146
|
+
return;
|
8147
|
+
}
|
8148
|
+
|
8149
|
+
this.phoneNumberInput.value = val;
|
8122
8150
|
}
|
8123
8151
|
|
8124
8152
|
get phoneNumberValue() {
|
@@ -8129,6 +8157,10 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
|
8129
8157
|
return this.countryCodeInput.shadowRoot.querySelector('input').value;
|
8130
8158
|
}
|
8131
8159
|
|
8160
|
+
get phoneNumberInputEle() {
|
8161
|
+
return this.phoneNumberInput.shadowRoot.querySelector('input');
|
8162
|
+
}
|
8163
|
+
|
8132
8164
|
get minLength() {
|
8133
8165
|
return parseInt(this.getAttribute('minlength'), 10) || 0;
|
8134
8166
|
}
|
@@ -8202,12 +8234,14 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
|
8202
8234
|
initInputs() {
|
8203
8235
|
// Sanitize phone input value to filter everything but digits
|
8204
8236
|
this.phoneNumberInput.addEventListener('input', (e) => {
|
8205
|
-
|
8206
|
-
|
8207
|
-
.
|
8208
|
-
|
8209
|
-
|
8210
|
-
|
8237
|
+
if (!this.allowAlphanumericInput) {
|
8238
|
+
const telDigitsRegExp = /^\d$/;
|
8239
|
+
const sanitizedInput = e.target.value
|
8240
|
+
.split('')
|
8241
|
+
.filter((char) => telDigitsRegExp.test(char))
|
8242
|
+
.join('');
|
8243
|
+
e.target.value = sanitizedInput;
|
8244
|
+
}
|
8211
8245
|
});
|
8212
8246
|
|
8213
8247
|
this.handleFocusEventsDispatching(this.inputs);
|
@@ -8280,12 +8314,12 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
|
8280
8314
|
}
|
8281
8315
|
};
|
8282
8316
|
|
8283
|
-
customElements.define(componentName$
|
8317
|
+
customElements.define(componentName$H, PhoneFieldInternal$1);
|
8284
8318
|
|
8285
8319
|
const textVars$1 = TextFieldClass.cssVarList;
|
8286
8320
|
const comboVars = ComboBoxClass.cssVarList;
|
8287
8321
|
|
8288
|
-
const componentName$
|
8322
|
+
const componentName$G = getComponentName('phone-field');
|
8289
8323
|
|
8290
8324
|
const customMixin$8 = (superclass) =>
|
8291
8325
|
class PhoneFieldMixinClass extends superclass {
|
@@ -8299,15 +8333,15 @@ const customMixin$8 = (superclass) =>
|
|
8299
8333
|
const template = document.createElement('template');
|
8300
8334
|
|
8301
8335
|
template.innerHTML = `
|
8302
|
-
<${componentName$
|
8336
|
+
<${componentName$H}
|
8303
8337
|
tabindex="-1"
|
8304
8338
|
slot="input"
|
8305
|
-
></${componentName$
|
8339
|
+
></${componentName$H}>
|
8306
8340
|
`;
|
8307
8341
|
|
8308
8342
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
8309
8343
|
|
8310
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
8344
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$H);
|
8311
8345
|
|
8312
8346
|
forwardAttrs(this.shadowRoot.host, this.inputElement, {
|
8313
8347
|
includeAttrs: [
|
@@ -8325,9 +8359,28 @@ const customMixin$8 = (superclass) =>
|
|
8325
8359
|
'readonly',
|
8326
8360
|
'label',
|
8327
8361
|
'label-type',
|
8362
|
+
'allow-alphanumeric-input',
|
8328
8363
|
],
|
8329
8364
|
});
|
8330
8365
|
}
|
8366
|
+
|
8367
|
+
get countryCodeItems() {
|
8368
|
+
return this.inputElement?.countryCodeValue;
|
8369
|
+
}
|
8370
|
+
|
8371
|
+
get phoneNumberInputEle() {
|
8372
|
+
return this.inputElement?.phoneNumberInputEle;
|
8373
|
+
}
|
8374
|
+
|
8375
|
+
get countryCodeInputData() {
|
8376
|
+
return this.inputElement?.countryCodeInputData;
|
8377
|
+
}
|
8378
|
+
|
8379
|
+
get countryCodes() {
|
8380
|
+
return Array.from(this.inputElement.countryCodeInputData).map((ele) =>
|
8381
|
+
ele.getAttribute('data-country-code')
|
8382
|
+
);
|
8383
|
+
}
|
8331
8384
|
};
|
8332
8385
|
|
8333
8386
|
const {
|
@@ -8335,6 +8388,7 @@ const {
|
|
8335
8388
|
label: label$4,
|
8336
8389
|
requiredIndicator: requiredIndicator$4,
|
8337
8390
|
inputField: inputField$2,
|
8391
|
+
internalAfter,
|
8338
8392
|
countryCodeInput,
|
8339
8393
|
phoneInput: phoneInput$1,
|
8340
8394
|
separator: separator$1,
|
@@ -8345,6 +8399,7 @@ const {
|
|
8345
8399
|
label: { selector: '::part(label)' },
|
8346
8400
|
requiredIndicator: { selector: '[required]::part(required-indicator)::after' },
|
8347
8401
|
inputField: { selector: '::part(input-field)' },
|
8402
|
+
internalAfter: { selector: 'descope-phone-field-internal::after' },
|
8348
8403
|
phoneInput: { selector: () => 'descope-text-field' },
|
8349
8404
|
countryCodeInput: { selector: () => 'descope-combo-box' },
|
8350
8405
|
separator: { selector: 'descope-phone-field-internal .separator' },
|
@@ -8384,18 +8439,21 @@ const PhoneFieldClass = compose(
|
|
8384
8439
|
hostDirection: { ...host$c, property: 'direction' },
|
8385
8440
|
|
8386
8441
|
inputBorderStyle: [
|
8387
|
-
{ ...
|
8442
|
+
{ ...internalAfter, property: 'outline-style' },
|
8388
8443
|
{ ...separator$1, property: 'border-left-style' },
|
8389
8444
|
],
|
8390
8445
|
inputBorderWidth: [
|
8391
|
-
{ ...
|
8446
|
+
{ ...internalAfter, property: 'outline-width' },
|
8392
8447
|
{ ...separator$1, property: 'border-left-width' },
|
8393
8448
|
],
|
8394
8449
|
inputBorderColor: [
|
8395
|
-
{ ...
|
8450
|
+
{ ...internalAfter, property: 'outline-color' },
|
8396
8451
|
{ ...separator$1, property: 'border-left-color' },
|
8397
8452
|
],
|
8398
|
-
inputBorderRadius:
|
8453
|
+
inputBorderRadius: [
|
8454
|
+
{ ...inputField$2, property: 'border-radius' },
|
8455
|
+
{ ...internalAfter, property: 'border-radius' },
|
8456
|
+
],
|
8399
8457
|
|
8400
8458
|
countryCodeInputWidth: { ...countryCodeInput, property: comboVars.hostWidth },
|
8401
8459
|
countryCodeDropdownWidth: {
|
@@ -8477,6 +8535,10 @@ const PhoneFieldClass = compose(
|
|
8477
8535
|
vaadin-text-field::before {
|
8478
8536
|
height: 0;
|
8479
8537
|
}
|
8538
|
+
vaadin-text-field::part(label) {
|
8539
|
+
margin-left: 0;
|
8540
|
+
margin-right: 0;
|
8541
|
+
}
|
8480
8542
|
vaadin-text-field::part(input-field) {
|
8481
8543
|
padding: 0;
|
8482
8544
|
background: transparent;
|
@@ -8488,7 +8550,19 @@ const PhoneFieldClass = compose(
|
|
8488
8550
|
width: 100%;
|
8489
8551
|
height: 100%;
|
8490
8552
|
direction: ltr;
|
8553
|
+
position: relative;
|
8491
8554
|
}
|
8555
|
+
descope-phone-field-internal::after {
|
8556
|
+
content: '';
|
8557
|
+
position: absolute;
|
8558
|
+
width: 100%;
|
8559
|
+
height: 100%;
|
8560
|
+
top: 0;
|
8561
|
+
left: 0;
|
8562
|
+
box-sizing: border-box;
|
8563
|
+
outline-offset: calc(var(${PhoneFieldClass.cssVarList.inputBorderWidth}) * -1);
|
8564
|
+
pointer-events: none;
|
8565
|
+
}
|
8492
8566
|
descope-phone-field-internal > div {
|
8493
8567
|
width: 100%;
|
8494
8568
|
height: 100%;
|
@@ -8499,7 +8573,7 @@ const PhoneFieldClass = compose(
|
|
8499
8573
|
}
|
8500
8574
|
descope-combo-box {
|
8501
8575
|
flex-shrink: 0;
|
8502
|
-
|
8576
|
+
min-width: 5.75em;
|
8503
8577
|
${comboVars.inputOutlineWidth}: 0;
|
8504
8578
|
${comboVars.inputOutlineOffset}: 0;
|
8505
8579
|
${comboVars.inputBorderWidth}: 0;
|
@@ -8529,17 +8603,17 @@ const PhoneFieldClass = compose(
|
|
8529
8603
|
${resetInputLabelPosition('vaadin-text-field')}
|
8530
8604
|
`,
|
8531
8605
|
excludeAttrsSync: ['tabindex'],
|
8532
|
-
componentName: componentName$
|
8606
|
+
componentName: componentName$G,
|
8533
8607
|
})
|
8534
8608
|
);
|
8535
8609
|
|
8536
|
-
customElements.define(componentName$
|
8610
|
+
customElements.define(componentName$G, PhoneFieldClass);
|
8537
8611
|
|
8538
8612
|
const getCountryByCodeId = (countryCode) => {
|
8539
8613
|
return CountryCodes.find((c) => c.code === countryCode)?.dialCode;
|
8540
8614
|
};
|
8541
8615
|
|
8542
|
-
const componentName$
|
8616
|
+
const componentName$F = getComponentName('phone-field-internal-input-box');
|
8543
8617
|
|
8544
8618
|
const observedAttributes$2 = [
|
8545
8619
|
'disabled',
|
@@ -8551,12 +8625,13 @@ const observedAttributes$2 = [
|
|
8551
8625
|
'name',
|
8552
8626
|
'autocomplete',
|
8553
8627
|
'label-type',
|
8628
|
+
'allow-alphanumeric-input',
|
8554
8629
|
];
|
8555
8630
|
const mapAttrs = {
|
8556
8631
|
'phone-input-placeholder': 'placeholder',
|
8557
8632
|
};
|
8558
8633
|
|
8559
|
-
const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$
|
8634
|
+
const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$F, baseSelector: 'div' });
|
8560
8635
|
|
8561
8636
|
class PhoneFieldInternal extends BaseInputClass$5 {
|
8562
8637
|
static get observedAttributes() {
|
@@ -8583,6 +8658,10 @@ class PhoneFieldInternal extends BaseInputClass$5 {
|
|
8583
8658
|
return !!this.getAttribute('default-code');
|
8584
8659
|
}
|
8585
8660
|
|
8661
|
+
get allowAlphanumericInput() {
|
8662
|
+
return this.getAttribute('allow-alphanumeric-input') === 'true';
|
8663
|
+
}
|
8664
|
+
|
8586
8665
|
get value() {
|
8587
8666
|
if (!this.phoneNumberValue) {
|
8588
8667
|
return '';
|
@@ -8613,6 +8692,10 @@ class PhoneFieldInternal extends BaseInputClass$5 {
|
|
8613
8692
|
return this.phoneNumberInput.value;
|
8614
8693
|
}
|
8615
8694
|
|
8695
|
+
get phoneNumberInputEle() {
|
8696
|
+
return this.phoneNumberInput.shadowRoot.querySelector('input');
|
8697
|
+
}
|
8698
|
+
|
8616
8699
|
get minLength() {
|
8617
8700
|
return parseInt(this.getAttribute('minlength'), 10) || 0;
|
8618
8701
|
}
|
@@ -8672,11 +8755,14 @@ class PhoneFieldInternal extends BaseInputClass$5 {
|
|
8672
8755
|
.replace('--', '-')
|
8673
8756
|
.replace('+-', '+');
|
8674
8757
|
|
8675
|
-
|
8676
|
-
|
8677
|
-
|
8678
|
-
|
8679
|
-
|
8758
|
+
let sanitizedInput = e.target.value;
|
8759
|
+
if (!this.allowAlphanumericInput) {
|
8760
|
+
const telDigitsRegExp = /^[+\d-]+$/;
|
8761
|
+
sanitizedInput = e.target.value
|
8762
|
+
.split('')
|
8763
|
+
.filter((char) => telDigitsRegExp.test(char))
|
8764
|
+
.join('');
|
8765
|
+
}
|
8680
8766
|
|
8681
8767
|
e.target.value = sanitizedInput;
|
8682
8768
|
});
|
@@ -8695,11 +8781,11 @@ class PhoneFieldInternal extends BaseInputClass$5 {
|
|
8695
8781
|
}
|
8696
8782
|
}
|
8697
8783
|
|
8698
|
-
customElements.define(componentName$
|
8784
|
+
customElements.define(componentName$F, PhoneFieldInternal);
|
8699
8785
|
|
8700
8786
|
const textVars = TextFieldClass.cssVarList;
|
8701
8787
|
|
8702
|
-
const componentName$
|
8788
|
+
const componentName$E = getComponentName('phone-input-box-field');
|
8703
8789
|
|
8704
8790
|
const customMixin$7 = (superclass) =>
|
8705
8791
|
class PhoneInputBoxFieldMixinClass extends superclass {
|
@@ -8713,15 +8799,15 @@ const customMixin$7 = (superclass) =>
|
|
8713
8799
|
const template = document.createElement('template');
|
8714
8800
|
|
8715
8801
|
template.innerHTML = `
|
8716
|
-
<${componentName$
|
8802
|
+
<${componentName$F}
|
8717
8803
|
tabindex="-1"
|
8718
8804
|
slot="input"
|
8719
|
-
></${componentName$
|
8805
|
+
></${componentName$F}>
|
8720
8806
|
`;
|
8721
8807
|
|
8722
8808
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
8723
8809
|
|
8724
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
8810
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$F);
|
8725
8811
|
|
8726
8812
|
forwardAttrs(this.shadowRoot.host, this.inputElement, {
|
8727
8813
|
includeAttrs: [
|
@@ -8735,9 +8821,14 @@ const customMixin$7 = (superclass) =>
|
|
8735
8821
|
'phone-input-placeholder',
|
8736
8822
|
'label',
|
8737
8823
|
'label-type',
|
8824
|
+
'allow-alphanumeric-input',
|
8738
8825
|
],
|
8739
8826
|
});
|
8740
8827
|
}
|
8828
|
+
|
8829
|
+
get phoneNumberInputEle() {
|
8830
|
+
return this.inputElement?.phoneNumberInputEle;
|
8831
|
+
}
|
8741
8832
|
};
|
8742
8833
|
|
8743
8834
|
const {
|
@@ -8746,6 +8837,7 @@ const {
|
|
8746
8837
|
inputElement: inputElement$1,
|
8747
8838
|
requiredIndicator: requiredIndicator$3,
|
8748
8839
|
inputField: inputField$1,
|
8840
|
+
inputFieldInternal,
|
8749
8841
|
phoneInput,
|
8750
8842
|
errorMessage: errorMessage$4,
|
8751
8843
|
helperText: helperText$3,
|
@@ -8755,7 +8847,10 @@ const {
|
|
8755
8847
|
placeholder: { selector: '> input:placeholder-shown' },
|
8756
8848
|
inputElement: { selector: 'input' },
|
8757
8849
|
requiredIndicator: { selector: '[required]::part(required-indicator)::after' },
|
8758
|
-
inputField: { selector: '::part(input-field)' },
|
8850
|
+
inputField: { selector: () => 'vaadin-text-field::part(input-field)' },
|
8851
|
+
inputFieldInternal: {
|
8852
|
+
selector: () => 'descope-phone-field-internal-input-box vaadin-text-field::part(input-field)',
|
8853
|
+
},
|
8759
8854
|
phoneInput: { selector: () => 'descope-text-field' },
|
8760
8855
|
helperText: { selector: '::part(helper-text)' },
|
8761
8856
|
errorMessage: { selector: '::part(error-message)' },
|
@@ -8777,10 +8872,13 @@ const PhoneFieldInputBoxClass = compose(
|
|
8777
8872
|
hostMinWidth: { ...host$b, property: 'min-width' },
|
8778
8873
|
hostDirection: { ...host$b, property: 'direction' },
|
8779
8874
|
|
8780
|
-
inputBorderStyle: { ...
|
8781
|
-
inputBorderWidth: { ...
|
8782
|
-
inputBorderColor: { ...
|
8783
|
-
inputBorderRadius:
|
8875
|
+
inputBorderStyle: { ...inputFieldInternal, property: 'border-style' },
|
8876
|
+
inputBorderWidth: { ...inputFieldInternal, property: 'border-width' },
|
8877
|
+
inputBorderColor: { ...inputFieldInternal, property: 'border-color' },
|
8878
|
+
inputBorderRadius: [
|
8879
|
+
{ ...inputField$1, property: 'border-radius' },
|
8880
|
+
{ ...inputFieldInternal, property: 'border-radius' },
|
8881
|
+
],
|
8784
8882
|
|
8785
8883
|
inputHorizontalPadding: [
|
8786
8884
|
{ ...phoneInput, property: 'padding-left' },
|
@@ -8841,7 +8939,6 @@ const PhoneFieldInputBoxClass = compose(
|
|
8841
8939
|
|
8842
8940
|
vaadin-text-field {
|
8843
8941
|
width: 100%;
|
8844
|
-
height: 100%;
|
8845
8942
|
box-sizing: border-box;
|
8846
8943
|
padding: 0;
|
8847
8944
|
}
|
@@ -8861,23 +8958,21 @@ const PhoneFieldInputBoxClass = compose(
|
|
8861
8958
|
-webkit-mask-image: none;
|
8862
8959
|
padding: 0;
|
8863
8960
|
width: 100%;
|
8864
|
-
height: 100%;
|
8865
8961
|
}
|
8866
8962
|
descope-phone-field-internal-input-box > div {
|
8867
8963
|
width: 100%;
|
8868
|
-
height: 100%;
|
8869
8964
|
}
|
8870
8965
|
descope-phone-field-internal-input-box .separator {
|
8871
8966
|
flex: 0;
|
8872
8967
|
border: none;
|
8873
8968
|
}
|
8969
|
+
descope-phone-field-internal-input-box descope-text-field {
|
8970
|
+
${textVars.inputOutlineWidth}: 0;
|
8971
|
+
${textVars.inputOutlineOffset}: 0;
|
8972
|
+
}
|
8874
8973
|
descope-text-field {
|
8875
8974
|
flex-grow: 1;
|
8876
8975
|
width: 100%;
|
8877
|
-
${textVars.inputOutlineWidth}: 0;
|
8878
|
-
${textVars.inputOutlineOffset}: 0;
|
8879
|
-
${textVars.inputBorderWidth}: 0;
|
8880
|
-
${textVars.inputBorderRadius}: 0;
|
8881
8976
|
direction: ltr;
|
8882
8977
|
}
|
8883
8978
|
vaadin-text-field[readonly] > input:placeholder-shown {
|
@@ -8898,26 +8993,26 @@ const PhoneFieldInputBoxClass = compose(
|
|
8898
8993
|
${inputFloatingLabelStyle()}
|
8899
8994
|
`,
|
8900
8995
|
excludeAttrsSync: ['tabindex'],
|
8901
|
-
componentName: componentName$
|
8996
|
+
componentName: componentName$E,
|
8902
8997
|
})
|
8903
8998
|
);
|
8904
8999
|
|
8905
|
-
customElements.define(componentName$
|
9000
|
+
customElements.define(componentName$E, PhoneFieldInputBoxClass);
|
8906
9001
|
|
8907
|
-
const componentName$
|
9002
|
+
const componentName$D = getComponentName('new-password-internal');
|
8908
9003
|
|
8909
9004
|
const interpolateString = (template, values) =>
|
8910
9005
|
template.replace(/{{(\w+)+}}/g, (match, key) => values?.[key] || match);
|
8911
9006
|
|
8912
9007
|
// eslint-disable-next-line max-classes-per-file
|
8913
9008
|
|
8914
|
-
const componentName$
|
9009
|
+
const componentName$C = getComponentName('policy-validation');
|
8915
9010
|
|
8916
9011
|
const overrideAttrs = ['data-password-policy-value-minlength'];
|
8917
9012
|
const dataAttrs = ['data', 'active-policies', 'overrides', ...overrideAttrs];
|
8918
9013
|
const policyAttrs = ['label', 'value', ...dataAttrs];
|
8919
9014
|
|
8920
|
-
class RawPolicyValidation extends createBaseClass({ componentName: componentName$
|
9015
|
+
class RawPolicyValidation extends createBaseClass({ componentName: componentName$C, baseSelector: ':host > div' }) {
|
8921
9016
|
#availablePolicies;
|
8922
9017
|
|
8923
9018
|
#activePolicies = [];
|
@@ -9125,7 +9220,7 @@ const PolicyValidationClass = compose(
|
|
9125
9220
|
componentNameValidationMixin
|
9126
9221
|
)(RawPolicyValidation);
|
9127
9222
|
|
9128
|
-
const componentName$
|
9223
|
+
const componentName$B = getComponentName('new-password');
|
9129
9224
|
|
9130
9225
|
const policyPreviewVars = PolicyValidationClass.cssVarList;
|
9131
9226
|
|
@@ -9139,18 +9234,18 @@ const customMixin$6 = (superclass) =>
|
|
9139
9234
|
const externalInputAttr = this.getAttribute('external-input');
|
9140
9235
|
|
9141
9236
|
template.innerHTML = `
|
9142
|
-
<${componentName$
|
9237
|
+
<${componentName$D}
|
9143
9238
|
name="new-password"
|
9144
9239
|
tabindex="-1"
|
9145
9240
|
slot="input"
|
9146
9241
|
external-input="${externalInputAttr}"
|
9147
9242
|
>
|
9148
|
-
</${componentName$
|
9243
|
+
</${componentName$D}>
|
9149
9244
|
`;
|
9150
9245
|
|
9151
9246
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
9152
9247
|
|
9153
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
9248
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$D);
|
9154
9249
|
|
9155
9250
|
if (this.getAttribute('external-input') === 'true') {
|
9156
9251
|
this.initExternalInput();
|
@@ -9327,11 +9422,11 @@ const NewPasswordClass = compose(
|
|
9327
9422
|
}
|
9328
9423
|
`,
|
9329
9424
|
excludeAttrsSync: ['tabindex'],
|
9330
|
-
componentName: componentName$
|
9425
|
+
componentName: componentName$B,
|
9331
9426
|
})
|
9332
9427
|
);
|
9333
9428
|
|
9334
|
-
customElements.define(componentName$
|
9429
|
+
customElements.define(componentName$C, PolicyValidationClass);
|
9335
9430
|
|
9336
9431
|
const passwordAttrPrefixRegex = /^password-/;
|
9337
9432
|
const confirmAttrPrefixRegex = /^confirm-/;
|
@@ -9363,7 +9458,7 @@ const inputRelatedAttrs = [].concat(
|
|
9363
9458
|
policyPanelAttrs
|
9364
9459
|
);
|
9365
9460
|
|
9366
|
-
const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$
|
9461
|
+
const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$D, baseSelector: 'div' });
|
9367
9462
|
|
9368
9463
|
class NewPasswordInternal extends BaseInputClass$4 {
|
9369
9464
|
static get observedAttributes() {
|
@@ -9573,21 +9668,21 @@ class NewPasswordInternal extends BaseInputClass$4 {
|
|
9573
9668
|
}
|
9574
9669
|
}
|
9575
9670
|
|
9576
|
-
customElements.define(componentName$
|
9671
|
+
customElements.define(componentName$D, NewPasswordInternal);
|
9577
9672
|
|
9578
|
-
customElements.define(componentName$
|
9673
|
+
customElements.define(componentName$B, NewPasswordClass);
|
9579
9674
|
|
9580
|
-
const componentName$
|
9675
|
+
const componentName$A = getComponentName('recaptcha');
|
9581
9676
|
|
9582
9677
|
const observedAttributes$1 = ['enabled', 'site-key', 'action', 'enterprise'];
|
9583
9678
|
|
9584
|
-
const BaseClass = createBaseClass({
|
9585
|
-
componentName: componentName$
|
9679
|
+
const BaseClass$1 = createBaseClass({
|
9680
|
+
componentName: componentName$A,
|
9586
9681
|
baseSelector: ':host > div',
|
9587
9682
|
});
|
9588
|
-
class RawRecaptcha extends BaseClass {
|
9683
|
+
class RawRecaptcha extends BaseClass$1 {
|
9589
9684
|
static get observedAttributes() {
|
9590
|
-
return observedAttributes$1.concat(BaseClass.observedAttributes || []);
|
9685
|
+
return observedAttributes$1.concat(BaseClass$1.observedAttributes || []);
|
9591
9686
|
}
|
9592
9687
|
|
9593
9688
|
attributeChangedCallback(attrName, oldValue, newValue) {
|
@@ -9769,7 +9864,7 @@ class RawRecaptcha extends BaseClass {
|
|
9769
9864
|
|
9770
9865
|
const RecaptchaClass = compose(draggableMixin)(RawRecaptcha);
|
9771
9866
|
|
9772
|
-
customElements.define(componentName$
|
9867
|
+
customElements.define(componentName$A, RecaptchaClass);
|
9773
9868
|
|
9774
9869
|
const getFileBase64 = (fileObj) => {
|
9775
9870
|
return new Promise((resolve) => {
|
@@ -9783,7 +9878,7 @@ const getFilename = (fileObj) => {
|
|
9783
9878
|
return fileObj.name.replace(/^.*\\/, '');
|
9784
9879
|
};
|
9785
9880
|
|
9786
|
-
const componentName$
|
9881
|
+
const componentName$z = getComponentName('upload-file');
|
9787
9882
|
|
9788
9883
|
const observedAttributes = [
|
9789
9884
|
'title',
|
@@ -9798,7 +9893,7 @@ const observedAttributes = [
|
|
9798
9893
|
'icon',
|
9799
9894
|
];
|
9800
9895
|
|
9801
|
-
const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$
|
9896
|
+
const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$z, baseSelector: ':host > div' });
|
9802
9897
|
|
9803
9898
|
class RawUploadFile extends BaseInputClass$3 {
|
9804
9899
|
static get observedAttributes() {
|
@@ -10013,7 +10108,7 @@ const UploadFileClass = compose(
|
|
10013
10108
|
componentNameValidationMixin
|
10014
10109
|
)(RawUploadFile);
|
10015
10110
|
|
10016
|
-
customElements.define(componentName$
|
10111
|
+
customElements.define(componentName$z, UploadFileClass);
|
10017
10112
|
|
10018
10113
|
const createBaseButtonSelectionGroupInternalClass = (componentName) => {
|
10019
10114
|
class BaseButtonSelectionGroupInternalClass extends createBaseInputClass({
|
@@ -10111,10 +10206,10 @@ const createBaseButtonSelectionGroupInternalClass = (componentName) => {
|
|
10111
10206
|
return BaseButtonSelectionGroupInternalClass;
|
10112
10207
|
};
|
10113
10208
|
|
10114
|
-
const componentName$
|
10209
|
+
const componentName$y = getComponentName('button-selection-group-internal');
|
10115
10210
|
|
10116
10211
|
class ButtonSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
10117
|
-
componentName$
|
10212
|
+
componentName$y
|
10118
10213
|
) {
|
10119
10214
|
getSelectedNode() {
|
10120
10215
|
return this.items.find((item) => item.hasAttribute('selected'));
|
@@ -10346,7 +10441,7 @@ const buttonSelectionGroupStyles = `
|
|
10346
10441
|
${resetInputCursor('vaadin-text-field')}
|
10347
10442
|
`;
|
10348
10443
|
|
10349
|
-
const componentName$
|
10444
|
+
const componentName$x = getComponentName('button-selection-group');
|
10350
10445
|
|
10351
10446
|
const buttonSelectionGroupMixin = (superclass) =>
|
10352
10447
|
class ButtonMultiSelectionGroupMixinClass extends superclass {
|
@@ -10355,19 +10450,19 @@ const buttonSelectionGroupMixin = (superclass) =>
|
|
10355
10450
|
const template = document.createElement('template');
|
10356
10451
|
|
10357
10452
|
template.innerHTML = `
|
10358
|
-
<${componentName$
|
10453
|
+
<${componentName$y}
|
10359
10454
|
name="button-selection-group"
|
10360
10455
|
slot="input"
|
10361
10456
|
tabindex="-1"
|
10362
10457
|
part="internal-component"
|
10363
10458
|
>
|
10364
10459
|
<slot></slot>
|
10365
|
-
</${componentName$
|
10460
|
+
</${componentName$y}>
|
10366
10461
|
`;
|
10367
10462
|
|
10368
10463
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
10369
10464
|
|
10370
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
10465
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$y);
|
10371
10466
|
|
10372
10467
|
forwardAttrs(this, this.inputElement, {
|
10373
10468
|
includeAttrs: ['size', 'default-value', 'allow-deselect'],
|
@@ -10392,16 +10487,16 @@ const ButtonSelectionGroupClass = compose(
|
|
10392
10487
|
wrappedEleName: 'vaadin-text-field',
|
10393
10488
|
style: () => buttonSelectionGroupStyles,
|
10394
10489
|
excludeAttrsSync: ['tabindex'],
|
10395
|
-
componentName: componentName$
|
10490
|
+
componentName: componentName$x,
|
10396
10491
|
})
|
10397
10492
|
);
|
10398
10493
|
|
10399
|
-
customElements.define(componentName$
|
10494
|
+
customElements.define(componentName$y, ButtonSelectionGroupInternalClass);
|
10400
10495
|
|
10401
|
-
const componentName$
|
10496
|
+
const componentName$w = getComponentName('button-selection-group-item');
|
10402
10497
|
|
10403
10498
|
class RawSelectItem extends createBaseClass({
|
10404
|
-
componentName: componentName$
|
10499
|
+
componentName: componentName$w,
|
10405
10500
|
baseSelector: ':host > descope-button',
|
10406
10501
|
}) {
|
10407
10502
|
get size() {
|
@@ -10508,14 +10603,14 @@ const ButtonSelectionGroupItemClass = compose(
|
|
10508
10603
|
componentNameValidationMixin
|
10509
10604
|
)(RawSelectItem);
|
10510
10605
|
|
10511
|
-
customElements.define(componentName$
|
10606
|
+
customElements.define(componentName$w, ButtonSelectionGroupItemClass);
|
10512
10607
|
|
10513
|
-
customElements.define(componentName$
|
10608
|
+
customElements.define(componentName$x, ButtonSelectionGroupClass);
|
10514
10609
|
|
10515
|
-
const componentName$
|
10610
|
+
const componentName$v = getComponentName('button-multi-selection-group-internal');
|
10516
10611
|
|
10517
10612
|
class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
10518
|
-
componentName$
|
10613
|
+
componentName$v
|
10519
10614
|
) {
|
10520
10615
|
#getSelectedNodes() {
|
10521
10616
|
return this.items.filter((item) => item.hasAttribute('selected'));
|
@@ -10618,7 +10713,7 @@ class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGr
|
|
10618
10713
|
}
|
10619
10714
|
}
|
10620
10715
|
|
10621
|
-
const componentName$
|
10716
|
+
const componentName$u = getComponentName('button-multi-selection-group');
|
10622
10717
|
|
10623
10718
|
const buttonMultiSelectionGroupMixin = (superclass) =>
|
10624
10719
|
class ButtonMultiSelectionGroupMixinClass extends superclass {
|
@@ -10627,19 +10722,19 @@ const buttonMultiSelectionGroupMixin = (superclass) =>
|
|
10627
10722
|
const template = document.createElement('template');
|
10628
10723
|
|
10629
10724
|
template.innerHTML = `
|
10630
|
-
<${componentName$
|
10725
|
+
<${componentName$v}
|
10631
10726
|
name="button-selection-group"
|
10632
10727
|
slot="input"
|
10633
10728
|
tabindex="-1"
|
10634
10729
|
part="internal-component"
|
10635
10730
|
>
|
10636
10731
|
<slot></slot>
|
10637
|
-
</${componentName$
|
10732
|
+
</${componentName$v}>
|
10638
10733
|
`;
|
10639
10734
|
|
10640
10735
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
10641
10736
|
|
10642
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
10737
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$v);
|
10643
10738
|
|
10644
10739
|
forwardAttrs(this, this.inputElement, {
|
10645
10740
|
includeAttrs: ['size', 'default-values', 'min-items-selection', 'max-items-selection'],
|
@@ -10664,13 +10759,13 @@ const ButtonMultiSelectionGroupClass = compose(
|
|
10664
10759
|
wrappedEleName: 'vaadin-text-field',
|
10665
10760
|
style: () => buttonSelectionGroupStyles,
|
10666
10761
|
excludeAttrsSync: ['tabindex'],
|
10667
|
-
componentName: componentName$
|
10762
|
+
componentName: componentName$u,
|
10668
10763
|
})
|
10669
10764
|
);
|
10670
10765
|
|
10671
|
-
customElements.define(componentName$
|
10766
|
+
customElements.define(componentName$v, ButtonMultiSelectionGroupInternalClass);
|
10672
10767
|
|
10673
|
-
customElements.define(componentName$
|
10768
|
+
customElements.define(componentName$u, ButtonMultiSelectionGroupClass);
|
10674
10769
|
|
10675
10770
|
/* eslint-disable no-param-reassign */
|
10676
10771
|
|
@@ -10698,9 +10793,9 @@ class GridTextColumnClass extends GridSortColumn {
|
|
10698
10793
|
}
|
10699
10794
|
}
|
10700
10795
|
|
10701
|
-
const componentName$
|
10796
|
+
const componentName$t = getComponentName('grid-text-column');
|
10702
10797
|
|
10703
|
-
customElements.define(componentName$
|
10798
|
+
customElements.define(componentName$t, GridTextColumnClass);
|
10704
10799
|
|
10705
10800
|
/* eslint-disable no-param-reassign */
|
10706
10801
|
|
@@ -10735,9 +10830,9 @@ class GridCustomColumnClass extends GridTextColumnClass {
|
|
10735
10830
|
|
10736
10831
|
/* eslint-disable no-param-reassign */
|
10737
10832
|
|
10738
|
-
const componentName$
|
10833
|
+
const componentName$s = getComponentName('grid-custom-column');
|
10739
10834
|
|
10740
|
-
customElements.define(componentName$
|
10835
|
+
customElements.define(componentName$s, GridCustomColumnClass);
|
10741
10836
|
|
10742
10837
|
const createCheckboxEle = () => {
|
10743
10838
|
const checkbox = document.createElement('descope-checkbox');
|
@@ -10796,9 +10891,9 @@ class GridSelectionColumnClass extends GridSelectionColumn {
|
|
10796
10891
|
}
|
10797
10892
|
}
|
10798
10893
|
|
10799
|
-
const componentName$
|
10894
|
+
const componentName$r = getComponentName('grid-selection-column');
|
10800
10895
|
|
10801
|
-
customElements.define(componentName$
|
10896
|
+
customElements.define(componentName$r, GridSelectionColumnClass);
|
10802
10897
|
|
10803
10898
|
/* eslint-disable no-param-reassign */
|
10804
10899
|
|
@@ -10837,9 +10932,9 @@ class GridItemDetailsColumnClass extends GridSortColumn {
|
|
10837
10932
|
}
|
10838
10933
|
}
|
10839
10934
|
|
10840
|
-
const componentName$
|
10935
|
+
const componentName$q = getComponentName('grid-item-details-column');
|
10841
10936
|
|
10842
|
-
customElements.define(componentName$
|
10937
|
+
customElements.define(componentName$q, GridItemDetailsColumnClass);
|
10843
10938
|
|
10844
10939
|
const decode = (input) => {
|
10845
10940
|
const txt = document.createElement('textarea');
|
@@ -10851,9 +10946,9 @@ const tpl = (input, inline) => {
|
|
10851
10946
|
return inline ? input : `<pre>${input}</pre>`;
|
10852
10947
|
};
|
10853
10948
|
|
10854
|
-
const componentName$
|
10949
|
+
const componentName$p = getComponentName('code-snippet');
|
10855
10950
|
|
10856
|
-
let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$
|
10951
|
+
let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$p, baseSelector: ':host > code' }) {
|
10857
10952
|
static get observedAttributes() {
|
10858
10953
|
return ['lang', 'inline'];
|
10859
10954
|
}
|
@@ -11083,7 +11178,7 @@ const CodeSnippetClass = compose(
|
|
11083
11178
|
componentNameValidationMixin
|
11084
11179
|
)(CodeSnippet$1);
|
11085
11180
|
|
11086
|
-
customElements.define(componentName$
|
11181
|
+
customElements.define(componentName$p, CodeSnippetClass);
|
11087
11182
|
|
11088
11183
|
const isValidDataType = (data) => {
|
11089
11184
|
const isValid = Array.isArray(data);
|
@@ -11158,7 +11253,7 @@ const defaultRowDetailsRenderer = (item, itemLabelsMapping) => {
|
|
11158
11253
|
`;
|
11159
11254
|
};
|
11160
11255
|
|
11161
|
-
const componentName$
|
11256
|
+
const componentName$o = getComponentName('grid');
|
11162
11257
|
|
11163
11258
|
const GridMixin = (superclass) =>
|
11164
11259
|
class GridMixinClass extends superclass {
|
@@ -11512,13 +11607,13 @@ const GridClass = compose(
|
|
11512
11607
|
/*!css*/
|
11513
11608
|
`,
|
11514
11609
|
excludeAttrsSync: ['columns', 'tabindex'],
|
11515
|
-
componentName: componentName$
|
11610
|
+
componentName: componentName$o,
|
11516
11611
|
})
|
11517
11612
|
);
|
11518
11613
|
|
11519
|
-
customElements.define(componentName$
|
11614
|
+
customElements.define(componentName$o, GridClass);
|
11520
11615
|
|
11521
|
-
const componentName$
|
11616
|
+
const componentName$n = getComponentName('multi-select-combo-box');
|
11522
11617
|
|
11523
11618
|
const multiSelectComboBoxMixin = (superclass) =>
|
11524
11619
|
class MultiSelectComboBoxMixinClass extends superclass {
|
@@ -12160,16 +12255,16 @@ const MultiSelectComboBoxClass = compose(
|
|
12160
12255
|
// Note: we exclude `placeholder` because the vaadin component observes it and
|
12161
12256
|
// tries to override it, causing us to lose the user set placeholder.
|
12162
12257
|
excludeAttrsSync: ['tabindex', 'size', 'data', 'placeholder'],
|
12163
|
-
componentName: componentName$
|
12258
|
+
componentName: componentName$n,
|
12164
12259
|
includeForwardProps: ['items', 'renderer', 'selectedItems'],
|
12165
12260
|
})
|
12166
12261
|
);
|
12167
12262
|
|
12168
|
-
customElements.define(componentName$
|
12263
|
+
customElements.define(componentName$n, MultiSelectComboBoxClass);
|
12169
12264
|
|
12170
|
-
const componentName$
|
12265
|
+
const componentName$m = getComponentName('badge');
|
12171
12266
|
|
12172
|
-
class RawBadge extends createBaseClass({ componentName: componentName$
|
12267
|
+
class RawBadge extends createBaseClass({ componentName: componentName$m, baseSelector: ':host > div' }) {
|
12173
12268
|
constructor() {
|
12174
12269
|
super();
|
12175
12270
|
|
@@ -12220,9 +12315,9 @@ const BadgeClass = compose(
|
|
12220
12315
|
componentNameValidationMixin
|
12221
12316
|
)(RawBadge);
|
12222
12317
|
|
12223
|
-
customElements.define(componentName$
|
12318
|
+
customElements.define(componentName$m, BadgeClass);
|
12224
12319
|
|
12225
|
-
const componentName$
|
12320
|
+
const componentName$l = getComponentName('modal');
|
12226
12321
|
|
12227
12322
|
const customMixin$5 = (superclass) =>
|
12228
12323
|
class ModalMixinClass extends superclass {
|
@@ -12321,11 +12416,11 @@ const ModalClass = compose(
|
|
12321
12416
|
wrappedEleName: 'vaadin-dialog',
|
12322
12417
|
style: () => ``,
|
12323
12418
|
excludeAttrsSync: ['tabindex', 'opened'],
|
12324
|
-
componentName: componentName$
|
12419
|
+
componentName: componentName$l,
|
12325
12420
|
})
|
12326
12421
|
);
|
12327
12422
|
|
12328
|
-
customElements.define(componentName$
|
12423
|
+
customElements.define(componentName$l, ModalClass);
|
12329
12424
|
|
12330
12425
|
const vaadinContainerClass = window.customElements.get('vaadin-notification-container');
|
12331
12426
|
|
@@ -12336,7 +12431,7 @@ if (!vaadinContainerClass) {
|
|
12336
12431
|
class NotificationContainerClass extends vaadinContainerClass {}
|
12337
12432
|
customElements.define(getComponentName('notification-container'), NotificationContainerClass);
|
12338
12433
|
|
12339
|
-
const componentName$
|
12434
|
+
const componentName$k = getComponentName('notification-card');
|
12340
12435
|
|
12341
12436
|
const notificationCardMixin = (superclass) =>
|
12342
12437
|
class NotificationCardMixinClass extends superclass {
|
@@ -12444,13 +12539,13 @@ const NotificationCardClass = compose(
|
|
12444
12539
|
}
|
12445
12540
|
`,
|
12446
12541
|
excludeAttrsSync: ['tabindex'],
|
12447
|
-
componentName: componentName$
|
12542
|
+
componentName: componentName$k,
|
12448
12543
|
})
|
12449
12544
|
);
|
12450
12545
|
|
12451
|
-
customElements.define(componentName$
|
12546
|
+
customElements.define(componentName$k, NotificationCardClass);
|
12452
12547
|
|
12453
|
-
const componentName$
|
12548
|
+
const componentName$j = getComponentName('notification');
|
12454
12549
|
|
12455
12550
|
const NotificationMixin = (superclass) =>
|
12456
12551
|
class NotificationMixinClass extends superclass {
|
@@ -12545,14 +12640,14 @@ const NotificationClass = compose(
|
|
12545
12640
|
createProxy({
|
12546
12641
|
wrappedEleName: 'vaadin-notification',
|
12547
12642
|
excludeAttrsSync: ['tabindex'],
|
12548
|
-
componentName: componentName$
|
12643
|
+
componentName: componentName$j,
|
12549
12644
|
})
|
12550
12645
|
);
|
12551
12646
|
|
12552
|
-
customElements.define(componentName$
|
12647
|
+
customElements.define(componentName$j, NotificationClass);
|
12553
12648
|
|
12554
|
-
const componentName$
|
12555
|
-
class RawAvatar extends createBaseClass({ componentName: componentName$
|
12649
|
+
const componentName$i = getComponentName('avatar');
|
12650
|
+
class RawAvatar extends createBaseClass({ componentName: componentName$i, baseSelector: ':host > .wrapper' }) {
|
12556
12651
|
constructor() {
|
12557
12652
|
super();
|
12558
12653
|
|
@@ -12656,11 +12751,11 @@ const AvatarClass = compose(
|
|
12656
12751
|
componentNameValidationMixin
|
12657
12752
|
)(RawAvatar);
|
12658
12753
|
|
12659
|
-
customElements.define(componentName$
|
12754
|
+
customElements.define(componentName$i, AvatarClass);
|
12660
12755
|
|
12661
|
-
const componentName$
|
12756
|
+
const componentName$h = getComponentName('mappings-field-internal');
|
12662
12757
|
|
12663
|
-
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$
|
12758
|
+
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$h, baseSelector: 'div' });
|
12664
12759
|
|
12665
12760
|
class MappingsFieldInternal extends BaseInputClass$2 {
|
12666
12761
|
#errorItem;
|
@@ -12895,7 +12990,7 @@ class MappingsFieldInternal extends BaseInputClass$2 {
|
|
12895
12990
|
}
|
12896
12991
|
}
|
12897
12992
|
|
12898
|
-
const componentName$
|
12993
|
+
const componentName$g = getComponentName('mappings-field');
|
12899
12994
|
|
12900
12995
|
const customMixin$4 = (superclass) =>
|
12901
12996
|
class MappingsFieldMixinClass extends superclass {
|
@@ -12924,14 +13019,14 @@ const customMixin$4 = (superclass) =>
|
|
12924
13019
|
const template = document.createElement('template');
|
12925
13020
|
|
12926
13021
|
template.innerHTML = `
|
12927
|
-
<${componentName$
|
13022
|
+
<${componentName$h}
|
12928
13023
|
tabindex="-1"
|
12929
|
-
></${componentName$
|
13024
|
+
></${componentName$h}>
|
12930
13025
|
`;
|
12931
13026
|
|
12932
13027
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
12933
13028
|
|
12934
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
13029
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$h);
|
12935
13030
|
|
12936
13031
|
forwardAttrs(this, this.inputElement, {
|
12937
13032
|
includeAttrs: [
|
@@ -13063,17 +13158,17 @@ const MappingsFieldClass = compose(
|
|
13063
13158
|
'options',
|
13064
13159
|
'error-message',
|
13065
13160
|
],
|
13066
|
-
componentName: componentName$
|
13161
|
+
componentName: componentName$g,
|
13067
13162
|
})
|
13068
13163
|
);
|
13069
13164
|
|
13070
|
-
customElements.define(componentName$
|
13165
|
+
customElements.define(componentName$h, MappingsFieldInternal);
|
13071
13166
|
|
13072
|
-
const componentName$
|
13167
|
+
const componentName$f = getComponentName('mapping-item');
|
13073
13168
|
|
13074
13169
|
const inputAttrs = ['size', 'bordered', 'readonly', 'full-width', 'disabled'];
|
13075
13170
|
|
13076
|
-
const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$
|
13171
|
+
const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$f, baseSelector: 'div' });
|
13077
13172
|
|
13078
13173
|
class MappingItem extends BaseInputClass$1 {
|
13079
13174
|
static get observedAttributes() {
|
@@ -13223,17 +13318,17 @@ class MappingItem extends BaseInputClass$1 {
|
|
13223
13318
|
}
|
13224
13319
|
}
|
13225
13320
|
|
13226
|
-
customElements.define(componentName$
|
13321
|
+
customElements.define(componentName$f, MappingItem);
|
13227
13322
|
|
13228
|
-
customElements.define(componentName$
|
13323
|
+
customElements.define(componentName$g, MappingsFieldClass);
|
13229
13324
|
|
13230
13325
|
var deleteIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTZDMSAxNy4xIDEuOSAxOCAzIDE4SDExQzEyLjEgMTggMTMgMTcuMSAxMyAxNlY0SDFWMTZaTTMgNkgxMVYxNkgzVjZaTTEwLjUgMUw5LjUgMEg0LjVMMy41IDFIMFYzSDE0VjFIMTAuNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
|
13231
13326
|
|
13232
13327
|
var editIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjAwMDIgMC45OTIxNDlDMTAuMDAwMiAxLjAxNjE1IDEwLjAwMDIgMS4wMTYxNSAxMC4wMDAyIDEuMDE2MTVMOC4yMjQxOSAzLjAwODE1SDIuOTkyMTlDMi40NjQxOSAzLjAwODE1IDIuMDA4MTkgMy40NDAxNSAyLjAwODE5IDMuOTkyMTVWMTIuMDA4MkMyLjAwODE5IDEyLjUzNjIgMi40NDAxOSAxMi45OTIyIDIuOTkyMTkgMTIuOTkyMkg1LjUzNjE5QzUuODQ4MTkgMTMuMDQwMiA2LjE2MDE5IDEzLjA0MDIgNi40NzIxOSAxMi45OTIySDExLjAwODJDMTEuNTM2MiAxMi45OTIyIDExLjk5MjIgMTIuNTYwMiAxMS45OTIyIDEyLjAwODJWNy43ODQxNkwxMy45MzYyIDUuNjI0MTVMMTQuMDA4MiA1LjY3MjE1VjExLjk4NDJDMTQuMDA4MiAxMy42NjQyIDEyLjY2NDIgMTUuMDA4MiAxMS4wMDgyIDE1LjAwODJIMy4wMTYxOUMxLjMzNjE5IDE1LjAwODIgLTAuMDA3ODEyNSAxMy42NjQyIC0wLjAwNzgxMjUgMTEuOTg0MlYzLjk5MjE1Qy0wLjAwNzgxMjUgMi4zMzYxNSAxLjMzNjE5IDAuOTkyMTQ5IDMuMDE2MTkgMC45OTIxNDlIMTAuMDAwMlpNMTEuMjcyMiAyLjYyNDE1TDEyLjYxNjIgNC4xMTIxNUw3LjcyMDE5IDkuNjgwMTZDNy41MDQxOSA5LjkyMDE2IDYuODMyMTkgMTAuMjMyMiA1LjY4MDE5IDEwLjYxNjJDNS42NTYxOSAxMC42NDAyIDUuNjA4MTkgMTAuNjQwMiA1LjU2MDE5IDEwLjYxNjJDNS40NjQxOSAxMC41OTIyIDUuMzkyMTkgMTAuNDcyMiA1LjQ0MDE5IDEwLjM3NjJDNS43NTIxOSA5LjI0ODE2IDYuMDQwMTkgOC41NTIxNiA2LjI1NjE5IDguMzEyMTZMMTEuMjcyMiAyLjYyNDE1Wk0xMS45MjAyIDEuODU2MTVMMTMuMjg4MiAwLjMyMDE0OUMxMy42NDgyIC0wLjA4Nzg1MTYgMTQuMjcyMiAtMC4xMTE4NTIgMTQuNjgwMiAwLjI3MjE0OUMxNS4wODgyIDAuNjMyMTQ5IDE1LjExMjIgMS4yODAxNSAxNC43NTIyIDEuNjg4MTVMMTMuMjY0MiAzLjM2ODE1TDExLjkyMDIgMS44NTYxNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
|
13233
13328
|
|
13234
|
-
const componentName$
|
13329
|
+
const componentName$e = getComponentName('user-attribute');
|
13235
13330
|
class RawUserAttribute extends createBaseClass({
|
13236
|
-
componentName: componentName$
|
13331
|
+
componentName: componentName$e,
|
13237
13332
|
baseSelector: ':host > .root',
|
13238
13333
|
}) {
|
13239
13334
|
constructor() {
|
@@ -13467,13 +13562,13 @@ const UserAttributeClass = compose(
|
|
13467
13562
|
componentNameValidationMixin
|
13468
13563
|
)(RawUserAttribute);
|
13469
13564
|
|
13470
|
-
customElements.define(componentName$
|
13565
|
+
customElements.define(componentName$e, UserAttributeClass);
|
13471
13566
|
|
13472
13567
|
var greenVIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhDMCAxMi40IDMuNiAxNiA4IDE2QzEyLjQgMTYgMTYgMTIuNCAxNiA4QzE2IDMuNiAxMi40IDAgOCAwWk03LjEgMTEuN0wyLjkgNy42TDQuMyA2LjJMNyA4LjlMMTIgNEwxMy40IDUuNEw3LjEgMTEuN1oiIGZpbGw9IiM0Q0FGNTAiLz4KPC9zdmc+Cg==";
|
13473
13568
|
|
13474
|
-
const componentName$
|
13569
|
+
const componentName$d = getComponentName('user-auth-method');
|
13475
13570
|
class RawUserAuthMethod extends createBaseClass({
|
13476
|
-
componentName: componentName$
|
13571
|
+
componentName: componentName$d,
|
13477
13572
|
baseSelector: ':host > .root',
|
13478
13573
|
}) {
|
13479
13574
|
constructor() {
|
@@ -13666,11 +13761,11 @@ const UserAuthMethodClass = compose(
|
|
13666
13761
|
componentNameValidationMixin
|
13667
13762
|
)(RawUserAuthMethod);
|
13668
13763
|
|
13669
|
-
customElements.define(componentName$
|
13764
|
+
customElements.define(componentName$d, UserAuthMethodClass);
|
13670
13765
|
|
13671
|
-
const componentName$
|
13766
|
+
const componentName$c = getComponentName('saml-group-mappings-internal');
|
13672
13767
|
|
13673
|
-
const BaseInputClass = createBaseInputClass({ componentName: componentName$
|
13768
|
+
const BaseInputClass = createBaseInputClass({ componentName: componentName$c, baseSelector: '' });
|
13674
13769
|
|
13675
13770
|
class SamlGroupMappingsInternal extends BaseInputClass {
|
13676
13771
|
static get observedAttributes() {
|
@@ -13796,7 +13891,7 @@ class SamlGroupMappingsInternal extends BaseInputClass {
|
|
13796
13891
|
}
|
13797
13892
|
}
|
13798
13893
|
|
13799
|
-
const componentName$
|
13894
|
+
const componentName$b = getComponentName('saml-group-mappings');
|
13800
13895
|
|
13801
13896
|
const customMixin$3 = (superclass) =>
|
13802
13897
|
class SamlGroupMappingsMixinClass extends superclass {
|
@@ -13806,14 +13901,14 @@ const customMixin$3 = (superclass) =>
|
|
13806
13901
|
const template = document.createElement('template');
|
13807
13902
|
|
13808
13903
|
template.innerHTML = `
|
13809
|
-
<${componentName$
|
13904
|
+
<${componentName$c}
|
13810
13905
|
tabindex="-1"
|
13811
|
-
></${componentName$
|
13906
|
+
></${componentName$c}>
|
13812
13907
|
`;
|
13813
13908
|
|
13814
13909
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
13815
13910
|
|
13816
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
13911
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$c);
|
13817
13912
|
|
13818
13913
|
forwardAttrs(this, this.inputElement, {
|
13819
13914
|
includeAttrs: [
|
@@ -13890,15 +13985,15 @@ const SamlGroupMappingsClass = compose(
|
|
13890
13985
|
'options',
|
13891
13986
|
'error-message',
|
13892
13987
|
],
|
13893
|
-
componentName: componentName$
|
13988
|
+
componentName: componentName$b,
|
13894
13989
|
})
|
13895
13990
|
);
|
13896
13991
|
|
13897
|
-
customElements.define(componentName$
|
13992
|
+
customElements.define(componentName$c, SamlGroupMappingsInternal);
|
13898
13993
|
|
13899
|
-
customElements.define(componentName$
|
13994
|
+
customElements.define(componentName$b, SamlGroupMappingsClass);
|
13900
13995
|
|
13901
|
-
const componentName$
|
13996
|
+
const componentName$a = getComponentName('radio-button');
|
13902
13997
|
|
13903
13998
|
const customMixin$2 = (superclass) =>
|
13904
13999
|
class CustomMixin extends superclass {
|
@@ -13963,11 +14058,11 @@ const RadioButtonClass = compose(
|
|
13963
14058
|
wrappedEleName: 'vaadin-radio-button',
|
13964
14059
|
excludeAttrsSync: ['tabindex', 'data'],
|
13965
14060
|
includeForwardProps: ['checked', 'name', 'disabled'],
|
13966
|
-
componentName: componentName$
|
14061
|
+
componentName: componentName$a,
|
13967
14062
|
})
|
13968
14063
|
);
|
13969
14064
|
|
13970
|
-
const componentName$
|
14065
|
+
const componentName$9 = getComponentName('radio-group');
|
13971
14066
|
|
13972
14067
|
const RadioGroupMixin = (superclass) =>
|
13973
14068
|
class RadioGroupMixinClass extends superclass {
|
@@ -13982,12 +14077,12 @@ const RadioGroupMixin = (superclass) =>
|
|
13982
14077
|
|
13983
14078
|
// we are overriding vaadin children getter so it will run on our custom elements
|
13984
14079
|
Object.defineProperty(this.baseElement, 'children', {
|
13985
|
-
get: () => this.querySelectorAll(componentName$
|
14080
|
+
get: () => this.querySelectorAll(componentName$a),
|
13986
14081
|
});
|
13987
14082
|
|
13988
14083
|
// we are overriding vaadin __filterRadioButtons so it will run on our custom elements
|
13989
14084
|
this.baseElement.__filterRadioButtons = (nodes) => {
|
13990
|
-
return nodes.filter((node) => node.localName === componentName$
|
14085
|
+
return nodes.filter((node) => node.localName === componentName$a);
|
13991
14086
|
};
|
13992
14087
|
|
13993
14088
|
// vaadin radio group missing some input properties
|
@@ -14137,13 +14232,13 @@ const RadioGroupClass = compose(
|
|
14137
14232
|
`,
|
14138
14233
|
|
14139
14234
|
excludeAttrsSync: ['tabindex', 'size', 'data', 'direction'],
|
14140
|
-
componentName: componentName$
|
14235
|
+
componentName: componentName$9,
|
14141
14236
|
includeForwardProps: ['value'],
|
14142
14237
|
})
|
14143
14238
|
);
|
14144
14239
|
|
14145
|
-
customElements.define(componentName$
|
14146
|
-
customElements.define(componentName$
|
14240
|
+
customElements.define(componentName$9, RadioGroupClass);
|
14241
|
+
customElements.define(componentName$a, RadioButtonClass);
|
14147
14242
|
|
14148
14243
|
const activeableMixin = (superclass) =>
|
14149
14244
|
class ActiveableMixinClass extends superclass {
|
@@ -14160,7 +14255,7 @@ const activeableMixin = (superclass) =>
|
|
14160
14255
|
}
|
14161
14256
|
};
|
14162
14257
|
|
14163
|
-
const componentName$
|
14258
|
+
const componentName$8 = getComponentName('list-item');
|
14164
14259
|
|
14165
14260
|
const customMixin$1 = (superclass) =>
|
14166
14261
|
class ListItemMixinClass extends superclass {
|
@@ -14209,11 +14304,11 @@ const ListItemClass = compose(
|
|
14209
14304
|
componentNameValidationMixin,
|
14210
14305
|
customMixin$1,
|
14211
14306
|
activeableMixin
|
14212
|
-
)(createBaseClass({ componentName: componentName$
|
14307
|
+
)(createBaseClass({ componentName: componentName$8, baseSelector: 'slot' }));
|
14213
14308
|
|
14214
|
-
const componentName$
|
14309
|
+
const componentName$7 = getComponentName('list');
|
14215
14310
|
|
14216
|
-
class RawList extends createBaseClass({ componentName: componentName$
|
14311
|
+
class RawList extends createBaseClass({ componentName: componentName$7, baseSelector: '.wrapper' }) {
|
14217
14312
|
static get observedAttributes() {
|
14218
14313
|
return ['variant', 'readonly'];
|
14219
14314
|
}
|
@@ -14360,8 +14455,8 @@ const ListClass = compose(
|
|
14360
14455
|
componentNameValidationMixin
|
14361
14456
|
)(RawList);
|
14362
14457
|
|
14363
|
-
customElements.define(componentName$
|
14364
|
-
customElements.define(componentName$
|
14458
|
+
customElements.define(componentName$7, ListClass);
|
14459
|
+
customElements.define(componentName$8, ListItemClass);
|
14365
14460
|
|
14366
14461
|
const defaultValidateSchema = () => true;
|
14367
14462
|
const defaultItemRenderer = (item) => `<pre>${JSON.stringify(item, null, 4)}</pre>`;
|
@@ -14462,7 +14557,7 @@ const createDynamicDataMixin =
|
|
14462
14557
|
}
|
14463
14558
|
};
|
14464
14559
|
|
14465
|
-
const componentName$
|
14560
|
+
const componentName$6 = getComponentName('apps-list');
|
14466
14561
|
|
14467
14562
|
const limitAbbreviation = (str, limit = 2) =>
|
14468
14563
|
str
|
@@ -14524,7 +14619,7 @@ const AppsListClass = compose(
|
|
14524
14619
|
slots: ['empty-state'],
|
14525
14620
|
wrappedEleName: 'descope-list',
|
14526
14621
|
excludeAttrsSync: ['tabindex', 'class', 'empty'],
|
14527
|
-
componentName: componentName$
|
14622
|
+
componentName: componentName$6,
|
14528
14623
|
style: () => `
|
14529
14624
|
:host {
|
14530
14625
|
width: 100%;
|
@@ -14549,9 +14644,9 @@ const AppsListClass = compose(
|
|
14549
14644
|
})
|
14550
14645
|
);
|
14551
14646
|
|
14552
|
-
customElements.define(componentName$
|
14647
|
+
customElements.define(componentName$6, AppsListClass);
|
14553
14648
|
|
14554
|
-
const componentName$
|
14649
|
+
const componentName$5 = getComponentName('scopes-list');
|
14555
14650
|
const variants = ['checkbox', 'switch'];
|
14556
14651
|
|
14557
14652
|
const itemRenderer = ({ id, desc, required = false }, _, ref) => {
|
@@ -14570,7 +14665,7 @@ const itemRenderer = ({ id, desc, required = false }, _, ref) => {
|
|
14570
14665
|
`;
|
14571
14666
|
};
|
14572
14667
|
|
14573
|
-
class RawScopesList extends createBaseClass({ componentName: componentName$
|
14668
|
+
class RawScopesList extends createBaseClass({ componentName: componentName$5, baseSelector: 'div' }) {
|
14574
14669
|
constructor() {
|
14575
14670
|
super();
|
14576
14671
|
|
@@ -14675,13 +14770,13 @@ const ScopesListClass = compose(
|
|
14675
14770
|
componentNameValidationMixin
|
14676
14771
|
)(RawScopesList);
|
14677
14772
|
|
14678
|
-
customElements.define(componentName$
|
14773
|
+
customElements.define(componentName$5, ScopesListClass);
|
14679
14774
|
|
14680
14775
|
var arrowsImg = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOSAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMTQ0OTIgMTUuNjQ1TDcuNDk5OTIgMTRMMi44MzMyNSAxOC42NjY3TDcuNDk5OTIgMjMuMzMzM0w5LjE0NDkyIDIxLjY4ODNMNy4zMDE1OSAxOS44MzMzSDI0Ljk5OTlWMTcuNUg3LjMwMTU5TDkuMTQ0OTIgMTUuNjQ1WiIgZmlsbD0iIzYzNkM3NCIvPgo8cGF0aCBkPSJNMTkuODU1IDEyLjM1NTNMMjEuNSAxNC4wMDAzTDI2LjE2NjcgOS4zMzM2NkwyMS41IDQuNjY2OTlMMTkuODU1IDYuMzExOTlMMjEuNjk4MyA4LjE2Njk5SDRWMTAuNTAwM0gyMS42OTgzTDE5Ljg1NSAxMi4zNTUzWiIgZmlsbD0iIzYzNkM3NCIvPgo8L3N2Zz4K";
|
14681
14776
|
|
14682
|
-
const componentName$
|
14777
|
+
const componentName$4 = getComponentName('third-party-app-logo');
|
14683
14778
|
class RawThirdPartyAppLogoClass extends createBaseClass({
|
14684
|
-
componentName: componentName$
|
14779
|
+
componentName: componentName$4,
|
14685
14780
|
baseSelector: '.wrapper',
|
14686
14781
|
}) {
|
14687
14782
|
constructor() {
|
@@ -14775,9 +14870,9 @@ const ThirdPartyAppLogoClass = compose(
|
|
14775
14870
|
componentNameValidationMixin
|
14776
14871
|
)(RawThirdPartyAppLogoClass);
|
14777
14872
|
|
14778
|
-
customElements.define(componentName$
|
14873
|
+
customElements.define(componentName$4, ThirdPartyAppLogoClass);
|
14779
14874
|
|
14780
|
-
const componentName$
|
14875
|
+
const componentName$3 = getComponentName('security-questions-setup');
|
14781
14876
|
|
14782
14877
|
const attrsToSync$1 = [
|
14783
14878
|
'full-width',
|
@@ -14793,7 +14888,7 @@ const attrsToSync$1 = [
|
|
14793
14888
|
];
|
14794
14889
|
|
14795
14890
|
const attrsToReRender$1 = ['count', 'questions'];
|
14796
|
-
class RawSecurityQuestionsSetup extends createBaseClass({ componentName: componentName$
|
14891
|
+
class RawSecurityQuestionsSetup extends createBaseClass({ componentName: componentName$3, baseSelector: 'div' }) {
|
14797
14892
|
constructor() {
|
14798
14893
|
super();
|
14799
14894
|
|
@@ -14900,7 +14995,7 @@ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: compone
|
|
14900
14995
|
return JSON.parse(this.getAttribute('questions')) || [];
|
14901
14996
|
} catch (e) {
|
14902
14997
|
// eslint-disable-next-line no-console
|
14903
|
-
console.error(componentName$
|
14998
|
+
console.error(componentName$3, 'Error parsing questions attribute', e);
|
14904
14999
|
return [];
|
14905
15000
|
}
|
14906
15001
|
}
|
@@ -15008,9 +15103,9 @@ const SecurityQuestionsSetupClass = compose(
|
|
15008
15103
|
componentNameValidationMixin
|
15009
15104
|
)(RawSecurityQuestionsSetup);
|
15010
15105
|
|
15011
|
-
customElements.define(componentName$
|
15106
|
+
customElements.define(componentName$3, SecurityQuestionsSetupClass);
|
15012
15107
|
|
15013
|
-
const componentName$
|
15108
|
+
const componentName$2 = getComponentName('security-questions-verify');
|
15014
15109
|
|
15015
15110
|
const textFieldsAttrs = [
|
15016
15111
|
'full-width',
|
@@ -15031,7 +15126,7 @@ const attrMappings = {
|
|
15031
15126
|
const attrsToSync = [...textFieldsAttrs, ...textsAttrs];
|
15032
15127
|
|
15033
15128
|
const attrsToReRender = ['questions'];
|
15034
|
-
class RawSecurityQuestionsVerify extends createBaseClass({ componentName: componentName$
|
15129
|
+
class RawSecurityQuestionsVerify extends createBaseClass({ componentName: componentName$2, baseSelector: 'div' }) {
|
15035
15130
|
constructor() {
|
15036
15131
|
super();
|
15037
15132
|
|
@@ -15102,7 +15197,7 @@ class RawSecurityQuestionsVerify extends createBaseClass({ componentName: compon
|
|
15102
15197
|
return JSON.parse(this.getAttribute('questions')) || [];
|
15103
15198
|
} catch (e) {
|
15104
15199
|
// eslint-disable-next-line no-console
|
15105
|
-
console.error(componentName$
|
15200
|
+
console.error(componentName$2, 'Error parsing questions attribute', e);
|
15106
15201
|
return [];
|
15107
15202
|
}
|
15108
15203
|
}
|
@@ -15212,7 +15307,316 @@ const SecurityQuestionsVerifyClass = compose(
|
|
15212
15307
|
componentNameValidationMixin
|
15213
15308
|
)(RawSecurityQuestionsVerify);
|
15214
15309
|
|
15215
|
-
customElements.define(componentName$
|
15310
|
+
customElements.define(componentName$2, SecurityQuestionsVerifyClass);
|
15311
|
+
|
15312
|
+
const NUMERIC_RE = /^\d+$/;
|
15313
|
+
|
15314
|
+
const isNumericValue = (val) => NUMERIC_RE.test(val.replaceAll('+', '').replaceAll('-', ''));
|
15315
|
+
|
15316
|
+
const sanitizeCountryCodePrefix = (val) => val.replace(/\+\d+-/, '');
|
15317
|
+
|
15318
|
+
const componentName$1 = getComponentName('hybrid-field');
|
15319
|
+
|
15320
|
+
const attrs = {
|
15321
|
+
shared: [
|
15322
|
+
'label',
|
15323
|
+
'placeholder',
|
15324
|
+
'bordered',
|
15325
|
+
'full-width',
|
15326
|
+
'label-type',
|
15327
|
+
'size',
|
15328
|
+
'disabled',
|
15329
|
+
'readonly',
|
15330
|
+
'required',
|
15331
|
+
'st-host-direction',
|
15332
|
+
],
|
15333
|
+
email: [
|
15334
|
+
'data-errormessage-value-missing-email',
|
15335
|
+
'data-errormessage-pattern-mismatch-email',
|
15336
|
+
'external-input',
|
15337
|
+
],
|
15338
|
+
phone: {
|
15339
|
+
countryCode: [
|
15340
|
+
'country-input-label',
|
15341
|
+
'country-input-placeholder',
|
15342
|
+
'restrict-countries',
|
15343
|
+
'default-code',
|
15344
|
+
'phone-minlength',
|
15345
|
+
'data-errormessage-value-missing-phone',
|
15346
|
+
],
|
15347
|
+
inputBox: [
|
15348
|
+
'restrict-countries',
|
15349
|
+
'default-code',
|
15350
|
+
'phone-minlength',
|
15351
|
+
'data-errormessage-value-missing-phone',
|
15352
|
+
],
|
15353
|
+
},
|
15354
|
+
};
|
15355
|
+
|
15356
|
+
const attrMap = {
|
15357
|
+
email: {
|
15358
|
+
'data-errormessage-value-missing-email': 'data-errormessage-value-missing',
|
15359
|
+
'data-errormessage-pattern-mismatch-email': 'data-errormessage-pattern-mismatch',
|
15360
|
+
},
|
15361
|
+
phone: {
|
15362
|
+
placeholder: 'phone-input-placeholder',
|
15363
|
+
'phone-minlength': 'minlength',
|
15364
|
+
'data-errormessage-value-missing-phone': 'data-errormessage-value-missing',
|
15365
|
+
},
|
15366
|
+
};
|
15367
|
+
|
15368
|
+
const EMAIL_FIELD = 'descope-email-field';
|
15369
|
+
const PHONE_FIELD = 'descope-phone-field';
|
15370
|
+
const PHONE_INPUT_BOX_FIELD = 'descope-phone-input-box-field';
|
15371
|
+
|
15372
|
+
const BaseClass = createBaseClass({
|
15373
|
+
componentName: componentName$1,
|
15374
|
+
baseSelector: 'div',
|
15375
|
+
});
|
15376
|
+
|
15377
|
+
class RawHybridField extends BaseClass {
|
15378
|
+
#isReportedValidity = false;
|
15379
|
+
|
15380
|
+
#selectionStart;
|
15381
|
+
|
15382
|
+
constructor() {
|
15383
|
+
super();
|
15384
|
+
|
15385
|
+
this.attachShadow({ mode: 'open' }).innerHTML = `
|
15386
|
+
<style>
|
15387
|
+
:host {
|
15388
|
+
display: inline-flex;
|
15389
|
+
box-sizing: border-box;
|
15390
|
+
padding: 0;
|
15391
|
+
gap: 0;
|
15392
|
+
}
|
15393
|
+
.wrapper {
|
15394
|
+
display: grid;
|
15395
|
+
place-content: center;
|
15396
|
+
}
|
15397
|
+
descope-email-field,
|
15398
|
+
descope-phone-field,
|
15399
|
+
descope-phone-input-box-field {
|
15400
|
+
grid-area: 1/1;
|
15401
|
+
width: 100%;
|
15402
|
+
height: 100%;
|
15403
|
+
}
|
15404
|
+
.hidden {
|
15405
|
+
visibility: hidden;
|
15406
|
+
}
|
15407
|
+
</style>
|
15408
|
+
<div class="wrapper">
|
15409
|
+
<descope-email-field external-input="${this.isExternalInput}"></descope-email-field>
|
15410
|
+
<descope-phone-field allow-alphanumeric-input="true"></descope-phone-field>
|
15411
|
+
<descope-phone-input-box-field allow-alphanumeric-input="true"></descope-phone-input-box-field>
|
15412
|
+
</div>
|
15413
|
+
`;
|
15414
|
+
}
|
15415
|
+
|
15416
|
+
get isExternalInput() {
|
15417
|
+
return this.getAttribute('external-input') === 'true';
|
15418
|
+
}
|
15419
|
+
|
15420
|
+
get emailInputEle() {
|
15421
|
+
return this.isExternalInput ? this.emailInput.externalInput : this.emailInput.inputElement;
|
15422
|
+
}
|
15423
|
+
|
15424
|
+
get phoneVariant() {
|
15425
|
+
const isInputBox = this.getAttribute('phone-variant') === 'inputBox';
|
15426
|
+
return isInputBox ? this.phoneInputBoxInput : this.phoneCountryCodeInput;
|
15427
|
+
}
|
15428
|
+
|
15429
|
+
get defaultCode() {
|
15430
|
+
const firstItem = this.phoneCountryCodeInput.countryCodes?.[0] || '';
|
15431
|
+
return this.getAttribute('default-code') || firstItem;
|
15432
|
+
}
|
15433
|
+
|
15434
|
+
get activeInputEle() {
|
15435
|
+
if (this.activeInput === this.emailInput) {
|
15436
|
+
return this.emailInputEle;
|
15437
|
+
}
|
15438
|
+
return this.phoneVariant.phoneNumberInputEle;
|
15439
|
+
}
|
15440
|
+
|
15441
|
+
get value() {
|
15442
|
+
return this.activeInput?.value || '';
|
15443
|
+
}
|
15444
|
+
|
15445
|
+
set value(val) {
|
15446
|
+
this.handleActiveInput(val);
|
15447
|
+
this.activeInput.value = val;
|
15448
|
+
}
|
15449
|
+
|
15450
|
+
async init() {
|
15451
|
+
super.init?.();
|
15452
|
+
|
15453
|
+
this.initInputs();
|
15454
|
+
this.updateAttrs();
|
15455
|
+
this.toggleInputVisibility();
|
15456
|
+
|
15457
|
+
await this.waitForInputs();
|
15458
|
+
|
15459
|
+
this.initInputEles();
|
15460
|
+
this.overrideEmailInputType();
|
15461
|
+
this.overrideEmailSetAttribute();
|
15462
|
+
}
|
15463
|
+
|
15464
|
+
waitForInputs() {
|
15465
|
+
return new Promise((resolve) => {
|
15466
|
+
const check = setInterval(() => {
|
15467
|
+
if (this.emailInputEle) {
|
15468
|
+
clearInterval(check);
|
15469
|
+
resolve();
|
15470
|
+
}
|
15471
|
+
});
|
15472
|
+
});
|
15473
|
+
}
|
15474
|
+
|
15475
|
+
initInputs() {
|
15476
|
+
this.emailInput = this.shadowRoot.querySelector(EMAIL_FIELD);
|
15477
|
+
this.phoneCountryCodeInput = this.shadowRoot.querySelector(PHONE_FIELD);
|
15478
|
+
this.phoneInputBoxInput = this.shadowRoot.querySelector(PHONE_INPUT_BOX_FIELD);
|
15479
|
+
|
15480
|
+
this.inputs = [this.emailInput, this.phoneCountryCodeInput, this.phoneInputBoxInput];
|
15481
|
+
|
15482
|
+
this.activeInput = this.emailInput;
|
15483
|
+
}
|
15484
|
+
|
15485
|
+
// we need to listen on the inner `input` element itself, otherwise we don't always get an `input` event
|
15486
|
+
initInputEles() {
|
15487
|
+
const inputEles = [
|
15488
|
+
this.emailInputEle,
|
15489
|
+
this.phoneCountryCodeInput.phoneNumberInputEle,
|
15490
|
+
this.phoneInputBoxInput.phoneNumberInputEle,
|
15491
|
+
];
|
15492
|
+
|
15493
|
+
inputEles.forEach((ele) => {
|
15494
|
+
ele.addEventListener('input', this.onValueChange.bind(this));
|
15495
|
+
});
|
15496
|
+
}
|
15497
|
+
|
15498
|
+
overrideEmailInputType() {
|
15499
|
+
this.emailInputEle.addEventListener('focus', () => {
|
15500
|
+
this.emailInputEle.setAttribute('type', 'text');
|
15501
|
+
});
|
15502
|
+
this.emailInputEle.addEventListener('blur', () => {
|
15503
|
+
setTimeout(() => {
|
15504
|
+
this.emailInputEle.setAttribute('type', 'email');
|
15505
|
+
});
|
15506
|
+
});
|
15507
|
+
}
|
15508
|
+
|
15509
|
+
// We want to prevent Vaadin from changing the input type to `email`
|
15510
|
+
// otherwise, we cannot get the selectionStart from the input.
|
15511
|
+
overrideEmailSetAttribute() {
|
15512
|
+
const origEmailSetAttr = this.emailInput.setAttribute.bind(this.emailInputEle);
|
15513
|
+
this.emailInputEle.setAttribute = (name, value) => {
|
15514
|
+
if (name !== 'type' || value !== 'email' || !this.emailInput.hasAttribute('focused')) {
|
15515
|
+
return origEmailSetAttr(name, value);
|
15516
|
+
}
|
15517
|
+
return false;
|
15518
|
+
};
|
15519
|
+
}
|
15520
|
+
|
15521
|
+
updateAttrs() {
|
15522
|
+
this.inputs.forEach((input) => forwardAttrs(this, input, { includeAttrs: attrs.shared }));
|
15523
|
+
|
15524
|
+
forwardAttrs(this, this.emailInput, { includeAttrs: attrs.email, mapAttrs: attrMap.email });
|
15525
|
+
|
15526
|
+
forwardAttrs(this, this.phoneCountryCodeInput, {
|
15527
|
+
includeAttrs: attrs.phone.countryCode,
|
15528
|
+
mapAttrs: attrMap.phone,
|
15529
|
+
});
|
15530
|
+
|
15531
|
+
forwardAttrs(this, this.phoneInputBoxInput, {
|
15532
|
+
includeAttrs: attrs.phone.inputBox,
|
15533
|
+
mapAttrs: attrMap.phone,
|
15534
|
+
});
|
15535
|
+
|
15536
|
+
setTimeout(() => this.phoneCountryCodeInput.setAttribute('default-code', this.defaultCode));
|
15537
|
+
}
|
15538
|
+
|
15539
|
+
onValueChange() {
|
15540
|
+
this.#selectionStart = this.activeInputEle.selectionStart;
|
15541
|
+
this.handleActiveInput(this.activeInput.value);
|
15542
|
+
}
|
15543
|
+
|
15544
|
+
handleActiveInput(val) {
|
15545
|
+
const expectedActiveInput = isNumericValue(val) ? this.phoneVariant : this.emailInput;
|
15546
|
+
|
15547
|
+
if (this.activeInput !== expectedActiveInput) {
|
15548
|
+
this.setActiveInput(expectedActiveInput);
|
15549
|
+
}
|
15550
|
+
}
|
15551
|
+
|
15552
|
+
setActiveInput(expectedActiveInput) {
|
15553
|
+
const val = this.activeInput.value;
|
15554
|
+
this.activeInput = expectedActiveInput;
|
15555
|
+
this.setActiveInputValue(val);
|
15556
|
+
if (this.#isReportedValidity) this.activeInput.reportValidity();
|
15557
|
+
this.setActiveInputSelectionStart();
|
15558
|
+
this.toggleInputVisibility();
|
15559
|
+
}
|
15560
|
+
|
15561
|
+
setActiveInputSelectionStart() {
|
15562
|
+
setTimeout(() => {
|
15563
|
+
this.activeInputEle.focus();
|
15564
|
+
this.activeInputEle.setSelectionRange?.(this.#selectionStart, this.#selectionStart);
|
15565
|
+
});
|
15566
|
+
}
|
15567
|
+
|
15568
|
+
setActiveInputValue(val) {
|
15569
|
+
const sanitizedVal = sanitizeCountryCodePrefix(val);
|
15570
|
+
const isPhoneField = this.activeInput.localName === PHONE_FIELD;
|
15571
|
+
const value = isPhoneField
|
15572
|
+
? `${this.phoneCountryCodeInput.countryCodeItems}-${sanitizedVal}`
|
15573
|
+
: sanitizedVal;
|
15574
|
+
this.activeInput.value = value;
|
15575
|
+
}
|
15576
|
+
|
15577
|
+
toggleInputVisibility() {
|
15578
|
+
this.inputs.forEach((input) => {
|
15579
|
+
input !== this.activeInput ? input.classList.add('hidden') : input.classList.remove('hidden');
|
15580
|
+
});
|
15581
|
+
}
|
15582
|
+
|
15583
|
+
reportValidity() {
|
15584
|
+
this.#isReportedValidity = true;
|
15585
|
+
|
15586
|
+
const ele = this.activeInputEle;
|
15587
|
+
|
15588
|
+
// On reportValidity we want to set the caret at the end of the input value.
|
15589
|
+
// Since checkValidity triggers `focus` on the input, it sets the caret at the start of the input,
|
15590
|
+
// regardless the existing value.
|
15591
|
+
setTimeout(() => {
|
15592
|
+
ele.setSelectionRange?.(ele.value.length, ele.value.length);
|
15593
|
+
});
|
15594
|
+
|
15595
|
+
return this.activeInput.reportValidity();
|
15596
|
+
}
|
15597
|
+
|
15598
|
+
checkValidity() {
|
15599
|
+
return this.activeInput.checkValidity();
|
15600
|
+
}
|
15601
|
+
}
|
15602
|
+
|
15603
|
+
const HybridFieldClass = compose(
|
15604
|
+
createStyleMixin({ componentNameOverride: getComponentName('input-wrapper') }),
|
15605
|
+
createStyleMixin({
|
15606
|
+
mappings: {
|
15607
|
+
hostWidth: { selector: () => ':host', property: 'width' },
|
15608
|
+
hostDirection: [
|
15609
|
+
{ selector: () => 'descope-email-field', property: 'direction' },
|
15610
|
+
{ selector: () => 'descope-phone-field', property: 'direction' },
|
15611
|
+
{ selector: () => 'descope-phone-input-box-field', property: 'direction' },
|
15612
|
+
],
|
15613
|
+
},
|
15614
|
+
}),
|
15615
|
+
draggableMixin,
|
15616
|
+
componentNameValidationMixin
|
15617
|
+
)(RawHybridField);
|
15618
|
+
|
15619
|
+
customElements.define(componentName$1, HybridFieldClass);
|
15216
15620
|
|
15217
15621
|
const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
|
15218
15622
|
|
@@ -15651,7 +16055,7 @@ const globals = {
|
|
15651
16055
|
fonts,
|
15652
16056
|
direction,
|
15653
16057
|
};
|
15654
|
-
const vars$
|
16058
|
+
const vars$T = getThemeVars(globals);
|
15655
16059
|
|
15656
16060
|
const globalRefs$y = getThemeRefs(globals);
|
15657
16061
|
const compVars$6 = ButtonClass.cssVarList;
|
@@ -15664,7 +16068,7 @@ const mode = {
|
|
15664
16068
|
surface: globalRefs$y.colors.surface,
|
15665
16069
|
};
|
15666
16070
|
|
15667
|
-
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$
|
16071
|
+
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$14);
|
15668
16072
|
|
15669
16073
|
const button = {
|
15670
16074
|
...helperTheme$4,
|
@@ -15776,7 +16180,7 @@ const button = {
|
|
15776
16180
|
},
|
15777
16181
|
};
|
15778
16182
|
|
15779
|
-
const vars$
|
16183
|
+
const vars$S = {
|
15780
16184
|
...compVars$6,
|
15781
16185
|
...helperVars$4,
|
15782
16186
|
};
|
@@ -15784,13 +16188,13 @@ const vars$R = {
|
|
15784
16188
|
var button$1 = /*#__PURE__*/Object.freeze({
|
15785
16189
|
__proto__: null,
|
15786
16190
|
default: button,
|
15787
|
-
vars: vars$
|
16191
|
+
vars: vars$S
|
15788
16192
|
});
|
15789
16193
|
|
15790
16194
|
const componentName = getComponentName('input-wrapper');
|
15791
16195
|
const globalRefs$x = getThemeRefs(globals);
|
15792
16196
|
|
15793
|
-
const [theme$1, refs, vars$
|
16197
|
+
const [theme$1, refs, vars$R] = createHelperVars(
|
15794
16198
|
{
|
15795
16199
|
labelTextColor: globalRefs$x.colors.surface.dark,
|
15796
16200
|
labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
|
@@ -15909,13 +16313,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
|
|
15909
16313
|
__proto__: null,
|
15910
16314
|
default: theme$1,
|
15911
16315
|
refs: refs,
|
15912
|
-
vars: vars$
|
16316
|
+
vars: vars$R
|
15913
16317
|
});
|
15914
16318
|
|
15915
16319
|
const globalRefs$w = getThemeRefs(globals);
|
15916
|
-
const vars$
|
16320
|
+
const vars$Q = TextFieldClass.cssVarList;
|
15917
16321
|
|
15918
16322
|
const textField = {
|
16323
|
+
[vars$Q.hostWidth]: refs.width,
|
16324
|
+
[vars$Q.hostMinWidth]: refs.minWidth,
|
16325
|
+
[vars$Q.hostDirection]: refs.direction,
|
16326
|
+
[vars$Q.fontSize]: refs.fontSize,
|
16327
|
+
[vars$Q.fontFamily]: refs.fontFamily,
|
16328
|
+
[vars$Q.labelFontSize]: refs.labelFontSize,
|
16329
|
+
[vars$Q.labelFontWeight]: refs.labelFontWeight,
|
16330
|
+
[vars$Q.labelTextColor]: refs.labelTextColor,
|
16331
|
+
[vars$Q.labelRequiredIndicator]: refs.requiredIndicator,
|
16332
|
+
[vars$Q.errorMessageTextColor]: refs.errorMessageTextColor,
|
16333
|
+
[vars$Q.inputValueTextColor]: refs.valueTextColor,
|
16334
|
+
[vars$Q.inputPlaceholderColor]: refs.placeholderTextColor,
|
16335
|
+
[vars$Q.inputBorderWidth]: refs.borderWidth,
|
16336
|
+
[vars$Q.inputBorderStyle]: refs.borderStyle,
|
16337
|
+
[vars$Q.inputBorderColor]: refs.borderColor,
|
16338
|
+
[vars$Q.inputBorderRadius]: refs.borderRadius,
|
16339
|
+
[vars$Q.inputOutlineWidth]: refs.outlineWidth,
|
16340
|
+
[vars$Q.inputOutlineStyle]: refs.outlineStyle,
|
16341
|
+
[vars$Q.inputOutlineColor]: refs.outlineColor,
|
16342
|
+
[vars$Q.inputOutlineOffset]: refs.outlineOffset,
|
16343
|
+
[vars$Q.inputBackgroundColor]: refs.backgroundColor,
|
16344
|
+
[vars$Q.inputHeight]: refs.inputHeight,
|
16345
|
+
[vars$Q.inputHorizontalPadding]: refs.horizontalPadding,
|
16346
|
+
[vars$Q.helperTextColor]: refs.helperTextColor,
|
16347
|
+
[vars$Q.textAlign]: refs.textAlign,
|
16348
|
+
textAlign: {
|
16349
|
+
right: { [vars$Q.inputTextAlign]: 'right' },
|
16350
|
+
left: { [vars$Q.inputTextAlign]: 'left' },
|
16351
|
+
center: { [vars$Q.inputTextAlign]: 'center' },
|
16352
|
+
},
|
16353
|
+
[vars$Q.labelPosition]: refs.labelPosition,
|
16354
|
+
[vars$Q.labelTopPosition]: refs.labelTopPosition,
|
16355
|
+
[vars$Q.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16356
|
+
[vars$Q.inputTransformY]: refs.inputTransformY,
|
16357
|
+
[vars$Q.inputTransition]: refs.inputTransition,
|
16358
|
+
[vars$Q.marginInlineStart]: refs.marginInlineStart,
|
16359
|
+
[vars$Q.placeholderOpacity]: refs.placeholderOpacity,
|
16360
|
+
[vars$Q.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
16361
|
+
[vars$Q.valueInputHeight]: refs.valueInputHeight,
|
16362
|
+
[vars$Q.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16363
|
+
[vars$Q.inputIconOffset]: globalRefs$w.spacing.md,
|
16364
|
+
[vars$Q.inputIconSize]: refs.inputIconSize,
|
16365
|
+
[vars$Q.inputIconColor]: refs.placeholderTextColor,
|
16366
|
+
};
|
16367
|
+
|
16368
|
+
var textField$1 = /*#__PURE__*/Object.freeze({
|
16369
|
+
__proto__: null,
|
16370
|
+
default: textField,
|
16371
|
+
textField: textField,
|
16372
|
+
vars: vars$Q
|
16373
|
+
});
|
16374
|
+
|
16375
|
+
const globalRefs$v = getThemeRefs(globals);
|
16376
|
+
const vars$P = PasswordClass.cssVarList;
|
16377
|
+
|
16378
|
+
const password = {
|
15919
16379
|
[vars$P.hostWidth]: refs.width,
|
15920
16380
|
[vars$P.hostMinWidth]: refs.minWidth,
|
15921
16381
|
[vars$P.hostDirection]: refs.direction,
|
@@ -15924,10 +16384,13 @@ const textField = {
|
|
15924
16384
|
[vars$P.labelFontSize]: refs.labelFontSize,
|
15925
16385
|
[vars$P.labelFontWeight]: refs.labelFontWeight,
|
15926
16386
|
[vars$P.labelTextColor]: refs.labelTextColor,
|
15927
|
-
[vars$P.labelRequiredIndicator]: refs.requiredIndicator,
|
15928
16387
|
[vars$P.errorMessageTextColor]: refs.errorMessageTextColor,
|
16388
|
+
[vars$P.inputHorizontalPadding]: refs.horizontalPadding,
|
16389
|
+
[vars$P.inputHeight]: refs.inputHeight,
|
16390
|
+
[vars$P.inputBackgroundColor]: refs.backgroundColor,
|
16391
|
+
[vars$P.labelRequiredIndicator]: refs.requiredIndicator,
|
15929
16392
|
[vars$P.inputValueTextColor]: refs.valueTextColor,
|
15930
|
-
[vars$P.
|
16393
|
+
[vars$P.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
15931
16394
|
[vars$P.inputBorderWidth]: refs.borderWidth,
|
15932
16395
|
[vars$P.inputBorderStyle]: refs.borderStyle,
|
15933
16396
|
[vars$P.inputBorderColor]: refs.borderColor,
|
@@ -15936,16 +16399,9 @@ const textField = {
|
|
15936
16399
|
[vars$P.inputOutlineStyle]: refs.outlineStyle,
|
15937
16400
|
[vars$P.inputOutlineColor]: refs.outlineColor,
|
15938
16401
|
[vars$P.inputOutlineOffset]: refs.outlineOffset,
|
15939
|
-
[vars$P.
|
15940
|
-
[vars$P.
|
15941
|
-
[vars$P.
|
15942
|
-
[vars$P.helperTextColor]: refs.helperTextColor,
|
15943
|
-
[vars$P.textAlign]: refs.textAlign,
|
15944
|
-
textAlign: {
|
15945
|
-
right: { [vars$P.inputTextAlign]: 'right' },
|
15946
|
-
left: { [vars$P.inputTextAlign]: 'left' },
|
15947
|
-
center: { [vars$P.inputTextAlign]: 'center' },
|
15948
|
-
},
|
16402
|
+
[vars$P.revealButtonOffset]: globalRefs$v.spacing.md,
|
16403
|
+
[vars$P.revealButtonSize]: refs.toggleButtonSize,
|
16404
|
+
[vars$P.revealButtonColor]: refs.placeholderTextColor,
|
15949
16405
|
[vars$P.labelPosition]: refs.labelPosition,
|
15950
16406
|
[vars$P.labelTopPosition]: refs.labelTopPosition,
|
15951
16407
|
[vars$P.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -15955,23 +16411,17 @@ const textField = {
|
|
15955
16411
|
[vars$P.placeholderOpacity]: refs.placeholderOpacity,
|
15956
16412
|
[vars$P.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15957
16413
|
[vars$P.valueInputHeight]: refs.valueInputHeight,
|
15958
|
-
[vars$P.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15959
|
-
[vars$P.inputIconOffset]: globalRefs$w.spacing.md,
|
15960
|
-
[vars$P.inputIconSize]: refs.inputIconSize,
|
15961
|
-
[vars$P.inputIconColor]: refs.placeholderTextColor,
|
15962
16414
|
};
|
15963
16415
|
|
15964
|
-
var
|
16416
|
+
var password$1 = /*#__PURE__*/Object.freeze({
|
15965
16417
|
__proto__: null,
|
15966
|
-
default:
|
15967
|
-
textField: textField,
|
16418
|
+
default: password,
|
15968
16419
|
vars: vars$P
|
15969
16420
|
});
|
15970
16421
|
|
15971
|
-
const
|
15972
|
-
const vars$O = PasswordClass.cssVarList;
|
16422
|
+
const vars$O = NumberFieldClass.cssVarList;
|
15973
16423
|
|
15974
|
-
const
|
16424
|
+
const numberField = {
|
15975
16425
|
[vars$O.hostWidth]: refs.width,
|
15976
16426
|
[vars$O.hostMinWidth]: refs.minWidth,
|
15977
16427
|
[vars$O.hostDirection]: refs.direction,
|
@@ -15981,12 +16431,8 @@ const password = {
|
|
15981
16431
|
[vars$O.labelFontWeight]: refs.labelFontWeight,
|
15982
16432
|
[vars$O.labelTextColor]: refs.labelTextColor,
|
15983
16433
|
[vars$O.errorMessageTextColor]: refs.errorMessageTextColor,
|
15984
|
-
[vars$O.inputHorizontalPadding]: refs.horizontalPadding,
|
15985
|
-
[vars$O.inputHeight]: refs.inputHeight,
|
15986
|
-
[vars$O.inputBackgroundColor]: refs.backgroundColor,
|
15987
|
-
[vars$O.labelRequiredIndicator]: refs.requiredIndicator,
|
15988
16434
|
[vars$O.inputValueTextColor]: refs.valueTextColor,
|
15989
|
-
[vars$O.
|
16435
|
+
[vars$O.inputPlaceholderColor]: refs.placeholderTextColor,
|
15990
16436
|
[vars$O.inputBorderWidth]: refs.borderWidth,
|
15991
16437
|
[vars$O.inputBorderStyle]: refs.borderStyle,
|
15992
16438
|
[vars$O.inputBorderColor]: refs.borderColor,
|
@@ -15995,9 +16441,10 @@ const password = {
|
|
15995
16441
|
[vars$O.inputOutlineStyle]: refs.outlineStyle,
|
15996
16442
|
[vars$O.inputOutlineColor]: refs.outlineColor,
|
15997
16443
|
[vars$O.inputOutlineOffset]: refs.outlineOffset,
|
15998
|
-
[vars$O.
|
15999
|
-
[vars$O.
|
16000
|
-
[vars$O.
|
16444
|
+
[vars$O.inputBackgroundColor]: refs.backgroundColor,
|
16445
|
+
[vars$O.labelRequiredIndicator]: refs.requiredIndicator,
|
16446
|
+
[vars$O.inputHorizontalPadding]: refs.horizontalPadding,
|
16447
|
+
[vars$O.inputHeight]: refs.inputHeight,
|
16001
16448
|
[vars$O.labelPosition]: refs.labelPosition,
|
16002
16449
|
[vars$O.labelTopPosition]: refs.labelTopPosition,
|
16003
16450
|
[vars$O.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -16007,17 +16454,18 @@ const password = {
|
|
16007
16454
|
[vars$O.placeholderOpacity]: refs.placeholderOpacity,
|
16008
16455
|
[vars$O.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
16009
16456
|
[vars$O.valueInputHeight]: refs.valueInputHeight,
|
16457
|
+
[vars$O.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16010
16458
|
};
|
16011
16459
|
|
16012
|
-
var
|
16460
|
+
var numberField$1 = /*#__PURE__*/Object.freeze({
|
16013
16461
|
__proto__: null,
|
16014
|
-
default:
|
16462
|
+
default: numberField,
|
16015
16463
|
vars: vars$O
|
16016
16464
|
});
|
16017
16465
|
|
16018
|
-
const vars$N =
|
16466
|
+
const vars$N = EmailFieldClass.cssVarList;
|
16019
16467
|
|
16020
|
-
const
|
16468
|
+
const emailField = {
|
16021
16469
|
[vars$N.hostWidth]: refs.width,
|
16022
16470
|
[vars$N.hostMinWidth]: refs.minWidth,
|
16023
16471
|
[vars$N.hostDirection]: refs.direction,
|
@@ -16028,6 +16476,7 @@ const numberField = {
|
|
16028
16476
|
[vars$N.labelTextColor]: refs.labelTextColor,
|
16029
16477
|
[vars$N.errorMessageTextColor]: refs.errorMessageTextColor,
|
16030
16478
|
[vars$N.inputValueTextColor]: refs.valueTextColor,
|
16479
|
+
[vars$N.labelRequiredIndicator]: refs.requiredIndicator,
|
16031
16480
|
[vars$N.inputPlaceholderColor]: refs.placeholderTextColor,
|
16032
16481
|
[vars$N.inputBorderWidth]: refs.borderWidth,
|
16033
16482
|
[vars$N.inputBorderStyle]: refs.borderStyle,
|
@@ -16038,7 +16487,6 @@ const numberField = {
|
|
16038
16487
|
[vars$N.inputOutlineColor]: refs.outlineColor,
|
16039
16488
|
[vars$N.inputOutlineOffset]: refs.outlineOffset,
|
16040
16489
|
[vars$N.inputBackgroundColor]: refs.backgroundColor,
|
16041
|
-
[vars$N.labelRequiredIndicator]: refs.requiredIndicator,
|
16042
16490
|
[vars$N.inputHorizontalPadding]: refs.horizontalPadding,
|
16043
16491
|
[vars$N.inputHeight]: refs.inputHeight,
|
16044
16492
|
[vars$N.labelPosition]: refs.labelPosition,
|
@@ -16053,197 +16501,153 @@ const numberField = {
|
|
16053
16501
|
[vars$N.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16054
16502
|
};
|
16055
16503
|
|
16056
|
-
var
|
16504
|
+
var emailField$1 = /*#__PURE__*/Object.freeze({
|
16057
16505
|
__proto__: null,
|
16058
|
-
default:
|
16506
|
+
default: emailField,
|
16059
16507
|
vars: vars$N
|
16060
16508
|
});
|
16061
16509
|
|
16062
|
-
const vars$M =
|
16510
|
+
const vars$M = TextAreaClass.cssVarList;
|
16063
16511
|
|
16064
|
-
const
|
16512
|
+
const textArea = {
|
16065
16513
|
[vars$M.hostWidth]: refs.width,
|
16066
16514
|
[vars$M.hostMinWidth]: refs.minWidth,
|
16067
16515
|
[vars$M.hostDirection]: refs.direction,
|
16068
16516
|
[vars$M.fontSize]: refs.fontSize,
|
16069
16517
|
[vars$M.fontFamily]: refs.fontFamily,
|
16070
|
-
[vars$M.labelFontSize]: refs.labelFontSize,
|
16071
|
-
[vars$M.labelFontWeight]: refs.labelFontWeight,
|
16072
16518
|
[vars$M.labelTextColor]: refs.labelTextColor,
|
16519
|
+
[vars$M.labelRequiredIndicator]: refs.requiredIndicator,
|
16073
16520
|
[vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
|
16521
|
+
[vars$M.inputBackgroundColor]: refs.backgroundColor,
|
16074
16522
|
[vars$M.inputValueTextColor]: refs.valueTextColor,
|
16075
|
-
[vars$M.
|
16076
|
-
[vars$M.
|
16523
|
+
[vars$M.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16524
|
+
[vars$M.inputBorderRadius]: refs.borderRadius,
|
16077
16525
|
[vars$M.inputBorderWidth]: refs.borderWidth,
|
16078
16526
|
[vars$M.inputBorderStyle]: refs.borderStyle,
|
16079
16527
|
[vars$M.inputBorderColor]: refs.borderColor,
|
16080
|
-
[vars$M.inputBorderRadius]: refs.borderRadius,
|
16081
16528
|
[vars$M.inputOutlineWidth]: refs.outlineWidth,
|
16082
16529
|
[vars$M.inputOutlineStyle]: refs.outlineStyle,
|
16083
16530
|
[vars$M.inputOutlineColor]: refs.outlineColor,
|
16084
16531
|
[vars$M.inputOutlineOffset]: refs.outlineOffset,
|
16085
|
-
[vars$M.
|
16086
|
-
[vars$M.
|
16087
|
-
|
16088
|
-
|
16089
|
-
|
16090
|
-
|
16091
|
-
|
16092
|
-
|
16093
|
-
|
16094
|
-
|
16095
|
-
|
16096
|
-
[vars$M.valueInputHeight]: refs.valueInputHeight,
|
16097
|
-
[vars$M.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16532
|
+
[vars$M.inputResizeType]: 'vertical',
|
16533
|
+
[vars$M.inputMinHeight]: '5em',
|
16534
|
+
textAlign: {
|
16535
|
+
right: { [vars$M.inputTextAlign]: 'right' },
|
16536
|
+
left: { [vars$M.inputTextAlign]: 'left' },
|
16537
|
+
center: { [vars$M.inputTextAlign]: 'center' },
|
16538
|
+
},
|
16539
|
+
|
16540
|
+
_readonly: {
|
16541
|
+
[vars$M.inputResizeType]: 'none',
|
16542
|
+
},
|
16098
16543
|
};
|
16099
16544
|
|
16100
|
-
var
|
16545
|
+
var textArea$1 = /*#__PURE__*/Object.freeze({
|
16101
16546
|
__proto__: null,
|
16102
|
-
default:
|
16547
|
+
default: textArea,
|
16103
16548
|
vars: vars$M
|
16104
16549
|
});
|
16105
16550
|
|
16106
|
-
const vars$L =
|
16551
|
+
const vars$L = CheckboxClass.cssVarList;
|
16552
|
+
const checkboxSize = '1.35em';
|
16107
16553
|
|
16108
|
-
const
|
16554
|
+
const checkbox = {
|
16109
16555
|
[vars$L.hostWidth]: refs.width,
|
16110
|
-
[vars$L.hostMinWidth]: refs.minWidth,
|
16111
16556
|
[vars$L.hostDirection]: refs.direction,
|
16112
16557
|
[vars$L.fontSize]: refs.fontSize,
|
16113
16558
|
[vars$L.fontFamily]: refs.fontFamily,
|
16114
16559
|
[vars$L.labelTextColor]: refs.labelTextColor,
|
16115
16560
|
[vars$L.labelRequiredIndicator]: refs.requiredIndicator,
|
16561
|
+
[vars$L.labelFontWeight]: '400',
|
16562
|
+
[vars$L.labelLineHeight]: checkboxSize,
|
16563
|
+
[vars$L.labelSpacing]: '1em',
|
16116
16564
|
[vars$L.errorMessageTextColor]: refs.errorMessageTextColor,
|
16117
|
-
[vars$L.
|
16118
|
-
[vars$L.
|
16119
|
-
[vars$L.
|
16565
|
+
[vars$L.inputOutlineWidth]: refs.outlineWidth,
|
16566
|
+
[vars$L.inputOutlineOffset]: refs.outlineOffset,
|
16567
|
+
[vars$L.inputOutlineColor]: refs.outlineColor,
|
16568
|
+
[vars$L.inputOutlineStyle]: refs.outlineStyle,
|
16120
16569
|
[vars$L.inputBorderRadius]: refs.borderRadius,
|
16570
|
+
[vars$L.inputBorderColor]: refs.borderColor,
|
16121
16571
|
[vars$L.inputBorderWidth]: refs.borderWidth,
|
16122
16572
|
[vars$L.inputBorderStyle]: refs.borderStyle,
|
16123
|
-
[vars$L.
|
16124
|
-
[vars$L.
|
16125
|
-
[vars$L.
|
16126
|
-
[vars$L.inputOutlineColor]: refs.outlineColor,
|
16127
|
-
[vars$L.inputOutlineOffset]: refs.outlineOffset,
|
16128
|
-
[vars$L.inputResizeType]: 'vertical',
|
16129
|
-
[vars$L.inputMinHeight]: '5em',
|
16130
|
-
textAlign: {
|
16131
|
-
right: { [vars$L.inputTextAlign]: 'right' },
|
16132
|
-
left: { [vars$L.inputTextAlign]: 'left' },
|
16133
|
-
center: { [vars$L.inputTextAlign]: 'center' },
|
16134
|
-
},
|
16135
|
-
|
16136
|
-
_readonly: {
|
16137
|
-
[vars$L.inputResizeType]: 'none',
|
16138
|
-
},
|
16573
|
+
[vars$L.inputBackgroundColor]: refs.backgroundColor,
|
16574
|
+
[vars$L.inputSize]: checkboxSize,
|
16575
|
+
[vars$L.inputValueTextColor]: refs.valueTextColor,
|
16139
16576
|
};
|
16140
16577
|
|
16141
|
-
var
|
16578
|
+
var checkbox$1 = /*#__PURE__*/Object.freeze({
|
16142
16579
|
__proto__: null,
|
16143
|
-
default:
|
16580
|
+
default: checkbox,
|
16144
16581
|
vars: vars$L
|
16145
16582
|
});
|
16146
16583
|
|
16147
|
-
const
|
16148
|
-
const
|
16584
|
+
const knobMargin = '2px';
|
16585
|
+
const checkboxHeight = '1.25em';
|
16149
16586
|
|
16150
|
-
const
|
16587
|
+
const globalRefs$u = getThemeRefs(globals);
|
16588
|
+
const vars$K = SwitchToggleClass.cssVarList;
|
16589
|
+
|
16590
|
+
const switchToggle = {
|
16151
16591
|
[vars$K.hostWidth]: refs.width,
|
16152
16592
|
[vars$K.hostDirection]: refs.direction,
|
16153
16593
|
[vars$K.fontSize]: refs.fontSize,
|
16154
16594
|
[vars$K.fontFamily]: refs.fontFamily,
|
16155
|
-
|
16156
|
-
[vars$K.labelRequiredIndicator]: refs.requiredIndicator,
|
16157
|
-
[vars$K.labelFontWeight]: '400',
|
16158
|
-
[vars$K.labelLineHeight]: checkboxSize,
|
16159
|
-
[vars$K.labelSpacing]: '1em',
|
16160
|
-
[vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
|
16595
|
+
|
16161
16596
|
[vars$K.inputOutlineWidth]: refs.outlineWidth,
|
16162
16597
|
[vars$K.inputOutlineOffset]: refs.outlineOffset,
|
16163
16598
|
[vars$K.inputOutlineColor]: refs.outlineColor,
|
16164
16599
|
[vars$K.inputOutlineStyle]: refs.outlineStyle,
|
16165
|
-
[vars$K.inputBorderRadius]: refs.borderRadius,
|
16166
|
-
[vars$K.inputBorderColor]: refs.borderColor,
|
16167
|
-
[vars$K.inputBorderWidth]: refs.borderWidth,
|
16168
|
-
[vars$K.inputBorderStyle]: refs.borderStyle,
|
16169
|
-
[vars$K.inputBackgroundColor]: refs.backgroundColor,
|
16170
|
-
[vars$K.inputSize]: checkboxSize,
|
16171
|
-
[vars$K.inputValueTextColor]: refs.valueTextColor,
|
16172
|
-
};
|
16173
16600
|
|
16174
|
-
|
16175
|
-
|
16176
|
-
|
16177
|
-
vars:
|
16178
|
-
|
16179
|
-
|
16180
|
-
|
16181
|
-
|
16182
|
-
|
16183
|
-
|
16184
|
-
|
16601
|
+
[vars$K.trackBorderStyle]: refs.borderStyle,
|
16602
|
+
[vars$K.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
|
16603
|
+
[vars$K.trackBorderColor]: refs.borderColor,
|
16604
|
+
[vars$K.trackBackgroundColor]: refs.backgroundColor,
|
16605
|
+
[vars$K.trackBorderRadius]: globalRefs$u.radius.md,
|
16606
|
+
[vars$K.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
|
16607
|
+
[vars$K.trackHeight]: checkboxHeight,
|
16608
|
+
|
16609
|
+
[vars$K.knobSize]: `calc(1em - ${knobMargin})`,
|
16610
|
+
[vars$K.knobRadius]: '50%',
|
16611
|
+
[vars$K.knobTopOffset]: '1px',
|
16612
|
+
[vars$K.knobLeftOffset]: knobMargin,
|
16613
|
+
[vars$K.knobColor]: refs.labelTextColor,
|
16614
|
+
[vars$K.knobTransitionDuration]: '0.3s',
|
16185
16615
|
|
16186
|
-
|
16187
|
-
[vars$
|
16188
|
-
[vars$
|
16189
|
-
[vars$
|
16190
|
-
[vars$
|
16191
|
-
|
16192
|
-
[vars$J.inputOutlineWidth]: refs.outlineWidth,
|
16193
|
-
[vars$J.inputOutlineOffset]: refs.outlineOffset,
|
16194
|
-
[vars$J.inputOutlineColor]: refs.outlineColor,
|
16195
|
-
[vars$J.inputOutlineStyle]: refs.outlineStyle,
|
16196
|
-
|
16197
|
-
[vars$J.trackBorderStyle]: refs.borderStyle,
|
16198
|
-
[vars$J.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
|
16199
|
-
[vars$J.trackBorderColor]: refs.borderColor,
|
16200
|
-
[vars$J.trackBackgroundColor]: refs.backgroundColor,
|
16201
|
-
[vars$J.trackBorderRadius]: globalRefs$u.radius.md,
|
16202
|
-
[vars$J.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
|
16203
|
-
[vars$J.trackHeight]: checkboxHeight,
|
16204
|
-
|
16205
|
-
[vars$J.knobSize]: `calc(1em - ${knobMargin})`,
|
16206
|
-
[vars$J.knobRadius]: '50%',
|
16207
|
-
[vars$J.knobTopOffset]: '1px',
|
16208
|
-
[vars$J.knobLeftOffset]: knobMargin,
|
16209
|
-
[vars$J.knobColor]: refs.labelTextColor,
|
16210
|
-
[vars$J.knobTransitionDuration]: '0.3s',
|
16211
|
-
|
16212
|
-
[vars$J.labelTextColor]: refs.labelTextColor,
|
16213
|
-
[vars$J.labelFontWeight]: '400',
|
16214
|
-
[vars$J.labelLineHeight]: '1.35em',
|
16215
|
-
[vars$J.labelSpacing]: '1em',
|
16216
|
-
[vars$J.labelRequiredIndicator]: refs.requiredIndicator,
|
16217
|
-
[vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
|
16616
|
+
[vars$K.labelTextColor]: refs.labelTextColor,
|
16617
|
+
[vars$K.labelFontWeight]: '400',
|
16618
|
+
[vars$K.labelLineHeight]: '1.35em',
|
16619
|
+
[vars$K.labelSpacing]: '1em',
|
16620
|
+
[vars$K.labelRequiredIndicator]: refs.requiredIndicator,
|
16621
|
+
[vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
|
16218
16622
|
|
16219
16623
|
_checked: {
|
16220
|
-
[vars$
|
16221
|
-
[vars$
|
16222
|
-
[vars$
|
16223
|
-
[vars$
|
16624
|
+
[vars$K.trackBorderColor]: refs.borderColor,
|
16625
|
+
[vars$K.knobLeftOffset]: `calc(100% - var(${vars$K.knobSize}) - ${knobMargin})`,
|
16626
|
+
[vars$K.knobColor]: refs.valueTextColor,
|
16627
|
+
[vars$K.knobTextColor]: refs.valueTextColor,
|
16224
16628
|
},
|
16225
16629
|
|
16226
16630
|
_disabled: {
|
16227
|
-
[vars$
|
16228
|
-
[vars$
|
16229
|
-
[vars$
|
16230
|
-
[vars$
|
16631
|
+
[vars$K.knobColor]: globalRefs$u.colors.surface.light,
|
16632
|
+
[vars$K.trackBorderColor]: globalRefs$u.colors.surface.light,
|
16633
|
+
[vars$K.trackBackgroundColor]: globalRefs$u.colors.surface.main,
|
16634
|
+
[vars$K.labelTextColor]: refs.labelTextColor,
|
16231
16635
|
_checked: {
|
16232
|
-
[vars$
|
16233
|
-
[vars$
|
16636
|
+
[vars$K.knobColor]: globalRefs$u.colors.surface.light,
|
16637
|
+
[vars$K.trackBackgroundColor]: globalRefs$u.colors.surface.main,
|
16234
16638
|
},
|
16235
16639
|
},
|
16236
16640
|
|
16237
16641
|
_invalid: {
|
16238
|
-
[vars$
|
16239
|
-
[vars$
|
16642
|
+
[vars$K.trackBorderColor]: globalRefs$u.colors.error.main,
|
16643
|
+
[vars$K.knobColor]: globalRefs$u.colors.error.main,
|
16240
16644
|
},
|
16241
16645
|
};
|
16242
16646
|
|
16243
16647
|
var switchToggle$1 = /*#__PURE__*/Object.freeze({
|
16244
16648
|
__proto__: null,
|
16245
16649
|
default: switchToggle,
|
16246
|
-
vars: vars$
|
16650
|
+
vars: vars$K
|
16247
16651
|
});
|
16248
16652
|
|
16249
16653
|
const globalRefs$t = getThemeRefs(globals);
|
@@ -16268,7 +16672,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
|
|
16268
16672
|
horizontalAlignment,
|
16269
16673
|
shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
|
16270
16674
|
},
|
16271
|
-
componentName$
|
16675
|
+
componentName$_
|
16272
16676
|
);
|
16273
16677
|
|
16274
16678
|
const { shadowColor: shadowColor$3 } = helperRefs$3;
|
@@ -16363,7 +16767,7 @@ const container = {
|
|
16363
16767
|
},
|
16364
16768
|
};
|
16365
16769
|
|
16366
|
-
const vars$
|
16770
|
+
const vars$J = {
|
16367
16771
|
...compVars$5,
|
16368
16772
|
...helperVars$3,
|
16369
16773
|
};
|
@@ -16371,168 +16775,168 @@ const vars$I = {
|
|
16371
16775
|
var container$1 = /*#__PURE__*/Object.freeze({
|
16372
16776
|
__proto__: null,
|
16373
16777
|
default: container,
|
16374
|
-
vars: vars$
|
16778
|
+
vars: vars$J
|
16375
16779
|
});
|
16376
16780
|
|
16377
|
-
const vars$
|
16781
|
+
const vars$I = LogoClass.cssVarList;
|
16378
16782
|
|
16379
16783
|
const logo$2 = {
|
16380
|
-
[vars$
|
16784
|
+
[vars$I.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
|
16381
16785
|
};
|
16382
16786
|
|
16383
16787
|
var logo$3 = /*#__PURE__*/Object.freeze({
|
16384
16788
|
__proto__: null,
|
16385
16789
|
default: logo$2,
|
16386
|
-
vars: vars$
|
16790
|
+
vars: vars$I
|
16387
16791
|
});
|
16388
16792
|
|
16389
|
-
const vars$
|
16793
|
+
const vars$H = TotpImageClass.cssVarList;
|
16390
16794
|
|
16391
16795
|
const logo$1 = {
|
16392
|
-
[vars$
|
16796
|
+
[vars$H.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
|
16393
16797
|
};
|
16394
16798
|
|
16395
16799
|
var totpImage = /*#__PURE__*/Object.freeze({
|
16396
16800
|
__proto__: null,
|
16397
16801
|
default: logo$1,
|
16398
|
-
vars: vars$
|
16802
|
+
vars: vars$H
|
16399
16803
|
});
|
16400
16804
|
|
16401
|
-
const vars$
|
16805
|
+
const vars$G = NotpImageClass.cssVarList;
|
16402
16806
|
|
16403
16807
|
const logo = {
|
16404
|
-
[vars$
|
16808
|
+
[vars$G.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
|
16405
16809
|
};
|
16406
16810
|
|
16407
16811
|
var notpImage = /*#__PURE__*/Object.freeze({
|
16408
16812
|
__proto__: null,
|
16409
16813
|
default: logo,
|
16410
|
-
vars: vars$
|
16814
|
+
vars: vars$G
|
16411
16815
|
});
|
16412
16816
|
|
16413
16817
|
const globalRefs$s = getThemeRefs(globals);
|
16414
|
-
const vars$
|
16818
|
+
const vars$F = TextClass.cssVarList;
|
16415
16819
|
|
16416
16820
|
const text = {
|
16417
|
-
[vars$
|
16418
|
-
[vars$
|
16419
|
-
[vars$
|
16420
|
-
[vars$
|
16821
|
+
[vars$F.hostDirection]: globalRefs$s.direction,
|
16822
|
+
[vars$F.textLineHeight]: '1.35em',
|
16823
|
+
[vars$F.textAlign]: 'left',
|
16824
|
+
[vars$F.textColor]: globalRefs$s.colors.surface.dark,
|
16421
16825
|
|
16422
16826
|
variant: {
|
16423
16827
|
h1: {
|
16424
|
-
[vars$
|
16425
|
-
[vars$
|
16426
|
-
[vars$
|
16828
|
+
[vars$F.fontSize]: globalRefs$s.typography.h1.size,
|
16829
|
+
[vars$F.fontWeight]: globalRefs$s.typography.h1.weight,
|
16830
|
+
[vars$F.fontFamily]: globalRefs$s.typography.h1.font,
|
16427
16831
|
},
|
16428
16832
|
h2: {
|
16429
|
-
[vars$
|
16430
|
-
[vars$
|
16431
|
-
[vars$
|
16833
|
+
[vars$F.fontSize]: globalRefs$s.typography.h2.size,
|
16834
|
+
[vars$F.fontWeight]: globalRefs$s.typography.h2.weight,
|
16835
|
+
[vars$F.fontFamily]: globalRefs$s.typography.h2.font,
|
16432
16836
|
},
|
16433
16837
|
h3: {
|
16434
|
-
[vars$
|
16435
|
-
[vars$
|
16436
|
-
[vars$
|
16838
|
+
[vars$F.fontSize]: globalRefs$s.typography.h3.size,
|
16839
|
+
[vars$F.fontWeight]: globalRefs$s.typography.h3.weight,
|
16840
|
+
[vars$F.fontFamily]: globalRefs$s.typography.h3.font,
|
16437
16841
|
},
|
16438
16842
|
subtitle1: {
|
16439
|
-
[vars$
|
16440
|
-
[vars$
|
16441
|
-
[vars$
|
16843
|
+
[vars$F.fontSize]: globalRefs$s.typography.subtitle1.size,
|
16844
|
+
[vars$F.fontWeight]: globalRefs$s.typography.subtitle1.weight,
|
16845
|
+
[vars$F.fontFamily]: globalRefs$s.typography.subtitle1.font,
|
16442
16846
|
},
|
16443
16847
|
subtitle2: {
|
16444
|
-
[vars$
|
16445
|
-
[vars$
|
16446
|
-
[vars$
|
16848
|
+
[vars$F.fontSize]: globalRefs$s.typography.subtitle2.size,
|
16849
|
+
[vars$F.fontWeight]: globalRefs$s.typography.subtitle2.weight,
|
16850
|
+
[vars$F.fontFamily]: globalRefs$s.typography.subtitle2.font,
|
16447
16851
|
},
|
16448
16852
|
body1: {
|
16449
|
-
[vars$
|
16450
|
-
[vars$
|
16451
|
-
[vars$
|
16853
|
+
[vars$F.fontSize]: globalRefs$s.typography.body1.size,
|
16854
|
+
[vars$F.fontWeight]: globalRefs$s.typography.body1.weight,
|
16855
|
+
[vars$F.fontFamily]: globalRefs$s.typography.body1.font,
|
16452
16856
|
},
|
16453
16857
|
body2: {
|
16454
|
-
[vars$
|
16455
|
-
[vars$
|
16456
|
-
[vars$
|
16858
|
+
[vars$F.fontSize]: globalRefs$s.typography.body2.size,
|
16859
|
+
[vars$F.fontWeight]: globalRefs$s.typography.body2.weight,
|
16860
|
+
[vars$F.fontFamily]: globalRefs$s.typography.body2.font,
|
16457
16861
|
},
|
16458
16862
|
},
|
16459
16863
|
|
16460
16864
|
mode: {
|
16461
16865
|
primary: {
|
16462
|
-
[vars$
|
16866
|
+
[vars$F.textColor]: globalRefs$s.colors.surface.contrast,
|
16463
16867
|
},
|
16464
16868
|
secondary: {
|
16465
|
-
[vars$
|
16869
|
+
[vars$F.textColor]: globalRefs$s.colors.surface.dark,
|
16466
16870
|
},
|
16467
16871
|
error: {
|
16468
|
-
[vars$
|
16872
|
+
[vars$F.textColor]: globalRefs$s.colors.error.main,
|
16469
16873
|
},
|
16470
16874
|
success: {
|
16471
|
-
[vars$
|
16875
|
+
[vars$F.textColor]: globalRefs$s.colors.success.main,
|
16472
16876
|
},
|
16473
16877
|
},
|
16474
16878
|
|
16475
16879
|
textAlign: {
|
16476
|
-
right: { [vars$
|
16477
|
-
left: { [vars$
|
16478
|
-
center: { [vars$
|
16880
|
+
right: { [vars$F.textAlign]: 'right' },
|
16881
|
+
left: { [vars$F.textAlign]: 'left' },
|
16882
|
+
center: { [vars$F.textAlign]: 'center' },
|
16479
16883
|
},
|
16480
16884
|
|
16481
16885
|
_fullWidth: {
|
16482
|
-
[vars$
|
16886
|
+
[vars$F.hostWidth]: '100%',
|
16483
16887
|
},
|
16484
16888
|
|
16485
16889
|
_italic: {
|
16486
|
-
[vars$
|
16890
|
+
[vars$F.fontStyle]: 'italic',
|
16487
16891
|
},
|
16488
16892
|
|
16489
16893
|
_uppercase: {
|
16490
|
-
[vars$
|
16894
|
+
[vars$F.textTransform]: 'uppercase',
|
16491
16895
|
},
|
16492
16896
|
|
16493
16897
|
_lowercase: {
|
16494
|
-
[vars$
|
16898
|
+
[vars$F.textTransform]: 'lowercase',
|
16495
16899
|
},
|
16496
16900
|
};
|
16497
16901
|
|
16498
16902
|
var text$1 = /*#__PURE__*/Object.freeze({
|
16499
16903
|
__proto__: null,
|
16500
16904
|
default: text,
|
16501
|
-
vars: vars$
|
16905
|
+
vars: vars$F
|
16502
16906
|
});
|
16503
16907
|
|
16504
16908
|
const globalRefs$r = getThemeRefs(globals);
|
16505
|
-
const vars$
|
16909
|
+
const vars$E = LinkClass.cssVarList;
|
16506
16910
|
|
16507
16911
|
const link = {
|
16508
|
-
[vars$
|
16509
|
-
[vars$
|
16912
|
+
[vars$E.hostDirection]: globalRefs$r.direction,
|
16913
|
+
[vars$E.cursor]: 'pointer',
|
16510
16914
|
|
16511
|
-
[vars$
|
16915
|
+
[vars$E.textColor]: globalRefs$r.colors.primary.main,
|
16512
16916
|
|
16513
16917
|
textAlign: {
|
16514
|
-
right: { [vars$
|
16515
|
-
left: { [vars$
|
16516
|
-
center: { [vars$
|
16918
|
+
right: { [vars$E.textAlign]: 'right' },
|
16919
|
+
left: { [vars$E.textAlign]: 'left' },
|
16920
|
+
center: { [vars$E.textAlign]: 'center' },
|
16517
16921
|
},
|
16518
16922
|
|
16519
16923
|
_fullWidth: {
|
16520
|
-
[vars$
|
16924
|
+
[vars$E.hostWidth]: '100%',
|
16521
16925
|
},
|
16522
16926
|
|
16523
16927
|
_hover: {
|
16524
|
-
[vars$
|
16928
|
+
[vars$E.textDecoration]: 'underline',
|
16525
16929
|
},
|
16526
16930
|
|
16527
16931
|
mode: {
|
16528
16932
|
secondary: {
|
16529
|
-
[vars$
|
16933
|
+
[vars$E.textColor]: globalRefs$r.colors.secondary.main,
|
16530
16934
|
},
|
16531
16935
|
error: {
|
16532
|
-
[vars$
|
16936
|
+
[vars$E.textColor]: globalRefs$r.colors.error.main,
|
16533
16937
|
},
|
16534
16938
|
success: {
|
16535
|
-
[vars$
|
16939
|
+
[vars$E.textColor]: globalRefs$r.colors.success.main,
|
16536
16940
|
},
|
16537
16941
|
},
|
16538
16942
|
};
|
@@ -16540,37 +16944,37 @@ const link = {
|
|
16540
16944
|
var link$1 = /*#__PURE__*/Object.freeze({
|
16541
16945
|
__proto__: null,
|
16542
16946
|
default: link,
|
16543
|
-
vars: vars$
|
16947
|
+
vars: vars$E
|
16544
16948
|
});
|
16545
16949
|
|
16546
16950
|
const globalRefs$q = getThemeRefs(globals);
|
16547
|
-
const vars$
|
16951
|
+
const vars$D = EnrichedTextClass.cssVarList;
|
16548
16952
|
|
16549
16953
|
const enrichedText = {
|
16550
|
-
[vars$
|
16551
|
-
[vars$
|
16954
|
+
[vars$D.hostDirection]: globalRefs$q.direction,
|
16955
|
+
[vars$D.hostWidth]: useVar(vars$F.hostWidth),
|
16552
16956
|
|
16553
|
-
[vars$
|
16554
|
-
[vars$
|
16555
|
-
[vars$
|
16957
|
+
[vars$D.textLineHeight]: useVar(vars$F.textLineHeight),
|
16958
|
+
[vars$D.textColor]: useVar(vars$F.textColor),
|
16959
|
+
[vars$D.textAlign]: useVar(vars$F.textAlign),
|
16556
16960
|
|
16557
|
-
[vars$
|
16558
|
-
[vars$
|
16559
|
-
[vars$
|
16961
|
+
[vars$D.fontSize]: useVar(vars$F.fontSize),
|
16962
|
+
[vars$D.fontWeight]: useVar(vars$F.fontWeight),
|
16963
|
+
[vars$D.fontFamily]: useVar(vars$F.fontFamily),
|
16560
16964
|
|
16561
|
-
[vars$
|
16562
|
-
[vars$
|
16563
|
-
[vars$
|
16965
|
+
[vars$D.linkColor]: useVar(vars$E.textColor),
|
16966
|
+
[vars$D.linkTextDecoration]: 'none',
|
16967
|
+
[vars$D.linkHoverTextDecoration]: 'underline',
|
16564
16968
|
|
16565
|
-
[vars$
|
16566
|
-
[vars$
|
16567
|
-
[vars$
|
16969
|
+
[vars$D.fontWeightBold]: '900',
|
16970
|
+
[vars$D.minWidth]: '0.25em',
|
16971
|
+
[vars$D.minHeight]: '1.35em',
|
16568
16972
|
|
16569
|
-
[vars$
|
16973
|
+
[vars$D.hostDisplay]: 'inline-block',
|
16570
16974
|
|
16571
16975
|
_empty: {
|
16572
16976
|
_hideWhenEmpty: {
|
16573
|
-
[vars$
|
16977
|
+
[vars$D.hostDisplay]: 'none',
|
16574
16978
|
},
|
16575
16979
|
},
|
16576
16980
|
};
|
@@ -16578,7 +16982,7 @@ const enrichedText = {
|
|
16578
16982
|
var enrichedText$1 = /*#__PURE__*/Object.freeze({
|
16579
16983
|
__proto__: null,
|
16580
16984
|
default: enrichedText,
|
16581
|
-
vars: vars$
|
16985
|
+
vars: vars$D
|
16582
16986
|
});
|
16583
16987
|
|
16584
16988
|
const globalRefs$p = getThemeRefs(globals);
|
@@ -16589,7 +16993,7 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
|
|
16589
16993
|
thickness: '2px',
|
16590
16994
|
spacing: '10px',
|
16591
16995
|
},
|
16592
|
-
componentName$
|
16996
|
+
componentName$U
|
16593
16997
|
);
|
16594
16998
|
|
16595
16999
|
const divider = {
|
@@ -16620,7 +17024,7 @@ const divider = {
|
|
16620
17024
|
},
|
16621
17025
|
};
|
16622
17026
|
|
16623
|
-
const vars$
|
17027
|
+
const vars$C = {
|
16624
17028
|
...compVars$4,
|
16625
17029
|
...helperVars$2,
|
16626
17030
|
};
|
@@ -16628,93 +17032,93 @@ const vars$B = {
|
|
16628
17032
|
var divider$1 = /*#__PURE__*/Object.freeze({
|
16629
17033
|
__proto__: null,
|
16630
17034
|
default: divider,
|
16631
|
-
vars: vars$
|
17035
|
+
vars: vars$C
|
16632
17036
|
});
|
16633
17037
|
|
16634
|
-
const vars$
|
17038
|
+
const vars$B = PasscodeClass.cssVarList;
|
16635
17039
|
|
16636
17040
|
const passcode = {
|
16637
|
-
[vars$
|
16638
|
-
[vars$
|
16639
|
-
[vars$
|
16640
|
-
[vars$
|
16641
|
-
[vars$
|
16642
|
-
[vars$
|
16643
|
-
[vars$
|
16644
|
-
[vars$
|
16645
|
-
[vars$
|
16646
|
-
[vars$
|
16647
|
-
[vars$
|
16648
|
-
[vars$
|
16649
|
-
[vars$
|
16650
|
-
[vars$
|
16651
|
-
[vars$
|
17041
|
+
[vars$B.hostDirection]: refs.direction,
|
17042
|
+
[vars$B.fontFamily]: refs.fontFamily,
|
17043
|
+
[vars$B.fontSize]: refs.fontSize,
|
17044
|
+
[vars$B.labelTextColor]: refs.labelTextColor,
|
17045
|
+
[vars$B.labelRequiredIndicator]: refs.requiredIndicator,
|
17046
|
+
[vars$B.errorMessageTextColor]: refs.errorMessageTextColor,
|
17047
|
+
[vars$B.digitValueTextColor]: refs.valueTextColor,
|
17048
|
+
[vars$B.digitPadding]: '0',
|
17049
|
+
[vars$B.digitTextAlign]: 'center',
|
17050
|
+
[vars$B.digitSpacing]: '4px',
|
17051
|
+
[vars$B.hostWidth]: refs.width,
|
17052
|
+
[vars$B.digitOutlineColor]: 'transparent',
|
17053
|
+
[vars$B.digitOutlineWidth]: refs.outlineWidth,
|
17054
|
+
[vars$B.focusedDigitFieldOutlineColor]: refs.outlineColor,
|
17055
|
+
[vars$B.digitSize]: refs.inputHeight,
|
16652
17056
|
|
16653
17057
|
size: {
|
16654
|
-
xs: { [vars$
|
16655
|
-
sm: { [vars$
|
16656
|
-
md: { [vars$
|
16657
|
-
lg: { [vars$
|
17058
|
+
xs: { [vars$B.spinnerSize]: '15px' },
|
17059
|
+
sm: { [vars$B.spinnerSize]: '20px' },
|
17060
|
+
md: { [vars$B.spinnerSize]: '20px' },
|
17061
|
+
lg: { [vars$B.spinnerSize]: '20px' },
|
16658
17062
|
},
|
16659
17063
|
|
16660
17064
|
_hideCursor: {
|
16661
|
-
[vars$
|
17065
|
+
[vars$B.digitCaretTextColor]: 'transparent',
|
16662
17066
|
},
|
16663
17067
|
|
16664
17068
|
_loading: {
|
16665
|
-
[vars$
|
17069
|
+
[vars$B.overlayOpacity]: refs.overlayOpacity,
|
16666
17070
|
},
|
16667
17071
|
};
|
16668
17072
|
|
16669
17073
|
var passcode$1 = /*#__PURE__*/Object.freeze({
|
16670
17074
|
__proto__: null,
|
16671
17075
|
default: passcode,
|
16672
|
-
vars: vars$
|
17076
|
+
vars: vars$B
|
16673
17077
|
});
|
16674
17078
|
|
16675
17079
|
const globalRefs$o = getThemeRefs(globals);
|
16676
|
-
const vars$
|
17080
|
+
const vars$A = LoaderLinearClass.cssVarList;
|
16677
17081
|
|
16678
17082
|
const loaderLinear = {
|
16679
|
-
[vars$
|
16680
|
-
[vars$
|
17083
|
+
[vars$A.hostDisplay]: 'inline-block',
|
17084
|
+
[vars$A.hostWidth]: '100%',
|
16681
17085
|
|
16682
|
-
[vars$
|
16683
|
-
[vars$
|
17086
|
+
[vars$A.barColor]: globalRefs$o.colors.surface.contrast,
|
17087
|
+
[vars$A.barWidth]: '20%',
|
16684
17088
|
|
16685
|
-
[vars$
|
16686
|
-
[vars$
|
17089
|
+
[vars$A.barBackgroundColor]: globalRefs$o.colors.surface.light,
|
17090
|
+
[vars$A.barBorderRadius]: '4px',
|
16687
17091
|
|
16688
|
-
[vars$
|
16689
|
-
[vars$
|
16690
|
-
[vars$
|
16691
|
-
[vars$
|
17092
|
+
[vars$A.animationDuration]: '2s',
|
17093
|
+
[vars$A.animationTimingFunction]: 'linear',
|
17094
|
+
[vars$A.animationIterationCount]: 'infinite',
|
17095
|
+
[vars$A.verticalPadding]: '0.25em',
|
16692
17096
|
|
16693
17097
|
size: {
|
16694
|
-
xs: { [vars$
|
16695
|
-
sm: { [vars$
|
16696
|
-
md: { [vars$
|
16697
|
-
lg: { [vars$
|
17098
|
+
xs: { [vars$A.barHeight]: '2px' },
|
17099
|
+
sm: { [vars$A.barHeight]: '4px' },
|
17100
|
+
md: { [vars$A.barHeight]: '6px' },
|
17101
|
+
lg: { [vars$A.barHeight]: '8px' },
|
16698
17102
|
},
|
16699
17103
|
|
16700
17104
|
mode: {
|
16701
17105
|
primary: {
|
16702
|
-
[vars$
|
17106
|
+
[vars$A.barColor]: globalRefs$o.colors.primary.main,
|
16703
17107
|
},
|
16704
17108
|
secondary: {
|
16705
|
-
[vars$
|
17109
|
+
[vars$A.barColor]: globalRefs$o.colors.secondary.main,
|
16706
17110
|
},
|
16707
17111
|
},
|
16708
17112
|
|
16709
17113
|
_hidden: {
|
16710
|
-
[vars$
|
17114
|
+
[vars$A.hostDisplay]: 'none',
|
16711
17115
|
},
|
16712
17116
|
};
|
16713
17117
|
|
16714
17118
|
var loaderLinear$1 = /*#__PURE__*/Object.freeze({
|
16715
17119
|
__proto__: null,
|
16716
17120
|
default: loaderLinear,
|
16717
|
-
vars: vars$
|
17121
|
+
vars: vars$A
|
16718
17122
|
});
|
16719
17123
|
|
16720
17124
|
const globalRefs$n = getThemeRefs(globals);
|
@@ -16732,7 +17136,7 @@ const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
|
|
16732
17136
|
},
|
16733
17137
|
},
|
16734
17138
|
},
|
16735
|
-
componentName
|
17139
|
+
componentName$$
|
16736
17140
|
);
|
16737
17141
|
|
16738
17142
|
const loaderRadial = {
|
@@ -16761,7 +17165,7 @@ const loaderRadial = {
|
|
16761
17165
|
[compVars$3.hostDisplay]: 'none',
|
16762
17166
|
},
|
16763
17167
|
};
|
16764
|
-
const vars$
|
17168
|
+
const vars$z = {
|
16765
17169
|
...compVars$3,
|
16766
17170
|
...helperVars$1,
|
16767
17171
|
};
|
@@ -16769,93 +17173,134 @@ const vars$y = {
|
|
16769
17173
|
var loaderRadial$1 = /*#__PURE__*/Object.freeze({
|
16770
17174
|
__proto__: null,
|
16771
17175
|
default: loaderRadial,
|
16772
|
-
vars: vars$
|
17176
|
+
vars: vars$z
|
16773
17177
|
});
|
16774
17178
|
|
16775
17179
|
const globalRefs$m = getThemeRefs(globals);
|
16776
|
-
const vars$
|
17180
|
+
const vars$y = ComboBoxClass.cssVarList;
|
16777
17181
|
|
16778
17182
|
const comboBox = {
|
16779
|
-
[vars$
|
16780
|
-
[vars$
|
16781
|
-
[vars$
|
16782
|
-
[vars$
|
16783
|
-
[vars$
|
16784
|
-
[vars$
|
16785
|
-
[vars$
|
16786
|
-
[vars$
|
16787
|
-
[vars$
|
16788
|
-
[vars$
|
16789
|
-
[vars$
|
16790
|
-
[vars$
|
16791
|
-
[vars$
|
16792
|
-
[vars$
|
16793
|
-
[vars$
|
16794
|
-
[vars$
|
16795
|
-
[vars$
|
16796
|
-
[vars$
|
16797
|
-
[vars$
|
16798
|
-
[vars$
|
16799
|
-
[vars$
|
16800
|
-
[vars$
|
16801
|
-
[vars$
|
16802
|
-
[vars$
|
16803
|
-
[vars$
|
16804
|
-
[vars$
|
16805
|
-
[vars$
|
16806
|
-
[vars$
|
16807
|
-
[vars$
|
16808
|
-
[vars$
|
16809
|
-
[vars$
|
16810
|
-
[vars$
|
16811
|
-
[vars$
|
16812
|
-
[vars$
|
16813
|
-
[vars$
|
16814
|
-
[vars$
|
16815
|
-
[vars$
|
16816
|
-
[vars$
|
17183
|
+
[vars$y.hostWidth]: refs.width,
|
17184
|
+
[vars$y.hostDirection]: refs.direction,
|
17185
|
+
[vars$y.fontSize]: refs.fontSize,
|
17186
|
+
[vars$y.fontFamily]: refs.fontFamily,
|
17187
|
+
[vars$y.labelFontSize]: refs.labelFontSize,
|
17188
|
+
[vars$y.labelFontWeight]: refs.labelFontWeight,
|
17189
|
+
[vars$y.labelTextColor]: refs.labelTextColor,
|
17190
|
+
[vars$y.errorMessageTextColor]: refs.errorMessageTextColor,
|
17191
|
+
[vars$y.inputBorderColor]: refs.borderColor,
|
17192
|
+
[vars$y.inputBorderWidth]: refs.borderWidth,
|
17193
|
+
[vars$y.inputBorderStyle]: refs.borderStyle,
|
17194
|
+
[vars$y.inputBorderRadius]: refs.borderRadius,
|
17195
|
+
[vars$y.inputOutlineColor]: refs.outlineColor,
|
17196
|
+
[vars$y.inputOutlineOffset]: refs.outlineOffset,
|
17197
|
+
[vars$y.inputOutlineWidth]: refs.outlineWidth,
|
17198
|
+
[vars$y.inputOutlineStyle]: refs.outlineStyle,
|
17199
|
+
[vars$y.labelRequiredIndicator]: refs.requiredIndicator,
|
17200
|
+
[vars$y.inputValueTextColor]: refs.valueTextColor,
|
17201
|
+
[vars$y.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
17202
|
+
[vars$y.inputBackgroundColor]: refs.backgroundColor,
|
17203
|
+
[vars$y.inputHorizontalPadding]: refs.horizontalPadding,
|
17204
|
+
[vars$y.inputHeight]: refs.inputHeight,
|
17205
|
+
[vars$y.inputDropdownButtonColor]: globalRefs$m.colors.surface.dark,
|
17206
|
+
[vars$y.inputDropdownButtonCursor]: 'pointer',
|
17207
|
+
[vars$y.inputDropdownButtonSize]: refs.toggleButtonSize,
|
17208
|
+
[vars$y.inputDropdownButtonOffset]: globalRefs$m.spacing.xs,
|
17209
|
+
[vars$y.overlayItemPaddingInlineStart]: globalRefs$m.spacing.xs,
|
17210
|
+
[vars$y.overlayItemPaddingInlineEnd]: globalRefs$m.spacing.lg,
|
17211
|
+
[vars$y.labelPosition]: refs.labelPosition,
|
17212
|
+
[vars$y.labelTopPosition]: refs.labelTopPosition,
|
17213
|
+
[vars$y.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
17214
|
+
[vars$y.inputTransformY]: refs.inputTransformY,
|
17215
|
+
[vars$y.inputTransition]: refs.inputTransition,
|
17216
|
+
[vars$y.marginInlineStart]: refs.marginInlineStart,
|
17217
|
+
[vars$y.placeholderOpacity]: refs.placeholderOpacity,
|
17218
|
+
[vars$y.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
17219
|
+
[vars$y.valueInputHeight]: refs.valueInputHeight,
|
17220
|
+
[vars$y.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16817
17221
|
|
16818
17222
|
_readonly: {
|
16819
|
-
[vars$
|
17223
|
+
[vars$y.inputDropdownButtonCursor]: 'default',
|
16820
17224
|
},
|
16821
17225
|
|
16822
17226
|
// Overlay theme exposed via the component:
|
16823
|
-
[vars$
|
16824
|
-
[vars$
|
16825
|
-
[vars$
|
16826
|
-
[vars$
|
16827
|
-
[vars$
|
16828
|
-
[vars$
|
17227
|
+
[vars$y.overlayFontSize]: refs.fontSize,
|
17228
|
+
[vars$y.overlayFontFamily]: refs.fontFamily,
|
17229
|
+
[vars$y.overlayCursor]: 'pointer',
|
17230
|
+
[vars$y.overlayItemBoxShadow]: 'none',
|
17231
|
+
[vars$y.overlayBackground]: refs.backgroundColor,
|
17232
|
+
[vars$y.overlayTextColor]: refs.valueTextColor,
|
16829
17233
|
|
16830
17234
|
// Overlay direct theme:
|
16831
|
-
[vars$
|
16832
|
-
[vars$
|
17235
|
+
[vars$y.overlay.minHeight]: '400px',
|
17236
|
+
[vars$y.overlay.margin]: '0',
|
16833
17237
|
};
|
16834
17238
|
|
16835
17239
|
var comboBox$1 = /*#__PURE__*/Object.freeze({
|
16836
17240
|
__proto__: null,
|
16837
17241
|
comboBox: comboBox,
|
16838
17242
|
default: comboBox,
|
16839
|
-
vars: vars$
|
17243
|
+
vars: vars$y
|
16840
17244
|
});
|
16841
17245
|
|
16842
|
-
const vars$
|
17246
|
+
const vars$x = ImageClass.cssVarList;
|
16843
17247
|
|
16844
17248
|
const image = {};
|
16845
17249
|
|
16846
17250
|
var image$1 = /*#__PURE__*/Object.freeze({
|
16847
17251
|
__proto__: null,
|
16848
17252
|
default: image,
|
16849
|
-
vars: vars$
|
17253
|
+
vars: vars$x
|
16850
17254
|
});
|
16851
17255
|
|
16852
|
-
const vars$
|
17256
|
+
const vars$w = PhoneFieldClass.cssVarList;
|
16853
17257
|
|
16854
17258
|
const phoneField = {
|
16855
|
-
[vars$
|
17259
|
+
[vars$w.hostWidth]: refs.width,
|
17260
|
+
[vars$w.hostDirection]: refs.direction,
|
17261
|
+
[vars$w.fontSize]: refs.fontSize,
|
17262
|
+
[vars$w.fontFamily]: refs.fontFamily,
|
17263
|
+
[vars$w.labelTextColor]: refs.labelTextColor,
|
17264
|
+
[vars$w.labelRequiredIndicator]: refs.requiredIndicator,
|
17265
|
+
[vars$w.errorMessageTextColor]: refs.errorMessageTextColor,
|
17266
|
+
[vars$w.inputValueTextColor]: refs.valueTextColor,
|
17267
|
+
[vars$w.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
17268
|
+
[vars$w.inputBorderStyle]: refs.borderStyle,
|
17269
|
+
[vars$w.inputBorderWidth]: refs.borderWidth,
|
17270
|
+
[vars$w.inputBorderColor]: refs.borderColor,
|
17271
|
+
[vars$w.inputBorderRadius]: refs.borderRadius,
|
17272
|
+
[vars$w.inputOutlineStyle]: refs.outlineStyle,
|
17273
|
+
[vars$w.inputOutlineWidth]: refs.outlineWidth,
|
17274
|
+
[vars$w.inputOutlineColor]: refs.outlineColor,
|
17275
|
+
[vars$w.inputOutlineOffset]: refs.outlineOffset,
|
17276
|
+
[vars$w.phoneInputWidth]: refs.minWidth,
|
17277
|
+
[vars$w.countryCodeInputWidth]: '5em',
|
17278
|
+
[vars$w.countryCodeDropdownWidth]: '20em',
|
17279
|
+
[vars$w.marginInlineStart]: '-0.25em',
|
17280
|
+
[vars$w.valueInputHeight]: refs.valueInputHeight,
|
17281
|
+
[vars$w.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
17282
|
+
|
17283
|
+
// '@overlay': {
|
17284
|
+
// overlayItemBackgroundColor: 'red'
|
17285
|
+
// }
|
17286
|
+
};
|
17287
|
+
|
17288
|
+
var phoneField$1 = /*#__PURE__*/Object.freeze({
|
17289
|
+
__proto__: null,
|
17290
|
+
default: phoneField,
|
17291
|
+
vars: vars$w
|
17292
|
+
});
|
17293
|
+
|
17294
|
+
const vars$v = PhoneFieldInputBoxClass.cssVarList;
|
17295
|
+
|
17296
|
+
const phoneInputBoxField = {
|
17297
|
+
[vars$v.hostWidth]: '16em',
|
17298
|
+
[vars$v.hostMinWidth]: refs.minWidth,
|
16856
17299
|
[vars$v.hostDirection]: refs.direction,
|
16857
17300
|
[vars$v.fontSize]: refs.fontSize,
|
16858
17301
|
[vars$v.fontFamily]: refs.fontFamily,
|
17302
|
+
[vars$v.labelFontSize]: refs.labelFontSize,
|
17303
|
+
[vars$v.labelFontWeight]: refs.labelFontWeight,
|
16859
17304
|
[vars$v.labelTextColor]: refs.labelTextColor,
|
16860
17305
|
[vars$v.labelRequiredIndicator]: refs.requiredIndicator,
|
16861
17306
|
[vars$v.errorMessageTextColor]: refs.errorMessageTextColor,
|
@@ -16869,28 +17314,32 @@ const phoneField = {
|
|
16869
17314
|
[vars$v.inputOutlineWidth]: refs.outlineWidth,
|
16870
17315
|
[vars$v.inputOutlineColor]: refs.outlineColor,
|
16871
17316
|
[vars$v.inputOutlineOffset]: refs.outlineOffset,
|
16872
|
-
[vars$v.
|
16873
|
-
[vars$v.
|
16874
|
-
[vars$v.
|
16875
|
-
[vars$v.
|
17317
|
+
[vars$v.labelPosition]: refs.labelPosition,
|
17318
|
+
[vars$v.labelTopPosition]: refs.labelTopPosition,
|
17319
|
+
[vars$v.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
17320
|
+
[vars$v.inputTransformY]: refs.inputTransformY,
|
17321
|
+
[vars$v.inputTransition]: refs.inputTransition,
|
17322
|
+
[vars$v.marginInlineStart]: refs.marginInlineStart,
|
16876
17323
|
[vars$v.valueInputHeight]: refs.valueInputHeight,
|
16877
17324
|
[vars$v.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
17325
|
+
[vars$v.inputHorizontalPadding]: '0',
|
16878
17326
|
|
16879
|
-
|
16880
|
-
|
16881
|
-
|
17327
|
+
_fullWidth: {
|
17328
|
+
[vars$v.hostWidth]: refs.width,
|
17329
|
+
},
|
16882
17330
|
};
|
16883
17331
|
|
16884
|
-
var
|
17332
|
+
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16885
17333
|
__proto__: null,
|
16886
|
-
default:
|
17334
|
+
default: phoneInputBoxField,
|
16887
17335
|
vars: vars$v
|
16888
17336
|
});
|
16889
17337
|
|
16890
|
-
const
|
17338
|
+
const globalRefs$l = getThemeRefs(globals);
|
17339
|
+
const vars$u = NewPasswordClass.cssVarList;
|
16891
17340
|
|
16892
|
-
const
|
16893
|
-
[vars$u.hostWidth]:
|
17341
|
+
const newPassword = {
|
17342
|
+
[vars$u.hostWidth]: refs.width,
|
16894
17343
|
[vars$u.hostMinWidth]: refs.minWidth,
|
16895
17344
|
[vars$u.hostDirection]: refs.direction,
|
16896
17345
|
[vars$u.fontSize]: refs.fontSize,
|
@@ -16898,171 +17347,126 @@ const phoneInputBoxField = {
|
|
16898
17347
|
[vars$u.labelFontSize]: refs.labelFontSize,
|
16899
17348
|
[vars$u.labelFontWeight]: refs.labelFontWeight,
|
16900
17349
|
[vars$u.labelTextColor]: refs.labelTextColor,
|
16901
|
-
[vars$u.
|
17350
|
+
[vars$u.spaceBetweenInputs]: '1em',
|
16902
17351
|
[vars$u.errorMessageTextColor]: refs.errorMessageTextColor,
|
16903
|
-
[vars$u.
|
16904
|
-
[vars$u.
|
16905
|
-
[vars$u.inputBorderStyle]: refs.borderStyle,
|
16906
|
-
[vars$u.inputBorderWidth]: refs.borderWidth,
|
16907
|
-
[vars$u.inputBorderColor]: refs.borderColor,
|
16908
|
-
[vars$u.inputBorderRadius]: refs.borderRadius,
|
16909
|
-
[vars$u.inputOutlineStyle]: refs.outlineStyle,
|
16910
|
-
[vars$u.inputOutlineWidth]: refs.outlineWidth,
|
16911
|
-
[vars$u.inputOutlineColor]: refs.outlineColor,
|
16912
|
-
[vars$u.inputOutlineOffset]: refs.outlineOffset,
|
16913
|
-
[vars$u.labelPosition]: refs.labelPosition,
|
16914
|
-
[vars$u.labelTopPosition]: refs.labelTopPosition,
|
16915
|
-
[vars$u.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16916
|
-
[vars$u.inputTransformY]: refs.inputTransformY,
|
16917
|
-
[vars$u.inputTransition]: refs.inputTransition,
|
16918
|
-
[vars$u.marginInlineStart]: refs.marginInlineStart,
|
17352
|
+
[vars$u.policyPreviewBackgroundColor]: 'none',
|
17353
|
+
[vars$u.policyPreviewPadding]: globalRefs$l.spacing.lg,
|
16919
17354
|
[vars$u.valueInputHeight]: refs.valueInputHeight,
|
16920
|
-
[vars$u.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16921
|
-
[vars$u.inputHorizontalPadding]: '0',
|
16922
|
-
|
16923
|
-
_fullWidth: {
|
16924
|
-
[vars$u.hostWidth]: refs.width,
|
16925
|
-
},
|
16926
|
-
};
|
16927
|
-
|
16928
|
-
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16929
|
-
__proto__: null,
|
16930
|
-
default: phoneInputBoxField,
|
16931
|
-
vars: vars$u
|
16932
|
-
});
|
16933
|
-
|
16934
|
-
const globalRefs$l = getThemeRefs(globals);
|
16935
|
-
const vars$t = NewPasswordClass.cssVarList;
|
16936
|
-
|
16937
|
-
const newPassword = {
|
16938
|
-
[vars$t.hostWidth]: refs.width,
|
16939
|
-
[vars$t.hostMinWidth]: refs.minWidth,
|
16940
|
-
[vars$t.hostDirection]: refs.direction,
|
16941
|
-
[vars$t.fontSize]: refs.fontSize,
|
16942
|
-
[vars$t.fontFamily]: refs.fontFamily,
|
16943
|
-
[vars$t.labelFontSize]: refs.labelFontSize,
|
16944
|
-
[vars$t.labelFontWeight]: refs.labelFontWeight,
|
16945
|
-
[vars$t.labelTextColor]: refs.labelTextColor,
|
16946
|
-
[vars$t.spaceBetweenInputs]: '1em',
|
16947
|
-
[vars$t.errorMessageTextColor]: refs.errorMessageTextColor,
|
16948
|
-
[vars$t.policyPreviewBackgroundColor]: 'none',
|
16949
|
-
[vars$t.policyPreviewPadding]: globalRefs$l.spacing.lg,
|
16950
|
-
[vars$t.valueInputHeight]: refs.valueInputHeight,
|
16951
17355
|
|
16952
17356
|
_required: {
|
16953
17357
|
// NewPassword doesn't pass `required` attribute to its Password components.
|
16954
17358
|
// That's why we fake the required indicator on each input.
|
16955
17359
|
// We do that by injecting `::after` element, and populating it with requiredIndicator content.
|
16956
|
-
[vars$
|
17360
|
+
[vars$u.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
|
16957
17361
|
},
|
16958
17362
|
};
|
16959
17363
|
|
16960
17364
|
var newPassword$1 = /*#__PURE__*/Object.freeze({
|
16961
17365
|
__proto__: null,
|
16962
17366
|
default: newPassword,
|
16963
|
-
vars: vars$
|
17367
|
+
vars: vars$u
|
16964
17368
|
});
|
16965
17369
|
|
16966
|
-
const vars$
|
17370
|
+
const vars$t = UploadFileClass.cssVarList;
|
16967
17371
|
|
16968
17372
|
const uploadFile = {
|
16969
|
-
[vars$
|
16970
|
-
[vars$
|
16971
|
-
[vars$
|
17373
|
+
[vars$t.hostDirection]: refs.direction,
|
17374
|
+
[vars$t.labelTextColor]: refs.labelTextColor,
|
17375
|
+
[vars$t.fontFamily]: refs.fontFamily,
|
16972
17376
|
|
16973
|
-
[vars$
|
17377
|
+
[vars$t.iconSize]: '2em',
|
16974
17378
|
|
16975
|
-
[vars$
|
16976
|
-
[vars$
|
17379
|
+
[vars$t.hostPadding]: '0.75em',
|
17380
|
+
[vars$t.gap]: '0.5em',
|
16977
17381
|
|
16978
|
-
[vars$
|
16979
|
-
[vars$
|
16980
|
-
[vars$
|
17382
|
+
[vars$t.fontSize]: '16px',
|
17383
|
+
[vars$t.titleFontWeight]: '500',
|
17384
|
+
[vars$t.lineHeight]: '1em',
|
16981
17385
|
|
16982
|
-
[vars$
|
16983
|
-
[vars$
|
16984
|
-
[vars$
|
16985
|
-
[vars$
|
17386
|
+
[vars$t.borderWidth]: refs.borderWidth,
|
17387
|
+
[vars$t.borderColor]: refs.borderColor,
|
17388
|
+
[vars$t.borderRadius]: refs.borderRadius,
|
17389
|
+
[vars$t.borderStyle]: 'dashed',
|
16986
17390
|
|
16987
17391
|
_required: {
|
16988
|
-
[vars$
|
17392
|
+
[vars$t.requiredIndicator]: refs.requiredIndicator,
|
16989
17393
|
},
|
16990
17394
|
|
16991
17395
|
size: {
|
16992
17396
|
xs: {
|
16993
|
-
[vars$
|
16994
|
-
[vars$
|
16995
|
-
[vars$
|
16996
|
-
[vars$
|
16997
|
-
[vars$
|
17397
|
+
[vars$t.hostHeight]: '196px',
|
17398
|
+
[vars$t.hostWidth]: '200px',
|
17399
|
+
[vars$t.titleFontSize]: '0.875em',
|
17400
|
+
[vars$t.descriptionFontSize]: '0.875em',
|
17401
|
+
[vars$t.lineHeight]: '1.25em',
|
16998
17402
|
},
|
16999
17403
|
sm: {
|
17000
|
-
[vars$
|
17001
|
-
[vars$
|
17002
|
-
[vars$
|
17003
|
-
[vars$
|
17004
|
-
[vars$
|
17404
|
+
[vars$t.hostHeight]: '216px',
|
17405
|
+
[vars$t.hostWidth]: '230px',
|
17406
|
+
[vars$t.titleFontSize]: '1em',
|
17407
|
+
[vars$t.descriptionFontSize]: '0.875em',
|
17408
|
+
[vars$t.lineHeight]: '1.25em',
|
17005
17409
|
},
|
17006
17410
|
md: {
|
17007
|
-
[vars$
|
17008
|
-
[vars$
|
17009
|
-
[vars$
|
17010
|
-
[vars$
|
17011
|
-
[vars$
|
17411
|
+
[vars$t.hostHeight]: '256px',
|
17412
|
+
[vars$t.hostWidth]: '312px',
|
17413
|
+
[vars$t.titleFontSize]: '1.125em',
|
17414
|
+
[vars$t.descriptionFontSize]: '1em',
|
17415
|
+
[vars$t.lineHeight]: '1.5em',
|
17012
17416
|
},
|
17013
17417
|
lg: {
|
17014
|
-
[vars$
|
17015
|
-
[vars$
|
17016
|
-
[vars$
|
17017
|
-
[vars$
|
17018
|
-
[vars$
|
17418
|
+
[vars$t.hostHeight]: '280px',
|
17419
|
+
[vars$t.hostWidth]: '336px',
|
17420
|
+
[vars$t.titleFontSize]: '1.125em',
|
17421
|
+
[vars$t.descriptionFontSize]: '1.125em',
|
17422
|
+
[vars$t.lineHeight]: '1.75em',
|
17019
17423
|
},
|
17020
17424
|
},
|
17021
17425
|
|
17022
17426
|
_fullWidth: {
|
17023
|
-
[vars$
|
17427
|
+
[vars$t.hostWidth]: refs.width,
|
17024
17428
|
},
|
17025
17429
|
};
|
17026
17430
|
|
17027
17431
|
var uploadFile$1 = /*#__PURE__*/Object.freeze({
|
17028
17432
|
__proto__: null,
|
17029
17433
|
default: uploadFile,
|
17030
|
-
vars: vars$
|
17434
|
+
vars: vars$t
|
17031
17435
|
});
|
17032
17436
|
|
17033
17437
|
const globalRefs$k = getThemeRefs(globals);
|
17034
17438
|
|
17035
|
-
const vars$
|
17439
|
+
const vars$s = ButtonSelectionGroupItemClass.cssVarList;
|
17036
17440
|
|
17037
17441
|
const buttonSelectionGroupItem = {
|
17038
|
-
[vars$
|
17039
|
-
[vars$
|
17040
|
-
[vars$
|
17041
|
-
[vars$
|
17042
|
-
[vars$
|
17043
|
-
[vars$
|
17044
|
-
[vars$
|
17045
|
-
[vars$
|
17442
|
+
[vars$s.hostDirection]: 'inherit',
|
17443
|
+
[vars$s.backgroundColor]: globalRefs$k.colors.surface.main,
|
17444
|
+
[vars$s.labelTextColor]: globalRefs$k.colors.surface.contrast,
|
17445
|
+
[vars$s.borderColor]: globalRefs$k.colors.surface.light,
|
17446
|
+
[vars$s.borderStyle]: 'solid',
|
17447
|
+
[vars$s.borderRadius]: globalRefs$k.radius.sm,
|
17448
|
+
[vars$s.outlineColor]: 'transparent',
|
17449
|
+
[vars$s.borderWidth]: globalRefs$k.border.xs,
|
17046
17450
|
|
17047
17451
|
_hover: {
|
17048
|
-
[vars$
|
17452
|
+
[vars$s.backgroundColor]: globalRefs$k.colors.surface.highlight,
|
17049
17453
|
},
|
17050
17454
|
|
17051
17455
|
_focused: {
|
17052
|
-
[vars$
|
17456
|
+
[vars$s.outlineColor]: globalRefs$k.colors.surface.light,
|
17053
17457
|
},
|
17054
17458
|
|
17055
17459
|
_selected: {
|
17056
|
-
[vars$
|
17057
|
-
[vars$
|
17058
|
-
[vars$
|
17460
|
+
[vars$s.borderColor]: globalRefs$k.colors.surface.contrast,
|
17461
|
+
[vars$s.backgroundColor]: globalRefs$k.colors.surface.contrast,
|
17462
|
+
[vars$s.labelTextColor]: globalRefs$k.colors.surface.main,
|
17059
17463
|
},
|
17060
17464
|
};
|
17061
17465
|
|
17062
17466
|
var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
|
17063
17467
|
__proto__: null,
|
17064
17468
|
default: buttonSelectionGroupItem,
|
17065
|
-
vars: vars$
|
17469
|
+
vars: vars$s
|
17066
17470
|
});
|
17067
17471
|
|
17068
17472
|
const globalRefs$j = getThemeRefs(globals);
|
@@ -17077,28 +17481,28 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
|
|
17077
17481
|
[vars.hostWidth]: refs.width,
|
17078
17482
|
});
|
17079
17483
|
|
17080
|
-
const vars$
|
17484
|
+
const vars$r = ButtonSelectionGroupClass.cssVarList;
|
17081
17485
|
|
17082
17486
|
const buttonSelectionGroup = {
|
17083
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
17487
|
+
...createBaseButtonSelectionGroupMappings(vars$r),
|
17084
17488
|
};
|
17085
17489
|
|
17086
17490
|
var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
17087
17491
|
__proto__: null,
|
17088
17492
|
default: buttonSelectionGroup,
|
17089
|
-
vars: vars$
|
17493
|
+
vars: vars$r
|
17090
17494
|
});
|
17091
17495
|
|
17092
|
-
const vars$
|
17496
|
+
const vars$q = ButtonMultiSelectionGroupClass.cssVarList;
|
17093
17497
|
|
17094
17498
|
const buttonMultiSelectionGroup = {
|
17095
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
17499
|
+
...createBaseButtonSelectionGroupMappings(vars$q),
|
17096
17500
|
};
|
17097
17501
|
|
17098
17502
|
var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
17099
17503
|
__proto__: null,
|
17100
17504
|
default: buttonMultiSelectionGroup,
|
17101
|
-
vars: vars$
|
17505
|
+
vars: vars$q
|
17102
17506
|
});
|
17103
17507
|
|
17104
17508
|
const globalRefs$i = getThemeRefs(globals);
|
@@ -17111,58 +17515,58 @@ const modal = {
|
|
17111
17515
|
[compVars$2.overlayWidth]: '540px',
|
17112
17516
|
};
|
17113
17517
|
|
17114
|
-
const vars$
|
17518
|
+
const vars$p = {
|
17115
17519
|
...compVars$2,
|
17116
17520
|
};
|
17117
17521
|
|
17118
17522
|
var modal$1 = /*#__PURE__*/Object.freeze({
|
17119
17523
|
__proto__: null,
|
17120
17524
|
default: modal,
|
17121
|
-
vars: vars$
|
17525
|
+
vars: vars$p
|
17122
17526
|
});
|
17123
17527
|
|
17124
17528
|
const globalRefs$h = getThemeRefs(globals);
|
17125
|
-
const vars$
|
17529
|
+
const vars$o = GridClass.cssVarList;
|
17126
17530
|
|
17127
17531
|
const grid = {
|
17128
|
-
[vars$
|
17129
|
-
[vars$
|
17130
|
-
[vars$
|
17131
|
-
[vars$
|
17132
|
-
[vars$
|
17133
|
-
|
17134
|
-
[vars$
|
17135
|
-
[vars$
|
17136
|
-
|
17137
|
-
[vars$
|
17138
|
-
[vars$
|
17139
|
-
[vars$
|
17140
|
-
|
17141
|
-
[vars$
|
17142
|
-
[vars$
|
17143
|
-
[vars$
|
17144
|
-
[vars$
|
17145
|
-
|
17146
|
-
[vars$
|
17147
|
-
[vars$
|
17148
|
-
|
17149
|
-
[vars$
|
17150
|
-
[vars$
|
17151
|
-
[vars$
|
17152
|
-
|
17153
|
-
[vars$
|
17154
|
-
[vars$
|
17155
|
-
[vars$
|
17156
|
-
[vars$
|
17157
|
-
[vars$
|
17158
|
-
[vars$
|
17159
|
-
[vars$
|
17160
|
-
[vars$
|
17161
|
-
[vars$
|
17162
|
-
[vars$
|
17532
|
+
[vars$o.hostWidth]: '100%',
|
17533
|
+
[vars$o.hostHeight]: '100%',
|
17534
|
+
[vars$o.hostMinHeight]: '400px',
|
17535
|
+
[vars$o.fontWeight]: '400',
|
17536
|
+
[vars$o.backgroundColor]: globalRefs$h.colors.surface.main,
|
17537
|
+
|
17538
|
+
[vars$o.fontSize]: refs.fontSize,
|
17539
|
+
[vars$o.fontFamily]: refs.fontFamily,
|
17540
|
+
|
17541
|
+
[vars$o.sortIndicatorsColor]: globalRefs$h.colors.surface.light,
|
17542
|
+
[vars$o.activeSortIndicator]: globalRefs$h.colors.surface.dark,
|
17543
|
+
[vars$o.resizeHandleColor]: globalRefs$h.colors.surface.light,
|
17544
|
+
|
17545
|
+
[vars$o.borderWidth]: refs.borderWidth,
|
17546
|
+
[vars$o.borderStyle]: refs.borderStyle,
|
17547
|
+
[vars$o.borderRadius]: refs.borderRadius,
|
17548
|
+
[vars$o.borderColor]: 'transparent',
|
17549
|
+
|
17550
|
+
[vars$o.headerRowTextColor]: globalRefs$h.colors.surface.dark,
|
17551
|
+
[vars$o.separatorColor]: globalRefs$h.colors.surface.light,
|
17552
|
+
|
17553
|
+
[vars$o.valueTextColor]: globalRefs$h.colors.surface.contrast,
|
17554
|
+
[vars$o.selectedBackgroundColor]: globalRefs$h.colors.surface.highlight,
|
17555
|
+
[vars$o.hostDirection]: globalRefs$h.direction,
|
17556
|
+
|
17557
|
+
[vars$o.toggleDetailsPanelButtonSize]: '1em',
|
17558
|
+
[vars$o.toggleDetailsPanelButtonOpenedColor]: globalRefs$h.colors.surface.contrast,
|
17559
|
+
[vars$o.toggleDetailsPanelButtonClosedColor]: globalRefs$h.colors.surface.light,
|
17560
|
+
[vars$o.toggleDetailsPanelButtonCursor]: 'pointer',
|
17561
|
+
[vars$o.detailsPanelBackgroundColor]: globalRefs$h.colors.surface.highlight,
|
17562
|
+
[vars$o.detailsPanelBorderTopColor]: globalRefs$h.colors.surface.light,
|
17563
|
+
[vars$o.detailsPanelLabelsColor]: globalRefs$h.colors.surface.dark,
|
17564
|
+
[vars$o.detailsPanelLabelsFontSize]: '0.8em',
|
17565
|
+
[vars$o.detailsPanelItemsGap]: '2em',
|
17566
|
+
[vars$o.detailsPanelPadding]: '12px 0',
|
17163
17567
|
|
17164
17568
|
_bordered: {
|
17165
|
-
[vars$
|
17569
|
+
[vars$o.borderColor]: refs.borderColor,
|
17166
17570
|
},
|
17167
17571
|
};
|
17168
17572
|
|
@@ -17170,53 +17574,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
|
|
17170
17574
|
__proto__: null,
|
17171
17575
|
default: grid,
|
17172
17576
|
grid: grid,
|
17173
|
-
vars: vars$
|
17577
|
+
vars: vars$o
|
17174
17578
|
});
|
17175
17579
|
|
17176
17580
|
const globalRefs$g = getThemeRefs(globals);
|
17177
|
-
const vars$
|
17581
|
+
const vars$n = NotificationCardClass.cssVarList;
|
17178
17582
|
|
17179
17583
|
const shadowColor$2 = '#00000020';
|
17180
17584
|
|
17181
17585
|
const notification = {
|
17182
|
-
[vars$
|
17183
|
-
[vars$
|
17184
|
-
[vars$
|
17185
|
-
[vars$
|
17186
|
-
[vars$
|
17187
|
-
[vars$
|
17188
|
-
[vars$
|
17189
|
-
[vars$
|
17190
|
-
[vars$
|
17586
|
+
[vars$n.hostMinWidth]: '415px',
|
17587
|
+
[vars$n.fontFamily]: globalRefs$g.fonts.font1.family,
|
17588
|
+
[vars$n.fontSize]: globalRefs$g.typography.body1.size,
|
17589
|
+
[vars$n.backgroundColor]: globalRefs$g.colors.surface.main,
|
17590
|
+
[vars$n.textColor]: globalRefs$g.colors.surface.contrast,
|
17591
|
+
[vars$n.boxShadow]: `${globalRefs$g.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$g.shadow.narrow.xl} ${shadowColor$2}`,
|
17592
|
+
[vars$n.verticalPadding]: '0.625em',
|
17593
|
+
[vars$n.horizontalPadding]: '1.5em',
|
17594
|
+
[vars$n.borderRadius]: globalRefs$g.radius.xs,
|
17191
17595
|
|
17192
17596
|
_bordered: {
|
17193
|
-
[vars$
|
17194
|
-
[vars$
|
17195
|
-
[vars$
|
17597
|
+
[vars$n.borderWidth]: globalRefs$g.border.sm,
|
17598
|
+
[vars$n.borderStyle]: 'solid',
|
17599
|
+
[vars$n.borderColor]: 'transparent',
|
17196
17600
|
},
|
17197
17601
|
|
17198
17602
|
size: {
|
17199
|
-
xs: { [vars$
|
17200
|
-
sm: { [vars$
|
17201
|
-
md: { [vars$
|
17202
|
-
lg: { [vars$
|
17603
|
+
xs: { [vars$n.fontSize]: '12px' },
|
17604
|
+
sm: { [vars$n.fontSize]: '14px' },
|
17605
|
+
md: { [vars$n.fontSize]: '16px' },
|
17606
|
+
lg: { [vars$n.fontSize]: '18px' },
|
17203
17607
|
},
|
17204
17608
|
|
17205
17609
|
mode: {
|
17206
17610
|
primary: {
|
17207
|
-
[vars$
|
17208
|
-
[vars$
|
17209
|
-
[vars$
|
17611
|
+
[vars$n.backgroundColor]: globalRefs$g.colors.primary.main,
|
17612
|
+
[vars$n.textColor]: globalRefs$g.colors.primary.contrast,
|
17613
|
+
[vars$n.borderColor]: globalRefs$g.colors.primary.light,
|
17210
17614
|
},
|
17211
17615
|
success: {
|
17212
|
-
[vars$
|
17213
|
-
[vars$
|
17214
|
-
[vars$
|
17616
|
+
[vars$n.backgroundColor]: globalRefs$g.colors.success.main,
|
17617
|
+
[vars$n.textColor]: globalRefs$g.colors.success.contrast,
|
17618
|
+
[vars$n.borderColor]: globalRefs$g.colors.success.light,
|
17215
17619
|
},
|
17216
17620
|
error: {
|
17217
|
-
[vars$
|
17218
|
-
[vars$
|
17219
|
-
[vars$
|
17621
|
+
[vars$n.backgroundColor]: globalRefs$g.colors.error.main,
|
17622
|
+
[vars$n.textColor]: globalRefs$g.colors.error.contrast,
|
17623
|
+
[vars$n.borderColor]: globalRefs$g.colors.error.light,
|
17220
17624
|
},
|
17221
17625
|
},
|
17222
17626
|
};
|
@@ -17224,148 +17628,148 @@ const notification = {
|
|
17224
17628
|
var notificationCard = /*#__PURE__*/Object.freeze({
|
17225
17629
|
__proto__: null,
|
17226
17630
|
default: notification,
|
17227
|
-
vars: vars$
|
17631
|
+
vars: vars$n
|
17228
17632
|
});
|
17229
17633
|
|
17230
17634
|
const globalRefs$f = getThemeRefs(globals);
|
17231
|
-
const vars$
|
17635
|
+
const vars$m = MultiSelectComboBoxClass.cssVarList;
|
17232
17636
|
|
17233
17637
|
const multiSelectComboBox = {
|
17234
|
-
[vars$
|
17235
|
-
[vars$
|
17236
|
-
[vars$
|
17237
|
-
[vars$
|
17238
|
-
[vars$
|
17239
|
-
[vars$
|
17240
|
-
[vars$
|
17241
|
-
[vars$
|
17242
|
-
[vars$
|
17243
|
-
[vars$
|
17244
|
-
[vars$
|
17245
|
-
[vars$
|
17246
|
-
[vars$
|
17247
|
-
[vars$
|
17248
|
-
[vars$
|
17249
|
-
[vars$
|
17250
|
-
[vars$
|
17251
|
-
[vars$
|
17252
|
-
[vars$
|
17253
|
-
[vars$
|
17254
|
-
[vars$
|
17255
|
-
[vars$
|
17256
|
-
[vars$
|
17257
|
-
[vars$
|
17258
|
-
[vars$
|
17259
|
-
[vars$
|
17260
|
-
[vars$
|
17261
|
-
[vars$
|
17262
|
-
[vars$
|
17263
|
-
[vars$
|
17264
|
-
[vars$
|
17265
|
-
[vars$
|
17266
|
-
[vars$
|
17267
|
-
[vars$
|
17268
|
-
[vars$
|
17269
|
-
[vars$
|
17270
|
-
[vars$
|
17271
|
-
[vars$
|
17272
|
-
[vars$
|
17273
|
-
[vars$
|
17274
|
-
[vars$
|
17638
|
+
[vars$m.hostWidth]: refs.width,
|
17639
|
+
[vars$m.hostDirection]: refs.direction,
|
17640
|
+
[vars$m.fontSize]: refs.fontSize,
|
17641
|
+
[vars$m.fontFamily]: refs.fontFamily,
|
17642
|
+
[vars$m.labelFontSize]: refs.labelFontSize,
|
17643
|
+
[vars$m.labelFontWeight]: refs.labelFontWeight,
|
17644
|
+
[vars$m.labelTextColor]: refs.labelTextColor,
|
17645
|
+
[vars$m.errorMessageTextColor]: refs.errorMessageTextColor,
|
17646
|
+
[vars$m.inputBorderColor]: refs.borderColor,
|
17647
|
+
[vars$m.inputBorderWidth]: refs.borderWidth,
|
17648
|
+
[vars$m.inputBorderStyle]: refs.borderStyle,
|
17649
|
+
[vars$m.inputBorderRadius]: refs.borderRadius,
|
17650
|
+
[vars$m.inputOutlineColor]: refs.outlineColor,
|
17651
|
+
[vars$m.inputOutlineOffset]: refs.outlineOffset,
|
17652
|
+
[vars$m.inputOutlineWidth]: refs.outlineWidth,
|
17653
|
+
[vars$m.inputOutlineStyle]: refs.outlineStyle,
|
17654
|
+
[vars$m.labelRequiredIndicator]: refs.requiredIndicator,
|
17655
|
+
[vars$m.inputValueTextColor]: refs.valueTextColor,
|
17656
|
+
[vars$m.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
17657
|
+
[vars$m.inputBackgroundColor]: refs.backgroundColor,
|
17658
|
+
[vars$m.inputHorizontalPadding]: refs.horizontalPadding,
|
17659
|
+
[vars$m.inputVerticalPadding]: refs.verticalPadding,
|
17660
|
+
[vars$m.inputHeight]: refs.inputHeight,
|
17661
|
+
[vars$m.inputDropdownButtonColor]: globalRefs$f.colors.surface.dark,
|
17662
|
+
[vars$m.inputDropdownButtonCursor]: 'pointer',
|
17663
|
+
[vars$m.inputDropdownButtonSize]: refs.toggleButtonSize,
|
17664
|
+
[vars$m.inputDropdownButtonOffset]: globalRefs$f.spacing.xs,
|
17665
|
+
[vars$m.overlayItemPaddingInlineStart]: globalRefs$f.spacing.xs,
|
17666
|
+
[vars$m.overlayItemPaddingInlineEnd]: globalRefs$f.spacing.lg,
|
17667
|
+
[vars$m.chipFontSize]: refs.chipFontSize,
|
17668
|
+
[vars$m.chipTextColor]: globalRefs$f.colors.surface.contrast,
|
17669
|
+
[vars$m.chipBackgroundColor]: globalRefs$f.colors.surface.light,
|
17670
|
+
[vars$m.labelPosition]: refs.labelPosition,
|
17671
|
+
[vars$m.labelTopPosition]: refs.labelTopPosition,
|
17672
|
+
[vars$m.labelLeftPosition]: refs.labelLeftPosition,
|
17673
|
+
[vars$m.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
17674
|
+
[vars$m.inputTransformY]: refs.inputTransformY,
|
17675
|
+
[vars$m.inputTransition]: refs.inputTransition,
|
17676
|
+
[vars$m.marginInlineStart]: refs.marginInlineStart,
|
17677
|
+
[vars$m.placeholderOpacity]: refs.placeholderOpacity,
|
17678
|
+
[vars$m.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
17275
17679
|
|
17276
17680
|
labelType: {
|
17277
17681
|
floating: {
|
17278
|
-
[vars$
|
17682
|
+
[vars$m.inputHorizontalPadding]: '0.25em',
|
17279
17683
|
_hasValue: {
|
17280
|
-
[vars$
|
17684
|
+
[vars$m.inputHorizontalPadding]: '0.45em',
|
17281
17685
|
},
|
17282
17686
|
},
|
17283
17687
|
},
|
17284
17688
|
|
17285
17689
|
_readonly: {
|
17286
|
-
[vars$
|
17690
|
+
[vars$m.inputDropdownButtonCursor]: 'default',
|
17287
17691
|
},
|
17288
17692
|
|
17289
17693
|
// Overlay theme exposed via the component:
|
17290
|
-
[vars$
|
17291
|
-
[vars$
|
17292
|
-
[vars$
|
17293
|
-
[vars$
|
17294
|
-
[vars$
|
17295
|
-
[vars$
|
17694
|
+
[vars$m.overlayFontSize]: refs.fontSize,
|
17695
|
+
[vars$m.overlayFontFamily]: refs.fontFamily,
|
17696
|
+
[vars$m.overlayCursor]: 'pointer',
|
17697
|
+
[vars$m.overlayItemBoxShadow]: 'none',
|
17698
|
+
[vars$m.overlayBackground]: refs.backgroundColor,
|
17699
|
+
[vars$m.overlayTextColor]: refs.valueTextColor,
|
17296
17700
|
|
17297
17701
|
// Overlay direct theme:
|
17298
|
-
[vars$
|
17299
|
-
[vars$
|
17702
|
+
[vars$m.overlay.minHeight]: '400px',
|
17703
|
+
[vars$m.overlay.margin]: '0',
|
17300
17704
|
};
|
17301
17705
|
|
17302
17706
|
var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
|
17303
17707
|
__proto__: null,
|
17304
17708
|
default: multiSelectComboBox,
|
17305
17709
|
multiSelectComboBox: multiSelectComboBox,
|
17306
|
-
vars: vars$
|
17710
|
+
vars: vars$m
|
17307
17711
|
});
|
17308
17712
|
|
17309
17713
|
const globalRefs$e = getThemeRefs(globals);
|
17310
|
-
const vars$
|
17714
|
+
const vars$l = BadgeClass.cssVarList;
|
17311
17715
|
|
17312
17716
|
const badge = {
|
17313
|
-
[vars$
|
17314
|
-
[vars$
|
17717
|
+
[vars$l.hostWidth]: 'fit-content',
|
17718
|
+
[vars$l.hostDirection]: globalRefs$e.direction,
|
17315
17719
|
|
17316
|
-
[vars$
|
17720
|
+
[vars$l.textAlign]: 'center',
|
17317
17721
|
|
17318
|
-
[vars$
|
17319
|
-
[vars$
|
17722
|
+
[vars$l.fontFamily]: globalRefs$e.fonts.font1.family,
|
17723
|
+
[vars$l.fontWeight]: '400',
|
17320
17724
|
|
17321
|
-
[vars$
|
17322
|
-
[vars$
|
17725
|
+
[vars$l.verticalPadding]: '0.25em',
|
17726
|
+
[vars$l.horizontalPadding]: '0.5em',
|
17323
17727
|
|
17324
|
-
[vars$
|
17325
|
-
[vars$
|
17326
|
-
[vars$
|
17327
|
-
[vars$
|
17728
|
+
[vars$l.borderWidth]: globalRefs$e.border.xs,
|
17729
|
+
[vars$l.borderRadius]: globalRefs$e.radius.xs,
|
17730
|
+
[vars$l.borderColor]: 'transparent',
|
17731
|
+
[vars$l.borderStyle]: 'solid',
|
17328
17732
|
|
17329
17733
|
_fullWidth: {
|
17330
|
-
[vars$
|
17734
|
+
[vars$l.hostWidth]: '100%',
|
17331
17735
|
},
|
17332
17736
|
|
17333
17737
|
size: {
|
17334
|
-
xs: { [vars$
|
17335
|
-
sm: { [vars$
|
17336
|
-
md: { [vars$
|
17337
|
-
lg: { [vars$
|
17738
|
+
xs: { [vars$l.fontSize]: '12px' },
|
17739
|
+
sm: { [vars$l.fontSize]: '14px' },
|
17740
|
+
md: { [vars$l.fontSize]: '16px' },
|
17741
|
+
lg: { [vars$l.fontSize]: '18px' },
|
17338
17742
|
},
|
17339
17743
|
|
17340
17744
|
mode: {
|
17341
17745
|
default: {
|
17342
|
-
[vars$
|
17746
|
+
[vars$l.textColor]: globalRefs$e.colors.surface.dark,
|
17343
17747
|
_bordered: {
|
17344
|
-
[vars$
|
17748
|
+
[vars$l.borderColor]: globalRefs$e.colors.surface.light,
|
17345
17749
|
},
|
17346
17750
|
},
|
17347
17751
|
primary: {
|
17348
|
-
[vars$
|
17752
|
+
[vars$l.textColor]: globalRefs$e.colors.primary.main,
|
17349
17753
|
_bordered: {
|
17350
|
-
[vars$
|
17754
|
+
[vars$l.borderColor]: globalRefs$e.colors.primary.light,
|
17351
17755
|
},
|
17352
17756
|
},
|
17353
17757
|
secondary: {
|
17354
|
-
[vars$
|
17758
|
+
[vars$l.textColor]: globalRefs$e.colors.secondary.main,
|
17355
17759
|
_bordered: {
|
17356
|
-
[vars$
|
17760
|
+
[vars$l.borderColor]: globalRefs$e.colors.secondary.light,
|
17357
17761
|
},
|
17358
17762
|
},
|
17359
17763
|
error: {
|
17360
|
-
[vars$
|
17764
|
+
[vars$l.textColor]: globalRefs$e.colors.error.main,
|
17361
17765
|
_bordered: {
|
17362
|
-
[vars$
|
17766
|
+
[vars$l.borderColor]: globalRefs$e.colors.error.light,
|
17363
17767
|
},
|
17364
17768
|
},
|
17365
17769
|
success: {
|
17366
|
-
[vars$
|
17770
|
+
[vars$l.textColor]: globalRefs$e.colors.success.main,
|
17367
17771
|
_bordered: {
|
17368
|
-
[vars$
|
17772
|
+
[vars$l.borderColor]: globalRefs$e.colors.success.light,
|
17369
17773
|
},
|
17370
17774
|
},
|
17371
17775
|
},
|
@@ -17374,7 +17778,7 @@ const badge = {
|
|
17374
17778
|
var badge$1 = /*#__PURE__*/Object.freeze({
|
17375
17779
|
__proto__: null,
|
17376
17780
|
default: badge,
|
17377
|
-
vars: vars$
|
17781
|
+
vars: vars$l
|
17378
17782
|
});
|
17379
17783
|
|
17380
17784
|
const globalRefs$d = getThemeRefs(globals);
|
@@ -17412,144 +17816,144 @@ const avatar = {
|
|
17412
17816
|
},
|
17413
17817
|
};
|
17414
17818
|
|
17415
|
-
const vars$
|
17819
|
+
const vars$k = {
|
17416
17820
|
...compVars$1,
|
17417
17821
|
};
|
17418
17822
|
|
17419
17823
|
var avatar$1 = /*#__PURE__*/Object.freeze({
|
17420
17824
|
__proto__: null,
|
17421
17825
|
default: avatar,
|
17422
|
-
vars: vars$
|
17826
|
+
vars: vars$k
|
17423
17827
|
});
|
17424
17828
|
|
17425
17829
|
const globalRefs$c = getThemeRefs(globals);
|
17426
17830
|
|
17427
|
-
const vars$
|
17831
|
+
const vars$j = MappingsFieldClass.cssVarList;
|
17428
17832
|
|
17429
17833
|
const mappingsField = {
|
17430
|
-
[vars$
|
17431
|
-
[vars$
|
17432
|
-
[vars$
|
17433
|
-
[vars$
|
17434
|
-
[vars$
|
17435
|
-
[vars$
|
17436
|
-
[vars$
|
17437
|
-
[vars$
|
17438
|
-
[vars$
|
17439
|
-
[vars$
|
17834
|
+
[vars$j.hostWidth]: refs.width,
|
17835
|
+
[vars$j.hostDirection]: refs.direction,
|
17836
|
+
[vars$j.fontSize]: refs.fontSize,
|
17837
|
+
[vars$j.fontFamily]: refs.fontFamily,
|
17838
|
+
[vars$j.separatorFontSize]: '14px',
|
17839
|
+
[vars$j.labelsFontSize]: '14px',
|
17840
|
+
[vars$j.labelsLineHeight]: '1',
|
17841
|
+
[vars$j.labelsMarginBottom]: '6px',
|
17842
|
+
[vars$j.labelTextColor]: refs.labelTextColor,
|
17843
|
+
[vars$j.itemMarginBottom]: '1em',
|
17440
17844
|
// To be positioned correctly, the min width has to match the text field min width
|
17441
|
-
[vars$
|
17845
|
+
[vars$j.valueLabelMinWidth]: refs.minWidth,
|
17442
17846
|
// To be positioned correctly, the min width has to match the combo box field min width
|
17443
|
-
[vars$
|
17444
|
-
[vars$
|
17445
|
-
[vars$
|
17847
|
+
[vars$j.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
|
17848
|
+
[vars$j.separatorWidth]: '70px',
|
17849
|
+
[vars$j.removeButtonWidth]: '60px',
|
17446
17850
|
};
|
17447
17851
|
|
17448
17852
|
var mappingsField$1 = /*#__PURE__*/Object.freeze({
|
17449
17853
|
__proto__: null,
|
17450
17854
|
default: mappingsField,
|
17451
17855
|
mappingsField: mappingsField,
|
17452
|
-
vars: vars$
|
17856
|
+
vars: vars$j
|
17453
17857
|
});
|
17454
17858
|
|
17455
17859
|
const globalRefs$b = getThemeRefs(globals);
|
17456
|
-
const vars$
|
17860
|
+
const vars$i = UserAttributeClass.cssVarList;
|
17457
17861
|
|
17458
17862
|
const userAttribute = {
|
17459
|
-
[vars$
|
17460
|
-
[vars$
|
17461
|
-
[vars$
|
17462
|
-
[vars$
|
17463
|
-
[vars$
|
17464
|
-
[vars$
|
17863
|
+
[vars$i.hostDirection]: globalRefs$b.direction,
|
17864
|
+
[vars$i.labelTextWidth]: '150px',
|
17865
|
+
[vars$i.valueTextWidth]: '200px',
|
17866
|
+
[vars$i.badgeMaxWidth]: '85px',
|
17867
|
+
[vars$i.itemsGap]: '16px',
|
17868
|
+
[vars$i.hostMinWidth]: '530px',
|
17465
17869
|
_fullWidth: {
|
17466
|
-
[vars$
|
17870
|
+
[vars$i.hostWidth]: '100%',
|
17467
17871
|
},
|
17468
17872
|
};
|
17469
17873
|
|
17470
17874
|
var userAttribute$1 = /*#__PURE__*/Object.freeze({
|
17471
17875
|
__proto__: null,
|
17472
17876
|
default: userAttribute,
|
17473
|
-
vars: vars$
|
17877
|
+
vars: vars$i
|
17474
17878
|
});
|
17475
17879
|
|
17476
17880
|
const globalRefs$a = getThemeRefs(globals);
|
17477
|
-
const vars$
|
17881
|
+
const vars$h = UserAuthMethodClass.cssVarList;
|
17478
17882
|
|
17479
17883
|
const userAuthMethod = {
|
17480
|
-
[vars$
|
17481
|
-
[vars$
|
17482
|
-
[vars$
|
17483
|
-
[vars$
|
17484
|
-
[vars$
|
17485
|
-
[vars$
|
17884
|
+
[vars$h.hostDirection]: globalRefs$a.direction,
|
17885
|
+
[vars$h.labelTextWidth]: '200px',
|
17886
|
+
[vars$h.itemsGap]: '16px',
|
17887
|
+
[vars$h.hostMinWidth]: '530px',
|
17888
|
+
[vars$h.iconSize]: '24px',
|
17889
|
+
[vars$h.iconColor]: 'currentcolor',
|
17486
17890
|
_fullWidth: {
|
17487
|
-
[vars$
|
17891
|
+
[vars$h.hostWidth]: '100%',
|
17488
17892
|
},
|
17489
17893
|
};
|
17490
17894
|
|
17491
17895
|
var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
|
17492
17896
|
__proto__: null,
|
17493
17897
|
default: userAuthMethod,
|
17494
|
-
vars: vars$
|
17898
|
+
vars: vars$h
|
17495
17899
|
});
|
17496
17900
|
|
17497
|
-
const vars$
|
17901
|
+
const vars$g = SamlGroupMappingsClass.cssVarList;
|
17498
17902
|
|
17499
17903
|
const samlGroupMappings = {
|
17500
|
-
[vars$
|
17501
|
-
[vars$
|
17502
|
-
[vars$
|
17904
|
+
[vars$g.hostWidth]: refs.width,
|
17905
|
+
[vars$g.hostDirection]: refs.direction,
|
17906
|
+
[vars$g.groupNameInputMarginBottom]: '1em',
|
17503
17907
|
};
|
17504
17908
|
|
17505
17909
|
var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
|
17506
17910
|
__proto__: null,
|
17507
17911
|
default: samlGroupMappings,
|
17508
17912
|
samlGroupMappings: samlGroupMappings,
|
17509
|
-
vars: vars$
|
17913
|
+
vars: vars$g
|
17510
17914
|
});
|
17511
17915
|
|
17512
17916
|
const globalRefs$9 = getThemeRefs(globals);
|
17513
|
-
const vars$
|
17917
|
+
const vars$f = PolicyValidationClass.cssVarList;
|
17514
17918
|
|
17515
17919
|
const policyValidation = {
|
17516
|
-
[vars$
|
17517
|
-
[vars$
|
17518
|
-
[vars$
|
17519
|
-
[vars$
|
17520
|
-
[vars$
|
17521
|
-
[vars$
|
17522
|
-
[vars$
|
17523
|
-
[vars$
|
17524
|
-
[vars$
|
17525
|
-
[vars$
|
17526
|
-
[vars$
|
17527
|
-
[vars$
|
17528
|
-
[vars$
|
17529
|
-
[vars$
|
17530
|
-
[vars$
|
17531
|
-
[vars$
|
17920
|
+
[vars$f.fontFamily]: refs.fontFamily,
|
17921
|
+
[vars$f.fontSize]: refs.labelFontSize,
|
17922
|
+
[vars$f.textColor]: refs.labelTextColor,
|
17923
|
+
[vars$f.borderWidth]: refs.borderWidth,
|
17924
|
+
[vars$f.borderStyle]: refs.borderStyle,
|
17925
|
+
[vars$f.borderColor]: refs.borderColor,
|
17926
|
+
[vars$f.borderRadius]: globalRefs$9.radius.sm,
|
17927
|
+
[vars$f.backgroundColor]: 'none',
|
17928
|
+
[vars$f.padding]: '0px',
|
17929
|
+
[vars$f.labelMargin]: globalRefs$9.spacing.sm,
|
17930
|
+
[vars$f.itemsSpacing]: globalRefs$9.spacing.lg,
|
17931
|
+
[vars$f.itemSymbolDefault]: "'\\2022'", // "•"
|
17932
|
+
[vars$f.itemSymbolSuccess]: "'\\2713'", // "✓"
|
17933
|
+
[vars$f.itemSymbolError]: "'\\2A09'", // "⨉"
|
17934
|
+
[vars$f.itemSymbolSuccessColor]: globalRefs$9.colors.success.main,
|
17935
|
+
[vars$f.itemSymbolErrorColor]: globalRefs$9.colors.error.main,
|
17532
17936
|
};
|
17533
17937
|
|
17534
17938
|
var policyValidation$1 = /*#__PURE__*/Object.freeze({
|
17535
17939
|
__proto__: null,
|
17536
17940
|
default: policyValidation,
|
17537
|
-
vars: vars$
|
17941
|
+
vars: vars$f
|
17538
17942
|
});
|
17539
17943
|
|
17540
|
-
const vars$
|
17944
|
+
const vars$e = IconClass.cssVarList;
|
17541
17945
|
|
17542
17946
|
const icon = {};
|
17543
17947
|
|
17544
17948
|
var icon$1 = /*#__PURE__*/Object.freeze({
|
17545
17949
|
__proto__: null,
|
17546
17950
|
default: icon,
|
17547
|
-
vars: vars$
|
17951
|
+
vars: vars$e
|
17548
17952
|
});
|
17549
17953
|
|
17550
17954
|
const globalRefs$8 = getThemeRefs(globals);
|
17551
17955
|
|
17552
|
-
const vars$
|
17956
|
+
const vars$d = CodeSnippetClass.cssVarList;
|
17553
17957
|
|
17554
17958
|
const light = {
|
17555
17959
|
color1: '#fa0',
|
@@ -17584,50 +17988,50 @@ const dark = {
|
|
17584
17988
|
};
|
17585
17989
|
|
17586
17990
|
const CodeSnippet = {
|
17587
|
-
[vars$
|
17588
|
-
[vars$
|
17589
|
-
[vars$
|
17590
|
-
[vars$
|
17591
|
-
[vars$
|
17592
|
-
[vars$
|
17593
|
-
[vars$
|
17594
|
-
[vars$
|
17595
|
-
[vars$
|
17596
|
-
[vars$
|
17597
|
-
[vars$
|
17598
|
-
[vars$
|
17599
|
-
[vars$
|
17600
|
-
[vars$
|
17601
|
-
[vars$
|
17602
|
-
[vars$
|
17603
|
-
[vars$
|
17604
|
-
[vars$
|
17605
|
-
[vars$
|
17606
|
-
[vars$
|
17607
|
-
[vars$
|
17608
|
-
[vars$
|
17609
|
-
[vars$
|
17610
|
-
[vars$
|
17611
|
-
[vars$
|
17612
|
-
[vars$
|
17613
|
-
[vars$
|
17614
|
-
[vars$
|
17615
|
-
[vars$
|
17616
|
-
[vars$
|
17617
|
-
[vars$
|
17618
|
-
[vars$
|
17619
|
-
[vars$
|
17620
|
-
[vars$
|
17621
|
-
[vars$
|
17622
|
-
[vars$
|
17623
|
-
[vars$
|
17624
|
-
[vars$
|
17625
|
-
[vars$
|
17626
|
-
[vars$
|
17627
|
-
[vars$
|
17628
|
-
[vars$
|
17629
|
-
[vars$
|
17630
|
-
[vars$
|
17991
|
+
[vars$d.rootBgColor]: globalRefs$8.colors.surface.main,
|
17992
|
+
[vars$d.rootTextColor]: globalRefs$8.colors.surface.contrast,
|
17993
|
+
[vars$d.docTagTextColor]: light.color2,
|
17994
|
+
[vars$d.keywordTextColor]: light.color2,
|
17995
|
+
[vars$d.metaKeywordTextColor]: light.color2,
|
17996
|
+
[vars$d.templateTagTextColor]: light.color2,
|
17997
|
+
[vars$d.templateVariableTextColor]: light.color2,
|
17998
|
+
[vars$d.typeTextColor]: light.color2,
|
17999
|
+
[vars$d.variableLanguageTextColor]: light.color2,
|
18000
|
+
[vars$d.titleTextColor]: light.color3,
|
18001
|
+
[vars$d.titleClassTextColor]: light.color3,
|
18002
|
+
[vars$d.titleClassInheritedTextColor]: light.color3,
|
18003
|
+
[vars$d.titleFunctionTextColor]: light.color3,
|
18004
|
+
[vars$d.attrTextColor]: light.color4,
|
18005
|
+
[vars$d.attributeTextColor]: light.color4,
|
18006
|
+
[vars$d.literalTextColor]: light.color4,
|
18007
|
+
[vars$d.metaTextColor]: light.color4,
|
18008
|
+
[vars$d.numberTextColor]: light.color4,
|
18009
|
+
[vars$d.operatorTextColor]: light.color4,
|
18010
|
+
[vars$d.variableTextColor]: light.color4,
|
18011
|
+
[vars$d.selectorAttrTextColor]: light.color4,
|
18012
|
+
[vars$d.selectorClassTextColor]: light.color4,
|
18013
|
+
[vars$d.selectorIdTextColor]: light.color4,
|
18014
|
+
[vars$d.regexpTextColor]: light.color13,
|
18015
|
+
[vars$d.stringTextColor]: light.color13,
|
18016
|
+
[vars$d.metaStringTextColor]: light.color13,
|
18017
|
+
[vars$d.builtInTextColor]: light.color5,
|
18018
|
+
[vars$d.symbolTextColor]: light.color5,
|
18019
|
+
[vars$d.commentTextColor]: light.color6,
|
18020
|
+
[vars$d.codeTextColor]: light.color6,
|
18021
|
+
[vars$d.formulaTextColor]: light.color6,
|
18022
|
+
[vars$d.nameTextColor]: light.color7,
|
18023
|
+
[vars$d.quoteTextColor]: light.color7,
|
18024
|
+
[vars$d.selectorTagTextColor]: light.color7,
|
18025
|
+
[vars$d.selectorPseudoTextColor]: light.color7,
|
18026
|
+
[vars$d.substTextColor]: light.color8,
|
18027
|
+
[vars$d.sectionTextColor]: light.color4,
|
18028
|
+
[vars$d.bulletTextColor]: light.color9,
|
18029
|
+
[vars$d.emphasisTextColor]: light.color8,
|
18030
|
+
[vars$d.strongTextColor]: light.color8,
|
18031
|
+
[vars$d.additionTextColor]: light.color7,
|
18032
|
+
[vars$d.additionBgColor]: light.color10,
|
18033
|
+
[vars$d.deletionTextColor]: light.color2,
|
18034
|
+
[vars$d.deletionBgColor]: light.color10,
|
17631
18035
|
/* purposely ignored */
|
17632
18036
|
// [vars.charEscapeTextColor]: '',
|
17633
18037
|
// [vars.linkTextColor]: '',
|
@@ -17639,50 +18043,50 @@ const CodeSnippet = {
|
|
17639
18043
|
|
17640
18044
|
const codeSnippetDarkThemeOverrides = {
|
17641
18045
|
codeSnippet: {
|
17642
|
-
[vars$
|
17643
|
-
[vars$
|
17644
|
-
[vars$
|
17645
|
-
[vars$
|
17646
|
-
[vars$
|
17647
|
-
[vars$
|
17648
|
-
[vars$
|
17649
|
-
[vars$
|
17650
|
-
[vars$
|
17651
|
-
[vars$
|
17652
|
-
[vars$
|
17653
|
-
[vars$
|
17654
|
-
[vars$
|
17655
|
-
[vars$
|
17656
|
-
[vars$
|
17657
|
-
[vars$
|
17658
|
-
[vars$
|
17659
|
-
[vars$
|
17660
|
-
[vars$
|
17661
|
-
[vars$
|
17662
|
-
[vars$
|
17663
|
-
[vars$
|
17664
|
-
[vars$
|
17665
|
-
[vars$
|
17666
|
-
[vars$
|
17667
|
-
[vars$
|
17668
|
-
[vars$
|
17669
|
-
[vars$
|
17670
|
-
[vars$
|
17671
|
-
[vars$
|
17672
|
-
[vars$
|
17673
|
-
[vars$
|
17674
|
-
[vars$
|
17675
|
-
[vars$
|
17676
|
-
[vars$
|
17677
|
-
[vars$
|
17678
|
-
[vars$
|
17679
|
-
[vars$
|
17680
|
-
[vars$
|
17681
|
-
[vars$
|
17682
|
-
[vars$
|
17683
|
-
[vars$
|
17684
|
-
[vars$
|
17685
|
-
[vars$
|
18046
|
+
[vars$d.rootBgColor]: globalRefs$8.colors.surface.main,
|
18047
|
+
[vars$d.rootTextColor]: globalRefs$8.colors.surface.contrast,
|
18048
|
+
[vars$d.docTagTextColor]: dark.color2,
|
18049
|
+
[vars$d.keywordTextColor]: dark.color2,
|
18050
|
+
[vars$d.metaKeywordTextColor]: dark.color2,
|
18051
|
+
[vars$d.templateTagTextColor]: dark.color2,
|
18052
|
+
[vars$d.templateVariableTextColor]: dark.color2,
|
18053
|
+
[vars$d.typeTextColor]: dark.color2,
|
18054
|
+
[vars$d.variableLanguageTextColor]: dark.color2,
|
18055
|
+
[vars$d.titleTextColor]: dark.color3,
|
18056
|
+
[vars$d.titleClassTextColor]: dark.color3,
|
18057
|
+
[vars$d.titleClassInheritedTextColor]: dark.color3,
|
18058
|
+
[vars$d.titleFunctionTextColor]: dark.color3,
|
18059
|
+
[vars$d.attrTextColor]: dark.color4,
|
18060
|
+
[vars$d.attributeTextColor]: dark.color4,
|
18061
|
+
[vars$d.literalTextColor]: dark.color4,
|
18062
|
+
[vars$d.metaTextColor]: dark.color4,
|
18063
|
+
[vars$d.numberTextColor]: dark.color4,
|
18064
|
+
[vars$d.operatorTextColor]: dark.color4,
|
18065
|
+
[vars$d.variableTextColor]: dark.color4,
|
18066
|
+
[vars$d.selectorAttrTextColor]: dark.color4,
|
18067
|
+
[vars$d.selectorClassTextColor]: dark.color4,
|
18068
|
+
[vars$d.selectorIdTextColor]: dark.color4,
|
18069
|
+
[vars$d.regexpTextColor]: dark.color13,
|
18070
|
+
[vars$d.stringTextColor]: dark.color13,
|
18071
|
+
[vars$d.metaStringTextColor]: dark.color13,
|
18072
|
+
[vars$d.builtInTextColor]: dark.color5,
|
18073
|
+
[vars$d.symbolTextColor]: dark.color5,
|
18074
|
+
[vars$d.commentTextColor]: dark.color6,
|
18075
|
+
[vars$d.codeTextColor]: dark.color6,
|
18076
|
+
[vars$d.formulaTextColor]: dark.color6,
|
18077
|
+
[vars$d.nameTextColor]: dark.color7,
|
18078
|
+
[vars$d.quoteTextColor]: dark.color7,
|
18079
|
+
[vars$d.selectorTagTextColor]: dark.color7,
|
18080
|
+
[vars$d.selectorPseudoTextColor]: dark.color7,
|
18081
|
+
[vars$d.substTextColor]: dark.color8,
|
18082
|
+
[vars$d.sectionTextColor]: dark.color4,
|
18083
|
+
[vars$d.bulletTextColor]: dark.color9,
|
18084
|
+
[vars$d.emphasisTextColor]: dark.color8,
|
18085
|
+
[vars$d.strongTextColor]: dark.color8,
|
18086
|
+
[vars$d.additionTextColor]: dark.color7,
|
18087
|
+
[vars$d.additionBgColor]: dark.color10,
|
18088
|
+
[vars$d.deletionTextColor]: dark.color2,
|
18089
|
+
[vars$d.deletionBgColor]: dark.color10,
|
17686
18090
|
},
|
17687
18091
|
};
|
17688
18092
|
|
@@ -17690,36 +18094,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
|
|
17690
18094
|
__proto__: null,
|
17691
18095
|
codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
|
17692
18096
|
default: CodeSnippet,
|
17693
|
-
vars: vars$
|
18097
|
+
vars: vars$d
|
17694
18098
|
});
|
17695
18099
|
|
17696
|
-
const vars$
|
18100
|
+
const vars$c = RadioGroupClass.cssVarList;
|
17697
18101
|
const globalRefs$7 = getThemeRefs(globals);
|
17698
18102
|
|
17699
18103
|
const radioGroup = {
|
17700
|
-
[vars$
|
17701
|
-
[vars$
|
17702
|
-
[vars$
|
17703
|
-
[vars$
|
17704
|
-
[vars$
|
17705
|
-
[vars$
|
17706
|
-
[vars$
|
17707
|
-
[vars$
|
17708
|
-
[vars$
|
17709
|
-
[vars$
|
18104
|
+
[vars$c.buttonsRowGap]: '9px',
|
18105
|
+
[vars$c.hostWidth]: refs.width,
|
18106
|
+
[vars$c.hostDirection]: refs.direction,
|
18107
|
+
[vars$c.fontSize]: refs.fontSize,
|
18108
|
+
[vars$c.fontFamily]: refs.fontFamily,
|
18109
|
+
[vars$c.labelTextColor]: refs.labelTextColor,
|
18110
|
+
[vars$c.labelRequiredIndicator]: refs.requiredIndicator,
|
18111
|
+
[vars$c.errorMessageTextColor]: refs.errorMessageTextColor,
|
18112
|
+
[vars$c.helperTextColor]: refs.helperTextColor,
|
18113
|
+
[vars$c.itemsLabelColor]: globalRefs$7.colors.surface.contrast,
|
17710
18114
|
|
17711
18115
|
textAlign: {
|
17712
|
-
right: { [vars$
|
17713
|
-
left: { [vars$
|
17714
|
-
center: { [vars$
|
18116
|
+
right: { [vars$c.inputTextAlign]: 'right' },
|
18117
|
+
left: { [vars$c.inputTextAlign]: 'left' },
|
18118
|
+
center: { [vars$c.inputTextAlign]: 'center' },
|
17715
18119
|
},
|
17716
18120
|
|
17717
18121
|
_fullWidth: {
|
17718
|
-
[vars$
|
18122
|
+
[vars$c.buttonsSpacing]: 'space-between',
|
17719
18123
|
},
|
17720
18124
|
|
17721
18125
|
_disabled: {
|
17722
|
-
[vars$
|
18126
|
+
[vars$c.itemsLabelColor]: globalRefs$7.colors.surface.light,
|
17723
18127
|
},
|
17724
18128
|
};
|
17725
18129
|
|
@@ -17727,24 +18131,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
|
|
17727
18131
|
__proto__: null,
|
17728
18132
|
default: radioGroup,
|
17729
18133
|
radioGroup: radioGroup,
|
17730
|
-
vars: vars$
|
18134
|
+
vars: vars$c
|
17731
18135
|
});
|
17732
18136
|
|
17733
|
-
const vars$
|
18137
|
+
const vars$b = RadioButtonClass.cssVarList;
|
17734
18138
|
const globalRefs$6 = getThemeRefs(globals);
|
17735
18139
|
|
17736
18140
|
const radioButton = {
|
17737
|
-
[vars$
|
17738
|
-
[vars$
|
17739
|
-
[vars$
|
17740
|
-
[vars$
|
17741
|
-
[vars$
|
17742
|
-
[vars$
|
17743
|
-
[vars$
|
17744
|
-
[vars$
|
18141
|
+
[vars$b.fontFamily]: refs.fontFamily,
|
18142
|
+
[vars$b.radioSize]: 'calc(1em + 6px)',
|
18143
|
+
[vars$b.radioMargin]: 'auto 4px',
|
18144
|
+
[vars$b.radioCheckedSize]: `calc(var(${vars$b.radioSize})/5)`,
|
18145
|
+
[vars$b.radioCheckedColor]: globalRefs$6.colors.surface.light,
|
18146
|
+
[vars$b.radioBackgroundColor]: globalRefs$6.colors.surface.light,
|
18147
|
+
[vars$b.radioBorderColor]: 'none',
|
18148
|
+
[vars$b.radioBorderWidth]: 0,
|
17745
18149
|
|
17746
18150
|
_checked: {
|
17747
|
-
[vars$
|
18151
|
+
[vars$b.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
|
17748
18152
|
},
|
17749
18153
|
|
17750
18154
|
_hover: {
|
@@ -17753,16 +18157,16 @@ const radioButton = {
|
|
17753
18157
|
|
17754
18158
|
size: {
|
17755
18159
|
xs: {
|
17756
|
-
[vars$
|
18160
|
+
[vars$b.fontSize]: '12px',
|
17757
18161
|
},
|
17758
18162
|
sm: {
|
17759
|
-
[vars$
|
18163
|
+
[vars$b.fontSize]: '14px',
|
17760
18164
|
},
|
17761
18165
|
md: {
|
17762
|
-
[vars$
|
18166
|
+
[vars$b.fontSize]: '16px',
|
17763
18167
|
},
|
17764
18168
|
lg: {
|
17765
|
-
[vars$
|
18169
|
+
[vars$b.fontSize]: '18px',
|
17766
18170
|
},
|
17767
18171
|
},
|
17768
18172
|
};
|
@@ -17771,128 +18175,128 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
|
|
17771
18175
|
__proto__: null,
|
17772
18176
|
default: radioButton,
|
17773
18177
|
radioButton: radioButton,
|
17774
|
-
vars: vars$
|
18178
|
+
vars: vars$b
|
17775
18179
|
});
|
17776
18180
|
|
17777
18181
|
const globalRefs$5 = getThemeRefs(globals);
|
17778
18182
|
|
17779
|
-
const vars$
|
18183
|
+
const vars$a = CalendarClass.cssVarList;
|
17780
18184
|
|
17781
18185
|
const calendar = {
|
17782
|
-
[vars$
|
17783
|
-
[vars$
|
17784
|
-
[vars$
|
18186
|
+
[vars$a.fontFamily]: refs.fontFamily,
|
18187
|
+
[vars$a.fontSize]: refs.fontSize,
|
18188
|
+
[vars$a.hostDirection]: refs.direction,
|
17785
18189
|
|
17786
|
-
[vars$
|
18190
|
+
[vars$a.calendarPadding]: '1em',
|
17787
18191
|
|
17788
|
-
[vars$
|
17789
|
-
[vars$
|
17790
|
-
[vars$
|
17791
|
-
[vars$
|
18192
|
+
[vars$a.topNavVerticalPadding]: '1em',
|
18193
|
+
[vars$a.topNavAlignment]: 'space-between',
|
18194
|
+
[vars$a.topNavGap]: '0',
|
18195
|
+
[vars$a.topNavSelectorsGap]: '0.5em',
|
17792
18196
|
|
17793
|
-
[vars$
|
17794
|
-
[vars$
|
17795
|
-
[vars$
|
17796
|
-
[vars$
|
18197
|
+
[vars$a.bottomNavVerticalPadding]: '0.75em',
|
18198
|
+
[vars$a.bottomNavHorizontalPadding]: '1.5em',
|
18199
|
+
[vars$a.bottomNavAlignment]: 'space-between',
|
18200
|
+
[vars$a.bottomNavGap]: '0.5em',
|
17797
18201
|
|
17798
|
-
[vars$
|
17799
|
-
[vars$
|
17800
|
-
[vars$
|
17801
|
-
[vars$
|
18202
|
+
[vars$a.navMarginBottom]: '0.75em',
|
18203
|
+
[vars$a.navBorderBottomWidth]: '1px',
|
18204
|
+
[vars$a.navBorderBottomColor]: globalRefs$5.colors.surface.highlight,
|
18205
|
+
[vars$a.navBorderBottomStyle]: 'solid',
|
17802
18206
|
|
17803
|
-
[vars$
|
17804
|
-
[vars$
|
18207
|
+
[vars$a.yearInputWidth]: '6em',
|
18208
|
+
[vars$a.monthInputWidth]: '8em',
|
17805
18209
|
|
17806
|
-
[vars$
|
17807
|
-
[vars$
|
18210
|
+
[vars$a.navButtonSize]: '24px',
|
18211
|
+
[vars$a.navButtonCursor]: 'pointer',
|
17808
18212
|
|
17809
|
-
[vars$
|
17810
|
-
[vars$
|
18213
|
+
[vars$a.weekdayFontSize]: '0.875em',
|
18214
|
+
[vars$a.weekdayFontWeight]: '500',
|
17811
18215
|
|
17812
18216
|
// day table cell
|
17813
|
-
[vars$
|
18217
|
+
[vars$a.dayHeight]: '3.125em',
|
17814
18218
|
|
17815
18219
|
// day value
|
17816
|
-
[vars$
|
17817
|
-
[vars$
|
17818
|
-
[vars$
|
17819
|
-
[vars$
|
17820
|
-
[vars$
|
17821
|
-
[vars$
|
17822
|
-
[vars$
|
17823
|
-
[vars$
|
17824
|
-
[vars$
|
17825
|
-
[vars$
|
18220
|
+
[vars$a.daySize]: '2.125em',
|
18221
|
+
[vars$a.dayFontSize]: '1em',
|
18222
|
+
[vars$a.dayRadius]: '50%',
|
18223
|
+
[vars$a.dayTextAlign]: 'center',
|
18224
|
+
[vars$a.dayPadding]: '0',
|
18225
|
+
[vars$a.dayTextColor]: globalRefs$5.colors.surface.contrast,
|
18226
|
+
[vars$a.dayFontWeight]: '500',
|
18227
|
+
[vars$a.dayBackgroundColor]: 'transparent',
|
18228
|
+
[vars$a.dayCursor]: 'pointer',
|
18229
|
+
[vars$a.dayBackgroundColorHover]: globalRefs$5.colors.primary.highlight,
|
17826
18230
|
|
17827
18231
|
// selected day
|
17828
|
-
[vars$
|
17829
|
-
[vars$
|
18232
|
+
[vars$a.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
|
18233
|
+
[vars$a.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
|
17830
18234
|
|
17831
18235
|
// disabled day (out of min/max range)
|
17832
|
-
[vars$
|
18236
|
+
[vars$a.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
|
17833
18237
|
|
17834
18238
|
// today
|
17835
|
-
[vars$
|
17836
|
-
[vars$
|
17837
|
-
[vars$
|
18239
|
+
[vars$a.currentDayBorderColor]: globalRefs$5.colors.surface.light,
|
18240
|
+
[vars$a.currentDayBorderWidth]: '1px',
|
18241
|
+
[vars$a.currentDayBorderStyle]: 'solid',
|
17838
18242
|
|
17839
18243
|
size: {
|
17840
|
-
xs: { [vars$
|
17841
|
-
sm: { [vars$
|
17842
|
-
md: { [vars$
|
17843
|
-
lg: { [vars$
|
18244
|
+
xs: { [vars$a.fontSize]: '12px' },
|
18245
|
+
sm: { [vars$a.fontSize]: '14px' },
|
18246
|
+
md: { [vars$a.fontSize]: '16px' },
|
18247
|
+
lg: { [vars$a.fontSize]: '18px' },
|
17844
18248
|
},
|
17845
18249
|
|
17846
|
-
[vars$
|
18250
|
+
[vars$a.navButtonRotation]: 'rotate(180deg)',
|
17847
18251
|
|
17848
18252
|
_disabled: {
|
17849
|
-
[vars$
|
17850
|
-
[vars$
|
17851
|
-
[vars$
|
17852
|
-
[vars$
|
18253
|
+
[vars$a.navButtonOpacity]: '0.5',
|
18254
|
+
[vars$a.dayBackgroundColorHover]: 'none',
|
18255
|
+
[vars$a.navButtonCursor]: 'default',
|
18256
|
+
[vars$a.dayCursor]: 'default',
|
17853
18257
|
},
|
17854
18258
|
|
17855
18259
|
_fullWidth: {
|
17856
|
-
[vars$
|
17857
|
-
[vars$
|
18260
|
+
[vars$a.hostWidth]: '100%',
|
18261
|
+
[vars$a.dayBlockAlign]: '0 auto',
|
17858
18262
|
},
|
17859
18263
|
};
|
17860
18264
|
|
17861
18265
|
var calendar$1 = /*#__PURE__*/Object.freeze({
|
17862
18266
|
__proto__: null,
|
17863
18267
|
default: calendar,
|
17864
|
-
vars: vars$
|
18268
|
+
vars: vars$a
|
17865
18269
|
});
|
17866
18270
|
|
17867
18271
|
const globalRefs$4 = getThemeRefs(globals);
|
17868
18272
|
const shadowColor$1 = '#00000020';
|
17869
18273
|
const { shadow } = globalRefs$4;
|
17870
18274
|
|
17871
|
-
const vars$
|
18275
|
+
const vars$9 = DateFieldClass.cssVarList;
|
17872
18276
|
|
17873
18277
|
const dateField = {
|
17874
|
-
[vars$
|
17875
|
-
[vars$
|
17876
|
-
[vars$
|
17877
|
-
|
17878
|
-
[vars$
|
17879
|
-
[vars$
|
17880
|
-
[vars$
|
17881
|
-
[vars$
|
17882
|
-
[vars$
|
17883
|
-
[vars$
|
17884
|
-
[vars$
|
17885
|
-
[vars$
|
17886
|
-
[vars$
|
17887
|
-
|
17888
|
-
[vars$
|
17889
|
-
[vars$
|
18278
|
+
[vars$9.hostWidth]: refs.width,
|
18279
|
+
[vars$9.hostDirection]: refs.direction,
|
18280
|
+
[vars$9.iconMargin]: '0.375em',
|
18281
|
+
|
18282
|
+
[vars$9.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
|
18283
|
+
[vars$9.overlay.backgroundColor]: refs.backgroundColor,
|
18284
|
+
[vars$9.overlay.backdropBackgroundColor]: 'transparent',
|
18285
|
+
[vars$9.overlay.backdropPointerEvents]: 'all',
|
18286
|
+
[vars$9.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
|
18287
|
+
[vars$9.overlay.outlineWidth]: '0',
|
18288
|
+
[vars$9.overlay.outlineColor]: 'transparent',
|
18289
|
+
[vars$9.overlay.outlineStyle]: 'none',
|
18290
|
+
[vars$9.overlay.padding]: '0',
|
18291
|
+
|
18292
|
+
[vars$9.rtlInputDirection]: 'ltr',
|
18293
|
+
[vars$9.rtlInputAlignment]: 'right',
|
17890
18294
|
};
|
17891
18295
|
|
17892
18296
|
var dateField$1 = /*#__PURE__*/Object.freeze({
|
17893
18297
|
__proto__: null,
|
17894
18298
|
default: dateField,
|
17895
|
-
vars: vars$
|
18299
|
+
vars: vars$9
|
17896
18300
|
});
|
17897
18301
|
|
17898
18302
|
const globalRefs$3 = getThemeRefs(globals);
|
@@ -17901,7 +18305,7 @@ const compVars = ListClass.cssVarList;
|
|
17901
18305
|
|
17902
18306
|
const [helperTheme, helperRefs, helperVars] = createHelperVars(
|
17903
18307
|
{ shadowColor: '#00000020' },
|
17904
|
-
componentName$
|
18308
|
+
componentName$7
|
17905
18309
|
);
|
17906
18310
|
|
17907
18311
|
const { shadowColor } = helperRefs;
|
@@ -17941,7 +18345,7 @@ const list$1 = {
|
|
17941
18345
|
},
|
17942
18346
|
};
|
17943
18347
|
|
17944
|
-
const vars$
|
18348
|
+
const vars$8 = {
|
17945
18349
|
...compVars,
|
17946
18350
|
...helperVars,
|
17947
18351
|
};
|
@@ -17949,78 +18353,78 @@ const vars$7 = {
|
|
17949
18353
|
var list$2 = /*#__PURE__*/Object.freeze({
|
17950
18354
|
__proto__: null,
|
17951
18355
|
default: list$1,
|
17952
|
-
vars: vars$
|
18356
|
+
vars: vars$8
|
17953
18357
|
});
|
17954
18358
|
|
17955
18359
|
const globalRefs$2 = getThemeRefs(globals);
|
17956
18360
|
|
17957
|
-
const vars$
|
18361
|
+
const vars$7 = ListItemClass.cssVarList;
|
17958
18362
|
|
17959
18363
|
const list = {
|
17960
|
-
[vars$
|
17961
|
-
[vars$
|
17962
|
-
[vars$
|
17963
|
-
[vars$
|
17964
|
-
[vars$
|
17965
|
-
[vars$
|
17966
|
-
[vars$
|
17967
|
-
[vars$
|
17968
|
-
[vars$
|
17969
|
-
[vars$
|
17970
|
-
[vars$
|
18364
|
+
[vars$7.backgroundColor]: globalRefs$2.colors.surface.main,
|
18365
|
+
[vars$7.padding]: globalRefs$2.spacing.lg,
|
18366
|
+
[vars$7.gap]: globalRefs$2.spacing.md,
|
18367
|
+
[vars$7.borderStyle]: 'solid',
|
18368
|
+
[vars$7.borderWidth]: globalRefs$2.border.xs,
|
18369
|
+
[vars$7.borderColor]: globalRefs$2.colors.surface.main,
|
18370
|
+
[vars$7.borderRadius]: globalRefs$2.radius.sm,
|
18371
|
+
[vars$7.cursor]: 'pointer',
|
18372
|
+
[vars$7.alignItems]: 'center',
|
18373
|
+
[vars$7.flexDirection]: 'row',
|
18374
|
+
[vars$7.transition]: 'border-color 0.2s, background-color 0.2s',
|
17971
18375
|
|
17972
18376
|
variant: {
|
17973
18377
|
tile: {
|
17974
|
-
[vars$
|
17975
|
-
[vars$
|
17976
|
-
[vars$
|
18378
|
+
[vars$7.alignItems]: 'flex-start',
|
18379
|
+
[vars$7.flexDirection]: 'column',
|
18380
|
+
[vars$7.borderColor]: globalRefs$2.colors.surface.light,
|
17977
18381
|
},
|
17978
18382
|
},
|
17979
18383
|
|
17980
18384
|
_hover: {
|
17981
|
-
[vars$
|
18385
|
+
[vars$7.backgroundColor]: globalRefs$2.colors.surface.highlight,
|
17982
18386
|
},
|
17983
18387
|
|
17984
18388
|
_active: {
|
17985
|
-
[vars$
|
17986
|
-
[vars$
|
17987
|
-
[vars$
|
18389
|
+
[vars$7.backgroundColor]: globalRefs$2.colors.surface.main,
|
18390
|
+
[vars$7.borderColor]: globalRefs$2.colors.primary.light,
|
18391
|
+
[vars$7.outline]: `1px solid ${globalRefs$2.colors.primary.light}`,
|
17988
18392
|
},
|
17989
18393
|
};
|
17990
18394
|
|
17991
18395
|
var listItem = /*#__PURE__*/Object.freeze({
|
17992
18396
|
__proto__: null,
|
17993
18397
|
default: list,
|
17994
|
-
vars: vars$
|
18398
|
+
vars: vars$7
|
17995
18399
|
});
|
17996
18400
|
|
17997
|
-
const vars$
|
18401
|
+
const vars$6 = AppsListClass.cssVarList;
|
17998
18402
|
const globalRefs$1 = getThemeRefs(globals);
|
17999
18403
|
|
18000
18404
|
const defaultHeight = '400px';
|
18001
18405
|
|
18002
18406
|
const appsList = {
|
18003
|
-
[vars$
|
18004
|
-
[vars$
|
18005
|
-
[vars$
|
18006
|
-
[vars$
|
18407
|
+
[vars$6.itemsFontWeight]: 'normal',
|
18408
|
+
[vars$6.itemsTextAlign]: 'start',
|
18409
|
+
[vars$6.hostDirection]: globalRefs$1.direction,
|
18410
|
+
[vars$6.maxHeight]: defaultHeight,
|
18007
18411
|
|
18008
18412
|
_empty: {
|
18009
|
-
[vars$
|
18413
|
+
[vars$6.minHeight]: defaultHeight,
|
18010
18414
|
},
|
18011
18415
|
|
18012
18416
|
size: {
|
18013
18417
|
xs: {
|
18014
|
-
[vars$
|
18418
|
+
[vars$6.itemsFontSize]: '14px',
|
18015
18419
|
},
|
18016
18420
|
sm: {
|
18017
|
-
[vars$
|
18421
|
+
[vars$6.itemsFontSize]: '14px',
|
18018
18422
|
},
|
18019
18423
|
md: {
|
18020
|
-
[vars$
|
18424
|
+
[vars$6.itemsFontSize]: '16px',
|
18021
18425
|
},
|
18022
18426
|
lg: {
|
18023
|
-
[vars$
|
18427
|
+
[vars$6.itemsFontSize]: '20px',
|
18024
18428
|
},
|
18025
18429
|
},
|
18026
18430
|
};
|
@@ -18028,52 +18432,52 @@ const appsList = {
|
|
18028
18432
|
var appsList$1 = /*#__PURE__*/Object.freeze({
|
18029
18433
|
__proto__: null,
|
18030
18434
|
default: appsList,
|
18031
|
-
vars: vars$
|
18435
|
+
vars: vars$6
|
18032
18436
|
});
|
18033
18437
|
|
18034
|
-
const vars$
|
18438
|
+
const vars$5 = ScopesListClass.cssVarList;
|
18035
18439
|
|
18036
18440
|
const scopesList = {
|
18037
|
-
[vars$
|
18038
|
-
[vars$
|
18039
|
-
[vars$
|
18441
|
+
[vars$5.requiredInputBorderColor]: theme$1._disabled[vars$R.borderColor],
|
18442
|
+
[vars$5.requiredInputValueTextColor]: theme$1._disabled[vars$R.valueTextColor],
|
18443
|
+
[vars$5.hostWidth]: '280px',
|
18040
18444
|
_fullWidth: {
|
18041
|
-
[vars$
|
18445
|
+
[vars$5.hostWidth]: '100%',
|
18042
18446
|
},
|
18043
18447
|
};
|
18044
18448
|
|
18045
18449
|
var scopesList$1 = /*#__PURE__*/Object.freeze({
|
18046
18450
|
__proto__: null,
|
18047
18451
|
default: scopesList,
|
18048
|
-
vars: vars$
|
18452
|
+
vars: vars$5
|
18049
18453
|
});
|
18050
18454
|
|
18051
18455
|
const globalRefs = getThemeRefs(globals);
|
18052
|
-
const vars$
|
18456
|
+
const vars$4 = ThirdPartyAppLogoClass.cssVarList;
|
18053
18457
|
|
18054
18458
|
const thirdPartyAppLogo = {
|
18055
|
-
[vars$
|
18056
|
-
[vars$
|
18057
|
-
[vars$
|
18459
|
+
[vars$4.gap]: globalRefs.spacing.lg,
|
18460
|
+
[vars$4.arrowsColor]: globalRefs.colors.surface.dark,
|
18461
|
+
[vars$4.thirdPartyAppLogoFallback]:
|
18058
18462
|
'url(https://imgs.descope.com/components/third-party-app-logo-placeholder.svg)',
|
18059
|
-
[vars$
|
18463
|
+
[vars$4.companyLogoFallback]:
|
18060
18464
|
'url(https://imgs.descope.com/components/project-logo-placeholder.svg)',
|
18061
18465
|
size: {
|
18062
18466
|
xs: {
|
18063
|
-
[vars$
|
18064
|
-
[vars$
|
18467
|
+
[vars$4.logoMaxHeight]: '30px',
|
18468
|
+
[vars$4.logoMaxWidth]: '120px',
|
18065
18469
|
},
|
18066
18470
|
sm: {
|
18067
|
-
[vars$
|
18068
|
-
[vars$
|
18471
|
+
[vars$4.logoMaxHeight]: '40px',
|
18472
|
+
[vars$4.logoMaxWidth]: '160px',
|
18069
18473
|
},
|
18070
18474
|
md: {
|
18071
|
-
[vars$
|
18072
|
-
[vars$
|
18475
|
+
[vars$4.logoMaxHeight]: '48px',
|
18476
|
+
[vars$4.logoMaxWidth]: '200px',
|
18073
18477
|
},
|
18074
18478
|
lg: {
|
18075
|
-
[vars$
|
18076
|
-
[vars$
|
18479
|
+
[vars$4.logoMaxHeight]: '60px',
|
18480
|
+
[vars$4.logoMaxWidth]: '240px',
|
18077
18481
|
},
|
18078
18482
|
},
|
18079
18483
|
};
|
@@ -18081,39 +18485,55 @@ const thirdPartyAppLogo = {
|
|
18081
18485
|
var thirdPartyAppLogo$1 = /*#__PURE__*/Object.freeze({
|
18082
18486
|
__proto__: null,
|
18083
18487
|
default: thirdPartyAppLogo,
|
18084
|
-
vars: vars$
|
18488
|
+
vars: vars$4
|
18085
18489
|
});
|
18086
18490
|
|
18087
|
-
const vars$
|
18491
|
+
const vars$3 = SecurityQuestionsSetupClass.cssVarList;
|
18088
18492
|
|
18089
18493
|
const securityQuestionsSetup = {
|
18090
|
-
[vars$
|
18494
|
+
[vars$3.hostWidth]: 'fit-content',
|
18091
18495
|
_fullWidth: {
|
18092
|
-
[vars$
|
18496
|
+
[vars$3.hostWidth]: '100%',
|
18093
18497
|
},
|
18094
18498
|
};
|
18095
18499
|
|
18096
18500
|
var securityQuestionsSetup$1 = /*#__PURE__*/Object.freeze({
|
18097
18501
|
__proto__: null,
|
18098
18502
|
default: securityQuestionsSetup,
|
18099
|
-
vars: vars$
|
18503
|
+
vars: vars$3
|
18100
18504
|
});
|
18101
18505
|
|
18102
|
-
const vars$
|
18506
|
+
const vars$2 = SecurityQuestionsVerifyClass.cssVarList;
|
18103
18507
|
|
18104
18508
|
const securityQuestionsVerify = {
|
18105
|
-
[vars$
|
18106
|
-
[vars$
|
18509
|
+
[vars$2.hostWidth]: 'min-content',
|
18510
|
+
[vars$2.questionCursor]: 'pointer',
|
18107
18511
|
_fullWidth: {
|
18108
|
-
[vars$
|
18512
|
+
[vars$2.hostWidth]: '100%',
|
18109
18513
|
},
|
18110
|
-
[vars$
|
18111
|
-
[vars$
|
18514
|
+
[vars$2.questionFontSize]: refs.fontSize,
|
18515
|
+
[vars$2.questionFontFamily]: refs.fontFamily,
|
18112
18516
|
};
|
18113
18517
|
|
18114
18518
|
var securityQuestionsVerify$1 = /*#__PURE__*/Object.freeze({
|
18115
18519
|
__proto__: null,
|
18116
18520
|
default: securityQuestionsVerify,
|
18521
|
+
vars: vars$2
|
18522
|
+
});
|
18523
|
+
|
18524
|
+
const vars$1 = HybridFieldClass.cssVarList;
|
18525
|
+
|
18526
|
+
const hybridField = {
|
18527
|
+
[vars$1.hostDirection]: refs.direction,
|
18528
|
+
|
18529
|
+
_fullWidth: {
|
18530
|
+
[vars$1.hostWidth]: '100%',
|
18531
|
+
},
|
18532
|
+
};
|
18533
|
+
|
18534
|
+
var hybridField$1 = /*#__PURE__*/Object.freeze({
|
18535
|
+
__proto__: null,
|
18536
|
+
default: hybridField,
|
18117
18537
|
vars: vars$1
|
18118
18538
|
});
|
18119
18539
|
|
@@ -18171,6 +18591,7 @@ const components = {
|
|
18171
18591
|
thirdPartyAppLogo: thirdPartyAppLogo$1,
|
18172
18592
|
securityQuestionsSetup: securityQuestionsSetup$1,
|
18173
18593
|
securityQuestionsVerify: securityQuestionsVerify$1,
|
18594
|
+
hybridField: hybridField$1,
|
18174
18595
|
};
|
18175
18596
|
|
18176
18597
|
const theme = Object.keys(components).reduce(
|
@@ -18183,7 +18604,7 @@ const vars = Object.keys(components).reduce(
|
|
18183
18604
|
);
|
18184
18605
|
|
18185
18606
|
const defaultTheme = { globals, components: theme };
|
18186
|
-
const themeVars = { globals: vars$
|
18607
|
+
const themeVars = { globals: vars$T, components: vars };
|
18187
18608
|
|
18188
18609
|
const colors = {
|
18189
18610
|
surface: {
|
@@ -18232,5 +18653,5 @@ const darkTheme = merge({}, defaultTheme, {
|
|
18232
18653
|
},
|
18233
18654
|
});
|
18234
18655
|
|
18235
|
-
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 };
|
18656
|
+
export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, HybridFieldClass, 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 };
|
18236
18657
|
//# sourceMappingURL=index.esm.js.map
|