@descope/web-components-ui 1.0.365 → 1.0.366
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.cjs.js +1799 -1282
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1849 -1335
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/4978.js +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/descope-apps-list-index-js.js +1 -0
- package/dist/umd/descope-avatar-index-js.js +1 -1
- package/dist/umd/descope-list-index-js.js +1 -0
- package/dist/umd/index.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-apps-list/AppsListClass.js +98 -0
- package/src/components/descope-apps-list/index.js +8 -0
- package/src/components/descope-avatar/AvatarClass.js +5 -2
- package/src/components/descope-list/ListClass.js +140 -0
- package/src/components/descope-list/ListItemClass.js +56 -0
- package/src/components/descope-list/index.js +7 -0
- package/src/index.cjs.js +3 -0
- package/src/mixins/activableMixin.js +14 -0
- package/src/mixins/createDynamicDataMixin.js +84 -0
- package/src/mixins/createProxy.js +1 -1
- package/src/theme/components/appsList.js +36 -0
- package/src/theme/components/index.js +6 -0
- package/src/theme/components/list/list.js +56 -0
- package/src/theme/components/list/listItem.js +41 -0
package/dist/index.esm.js
CHANGED
@@ -734,7 +734,7 @@ const createProxy = ({
|
|
734
734
|
.map(
|
735
735
|
(
|
736
736
|
slot // when slot is an empty string, we will create the default slot (without a name)
|
737
|
-
) => `<slot ${slot ? `name="${slot}" slot="${slot}"` : ''}
|
737
|
+
) => `<slot ${slot ? `name="${slot}" slot="${slot}"` : ''}></slot>`
|
738
738
|
)
|
739
739
|
.join('')}
|
740
740
|
</${wrappedEleName}>
|
@@ -1435,9 +1435,9 @@ const createIcon = async (src) => {
|
|
1435
1435
|
|
1436
1436
|
/* eslint-disable no-use-before-define */
|
1437
1437
|
|
1438
|
-
const componentName$
|
1438
|
+
const componentName$_ = getComponentName('icon');
|
1439
1439
|
|
1440
|
-
class RawIcon extends createBaseClass({ componentName: componentName$
|
1440
|
+
class RawIcon extends createBaseClass({ componentName: componentName$_, baseSelector: 'slot' }) {
|
1441
1441
|
static get observedAttributes() {
|
1442
1442
|
return ['src', 'fill-color'];
|
1443
1443
|
}
|
@@ -1535,7 +1535,7 @@ const clickableMixin = (superclass) =>
|
|
1535
1535
|
}
|
1536
1536
|
};
|
1537
1537
|
|
1538
|
-
const componentName$
|
1538
|
+
const componentName$Z = getComponentName('button');
|
1539
1539
|
|
1540
1540
|
const resetStyles = `
|
1541
1541
|
:host {
|
@@ -1651,7 +1651,7 @@ const ButtonClass = compose(
|
|
1651
1651
|
}
|
1652
1652
|
`,
|
1653
1653
|
excludeAttrsSync: ['tabindex'],
|
1654
|
-
componentName: componentName$
|
1654
|
+
componentName: componentName$Z,
|
1655
1655
|
})
|
1656
1656
|
);
|
1657
1657
|
|
@@ -1688,7 +1688,7 @@ loadingIndicatorStyles = `
|
|
1688
1688
|
}
|
1689
1689
|
`;
|
1690
1690
|
|
1691
|
-
customElements.define(componentName$
|
1691
|
+
customElements.define(componentName$Z, ButtonClass);
|
1692
1692
|
|
1693
1693
|
const createBaseInputClass = (...args) =>
|
1694
1694
|
compose(
|
@@ -1698,11 +1698,11 @@ const createBaseInputClass = (...args) =>
|
|
1698
1698
|
inputEventsDispatchingMixin
|
1699
1699
|
)(createBaseClass(...args));
|
1700
1700
|
|
1701
|
-
const componentName$
|
1701
|
+
const componentName$Y = getComponentName('boolean-field-internal');
|
1702
1702
|
|
1703
1703
|
const forwardAttributes$1 = ['disabled', 'label', 'invalid', 'readonly'];
|
1704
1704
|
|
1705
|
-
const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$
|
1705
|
+
const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$Y, baseSelector: 'div' });
|
1706
1706
|
|
1707
1707
|
class BooleanInputInternal extends BaseInputClass$8 {
|
1708
1708
|
static get observedAttributes() {
|
@@ -1778,14 +1778,14 @@ const booleanFieldMixin = (superclass) =>
|
|
1778
1778
|
|
1779
1779
|
const template = document.createElement('template');
|
1780
1780
|
template.innerHTML = `
|
1781
|
-
<${componentName$
|
1781
|
+
<${componentName$Y}
|
1782
1782
|
tabindex="-1"
|
1783
1783
|
slot="input"
|
1784
|
-
></${componentName$
|
1784
|
+
></${componentName$Y}>
|
1785
1785
|
`;
|
1786
1786
|
|
1787
1787
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
1788
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
1788
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$Y);
|
1789
1789
|
this.checkbox = this.inputElement.querySelector('vaadin-checkbox');
|
1790
1790
|
|
1791
1791
|
forwardAttrs(this, this.inputElement, {
|
@@ -2000,7 +2000,7 @@ descope-boolean-field-internal {
|
|
2000
2000
|
}
|
2001
2001
|
`;
|
2002
2002
|
|
2003
|
-
const componentName$
|
2003
|
+
const componentName$X = getComponentName('checkbox');
|
2004
2004
|
|
2005
2005
|
const {
|
2006
2006
|
host: host$m,
|
@@ -2106,15 +2106,15 @@ const CheckboxClass = compose(
|
|
2106
2106
|
}
|
2107
2107
|
`,
|
2108
2108
|
excludeAttrsSync: ['label', 'tabindex'],
|
2109
|
-
componentName: componentName$
|
2109
|
+
componentName: componentName$X,
|
2110
2110
|
})
|
2111
2111
|
);
|
2112
2112
|
|
2113
|
-
customElements.define(componentName$
|
2113
|
+
customElements.define(componentName$Y, BooleanInputInternal);
|
2114
2114
|
|
2115
|
-
customElements.define(componentName$
|
2115
|
+
customElements.define(componentName$X, CheckboxClass);
|
2116
2116
|
|
2117
|
-
const componentName$
|
2117
|
+
const componentName$W = getComponentName('switch-toggle');
|
2118
2118
|
|
2119
2119
|
const {
|
2120
2120
|
host: host$l,
|
@@ -2246,17 +2246,17 @@ const SwitchToggleClass = compose(
|
|
2246
2246
|
}
|
2247
2247
|
`,
|
2248
2248
|
excludeAttrsSync: ['label', 'tabindex'],
|
2249
|
-
componentName: componentName$
|
2249
|
+
componentName: componentName$W,
|
2250
2250
|
})
|
2251
2251
|
);
|
2252
2252
|
|
2253
|
-
customElements.define(componentName$
|
2253
|
+
customElements.define(componentName$W, SwitchToggleClass);
|
2254
2254
|
|
2255
|
-
const componentName$
|
2255
|
+
const componentName$V = getComponentName('loader-linear');
|
2256
2256
|
|
2257
|
-
class RawLoaderLinear extends createBaseClass({ componentName: componentName$
|
2257
|
+
class RawLoaderLinear extends createBaseClass({ componentName: componentName$V, baseSelector: ':host > div' }) {
|
2258
2258
|
static get componentName() {
|
2259
|
-
return componentName$
|
2259
|
+
return componentName$V;
|
2260
2260
|
}
|
2261
2261
|
|
2262
2262
|
constructor() {
|
@@ -2317,11 +2317,11 @@ const LoaderLinearClass = compose(
|
|
2317
2317
|
componentNameValidationMixin
|
2318
2318
|
)(RawLoaderLinear);
|
2319
2319
|
|
2320
|
-
customElements.define(componentName$
|
2320
|
+
customElements.define(componentName$V, LoaderLinearClass);
|
2321
2321
|
|
2322
|
-
const componentName$
|
2322
|
+
const componentName$U = getComponentName('loader-radial');
|
2323
2323
|
|
2324
|
-
class RawLoaderRadial extends createBaseClass({ componentName: componentName$
|
2324
|
+
class RawLoaderRadial extends createBaseClass({ componentName: componentName$U, baseSelector: ':host > div' }) {
|
2325
2325
|
constructor() {
|
2326
2326
|
super();
|
2327
2327
|
|
@@ -2365,11 +2365,11 @@ const LoaderRadialClass = compose(
|
|
2365
2365
|
componentNameValidationMixin
|
2366
2366
|
)(RawLoaderRadial);
|
2367
2367
|
|
2368
|
-
customElements.define(componentName$
|
2368
|
+
customElements.define(componentName$U, LoaderRadialClass);
|
2369
2369
|
|
2370
|
-
const componentName$
|
2370
|
+
const componentName$T = getComponentName('container');
|
2371
2371
|
|
2372
|
-
class RawContainer extends createBaseClass({ componentName: componentName$
|
2372
|
+
class RawContainer extends createBaseClass({ componentName: componentName$T, baseSelector: 'slot' }) {
|
2373
2373
|
constructor() {
|
2374
2374
|
super();
|
2375
2375
|
|
@@ -2422,11 +2422,11 @@ const ContainerClass = compose(
|
|
2422
2422
|
componentNameValidationMixin
|
2423
2423
|
)(RawContainer);
|
2424
2424
|
|
2425
|
-
customElements.define(componentName$
|
2425
|
+
customElements.define(componentName$T, ContainerClass);
|
2426
2426
|
|
2427
|
-
const componentName$
|
2427
|
+
const componentName$S = getComponentName('text');
|
2428
2428
|
|
2429
|
-
class RawText extends createBaseClass({ componentName: componentName$
|
2429
|
+
class RawText extends createBaseClass({ componentName: componentName$S, baseSelector: ':host > slot' }) {
|
2430
2430
|
constructor() {
|
2431
2431
|
super();
|
2432
2432
|
|
@@ -2483,8 +2483,8 @@ const TextClass = compose(
|
|
2483
2483
|
componentNameValidationMixin
|
2484
2484
|
)(RawText);
|
2485
2485
|
|
2486
|
-
const componentName$
|
2487
|
-
class RawDivider extends createBaseClass({ componentName: componentName$
|
2486
|
+
const componentName$R = getComponentName('divider');
|
2487
|
+
class RawDivider extends createBaseClass({ componentName: componentName$R, baseSelector: ':host > div' }) {
|
2488
2488
|
constructor() {
|
2489
2489
|
super();
|
2490
2490
|
|
@@ -2583,9 +2583,9 @@ const DividerClass = compose(
|
|
2583
2583
|
componentNameValidationMixin
|
2584
2584
|
)(RawDivider);
|
2585
2585
|
|
2586
|
-
customElements.define(componentName$
|
2586
|
+
customElements.define(componentName$S, TextClass);
|
2587
2587
|
|
2588
|
-
customElements.define(componentName$
|
2588
|
+
customElements.define(componentName$R, DividerClass);
|
2589
2589
|
|
2590
2590
|
const {
|
2591
2591
|
host: host$i,
|
@@ -2699,12 +2699,12 @@ var textFieldMappings = {
|
|
2699
2699
|
inputIconColor: { ...inputIcon, property: 'color' },
|
2700
2700
|
};
|
2701
2701
|
|
2702
|
-
const componentName$
|
2702
|
+
const componentName$Q = getComponentName('email-field');
|
2703
2703
|
|
2704
2704
|
const defaultPattern = "^[\\w\\.\\%\\+\\-']+@[\\w\\.\\-]+\\.[A-Za-z]{2,}$";
|
2705
2705
|
const defaultAutocomplete = 'username';
|
2706
2706
|
|
2707
|
-
const customMixin$
|
2707
|
+
const customMixin$c = (superclass) =>
|
2708
2708
|
class EmailFieldMixinClass extends superclass {
|
2709
2709
|
init() {
|
2710
2710
|
super.init?.();
|
@@ -2725,7 +2725,7 @@ const EmailFieldClass = compose(
|
|
2725
2725
|
draggableMixin,
|
2726
2726
|
composedProxyInputMixin({ proxyProps: ['value', 'selectionStart'], useProxyTargets: true }),
|
2727
2727
|
componentNameValidationMixin,
|
2728
|
-
customMixin$
|
2728
|
+
customMixin$c
|
2729
2729
|
)(
|
2730
2730
|
createProxy({
|
2731
2731
|
slots: ['', 'suffix'],
|
@@ -2756,15 +2756,15 @@ const EmailFieldClass = compose(
|
|
2756
2756
|
}
|
2757
2757
|
`,
|
2758
2758
|
excludeAttrsSync: ['tabindex'],
|
2759
|
-
componentName: componentName$
|
2759
|
+
componentName: componentName$Q,
|
2760
2760
|
})
|
2761
2761
|
);
|
2762
2762
|
|
2763
|
-
customElements.define(componentName$
|
2763
|
+
customElements.define(componentName$Q, EmailFieldClass);
|
2764
2764
|
|
2765
|
-
const componentName$
|
2765
|
+
const componentName$P = getComponentName('link');
|
2766
2766
|
|
2767
|
-
class RawLink extends createBaseClass({ componentName: componentName$
|
2767
|
+
class RawLink extends createBaseClass({ componentName: componentName$P, baseSelector: ':host a' }) {
|
2768
2768
|
constructor() {
|
2769
2769
|
super();
|
2770
2770
|
|
@@ -2828,7 +2828,7 @@ const LinkClass = compose(
|
|
2828
2828
|
componentNameValidationMixin
|
2829
2829
|
)(RawLink);
|
2830
2830
|
|
2831
|
-
customElements.define(componentName$
|
2831
|
+
customElements.define(componentName$P, LinkClass);
|
2832
2832
|
|
2833
2833
|
const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) => {
|
2834
2834
|
let style;
|
@@ -2880,37 +2880,37 @@ const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) =>
|
|
2880
2880
|
return CssVarImageClass;
|
2881
2881
|
};
|
2882
2882
|
|
2883
|
-
const componentName$
|
2883
|
+
const componentName$O = getComponentName('logo');
|
2884
2884
|
|
2885
2885
|
const LogoClass = createCssVarImageClass({
|
2886
|
-
componentName: componentName$
|
2886
|
+
componentName: componentName$O,
|
2887
2887
|
varName: 'url',
|
2888
2888
|
fallbackVarName: 'fallbackUrl',
|
2889
2889
|
});
|
2890
2890
|
|
2891
|
-
customElements.define(componentName$
|
2891
|
+
customElements.define(componentName$O, LogoClass);
|
2892
2892
|
|
2893
|
-
const componentName$
|
2893
|
+
const componentName$N = getComponentName('totp-image');
|
2894
2894
|
|
2895
2895
|
const TotpImageClass = createCssVarImageClass({
|
2896
|
-
componentName: componentName$
|
2896
|
+
componentName: componentName$N,
|
2897
2897
|
varName: 'url',
|
2898
2898
|
fallbackVarName: 'fallbackUrl',
|
2899
2899
|
});
|
2900
2900
|
|
2901
|
-
customElements.define(componentName$
|
2901
|
+
customElements.define(componentName$N, TotpImageClass);
|
2902
2902
|
|
2903
|
-
const componentName$
|
2903
|
+
const componentName$M = getComponentName('notp-image');
|
2904
2904
|
|
2905
2905
|
const NotpImageClass = createCssVarImageClass({
|
2906
|
-
componentName: componentName$
|
2906
|
+
componentName: componentName$M,
|
2907
2907
|
varName: 'url',
|
2908
2908
|
fallbackVarName: 'fallbackUrl',
|
2909
2909
|
});
|
2910
2910
|
|
2911
|
-
customElements.define(componentName$
|
2911
|
+
customElements.define(componentName$M, NotpImageClass);
|
2912
2912
|
|
2913
|
-
const componentName$
|
2913
|
+
const componentName$L = getComponentName('number-field');
|
2914
2914
|
|
2915
2915
|
const NumberFieldClass = compose(
|
2916
2916
|
createStyleMixin({
|
@@ -2944,11 +2944,11 @@ const NumberFieldClass = compose(
|
|
2944
2944
|
}
|
2945
2945
|
`,
|
2946
2946
|
excludeAttrsSync: ['tabindex'],
|
2947
|
-
componentName: componentName$
|
2947
|
+
componentName: componentName$L,
|
2948
2948
|
})
|
2949
2949
|
);
|
2950
2950
|
|
2951
|
-
customElements.define(componentName$
|
2951
|
+
customElements.define(componentName$L, NumberFieldClass);
|
2952
2952
|
|
2953
2953
|
const INPUT_MASK_TEXT_PROP = '--descope-input-mask-content';
|
2954
2954
|
const INPUT_MASK_DISPLAY_PROP = '--descope-input-mask-display';
|
@@ -2994,13 +2994,13 @@ const toggleMaskVisibility = (input, value) => {
|
|
2994
2994
|
|
2995
2995
|
/* eslint-disable no-param-reassign */
|
2996
2996
|
|
2997
|
-
const componentName$
|
2997
|
+
const componentName$K = getComponentName('passcode-internal');
|
2998
2998
|
|
2999
2999
|
const observedAttributes$5 = ['digits', 'loading'];
|
3000
3000
|
|
3001
3001
|
const forwardAttributes = ['disabled', 'bordered', 'size', 'invalid', 'readonly'];
|
3002
3002
|
|
3003
|
-
const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$
|
3003
|
+
const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$K, baseSelector: 'div' });
|
3004
3004
|
|
3005
3005
|
class PasscodeInternal extends BaseInputClass$7 {
|
3006
3006
|
static get observedAttributes() {
|
@@ -3218,11 +3218,11 @@ class PasscodeInternal extends BaseInputClass$7 {
|
|
3218
3218
|
}
|
3219
3219
|
}
|
3220
3220
|
|
3221
|
-
const componentName$
|
3221
|
+
const componentName$J = getComponentName('text-field');
|
3222
3222
|
|
3223
3223
|
const observedAttrs = ['type', 'label-type', 'copy-to-clipboard'];
|
3224
3224
|
|
3225
|
-
const customMixin$
|
3225
|
+
const customMixin$b = (superclass) =>
|
3226
3226
|
class TextFieldClass extends superclass {
|
3227
3227
|
static get observedAttributes() {
|
3228
3228
|
return observedAttrs.concat(superclass.observedAttributes || []);
|
@@ -3306,7 +3306,7 @@ const TextFieldClass = compose(
|
|
3306
3306
|
draggableMixin,
|
3307
3307
|
composedProxyInputMixin({ proxyProps: ['value', 'selectionStart'], useProxyTargets: true }),
|
3308
3308
|
componentNameValidationMixin,
|
3309
|
-
customMixin$
|
3309
|
+
customMixin$b
|
3310
3310
|
)(
|
3311
3311
|
createProxy({
|
3312
3312
|
slots: ['prefix', 'suffix'],
|
@@ -3340,15 +3340,15 @@ const TextFieldClass = compose(
|
|
3340
3340
|
}
|
3341
3341
|
`,
|
3342
3342
|
excludeAttrsSync: ['tabindex'],
|
3343
|
-
componentName: componentName$
|
3343
|
+
componentName: componentName$J,
|
3344
3344
|
})
|
3345
3345
|
);
|
3346
3346
|
|
3347
|
-
const componentName$
|
3347
|
+
const componentName$I = getComponentName('passcode');
|
3348
3348
|
|
3349
3349
|
const observedAttributes$4 = ['digits'];
|
3350
3350
|
|
3351
|
-
const customMixin$
|
3351
|
+
const customMixin$a = (superclass) =>
|
3352
3352
|
class PasscodeMixinClass extends superclass {
|
3353
3353
|
static get observedAttributes() {
|
3354
3354
|
return observedAttributes$4.concat(superclass.observedAttributes || []);
|
@@ -3363,17 +3363,17 @@ const customMixin$8 = (superclass) =>
|
|
3363
3363
|
const template = document.createElement('template');
|
3364
3364
|
|
3365
3365
|
template.innerHTML = `
|
3366
|
-
<${componentName$
|
3366
|
+
<${componentName$K}
|
3367
3367
|
bordered="true"
|
3368
3368
|
name="code"
|
3369
3369
|
tabindex="-1"
|
3370
3370
|
slot="input"
|
3371
|
-
><slot></slot></${componentName$
|
3371
|
+
><slot></slot></${componentName$K}>
|
3372
3372
|
`;
|
3373
3373
|
|
3374
3374
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
3375
3375
|
|
3376
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
3376
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$K);
|
3377
3377
|
|
3378
3378
|
forwardAttrs(this, this.inputElement, { includeAttrs: ['digits', 'size', 'loading'] });
|
3379
3379
|
}
|
@@ -3444,7 +3444,7 @@ const PasscodeClass = compose(
|
|
3444
3444
|
draggableMixin,
|
3445
3445
|
composedProxyInputMixin({ proxyProps: ['value', 'selectionStart'] }),
|
3446
3446
|
componentNameValidationMixin,
|
3447
|
-
customMixin$
|
3447
|
+
customMixin$a
|
3448
3448
|
)(
|
3449
3449
|
createProxy({
|
3450
3450
|
slots: [],
|
@@ -3525,15 +3525,15 @@ const PasscodeClass = compose(
|
|
3525
3525
|
${resetInputCursor('vaadin-text-field')}
|
3526
3526
|
`,
|
3527
3527
|
excludeAttrsSync: ['tabindex'],
|
3528
|
-
componentName: componentName$
|
3528
|
+
componentName: componentName$I,
|
3529
3529
|
})
|
3530
3530
|
);
|
3531
3531
|
|
3532
|
-
customElements.define(componentName$
|
3532
|
+
customElements.define(componentName$J, TextFieldClass);
|
3533
3533
|
|
3534
|
-
customElements.define(componentName$
|
3534
|
+
customElements.define(componentName$K, PasscodeInternal);
|
3535
3535
|
|
3536
|
-
customElements.define(componentName$
|
3536
|
+
customElements.define(componentName$I, PasscodeClass);
|
3537
3537
|
|
3538
3538
|
const passwordDraggableMixin = (superclass) =>
|
3539
3539
|
class PasswordDraggableMixinClass extends superclass {
|
@@ -3574,9 +3574,9 @@ const passwordDraggableMixin = (superclass) =>
|
|
3574
3574
|
}
|
3575
3575
|
};
|
3576
3576
|
|
3577
|
-
const componentName$
|
3577
|
+
const componentName$H = getComponentName('password');
|
3578
3578
|
|
3579
|
-
const customMixin$
|
3579
|
+
const customMixin$9 = (superclass) =>
|
3580
3580
|
class PasswordFieldMixinClass extends superclass {
|
3581
3581
|
static get observedAttributes() {
|
3582
3582
|
return ['manual-visibility-toggle'];
|
@@ -3729,7 +3729,7 @@ const PasswordClass = compose(
|
|
3729
3729
|
composedProxyInputMixin({ proxyProps: ['value', 'selectionStart'] }),
|
3730
3730
|
componentNameValidationMixin,
|
3731
3731
|
passwordDraggableMixin,
|
3732
|
-
customMixin$
|
3732
|
+
customMixin$9
|
3733
3733
|
)(
|
3734
3734
|
createProxy({
|
3735
3735
|
slots: ['', 'suffix'],
|
@@ -3792,11 +3792,11 @@ const PasswordClass = compose(
|
|
3792
3792
|
}
|
3793
3793
|
`,
|
3794
3794
|
excludeAttrsSync: ['tabindex'],
|
3795
|
-
componentName: componentName$
|
3795
|
+
componentName: componentName$H,
|
3796
3796
|
})
|
3797
3797
|
);
|
3798
3798
|
|
3799
|
-
customElements.define(componentName$
|
3799
|
+
customElements.define(componentName$H, PasswordClass);
|
3800
3800
|
|
3801
3801
|
const disableRules = [
|
3802
3802
|
'blockquote',
|
@@ -3821,9 +3821,9 @@ const decodeHTML = (html) => {
|
|
3821
3821
|
|
3822
3822
|
/* eslint-disable no-param-reassign */
|
3823
3823
|
|
3824
|
-
const componentName$
|
3824
|
+
const componentName$G = getComponentName('enriched-text');
|
3825
3825
|
|
3826
|
-
class EnrichedText extends createBaseClass({ componentName: componentName$
|
3826
|
+
class EnrichedText extends createBaseClass({ componentName: componentName$G, baseSelector: ':host > div' }) {
|
3827
3827
|
#origLinkRenderer;
|
3828
3828
|
|
3829
3829
|
#origEmRenderer;
|
@@ -4013,9 +4013,9 @@ const EnrichedTextClass = compose(
|
|
4013
4013
|
componentNameValidationMixin
|
4014
4014
|
)(EnrichedText);
|
4015
4015
|
|
4016
|
-
customElements.define(componentName$
|
4016
|
+
customElements.define(componentName$G, EnrichedTextClass);
|
4017
4017
|
|
4018
|
-
const componentName$
|
4018
|
+
const componentName$F = getComponentName('text-area');
|
4019
4019
|
|
4020
4020
|
const {
|
4021
4021
|
host: host$e,
|
@@ -4091,17 +4091,17 @@ const TextAreaClass = compose(
|
|
4091
4091
|
${resetInputCursor('vaadin-text-area')}
|
4092
4092
|
`,
|
4093
4093
|
excludeAttrsSync: ['tabindex'],
|
4094
|
-
componentName: componentName$
|
4094
|
+
componentName: componentName$F,
|
4095
4095
|
})
|
4096
4096
|
);
|
4097
4097
|
|
4098
|
-
customElements.define(componentName$
|
4098
|
+
customElements.define(componentName$F, TextAreaClass);
|
4099
4099
|
|
4100
4100
|
const observedAttributes$3 = ['src', 'alt'];
|
4101
4101
|
|
4102
|
-
const componentName$
|
4102
|
+
const componentName$E = getComponentName('image');
|
4103
4103
|
|
4104
|
-
const BaseClass$1 = createBaseClass({ componentName: componentName$
|
4104
|
+
const BaseClass$1 = createBaseClass({ componentName: componentName$E, baseSelector: ':host > img' });
|
4105
4105
|
class RawImage extends BaseClass$1 {
|
4106
4106
|
static get observedAttributes() {
|
4107
4107
|
return observedAttributes$3.concat(BaseClass$1.observedAttributes || []);
|
@@ -4141,9 +4141,9 @@ const ImageClass = compose(
|
|
4141
4141
|
draggableMixin
|
4142
4142
|
)(RawImage);
|
4143
4143
|
|
4144
|
-
customElements.define(componentName$
|
4144
|
+
customElements.define(componentName$E, ImageClass);
|
4145
4145
|
|
4146
|
-
const componentName$
|
4146
|
+
const componentName$D = getComponentName('combo-box');
|
4147
4147
|
|
4148
4148
|
const ComboBoxMixin = (superclass) =>
|
4149
4149
|
class ComboBoxMixinClass extends superclass {
|
@@ -4582,12 +4582,12 @@ const ComboBoxClass = compose(
|
|
4582
4582
|
// and reset items to an empty array, and opening the list box with no items
|
4583
4583
|
// to display.
|
4584
4584
|
excludeAttrsSync: ['tabindex', 'size', 'data'],
|
4585
|
-
componentName: componentName$
|
4585
|
+
componentName: componentName$D,
|
4586
4586
|
includeForwardProps: ['items', 'renderer', 'selectedItem'],
|
4587
4587
|
})
|
4588
4588
|
);
|
4589
4589
|
|
4590
|
-
customElements.define(componentName$
|
4590
|
+
customElements.define(componentName$D, ComboBoxClass);
|
4591
4591
|
|
4592
4592
|
var CountryCodes = [
|
4593
4593
|
// United States should be the first option
|
@@ -5830,7 +5830,7 @@ const comboBoxItem = ({ code, dialCode, name: country }) => `
|
|
5830
5830
|
</div>
|
5831
5831
|
`;
|
5832
5832
|
|
5833
|
-
const componentName$
|
5833
|
+
const componentName$C = getComponentName('phone-field-internal');
|
5834
5834
|
|
5835
5835
|
const commonAttrs$1 = ['disabled', 'size', 'bordered', 'invalid', 'readonly'];
|
5836
5836
|
const countryAttrs = ['country-input-placeholder', 'default-code', 'restrict-countries'];
|
@@ -5844,7 +5844,7 @@ const mapAttrs$1 = {
|
|
5844
5844
|
|
5845
5845
|
const inputRelatedAttrs$1 = [].concat(commonAttrs$1, countryAttrs, phoneAttrs, labelTypeAttrs);
|
5846
5846
|
|
5847
|
-
const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$
|
5847
|
+
const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$C, baseSelector: 'div' });
|
5848
5848
|
|
5849
5849
|
let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
5850
5850
|
static get observedAttributes() {
|
@@ -6061,14 +6061,14 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
|
6061
6061
|
}
|
6062
6062
|
};
|
6063
6063
|
|
6064
|
-
customElements.define(componentName$
|
6064
|
+
customElements.define(componentName$C, PhoneFieldInternal$1);
|
6065
6065
|
|
6066
6066
|
const textVars$1 = TextFieldClass.cssVarList;
|
6067
6067
|
const comboVars = ComboBoxClass.cssVarList;
|
6068
6068
|
|
6069
|
-
const componentName$
|
6069
|
+
const componentName$B = getComponentName('phone-field');
|
6070
6070
|
|
6071
|
-
const customMixin$
|
6071
|
+
const customMixin$8 = (superclass) =>
|
6072
6072
|
class PhoneFieldMixinClass extends superclass {
|
6073
6073
|
static get CountryCodes() {
|
6074
6074
|
return CountryCodes;
|
@@ -6080,15 +6080,15 @@ const customMixin$6 = (superclass) =>
|
|
6080
6080
|
const template = document.createElement('template');
|
6081
6081
|
|
6082
6082
|
template.innerHTML = `
|
6083
|
-
<${componentName$
|
6083
|
+
<${componentName$C}
|
6084
6084
|
tabindex="-1"
|
6085
6085
|
slot="input"
|
6086
|
-
></${componentName$
|
6086
|
+
></${componentName$C}>
|
6087
6087
|
`;
|
6088
6088
|
|
6089
6089
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
6090
6090
|
|
6091
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
6091
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$C);
|
6092
6092
|
|
6093
6093
|
forwardAttrs(this.shadowRoot.host, this.inputElement, {
|
6094
6094
|
includeAttrs: [
|
@@ -6226,7 +6226,7 @@ const PhoneFieldClass = compose(
|
|
6226
6226
|
}),
|
6227
6227
|
draggableMixin,
|
6228
6228
|
composedProxyInputMixin({ proxyProps: ['value', 'selectionStart'] }),
|
6229
|
-
customMixin$
|
6229
|
+
customMixin$8
|
6230
6230
|
)(
|
6231
6231
|
createProxy({
|
6232
6232
|
slots: [],
|
@@ -6310,17 +6310,17 @@ const PhoneFieldClass = compose(
|
|
6310
6310
|
${resetInputLabelPosition('vaadin-text-field')}
|
6311
6311
|
`,
|
6312
6312
|
excludeAttrsSync: ['tabindex'],
|
6313
|
-
componentName: componentName$
|
6313
|
+
componentName: componentName$B,
|
6314
6314
|
})
|
6315
6315
|
);
|
6316
6316
|
|
6317
|
-
customElements.define(componentName$
|
6317
|
+
customElements.define(componentName$B, PhoneFieldClass);
|
6318
6318
|
|
6319
6319
|
const getCountryByCodeId = (countryCode) => {
|
6320
6320
|
return CountryCodes.find((c) => c.code === countryCode)?.dialCode;
|
6321
6321
|
};
|
6322
6322
|
|
6323
|
-
const componentName$
|
6323
|
+
const componentName$A = getComponentName('phone-field-internal-input-box');
|
6324
6324
|
|
6325
6325
|
const observedAttributes$2 = [
|
6326
6326
|
'disabled',
|
@@ -6337,7 +6337,7 @@ const mapAttrs = {
|
|
6337
6337
|
'phone-input-placeholder': 'placeholder',
|
6338
6338
|
};
|
6339
6339
|
|
6340
|
-
const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$
|
6340
|
+
const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$A, baseSelector: 'div' });
|
6341
6341
|
|
6342
6342
|
class PhoneFieldInternal extends BaseInputClass$5 {
|
6343
6343
|
static get observedAttributes() {
|
@@ -6476,13 +6476,13 @@ class PhoneFieldInternal extends BaseInputClass$5 {
|
|
6476
6476
|
}
|
6477
6477
|
}
|
6478
6478
|
|
6479
|
-
customElements.define(componentName$
|
6479
|
+
customElements.define(componentName$A, PhoneFieldInternal);
|
6480
6480
|
|
6481
6481
|
const textVars = TextFieldClass.cssVarList;
|
6482
6482
|
|
6483
|
-
const componentName$
|
6483
|
+
const componentName$z = getComponentName('phone-input-box-field');
|
6484
6484
|
|
6485
|
-
const customMixin$
|
6485
|
+
const customMixin$7 = (superclass) =>
|
6486
6486
|
class PhoneInputBoxFieldMixinClass extends superclass {
|
6487
6487
|
static get CountryCodes() {
|
6488
6488
|
return CountryCodes;
|
@@ -6494,15 +6494,15 @@ const customMixin$5 = (superclass) =>
|
|
6494
6494
|
const template = document.createElement('template');
|
6495
6495
|
|
6496
6496
|
template.innerHTML = `
|
6497
|
-
<${componentName$
|
6497
|
+
<${componentName$A}
|
6498
6498
|
tabindex="-1"
|
6499
6499
|
slot="input"
|
6500
|
-
></${componentName$
|
6500
|
+
></${componentName$A}>
|
6501
6501
|
`;
|
6502
6502
|
|
6503
6503
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
6504
6504
|
|
6505
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
6505
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$A);
|
6506
6506
|
|
6507
6507
|
forwardAttrs(this.shadowRoot.host, this.inputElement, {
|
6508
6508
|
includeAttrs: [
|
@@ -6604,7 +6604,7 @@ const PhoneFieldInputBoxClass = compose(
|
|
6604
6604
|
}),
|
6605
6605
|
draggableMixin,
|
6606
6606
|
composedProxyInputMixin({ proxyProps: ['value', 'selectionStart'] }),
|
6607
|
-
customMixin$
|
6607
|
+
customMixin$7
|
6608
6608
|
)(
|
6609
6609
|
createProxy({
|
6610
6610
|
slots: [],
|
@@ -6679,26 +6679,26 @@ const PhoneFieldInputBoxClass = compose(
|
|
6679
6679
|
${inputFloatingLabelStyle()}
|
6680
6680
|
`,
|
6681
6681
|
excludeAttrsSync: ['tabindex'],
|
6682
|
-
componentName: componentName$
|
6682
|
+
componentName: componentName$z,
|
6683
6683
|
})
|
6684
6684
|
);
|
6685
6685
|
|
6686
|
-
customElements.define(componentName$
|
6686
|
+
customElements.define(componentName$z, PhoneFieldInputBoxClass);
|
6687
6687
|
|
6688
|
-
const componentName$
|
6688
|
+
const componentName$y = getComponentName('new-password-internal');
|
6689
6689
|
|
6690
6690
|
const interpolateString = (template, values) =>
|
6691
6691
|
template.replace(/{{(\w+)+}}/g, (match, key) => values?.[key] || match);
|
6692
6692
|
|
6693
6693
|
// eslint-disable-next-line max-classes-per-file
|
6694
6694
|
|
6695
|
-
const componentName$
|
6695
|
+
const componentName$x = getComponentName('policy-validation');
|
6696
6696
|
|
6697
6697
|
const overrideAttrs = ['data-password-policy-value-minlength'];
|
6698
6698
|
const dataAttrs = ['data', 'active-policies', 'overrides', ...overrideAttrs];
|
6699
6699
|
const policyAttrs = ['label', 'value', ...dataAttrs];
|
6700
6700
|
|
6701
|
-
class RawPolicyValidation extends createBaseClass({ componentName: componentName$
|
6701
|
+
class RawPolicyValidation extends createBaseClass({ componentName: componentName$x, baseSelector: ':host > div' }) {
|
6702
6702
|
#availablePolicies;
|
6703
6703
|
|
6704
6704
|
#activePolicies = [];
|
@@ -6906,11 +6906,11 @@ const PolicyValidationClass = compose(
|
|
6906
6906
|
componentNameValidationMixin
|
6907
6907
|
)(RawPolicyValidation);
|
6908
6908
|
|
6909
|
-
const componentName$
|
6909
|
+
const componentName$w = getComponentName('new-password');
|
6910
6910
|
|
6911
6911
|
const policyPreviewVars = PolicyValidationClass.cssVarList;
|
6912
6912
|
|
6913
|
-
const customMixin$
|
6913
|
+
const customMixin$6 = (superclass) =>
|
6914
6914
|
class NewPasswordMixinClass extends superclass {
|
6915
6915
|
init() {
|
6916
6916
|
super.init?.();
|
@@ -6918,17 +6918,17 @@ const customMixin$4 = (superclass) =>
|
|
6918
6918
|
const template = document.createElement('template');
|
6919
6919
|
|
6920
6920
|
template.innerHTML = `
|
6921
|
-
<${componentName$
|
6921
|
+
<${componentName$y}
|
6922
6922
|
name="new-password"
|
6923
6923
|
tabindex="-1"
|
6924
6924
|
slot="input"
|
6925
6925
|
>
|
6926
|
-
</${componentName$
|
6926
|
+
</${componentName$y}>
|
6927
6927
|
`;
|
6928
6928
|
|
6929
6929
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
6930
6930
|
|
6931
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
6931
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$y);
|
6932
6932
|
|
6933
6933
|
forwardAttrs(this, this.inputElement, {
|
6934
6934
|
includeAttrs: [
|
@@ -7013,7 +7013,7 @@ const NewPasswordClass = compose(
|
|
7013
7013
|
}),
|
7014
7014
|
draggableMixin,
|
7015
7015
|
composedProxyInputMixin({ proxyProps: ['value', 'selectionStart'] }),
|
7016
|
-
customMixin$
|
7016
|
+
customMixin$6
|
7017
7017
|
)(
|
7018
7018
|
createProxy({
|
7019
7019
|
slots: [],
|
@@ -7072,11 +7072,11 @@ const NewPasswordClass = compose(
|
|
7072
7072
|
}
|
7073
7073
|
`,
|
7074
7074
|
excludeAttrsSync: ['tabindex'],
|
7075
|
-
componentName: componentName$
|
7075
|
+
componentName: componentName$w,
|
7076
7076
|
})
|
7077
7077
|
);
|
7078
7078
|
|
7079
|
-
customElements.define(componentName$
|
7079
|
+
customElements.define(componentName$x, PolicyValidationClass);
|
7080
7080
|
|
7081
7081
|
const passwordAttrPrefixRegex = /^password-/;
|
7082
7082
|
const confirmAttrPrefixRegex = /^confirm-/;
|
@@ -7108,7 +7108,7 @@ const inputRelatedAttrs = [].concat(
|
|
7108
7108
|
policyPanelAttrs
|
7109
7109
|
);
|
7110
7110
|
|
7111
|
-
const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$
|
7111
|
+
const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$y, baseSelector: 'div' });
|
7112
7112
|
|
7113
7113
|
class NewPasswordInternal extends BaseInputClass$4 {
|
7114
7114
|
static get observedAttributes() {
|
@@ -7316,16 +7316,16 @@ class NewPasswordInternal extends BaseInputClass$4 {
|
|
7316
7316
|
}
|
7317
7317
|
}
|
7318
7318
|
|
7319
|
-
customElements.define(componentName$
|
7319
|
+
customElements.define(componentName$y, NewPasswordInternal);
|
7320
7320
|
|
7321
|
-
customElements.define(componentName$
|
7321
|
+
customElements.define(componentName$w, NewPasswordClass);
|
7322
7322
|
|
7323
|
-
const componentName$
|
7323
|
+
const componentName$v = getComponentName('recaptcha');
|
7324
7324
|
|
7325
7325
|
const observedAttributes$1 = ['enabled', 'site-key', 'action', 'enterprise'];
|
7326
7326
|
|
7327
7327
|
const BaseClass = createBaseClass({
|
7328
|
-
componentName: componentName$
|
7328
|
+
componentName: componentName$v,
|
7329
7329
|
baseSelector: ':host > div',
|
7330
7330
|
});
|
7331
7331
|
class RawRecaptcha extends BaseClass {
|
@@ -7512,7 +7512,7 @@ class RawRecaptcha extends BaseClass {
|
|
7512
7512
|
|
7513
7513
|
const RecaptchaClass = compose(draggableMixin)(RawRecaptcha);
|
7514
7514
|
|
7515
|
-
customElements.define(componentName$
|
7515
|
+
customElements.define(componentName$v, RecaptchaClass);
|
7516
7516
|
|
7517
7517
|
const getFileBase64 = (fileObj) => {
|
7518
7518
|
return new Promise((resolve) => {
|
@@ -7526,7 +7526,7 @@ const getFilename = (fileObj) => {
|
|
7526
7526
|
return fileObj.name.replace(/^.*\\/, '');
|
7527
7527
|
};
|
7528
7528
|
|
7529
|
-
const componentName$
|
7529
|
+
const componentName$u = getComponentName('upload-file');
|
7530
7530
|
|
7531
7531
|
const observedAttributes = [
|
7532
7532
|
'title',
|
@@ -7541,7 +7541,7 @@ const observedAttributes = [
|
|
7541
7541
|
'icon',
|
7542
7542
|
];
|
7543
7543
|
|
7544
|
-
const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$
|
7544
|
+
const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$u, baseSelector: ':host > div' });
|
7545
7545
|
|
7546
7546
|
class RawUploadFile extends BaseInputClass$3 {
|
7547
7547
|
static get observedAttributes() {
|
@@ -7756,7 +7756,7 @@ const UploadFileClass = compose(
|
|
7756
7756
|
componentNameValidationMixin
|
7757
7757
|
)(RawUploadFile);
|
7758
7758
|
|
7759
|
-
customElements.define(componentName$
|
7759
|
+
customElements.define(componentName$u, UploadFileClass);
|
7760
7760
|
|
7761
7761
|
const createBaseButtonSelectionGroupInternalClass = (componentName) => {
|
7762
7762
|
class BaseButtonSelectionGroupInternalClass extends createBaseInputClass({
|
@@ -7854,10 +7854,10 @@ const createBaseButtonSelectionGroupInternalClass = (componentName) => {
|
|
7854
7854
|
return BaseButtonSelectionGroupInternalClass;
|
7855
7855
|
};
|
7856
7856
|
|
7857
|
-
const componentName$
|
7857
|
+
const componentName$t = getComponentName('button-selection-group-internal');
|
7858
7858
|
|
7859
7859
|
class ButtonSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
7860
|
-
componentName$
|
7860
|
+
componentName$t
|
7861
7861
|
) {
|
7862
7862
|
getSelectedNode() {
|
7863
7863
|
return this.items.find((item) => item.hasAttribute('selected'));
|
@@ -8089,7 +8089,7 @@ const buttonSelectionGroupStyles = `
|
|
8089
8089
|
${resetInputCursor('vaadin-text-field')}
|
8090
8090
|
`;
|
8091
8091
|
|
8092
|
-
const componentName$
|
8092
|
+
const componentName$s = getComponentName('button-selection-group');
|
8093
8093
|
|
8094
8094
|
const buttonSelectionGroupMixin = (superclass) =>
|
8095
8095
|
class ButtonMultiSelectionGroupMixinClass extends superclass {
|
@@ -8098,19 +8098,19 @@ const buttonSelectionGroupMixin = (superclass) =>
|
|
8098
8098
|
const template = document.createElement('template');
|
8099
8099
|
|
8100
8100
|
template.innerHTML = `
|
8101
|
-
<${componentName$
|
8101
|
+
<${componentName$t}
|
8102
8102
|
name="button-selection-group"
|
8103
8103
|
slot="input"
|
8104
8104
|
tabindex="-1"
|
8105
8105
|
part="internal-component"
|
8106
8106
|
>
|
8107
8107
|
<slot></slot>
|
8108
|
-
</${componentName$
|
8108
|
+
</${componentName$t}>
|
8109
8109
|
`;
|
8110
8110
|
|
8111
8111
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
8112
8112
|
|
8113
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
8113
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$t);
|
8114
8114
|
|
8115
8115
|
forwardAttrs(this, this.inputElement, {
|
8116
8116
|
includeAttrs: ['size', 'default-value', 'allow-deselect'],
|
@@ -8135,16 +8135,16 @@ const ButtonSelectionGroupClass = compose(
|
|
8135
8135
|
wrappedEleName: 'vaadin-text-field',
|
8136
8136
|
style: () => buttonSelectionGroupStyles,
|
8137
8137
|
excludeAttrsSync: ['tabindex'],
|
8138
|
-
componentName: componentName$
|
8138
|
+
componentName: componentName$s,
|
8139
8139
|
})
|
8140
8140
|
);
|
8141
8141
|
|
8142
|
-
customElements.define(componentName$
|
8142
|
+
customElements.define(componentName$t, ButtonSelectionGroupInternalClass);
|
8143
8143
|
|
8144
|
-
const componentName$
|
8144
|
+
const componentName$r = getComponentName('button-selection-group-item');
|
8145
8145
|
|
8146
8146
|
class RawSelectItem extends createBaseClass({
|
8147
|
-
componentName: componentName$
|
8147
|
+
componentName: componentName$r,
|
8148
8148
|
baseSelector: ':host > descope-button',
|
8149
8149
|
}) {
|
8150
8150
|
get size() {
|
@@ -8251,14 +8251,14 @@ const ButtonSelectionGroupItemClass = compose(
|
|
8251
8251
|
componentNameValidationMixin
|
8252
8252
|
)(RawSelectItem);
|
8253
8253
|
|
8254
|
-
customElements.define(componentName$
|
8254
|
+
customElements.define(componentName$r, ButtonSelectionGroupItemClass);
|
8255
8255
|
|
8256
|
-
customElements.define(componentName$
|
8256
|
+
customElements.define(componentName$s, ButtonSelectionGroupClass);
|
8257
8257
|
|
8258
|
-
const componentName$
|
8258
|
+
const componentName$q = getComponentName('button-multi-selection-group-internal');
|
8259
8259
|
|
8260
8260
|
class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
8261
|
-
componentName$
|
8261
|
+
componentName$q
|
8262
8262
|
) {
|
8263
8263
|
#getSelectedNodes() {
|
8264
8264
|
return this.items.filter((item) => item.hasAttribute('selected'));
|
@@ -8361,7 +8361,7 @@ class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGr
|
|
8361
8361
|
}
|
8362
8362
|
}
|
8363
8363
|
|
8364
|
-
const componentName$
|
8364
|
+
const componentName$p = getComponentName('button-multi-selection-group');
|
8365
8365
|
|
8366
8366
|
const buttonMultiSelectionGroupMixin = (superclass) =>
|
8367
8367
|
class ButtonMultiSelectionGroupMixinClass extends superclass {
|
@@ -8370,19 +8370,19 @@ const buttonMultiSelectionGroupMixin = (superclass) =>
|
|
8370
8370
|
const template = document.createElement('template');
|
8371
8371
|
|
8372
8372
|
template.innerHTML = `
|
8373
|
-
<${componentName$
|
8373
|
+
<${componentName$q}
|
8374
8374
|
name="button-selection-group"
|
8375
8375
|
slot="input"
|
8376
8376
|
tabindex="-1"
|
8377
8377
|
part="internal-component"
|
8378
8378
|
>
|
8379
8379
|
<slot></slot>
|
8380
|
-
</${componentName$
|
8380
|
+
</${componentName$q}>
|
8381
8381
|
`;
|
8382
8382
|
|
8383
8383
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
8384
8384
|
|
8385
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
8385
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$q);
|
8386
8386
|
|
8387
8387
|
forwardAttrs(this, this.inputElement, {
|
8388
8388
|
includeAttrs: ['size', 'default-values', 'min-items-selection', 'max-items-selection'],
|
@@ -8407,13 +8407,13 @@ const ButtonMultiSelectionGroupClass = compose(
|
|
8407
8407
|
wrappedEleName: 'vaadin-text-field',
|
8408
8408
|
style: () => buttonSelectionGroupStyles,
|
8409
8409
|
excludeAttrsSync: ['tabindex'],
|
8410
|
-
componentName: componentName$
|
8410
|
+
componentName: componentName$p,
|
8411
8411
|
})
|
8412
8412
|
);
|
8413
8413
|
|
8414
|
-
customElements.define(componentName$
|
8414
|
+
customElements.define(componentName$q, ButtonMultiSelectionGroupInternalClass);
|
8415
8415
|
|
8416
|
-
customElements.define(componentName$
|
8416
|
+
customElements.define(componentName$p, ButtonMultiSelectionGroupClass);
|
8417
8417
|
|
8418
8418
|
/* eslint-disable no-param-reassign */
|
8419
8419
|
|
@@ -8441,9 +8441,9 @@ class GridTextColumnClass extends GridSortColumn {
|
|
8441
8441
|
}
|
8442
8442
|
}
|
8443
8443
|
|
8444
|
-
const componentName$
|
8444
|
+
const componentName$o = getComponentName('grid-text-column');
|
8445
8445
|
|
8446
|
-
customElements.define(componentName$
|
8446
|
+
customElements.define(componentName$o, GridTextColumnClass);
|
8447
8447
|
|
8448
8448
|
/* eslint-disable no-param-reassign */
|
8449
8449
|
|
@@ -8478,9 +8478,9 @@ class GridCustomColumnClass extends GridTextColumnClass {
|
|
8478
8478
|
|
8479
8479
|
/* eslint-disable no-param-reassign */
|
8480
8480
|
|
8481
|
-
const componentName$
|
8481
|
+
const componentName$n = getComponentName('grid-custom-column');
|
8482
8482
|
|
8483
|
-
customElements.define(componentName$
|
8483
|
+
customElements.define(componentName$n, GridCustomColumnClass);
|
8484
8484
|
|
8485
8485
|
const createCheckboxEle = () => {
|
8486
8486
|
const checkbox = document.createElement('descope-checkbox');
|
@@ -8539,9 +8539,9 @@ class GridSelectionColumnClass extends GridSelectionColumn {
|
|
8539
8539
|
}
|
8540
8540
|
}
|
8541
8541
|
|
8542
|
-
const componentName$
|
8542
|
+
const componentName$m = getComponentName('grid-selection-column');
|
8543
8543
|
|
8544
|
-
customElements.define(componentName$
|
8544
|
+
customElements.define(componentName$m, GridSelectionColumnClass);
|
8545
8545
|
|
8546
8546
|
/* eslint-disable no-param-reassign */
|
8547
8547
|
|
@@ -8580,9 +8580,9 @@ class GridItemDetailsColumnClass extends GridSortColumn {
|
|
8580
8580
|
}
|
8581
8581
|
}
|
8582
8582
|
|
8583
|
-
const componentName$
|
8583
|
+
const componentName$l = getComponentName('grid-item-details-column');
|
8584
8584
|
|
8585
|
-
customElements.define(componentName$
|
8585
|
+
customElements.define(componentName$l, GridItemDetailsColumnClass);
|
8586
8586
|
|
8587
8587
|
const decode = (input) => {
|
8588
8588
|
const txt = document.createElement('textarea');
|
@@ -8594,9 +8594,9 @@ const tpl = (input, inline) => {
|
|
8594
8594
|
return inline ? input : `<pre>${input}</pre>`;
|
8595
8595
|
};
|
8596
8596
|
|
8597
|
-
const componentName$
|
8597
|
+
const componentName$k = getComponentName('code-snippet');
|
8598
8598
|
|
8599
|
-
let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$
|
8599
|
+
let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$k, baseSelector: ':host > code' }) {
|
8600
8600
|
static get observedAttributes() {
|
8601
8601
|
return ['lang', 'inline'];
|
8602
8602
|
}
|
@@ -8826,7 +8826,7 @@ const CodeSnippetClass = compose(
|
|
8826
8826
|
componentNameValidationMixin
|
8827
8827
|
)(CodeSnippet$1);
|
8828
8828
|
|
8829
|
-
customElements.define(componentName$
|
8829
|
+
customElements.define(componentName$k, CodeSnippetClass);
|
8830
8830
|
|
8831
8831
|
const isValidDataType = (data) => {
|
8832
8832
|
const isValid = Array.isArray(data);
|
@@ -8901,7 +8901,7 @@ const defaultRowDetailsRenderer = (item, itemLabelsMapping) => {
|
|
8901
8901
|
`;
|
8902
8902
|
};
|
8903
8903
|
|
8904
|
-
const componentName$
|
8904
|
+
const componentName$j = getComponentName('grid');
|
8905
8905
|
|
8906
8906
|
const GridMixin = (superclass) =>
|
8907
8907
|
class GridMixinClass extends superclass {
|
@@ -9255,13 +9255,13 @@ const GridClass = compose(
|
|
9255
9255
|
/*!css*/
|
9256
9256
|
`,
|
9257
9257
|
excludeAttrsSync: ['columns', 'tabindex'],
|
9258
|
-
componentName: componentName$
|
9258
|
+
componentName: componentName$j,
|
9259
9259
|
})
|
9260
9260
|
);
|
9261
9261
|
|
9262
|
-
customElements.define(componentName$
|
9262
|
+
customElements.define(componentName$j, GridClass);
|
9263
9263
|
|
9264
|
-
const componentName$
|
9264
|
+
const componentName$i = getComponentName('multi-select-combo-box');
|
9265
9265
|
|
9266
9266
|
const multiSelectComboBoxMixin = (superclass) =>
|
9267
9267
|
class MultiSelectComboBoxMixinClass extends superclass {
|
@@ -9895,16 +9895,16 @@ const MultiSelectComboBoxClass = compose(
|
|
9895
9895
|
// Note: we exclude `placeholder` because the vaadin component observes it and
|
9896
9896
|
// tries to override it, causing us to lose the user set placeholder.
|
9897
9897
|
excludeAttrsSync: ['tabindex', 'size', 'data', 'placeholder'],
|
9898
|
-
componentName: componentName$
|
9898
|
+
componentName: componentName$i,
|
9899
9899
|
includeForwardProps: ['items', 'renderer', 'selectedItems'],
|
9900
9900
|
})
|
9901
9901
|
);
|
9902
9902
|
|
9903
|
-
customElements.define(componentName$
|
9903
|
+
customElements.define(componentName$i, MultiSelectComboBoxClass);
|
9904
9904
|
|
9905
|
-
const componentName$
|
9905
|
+
const componentName$h = getComponentName('badge');
|
9906
9906
|
|
9907
|
-
class RawBadge extends createBaseClass({ componentName: componentName$
|
9907
|
+
class RawBadge extends createBaseClass({ componentName: componentName$h, baseSelector: ':host > div' }) {
|
9908
9908
|
constructor() {
|
9909
9909
|
super();
|
9910
9910
|
|
@@ -9955,11 +9955,11 @@ const BadgeClass = compose(
|
|
9955
9955
|
componentNameValidationMixin
|
9956
9956
|
)(RawBadge);
|
9957
9957
|
|
9958
|
-
customElements.define(componentName$
|
9958
|
+
customElements.define(componentName$h, BadgeClass);
|
9959
9959
|
|
9960
|
-
const componentName$
|
9960
|
+
const componentName$g = getComponentName('modal');
|
9961
9961
|
|
9962
|
-
const customMixin$
|
9962
|
+
const customMixin$5 = (superclass) =>
|
9963
9963
|
class ModalMixinClass extends superclass {
|
9964
9964
|
get opened() {
|
9965
9965
|
return this.getAttribute('opened') === 'true';
|
@@ -10049,18 +10049,18 @@ const ModalClass = compose(
|
|
10049
10049
|
}),
|
10050
10050
|
draggableMixin,
|
10051
10051
|
componentNameValidationMixin,
|
10052
|
-
customMixin$
|
10052
|
+
customMixin$5
|
10053
10053
|
)(
|
10054
10054
|
createProxy({
|
10055
10055
|
slots: [''],
|
10056
10056
|
wrappedEleName: 'vaadin-dialog',
|
10057
10057
|
style: () => ``,
|
10058
10058
|
excludeAttrsSync: ['tabindex', 'opened'],
|
10059
|
-
componentName: componentName$
|
10059
|
+
componentName: componentName$g,
|
10060
10060
|
})
|
10061
10061
|
);
|
10062
10062
|
|
10063
|
-
customElements.define(componentName$
|
10063
|
+
customElements.define(componentName$g, ModalClass);
|
10064
10064
|
|
10065
10065
|
const vaadinContainerClass = window.customElements.get('vaadin-notification-container');
|
10066
10066
|
|
@@ -10071,7 +10071,7 @@ if (!vaadinContainerClass) {
|
|
10071
10071
|
class NotificationContainerClass extends vaadinContainerClass {}
|
10072
10072
|
customElements.define(getComponentName('notification-container'), NotificationContainerClass);
|
10073
10073
|
|
10074
|
-
const componentName$
|
10074
|
+
const componentName$f = getComponentName('notification-card');
|
10075
10075
|
|
10076
10076
|
const notificationCardMixin = (superclass) =>
|
10077
10077
|
class NotificationCardMixinClass extends superclass {
|
@@ -10179,13 +10179,13 @@ const NotificationCardClass = compose(
|
|
10179
10179
|
}
|
10180
10180
|
`,
|
10181
10181
|
excludeAttrsSync: ['tabindex'],
|
10182
|
-
componentName: componentName$
|
10182
|
+
componentName: componentName$f,
|
10183
10183
|
})
|
10184
10184
|
);
|
10185
10185
|
|
10186
|
-
customElements.define(componentName$
|
10186
|
+
customElements.define(componentName$f, NotificationCardClass);
|
10187
10187
|
|
10188
|
-
const componentName$
|
10188
|
+
const componentName$e = getComponentName('notification');
|
10189
10189
|
|
10190
10190
|
const NotificationMixin = (superclass) =>
|
10191
10191
|
class NotificationMixinClass extends superclass {
|
@@ -10280,14 +10280,14 @@ const NotificationClass = compose(
|
|
10280
10280
|
createProxy({
|
10281
10281
|
wrappedEleName: 'vaadin-notification',
|
10282
10282
|
excludeAttrsSync: ['tabindex'],
|
10283
|
-
componentName: componentName$
|
10283
|
+
componentName: componentName$e,
|
10284
10284
|
})
|
10285
10285
|
);
|
10286
10286
|
|
10287
|
-
customElements.define(componentName$
|
10287
|
+
customElements.define(componentName$e, NotificationClass);
|
10288
10288
|
|
10289
|
-
const componentName$
|
10290
|
-
class RawAvatar extends createBaseClass({ componentName: componentName$
|
10289
|
+
const componentName$d = getComponentName('avatar');
|
10290
|
+
class RawAvatar extends createBaseClass({ componentName: componentName$d, baseSelector: ':host > .wrapper' }) {
|
10291
10291
|
constructor() {
|
10292
10292
|
super();
|
10293
10293
|
|
@@ -10344,7 +10344,7 @@ class RawAvatar extends createBaseClass({ componentName: componentName$a, baseSe
|
|
10344
10344
|
this.avatarComponent = this.shadowRoot.querySelector('vaadin-avatar');
|
10345
10345
|
|
10346
10346
|
forwardAttrs(this, this.avatarComponent, {
|
10347
|
-
includeAttrs: ['display-name', 'img'],
|
10347
|
+
includeAttrs: ['display-name', 'img', 'abbr'],
|
10348
10348
|
mapAttrs: { 'display-name': 'name' },
|
10349
10349
|
});
|
10350
10350
|
|
@@ -10373,7 +10373,10 @@ const { host: host$4, editableBadge, avatar: avatar$2 } = {
|
|
10373
10373
|
const AvatarClass = compose(
|
10374
10374
|
createStyleMixin({
|
10375
10375
|
mappings: {
|
10376
|
-
hostWidth:
|
10376
|
+
hostWidth: [
|
10377
|
+
{ ...host$4, property: 'width' },
|
10378
|
+
{ ...host$4, property: 'min-width' },
|
10379
|
+
],
|
10377
10380
|
hostHeight: { ...host$4, property: 'height' },
|
10378
10381
|
cursor: [avatar$2, host$4],
|
10379
10382
|
hostDirection: { ...host$4, property: 'direction' },
|
@@ -10388,13 +10391,13 @@ const AvatarClass = compose(
|
|
10388
10391
|
componentNameValidationMixin
|
10389
10392
|
)(RawAvatar);
|
10390
10393
|
|
10391
|
-
customElements.define(componentName$
|
10394
|
+
customElements.define(componentName$d, AvatarClass);
|
10392
10395
|
|
10393
|
-
customElements.define(componentName$
|
10396
|
+
customElements.define(componentName$_, IconClass);
|
10394
10397
|
|
10395
|
-
const componentName$
|
10398
|
+
const componentName$c = getComponentName('mappings-field-internal');
|
10396
10399
|
|
10397
|
-
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$
|
10400
|
+
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$c, baseSelector: 'div' });
|
10398
10401
|
|
10399
10402
|
class MappingsFieldInternal extends BaseInputClass$2 {
|
10400
10403
|
#errorItem;
|
@@ -10629,9 +10632,9 @@ class MappingsFieldInternal extends BaseInputClass$2 {
|
|
10629
10632
|
}
|
10630
10633
|
}
|
10631
10634
|
|
10632
|
-
const componentName$
|
10635
|
+
const componentName$b = getComponentName('mappings-field');
|
10633
10636
|
|
10634
|
-
const customMixin$
|
10637
|
+
const customMixin$4 = (superclass) =>
|
10635
10638
|
class MappingsFieldMixinClass extends superclass {
|
10636
10639
|
get defaultValues() {
|
10637
10640
|
const defaultValuesAttr = this.getAttribute('default-values');
|
@@ -10658,14 +10661,14 @@ const customMixin$2 = (superclass) =>
|
|
10658
10661
|
const template = document.createElement('template');
|
10659
10662
|
|
10660
10663
|
template.innerHTML = `
|
10661
|
-
<${componentName$
|
10664
|
+
<${componentName$c}
|
10662
10665
|
tabindex="-1"
|
10663
|
-
></${componentName$
|
10666
|
+
></${componentName$c}>
|
10664
10667
|
`;
|
10665
10668
|
|
10666
10669
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
10667
10670
|
|
10668
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
10671
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$c);
|
10669
10672
|
|
10670
10673
|
forwardAttrs(this, this.inputElement, {
|
10671
10674
|
includeAttrs: [
|
@@ -10747,7 +10750,7 @@ const MappingsFieldClass = compose(
|
|
10747
10750
|
proxyParentValidation: true,
|
10748
10751
|
}),
|
10749
10752
|
componentNameValidationMixin,
|
10750
|
-
customMixin$
|
10753
|
+
customMixin$4
|
10751
10754
|
)(
|
10752
10755
|
createProxy({
|
10753
10756
|
slots: [],
|
@@ -10794,17 +10797,17 @@ const MappingsFieldClass = compose(
|
|
10794
10797
|
'options',
|
10795
10798
|
'error-message',
|
10796
10799
|
],
|
10797
|
-
componentName: componentName$
|
10800
|
+
componentName: componentName$b,
|
10798
10801
|
})
|
10799
10802
|
);
|
10800
10803
|
|
10801
|
-
customElements.define(componentName$
|
10804
|
+
customElements.define(componentName$c, MappingsFieldInternal);
|
10802
10805
|
|
10803
|
-
const componentName$
|
10806
|
+
const componentName$a = getComponentName('mapping-item');
|
10804
10807
|
|
10805
10808
|
const inputAttrs = ['size', 'bordered', 'readonly', 'full-width', 'disabled'];
|
10806
10809
|
|
10807
|
-
const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$
|
10810
|
+
const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$a, baseSelector: 'div' });
|
10808
10811
|
|
10809
10812
|
class MappingItem extends BaseInputClass$1 {
|
10810
10813
|
static get observedAttributes() {
|
@@ -10954,17 +10957,17 @@ class MappingItem extends BaseInputClass$1 {
|
|
10954
10957
|
}
|
10955
10958
|
}
|
10956
10959
|
|
10957
|
-
customElements.define(componentName$
|
10960
|
+
customElements.define(componentName$a, MappingItem);
|
10958
10961
|
|
10959
|
-
customElements.define(componentName$
|
10962
|
+
customElements.define(componentName$b, MappingsFieldClass);
|
10960
10963
|
|
10961
10964
|
var deleteIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTZDMSAxNy4xIDEuOSAxOCAzIDE4SDExQzEyLjEgMTggMTMgMTcuMSAxMyAxNlY0SDFWMTZaTTMgNkgxMVYxNkgzVjZaTTEwLjUgMUw5LjUgMEg0LjVMMy41IDFIMFYzSDE0VjFIMTAuNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
|
10962
10965
|
|
10963
10966
|
var editIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjAwMDIgMC45OTIxNDlDMTAuMDAwMiAxLjAxNjE1IDEwLjAwMDIgMS4wMTYxNSAxMC4wMDAyIDEuMDE2MTVMOC4yMjQxOSAzLjAwODE1SDIuOTkyMTlDMi40NjQxOSAzLjAwODE1IDIuMDA4MTkgMy40NDAxNSAyLjAwODE5IDMuOTkyMTVWMTIuMDA4MkMyLjAwODE5IDEyLjUzNjIgMi40NDAxOSAxMi45OTIyIDIuOTkyMTkgMTIuOTkyMkg1LjUzNjE5QzUuODQ4MTkgMTMuMDQwMiA2LjE2MDE5IDEzLjA0MDIgNi40NzIxOSAxMi45OTIySDExLjAwODJDMTEuNTM2MiAxMi45OTIyIDExLjk5MjIgMTIuNTYwMiAxMS45OTIyIDEyLjAwODJWNy43ODQxNkwxMy45MzYyIDUuNjI0MTVMMTQuMDA4MiA1LjY3MjE1VjExLjk4NDJDMTQuMDA4MiAxMy42NjQyIDEyLjY2NDIgMTUuMDA4MiAxMS4wMDgyIDE1LjAwODJIMy4wMTYxOUMxLjMzNjE5IDE1LjAwODIgLTAuMDA3ODEyNSAxMy42NjQyIC0wLjAwNzgxMjUgMTEuOTg0MlYzLjk5MjE1Qy0wLjAwNzgxMjUgMi4zMzYxNSAxLjMzNjE5IDAuOTkyMTQ5IDMuMDE2MTkgMC45OTIxNDlIMTAuMDAwMlpNMTEuMjcyMiAyLjYyNDE1TDEyLjYxNjIgNC4xMTIxNUw3LjcyMDE5IDkuNjgwMTZDNy41MDQxOSA5LjkyMDE2IDYuODMyMTkgMTAuMjMyMiA1LjY4MDE5IDEwLjYxNjJDNS42NTYxOSAxMC42NDAyIDUuNjA4MTkgMTAuNjQwMiA1LjU2MDE5IDEwLjYxNjJDNS40NjQxOSAxMC41OTIyIDUuMzkyMTkgMTAuNDcyMiA1LjQ0MDE5IDEwLjM3NjJDNS43NTIxOSA5LjI0ODE2IDYuMDQwMTkgOC41NTIxNiA2LjI1NjE5IDguMzEyMTZMMTEuMjcyMiAyLjYyNDE1Wk0xMS45MjAyIDEuODU2MTVMMTMuMjg4MiAwLjMyMDE0OUMxMy42NDgyIC0wLjA4Nzg1MTYgMTQuMjcyMiAtMC4xMTE4NTIgMTQuNjgwMiAwLjI3MjE0OUMxNS4wODgyIDAuNjMyMTQ5IDE1LjExMjIgMS4yODAxNSAxNC43NTIyIDEuNjg4MTVMMTMuMjY0MiAzLjM2ODE1TDExLjkyMDIgMS44NTYxNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
|
10964
10967
|
|
10965
|
-
const componentName$
|
10968
|
+
const componentName$9 = getComponentName('user-attribute');
|
10966
10969
|
class RawUserAttribute extends createBaseClass({
|
10967
|
-
componentName: componentName$
|
10970
|
+
componentName: componentName$9,
|
10968
10971
|
baseSelector: ':host > .root',
|
10969
10972
|
}) {
|
10970
10973
|
constructor() {
|
@@ -11194,13 +11197,13 @@ const UserAttributeClass = compose(
|
|
11194
11197
|
componentNameValidationMixin
|
11195
11198
|
)(RawUserAttribute);
|
11196
11199
|
|
11197
|
-
customElements.define(componentName$
|
11200
|
+
customElements.define(componentName$9, UserAttributeClass);
|
11198
11201
|
|
11199
11202
|
var greenVIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhDMCAxMi40IDMuNiAxNiA4IDE2QzEyLjQgMTYgMTYgMTIuNCAxNiA4QzE2IDMuNiAxMi40IDAgOCAwWk03LjEgMTEuN0wyLjkgNy42TDQuMyA2LjJMNyA4LjlMMTIgNEwxMy40IDUuNEw3LjEgMTEuN1oiIGZpbGw9IiM0Q0FGNTAiLz4KPC9zdmc+Cg==";
|
11200
11203
|
|
11201
|
-
const componentName$
|
11204
|
+
const componentName$8 = getComponentName('user-auth-method');
|
11202
11205
|
class RawUserAuthMethod extends createBaseClass({
|
11203
|
-
componentName: componentName$
|
11206
|
+
componentName: componentName$8,
|
11204
11207
|
baseSelector: ':host > .root',
|
11205
11208
|
}) {
|
11206
11209
|
constructor() {
|
@@ -11392,11 +11395,11 @@ const UserAuthMethodClass = compose(
|
|
11392
11395
|
componentNameValidationMixin
|
11393
11396
|
)(RawUserAuthMethod);
|
11394
11397
|
|
11395
|
-
customElements.define(componentName$
|
11398
|
+
customElements.define(componentName$8, UserAuthMethodClass);
|
11396
11399
|
|
11397
|
-
const componentName$
|
11400
|
+
const componentName$7 = getComponentName('saml-group-mappings-internal');
|
11398
11401
|
|
11399
|
-
const BaseInputClass = createBaseInputClass({ componentName: componentName$
|
11402
|
+
const BaseInputClass = createBaseInputClass({ componentName: componentName$7, baseSelector: '' });
|
11400
11403
|
|
11401
11404
|
class SamlGroupMappingsInternal extends BaseInputClass {
|
11402
11405
|
static get observedAttributes() {
|
@@ -11522,9 +11525,9 @@ class SamlGroupMappingsInternal extends BaseInputClass {
|
|
11522
11525
|
}
|
11523
11526
|
}
|
11524
11527
|
|
11525
|
-
const componentName$
|
11528
|
+
const componentName$6 = getComponentName('saml-group-mappings');
|
11526
11529
|
|
11527
|
-
const customMixin$
|
11530
|
+
const customMixin$3 = (superclass) =>
|
11528
11531
|
class SamlGroupMappingsMixinClass extends superclass {
|
11529
11532
|
init() {
|
11530
11533
|
super.init?.();
|
@@ -11532,14 +11535,14 @@ const customMixin$1 = (superclass) =>
|
|
11532
11535
|
const template = document.createElement('template');
|
11533
11536
|
|
11534
11537
|
template.innerHTML = `
|
11535
|
-
<${componentName$
|
11538
|
+
<${componentName$7}
|
11536
11539
|
tabindex="-1"
|
11537
|
-
></${componentName$
|
11540
|
+
></${componentName$7}>
|
11538
11541
|
`;
|
11539
11542
|
|
11540
11543
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
11541
11544
|
|
11542
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
11545
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$7);
|
11543
11546
|
|
11544
11547
|
forwardAttrs(this, this.inputElement, {
|
11545
11548
|
includeAttrs: [
|
@@ -11581,7 +11584,7 @@ const SamlGroupMappingsClass = compose(
|
|
11581
11584
|
proxyParentValidation: true,
|
11582
11585
|
}),
|
11583
11586
|
componentNameValidationMixin,
|
11584
|
-
customMixin$
|
11587
|
+
customMixin$3
|
11585
11588
|
)(
|
11586
11589
|
createProxy({
|
11587
11590
|
slots: [],
|
@@ -11616,17 +11619,17 @@ const SamlGroupMappingsClass = compose(
|
|
11616
11619
|
'options',
|
11617
11620
|
'error-message',
|
11618
11621
|
],
|
11619
|
-
componentName: componentName$
|
11622
|
+
componentName: componentName$6,
|
11620
11623
|
})
|
11621
11624
|
);
|
11622
11625
|
|
11623
|
-
customElements.define(componentName$
|
11626
|
+
customElements.define(componentName$7, SamlGroupMappingsInternal);
|
11624
11627
|
|
11625
|
-
customElements.define(componentName$
|
11628
|
+
customElements.define(componentName$6, SamlGroupMappingsClass);
|
11626
11629
|
|
11627
|
-
const componentName$
|
11630
|
+
const componentName$5 = getComponentName('radio-button');
|
11628
11631
|
|
11629
|
-
const customMixin = (superclass) =>
|
11632
|
+
const customMixin$2 = (superclass) =>
|
11630
11633
|
class CustomMixin extends superclass {
|
11631
11634
|
constructor() {
|
11632
11635
|
super();
|
@@ -11682,18 +11685,18 @@ const RadioButtonClass = compose(
|
|
11682
11685
|
}),
|
11683
11686
|
composedProxyInputMixin({ proxyProps: ['setSelectionRange'] }),
|
11684
11687
|
componentNameValidationMixin,
|
11685
|
-
customMixin
|
11688
|
+
customMixin$2
|
11686
11689
|
)(
|
11687
11690
|
createProxy({
|
11688
11691
|
slots: [''],
|
11689
11692
|
wrappedEleName: 'vaadin-radio-button',
|
11690
11693
|
excludeAttrsSync: ['tabindex', 'data'],
|
11691
11694
|
includeForwardProps: ['checked', 'name', 'disabled'],
|
11692
|
-
componentName: componentName$
|
11695
|
+
componentName: componentName$5,
|
11693
11696
|
})
|
11694
11697
|
);
|
11695
11698
|
|
11696
|
-
const componentName$
|
11699
|
+
const componentName$4 = getComponentName('radio-group');
|
11697
11700
|
|
11698
11701
|
const RadioGroupMixin = (superclass) =>
|
11699
11702
|
class RadioGroupMixinClass extends superclass {
|
@@ -11708,12 +11711,12 @@ const RadioGroupMixin = (superclass) =>
|
|
11708
11711
|
|
11709
11712
|
// we are overriding vaadin children getter so it will run on our custom elements
|
11710
11713
|
Object.defineProperty(this.baseElement, 'children', {
|
11711
|
-
get: () => this.querySelectorAll(componentName$
|
11714
|
+
get: () => this.querySelectorAll(componentName$5),
|
11712
11715
|
});
|
11713
11716
|
|
11714
11717
|
// we are overriding vaadin __filterRadioButtons so it will run on our custom elements
|
11715
11718
|
this.baseElement.__filterRadioButtons = (nodes) => {
|
11716
|
-
return nodes.filter((node) => node.localName === componentName$
|
11719
|
+
return nodes.filter((node) => node.localName === componentName$5);
|
11717
11720
|
};
|
11718
11721
|
|
11719
11722
|
// vaadin radio group missing some input properties
|
@@ -11863,13 +11866,13 @@ const RadioGroupClass = compose(
|
|
11863
11866
|
`,
|
11864
11867
|
|
11865
11868
|
excludeAttrsSync: ['tabindex', 'size', 'data', 'direction'],
|
11866
|
-
componentName: componentName$
|
11869
|
+
componentName: componentName$4,
|
11867
11870
|
includeForwardProps: ['value'],
|
11868
11871
|
})
|
11869
11872
|
);
|
11870
11873
|
|
11871
|
-
customElements.define(componentName$
|
11872
|
-
customElements.define(componentName$
|
11874
|
+
customElements.define(componentName$4, RadioGroupClass);
|
11875
|
+
customElements.define(componentName$5, RadioButtonClass);
|
11873
11876
|
|
11874
11877
|
const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
|
11875
11878
|
|
@@ -12301,163 +12304,163 @@ const globals = {
|
|
12301
12304
|
fonts,
|
12302
12305
|
direction,
|
12303
12306
|
};
|
12304
|
-
const vars$
|
12307
|
+
const vars$M = getThemeVars(globals);
|
12305
12308
|
|
12306
|
-
const globalRefs$
|
12307
|
-
const compVars$
|
12309
|
+
const globalRefs$v = getThemeRefs(globals);
|
12310
|
+
const compVars$6 = ButtonClass.cssVarList;
|
12308
12311
|
|
12309
12312
|
const mode = {
|
12310
|
-
primary: globalRefs$
|
12311
|
-
secondary: globalRefs$
|
12312
|
-
success: globalRefs$
|
12313
|
-
error: globalRefs$
|
12314
|
-
surface: globalRefs$
|
12313
|
+
primary: globalRefs$v.colors.primary,
|
12314
|
+
secondary: globalRefs$v.colors.secondary,
|
12315
|
+
success: globalRefs$v.colors.success,
|
12316
|
+
error: globalRefs$v.colors.error,
|
12317
|
+
surface: globalRefs$v.colors.surface,
|
12315
12318
|
};
|
12316
12319
|
|
12317
|
-
const [helperTheme$
|
12320
|
+
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$Z);
|
12318
12321
|
|
12319
12322
|
const button = {
|
12320
|
-
...helperTheme$
|
12323
|
+
...helperTheme$4,
|
12321
12324
|
|
12322
|
-
[compVars$
|
12325
|
+
[compVars$6.fontFamily]: globalRefs$v.fonts.font1.family,
|
12323
12326
|
|
12324
|
-
[compVars$
|
12325
|
-
[compVars$
|
12326
|
-
[compVars$
|
12327
|
-
[compVars$
|
12327
|
+
[compVars$6.cursor]: 'pointer',
|
12328
|
+
[compVars$6.hostHeight]: '3em',
|
12329
|
+
[compVars$6.hostWidth]: 'auto',
|
12330
|
+
[compVars$6.hostDirection]: globalRefs$v.direction,
|
12328
12331
|
|
12329
|
-
[compVars$
|
12330
|
-
[compVars$
|
12331
|
-
[compVars$
|
12332
|
-
[compVars$
|
12332
|
+
[compVars$6.borderRadius]: globalRefs$v.radius.sm,
|
12333
|
+
[compVars$6.borderWidth]: globalRefs$v.border.xs,
|
12334
|
+
[compVars$6.borderStyle]: 'solid',
|
12335
|
+
[compVars$6.borderColor]: 'transparent',
|
12333
12336
|
|
12334
|
-
[compVars$
|
12337
|
+
[compVars$6.labelSpacing]: '0.25em',
|
12335
12338
|
|
12336
|
-
[compVars$
|
12339
|
+
[compVars$6.textAlign]: 'center', // default text align center
|
12337
12340
|
textAlign: {
|
12338
|
-
right: { [compVars$
|
12339
|
-
left: { [compVars$
|
12340
|
-
center: { [compVars$
|
12341
|
+
right: { [compVars$6.textAlign]: 'right' },
|
12342
|
+
left: { [compVars$6.textAlign]: 'left' },
|
12343
|
+
center: { [compVars$6.textAlign]: 'center' },
|
12341
12344
|
},
|
12342
12345
|
|
12343
|
-
[compVars$
|
12344
|
-
[compVars$
|
12346
|
+
[compVars$6.verticalPadding]: '1em',
|
12347
|
+
[compVars$6.horizontalPadding]: '0.875em',
|
12345
12348
|
|
12346
|
-
[compVars$
|
12347
|
-
[compVars$
|
12348
|
-
[compVars$
|
12349
|
-
[compVars$
|
12349
|
+
[compVars$6.outlineWidth]: globals.border.sm,
|
12350
|
+
[compVars$6.outlineOffset]: '0px', // keep `px` unit for external calc
|
12351
|
+
[compVars$6.outlineStyle]: 'solid',
|
12352
|
+
[compVars$6.outlineColor]: 'transparent',
|
12350
12353
|
|
12351
|
-
[compVars$
|
12352
|
-
[compVars$
|
12354
|
+
[compVars$6.iconSize]: '1.5em',
|
12355
|
+
[compVars$6.iconColor]: 'currentColor',
|
12353
12356
|
|
12354
12357
|
size: {
|
12355
|
-
xs: { [compVars$
|
12356
|
-
sm: { [compVars$
|
12357
|
-
md: { [compVars$
|
12358
|
-
lg: { [compVars$
|
12358
|
+
xs: { [compVars$6.fontSize]: '12px' },
|
12359
|
+
sm: { [compVars$6.fontSize]: '14px' },
|
12360
|
+
md: { [compVars$6.fontSize]: '16px' },
|
12361
|
+
lg: { [compVars$6.fontSize]: '18px' },
|
12359
12362
|
},
|
12360
12363
|
|
12361
12364
|
_square: {
|
12362
|
-
[compVars$
|
12363
|
-
[compVars$
|
12364
|
-
[compVars$
|
12365
|
+
[compVars$6.hostHeight]: '3em',
|
12366
|
+
[compVars$6.hostWidth]: '3em',
|
12367
|
+
[compVars$6.verticalPadding]: '0',
|
12365
12368
|
},
|
12366
12369
|
|
12367
12370
|
_fullWidth: {
|
12368
|
-
[compVars$
|
12371
|
+
[compVars$6.hostWidth]: '100%',
|
12369
12372
|
},
|
12370
12373
|
|
12371
12374
|
_loading: {
|
12372
|
-
[compVars$
|
12373
|
-
[compVars$
|
12375
|
+
[compVars$6.cursor]: 'wait',
|
12376
|
+
[compVars$6.labelTextColor]: helperRefs$4.main,
|
12374
12377
|
},
|
12375
12378
|
|
12376
12379
|
_disabled: {
|
12377
|
-
[helperVars$
|
12378
|
-
[helperVars$
|
12379
|
-
[helperVars$
|
12380
|
-
[helperVars$
|
12381
|
-
[compVars$
|
12380
|
+
[helperVars$4.main]: globalRefs$v.colors.surface.light,
|
12381
|
+
[helperVars$4.dark]: globalRefs$v.colors.surface.dark,
|
12382
|
+
[helperVars$4.light]: globalRefs$v.colors.surface.light,
|
12383
|
+
[helperVars$4.contrast]: globalRefs$v.colors.surface.main,
|
12384
|
+
[compVars$6.iconColor]: globalRefs$v.colors.surface.main,
|
12382
12385
|
},
|
12383
12386
|
|
12384
12387
|
variant: {
|
12385
12388
|
contained: {
|
12386
|
-
[compVars$
|
12387
|
-
[compVars$
|
12389
|
+
[compVars$6.labelTextColor]: helperRefs$4.contrast,
|
12390
|
+
[compVars$6.backgroundColor]: helperRefs$4.main,
|
12388
12391
|
_hover: {
|
12389
|
-
[compVars$
|
12392
|
+
[compVars$6.backgroundColor]: helperRefs$4.dark,
|
12390
12393
|
_loading: {
|
12391
|
-
[compVars$
|
12394
|
+
[compVars$6.backgroundColor]: helperRefs$4.main,
|
12392
12395
|
},
|
12393
12396
|
},
|
12394
12397
|
_active: {
|
12395
|
-
[compVars$
|
12398
|
+
[compVars$6.backgroundColor]: helperRefs$4.main,
|
12396
12399
|
},
|
12397
12400
|
},
|
12398
12401
|
|
12399
12402
|
outline: {
|
12400
|
-
[compVars$
|
12401
|
-
[compVars$
|
12403
|
+
[compVars$6.labelTextColor]: helperRefs$4.main,
|
12404
|
+
[compVars$6.borderColor]: helperRefs$4.main,
|
12402
12405
|
_hover: {
|
12403
|
-
[compVars$
|
12404
|
-
[compVars$
|
12406
|
+
[compVars$6.labelTextColor]: helperRefs$4.dark,
|
12407
|
+
[compVars$6.borderColor]: helperRefs$4.dark,
|
12405
12408
|
},
|
12406
12409
|
_active: {
|
12407
|
-
[compVars$
|
12408
|
-
[compVars$
|
12410
|
+
[compVars$6.labelTextColor]: helperRefs$4.main,
|
12411
|
+
[compVars$6.borderColor]: helperRefs$4.main,
|
12409
12412
|
},
|
12410
12413
|
},
|
12411
12414
|
|
12412
12415
|
link: {
|
12413
|
-
[compVars$
|
12414
|
-
[compVars$
|
12416
|
+
[compVars$6.labelTextColor]: helperRefs$4.main,
|
12417
|
+
[compVars$6.horizontalPadding]: '0.125em',
|
12415
12418
|
_hover: {
|
12416
|
-
[compVars$
|
12417
|
-
[compVars$
|
12419
|
+
[compVars$6.labelTextColor]: helperRefs$4.dark,
|
12420
|
+
[compVars$6.labelTextDecoration]: 'underline',
|
12418
12421
|
},
|
12419
12422
|
_active: {
|
12420
|
-
[compVars$
|
12423
|
+
[compVars$6.labelTextColor]: helperRefs$4.main,
|
12421
12424
|
},
|
12422
12425
|
},
|
12423
12426
|
},
|
12424
12427
|
|
12425
12428
|
_focused: {
|
12426
|
-
[compVars$
|
12429
|
+
[compVars$6.outlineColor]: helperRefs$4.light,
|
12427
12430
|
},
|
12428
12431
|
};
|
12429
12432
|
|
12430
|
-
const vars$
|
12431
|
-
...compVars$
|
12432
|
-
...helperVars$
|
12433
|
+
const vars$L = {
|
12434
|
+
...compVars$6,
|
12435
|
+
...helperVars$4,
|
12433
12436
|
};
|
12434
12437
|
|
12435
12438
|
var button$1 = /*#__PURE__*/Object.freeze({
|
12436
12439
|
__proto__: null,
|
12437
12440
|
default: button,
|
12438
|
-
vars: vars$
|
12441
|
+
vars: vars$L
|
12439
12442
|
});
|
12440
12443
|
|
12441
|
-
const componentName = getComponentName('input-wrapper');
|
12442
|
-
const globalRefs$
|
12444
|
+
const componentName$3 = getComponentName('input-wrapper');
|
12445
|
+
const globalRefs$u = getThemeRefs(globals);
|
12443
12446
|
|
12444
|
-
const [theme$1, refs, vars$
|
12447
|
+
const [theme$1, refs, vars$K] = createHelperVars(
|
12445
12448
|
{
|
12446
|
-
labelTextColor: globalRefs$
|
12449
|
+
labelTextColor: globalRefs$u.colors.surface.dark,
|
12447
12450
|
labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
|
12448
12451
|
labelFontWeight: '500', // not taken from globals as it is fixed in all inputs
|
12449
|
-
valueTextColor: globalRefs$
|
12450
|
-
placeholderTextColor: globalRefs$
|
12452
|
+
valueTextColor: globalRefs$u.colors.surface.contrast,
|
12453
|
+
placeholderTextColor: globalRefs$u.colors.surface.dark,
|
12451
12454
|
requiredIndicator: "'*'",
|
12452
|
-
helperTextColor: globalRefs$
|
12453
|
-
errorMessageTextColor: globalRefs$
|
12454
|
-
successMessageTextColor: globalRefs$
|
12455
|
+
helperTextColor: globalRefs$u.colors.surface.dark,
|
12456
|
+
errorMessageTextColor: globalRefs$u.colors.error.main,
|
12457
|
+
successMessageTextColor: globalRefs$u.colors.success.main,
|
12455
12458
|
|
12456
|
-
borderWidth: globalRefs$
|
12457
|
-
borderRadius: globalRefs$
|
12459
|
+
borderWidth: globalRefs$u.border.xs,
|
12460
|
+
borderRadius: globalRefs$u.radius.xs,
|
12458
12461
|
borderColor: 'transparent',
|
12459
12462
|
|
12460
|
-
outlineWidth: globalRefs$
|
12463
|
+
outlineWidth: globalRefs$u.border.sm,
|
12461
12464
|
outlineStyle: 'solid',
|
12462
12465
|
outlineColor: 'transparent',
|
12463
12466
|
outlineOffset: '0px', // we need to keep the px unit even for 0 value, as this var is used for calc in different component classes
|
@@ -12469,11 +12472,11 @@ const [theme$1, refs, vars$H] = createHelperVars(
|
|
12469
12472
|
horizontalPadding: '0.5em',
|
12470
12473
|
verticalPadding: '0.5em',
|
12471
12474
|
|
12472
|
-
backgroundColor: globalRefs$
|
12475
|
+
backgroundColor: globalRefs$u.colors.surface.main,
|
12473
12476
|
|
12474
|
-
fontFamily: globalRefs$
|
12477
|
+
fontFamily: globalRefs$u.fonts.font1.family,
|
12475
12478
|
|
12476
|
-
direction: globalRefs$
|
12479
|
+
direction: globalRefs$u.direction,
|
12477
12480
|
|
12478
12481
|
overlayOpacity: '0.3',
|
12479
12482
|
|
@@ -12523,44 +12526,189 @@ const [theme$1, refs, vars$H] = createHelperVars(
|
|
12523
12526
|
},
|
12524
12527
|
|
12525
12528
|
_focused: {
|
12526
|
-
outlineColor: globalRefs$
|
12529
|
+
outlineColor: globalRefs$u.colors.surface.light,
|
12527
12530
|
_invalid: {
|
12528
|
-
outlineColor: globalRefs$
|
12531
|
+
outlineColor: globalRefs$u.colors.error.main,
|
12529
12532
|
},
|
12530
12533
|
},
|
12531
12534
|
|
12532
12535
|
_bordered: {
|
12533
|
-
outlineWidth: globalRefs$
|
12534
|
-
borderColor: globalRefs$
|
12536
|
+
outlineWidth: globalRefs$u.border.xs,
|
12537
|
+
borderColor: globalRefs$u.colors.surface.light,
|
12535
12538
|
borderStyle: 'solid',
|
12536
12539
|
_invalid: {
|
12537
|
-
borderColor: globalRefs$
|
12540
|
+
borderColor: globalRefs$u.colors.error.main,
|
12538
12541
|
},
|
12539
12542
|
},
|
12540
12543
|
|
12541
12544
|
_disabled: {
|
12542
|
-
labelTextColor: globalRefs$
|
12543
|
-
borderColor: globalRefs$
|
12544
|
-
valueTextColor: globalRefs$
|
12545
|
-
placeholderTextColor: globalRefs$
|
12546
|
-
helperTextColor: globalRefs$
|
12547
|
-
backgroundColor: globalRefs$
|
12545
|
+
labelTextColor: globalRefs$u.colors.surface.light,
|
12546
|
+
borderColor: globalRefs$u.colors.surface.light,
|
12547
|
+
valueTextColor: globalRefs$u.colors.surface.light,
|
12548
|
+
placeholderTextColor: globalRefs$u.colors.surface.light,
|
12549
|
+
helperTextColor: globalRefs$u.colors.surface.light,
|
12550
|
+
backgroundColor: globalRefs$u.colors.surface.main,
|
12548
12551
|
},
|
12549
12552
|
},
|
12550
|
-
componentName
|
12553
|
+
componentName$3
|
12551
12554
|
);
|
12552
12555
|
|
12553
12556
|
var inputWrapper = /*#__PURE__*/Object.freeze({
|
12554
12557
|
__proto__: null,
|
12555
12558
|
default: theme$1,
|
12556
12559
|
refs: refs,
|
12557
|
-
vars: vars$
|
12560
|
+
vars: vars$K
|
12558
12561
|
});
|
12559
12562
|
|
12560
|
-
const globalRefs$
|
12561
|
-
const vars$
|
12563
|
+
const globalRefs$t = getThemeRefs(globals);
|
12564
|
+
const vars$J = TextFieldClass.cssVarList;
|
12562
12565
|
|
12563
12566
|
const textField = {
|
12567
|
+
[vars$J.hostWidth]: refs.width,
|
12568
|
+
[vars$J.hostMinWidth]: refs.minWidth,
|
12569
|
+
[vars$J.hostDirection]: refs.direction,
|
12570
|
+
[vars$J.fontSize]: refs.fontSize,
|
12571
|
+
[vars$J.fontFamily]: refs.fontFamily,
|
12572
|
+
[vars$J.labelFontSize]: refs.labelFontSize,
|
12573
|
+
[vars$J.labelFontWeight]: refs.labelFontWeight,
|
12574
|
+
[vars$J.labelTextColor]: refs.labelTextColor,
|
12575
|
+
[vars$J.labelRequiredIndicator]: refs.requiredIndicator,
|
12576
|
+
[vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
|
12577
|
+
[vars$J.inputValueTextColor]: refs.valueTextColor,
|
12578
|
+
[vars$J.inputPlaceholderColor]: refs.placeholderTextColor,
|
12579
|
+
[vars$J.inputBorderWidth]: refs.borderWidth,
|
12580
|
+
[vars$J.inputBorderStyle]: refs.borderStyle,
|
12581
|
+
[vars$J.inputBorderColor]: refs.borderColor,
|
12582
|
+
[vars$J.inputBorderRadius]: refs.borderRadius,
|
12583
|
+
[vars$J.inputOutlineWidth]: refs.outlineWidth,
|
12584
|
+
[vars$J.inputOutlineStyle]: refs.outlineStyle,
|
12585
|
+
[vars$J.inputOutlineColor]: refs.outlineColor,
|
12586
|
+
[vars$J.inputOutlineOffset]: refs.outlineOffset,
|
12587
|
+
[vars$J.inputBackgroundColor]: refs.backgroundColor,
|
12588
|
+
[vars$J.inputHeight]: refs.inputHeight,
|
12589
|
+
[vars$J.inputHorizontalPadding]: refs.horizontalPadding,
|
12590
|
+
[vars$J.helperTextColor]: refs.helperTextColor,
|
12591
|
+
textAlign: {
|
12592
|
+
right: { [vars$J.inputTextAlign]: 'right' },
|
12593
|
+
left: { [vars$J.inputTextAlign]: 'left' },
|
12594
|
+
center: { [vars$J.inputTextAlign]: 'center' },
|
12595
|
+
},
|
12596
|
+
[vars$J.labelPosition]: refs.labelPosition,
|
12597
|
+
[vars$J.labelTopPosition]: refs.labelTopPosition,
|
12598
|
+
[vars$J.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
12599
|
+
[vars$J.inputTransformY]: refs.inputTransformY,
|
12600
|
+
[vars$J.inputTransition]: refs.inputTransition,
|
12601
|
+
[vars$J.marginInlineStart]: refs.marginInlineStart,
|
12602
|
+
[vars$J.placeholderOpacity]: refs.placeholderOpacity,
|
12603
|
+
[vars$J.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
12604
|
+
[vars$J.valueInputHeight]: refs.valueInputHeight,
|
12605
|
+
[vars$J.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
12606
|
+
[vars$J.inputIconOffset]: globalRefs$t.spacing.md,
|
12607
|
+
[vars$J.inputIconSize]: refs.inputIconSize,
|
12608
|
+
[vars$J.inputIconColor]: refs.placeholderTextColor,
|
12609
|
+
};
|
12610
|
+
|
12611
|
+
var textField$1 = /*#__PURE__*/Object.freeze({
|
12612
|
+
__proto__: null,
|
12613
|
+
default: textField,
|
12614
|
+
textField: textField,
|
12615
|
+
vars: vars$J
|
12616
|
+
});
|
12617
|
+
|
12618
|
+
const globalRefs$s = getThemeRefs(globals);
|
12619
|
+
const vars$I = PasswordClass.cssVarList;
|
12620
|
+
|
12621
|
+
const password = {
|
12622
|
+
[vars$I.hostWidth]: refs.width,
|
12623
|
+
[vars$I.hostMinWidth]: refs.minWidth,
|
12624
|
+
[vars$I.hostDirection]: refs.direction,
|
12625
|
+
[vars$I.fontSize]: refs.fontSize,
|
12626
|
+
[vars$I.fontFamily]: refs.fontFamily,
|
12627
|
+
[vars$I.labelFontSize]: refs.labelFontSize,
|
12628
|
+
[vars$I.labelFontWeight]: refs.labelFontWeight,
|
12629
|
+
[vars$I.labelTextColor]: refs.labelTextColor,
|
12630
|
+
[vars$I.errorMessageTextColor]: refs.errorMessageTextColor,
|
12631
|
+
[vars$I.inputHorizontalPadding]: refs.horizontalPadding,
|
12632
|
+
[vars$I.inputHeight]: refs.inputHeight,
|
12633
|
+
[vars$I.inputBackgroundColor]: refs.backgroundColor,
|
12634
|
+
[vars$I.labelRequiredIndicator]: refs.requiredIndicator,
|
12635
|
+
[vars$I.inputValueTextColor]: refs.valueTextColor,
|
12636
|
+
[vars$I.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
12637
|
+
[vars$I.inputBorderWidth]: refs.borderWidth,
|
12638
|
+
[vars$I.inputBorderStyle]: refs.borderStyle,
|
12639
|
+
[vars$I.inputBorderColor]: refs.borderColor,
|
12640
|
+
[vars$I.inputBorderRadius]: refs.borderRadius,
|
12641
|
+
[vars$I.inputOutlineWidth]: refs.outlineWidth,
|
12642
|
+
[vars$I.inputOutlineStyle]: refs.outlineStyle,
|
12643
|
+
[vars$I.inputOutlineColor]: refs.outlineColor,
|
12644
|
+
[vars$I.inputOutlineOffset]: refs.outlineOffset,
|
12645
|
+
[vars$I.revealButtonOffset]: globalRefs$s.spacing.md,
|
12646
|
+
[vars$I.revealButtonSize]: refs.toggleButtonSize,
|
12647
|
+
[vars$I.revealButtonColor]: refs.placeholderTextColor,
|
12648
|
+
[vars$I.labelPosition]: refs.labelPosition,
|
12649
|
+
[vars$I.labelTopPosition]: refs.labelTopPosition,
|
12650
|
+
[vars$I.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
12651
|
+
[vars$I.inputTransformY]: refs.inputTransformY,
|
12652
|
+
[vars$I.inputTransition]: refs.inputTransition,
|
12653
|
+
[vars$I.marginInlineStart]: refs.marginInlineStart,
|
12654
|
+
[vars$I.placeholderOpacity]: refs.placeholderOpacity,
|
12655
|
+
[vars$I.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
12656
|
+
[vars$I.valueInputHeight]: refs.valueInputHeight,
|
12657
|
+
};
|
12658
|
+
|
12659
|
+
var password$1 = /*#__PURE__*/Object.freeze({
|
12660
|
+
__proto__: null,
|
12661
|
+
default: password,
|
12662
|
+
vars: vars$I
|
12663
|
+
});
|
12664
|
+
|
12665
|
+
const vars$H = NumberFieldClass.cssVarList;
|
12666
|
+
|
12667
|
+
const numberField = {
|
12668
|
+
[vars$H.hostWidth]: refs.width,
|
12669
|
+
[vars$H.hostMinWidth]: refs.minWidth,
|
12670
|
+
[vars$H.hostDirection]: refs.direction,
|
12671
|
+
[vars$H.fontSize]: refs.fontSize,
|
12672
|
+
[vars$H.fontFamily]: refs.fontFamily,
|
12673
|
+
[vars$H.labelFontSize]: refs.labelFontSize,
|
12674
|
+
[vars$H.labelFontWeight]: refs.labelFontWeight,
|
12675
|
+
[vars$H.labelTextColor]: refs.labelTextColor,
|
12676
|
+
[vars$H.errorMessageTextColor]: refs.errorMessageTextColor,
|
12677
|
+
[vars$H.inputValueTextColor]: refs.valueTextColor,
|
12678
|
+
[vars$H.inputPlaceholderColor]: refs.placeholderTextColor,
|
12679
|
+
[vars$H.inputBorderWidth]: refs.borderWidth,
|
12680
|
+
[vars$H.inputBorderStyle]: refs.borderStyle,
|
12681
|
+
[vars$H.inputBorderColor]: refs.borderColor,
|
12682
|
+
[vars$H.inputBorderRadius]: refs.borderRadius,
|
12683
|
+
[vars$H.inputOutlineWidth]: refs.outlineWidth,
|
12684
|
+
[vars$H.inputOutlineStyle]: refs.outlineStyle,
|
12685
|
+
[vars$H.inputOutlineColor]: refs.outlineColor,
|
12686
|
+
[vars$H.inputOutlineOffset]: refs.outlineOffset,
|
12687
|
+
[vars$H.inputBackgroundColor]: refs.backgroundColor,
|
12688
|
+
[vars$H.labelRequiredIndicator]: refs.requiredIndicator,
|
12689
|
+
[vars$H.inputHorizontalPadding]: refs.horizontalPadding,
|
12690
|
+
[vars$H.inputHeight]: refs.inputHeight,
|
12691
|
+
[vars$H.labelPosition]: refs.labelPosition,
|
12692
|
+
[vars$H.labelTopPosition]: refs.labelTopPosition,
|
12693
|
+
[vars$H.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
12694
|
+
[vars$H.inputTransformY]: refs.inputTransformY,
|
12695
|
+
[vars$H.inputTransition]: refs.inputTransition,
|
12696
|
+
[vars$H.marginInlineStart]: refs.marginInlineStart,
|
12697
|
+
[vars$H.placeholderOpacity]: refs.placeholderOpacity,
|
12698
|
+
[vars$H.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
12699
|
+
[vars$H.valueInputHeight]: refs.valueInputHeight,
|
12700
|
+
[vars$H.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
12701
|
+
};
|
12702
|
+
|
12703
|
+
var numberField$1 = /*#__PURE__*/Object.freeze({
|
12704
|
+
__proto__: null,
|
12705
|
+
default: numberField,
|
12706
|
+
vars: vars$H
|
12707
|
+
});
|
12708
|
+
|
12709
|
+
const vars$G = EmailFieldClass.cssVarList;
|
12710
|
+
|
12711
|
+
const emailField = {
|
12564
12712
|
[vars$G.hostWidth]: refs.width,
|
12565
12713
|
[vars$G.hostMinWidth]: refs.minWidth,
|
12566
12714
|
[vars$G.hostDirection]: refs.direction,
|
@@ -12569,9 +12717,9 @@ const textField = {
|
|
12569
12717
|
[vars$G.labelFontSize]: refs.labelFontSize,
|
12570
12718
|
[vars$G.labelFontWeight]: refs.labelFontWeight,
|
12571
12719
|
[vars$G.labelTextColor]: refs.labelTextColor,
|
12572
|
-
[vars$G.labelRequiredIndicator]: refs.requiredIndicator,
|
12573
12720
|
[vars$G.errorMessageTextColor]: refs.errorMessageTextColor,
|
12574
12721
|
[vars$G.inputValueTextColor]: refs.valueTextColor,
|
12722
|
+
[vars$G.labelRequiredIndicator]: refs.requiredIndicator,
|
12575
12723
|
[vars$G.inputPlaceholderColor]: refs.placeholderTextColor,
|
12576
12724
|
[vars$G.inputBorderWidth]: refs.borderWidth,
|
12577
12725
|
[vars$G.inputBorderStyle]: refs.borderStyle,
|
@@ -12582,14 +12730,8 @@ const textField = {
|
|
12582
12730
|
[vars$G.inputOutlineColor]: refs.outlineColor,
|
12583
12731
|
[vars$G.inputOutlineOffset]: refs.outlineOffset,
|
12584
12732
|
[vars$G.inputBackgroundColor]: refs.backgroundColor,
|
12585
|
-
[vars$G.inputHeight]: refs.inputHeight,
|
12586
12733
|
[vars$G.inputHorizontalPadding]: refs.horizontalPadding,
|
12587
|
-
[vars$G.
|
12588
|
-
textAlign: {
|
12589
|
-
right: { [vars$G.inputTextAlign]: 'right' },
|
12590
|
-
left: { [vars$G.inputTextAlign]: 'left' },
|
12591
|
-
center: { [vars$G.inputTextAlign]: 'center' },
|
12592
|
-
},
|
12734
|
+
[vars$G.inputHeight]: refs.inputHeight,
|
12593
12735
|
[vars$G.labelPosition]: refs.labelPosition,
|
12594
12736
|
[vars$G.labelTopPosition]: refs.labelTopPosition,
|
12595
12737
|
[vars$G.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -12600,306 +12742,167 @@ const textField = {
|
|
12600
12742
|
[vars$G.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
12601
12743
|
[vars$G.valueInputHeight]: refs.valueInputHeight,
|
12602
12744
|
[vars$G.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
12603
|
-
[vars$G.inputIconOffset]: globalRefs$q.spacing.md,
|
12604
|
-
[vars$G.inputIconSize]: refs.inputIconSize,
|
12605
|
-
[vars$G.inputIconColor]: refs.placeholderTextColor,
|
12606
12745
|
};
|
12607
12746
|
|
12608
|
-
var
|
12747
|
+
var emailField$1 = /*#__PURE__*/Object.freeze({
|
12609
12748
|
__proto__: null,
|
12610
|
-
default:
|
12611
|
-
textField: textField,
|
12749
|
+
default: emailField,
|
12612
12750
|
vars: vars$G
|
12613
12751
|
});
|
12614
12752
|
|
12615
|
-
const
|
12616
|
-
const vars$F = PasswordClass.cssVarList;
|
12753
|
+
const vars$F = TextAreaClass.cssVarList;
|
12617
12754
|
|
12618
|
-
const
|
12755
|
+
const textArea = {
|
12619
12756
|
[vars$F.hostWidth]: refs.width,
|
12620
12757
|
[vars$F.hostMinWidth]: refs.minWidth,
|
12621
12758
|
[vars$F.hostDirection]: refs.direction,
|
12622
12759
|
[vars$F.fontSize]: refs.fontSize,
|
12623
12760
|
[vars$F.fontFamily]: refs.fontFamily,
|
12624
|
-
[vars$F.labelFontSize]: refs.labelFontSize,
|
12625
|
-
[vars$F.labelFontWeight]: refs.labelFontWeight,
|
12626
12761
|
[vars$F.labelTextColor]: refs.labelTextColor,
|
12762
|
+
[vars$F.labelRequiredIndicator]: refs.requiredIndicator,
|
12627
12763
|
[vars$F.errorMessageTextColor]: refs.errorMessageTextColor,
|
12628
|
-
[vars$F.inputHorizontalPadding]: refs.horizontalPadding,
|
12629
|
-
[vars$F.inputHeight]: refs.inputHeight,
|
12630
12764
|
[vars$F.inputBackgroundColor]: refs.backgroundColor,
|
12631
|
-
[vars$F.labelRequiredIndicator]: refs.requiredIndicator,
|
12632
12765
|
[vars$F.inputValueTextColor]: refs.valueTextColor,
|
12633
12766
|
[vars$F.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
12767
|
+
[vars$F.inputBorderRadius]: refs.borderRadius,
|
12634
12768
|
[vars$F.inputBorderWidth]: refs.borderWidth,
|
12635
12769
|
[vars$F.inputBorderStyle]: refs.borderStyle,
|
12636
12770
|
[vars$F.inputBorderColor]: refs.borderColor,
|
12637
|
-
[vars$F.inputBorderRadius]: refs.borderRadius,
|
12638
12771
|
[vars$F.inputOutlineWidth]: refs.outlineWidth,
|
12639
12772
|
[vars$F.inputOutlineStyle]: refs.outlineStyle,
|
12640
12773
|
[vars$F.inputOutlineColor]: refs.outlineColor,
|
12641
12774
|
[vars$F.inputOutlineOffset]: refs.outlineOffset,
|
12642
|
-
[vars$F.
|
12643
|
-
[vars$F.
|
12644
|
-
|
12645
|
-
|
12646
|
-
|
12647
|
-
|
12648
|
-
|
12649
|
-
|
12650
|
-
|
12651
|
-
|
12652
|
-
|
12653
|
-
[vars$F.valueInputHeight]: refs.valueInputHeight,
|
12775
|
+
[vars$F.inputResizeType]: 'vertical',
|
12776
|
+
[vars$F.inputMinHeight]: '5em',
|
12777
|
+
textAlign: {
|
12778
|
+
right: { [vars$F.inputTextAlign]: 'right' },
|
12779
|
+
left: { [vars$F.inputTextAlign]: 'left' },
|
12780
|
+
center: { [vars$F.inputTextAlign]: 'center' },
|
12781
|
+
},
|
12782
|
+
|
12783
|
+
_readonly: {
|
12784
|
+
[vars$F.inputResizeType]: 'none',
|
12785
|
+
},
|
12654
12786
|
};
|
12655
12787
|
|
12656
|
-
var
|
12788
|
+
var textArea$1 = /*#__PURE__*/Object.freeze({
|
12657
12789
|
__proto__: null,
|
12658
|
-
default:
|
12790
|
+
default: textArea,
|
12659
12791
|
vars: vars$F
|
12660
12792
|
});
|
12661
12793
|
|
12662
|
-
const vars$E =
|
12794
|
+
const vars$E = CheckboxClass.cssVarList;
|
12795
|
+
const checkboxSize = '1.35em';
|
12663
12796
|
|
12664
|
-
const
|
12797
|
+
const checkbox = {
|
12665
12798
|
[vars$E.hostWidth]: refs.width,
|
12666
|
-
[vars$E.hostMinWidth]: refs.minWidth,
|
12667
12799
|
[vars$E.hostDirection]: refs.direction,
|
12668
12800
|
[vars$E.fontSize]: refs.fontSize,
|
12669
12801
|
[vars$E.fontFamily]: refs.fontFamily,
|
12670
|
-
[vars$E.labelFontSize]: refs.labelFontSize,
|
12671
|
-
[vars$E.labelFontWeight]: refs.labelFontWeight,
|
12672
12802
|
[vars$E.labelTextColor]: refs.labelTextColor,
|
12803
|
+
[vars$E.labelRequiredIndicator]: refs.requiredIndicator,
|
12804
|
+
[vars$E.labelFontWeight]: '400',
|
12805
|
+
[vars$E.labelLineHeight]: checkboxSize,
|
12806
|
+
[vars$E.labelSpacing]: '1em',
|
12673
12807
|
[vars$E.errorMessageTextColor]: refs.errorMessageTextColor,
|
12674
|
-
[vars$E.inputValueTextColor]: refs.valueTextColor,
|
12675
|
-
[vars$E.inputPlaceholderColor]: refs.placeholderTextColor,
|
12676
|
-
[vars$E.inputBorderWidth]: refs.borderWidth,
|
12677
|
-
[vars$E.inputBorderStyle]: refs.borderStyle,
|
12678
|
-
[vars$E.inputBorderColor]: refs.borderColor,
|
12679
|
-
[vars$E.inputBorderRadius]: refs.borderRadius,
|
12680
12808
|
[vars$E.inputOutlineWidth]: refs.outlineWidth,
|
12681
|
-
[vars$E.inputOutlineStyle]: refs.outlineStyle,
|
12682
|
-
[vars$E.inputOutlineColor]: refs.outlineColor,
|
12683
12809
|
[vars$E.inputOutlineOffset]: refs.outlineOffset,
|
12810
|
+
[vars$E.inputOutlineColor]: refs.outlineColor,
|
12811
|
+
[vars$E.inputOutlineStyle]: refs.outlineStyle,
|
12812
|
+
[vars$E.inputBorderRadius]: refs.borderRadius,
|
12813
|
+
[vars$E.inputBorderColor]: refs.borderColor,
|
12814
|
+
[vars$E.inputBorderWidth]: refs.borderWidth,
|
12815
|
+
[vars$E.inputBorderStyle]: refs.borderStyle,
|
12684
12816
|
[vars$E.inputBackgroundColor]: refs.backgroundColor,
|
12685
|
-
[vars$E.
|
12686
|
-
[vars$E.inputHorizontalPadding]: refs.horizontalPadding,
|
12687
|
-
[vars$E.inputHeight]: refs.inputHeight,
|
12688
|
-
[vars$E.labelPosition]: refs.labelPosition,
|
12689
|
-
[vars$E.labelTopPosition]: refs.labelTopPosition,
|
12690
|
-
[vars$E.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
12691
|
-
[vars$E.inputTransformY]: refs.inputTransformY,
|
12692
|
-
[vars$E.inputTransition]: refs.inputTransition,
|
12693
|
-
[vars$E.marginInlineStart]: refs.marginInlineStart,
|
12694
|
-
[vars$E.placeholderOpacity]: refs.placeholderOpacity,
|
12695
|
-
[vars$E.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
12696
|
-
[vars$E.valueInputHeight]: refs.valueInputHeight,
|
12697
|
-
[vars$E.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
12698
|
-
};
|
12699
|
-
|
12700
|
-
var numberField$1 = /*#__PURE__*/Object.freeze({
|
12701
|
-
__proto__: null,
|
12702
|
-
default: numberField,
|
12703
|
-
vars: vars$E
|
12704
|
-
});
|
12705
|
-
|
12706
|
-
const vars$D = EmailFieldClass.cssVarList;
|
12707
|
-
|
12708
|
-
const emailField = {
|
12709
|
-
[vars$D.hostWidth]: refs.width,
|
12710
|
-
[vars$D.hostMinWidth]: refs.minWidth,
|
12711
|
-
[vars$D.hostDirection]: refs.direction,
|
12712
|
-
[vars$D.fontSize]: refs.fontSize,
|
12713
|
-
[vars$D.fontFamily]: refs.fontFamily,
|
12714
|
-
[vars$D.labelFontSize]: refs.labelFontSize,
|
12715
|
-
[vars$D.labelFontWeight]: refs.labelFontWeight,
|
12716
|
-
[vars$D.labelTextColor]: refs.labelTextColor,
|
12717
|
-
[vars$D.errorMessageTextColor]: refs.errorMessageTextColor,
|
12718
|
-
[vars$D.inputValueTextColor]: refs.valueTextColor,
|
12719
|
-
[vars$D.labelRequiredIndicator]: refs.requiredIndicator,
|
12720
|
-
[vars$D.inputPlaceholderColor]: refs.placeholderTextColor,
|
12721
|
-
[vars$D.inputBorderWidth]: refs.borderWidth,
|
12722
|
-
[vars$D.inputBorderStyle]: refs.borderStyle,
|
12723
|
-
[vars$D.inputBorderColor]: refs.borderColor,
|
12724
|
-
[vars$D.inputBorderRadius]: refs.borderRadius,
|
12725
|
-
[vars$D.inputOutlineWidth]: refs.outlineWidth,
|
12726
|
-
[vars$D.inputOutlineStyle]: refs.outlineStyle,
|
12727
|
-
[vars$D.inputOutlineColor]: refs.outlineColor,
|
12728
|
-
[vars$D.inputOutlineOffset]: refs.outlineOffset,
|
12729
|
-
[vars$D.inputBackgroundColor]: refs.backgroundColor,
|
12730
|
-
[vars$D.inputHorizontalPadding]: refs.horizontalPadding,
|
12731
|
-
[vars$D.inputHeight]: refs.inputHeight,
|
12732
|
-
[vars$D.labelPosition]: refs.labelPosition,
|
12733
|
-
[vars$D.labelTopPosition]: refs.labelTopPosition,
|
12734
|
-
[vars$D.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
12735
|
-
[vars$D.inputTransformY]: refs.inputTransformY,
|
12736
|
-
[vars$D.inputTransition]: refs.inputTransition,
|
12737
|
-
[vars$D.marginInlineStart]: refs.marginInlineStart,
|
12738
|
-
[vars$D.placeholderOpacity]: refs.placeholderOpacity,
|
12739
|
-
[vars$D.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
12740
|
-
[vars$D.valueInputHeight]: refs.valueInputHeight,
|
12741
|
-
[vars$D.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
12742
|
-
};
|
12743
|
-
|
12744
|
-
var emailField$1 = /*#__PURE__*/Object.freeze({
|
12745
|
-
__proto__: null,
|
12746
|
-
default: emailField,
|
12747
|
-
vars: vars$D
|
12748
|
-
});
|
12749
|
-
|
12750
|
-
const vars$C = TextAreaClass.cssVarList;
|
12751
|
-
|
12752
|
-
const textArea = {
|
12753
|
-
[vars$C.hostWidth]: refs.width,
|
12754
|
-
[vars$C.hostMinWidth]: refs.minWidth,
|
12755
|
-
[vars$C.hostDirection]: refs.direction,
|
12756
|
-
[vars$C.fontSize]: refs.fontSize,
|
12757
|
-
[vars$C.fontFamily]: refs.fontFamily,
|
12758
|
-
[vars$C.labelTextColor]: refs.labelTextColor,
|
12759
|
-
[vars$C.labelRequiredIndicator]: refs.requiredIndicator,
|
12760
|
-
[vars$C.errorMessageTextColor]: refs.errorMessageTextColor,
|
12761
|
-
[vars$C.inputBackgroundColor]: refs.backgroundColor,
|
12762
|
-
[vars$C.inputValueTextColor]: refs.valueTextColor,
|
12763
|
-
[vars$C.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
12764
|
-
[vars$C.inputBorderRadius]: refs.borderRadius,
|
12765
|
-
[vars$C.inputBorderWidth]: refs.borderWidth,
|
12766
|
-
[vars$C.inputBorderStyle]: refs.borderStyle,
|
12767
|
-
[vars$C.inputBorderColor]: refs.borderColor,
|
12768
|
-
[vars$C.inputOutlineWidth]: refs.outlineWidth,
|
12769
|
-
[vars$C.inputOutlineStyle]: refs.outlineStyle,
|
12770
|
-
[vars$C.inputOutlineColor]: refs.outlineColor,
|
12771
|
-
[vars$C.inputOutlineOffset]: refs.outlineOffset,
|
12772
|
-
[vars$C.inputResizeType]: 'vertical',
|
12773
|
-
[vars$C.inputMinHeight]: '5em',
|
12774
|
-
textAlign: {
|
12775
|
-
right: { [vars$C.inputTextAlign]: 'right' },
|
12776
|
-
left: { [vars$C.inputTextAlign]: 'left' },
|
12777
|
-
center: { [vars$C.inputTextAlign]: 'center' },
|
12778
|
-
},
|
12779
|
-
|
12780
|
-
_readonly: {
|
12781
|
-
[vars$C.inputResizeType]: 'none',
|
12782
|
-
},
|
12783
|
-
};
|
12784
|
-
|
12785
|
-
var textArea$1 = /*#__PURE__*/Object.freeze({
|
12786
|
-
__proto__: null,
|
12787
|
-
default: textArea,
|
12788
|
-
vars: vars$C
|
12789
|
-
});
|
12790
|
-
|
12791
|
-
const vars$B = CheckboxClass.cssVarList;
|
12792
|
-
const checkboxSize = '1.35em';
|
12793
|
-
|
12794
|
-
const checkbox = {
|
12795
|
-
[vars$B.hostWidth]: refs.width,
|
12796
|
-
[vars$B.hostDirection]: refs.direction,
|
12797
|
-
[vars$B.fontSize]: refs.fontSize,
|
12798
|
-
[vars$B.fontFamily]: refs.fontFamily,
|
12799
|
-
[vars$B.labelTextColor]: refs.labelTextColor,
|
12800
|
-
[vars$B.labelRequiredIndicator]: refs.requiredIndicator,
|
12801
|
-
[vars$B.labelFontWeight]: '400',
|
12802
|
-
[vars$B.labelLineHeight]: checkboxSize,
|
12803
|
-
[vars$B.labelSpacing]: '1em',
|
12804
|
-
[vars$B.errorMessageTextColor]: refs.errorMessageTextColor,
|
12805
|
-
[vars$B.inputOutlineWidth]: refs.outlineWidth,
|
12806
|
-
[vars$B.inputOutlineOffset]: refs.outlineOffset,
|
12807
|
-
[vars$B.inputOutlineColor]: refs.outlineColor,
|
12808
|
-
[vars$B.inputOutlineStyle]: refs.outlineStyle,
|
12809
|
-
[vars$B.inputBorderRadius]: refs.borderRadius,
|
12810
|
-
[vars$B.inputBorderColor]: refs.borderColor,
|
12811
|
-
[vars$B.inputBorderWidth]: refs.borderWidth,
|
12812
|
-
[vars$B.inputBorderStyle]: refs.borderStyle,
|
12813
|
-
[vars$B.inputBackgroundColor]: refs.backgroundColor,
|
12814
|
-
[vars$B.inputSize]: checkboxSize,
|
12817
|
+
[vars$E.inputSize]: checkboxSize,
|
12815
12818
|
|
12816
12819
|
_checked: {
|
12817
|
-
[vars$
|
12820
|
+
[vars$E.inputValueTextColor]: refs.valueTextColor,
|
12818
12821
|
},
|
12819
12822
|
|
12820
12823
|
_disabled: {
|
12821
|
-
[vars$
|
12824
|
+
[vars$E.labelTextColor]: refs.labelTextColor,
|
12822
12825
|
},
|
12823
12826
|
};
|
12824
12827
|
|
12825
12828
|
var checkbox$1 = /*#__PURE__*/Object.freeze({
|
12826
12829
|
__proto__: null,
|
12827
12830
|
default: checkbox,
|
12828
|
-
vars: vars$
|
12831
|
+
vars: vars$E
|
12829
12832
|
});
|
12830
12833
|
|
12831
12834
|
const knobMargin = '2px';
|
12832
12835
|
const checkboxHeight = '1.25em';
|
12833
12836
|
|
12834
|
-
const globalRefs$
|
12835
|
-
const vars$
|
12837
|
+
const globalRefs$r = getThemeRefs(globals);
|
12838
|
+
const vars$D = SwitchToggleClass.cssVarList;
|
12836
12839
|
|
12837
12840
|
const switchToggle = {
|
12838
|
-
[vars$
|
12839
|
-
[vars$
|
12840
|
-
[vars$
|
12841
|
-
[vars$
|
12842
|
-
|
12843
|
-
[vars$
|
12844
|
-
[vars$
|
12845
|
-
[vars$
|
12846
|
-
[vars$
|
12847
|
-
|
12848
|
-
[vars$
|
12849
|
-
[vars$
|
12850
|
-
[vars$
|
12851
|
-
[vars$
|
12852
|
-
[vars$
|
12853
|
-
[vars$
|
12854
|
-
[vars$
|
12855
|
-
|
12856
|
-
[vars$
|
12857
|
-
[vars$
|
12858
|
-
[vars$
|
12859
|
-
[vars$
|
12860
|
-
[vars$
|
12861
|
-
[vars$
|
12862
|
-
|
12863
|
-
[vars$
|
12864
|
-
[vars$
|
12865
|
-
[vars$
|
12866
|
-
[vars$
|
12867
|
-
[vars$
|
12868
|
-
[vars$
|
12841
|
+
[vars$D.hostWidth]: refs.width,
|
12842
|
+
[vars$D.hostDirection]: refs.direction,
|
12843
|
+
[vars$D.fontSize]: refs.fontSize,
|
12844
|
+
[vars$D.fontFamily]: refs.fontFamily,
|
12845
|
+
|
12846
|
+
[vars$D.inputOutlineWidth]: refs.outlineWidth,
|
12847
|
+
[vars$D.inputOutlineOffset]: refs.outlineOffset,
|
12848
|
+
[vars$D.inputOutlineColor]: refs.outlineColor,
|
12849
|
+
[vars$D.inputOutlineStyle]: refs.outlineStyle,
|
12850
|
+
|
12851
|
+
[vars$D.trackBorderStyle]: refs.borderStyle,
|
12852
|
+
[vars$D.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
|
12853
|
+
[vars$D.trackBorderColor]: refs.borderColor,
|
12854
|
+
[vars$D.trackBackgroundColor]: refs.backgroundColor,
|
12855
|
+
[vars$D.trackBorderRadius]: globalRefs$r.radius.md,
|
12856
|
+
[vars$D.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
|
12857
|
+
[vars$D.trackHeight]: checkboxHeight,
|
12858
|
+
|
12859
|
+
[vars$D.knobSize]: `calc(1em - ${knobMargin})`,
|
12860
|
+
[vars$D.knobRadius]: '50%',
|
12861
|
+
[vars$D.knobTopOffset]: '1px',
|
12862
|
+
[vars$D.knobLeftOffset]: knobMargin,
|
12863
|
+
[vars$D.knobColor]: refs.labelTextColor,
|
12864
|
+
[vars$D.knobTransitionDuration]: '0.3s',
|
12865
|
+
|
12866
|
+
[vars$D.labelTextColor]: refs.labelTextColor,
|
12867
|
+
[vars$D.labelFontWeight]: '400',
|
12868
|
+
[vars$D.labelLineHeight]: '1.35em',
|
12869
|
+
[vars$D.labelSpacing]: '1em',
|
12870
|
+
[vars$D.labelRequiredIndicator]: refs.requiredIndicator,
|
12871
|
+
[vars$D.errorMessageTextColor]: refs.errorMessageTextColor,
|
12869
12872
|
|
12870
12873
|
_checked: {
|
12871
|
-
[vars$
|
12872
|
-
[vars$
|
12873
|
-
[vars$
|
12874
|
-
[vars$
|
12874
|
+
[vars$D.trackBorderColor]: refs.borderColor,
|
12875
|
+
[vars$D.knobLeftOffset]: `calc(100% - var(${vars$D.knobSize}) - ${knobMargin})`,
|
12876
|
+
[vars$D.knobColor]: refs.valueTextColor,
|
12877
|
+
[vars$D.knobTextColor]: refs.valueTextColor,
|
12875
12878
|
},
|
12876
12879
|
|
12877
12880
|
_disabled: {
|
12878
|
-
[vars$
|
12879
|
-
[vars$
|
12880
|
-
[vars$
|
12881
|
-
[vars$
|
12881
|
+
[vars$D.knobColor]: globalRefs$r.colors.surface.light,
|
12882
|
+
[vars$D.trackBorderColor]: globalRefs$r.colors.surface.light,
|
12883
|
+
[vars$D.trackBackgroundColor]: globalRefs$r.colors.surface.main,
|
12884
|
+
[vars$D.labelTextColor]: refs.labelTextColor,
|
12882
12885
|
_checked: {
|
12883
|
-
[vars$
|
12884
|
-
[vars$
|
12886
|
+
[vars$D.knobColor]: globalRefs$r.colors.surface.light,
|
12887
|
+
[vars$D.trackBackgroundColor]: globalRefs$r.colors.surface.main,
|
12885
12888
|
},
|
12886
12889
|
},
|
12887
12890
|
|
12888
12891
|
_invalid: {
|
12889
|
-
[vars$
|
12890
|
-
[vars$
|
12892
|
+
[vars$D.trackBorderColor]: globalRefs$r.colors.error.main,
|
12893
|
+
[vars$D.knobColor]: globalRefs$r.colors.error.main,
|
12891
12894
|
},
|
12892
12895
|
};
|
12893
12896
|
|
12894
12897
|
var switchToggle$1 = /*#__PURE__*/Object.freeze({
|
12895
12898
|
__proto__: null,
|
12896
12899
|
default: switchToggle,
|
12897
|
-
vars: vars$
|
12900
|
+
vars: vars$D
|
12898
12901
|
});
|
12899
12902
|
|
12900
|
-
const globalRefs$
|
12903
|
+
const globalRefs$q = getThemeRefs(globals);
|
12901
12904
|
|
12902
|
-
const compVars$
|
12905
|
+
const compVars$5 = ContainerClass.cssVarList;
|
12903
12906
|
|
12904
12907
|
const verticalAlignment = {
|
12905
12908
|
start: { verticalAlignment: 'start' },
|
@@ -12913,269 +12916,269 @@ const horizontalAlignment = {
|
|
12913
12916
|
end: { horizontalAlignment: 'end' },
|
12914
12917
|
};
|
12915
12918
|
|
12916
|
-
const [helperTheme$
|
12919
|
+
const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
|
12917
12920
|
{
|
12918
12921
|
verticalAlignment,
|
12919
12922
|
horizontalAlignment,
|
12920
12923
|
shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
|
12921
12924
|
},
|
12922
|
-
componentName$
|
12925
|
+
componentName$T
|
12923
12926
|
);
|
12924
12927
|
|
12925
|
-
const { shadowColor: shadowColor$
|
12928
|
+
const { shadowColor: shadowColor$2 } = helperRefs$3;
|
12926
12929
|
|
12927
12930
|
const container = {
|
12928
|
-
...helperTheme$
|
12931
|
+
...helperTheme$3,
|
12929
12932
|
|
12930
|
-
[compVars$
|
12931
|
-
[compVars$
|
12932
|
-
[compVars$
|
12933
|
-
[compVars$
|
12934
|
-
[compVars$
|
12935
|
-
[compVars$
|
12936
|
-
[compVars$
|
12933
|
+
[compVars$5.itemsGrow]: '0',
|
12934
|
+
[compVars$5.hostWidth]: '100%',
|
12935
|
+
[compVars$5.boxShadow]: 'none',
|
12936
|
+
[compVars$5.backgroundColor]: globalRefs$q.colors.surface.main,
|
12937
|
+
[compVars$5.color]: globalRefs$q.colors.surface.contrast,
|
12938
|
+
[compVars$5.borderRadius]: '0px',
|
12939
|
+
[compVars$5.hostDirection]: globalRefs$q.direction,
|
12937
12940
|
|
12938
12941
|
verticalPadding: {
|
12939
|
-
sm: { [compVars$
|
12940
|
-
md: { [compVars$
|
12941
|
-
lg: { [compVars$
|
12942
|
+
sm: { [compVars$5.verticalPadding]: '5px' },
|
12943
|
+
md: { [compVars$5.verticalPadding]: '10px' },
|
12944
|
+
lg: { [compVars$5.verticalPadding]: '20px' },
|
12942
12945
|
},
|
12943
12946
|
|
12944
12947
|
horizontalPadding: {
|
12945
|
-
sm: { [compVars$
|
12946
|
-
md: { [compVars$
|
12947
|
-
lg: { [compVars$
|
12948
|
+
sm: { [compVars$5.horizontalPadding]: '5px' },
|
12949
|
+
md: { [compVars$5.horizontalPadding]: '10px' },
|
12950
|
+
lg: { [compVars$5.horizontalPadding]: '20px' },
|
12948
12951
|
},
|
12949
12952
|
|
12950
12953
|
direction: {
|
12951
12954
|
row: {
|
12952
|
-
[compVars$
|
12953
|
-
[compVars$
|
12954
|
-
[compVars$
|
12955
|
-
[compVars$
|
12955
|
+
[compVars$5.flexDirection]: 'row',
|
12956
|
+
[compVars$5.alignItems]: helperRefs$3.verticalAlignment,
|
12957
|
+
[compVars$5.justifyContent]: helperRefs$3.horizontalAlignment,
|
12958
|
+
[compVars$5.flexWrap]: 'wrap',
|
12956
12959
|
horizontalAlignment: {
|
12957
12960
|
spaceBetween: {
|
12958
|
-
[helperVars$
|
12961
|
+
[helperVars$3.horizontalAlignment]: 'space-between',
|
12959
12962
|
},
|
12960
12963
|
},
|
12961
12964
|
},
|
12962
12965
|
column: {
|
12963
|
-
[compVars$
|
12964
|
-
[compVars$
|
12965
|
-
[compVars$
|
12966
|
+
[compVars$5.flexDirection]: 'column',
|
12967
|
+
[compVars$5.alignItems]: helperRefs$3.horizontalAlignment,
|
12968
|
+
[compVars$5.justifyContent]: helperRefs$3.verticalAlignment,
|
12966
12969
|
verticalAlignment: {
|
12967
12970
|
spaceBetween: {
|
12968
|
-
[helperVars$
|
12971
|
+
[helperVars$3.verticalAlignment]: 'space-between',
|
12969
12972
|
},
|
12970
12973
|
},
|
12971
12974
|
},
|
12972
12975
|
},
|
12973
12976
|
|
12974
12977
|
spaceBetween: {
|
12975
|
-
sm: { [compVars$
|
12976
|
-
md: { [compVars$
|
12977
|
-
lg: { [compVars$
|
12978
|
+
sm: { [compVars$5.gap]: '10px' },
|
12979
|
+
md: { [compVars$5.gap]: '20px' },
|
12980
|
+
lg: { [compVars$5.gap]: '30px' },
|
12978
12981
|
},
|
12979
12982
|
|
12980
12983
|
shadow: {
|
12981
12984
|
sm: {
|
12982
|
-
[compVars$
|
12985
|
+
[compVars$5.boxShadow]: `${globalRefs$q.shadow.wide.sm} ${shadowColor$2}, ${globalRefs$q.shadow.narrow.sm} ${shadowColor$2}`,
|
12983
12986
|
},
|
12984
12987
|
md: {
|
12985
|
-
[compVars$
|
12988
|
+
[compVars$5.boxShadow]: `${globalRefs$q.shadow.wide.md} ${shadowColor$2}, ${globalRefs$q.shadow.narrow.md} ${shadowColor$2}`,
|
12986
12989
|
},
|
12987
12990
|
lg: {
|
12988
|
-
[compVars$
|
12991
|
+
[compVars$5.boxShadow]: `${globalRefs$q.shadow.wide.lg} ${shadowColor$2}, ${globalRefs$q.shadow.narrow.lg} ${shadowColor$2}`,
|
12989
12992
|
},
|
12990
12993
|
xl: {
|
12991
|
-
[compVars$
|
12994
|
+
[compVars$5.boxShadow]: `${globalRefs$q.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$q.shadow.narrow.xl} ${shadowColor$2}`,
|
12992
12995
|
},
|
12993
12996
|
'2xl': {
|
12994
|
-
[helperVars$
|
12995
|
-
[compVars$
|
12997
|
+
[helperVars$3.shadowColor]: '#00000050', // mimic daisyUI shadow settings
|
12998
|
+
[compVars$5.boxShadow]: `${globalRefs$q.shadow.wide['2xl']} ${shadowColor$2}`,
|
12996
12999
|
},
|
12997
13000
|
},
|
12998
13001
|
|
12999
13002
|
borderRadius: {
|
13000
|
-
sm: { [compVars$
|
13001
|
-
md: { [compVars$
|
13002
|
-
lg: { [compVars$
|
13003
|
-
xl: { [compVars$
|
13004
|
-
'2xl': { [compVars$
|
13005
|
-
'3xl': { [compVars$
|
13003
|
+
sm: { [compVars$5.borderRadius]: globalRefs$q.radius.sm },
|
13004
|
+
md: { [compVars$5.borderRadius]: globalRefs$q.radius.md },
|
13005
|
+
lg: { [compVars$5.borderRadius]: globalRefs$q.radius.lg },
|
13006
|
+
xl: { [compVars$5.borderRadius]: globalRefs$q.radius.xl },
|
13007
|
+
'2xl': { [compVars$5.borderRadius]: globalRefs$q.radius['2xl'] },
|
13008
|
+
'3xl': { [compVars$5.borderRadius]: globalRefs$q.radius['3xl'] },
|
13006
13009
|
},
|
13007
13010
|
};
|
13008
13011
|
|
13009
|
-
const vars$
|
13010
|
-
...compVars$
|
13011
|
-
...helperVars$
|
13012
|
+
const vars$C = {
|
13013
|
+
...compVars$5,
|
13014
|
+
...helperVars$3,
|
13012
13015
|
};
|
13013
13016
|
|
13014
13017
|
var container$1 = /*#__PURE__*/Object.freeze({
|
13015
13018
|
__proto__: null,
|
13016
13019
|
default: container,
|
13017
|
-
vars: vars$
|
13020
|
+
vars: vars$C
|
13018
13021
|
});
|
13019
13022
|
|
13020
|
-
const vars$
|
13023
|
+
const vars$B = LogoClass.cssVarList;
|
13021
13024
|
|
13022
13025
|
const logo$2 = {
|
13023
|
-
[vars$
|
13026
|
+
[vars$B.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
|
13024
13027
|
};
|
13025
13028
|
|
13026
13029
|
var logo$3 = /*#__PURE__*/Object.freeze({
|
13027
13030
|
__proto__: null,
|
13028
13031
|
default: logo$2,
|
13029
|
-
vars: vars$
|
13032
|
+
vars: vars$B
|
13030
13033
|
});
|
13031
13034
|
|
13032
|
-
const vars$
|
13035
|
+
const vars$A = TotpImageClass.cssVarList;
|
13033
13036
|
|
13034
13037
|
const logo$1 = {
|
13035
|
-
[vars$
|
13038
|
+
[vars$A.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
|
13036
13039
|
};
|
13037
13040
|
|
13038
13041
|
var totpImage = /*#__PURE__*/Object.freeze({
|
13039
13042
|
__proto__: null,
|
13040
13043
|
default: logo$1,
|
13041
|
-
vars: vars$
|
13044
|
+
vars: vars$A
|
13042
13045
|
});
|
13043
13046
|
|
13044
|
-
const vars$
|
13047
|
+
const vars$z = NotpImageClass.cssVarList;
|
13045
13048
|
|
13046
13049
|
const logo = {
|
13047
|
-
[vars$
|
13050
|
+
[vars$z.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
|
13048
13051
|
};
|
13049
13052
|
|
13050
13053
|
var notpImage = /*#__PURE__*/Object.freeze({
|
13051
13054
|
__proto__: null,
|
13052
13055
|
default: logo,
|
13053
|
-
vars: vars$
|
13056
|
+
vars: vars$z
|
13054
13057
|
});
|
13055
13058
|
|
13056
|
-
const globalRefs$
|
13057
|
-
const vars$
|
13059
|
+
const globalRefs$p = getThemeRefs(globals);
|
13060
|
+
const vars$y = TextClass.cssVarList;
|
13058
13061
|
|
13059
13062
|
const text = {
|
13060
|
-
[vars$
|
13061
|
-
[vars$
|
13062
|
-
[vars$
|
13063
|
-
[vars$
|
13063
|
+
[vars$y.hostDirection]: globalRefs$p.direction,
|
13064
|
+
[vars$y.textLineHeight]: '1.35em',
|
13065
|
+
[vars$y.textAlign]: 'left',
|
13066
|
+
[vars$y.textColor]: globalRefs$p.colors.surface.dark,
|
13064
13067
|
|
13065
13068
|
variant: {
|
13066
13069
|
h1: {
|
13067
|
-
[vars$
|
13068
|
-
[vars$
|
13069
|
-
[vars$
|
13070
|
+
[vars$y.fontSize]: globalRefs$p.typography.h1.size,
|
13071
|
+
[vars$y.fontWeight]: globalRefs$p.typography.h1.weight,
|
13072
|
+
[vars$y.fontFamily]: globalRefs$p.typography.h1.font,
|
13070
13073
|
},
|
13071
13074
|
h2: {
|
13072
|
-
[vars$
|
13073
|
-
[vars$
|
13074
|
-
[vars$
|
13075
|
+
[vars$y.fontSize]: globalRefs$p.typography.h2.size,
|
13076
|
+
[vars$y.fontWeight]: globalRefs$p.typography.h2.weight,
|
13077
|
+
[vars$y.fontFamily]: globalRefs$p.typography.h2.font,
|
13075
13078
|
},
|
13076
13079
|
h3: {
|
13077
|
-
[vars$
|
13078
|
-
[vars$
|
13079
|
-
[vars$
|
13080
|
+
[vars$y.fontSize]: globalRefs$p.typography.h3.size,
|
13081
|
+
[vars$y.fontWeight]: globalRefs$p.typography.h3.weight,
|
13082
|
+
[vars$y.fontFamily]: globalRefs$p.typography.h3.font,
|
13080
13083
|
},
|
13081
13084
|
subtitle1: {
|
13082
|
-
[vars$
|
13083
|
-
[vars$
|
13084
|
-
[vars$
|
13085
|
+
[vars$y.fontSize]: globalRefs$p.typography.subtitle1.size,
|
13086
|
+
[vars$y.fontWeight]: globalRefs$p.typography.subtitle1.weight,
|
13087
|
+
[vars$y.fontFamily]: globalRefs$p.typography.subtitle1.font,
|
13085
13088
|
},
|
13086
13089
|
subtitle2: {
|
13087
|
-
[vars$
|
13088
|
-
[vars$
|
13089
|
-
[vars$
|
13090
|
+
[vars$y.fontSize]: globalRefs$p.typography.subtitle2.size,
|
13091
|
+
[vars$y.fontWeight]: globalRefs$p.typography.subtitle2.weight,
|
13092
|
+
[vars$y.fontFamily]: globalRefs$p.typography.subtitle2.font,
|
13090
13093
|
},
|
13091
13094
|
body1: {
|
13092
|
-
[vars$
|
13093
|
-
[vars$
|
13094
|
-
[vars$
|
13095
|
+
[vars$y.fontSize]: globalRefs$p.typography.body1.size,
|
13096
|
+
[vars$y.fontWeight]: globalRefs$p.typography.body1.weight,
|
13097
|
+
[vars$y.fontFamily]: globalRefs$p.typography.body1.font,
|
13095
13098
|
},
|
13096
13099
|
body2: {
|
13097
|
-
[vars$
|
13098
|
-
[vars$
|
13099
|
-
[vars$
|
13100
|
+
[vars$y.fontSize]: globalRefs$p.typography.body2.size,
|
13101
|
+
[vars$y.fontWeight]: globalRefs$p.typography.body2.weight,
|
13102
|
+
[vars$y.fontFamily]: globalRefs$p.typography.body2.font,
|
13100
13103
|
},
|
13101
13104
|
},
|
13102
13105
|
|
13103
13106
|
mode: {
|
13104
13107
|
primary: {
|
13105
|
-
[vars$
|
13108
|
+
[vars$y.textColor]: globalRefs$p.colors.surface.contrast,
|
13106
13109
|
},
|
13107
13110
|
secondary: {
|
13108
|
-
[vars$
|
13111
|
+
[vars$y.textColor]: globalRefs$p.colors.surface.dark,
|
13109
13112
|
},
|
13110
13113
|
error: {
|
13111
|
-
[vars$
|
13114
|
+
[vars$y.textColor]: globalRefs$p.colors.error.main,
|
13112
13115
|
},
|
13113
13116
|
success: {
|
13114
|
-
[vars$
|
13117
|
+
[vars$y.textColor]: globalRefs$p.colors.success.main,
|
13115
13118
|
},
|
13116
13119
|
},
|
13117
13120
|
|
13118
13121
|
textAlign: {
|
13119
|
-
right: { [vars$
|
13120
|
-
left: { [vars$
|
13121
|
-
center: { [vars$
|
13122
|
+
right: { [vars$y.textAlign]: 'right' },
|
13123
|
+
left: { [vars$y.textAlign]: 'left' },
|
13124
|
+
center: { [vars$y.textAlign]: 'center' },
|
13122
13125
|
},
|
13123
13126
|
|
13124
13127
|
_fullWidth: {
|
13125
|
-
[vars$
|
13128
|
+
[vars$y.hostWidth]: '100%',
|
13126
13129
|
},
|
13127
13130
|
|
13128
13131
|
_italic: {
|
13129
|
-
[vars$
|
13132
|
+
[vars$y.fontStyle]: 'italic',
|
13130
13133
|
},
|
13131
13134
|
|
13132
13135
|
_uppercase: {
|
13133
|
-
[vars$
|
13136
|
+
[vars$y.textTransform]: 'uppercase',
|
13134
13137
|
},
|
13135
13138
|
|
13136
13139
|
_lowercase: {
|
13137
|
-
[vars$
|
13140
|
+
[vars$y.textTransform]: 'lowercase',
|
13138
13141
|
},
|
13139
13142
|
};
|
13140
13143
|
|
13141
13144
|
var text$1 = /*#__PURE__*/Object.freeze({
|
13142
13145
|
__proto__: null,
|
13143
13146
|
default: text,
|
13144
|
-
vars: vars$
|
13147
|
+
vars: vars$y
|
13145
13148
|
});
|
13146
13149
|
|
13147
|
-
const globalRefs$
|
13148
|
-
const vars$
|
13150
|
+
const globalRefs$o = getThemeRefs(globals);
|
13151
|
+
const vars$x = LinkClass.cssVarList;
|
13149
13152
|
|
13150
13153
|
const link = {
|
13151
|
-
[vars$
|
13152
|
-
[vars$
|
13154
|
+
[vars$x.hostDirection]: globalRefs$o.direction,
|
13155
|
+
[vars$x.cursor]: 'pointer',
|
13153
13156
|
|
13154
|
-
[vars$
|
13157
|
+
[vars$x.textColor]: globalRefs$o.colors.primary.main,
|
13155
13158
|
|
13156
13159
|
textAlign: {
|
13157
|
-
right: { [vars$
|
13158
|
-
left: { [vars$
|
13159
|
-
center: { [vars$
|
13160
|
+
right: { [vars$x.textAlign]: 'right' },
|
13161
|
+
left: { [vars$x.textAlign]: 'left' },
|
13162
|
+
center: { [vars$x.textAlign]: 'center' },
|
13160
13163
|
},
|
13161
13164
|
|
13162
13165
|
_fullWidth: {
|
13163
|
-
[vars$
|
13166
|
+
[vars$x.hostWidth]: '100%',
|
13164
13167
|
},
|
13165
13168
|
|
13166
13169
|
_hover: {
|
13167
|
-
[vars$
|
13170
|
+
[vars$x.textDecoration]: 'underline',
|
13168
13171
|
},
|
13169
13172
|
|
13170
13173
|
mode: {
|
13171
13174
|
secondary: {
|
13172
|
-
[vars$
|
13175
|
+
[vars$x.textColor]: globalRefs$o.colors.secondary.main,
|
13173
13176
|
},
|
13174
13177
|
error: {
|
13175
|
-
[vars$
|
13178
|
+
[vars$x.textColor]: globalRefs$o.colors.error.main,
|
13176
13179
|
},
|
13177
13180
|
success: {
|
13178
|
-
[vars$
|
13181
|
+
[vars$x.textColor]: globalRefs$o.colors.success.main,
|
13179
13182
|
},
|
13180
13183
|
},
|
13181
13184
|
};
|
@@ -13183,333 +13186,333 @@ const link = {
|
|
13183
13186
|
var link$1 = /*#__PURE__*/Object.freeze({
|
13184
13187
|
__proto__: null,
|
13185
13188
|
default: link,
|
13186
|
-
vars: vars$
|
13189
|
+
vars: vars$x
|
13187
13190
|
});
|
13188
13191
|
|
13189
|
-
const globalRefs$
|
13190
|
-
const vars$
|
13192
|
+
const globalRefs$n = getThemeRefs(globals);
|
13193
|
+
const vars$w = EnrichedTextClass.cssVarList;
|
13191
13194
|
|
13192
13195
|
const enrichedText = {
|
13193
|
-
[vars$
|
13194
|
-
[vars$
|
13196
|
+
[vars$w.hostDirection]: globalRefs$n.direction,
|
13197
|
+
[vars$w.hostWidth]: useVar(vars$y.hostWidth),
|
13195
13198
|
|
13196
|
-
[vars$
|
13197
|
-
[vars$
|
13198
|
-
[vars$
|
13199
|
+
[vars$w.textLineHeight]: useVar(vars$y.textLineHeight),
|
13200
|
+
[vars$w.textColor]: useVar(vars$y.textColor),
|
13201
|
+
[vars$w.textAlign]: useVar(vars$y.textAlign),
|
13199
13202
|
|
13200
|
-
[vars$
|
13201
|
-
[vars$
|
13202
|
-
[vars$
|
13203
|
+
[vars$w.fontSize]: useVar(vars$y.fontSize),
|
13204
|
+
[vars$w.fontWeight]: useVar(vars$y.fontWeight),
|
13205
|
+
[vars$w.fontFamily]: useVar(vars$y.fontFamily),
|
13203
13206
|
|
13204
|
-
[vars$
|
13205
|
-
[vars$
|
13206
|
-
[vars$
|
13207
|
+
[vars$w.linkColor]: useVar(vars$x.textColor),
|
13208
|
+
[vars$w.linkTextDecoration]: 'none',
|
13209
|
+
[vars$w.linkHoverTextDecoration]: 'underline',
|
13207
13210
|
|
13208
|
-
[vars$
|
13209
|
-
[vars$
|
13210
|
-
[vars$
|
13211
|
+
[vars$w.fontWeightBold]: '900',
|
13212
|
+
[vars$w.minWidth]: '0.25em',
|
13213
|
+
[vars$w.minHeight]: '1.35em',
|
13211
13214
|
};
|
13212
13215
|
|
13213
13216
|
var enrichedText$1 = /*#__PURE__*/Object.freeze({
|
13214
13217
|
__proto__: null,
|
13215
13218
|
default: enrichedText,
|
13216
|
-
vars: vars$
|
13219
|
+
vars: vars$w
|
13217
13220
|
});
|
13218
13221
|
|
13219
|
-
const globalRefs$
|
13220
|
-
const compVars$
|
13222
|
+
const globalRefs$m = getThemeRefs(globals);
|
13223
|
+
const compVars$4 = DividerClass.cssVarList;
|
13221
13224
|
|
13222
|
-
const [helperTheme$
|
13225
|
+
const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
|
13223
13226
|
{
|
13224
13227
|
thickness: '2px',
|
13225
13228
|
spacing: '10px',
|
13226
13229
|
},
|
13227
|
-
componentName$
|
13230
|
+
componentName$R
|
13228
13231
|
);
|
13229
13232
|
|
13230
13233
|
const divider = {
|
13231
|
-
...helperTheme$
|
13234
|
+
...helperTheme$2,
|
13232
13235
|
|
13233
|
-
[compVars$
|
13234
|
-
[compVars$
|
13235
|
-
[compVars$
|
13236
|
-
[compVars$
|
13237
|
-
[compVars$
|
13238
|
-
[compVars$
|
13239
|
-
[compVars$
|
13240
|
-
[compVars$
|
13241
|
-
[compVars$
|
13242
|
-
[compVars$
|
13243
|
-
[compVars$
|
13244
|
-
[compVars$
|
13236
|
+
[compVars$4.hostDirection]: globalRefs$m.direction,
|
13237
|
+
[compVars$4.alignItems]: 'center',
|
13238
|
+
[compVars$4.flexDirection]: 'row',
|
13239
|
+
[compVars$4.alignSelf]: 'stretch',
|
13240
|
+
[compVars$4.hostWidth]: '100%',
|
13241
|
+
[compVars$4.stripeColor]: globalRefs$m.colors.surface.light,
|
13242
|
+
[compVars$4.stripeColorOpacity]: '0.5',
|
13243
|
+
[compVars$4.stripeHorizontalThickness]: helperRefs$2.thickness,
|
13244
|
+
[compVars$4.labelTextWidth]: 'fit-content',
|
13245
|
+
[compVars$4.labelTextMaxWidth]: 'calc(100% - 100px)',
|
13246
|
+
[compVars$4.labelTextHorizontalSpacing]: helperRefs$2.spacing,
|
13247
|
+
[compVars$4.textAlign]: 'center',
|
13245
13248
|
|
13246
13249
|
_vertical: {
|
13247
|
-
[compVars$
|
13248
|
-
[compVars$
|
13249
|
-
[compVars$
|
13250
|
-
[compVars$
|
13251
|
-
[compVars$
|
13252
|
-
[compVars$
|
13253
|
-
[compVars$
|
13254
|
-
[compVars$
|
13250
|
+
[compVars$4.minHeight]: '200px',
|
13251
|
+
[compVars$4.flexDirection]: 'column',
|
13252
|
+
[compVars$4.hostWidth]: 'fit-content',
|
13253
|
+
[compVars$4.hostPadding]: `0 calc(${helperRefs$2.thickness} * 3)`,
|
13254
|
+
[compVars$4.stripeVerticalThickness]: helperRefs$2.thickness,
|
13255
|
+
[compVars$4.labelTextWidth]: 'fit-content',
|
13256
|
+
[compVars$4.labelTextMaxWidth]: '100%',
|
13257
|
+
[compVars$4.labelTextVerticalSpacing]: helperRefs$2.spacing,
|
13255
13258
|
},
|
13256
13259
|
};
|
13257
13260
|
|
13258
|
-
const vars$
|
13259
|
-
...compVars$
|
13260
|
-
...helperVars$
|
13261
|
+
const vars$v = {
|
13262
|
+
...compVars$4,
|
13263
|
+
...helperVars$2,
|
13261
13264
|
};
|
13262
13265
|
|
13263
13266
|
var divider$1 = /*#__PURE__*/Object.freeze({
|
13264
13267
|
__proto__: null,
|
13265
13268
|
default: divider,
|
13266
|
-
vars: vars$
|
13269
|
+
vars: vars$v
|
13267
13270
|
});
|
13268
13271
|
|
13269
|
-
const vars$
|
13272
|
+
const vars$u = PasscodeClass.cssVarList;
|
13270
13273
|
|
13271
13274
|
const passcode = {
|
13272
|
-
[vars$
|
13273
|
-
[vars$
|
13274
|
-
[vars$
|
13275
|
-
[vars$
|
13276
|
-
[vars$
|
13277
|
-
[vars$
|
13278
|
-
[vars$
|
13279
|
-
[vars$
|
13280
|
-
[vars$
|
13281
|
-
[vars$
|
13282
|
-
[vars$
|
13283
|
-
[vars$
|
13284
|
-
[vars$
|
13285
|
-
[vars$
|
13286
|
-
[vars$
|
13275
|
+
[vars$u.hostDirection]: refs.direction,
|
13276
|
+
[vars$u.fontFamily]: refs.fontFamily,
|
13277
|
+
[vars$u.fontSize]: refs.fontSize,
|
13278
|
+
[vars$u.labelTextColor]: refs.labelTextColor,
|
13279
|
+
[vars$u.labelRequiredIndicator]: refs.requiredIndicator,
|
13280
|
+
[vars$u.errorMessageTextColor]: refs.errorMessageTextColor,
|
13281
|
+
[vars$u.digitValueTextColor]: refs.valueTextColor,
|
13282
|
+
[vars$u.digitPadding]: '0',
|
13283
|
+
[vars$u.digitTextAlign]: 'center',
|
13284
|
+
[vars$u.digitSpacing]: '4px',
|
13285
|
+
[vars$u.hostWidth]: refs.width,
|
13286
|
+
[vars$u.digitOutlineColor]: 'transparent',
|
13287
|
+
[vars$u.digitOutlineWidth]: refs.outlineWidth,
|
13288
|
+
[vars$u.focusedDigitFieldOutlineColor]: refs.outlineColor,
|
13289
|
+
[vars$u.digitSize]: refs.inputHeight,
|
13287
13290
|
|
13288
13291
|
size: {
|
13289
|
-
xs: { [vars$
|
13290
|
-
sm: { [vars$
|
13291
|
-
md: { [vars$
|
13292
|
-
lg: { [vars$
|
13292
|
+
xs: { [vars$u.spinnerSize]: '15px' },
|
13293
|
+
sm: { [vars$u.spinnerSize]: '20px' },
|
13294
|
+
md: { [vars$u.spinnerSize]: '20px' },
|
13295
|
+
lg: { [vars$u.spinnerSize]: '20px' },
|
13293
13296
|
},
|
13294
13297
|
|
13295
13298
|
_hideCursor: {
|
13296
|
-
[vars$
|
13299
|
+
[vars$u.digitCaretTextColor]: 'transparent',
|
13297
13300
|
},
|
13298
13301
|
|
13299
13302
|
_loading: {
|
13300
|
-
[vars$
|
13303
|
+
[vars$u.overlayOpacity]: refs.overlayOpacity,
|
13301
13304
|
},
|
13302
13305
|
};
|
13303
13306
|
|
13304
13307
|
var passcode$1 = /*#__PURE__*/Object.freeze({
|
13305
13308
|
__proto__: null,
|
13306
13309
|
default: passcode,
|
13307
|
-
vars: vars$
|
13310
|
+
vars: vars$u
|
13308
13311
|
});
|
13309
13312
|
|
13310
|
-
const globalRefs$
|
13311
|
-
const vars$
|
13313
|
+
const globalRefs$l = getThemeRefs(globals);
|
13314
|
+
const vars$t = LoaderLinearClass.cssVarList;
|
13312
13315
|
|
13313
13316
|
const loaderLinear = {
|
13314
|
-
[vars$
|
13315
|
-
[vars$
|
13317
|
+
[vars$t.hostDisplay]: 'inline-block',
|
13318
|
+
[vars$t.hostWidth]: '100%',
|
13316
13319
|
|
13317
|
-
[vars$
|
13318
|
-
[vars$
|
13320
|
+
[vars$t.barColor]: globalRefs$l.colors.surface.contrast,
|
13321
|
+
[vars$t.barWidth]: '20%',
|
13319
13322
|
|
13320
|
-
[vars$
|
13321
|
-
[vars$
|
13323
|
+
[vars$t.barBackgroundColor]: globalRefs$l.colors.surface.light,
|
13324
|
+
[vars$t.barBorderRadius]: '4px',
|
13322
13325
|
|
13323
|
-
[vars$
|
13324
|
-
[vars$
|
13325
|
-
[vars$
|
13326
|
-
[vars$
|
13326
|
+
[vars$t.animationDuration]: '2s',
|
13327
|
+
[vars$t.animationTimingFunction]: 'linear',
|
13328
|
+
[vars$t.animationIterationCount]: 'infinite',
|
13329
|
+
[vars$t.verticalPadding]: '0.25em',
|
13327
13330
|
|
13328
13331
|
size: {
|
13329
|
-
xs: { [vars$
|
13330
|
-
sm: { [vars$
|
13331
|
-
md: { [vars$
|
13332
|
-
lg: { [vars$
|
13332
|
+
xs: { [vars$t.barHeight]: '2px' },
|
13333
|
+
sm: { [vars$t.barHeight]: '4px' },
|
13334
|
+
md: { [vars$t.barHeight]: '6px' },
|
13335
|
+
lg: { [vars$t.barHeight]: '8px' },
|
13333
13336
|
},
|
13334
13337
|
|
13335
13338
|
mode: {
|
13336
13339
|
primary: {
|
13337
|
-
[vars$
|
13340
|
+
[vars$t.barColor]: globalRefs$l.colors.primary.main,
|
13338
13341
|
},
|
13339
13342
|
secondary: {
|
13340
|
-
[vars$
|
13343
|
+
[vars$t.barColor]: globalRefs$l.colors.secondary.main,
|
13341
13344
|
},
|
13342
13345
|
},
|
13343
13346
|
|
13344
13347
|
_hidden: {
|
13345
|
-
[vars$
|
13348
|
+
[vars$t.hostDisplay]: 'none',
|
13346
13349
|
},
|
13347
13350
|
};
|
13348
13351
|
|
13349
13352
|
var loaderLinear$1 = /*#__PURE__*/Object.freeze({
|
13350
13353
|
__proto__: null,
|
13351
13354
|
default: loaderLinear,
|
13352
|
-
vars: vars$
|
13355
|
+
vars: vars$t
|
13353
13356
|
});
|
13354
13357
|
|
13355
|
-
const globalRefs$
|
13356
|
-
const compVars$
|
13358
|
+
const globalRefs$k = getThemeRefs(globals);
|
13359
|
+
const compVars$3 = LoaderRadialClass.cssVarList;
|
13357
13360
|
|
13358
|
-
const [helperTheme, helperRefs, helperVars] = createHelperVars(
|
13361
|
+
const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
|
13359
13362
|
{
|
13360
|
-
spinnerColor: globalRefs$
|
13363
|
+
spinnerColor: globalRefs$k.colors.surface.contrast,
|
13361
13364
|
mode: {
|
13362
13365
|
primary: {
|
13363
|
-
spinnerColor: globalRefs$
|
13366
|
+
spinnerColor: globalRefs$k.colors.primary.main,
|
13364
13367
|
},
|
13365
13368
|
secondary: {
|
13366
|
-
spinnerColor: globalRefs$
|
13369
|
+
spinnerColor: globalRefs$k.colors.secondary.main,
|
13367
13370
|
},
|
13368
13371
|
},
|
13369
13372
|
},
|
13370
|
-
componentName$
|
13373
|
+
componentName$U
|
13371
13374
|
);
|
13372
13375
|
|
13373
13376
|
const loaderRadial = {
|
13374
|
-
...helperTheme,
|
13377
|
+
...helperTheme$1,
|
13375
13378
|
|
13376
|
-
[compVars$
|
13377
|
-
[compVars$
|
13378
|
-
[compVars$
|
13379
|
-
[compVars$
|
13380
|
-
[compVars$
|
13381
|
-
[compVars$
|
13382
|
-
[compVars$
|
13383
|
-
[compVars$
|
13384
|
-
[compVars$
|
13385
|
-
[compVars$
|
13379
|
+
[compVars$3.animationDuration]: '2s',
|
13380
|
+
[compVars$3.animationTimingFunction]: 'linear',
|
13381
|
+
[compVars$3.animationIterationCount]: 'infinite',
|
13382
|
+
[compVars$3.spinnerBorderStyle]: 'solid',
|
13383
|
+
[compVars$3.spinnerBorderWidth]: '0.2em',
|
13384
|
+
[compVars$3.spinnerBorderRadius]: '50%',
|
13385
|
+
[compVars$3.spinnerQuadrant1Color]: helperRefs$1.spinnerColor,
|
13386
|
+
[compVars$3.spinnerQuadrant2Color]: 'transparent',
|
13387
|
+
[compVars$3.spinnerQuadrant3Color]: helperRefs$1.spinnerColor,
|
13388
|
+
[compVars$3.spinnerQuadrant4Color]: 'transparent',
|
13386
13389
|
|
13387
13390
|
size: {
|
13388
|
-
xs: { [compVars$
|
13389
|
-
sm: { [compVars$
|
13390
|
-
md: { [compVars$
|
13391
|
-
lg: { [compVars$
|
13392
|
-
xl: { [compVars$
|
13391
|
+
xs: { [compVars$3.spinnerSize]: '20px' },
|
13392
|
+
sm: { [compVars$3.spinnerSize]: '30px' },
|
13393
|
+
md: { [compVars$3.spinnerSize]: '40px' },
|
13394
|
+
lg: { [compVars$3.spinnerSize]: '60px' },
|
13395
|
+
xl: { [compVars$3.spinnerSize]: '80px' },
|
13393
13396
|
},
|
13394
13397
|
|
13395
13398
|
_hidden: {
|
13396
|
-
[compVars$
|
13399
|
+
[compVars$3.hostDisplay]: 'none',
|
13397
13400
|
},
|
13398
13401
|
};
|
13399
|
-
const vars$
|
13400
|
-
...compVars$
|
13401
|
-
...helperVars,
|
13402
|
+
const vars$s = {
|
13403
|
+
...compVars$3,
|
13404
|
+
...helperVars$1,
|
13402
13405
|
};
|
13403
13406
|
|
13404
13407
|
var loaderRadial$1 = /*#__PURE__*/Object.freeze({
|
13405
13408
|
__proto__: null,
|
13406
13409
|
default: loaderRadial,
|
13407
|
-
vars: vars$
|
13410
|
+
vars: vars$s
|
13408
13411
|
});
|
13409
13412
|
|
13410
|
-
const globalRefs$
|
13411
|
-
const vars$
|
13413
|
+
const globalRefs$j = getThemeRefs(globals);
|
13414
|
+
const vars$r = ComboBoxClass.cssVarList;
|
13412
13415
|
|
13413
13416
|
const comboBox = {
|
13414
|
-
[vars$
|
13415
|
-
[vars$
|
13416
|
-
[vars$
|
13417
|
-
[vars$
|
13418
|
-
[vars$
|
13419
|
-
[vars$
|
13420
|
-
[vars$
|
13421
|
-
[vars$
|
13422
|
-
[vars$
|
13423
|
-
[vars$
|
13424
|
-
[vars$
|
13425
|
-
[vars$
|
13426
|
-
[vars$
|
13427
|
-
[vars$
|
13428
|
-
[vars$
|
13429
|
-
[vars$
|
13430
|
-
[vars$
|
13431
|
-
[vars$
|
13432
|
-
[vars$
|
13433
|
-
[vars$
|
13434
|
-
[vars$
|
13435
|
-
[vars$
|
13436
|
-
[vars$
|
13437
|
-
[vars$
|
13438
|
-
[vars$
|
13439
|
-
[vars$
|
13440
|
-
[vars$
|
13441
|
-
[vars$
|
13442
|
-
[vars$
|
13443
|
-
[vars$
|
13444
|
-
[vars$
|
13445
|
-
[vars$
|
13446
|
-
[vars$
|
13447
|
-
[vars$
|
13448
|
-
[vars$
|
13449
|
-
[vars$
|
13450
|
-
[vars$
|
13451
|
-
[vars$
|
13417
|
+
[vars$r.hostWidth]: refs.width,
|
13418
|
+
[vars$r.hostDirection]: refs.direction,
|
13419
|
+
[vars$r.fontSize]: refs.fontSize,
|
13420
|
+
[vars$r.fontFamily]: refs.fontFamily,
|
13421
|
+
[vars$r.labelFontSize]: refs.labelFontSize,
|
13422
|
+
[vars$r.labelFontWeight]: refs.labelFontWeight,
|
13423
|
+
[vars$r.labelTextColor]: refs.labelTextColor,
|
13424
|
+
[vars$r.errorMessageTextColor]: refs.errorMessageTextColor,
|
13425
|
+
[vars$r.inputBorderColor]: refs.borderColor,
|
13426
|
+
[vars$r.inputBorderWidth]: refs.borderWidth,
|
13427
|
+
[vars$r.inputBorderStyle]: refs.borderStyle,
|
13428
|
+
[vars$r.inputBorderRadius]: refs.borderRadius,
|
13429
|
+
[vars$r.inputOutlineColor]: refs.outlineColor,
|
13430
|
+
[vars$r.inputOutlineOffset]: refs.outlineOffset,
|
13431
|
+
[vars$r.inputOutlineWidth]: refs.outlineWidth,
|
13432
|
+
[vars$r.inputOutlineStyle]: refs.outlineStyle,
|
13433
|
+
[vars$r.labelRequiredIndicator]: refs.requiredIndicator,
|
13434
|
+
[vars$r.inputValueTextColor]: refs.valueTextColor,
|
13435
|
+
[vars$r.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
13436
|
+
[vars$r.inputBackgroundColor]: refs.backgroundColor,
|
13437
|
+
[vars$r.inputHorizontalPadding]: refs.horizontalPadding,
|
13438
|
+
[vars$r.inputHeight]: refs.inputHeight,
|
13439
|
+
[vars$r.inputDropdownButtonColor]: globalRefs$j.colors.surface.dark,
|
13440
|
+
[vars$r.inputDropdownButtonCursor]: 'pointer',
|
13441
|
+
[vars$r.inputDropdownButtonSize]: refs.toggleButtonSize,
|
13442
|
+
[vars$r.inputDropdownButtonOffset]: globalRefs$j.spacing.xs,
|
13443
|
+
[vars$r.overlayItemPaddingInlineStart]: globalRefs$j.spacing.xs,
|
13444
|
+
[vars$r.overlayItemPaddingInlineEnd]: globalRefs$j.spacing.lg,
|
13445
|
+
[vars$r.labelPosition]: refs.labelPosition,
|
13446
|
+
[vars$r.labelTopPosition]: refs.labelTopPosition,
|
13447
|
+
[vars$r.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
13448
|
+
[vars$r.inputTransformY]: refs.inputTransformY,
|
13449
|
+
[vars$r.inputTransition]: refs.inputTransition,
|
13450
|
+
[vars$r.marginInlineStart]: refs.marginInlineStart,
|
13451
|
+
[vars$r.placeholderOpacity]: refs.placeholderOpacity,
|
13452
|
+
[vars$r.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
13453
|
+
[vars$r.valueInputHeight]: refs.valueInputHeight,
|
13454
|
+
[vars$r.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
13452
13455
|
|
13453
13456
|
_readonly: {
|
13454
|
-
[vars$
|
13457
|
+
[vars$r.inputDropdownButtonCursor]: 'default',
|
13455
13458
|
},
|
13456
13459
|
|
13457
13460
|
// Overlay theme exposed via the component:
|
13458
|
-
[vars$
|
13459
|
-
[vars$
|
13460
|
-
[vars$
|
13461
|
-
[vars$
|
13462
|
-
[vars$
|
13463
|
-
[vars$
|
13461
|
+
[vars$r.overlayFontSize]: refs.fontSize,
|
13462
|
+
[vars$r.overlayFontFamily]: refs.fontFamily,
|
13463
|
+
[vars$r.overlayCursor]: 'pointer',
|
13464
|
+
[vars$r.overlayItemBoxShadow]: 'none',
|
13465
|
+
[vars$r.overlayBackground]: refs.backgroundColor,
|
13466
|
+
[vars$r.overlayTextColor]: refs.valueTextColor,
|
13464
13467
|
|
13465
13468
|
// Overlay direct theme:
|
13466
|
-
[vars$
|
13467
|
-
[vars$
|
13469
|
+
[vars$r.overlay.minHeight]: '400px',
|
13470
|
+
[vars$r.overlay.margin]: '0',
|
13468
13471
|
};
|
13469
13472
|
|
13470
13473
|
var comboBox$1 = /*#__PURE__*/Object.freeze({
|
13471
13474
|
__proto__: null,
|
13472
13475
|
comboBox: comboBox,
|
13473
13476
|
default: comboBox,
|
13474
|
-
vars: vars$
|
13477
|
+
vars: vars$r
|
13475
13478
|
});
|
13476
13479
|
|
13477
|
-
const vars$
|
13480
|
+
const vars$q = ImageClass.cssVarList;
|
13478
13481
|
|
13479
13482
|
const image = {};
|
13480
13483
|
|
13481
13484
|
var image$1 = /*#__PURE__*/Object.freeze({
|
13482
13485
|
__proto__: null,
|
13483
13486
|
default: image,
|
13484
|
-
vars: vars$
|
13487
|
+
vars: vars$q
|
13485
13488
|
});
|
13486
13489
|
|
13487
|
-
const vars$
|
13490
|
+
const vars$p = PhoneFieldClass.cssVarList;
|
13488
13491
|
|
13489
13492
|
const phoneField = {
|
13490
|
-
[vars$
|
13491
|
-
[vars$
|
13492
|
-
[vars$
|
13493
|
-
[vars$
|
13494
|
-
[vars$
|
13495
|
-
[vars$
|
13496
|
-
[vars$
|
13497
|
-
[vars$
|
13498
|
-
[vars$
|
13499
|
-
[vars$
|
13500
|
-
[vars$
|
13501
|
-
[vars$
|
13502
|
-
[vars$
|
13503
|
-
[vars$
|
13504
|
-
[vars$
|
13505
|
-
[vars$
|
13506
|
-
[vars$
|
13507
|
-
[vars$
|
13508
|
-
[vars$
|
13509
|
-
[vars$
|
13510
|
-
[vars$
|
13511
|
-
[vars$
|
13512
|
-
[vars$
|
13493
|
+
[vars$p.hostWidth]: refs.width,
|
13494
|
+
[vars$p.hostDirection]: refs.direction,
|
13495
|
+
[vars$p.fontSize]: refs.fontSize,
|
13496
|
+
[vars$p.fontFamily]: refs.fontFamily,
|
13497
|
+
[vars$p.labelTextColor]: refs.labelTextColor,
|
13498
|
+
[vars$p.labelRequiredIndicator]: refs.requiredIndicator,
|
13499
|
+
[vars$p.errorMessageTextColor]: refs.errorMessageTextColor,
|
13500
|
+
[vars$p.inputValueTextColor]: refs.valueTextColor,
|
13501
|
+
[vars$p.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
13502
|
+
[vars$p.inputBorderStyle]: refs.borderStyle,
|
13503
|
+
[vars$p.inputBorderWidth]: refs.borderWidth,
|
13504
|
+
[vars$p.inputBorderColor]: refs.borderColor,
|
13505
|
+
[vars$p.inputBorderRadius]: refs.borderRadius,
|
13506
|
+
[vars$p.inputOutlineStyle]: refs.outlineStyle,
|
13507
|
+
[vars$p.inputOutlineWidth]: refs.outlineWidth,
|
13508
|
+
[vars$p.inputOutlineColor]: refs.outlineColor,
|
13509
|
+
[vars$p.inputOutlineOffset]: refs.outlineOffset,
|
13510
|
+
[vars$p.phoneInputWidth]: refs.minWidth,
|
13511
|
+
[vars$p.countryCodeInputWidth]: '5em',
|
13512
|
+
[vars$p.countryCodeDropdownWidth]: '20em',
|
13513
|
+
[vars$p.marginInlineStart]: '-0.25em',
|
13514
|
+
[vars$p.valueInputHeight]: refs.valueInputHeight,
|
13515
|
+
[vars$p.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
13513
13516
|
|
13514
13517
|
// '@overlay': {
|
13515
13518
|
// overlayItemBackgroundColor: 'red'
|
@@ -13519,188 +13522,188 @@ const phoneField = {
|
|
13519
13522
|
var phoneField$1 = /*#__PURE__*/Object.freeze({
|
13520
13523
|
__proto__: null,
|
13521
13524
|
default: phoneField,
|
13522
|
-
vars: vars$
|
13525
|
+
vars: vars$p
|
13523
13526
|
});
|
13524
13527
|
|
13525
|
-
const vars$
|
13528
|
+
const vars$o = PhoneFieldInputBoxClass.cssVarList;
|
13526
13529
|
|
13527
13530
|
const phoneInputBoxField = {
|
13528
|
-
[vars$
|
13529
|
-
[vars$
|
13530
|
-
[vars$
|
13531
|
-
[vars$
|
13532
|
-
[vars$
|
13533
|
-
[vars$
|
13534
|
-
[vars$
|
13535
|
-
[vars$
|
13536
|
-
[vars$
|
13537
|
-
[vars$
|
13538
|
-
[vars$
|
13539
|
-
[vars$
|
13540
|
-
[vars$
|
13541
|
-
[vars$
|
13542
|
-
[vars$
|
13543
|
-
[vars$
|
13544
|
-
[vars$
|
13545
|
-
[vars$
|
13546
|
-
[vars$
|
13547
|
-
[vars$
|
13548
|
-
[vars$
|
13549
|
-
[vars$
|
13550
|
-
[vars$
|
13551
|
-
[vars$
|
13552
|
-
[vars$
|
13553
|
-
[vars$
|
13554
|
-
[vars$
|
13555
|
-
[vars$
|
13556
|
-
[vars$
|
13531
|
+
[vars$o.hostWidth]: '16em',
|
13532
|
+
[vars$o.hostMinWidth]: refs.minWidth,
|
13533
|
+
[vars$o.hostDirection]: refs.direction,
|
13534
|
+
[vars$o.fontSize]: refs.fontSize,
|
13535
|
+
[vars$o.fontFamily]: refs.fontFamily,
|
13536
|
+
[vars$o.labelFontSize]: refs.labelFontSize,
|
13537
|
+
[vars$o.labelFontWeight]: refs.labelFontWeight,
|
13538
|
+
[vars$o.labelTextColor]: refs.labelTextColor,
|
13539
|
+
[vars$o.labelRequiredIndicator]: refs.requiredIndicator,
|
13540
|
+
[vars$o.errorMessageTextColor]: refs.errorMessageTextColor,
|
13541
|
+
[vars$o.inputValueTextColor]: refs.valueTextColor,
|
13542
|
+
[vars$o.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
13543
|
+
[vars$o.inputBorderStyle]: refs.borderStyle,
|
13544
|
+
[vars$o.inputBorderWidth]: refs.borderWidth,
|
13545
|
+
[vars$o.inputBorderColor]: refs.borderColor,
|
13546
|
+
[vars$o.inputBorderRadius]: refs.borderRadius,
|
13547
|
+
[vars$o.inputOutlineStyle]: refs.outlineStyle,
|
13548
|
+
[vars$o.inputOutlineWidth]: refs.outlineWidth,
|
13549
|
+
[vars$o.inputOutlineColor]: refs.outlineColor,
|
13550
|
+
[vars$o.inputOutlineOffset]: refs.outlineOffset,
|
13551
|
+
[vars$o.labelPosition]: refs.labelPosition,
|
13552
|
+
[vars$o.labelTopPosition]: refs.labelTopPosition,
|
13553
|
+
[vars$o.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
13554
|
+
[vars$o.inputTransformY]: refs.inputTransformY,
|
13555
|
+
[vars$o.inputTransition]: refs.inputTransition,
|
13556
|
+
[vars$o.marginInlineStart]: refs.marginInlineStart,
|
13557
|
+
[vars$o.valueInputHeight]: refs.valueInputHeight,
|
13558
|
+
[vars$o.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
13559
|
+
[vars$o.inputHorizontalPadding]: '0',
|
13557
13560
|
|
13558
13561
|
_fullWidth: {
|
13559
|
-
[vars$
|
13562
|
+
[vars$o.hostWidth]: refs.width,
|
13560
13563
|
},
|
13561
13564
|
};
|
13562
13565
|
|
13563
13566
|
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
13564
13567
|
__proto__: null,
|
13565
13568
|
default: phoneInputBoxField,
|
13566
|
-
vars: vars$
|
13569
|
+
vars: vars$o
|
13567
13570
|
});
|
13568
13571
|
|
13569
|
-
const globalRefs$
|
13570
|
-
const vars$
|
13572
|
+
const globalRefs$i = getThemeRefs(globals);
|
13573
|
+
const vars$n = NewPasswordClass.cssVarList;
|
13571
13574
|
|
13572
13575
|
const newPassword = {
|
13573
|
-
[vars$
|
13574
|
-
[vars$
|
13575
|
-
[vars$
|
13576
|
-
[vars$
|
13577
|
-
[vars$
|
13578
|
-
[vars$
|
13579
|
-
[vars$
|
13580
|
-
[vars$
|
13581
|
-
[vars$
|
13582
|
-
[vars$
|
13583
|
-
[vars$
|
13584
|
-
[vars$
|
13585
|
-
[vars$
|
13576
|
+
[vars$n.hostWidth]: refs.width,
|
13577
|
+
[vars$n.hostMinWidth]: refs.minWidth,
|
13578
|
+
[vars$n.hostDirection]: refs.direction,
|
13579
|
+
[vars$n.fontSize]: refs.fontSize,
|
13580
|
+
[vars$n.fontFamily]: refs.fontFamily,
|
13581
|
+
[vars$n.labelFontSize]: refs.labelFontSize,
|
13582
|
+
[vars$n.labelFontWeight]: refs.labelFontWeight,
|
13583
|
+
[vars$n.labelTextColor]: refs.labelTextColor,
|
13584
|
+
[vars$n.spaceBetweenInputs]: '1em',
|
13585
|
+
[vars$n.errorMessageTextColor]: refs.errorMessageTextColor,
|
13586
|
+
[vars$n.policyPreviewBackgroundColor]: 'none',
|
13587
|
+
[vars$n.policyPreviewPadding]: globalRefs$i.spacing.lg,
|
13588
|
+
[vars$n.valueInputHeight]: refs.valueInputHeight,
|
13586
13589
|
|
13587
13590
|
_required: {
|
13588
13591
|
// NewPassword doesn't pass `required` attribute to its Password components.
|
13589
13592
|
// That's why we fake the required indicator on each input.
|
13590
13593
|
// We do that by injecting `::after` element, and populating it with requiredIndicator content.
|
13591
|
-
[vars$
|
13594
|
+
[vars$n.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
|
13592
13595
|
},
|
13593
13596
|
};
|
13594
13597
|
|
13595
13598
|
var newPassword$1 = /*#__PURE__*/Object.freeze({
|
13596
13599
|
__proto__: null,
|
13597
13600
|
default: newPassword,
|
13598
|
-
vars: vars$
|
13601
|
+
vars: vars$n
|
13599
13602
|
});
|
13600
13603
|
|
13601
|
-
const vars$
|
13604
|
+
const vars$m = UploadFileClass.cssVarList;
|
13602
13605
|
|
13603
13606
|
const uploadFile = {
|
13604
|
-
[vars$
|
13605
|
-
[vars$
|
13606
|
-
[vars$
|
13607
|
+
[vars$m.hostDirection]: refs.direction,
|
13608
|
+
[vars$m.labelTextColor]: refs.labelTextColor,
|
13609
|
+
[vars$m.fontFamily]: refs.fontFamily,
|
13607
13610
|
|
13608
|
-
[vars$
|
13611
|
+
[vars$m.iconSize]: '2em',
|
13609
13612
|
|
13610
|
-
[vars$
|
13611
|
-
[vars$
|
13613
|
+
[vars$m.hostPadding]: '0.75em',
|
13614
|
+
[vars$m.gap]: '0.5em',
|
13612
13615
|
|
13613
|
-
[vars$
|
13614
|
-
[vars$
|
13615
|
-
[vars$
|
13616
|
+
[vars$m.fontSize]: '16px',
|
13617
|
+
[vars$m.titleFontWeight]: '500',
|
13618
|
+
[vars$m.lineHeight]: '1em',
|
13616
13619
|
|
13617
|
-
[vars$
|
13618
|
-
[vars$
|
13619
|
-
[vars$
|
13620
|
-
[vars$
|
13620
|
+
[vars$m.borderWidth]: refs.borderWidth,
|
13621
|
+
[vars$m.borderColor]: refs.borderColor,
|
13622
|
+
[vars$m.borderRadius]: refs.borderRadius,
|
13623
|
+
[vars$m.borderStyle]: 'dashed',
|
13621
13624
|
|
13622
13625
|
_required: {
|
13623
|
-
[vars$
|
13626
|
+
[vars$m.requiredIndicator]: refs.requiredIndicator,
|
13624
13627
|
},
|
13625
13628
|
|
13626
13629
|
size: {
|
13627
13630
|
xs: {
|
13628
|
-
[vars$
|
13629
|
-
[vars$
|
13630
|
-
[vars$
|
13631
|
-
[vars$
|
13632
|
-
[vars$
|
13631
|
+
[vars$m.hostHeight]: '196px',
|
13632
|
+
[vars$m.hostWidth]: '200px',
|
13633
|
+
[vars$m.titleFontSize]: '0.875em',
|
13634
|
+
[vars$m.descriptionFontSize]: '0.875em',
|
13635
|
+
[vars$m.lineHeight]: '1.25em',
|
13633
13636
|
},
|
13634
13637
|
sm: {
|
13635
|
-
[vars$
|
13636
|
-
[vars$
|
13637
|
-
[vars$
|
13638
|
-
[vars$
|
13639
|
-
[vars$
|
13638
|
+
[vars$m.hostHeight]: '216px',
|
13639
|
+
[vars$m.hostWidth]: '230px',
|
13640
|
+
[vars$m.titleFontSize]: '1em',
|
13641
|
+
[vars$m.descriptionFontSize]: '0.875em',
|
13642
|
+
[vars$m.lineHeight]: '1.25em',
|
13640
13643
|
},
|
13641
13644
|
md: {
|
13642
|
-
[vars$
|
13643
|
-
[vars$
|
13644
|
-
[vars$
|
13645
|
-
[vars$
|
13646
|
-
[vars$
|
13645
|
+
[vars$m.hostHeight]: '256px',
|
13646
|
+
[vars$m.hostWidth]: '312px',
|
13647
|
+
[vars$m.titleFontSize]: '1.125em',
|
13648
|
+
[vars$m.descriptionFontSize]: '1em',
|
13649
|
+
[vars$m.lineHeight]: '1.5em',
|
13647
13650
|
},
|
13648
13651
|
lg: {
|
13649
|
-
[vars$
|
13650
|
-
[vars$
|
13651
|
-
[vars$
|
13652
|
-
[vars$
|
13653
|
-
[vars$
|
13652
|
+
[vars$m.hostHeight]: '280px',
|
13653
|
+
[vars$m.hostWidth]: '336px',
|
13654
|
+
[vars$m.titleFontSize]: '1.125em',
|
13655
|
+
[vars$m.descriptionFontSize]: '1.125em',
|
13656
|
+
[vars$m.lineHeight]: '1.75em',
|
13654
13657
|
},
|
13655
13658
|
},
|
13656
13659
|
|
13657
13660
|
_fullWidth: {
|
13658
|
-
[vars$
|
13661
|
+
[vars$m.hostWidth]: refs.width,
|
13659
13662
|
},
|
13660
13663
|
};
|
13661
13664
|
|
13662
13665
|
var uploadFile$1 = /*#__PURE__*/Object.freeze({
|
13663
13666
|
__proto__: null,
|
13664
13667
|
default: uploadFile,
|
13665
|
-
vars: vars$
|
13668
|
+
vars: vars$m
|
13666
13669
|
});
|
13667
13670
|
|
13668
|
-
const globalRefs$
|
13671
|
+
const globalRefs$h = getThemeRefs(globals);
|
13669
13672
|
|
13670
|
-
const vars$
|
13673
|
+
const vars$l = ButtonSelectionGroupItemClass.cssVarList;
|
13671
13674
|
|
13672
13675
|
const buttonSelectionGroupItem = {
|
13673
|
-
[vars$
|
13674
|
-
[vars$
|
13675
|
-
[vars$
|
13676
|
-
[vars$
|
13677
|
-
[vars$
|
13678
|
-
[vars$
|
13679
|
-
[vars$
|
13680
|
-
[vars$
|
13676
|
+
[vars$l.hostDirection]: 'inherit',
|
13677
|
+
[vars$l.backgroundColor]: globalRefs$h.colors.surface.main,
|
13678
|
+
[vars$l.labelTextColor]: globalRefs$h.colors.surface.contrast,
|
13679
|
+
[vars$l.borderColor]: globalRefs$h.colors.surface.light,
|
13680
|
+
[vars$l.borderStyle]: 'solid',
|
13681
|
+
[vars$l.borderRadius]: globalRefs$h.radius.sm,
|
13682
|
+
[vars$l.outlineColor]: 'transparent',
|
13683
|
+
[vars$l.borderWidth]: globalRefs$h.border.xs,
|
13681
13684
|
|
13682
13685
|
_hover: {
|
13683
|
-
[vars$
|
13686
|
+
[vars$l.backgroundColor]: globalRefs$h.colors.surface.highlight,
|
13684
13687
|
},
|
13685
13688
|
|
13686
13689
|
_focused: {
|
13687
|
-
[vars$
|
13690
|
+
[vars$l.outlineColor]: globalRefs$h.colors.surface.light,
|
13688
13691
|
},
|
13689
13692
|
|
13690
13693
|
_selected: {
|
13691
|
-
[vars$
|
13692
|
-
[vars$
|
13693
|
-
[vars$
|
13694
|
+
[vars$l.borderColor]: globalRefs$h.colors.surface.contrast,
|
13695
|
+
[vars$l.backgroundColor]: globalRefs$h.colors.surface.contrast,
|
13696
|
+
[vars$l.labelTextColor]: globalRefs$h.colors.surface.main,
|
13694
13697
|
},
|
13695
13698
|
};
|
13696
13699
|
|
13697
13700
|
var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
|
13698
13701
|
__proto__: null,
|
13699
13702
|
default: buttonSelectionGroupItem,
|
13700
|
-
vars: vars$
|
13703
|
+
vars: vars$l
|
13701
13704
|
});
|
13702
13705
|
|
13703
|
-
const globalRefs$
|
13706
|
+
const globalRefs$g = getThemeRefs(globals);
|
13704
13707
|
|
13705
13708
|
const createBaseButtonSelectionGroupMappings = (vars) => ({
|
13706
13709
|
[vars.hostDirection]: refs.direction,
|
@@ -13708,96 +13711,96 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
|
|
13708
13711
|
[vars.labelTextColor]: refs.labelTextColor,
|
13709
13712
|
[vars.labelRequiredIndicator]: refs.requiredIndicator,
|
13710
13713
|
[vars.errorMessageTextColor]: refs.errorMessageTextColor,
|
13711
|
-
[vars.itemsSpacing]: globalRefs$
|
13714
|
+
[vars.itemsSpacing]: globalRefs$g.spacing.sm,
|
13712
13715
|
[vars.hostWidth]: refs.width,
|
13713
13716
|
});
|
13714
13717
|
|
13715
|
-
const vars$
|
13718
|
+
const vars$k = ButtonSelectionGroupClass.cssVarList;
|
13716
13719
|
|
13717
13720
|
const buttonSelectionGroup = {
|
13718
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
13721
|
+
...createBaseButtonSelectionGroupMappings(vars$k),
|
13719
13722
|
};
|
13720
13723
|
|
13721
13724
|
var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
13722
13725
|
__proto__: null,
|
13723
13726
|
default: buttonSelectionGroup,
|
13724
|
-
vars: vars$
|
13727
|
+
vars: vars$k
|
13725
13728
|
});
|
13726
13729
|
|
13727
|
-
const vars$
|
13730
|
+
const vars$j = ButtonMultiSelectionGroupClass.cssVarList;
|
13728
13731
|
|
13729
13732
|
const buttonMultiSelectionGroup = {
|
13730
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
13733
|
+
...createBaseButtonSelectionGroupMappings(vars$j),
|
13731
13734
|
};
|
13732
13735
|
|
13733
13736
|
var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
13734
13737
|
__proto__: null,
|
13735
13738
|
default: buttonMultiSelectionGroup,
|
13736
|
-
vars: vars$
|
13739
|
+
vars: vars$j
|
13737
13740
|
});
|
13738
13741
|
|
13739
|
-
const globalRefs$
|
13742
|
+
const globalRefs$f = getThemeRefs(globals);
|
13740
13743
|
|
13741
|
-
const compVars$
|
13744
|
+
const compVars$2 = ModalClass.cssVarList;
|
13742
13745
|
|
13743
13746
|
const modal = {
|
13744
|
-
[compVars$
|
13745
|
-
[compVars$
|
13746
|
-
[compVars$
|
13747
|
+
[compVars$2.overlayBackgroundColor]: globalRefs$f.colors.surface.main,
|
13748
|
+
[compVars$2.overlayShadow]: globalRefs$f.shadow.wide['2xl'],
|
13749
|
+
[compVars$2.overlayWidth]: '540px',
|
13747
13750
|
};
|
13748
13751
|
|
13749
|
-
const vars$
|
13750
|
-
...compVars$
|
13752
|
+
const vars$i = {
|
13753
|
+
...compVars$2,
|
13751
13754
|
};
|
13752
13755
|
|
13753
13756
|
var modal$1 = /*#__PURE__*/Object.freeze({
|
13754
13757
|
__proto__: null,
|
13755
13758
|
default: modal,
|
13756
|
-
vars: vars$
|
13759
|
+
vars: vars$i
|
13757
13760
|
});
|
13758
13761
|
|
13759
|
-
const globalRefs$
|
13760
|
-
const vars$
|
13762
|
+
const globalRefs$e = getThemeRefs(globals);
|
13763
|
+
const vars$h = GridClass.cssVarList;
|
13761
13764
|
|
13762
13765
|
const grid = {
|
13763
|
-
[vars$
|
13764
|
-
[vars$
|
13765
|
-
[vars$
|
13766
|
-
[vars$
|
13767
|
-
[vars$
|
13768
|
-
|
13769
|
-
[vars$
|
13770
|
-
[vars$
|
13771
|
-
|
13772
|
-
[vars$
|
13773
|
-
[vars$
|
13774
|
-
[vars$
|
13775
|
-
|
13776
|
-
[vars$
|
13777
|
-
[vars$
|
13778
|
-
[vars$
|
13779
|
-
[vars$
|
13780
|
-
|
13781
|
-
[vars$
|
13782
|
-
[vars$
|
13783
|
-
|
13784
|
-
[vars$
|
13785
|
-
[vars$
|
13786
|
-
[vars$
|
13787
|
-
|
13788
|
-
[vars$
|
13789
|
-
[vars$
|
13790
|
-
[vars$
|
13791
|
-
[vars$
|
13792
|
-
[vars$
|
13793
|
-
[vars$
|
13794
|
-
[vars$
|
13795
|
-
[vars$
|
13796
|
-
[vars$
|
13797
|
-
[vars$
|
13766
|
+
[vars$h.hostWidth]: '100%',
|
13767
|
+
[vars$h.hostHeight]: '100%',
|
13768
|
+
[vars$h.hostMinHeight]: '400px',
|
13769
|
+
[vars$h.fontWeight]: '400',
|
13770
|
+
[vars$h.backgroundColor]: globalRefs$e.colors.surface.main,
|
13771
|
+
|
13772
|
+
[vars$h.fontSize]: refs.fontSize,
|
13773
|
+
[vars$h.fontFamily]: refs.fontFamily,
|
13774
|
+
|
13775
|
+
[vars$h.sortIndicatorsColor]: globalRefs$e.colors.surface.light,
|
13776
|
+
[vars$h.activeSortIndicator]: globalRefs$e.colors.surface.dark,
|
13777
|
+
[vars$h.resizeHandleColor]: globalRefs$e.colors.surface.light,
|
13778
|
+
|
13779
|
+
[vars$h.borderWidth]: refs.borderWidth,
|
13780
|
+
[vars$h.borderStyle]: refs.borderStyle,
|
13781
|
+
[vars$h.borderRadius]: refs.borderRadius,
|
13782
|
+
[vars$h.borderColor]: 'transparent',
|
13783
|
+
|
13784
|
+
[vars$h.headerRowTextColor]: globalRefs$e.colors.surface.dark,
|
13785
|
+
[vars$h.separatorColor]: globalRefs$e.colors.surface.light,
|
13786
|
+
|
13787
|
+
[vars$h.valueTextColor]: globalRefs$e.colors.surface.contrast,
|
13788
|
+
[vars$h.selectedBackgroundColor]: globalRefs$e.colors.surface.highlight,
|
13789
|
+
[vars$h.hostDirection]: globalRefs$e.direction,
|
13790
|
+
|
13791
|
+
[vars$h.toggleDetailsPanelButtonSize]: '1em',
|
13792
|
+
[vars$h.toggleDetailsPanelButtonOpenedColor]: globalRefs$e.colors.surface.contrast,
|
13793
|
+
[vars$h.toggleDetailsPanelButtonClosedColor]: globalRefs$e.colors.surface.light,
|
13794
|
+
[vars$h.toggleDetailsPanelButtonCursor]: 'pointer',
|
13795
|
+
[vars$h.detailsPanelBackgroundColor]: globalRefs$e.colors.surface.highlight,
|
13796
|
+
[vars$h.detailsPanelBorderTopColor]: globalRefs$e.colors.surface.light,
|
13797
|
+
[vars$h.detailsPanelLabelsColor]: globalRefs$e.colors.surface.dark,
|
13798
|
+
[vars$h.detailsPanelLabelsFontSize]: '0.8em',
|
13799
|
+
[vars$h.detailsPanelItemsGap]: '2em',
|
13800
|
+
[vars$h.detailsPanelPadding]: '12px 0',
|
13798
13801
|
|
13799
13802
|
_bordered: {
|
13800
|
-
[vars$
|
13803
|
+
[vars$h.borderColor]: refs.borderColor,
|
13801
13804
|
},
|
13802
13805
|
};
|
13803
13806
|
|
@@ -13805,53 +13808,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
|
|
13805
13808
|
__proto__: null,
|
13806
13809
|
default: grid,
|
13807
13810
|
grid: grid,
|
13808
|
-
vars: vars$
|
13811
|
+
vars: vars$h
|
13809
13812
|
});
|
13810
13813
|
|
13811
|
-
const globalRefs$
|
13812
|
-
const vars$
|
13814
|
+
const globalRefs$d = getThemeRefs(globals);
|
13815
|
+
const vars$g = NotificationCardClass.cssVarList;
|
13813
13816
|
|
13814
|
-
const shadowColor = '#00000020';
|
13817
|
+
const shadowColor$1 = '#00000020';
|
13815
13818
|
|
13816
13819
|
const notification = {
|
13817
|
-
[vars$
|
13818
|
-
[vars$
|
13819
|
-
[vars$
|
13820
|
-
[vars$
|
13821
|
-
[vars$
|
13822
|
-
[vars$
|
13823
|
-
[vars$
|
13824
|
-
[vars$
|
13825
|
-
[vars$
|
13820
|
+
[vars$g.hostMinWidth]: '415px',
|
13821
|
+
[vars$g.fontFamily]: globalRefs$d.fonts.font1.family,
|
13822
|
+
[vars$g.fontSize]: globalRefs$d.typography.body1.size,
|
13823
|
+
[vars$g.backgroundColor]: globalRefs$d.colors.surface.main,
|
13824
|
+
[vars$g.textColor]: globalRefs$d.colors.surface.contrast,
|
13825
|
+
[vars$g.boxShadow]: `${globalRefs$d.shadow.wide.xl} ${shadowColor$1}, ${globalRefs$d.shadow.narrow.xl} ${shadowColor$1}`,
|
13826
|
+
[vars$g.verticalPadding]: '0.625em',
|
13827
|
+
[vars$g.horizontalPadding]: '1.5em',
|
13828
|
+
[vars$g.borderRadius]: globalRefs$d.radius.xs,
|
13826
13829
|
|
13827
13830
|
_bordered: {
|
13828
|
-
[vars$
|
13829
|
-
[vars$
|
13830
|
-
[vars$
|
13831
|
+
[vars$g.borderWidth]: globalRefs$d.border.sm,
|
13832
|
+
[vars$g.borderStyle]: 'solid',
|
13833
|
+
[vars$g.borderColor]: 'transparent',
|
13831
13834
|
},
|
13832
13835
|
|
13833
13836
|
size: {
|
13834
|
-
xs: { [vars$
|
13835
|
-
sm: { [vars$
|
13836
|
-
md: { [vars$
|
13837
|
-
lg: { [vars$
|
13837
|
+
xs: { [vars$g.fontSize]: '12px' },
|
13838
|
+
sm: { [vars$g.fontSize]: '14px' },
|
13839
|
+
md: { [vars$g.fontSize]: '16px' },
|
13840
|
+
lg: { [vars$g.fontSize]: '18px' },
|
13838
13841
|
},
|
13839
13842
|
|
13840
13843
|
mode: {
|
13841
13844
|
primary: {
|
13842
|
-
[vars$
|
13843
|
-
[vars$
|
13844
|
-
[vars$
|
13845
|
+
[vars$g.backgroundColor]: globalRefs$d.colors.primary.main,
|
13846
|
+
[vars$g.textColor]: globalRefs$d.colors.primary.contrast,
|
13847
|
+
[vars$g.borderColor]: globalRefs$d.colors.primary.light,
|
13845
13848
|
},
|
13846
13849
|
success: {
|
13847
|
-
[vars$
|
13848
|
-
[vars$
|
13849
|
-
[vars$
|
13850
|
+
[vars$g.backgroundColor]: globalRefs$d.colors.success.main,
|
13851
|
+
[vars$g.textColor]: globalRefs$d.colors.success.contrast,
|
13852
|
+
[vars$g.borderColor]: globalRefs$d.colors.success.light,
|
13850
13853
|
},
|
13851
13854
|
error: {
|
13852
|
-
[vars$
|
13853
|
-
[vars$
|
13854
|
-
[vars$
|
13855
|
+
[vars$g.backgroundColor]: globalRefs$d.colors.error.main,
|
13856
|
+
[vars$g.textColor]: globalRefs$d.colors.error.contrast,
|
13857
|
+
[vars$g.borderColor]: globalRefs$d.colors.error.light,
|
13855
13858
|
},
|
13856
13859
|
},
|
13857
13860
|
};
|
@@ -13859,148 +13862,148 @@ const notification = {
|
|
13859
13862
|
var notificationCard = /*#__PURE__*/Object.freeze({
|
13860
13863
|
__proto__: null,
|
13861
13864
|
default: notification,
|
13862
|
-
vars: vars$
|
13865
|
+
vars: vars$g
|
13863
13866
|
});
|
13864
13867
|
|
13865
|
-
const globalRefs$
|
13866
|
-
const vars$
|
13868
|
+
const globalRefs$c = getThemeRefs(globals);
|
13869
|
+
const vars$f = MultiSelectComboBoxClass.cssVarList;
|
13867
13870
|
|
13868
13871
|
const multiSelectComboBox = {
|
13869
|
-
[vars$
|
13870
|
-
[vars$
|
13871
|
-
[vars$
|
13872
|
-
[vars$
|
13873
|
-
[vars$
|
13874
|
-
[vars$
|
13875
|
-
[vars$
|
13876
|
-
[vars$
|
13877
|
-
[vars$
|
13878
|
-
[vars$
|
13879
|
-
[vars$
|
13880
|
-
[vars$
|
13881
|
-
[vars$
|
13882
|
-
[vars$
|
13883
|
-
[vars$
|
13884
|
-
[vars$
|
13885
|
-
[vars$
|
13886
|
-
[vars$
|
13887
|
-
[vars$
|
13888
|
-
[vars$
|
13889
|
-
[vars$
|
13890
|
-
[vars$
|
13891
|
-
[vars$
|
13892
|
-
[vars$
|
13893
|
-
[vars$
|
13894
|
-
[vars$
|
13895
|
-
[vars$
|
13896
|
-
[vars$
|
13897
|
-
[vars$
|
13898
|
-
[vars$
|
13899
|
-
[vars$
|
13900
|
-
[vars$
|
13901
|
-
[vars$
|
13902
|
-
[vars$
|
13903
|
-
[vars$
|
13904
|
-
[vars$
|
13905
|
-
[vars$
|
13906
|
-
[vars$
|
13907
|
-
[vars$
|
13908
|
-
[vars$
|
13909
|
-
[vars$
|
13872
|
+
[vars$f.hostWidth]: refs.width,
|
13873
|
+
[vars$f.hostDirection]: refs.direction,
|
13874
|
+
[vars$f.fontSize]: refs.fontSize,
|
13875
|
+
[vars$f.fontFamily]: refs.fontFamily,
|
13876
|
+
[vars$f.labelFontSize]: refs.labelFontSize,
|
13877
|
+
[vars$f.labelFontWeight]: refs.labelFontWeight,
|
13878
|
+
[vars$f.labelTextColor]: refs.labelTextColor,
|
13879
|
+
[vars$f.errorMessageTextColor]: refs.errorMessageTextColor,
|
13880
|
+
[vars$f.inputBorderColor]: refs.borderColor,
|
13881
|
+
[vars$f.inputBorderWidth]: refs.borderWidth,
|
13882
|
+
[vars$f.inputBorderStyle]: refs.borderStyle,
|
13883
|
+
[vars$f.inputBorderRadius]: refs.borderRadius,
|
13884
|
+
[vars$f.inputOutlineColor]: refs.outlineColor,
|
13885
|
+
[vars$f.inputOutlineOffset]: refs.outlineOffset,
|
13886
|
+
[vars$f.inputOutlineWidth]: refs.outlineWidth,
|
13887
|
+
[vars$f.inputOutlineStyle]: refs.outlineStyle,
|
13888
|
+
[vars$f.labelRequiredIndicator]: refs.requiredIndicator,
|
13889
|
+
[vars$f.inputValueTextColor]: refs.valueTextColor,
|
13890
|
+
[vars$f.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
13891
|
+
[vars$f.inputBackgroundColor]: refs.backgroundColor,
|
13892
|
+
[vars$f.inputHorizontalPadding]: refs.horizontalPadding,
|
13893
|
+
[vars$f.inputVerticalPadding]: refs.verticalPadding,
|
13894
|
+
[vars$f.inputHeight]: refs.inputHeight,
|
13895
|
+
[vars$f.inputDropdownButtonColor]: globalRefs$c.colors.surface.dark,
|
13896
|
+
[vars$f.inputDropdownButtonCursor]: 'pointer',
|
13897
|
+
[vars$f.inputDropdownButtonSize]: refs.toggleButtonSize,
|
13898
|
+
[vars$f.inputDropdownButtonOffset]: globalRefs$c.spacing.xs,
|
13899
|
+
[vars$f.overlayItemPaddingInlineStart]: globalRefs$c.spacing.xs,
|
13900
|
+
[vars$f.overlayItemPaddingInlineEnd]: globalRefs$c.spacing.lg,
|
13901
|
+
[vars$f.chipFontSize]: refs.chipFontSize,
|
13902
|
+
[vars$f.chipTextColor]: globalRefs$c.colors.surface.contrast,
|
13903
|
+
[vars$f.chipBackgroundColor]: globalRefs$c.colors.surface.light,
|
13904
|
+
[vars$f.labelPosition]: refs.labelPosition,
|
13905
|
+
[vars$f.labelTopPosition]: refs.labelTopPosition,
|
13906
|
+
[vars$f.labelLeftPosition]: refs.labelLeftPosition,
|
13907
|
+
[vars$f.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
13908
|
+
[vars$f.inputTransformY]: refs.inputTransformY,
|
13909
|
+
[vars$f.inputTransition]: refs.inputTransition,
|
13910
|
+
[vars$f.marginInlineStart]: refs.marginInlineStart,
|
13911
|
+
[vars$f.placeholderOpacity]: refs.placeholderOpacity,
|
13912
|
+
[vars$f.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
13910
13913
|
|
13911
13914
|
labelType: {
|
13912
13915
|
floating: {
|
13913
|
-
[vars$
|
13916
|
+
[vars$f.inputHorizontalPadding]: '0.25em',
|
13914
13917
|
_hasValue: {
|
13915
|
-
[vars$
|
13918
|
+
[vars$f.inputHorizontalPadding]: '0.45em',
|
13916
13919
|
},
|
13917
13920
|
},
|
13918
13921
|
},
|
13919
13922
|
|
13920
13923
|
_readonly: {
|
13921
|
-
[vars$
|
13924
|
+
[vars$f.inputDropdownButtonCursor]: 'default',
|
13922
13925
|
},
|
13923
13926
|
|
13924
13927
|
// Overlay theme exposed via the component:
|
13925
|
-
[vars$
|
13926
|
-
[vars$
|
13927
|
-
[vars$
|
13928
|
-
[vars$
|
13929
|
-
[vars$
|
13930
|
-
[vars$
|
13928
|
+
[vars$f.overlayFontSize]: refs.fontSize,
|
13929
|
+
[vars$f.overlayFontFamily]: refs.fontFamily,
|
13930
|
+
[vars$f.overlayCursor]: 'pointer',
|
13931
|
+
[vars$f.overlayItemBoxShadow]: 'none',
|
13932
|
+
[vars$f.overlayBackground]: refs.backgroundColor,
|
13933
|
+
[vars$f.overlayTextColor]: refs.valueTextColor,
|
13931
13934
|
|
13932
13935
|
// Overlay direct theme:
|
13933
|
-
[vars$
|
13934
|
-
[vars$
|
13936
|
+
[vars$f.overlay.minHeight]: '400px',
|
13937
|
+
[vars$f.overlay.margin]: '0',
|
13935
13938
|
};
|
13936
13939
|
|
13937
13940
|
var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
|
13938
13941
|
__proto__: null,
|
13939
13942
|
default: multiSelectComboBox,
|
13940
13943
|
multiSelectComboBox: multiSelectComboBox,
|
13941
|
-
vars: vars$
|
13944
|
+
vars: vars$f
|
13942
13945
|
});
|
13943
13946
|
|
13944
|
-
const globalRefs$
|
13945
|
-
const vars$
|
13947
|
+
const globalRefs$b = getThemeRefs(globals);
|
13948
|
+
const vars$e = BadgeClass.cssVarList;
|
13946
13949
|
|
13947
13950
|
const badge = {
|
13948
|
-
[vars$
|
13949
|
-
[vars$
|
13951
|
+
[vars$e.hostWidth]: 'fit-content',
|
13952
|
+
[vars$e.hostDirection]: globalRefs$b.direction,
|
13950
13953
|
|
13951
|
-
[vars$
|
13954
|
+
[vars$e.textAlign]: 'center',
|
13952
13955
|
|
13953
|
-
[vars$
|
13954
|
-
[vars$
|
13956
|
+
[vars$e.fontFamily]: globalRefs$b.fonts.font1.family,
|
13957
|
+
[vars$e.fontWeight]: '400',
|
13955
13958
|
|
13956
|
-
[vars$
|
13957
|
-
[vars$
|
13959
|
+
[vars$e.verticalPadding]: '0.25em',
|
13960
|
+
[vars$e.horizontalPadding]: '0.5em',
|
13958
13961
|
|
13959
|
-
[vars$
|
13960
|
-
[vars$
|
13961
|
-
[vars$
|
13962
|
-
[vars$
|
13962
|
+
[vars$e.borderWidth]: globalRefs$b.border.xs,
|
13963
|
+
[vars$e.borderRadius]: globalRefs$b.radius.xs,
|
13964
|
+
[vars$e.borderColor]: 'transparent',
|
13965
|
+
[vars$e.borderStyle]: 'solid',
|
13963
13966
|
|
13964
13967
|
_fullWidth: {
|
13965
|
-
[vars$
|
13968
|
+
[vars$e.hostWidth]: '100%',
|
13966
13969
|
},
|
13967
13970
|
|
13968
13971
|
size: {
|
13969
|
-
xs: { [vars$
|
13970
|
-
sm: { [vars$
|
13971
|
-
md: { [vars$
|
13972
|
-
lg: { [vars$
|
13972
|
+
xs: { [vars$e.fontSize]: '12px' },
|
13973
|
+
sm: { [vars$e.fontSize]: '14px' },
|
13974
|
+
md: { [vars$e.fontSize]: '16px' },
|
13975
|
+
lg: { [vars$e.fontSize]: '18px' },
|
13973
13976
|
},
|
13974
13977
|
|
13975
13978
|
mode: {
|
13976
13979
|
default: {
|
13977
|
-
[vars$
|
13980
|
+
[vars$e.textColor]: globalRefs$b.colors.surface.dark,
|
13978
13981
|
_bordered: {
|
13979
|
-
[vars$
|
13982
|
+
[vars$e.borderColor]: globalRefs$b.colors.surface.light,
|
13980
13983
|
},
|
13981
13984
|
},
|
13982
13985
|
primary: {
|
13983
|
-
[vars$
|
13986
|
+
[vars$e.textColor]: globalRefs$b.colors.primary.main,
|
13984
13987
|
_bordered: {
|
13985
|
-
[vars$
|
13988
|
+
[vars$e.borderColor]: globalRefs$b.colors.primary.light,
|
13986
13989
|
},
|
13987
13990
|
},
|
13988
13991
|
secondary: {
|
13989
|
-
[vars$
|
13992
|
+
[vars$e.textColor]: globalRefs$b.colors.secondary.main,
|
13990
13993
|
_bordered: {
|
13991
|
-
[vars$
|
13994
|
+
[vars$e.borderColor]: globalRefs$b.colors.secondary.light,
|
13992
13995
|
},
|
13993
13996
|
},
|
13994
13997
|
error: {
|
13995
|
-
[vars$
|
13998
|
+
[vars$e.textColor]: globalRefs$b.colors.error.main,
|
13996
13999
|
_bordered: {
|
13997
|
-
[vars$
|
14000
|
+
[vars$e.borderColor]: globalRefs$b.colors.error.light,
|
13998
14001
|
},
|
13999
14002
|
},
|
14000
14003
|
success: {
|
14001
|
-
[vars$
|
14004
|
+
[vars$e.textColor]: globalRefs$b.colors.success.main,
|
14002
14005
|
_bordered: {
|
14003
|
-
[vars$
|
14006
|
+
[vars$e.borderColor]: globalRefs$b.colors.success.light,
|
14004
14007
|
},
|
14005
14008
|
},
|
14006
14009
|
},
|
@@ -14009,181 +14012,181 @@ const badge = {
|
|
14009
14012
|
var badge$1 = /*#__PURE__*/Object.freeze({
|
14010
14013
|
__proto__: null,
|
14011
14014
|
default: badge,
|
14012
|
-
vars: vars$
|
14015
|
+
vars: vars$e
|
14013
14016
|
});
|
14014
14017
|
|
14015
|
-
const globalRefs$
|
14016
|
-
const compVars = AvatarClass.cssVarList;
|
14018
|
+
const globalRefs$a = getThemeRefs(globals);
|
14019
|
+
const compVars$1 = AvatarClass.cssVarList;
|
14017
14020
|
|
14018
14021
|
const avatar = {
|
14019
|
-
[compVars.hostDirection]: globalRefs$
|
14020
|
-
[compVars.editableIconColor]: globalRefs$
|
14021
|
-
[compVars.editableBorderColor]: globalRefs$
|
14022
|
-
[compVars.editableBackgroundColor]: globalRefs$
|
14023
|
-
[compVars.avatarTextColor]: globalRefs$
|
14024
|
-
[compVars.avatarBackgroundColor]: globalRefs$
|
14022
|
+
[compVars$1.hostDirection]: globalRefs$a.direction,
|
14023
|
+
[compVars$1.editableIconColor]: globalRefs$a.colors.surface.dark,
|
14024
|
+
[compVars$1.editableBorderColor]: globalRefs$a.colors.surface.dark,
|
14025
|
+
[compVars$1.editableBackgroundColor]: globalRefs$a.colors.surface.main,
|
14026
|
+
[compVars$1.avatarTextColor]: globalRefs$a.colors.surface.main,
|
14027
|
+
[compVars$1.avatarBackgroundColor]: globalRefs$a.colors.surface.dark,
|
14025
14028
|
|
14026
14029
|
_editable: {
|
14027
|
-
[compVars.cursor]: 'pointer',
|
14030
|
+
[compVars$1.cursor]: 'pointer',
|
14028
14031
|
},
|
14029
14032
|
|
14030
14033
|
size: {
|
14031
14034
|
xs: {
|
14032
|
-
[compVars.hostWidth]: '30px',
|
14033
|
-
[compVars.hostHeight]: '30px',
|
14035
|
+
[compVars$1.hostWidth]: '30px',
|
14036
|
+
[compVars$1.hostHeight]: '30px',
|
14034
14037
|
},
|
14035
14038
|
sm: {
|
14036
|
-
[compVars.hostWidth]: '40px',
|
14037
|
-
[compVars.hostHeight]: '40px',
|
14039
|
+
[compVars$1.hostWidth]: '40px',
|
14040
|
+
[compVars$1.hostHeight]: '40px',
|
14038
14041
|
},
|
14039
14042
|
md: {
|
14040
|
-
[compVars.hostWidth]: '60px',
|
14041
|
-
[compVars.hostHeight]: '60px',
|
14043
|
+
[compVars$1.hostWidth]: '60px',
|
14044
|
+
[compVars$1.hostHeight]: '60px',
|
14042
14045
|
},
|
14043
14046
|
lg: {
|
14044
|
-
[compVars.hostWidth]: '98px',
|
14045
|
-
[compVars.hostHeight]: '98px',
|
14047
|
+
[compVars$1.hostWidth]: '98px',
|
14048
|
+
[compVars$1.hostHeight]: '98px',
|
14046
14049
|
},
|
14047
14050
|
},
|
14048
14051
|
};
|
14049
14052
|
|
14050
|
-
const vars$
|
14051
|
-
...compVars,
|
14053
|
+
const vars$d = {
|
14054
|
+
...compVars$1,
|
14052
14055
|
};
|
14053
14056
|
|
14054
14057
|
var avatar$1 = /*#__PURE__*/Object.freeze({
|
14055
14058
|
__proto__: null,
|
14056
14059
|
default: avatar,
|
14057
|
-
vars: vars$
|
14060
|
+
vars: vars$d
|
14058
14061
|
});
|
14059
14062
|
|
14060
|
-
const globalRefs$
|
14063
|
+
const globalRefs$9 = getThemeRefs(globals);
|
14061
14064
|
|
14062
|
-
const vars$
|
14065
|
+
const vars$c = MappingsFieldClass.cssVarList;
|
14063
14066
|
|
14064
14067
|
const mappingsField = {
|
14065
|
-
[vars$
|
14066
|
-
[vars$
|
14067
|
-
[vars$
|
14068
|
-
[vars$
|
14069
|
-
[vars$
|
14070
|
-
[vars$
|
14071
|
-
[vars$
|
14072
|
-
[vars$
|
14073
|
-
[vars$
|
14074
|
-
[vars$
|
14068
|
+
[vars$c.hostWidth]: refs.width,
|
14069
|
+
[vars$c.hostDirection]: refs.direction,
|
14070
|
+
[vars$c.fontSize]: refs.fontSize,
|
14071
|
+
[vars$c.fontFamily]: refs.fontFamily,
|
14072
|
+
[vars$c.separatorFontSize]: '14px',
|
14073
|
+
[vars$c.labelsFontSize]: '14px',
|
14074
|
+
[vars$c.labelsLineHeight]: '1',
|
14075
|
+
[vars$c.labelsMarginBottom]: '6px',
|
14076
|
+
[vars$c.labelTextColor]: refs.labelTextColor,
|
14077
|
+
[vars$c.itemMarginBottom]: '1em',
|
14075
14078
|
// To be positioned correctly, the min width has to match the text field min width
|
14076
|
-
[vars$
|
14079
|
+
[vars$c.valueLabelMinWidth]: refs.minWidth,
|
14077
14080
|
// To be positioned correctly, the min width has to match the combo box field min width
|
14078
|
-
[vars$
|
14079
|
-
[vars$
|
14080
|
-
[vars$
|
14081
|
+
[vars$c.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$9.border.xs})`,
|
14082
|
+
[vars$c.separatorWidth]: '70px',
|
14083
|
+
[vars$c.removeButtonWidth]: '60px',
|
14081
14084
|
};
|
14082
14085
|
|
14083
14086
|
var mappingsField$1 = /*#__PURE__*/Object.freeze({
|
14084
14087
|
__proto__: null,
|
14085
14088
|
default: mappingsField,
|
14086
14089
|
mappingsField: mappingsField,
|
14087
|
-
vars: vars$
|
14090
|
+
vars: vars$c
|
14088
14091
|
});
|
14089
14092
|
|
14090
|
-
const globalRefs$
|
14091
|
-
const vars$
|
14093
|
+
const globalRefs$8 = getThemeRefs(globals);
|
14094
|
+
const vars$b = UserAttributeClass.cssVarList;
|
14092
14095
|
|
14093
14096
|
const userAttribute = {
|
14094
|
-
[vars$
|
14095
|
-
[vars$
|
14096
|
-
[vars$
|
14097
|
-
[vars$
|
14098
|
-
[vars$
|
14099
|
-
[vars$
|
14097
|
+
[vars$b.hostDirection]: globalRefs$8.direction,
|
14098
|
+
[vars$b.labelTextWidth]: '150px',
|
14099
|
+
[vars$b.valueTextWidth]: '200px',
|
14100
|
+
[vars$b.badgeMaxWidth]: '85px',
|
14101
|
+
[vars$b.itemsGap]: '16px',
|
14102
|
+
[vars$b.hostMinWidth]: '530px',
|
14100
14103
|
_fullWidth: {
|
14101
|
-
[vars$
|
14104
|
+
[vars$b.hostWidth]: '100%',
|
14102
14105
|
},
|
14103
14106
|
};
|
14104
14107
|
|
14105
14108
|
var userAttribute$1 = /*#__PURE__*/Object.freeze({
|
14106
14109
|
__proto__: null,
|
14107
14110
|
default: userAttribute,
|
14108
|
-
vars: vars$
|
14111
|
+
vars: vars$b
|
14109
14112
|
});
|
14110
14113
|
|
14111
|
-
const globalRefs$
|
14112
|
-
const vars$
|
14114
|
+
const globalRefs$7 = getThemeRefs(globals);
|
14115
|
+
const vars$a = UserAuthMethodClass.cssVarList;
|
14113
14116
|
|
14114
14117
|
const userAuthMethod = {
|
14115
|
-
[vars$
|
14116
|
-
[vars$
|
14117
|
-
[vars$
|
14118
|
-
[vars$
|
14119
|
-
[vars$
|
14118
|
+
[vars$a.hostDirection]: globalRefs$7.direction,
|
14119
|
+
[vars$a.labelTextWidth]: '200px',
|
14120
|
+
[vars$a.itemsGap]: '16px',
|
14121
|
+
[vars$a.hostMinWidth]: '530px',
|
14122
|
+
[vars$a.iconSize]: '24px',
|
14120
14123
|
_fullWidth: {
|
14121
|
-
[vars$
|
14124
|
+
[vars$a.hostWidth]: '100%',
|
14122
14125
|
},
|
14123
14126
|
};
|
14124
14127
|
|
14125
14128
|
var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
|
14126
14129
|
__proto__: null,
|
14127
14130
|
default: userAuthMethod,
|
14128
|
-
vars: vars$
|
14131
|
+
vars: vars$a
|
14129
14132
|
});
|
14130
14133
|
|
14131
|
-
const vars$
|
14134
|
+
const vars$9 = SamlGroupMappingsClass.cssVarList;
|
14132
14135
|
|
14133
14136
|
const samlGroupMappings = {
|
14134
|
-
[vars$
|
14135
|
-
[vars$
|
14136
|
-
[vars$
|
14137
|
+
[vars$9.hostWidth]: refs.width,
|
14138
|
+
[vars$9.hostDirection]: refs.direction,
|
14139
|
+
[vars$9.groupNameInputMarginBottom]: '1em',
|
14137
14140
|
};
|
14138
14141
|
|
14139
14142
|
var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
|
14140
14143
|
__proto__: null,
|
14141
14144
|
default: samlGroupMappings,
|
14142
14145
|
samlGroupMappings: samlGroupMappings,
|
14143
|
-
vars: vars$
|
14146
|
+
vars: vars$9
|
14144
14147
|
});
|
14145
14148
|
|
14146
|
-
const globalRefs$
|
14147
|
-
const vars$
|
14149
|
+
const globalRefs$6 = getThemeRefs(globals);
|
14150
|
+
const vars$8 = PolicyValidationClass.cssVarList;
|
14148
14151
|
|
14149
14152
|
const policyValidation = {
|
14150
|
-
[vars$
|
14151
|
-
[vars$
|
14152
|
-
[vars$
|
14153
|
-
[vars$
|
14154
|
-
[vars$
|
14155
|
-
[vars$
|
14156
|
-
[vars$
|
14157
|
-
[vars$
|
14158
|
-
[vars$
|
14159
|
-
[vars$
|
14160
|
-
[vars$
|
14161
|
-
[vars$
|
14162
|
-
[vars$
|
14163
|
-
[vars$
|
14164
|
-
[vars$
|
14165
|
-
[vars$
|
14153
|
+
[vars$8.fontFamily]: refs.fontFamily,
|
14154
|
+
[vars$8.fontSize]: refs.labelFontSize,
|
14155
|
+
[vars$8.textColor]: refs.labelTextColor,
|
14156
|
+
[vars$8.borderWidth]: refs.borderWidth,
|
14157
|
+
[vars$8.borderStyle]: refs.borderStyle,
|
14158
|
+
[vars$8.borderColor]: refs.borderColor,
|
14159
|
+
[vars$8.borderRadius]: globalRefs$6.radius.sm,
|
14160
|
+
[vars$8.backgroundColor]: 'none',
|
14161
|
+
[vars$8.padding]: '0px',
|
14162
|
+
[vars$8.labelMargin]: globalRefs$6.spacing.sm,
|
14163
|
+
[vars$8.itemsSpacing]: globalRefs$6.spacing.lg,
|
14164
|
+
[vars$8.itemSymbolDefault]: "'\\2022'", // "•"
|
14165
|
+
[vars$8.itemSymbolSuccess]: "'\\2713'", // "✓"
|
14166
|
+
[vars$8.itemSymbolError]: "'\\2A09'", // "⨉"
|
14167
|
+
[vars$8.itemSymbolSuccessColor]: globalRefs$6.colors.success.main,
|
14168
|
+
[vars$8.itemSymbolErrorColor]: globalRefs$6.colors.error.main,
|
14166
14169
|
};
|
14167
14170
|
|
14168
14171
|
var policyValidation$1 = /*#__PURE__*/Object.freeze({
|
14169
14172
|
__proto__: null,
|
14170
14173
|
default: policyValidation,
|
14171
|
-
vars: vars$
|
14174
|
+
vars: vars$8
|
14172
14175
|
});
|
14173
14176
|
|
14174
|
-
const vars$
|
14177
|
+
const vars$7 = IconClass.cssVarList;
|
14175
14178
|
|
14176
14179
|
const icon = {};
|
14177
14180
|
|
14178
14181
|
var icon$1 = /*#__PURE__*/Object.freeze({
|
14179
14182
|
__proto__: null,
|
14180
14183
|
default: icon,
|
14181
|
-
vars: vars$
|
14184
|
+
vars: vars$7
|
14182
14185
|
});
|
14183
14186
|
|
14184
|
-
const globalRefs$
|
14187
|
+
const globalRefs$5 = getThemeRefs(globals);
|
14185
14188
|
|
14186
|
-
const vars$
|
14189
|
+
const vars$6 = CodeSnippetClass.cssVarList;
|
14187
14190
|
|
14188
14191
|
const light = {
|
14189
14192
|
color1: '#fa0',
|
@@ -14218,50 +14221,50 @@ const dark = {
|
|
14218
14221
|
};
|
14219
14222
|
|
14220
14223
|
const CodeSnippet = {
|
14221
|
-
[vars$
|
14222
|
-
[vars$
|
14223
|
-
[vars$
|
14224
|
-
[vars$
|
14225
|
-
[vars$
|
14226
|
-
[vars$
|
14227
|
-
[vars$
|
14228
|
-
[vars$
|
14229
|
-
[vars$
|
14230
|
-
[vars$
|
14231
|
-
[vars$
|
14232
|
-
[vars$
|
14233
|
-
[vars$
|
14234
|
-
[vars$
|
14235
|
-
[vars$
|
14236
|
-
[vars$
|
14237
|
-
[vars$
|
14238
|
-
[vars$
|
14239
|
-
[vars$
|
14240
|
-
[vars$
|
14241
|
-
[vars$
|
14242
|
-
[vars$
|
14243
|
-
[vars$
|
14244
|
-
[vars$
|
14245
|
-
[vars$
|
14246
|
-
[vars$
|
14247
|
-
[vars$
|
14248
|
-
[vars$
|
14249
|
-
[vars$
|
14250
|
-
[vars$
|
14251
|
-
[vars$
|
14252
|
-
[vars$
|
14253
|
-
[vars$
|
14254
|
-
[vars$
|
14255
|
-
[vars$
|
14256
|
-
[vars$
|
14257
|
-
[vars$
|
14258
|
-
[vars$
|
14259
|
-
[vars$
|
14260
|
-
[vars$
|
14261
|
-
[vars$
|
14262
|
-
[vars$
|
14263
|
-
[vars$
|
14264
|
-
[vars$
|
14224
|
+
[vars$6.rootBgColor]: globalRefs$5.colors.surface.main,
|
14225
|
+
[vars$6.rootTextColor]: globalRefs$5.colors.surface.contrast,
|
14226
|
+
[vars$6.docTagTextColor]: light.color2,
|
14227
|
+
[vars$6.keywordTextColor]: light.color2,
|
14228
|
+
[vars$6.metaKeywordTextColor]: light.color2,
|
14229
|
+
[vars$6.templateTagTextColor]: light.color2,
|
14230
|
+
[vars$6.templateVariableTextColor]: light.color2,
|
14231
|
+
[vars$6.typeTextColor]: light.color2,
|
14232
|
+
[vars$6.variableLanguageTextColor]: light.color2,
|
14233
|
+
[vars$6.titleTextColor]: light.color3,
|
14234
|
+
[vars$6.titleClassTextColor]: light.color3,
|
14235
|
+
[vars$6.titleClassInheritedTextColor]: light.color3,
|
14236
|
+
[vars$6.titleFunctionTextColor]: light.color3,
|
14237
|
+
[vars$6.attrTextColor]: light.color4,
|
14238
|
+
[vars$6.attributeTextColor]: light.color4,
|
14239
|
+
[vars$6.literalTextColor]: light.color4,
|
14240
|
+
[vars$6.metaTextColor]: light.color4,
|
14241
|
+
[vars$6.numberTextColor]: light.color4,
|
14242
|
+
[vars$6.operatorTextColor]: light.color4,
|
14243
|
+
[vars$6.variableTextColor]: light.color4,
|
14244
|
+
[vars$6.selectorAttrTextColor]: light.color4,
|
14245
|
+
[vars$6.selectorClassTextColor]: light.color4,
|
14246
|
+
[vars$6.selectorIdTextColor]: light.color4,
|
14247
|
+
[vars$6.regexpTextColor]: light.color13,
|
14248
|
+
[vars$6.stringTextColor]: light.color13,
|
14249
|
+
[vars$6.metaStringTextColor]: light.color13,
|
14250
|
+
[vars$6.builtInTextColor]: light.color5,
|
14251
|
+
[vars$6.symbolTextColor]: light.color5,
|
14252
|
+
[vars$6.commentTextColor]: light.color6,
|
14253
|
+
[vars$6.codeTextColor]: light.color6,
|
14254
|
+
[vars$6.formulaTextColor]: light.color6,
|
14255
|
+
[vars$6.nameTextColor]: light.color7,
|
14256
|
+
[vars$6.quoteTextColor]: light.color7,
|
14257
|
+
[vars$6.selectorTagTextColor]: light.color7,
|
14258
|
+
[vars$6.selectorPseudoTextColor]: light.color7,
|
14259
|
+
[vars$6.substTextColor]: light.color8,
|
14260
|
+
[vars$6.sectionTextColor]: light.color4,
|
14261
|
+
[vars$6.bulletTextColor]: light.color9,
|
14262
|
+
[vars$6.emphasisTextColor]: light.color8,
|
14263
|
+
[vars$6.strongTextColor]: light.color8,
|
14264
|
+
[vars$6.additionTextColor]: light.color7,
|
14265
|
+
[vars$6.additionBgColor]: light.color10,
|
14266
|
+
[vars$6.deletionTextColor]: light.color2,
|
14267
|
+
[vars$6.deletionBgColor]: light.color10,
|
14265
14268
|
/* purposely ignored */
|
14266
14269
|
// [vars.charEscapeTextColor]: '',
|
14267
14270
|
// [vars.linkTextColor]: '',
|
@@ -14273,50 +14276,50 @@ const CodeSnippet = {
|
|
14273
14276
|
|
14274
14277
|
const codeSnippetDarkThemeOverrides = {
|
14275
14278
|
codeSnippet: {
|
14276
|
-
[vars$
|
14277
|
-
[vars$
|
14278
|
-
[vars$
|
14279
|
-
[vars$
|
14280
|
-
[vars$
|
14281
|
-
[vars$
|
14282
|
-
[vars$
|
14283
|
-
[vars$
|
14284
|
-
[vars$
|
14285
|
-
[vars$
|
14286
|
-
[vars$
|
14287
|
-
[vars$
|
14288
|
-
[vars$
|
14289
|
-
[vars$
|
14290
|
-
[vars$
|
14291
|
-
[vars$
|
14292
|
-
[vars$
|
14293
|
-
[vars$
|
14294
|
-
[vars$
|
14295
|
-
[vars$
|
14296
|
-
[vars$
|
14297
|
-
[vars$
|
14298
|
-
[vars$
|
14299
|
-
[vars$
|
14300
|
-
[vars$
|
14301
|
-
[vars$
|
14302
|
-
[vars$
|
14303
|
-
[vars$
|
14304
|
-
[vars$
|
14305
|
-
[vars$
|
14306
|
-
[vars$
|
14307
|
-
[vars$
|
14308
|
-
[vars$
|
14309
|
-
[vars$
|
14310
|
-
[vars$
|
14311
|
-
[vars$
|
14312
|
-
[vars$
|
14313
|
-
[vars$
|
14314
|
-
[vars$
|
14315
|
-
[vars$
|
14316
|
-
[vars$
|
14317
|
-
[vars$
|
14318
|
-
[vars$
|
14319
|
-
[vars$
|
14279
|
+
[vars$6.rootBgColor]: globalRefs$5.colors.surface.main,
|
14280
|
+
[vars$6.rootTextColor]: globalRefs$5.colors.surface.contrast,
|
14281
|
+
[vars$6.docTagTextColor]: dark.color2,
|
14282
|
+
[vars$6.keywordTextColor]: dark.color2,
|
14283
|
+
[vars$6.metaKeywordTextColor]: dark.color2,
|
14284
|
+
[vars$6.templateTagTextColor]: dark.color2,
|
14285
|
+
[vars$6.templateVariableTextColor]: dark.color2,
|
14286
|
+
[vars$6.typeTextColor]: dark.color2,
|
14287
|
+
[vars$6.variableLanguageTextColor]: dark.color2,
|
14288
|
+
[vars$6.titleTextColor]: dark.color3,
|
14289
|
+
[vars$6.titleClassTextColor]: dark.color3,
|
14290
|
+
[vars$6.titleClassInheritedTextColor]: dark.color3,
|
14291
|
+
[vars$6.titleFunctionTextColor]: dark.color3,
|
14292
|
+
[vars$6.attrTextColor]: dark.color4,
|
14293
|
+
[vars$6.attributeTextColor]: dark.color4,
|
14294
|
+
[vars$6.literalTextColor]: dark.color4,
|
14295
|
+
[vars$6.metaTextColor]: dark.color4,
|
14296
|
+
[vars$6.numberTextColor]: dark.color4,
|
14297
|
+
[vars$6.operatorTextColor]: dark.color4,
|
14298
|
+
[vars$6.variableTextColor]: dark.color4,
|
14299
|
+
[vars$6.selectorAttrTextColor]: dark.color4,
|
14300
|
+
[vars$6.selectorClassTextColor]: dark.color4,
|
14301
|
+
[vars$6.selectorIdTextColor]: dark.color4,
|
14302
|
+
[vars$6.regexpTextColor]: dark.color13,
|
14303
|
+
[vars$6.stringTextColor]: dark.color13,
|
14304
|
+
[vars$6.metaStringTextColor]: dark.color13,
|
14305
|
+
[vars$6.builtInTextColor]: dark.color5,
|
14306
|
+
[vars$6.symbolTextColor]: dark.color5,
|
14307
|
+
[vars$6.commentTextColor]: dark.color6,
|
14308
|
+
[vars$6.codeTextColor]: dark.color6,
|
14309
|
+
[vars$6.formulaTextColor]: dark.color6,
|
14310
|
+
[vars$6.nameTextColor]: dark.color7,
|
14311
|
+
[vars$6.quoteTextColor]: dark.color7,
|
14312
|
+
[vars$6.selectorTagTextColor]: dark.color7,
|
14313
|
+
[vars$6.selectorPseudoTextColor]: dark.color7,
|
14314
|
+
[vars$6.substTextColor]: dark.color8,
|
14315
|
+
[vars$6.sectionTextColor]: dark.color4,
|
14316
|
+
[vars$6.bulletTextColor]: dark.color9,
|
14317
|
+
[vars$6.emphasisTextColor]: dark.color8,
|
14318
|
+
[vars$6.strongTextColor]: dark.color8,
|
14319
|
+
[vars$6.additionTextColor]: dark.color7,
|
14320
|
+
[vars$6.additionBgColor]: dark.color10,
|
14321
|
+
[vars$6.deletionTextColor]: dark.color2,
|
14322
|
+
[vars$6.deletionBgColor]: dark.color10,
|
14320
14323
|
},
|
14321
14324
|
};
|
14322
14325
|
|
@@ -14324,36 +14327,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
|
|
14324
14327
|
__proto__: null,
|
14325
14328
|
codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
|
14326
14329
|
default: CodeSnippet,
|
14327
|
-
vars: vars$
|
14330
|
+
vars: vars$6
|
14328
14331
|
});
|
14329
14332
|
|
14330
|
-
const vars$
|
14331
|
-
const globalRefs$
|
14333
|
+
const vars$5 = RadioGroupClass.cssVarList;
|
14334
|
+
const globalRefs$4 = getThemeRefs(globals);
|
14332
14335
|
|
14333
14336
|
const radioGroup = {
|
14334
|
-
[vars$
|
14335
|
-
[vars$
|
14336
|
-
[vars$
|
14337
|
-
[vars$
|
14338
|
-
[vars$
|
14339
|
-
[vars$
|
14340
|
-
[vars$
|
14341
|
-
[vars$
|
14342
|
-
[vars$
|
14343
|
-
[vars$
|
14337
|
+
[vars$5.buttonsRowGap]: '9px',
|
14338
|
+
[vars$5.hostWidth]: refs.width,
|
14339
|
+
[vars$5.hostDirection]: refs.direction,
|
14340
|
+
[vars$5.fontSize]: refs.fontSize,
|
14341
|
+
[vars$5.fontFamily]: refs.fontFamily,
|
14342
|
+
[vars$5.labelTextColor]: refs.labelTextColor,
|
14343
|
+
[vars$5.labelRequiredIndicator]: refs.requiredIndicator,
|
14344
|
+
[vars$5.errorMessageTextColor]: refs.errorMessageTextColor,
|
14345
|
+
[vars$5.helperTextColor]: refs.helperTextColor,
|
14346
|
+
[vars$5.itemsLabelColor]: globalRefs$4.colors.surface.contrast,
|
14344
14347
|
|
14345
14348
|
textAlign: {
|
14346
|
-
right: { [vars$
|
14347
|
-
left: { [vars$
|
14348
|
-
center: { [vars$
|
14349
|
+
right: { [vars$5.inputTextAlign]: 'right' },
|
14350
|
+
left: { [vars$5.inputTextAlign]: 'left' },
|
14351
|
+
center: { [vars$5.inputTextAlign]: 'center' },
|
14349
14352
|
},
|
14350
14353
|
|
14351
14354
|
_fullWidth: {
|
14352
|
-
[vars$
|
14355
|
+
[vars$5.buttonsSpacing]: 'space-between',
|
14353
14356
|
},
|
14354
14357
|
|
14355
14358
|
_disabled: {
|
14356
|
-
[vars$
|
14359
|
+
[vars$5.itemsLabelColor]: globalRefs$4.colors.surface.light,
|
14357
14360
|
},
|
14358
14361
|
};
|
14359
14362
|
|
@@ -14361,24 +14364,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
|
|
14361
14364
|
__proto__: null,
|
14362
14365
|
default: radioGroup,
|
14363
14366
|
radioGroup: radioGroup,
|
14364
|
-
vars: vars$
|
14367
|
+
vars: vars$5
|
14365
14368
|
});
|
14366
14369
|
|
14367
|
-
const vars$
|
14368
|
-
const globalRefs = getThemeRefs(globals);
|
14370
|
+
const vars$4 = RadioButtonClass.cssVarList;
|
14371
|
+
const globalRefs$3 = getThemeRefs(globals);
|
14369
14372
|
|
14370
14373
|
const radioButton = {
|
14371
|
-
[vars$
|
14372
|
-
[vars$
|
14373
|
-
[vars$
|
14374
|
-
[vars$
|
14375
|
-
[vars$
|
14376
|
-
[vars$
|
14377
|
-
[vars$
|
14378
|
-
[vars$
|
14374
|
+
[vars$4.fontFamily]: refs.fontFamily,
|
14375
|
+
[vars$4.radioSize]: 'calc(1em + 6px)',
|
14376
|
+
[vars$4.radioMargin]: 'auto 4px',
|
14377
|
+
[vars$4.radioCheckedSize]: `calc(var(${vars$4.radioSize})/5)`,
|
14378
|
+
[vars$4.radioCheckedColor]: globalRefs$3.colors.surface.light,
|
14379
|
+
[vars$4.radioBackgroundColor]: globalRefs$3.colors.surface.light,
|
14380
|
+
[vars$4.radioBorderColor]: 'none',
|
14381
|
+
[vars$4.radioBorderWidth]: 0,
|
14379
14382
|
|
14380
14383
|
_checked: {
|
14381
|
-
[vars$
|
14384
|
+
[vars$4.radioBackgroundColor]: globalRefs$3.colors.surface.contrast,
|
14382
14385
|
},
|
14383
14386
|
|
14384
14387
|
_hover: {
|
@@ -14387,16 +14390,16 @@ const radioButton = {
|
|
14387
14390
|
|
14388
14391
|
size: {
|
14389
14392
|
xs: {
|
14390
|
-
[vars$
|
14393
|
+
[vars$4.fontSize]: '12px',
|
14391
14394
|
},
|
14392
14395
|
sm: {
|
14393
|
-
[vars$
|
14396
|
+
[vars$4.fontSize]: '14px',
|
14394
14397
|
},
|
14395
14398
|
md: {
|
14396
|
-
[vars$
|
14399
|
+
[vars$4.fontSize]: '16px',
|
14397
14400
|
},
|
14398
14401
|
lg: {
|
14399
|
-
[vars$
|
14402
|
+
[vars$4.fontSize]: '18px',
|
14400
14403
|
},
|
14401
14404
|
},
|
14402
14405
|
};
|
@@ -14405,6 +14408,514 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
|
|
14405
14408
|
__proto__: null,
|
14406
14409
|
default: radioButton,
|
14407
14410
|
radioButton: radioButton,
|
14411
|
+
vars: vars$4
|
14412
|
+
});
|
14413
|
+
|
14414
|
+
const activeableMixin = (superclass) =>
|
14415
|
+
class ActiveableMixinClass extends superclass {
|
14416
|
+
init() {
|
14417
|
+
super.init?.();
|
14418
|
+
|
14419
|
+
this.baseElement.addEventListener('mousedown', (e) => {
|
14420
|
+
e.preventDefault();
|
14421
|
+
this.setAttribute('active', 'true');
|
14422
|
+
window.addEventListener('mouseup', () => this.removeAttribute('active'), {
|
14423
|
+
once: true,
|
14424
|
+
});
|
14425
|
+
});
|
14426
|
+
}
|
14427
|
+
};
|
14428
|
+
|
14429
|
+
const componentName$2 = getComponentName('list-item');
|
14430
|
+
|
14431
|
+
const customMixin$1 = (superclass) =>
|
14432
|
+
class ListItemMixinClass extends superclass {
|
14433
|
+
constructor() {
|
14434
|
+
super();
|
14435
|
+
|
14436
|
+
this.attachShadow({ mode: 'open' }).innerHTML = `
|
14437
|
+
<style>
|
14438
|
+
/*css*/
|
14439
|
+
slot {
|
14440
|
+
width: 100%;
|
14441
|
+
display: flex;
|
14442
|
+
overflow: hidden;
|
14443
|
+
box-sizing: border-box;
|
14444
|
+
}
|
14445
|
+
:host {
|
14446
|
+
display: block;
|
14447
|
+
}
|
14448
|
+
|
14449
|
+
/*!css*/
|
14450
|
+
</style>
|
14451
|
+
<slot></slot>
|
14452
|
+
`;
|
14453
|
+
}
|
14454
|
+
};
|
14455
|
+
|
14456
|
+
const ListItemClass = compose(
|
14457
|
+
createStyleMixin({
|
14458
|
+
mappings: {
|
14459
|
+
padding: {},
|
14460
|
+
backgroundColor: {},
|
14461
|
+
borderColor: {},
|
14462
|
+
borderStyle: {},
|
14463
|
+
borderWidth: {},
|
14464
|
+
borderRadius: {},
|
14465
|
+
outline: {},
|
14466
|
+
cursor: {},
|
14467
|
+
gap: {},
|
14468
|
+
maxWidth: { selector: () => ':host' },
|
14469
|
+
alignItems: {},
|
14470
|
+
flexDirection: {},
|
14471
|
+
transition: {},
|
14472
|
+
},
|
14473
|
+
}),
|
14474
|
+
draggableMixin,
|
14475
|
+
componentNameValidationMixin,
|
14476
|
+
customMixin$1,
|
14477
|
+
activeableMixin
|
14478
|
+
)(createBaseClass({ componentName: componentName$2, baseSelector: 'slot' }));
|
14479
|
+
|
14480
|
+
const componentName$1 = getComponentName('list');
|
14481
|
+
|
14482
|
+
class RawList extends createBaseClass({ componentName: componentName$1, baseSelector: '.wrapper' }) {
|
14483
|
+
static get observedAttributes() {
|
14484
|
+
return ['variant'];
|
14485
|
+
}
|
14486
|
+
|
14487
|
+
constructor() {
|
14488
|
+
super();
|
14489
|
+
|
14490
|
+
this.attachShadow({ mode: 'open' }).innerHTML = `
|
14491
|
+
<style>
|
14492
|
+
/*css*/
|
14493
|
+
.wrapper {
|
14494
|
+
overflow: auto;
|
14495
|
+
display: grid;
|
14496
|
+
max-height: 100%;
|
14497
|
+
width: 100%;
|
14498
|
+
}
|
14499
|
+
|
14500
|
+
:host {
|
14501
|
+
display: inline-flex;
|
14502
|
+
width: 100%;
|
14503
|
+
}
|
14504
|
+
slot[name="empty-state"] {
|
14505
|
+
justify-content: center;
|
14506
|
+
align-items: center;
|
14507
|
+
display: flex;
|
14508
|
+
flex-grow: 1;
|
14509
|
+
}
|
14510
|
+
|
14511
|
+
:host slot[name="empty-state"] {
|
14512
|
+
display: none;
|
14513
|
+
}
|
14514
|
+
:host([empty]) slot[name="empty-state"] {
|
14515
|
+
display: flex;
|
14516
|
+
}
|
14517
|
+
::slotted(:not([slot])) {
|
14518
|
+
width: 100%;
|
14519
|
+
}
|
14520
|
+
/*!css*/
|
14521
|
+
</style>
|
14522
|
+
|
14523
|
+
<div class="wrapper">
|
14524
|
+
<slot></slot>
|
14525
|
+
<slot name="empty-state">
|
14526
|
+
No item...
|
14527
|
+
</slot>
|
14528
|
+
</div>
|
14529
|
+
`;
|
14530
|
+
}
|
14531
|
+
|
14532
|
+
get items() {
|
14533
|
+
return this.shadowRoot.querySelector('slot').assignedElements();
|
14534
|
+
}
|
14535
|
+
|
14536
|
+
#handleEmptyState() {
|
14537
|
+
if (this.items.length === 0) {
|
14538
|
+
this.setAttribute('empty', 'true');
|
14539
|
+
} else {
|
14540
|
+
this.removeAttribute('empty');
|
14541
|
+
}
|
14542
|
+
}
|
14543
|
+
|
14544
|
+
get variant() {
|
14545
|
+
return this.getAttribute('variant') || 'list';
|
14546
|
+
}
|
14547
|
+
|
14548
|
+
#handleItemsVariant() {
|
14549
|
+
this.items.forEach((item) => {
|
14550
|
+
let listItem = item;
|
14551
|
+
if (listItem.localName !== ListItemClass.componentName) {
|
14552
|
+
listItem = item.querySelector(ListItemClass.componentName);
|
14553
|
+
}
|
14554
|
+
|
14555
|
+
const listItemVariant = this.variant === 'tiles' ? 'tile' : 'row';
|
14556
|
+
listItem.setAttribute('variant', listItemVariant);
|
14557
|
+
});
|
14558
|
+
}
|
14559
|
+
|
14560
|
+
init() {
|
14561
|
+
super.init?.();
|
14562
|
+
|
14563
|
+
// we want new items to get the size
|
14564
|
+
observeChildren(this, () => {
|
14565
|
+
this.#handleEmptyState();
|
14566
|
+
this.#handleItemsVariant();
|
14567
|
+
});
|
14568
|
+
}
|
14569
|
+
|
14570
|
+
attributeChangedCallback(name, oldValue, newValue) {
|
14571
|
+
super.attributeChangedCallback?.(name, oldValue, newValue);
|
14572
|
+
|
14573
|
+
if (newValue === oldValue) return;
|
14574
|
+
|
14575
|
+
if (name === 'variant') {
|
14576
|
+
this.#handleItemsVariant();
|
14577
|
+
}
|
14578
|
+
}
|
14579
|
+
}
|
14580
|
+
|
14581
|
+
const ListClass = compose(
|
14582
|
+
createStyleMixin({
|
14583
|
+
mappings: {
|
14584
|
+
hostWidth: { selector: () => ':host', property: 'width' },
|
14585
|
+
maxHeight: { selector: () => ':host' },
|
14586
|
+
minHeight: {},
|
14587
|
+
verticalPadding: [{ property: 'padding-top' }, { property: 'padding-bottom' }],
|
14588
|
+
horizontalPadding: [{ property: 'padding-left' }, { property: 'padding-right' }],
|
14589
|
+
hostDirection: { selector: () => ':host', property: 'direction' },
|
14590
|
+
fontFamily: {},
|
14591
|
+
gap: {},
|
14592
|
+
|
14593
|
+
backgroundColor: {},
|
14594
|
+
borderRadius: {},
|
14595
|
+
borderColor: {},
|
14596
|
+
borderStyle: {},
|
14597
|
+
borderWidth: {},
|
14598
|
+
|
14599
|
+
boxShadow: {},
|
14600
|
+
gridTemplateColumns: {},
|
14601
|
+
maxItemsWidth: { selector: () => '::slotted(:not([slot]))', property: 'max-width' },
|
14602
|
+
minItemsWidth: { selector: () => '::slotted(:not([slot]))', property: 'min-width' },
|
14603
|
+
itemsHorizontalAlign: { selector: () => '::slotted(*)', property: 'justify-self' },
|
14604
|
+
emptyStateTextColor: { selector: () => 'slot[name="empty-state"]', property: 'color' },
|
14605
|
+
emptyStateTextFontFamily: {
|
14606
|
+
selector: () => 'slot[name="empty-state"]',
|
14607
|
+
property: 'font-family',
|
14608
|
+
},
|
14609
|
+
},
|
14610
|
+
}),
|
14611
|
+
draggableMixin,
|
14612
|
+
componentNameValidationMixin
|
14613
|
+
)(RawList);
|
14614
|
+
|
14615
|
+
const globalRefs$2 = getThemeRefs(globals);
|
14616
|
+
|
14617
|
+
const compVars = ListClass.cssVarList;
|
14618
|
+
|
14619
|
+
const [helperTheme, helperRefs, helperVars] = createHelperVars(
|
14620
|
+
{ shadowColor: '#00000020' },
|
14621
|
+
componentName$1
|
14622
|
+
);
|
14623
|
+
|
14624
|
+
const { shadowColor } = helperRefs;
|
14625
|
+
|
14626
|
+
const list$1 = {
|
14627
|
+
...helperTheme,
|
14628
|
+
|
14629
|
+
[compVars.hostWidth]: '100%',
|
14630
|
+
[compVars.backgroundColor]: globalRefs$2.colors.surface.main,
|
14631
|
+
[compVars.fontFamily]: globalRefs$2.fonts.font1.family,
|
14632
|
+
[compVars.borderColor]: globalRefs$2.colors.surface.light,
|
14633
|
+
[compVars.borderStyle]: 'solid',
|
14634
|
+
[compVars.borderWidth]: globalRefs$2.border.xs,
|
14635
|
+
[compVars.borderRadius]: globalRefs$2.radius.sm,
|
14636
|
+
[compVars.gap]: globalRefs$2.spacing.md,
|
14637
|
+
[compVars.verticalPadding]: globalRefs$2.spacing.lg,
|
14638
|
+
[compVars.horizontalPadding]: globalRefs$2.spacing.lg,
|
14639
|
+
[compVars.boxShadow]: `${globalRefs$2.shadow.wide.sm} ${shadowColor}, ${globalRefs$2.shadow.narrow.sm} ${shadowColor}`,
|
14640
|
+
[compVars.maxHeight]: '100%',
|
14641
|
+
[compVars.hostDirection]: globalRefs$2.direction,
|
14642
|
+
[compVars.minItemsWidth]: '150px',
|
14643
|
+
|
14644
|
+
_empty: {
|
14645
|
+
[compVars.minHeight]: '150px',
|
14646
|
+
[compVars.emptyStateTextColor]: globalRefs$2.colors.surface.dark,
|
14647
|
+
[compVars.emptyStateTextFontFamily]: globalRefs$2.fonts.font1.family,
|
14648
|
+
},
|
14649
|
+
|
14650
|
+
variant: {
|
14651
|
+
tiles: {
|
14652
|
+
[compVars.gridTemplateColumns]: `repeat(auto-fit, minmax(min(${useVar(
|
14653
|
+
compVars.minItemsWidth
|
14654
|
+
)}, 100%), 1fr))`,
|
14655
|
+
[compVars.maxItemsWidth]: '200px',
|
14656
|
+
[compVars.itemsHorizontalAlign]: 'center',
|
14657
|
+
},
|
14658
|
+
},
|
14659
|
+
};
|
14660
|
+
|
14661
|
+
const vars$3 = {
|
14662
|
+
...compVars,
|
14663
|
+
...helperVars,
|
14664
|
+
};
|
14665
|
+
|
14666
|
+
var list$2 = /*#__PURE__*/Object.freeze({
|
14667
|
+
__proto__: null,
|
14668
|
+
default: list$1,
|
14669
|
+
vars: vars$3
|
14670
|
+
});
|
14671
|
+
|
14672
|
+
const globalRefs$1 = getThemeRefs(globals);
|
14673
|
+
|
14674
|
+
const vars$2 = ListItemClass.cssVarList;
|
14675
|
+
|
14676
|
+
const list = {
|
14677
|
+
[vars$2.backgroundColor]: globalRefs$1.colors.surface.main,
|
14678
|
+
[vars$2.padding]: globalRefs$1.spacing.lg,
|
14679
|
+
[vars$2.gap]: globalRefs$1.spacing.md,
|
14680
|
+
[vars$2.borderStyle]: 'solid',
|
14681
|
+
[vars$2.borderWidth]: globalRefs$1.border.xs,
|
14682
|
+
[vars$2.borderColor]: globalRefs$1.colors.surface.main,
|
14683
|
+
[vars$2.borderRadius]: globalRefs$1.radius.sm,
|
14684
|
+
[vars$2.cursor]: 'pointer',
|
14685
|
+
[vars$2.alignItems]: 'center',
|
14686
|
+
[vars$2.flexDirection]: 'row',
|
14687
|
+
[vars$2.transition]: 'border-color 0.2s, background-color 0.2s',
|
14688
|
+
|
14689
|
+
variant: {
|
14690
|
+
tile: {
|
14691
|
+
[vars$2.alignItems]: 'flex-start',
|
14692
|
+
[vars$2.flexDirection]: 'column',
|
14693
|
+
[vars$2.borderColor]: globalRefs$1.colors.surface.light,
|
14694
|
+
},
|
14695
|
+
},
|
14696
|
+
|
14697
|
+
_hover: {
|
14698
|
+
[vars$2.backgroundColor]: globalRefs$1.colors.surface.highlight,
|
14699
|
+
},
|
14700
|
+
|
14701
|
+
_active: {
|
14702
|
+
[vars$2.backgroundColor]: globalRefs$1.colors.surface.main,
|
14703
|
+
[vars$2.borderColor]: globalRefs$1.colors.primary.light,
|
14704
|
+
[vars$2.outline]: `1px solid ${globalRefs$1.colors.primary.light}`,
|
14705
|
+
},
|
14706
|
+
};
|
14707
|
+
|
14708
|
+
var listItem = /*#__PURE__*/Object.freeze({
|
14709
|
+
__proto__: null,
|
14710
|
+
default: list,
|
14711
|
+
vars: vars$2
|
14712
|
+
});
|
14713
|
+
|
14714
|
+
const defaultValidateSchema = () => true;
|
14715
|
+
const defaultItemRenderer = (item) => `<pre>${JSON.stringify(item, null, 4)}</pre>`;
|
14716
|
+
|
14717
|
+
const createTemplate = (templateString) => {
|
14718
|
+
const template = document.createElement('template');
|
14719
|
+
template.innerHTML = templateString;
|
14720
|
+
|
14721
|
+
return template;
|
14722
|
+
};
|
14723
|
+
|
14724
|
+
const getTemplateContent = (templateOrString) => {
|
14725
|
+
if (typeof templateOrString === 'string') {
|
14726
|
+
return createTemplate(templateOrString).content;
|
14727
|
+
}
|
14728
|
+
|
14729
|
+
if (templateOrString instanceof HTMLTemplateElement) {
|
14730
|
+
return templateOrString.content;
|
14731
|
+
}
|
14732
|
+
|
14733
|
+
// eslint-disable-next-line no-console
|
14734
|
+
console.error('Invalid template', templateOrString);
|
14735
|
+
return null;
|
14736
|
+
};
|
14737
|
+
|
14738
|
+
const createDynamicDataMixin =
|
14739
|
+
({
|
14740
|
+
itemRenderer = defaultItemRenderer,
|
14741
|
+
validateSchema = defaultValidateSchema,
|
14742
|
+
slotName,
|
14743
|
+
rerenderAttrsList = [],
|
14744
|
+
}) =>
|
14745
|
+
(superclass) =>
|
14746
|
+
class DynamicDataMixinClass extends superclass {
|
14747
|
+
#data = [];
|
14748
|
+
|
14749
|
+
// eslint-disable-next-line class-methods-use-this
|
14750
|
+
#validateSchema(data) {
|
14751
|
+
if (!validateSchema) return true;
|
14752
|
+
|
14753
|
+
const validation = validateSchema(data);
|
14754
|
+
if (validation === true) return true;
|
14755
|
+
|
14756
|
+
// eslint-disable-next-line no-console
|
14757
|
+
console.error('Data schema validation failed', validation || '');
|
14758
|
+
|
14759
|
+
return false;
|
14760
|
+
}
|
14761
|
+
|
14762
|
+
#removeOldItems() {
|
14763
|
+
const selector = slotName ? `*[slot="${slotName}"]` : ':not([slot])';
|
14764
|
+
this.baseElement.querySelectorAll(selector).forEach((item) => item.remove());
|
14765
|
+
}
|
14766
|
+
|
14767
|
+
#renderItems() {
|
14768
|
+
this.#removeOldItems();
|
14769
|
+
this.data.forEach((item, index) => {
|
14770
|
+
const content = getTemplateContent(itemRenderer(item, index, this));
|
14771
|
+
this.baseElement.appendChild(content?.cloneNode(true));
|
14772
|
+
});
|
14773
|
+
}
|
14774
|
+
|
14775
|
+
set data(value) {
|
14776
|
+
if (this.#validateSchema(value)) {
|
14777
|
+
this.#data = value;
|
14778
|
+
this.#renderItems();
|
14779
|
+
}
|
14780
|
+
}
|
14781
|
+
|
14782
|
+
get data() {
|
14783
|
+
return this.#data;
|
14784
|
+
}
|
14785
|
+
|
14786
|
+
init() {
|
14787
|
+
super.init?.();
|
14788
|
+
|
14789
|
+
if (rerenderAttrsList.length) {
|
14790
|
+
observeAttributes(this, () => this.#renderItems(), { includeAttrs: rerenderAttrsList });
|
14791
|
+
} else {
|
14792
|
+
this.#renderItems();
|
14793
|
+
}
|
14794
|
+
}
|
14795
|
+
};
|
14796
|
+
|
14797
|
+
const componentName = getComponentName('apps-list');
|
14798
|
+
|
14799
|
+
const limitAbbreviation = (str, limit = 3) =>
|
14800
|
+
str
|
14801
|
+
.trim()
|
14802
|
+
.split(' ')
|
14803
|
+
.splice(0, limit)
|
14804
|
+
.map((s) => s[0]?.toUpperCase())
|
14805
|
+
.join('');
|
14806
|
+
|
14807
|
+
const itemRenderer = ({ name, icon, url }, _, ref) => `
|
14808
|
+
<a href="${url}" target="_blank" title="${url}">
|
14809
|
+
<descope-list-item>
|
14810
|
+
<descope-avatar
|
14811
|
+
img="${icon}"
|
14812
|
+
display-name="${name}"
|
14813
|
+
abbr=${limitAbbreviation(name)}
|
14814
|
+
size=${ref.size}
|
14815
|
+
></descope-avatar>
|
14816
|
+
<descope-text
|
14817
|
+
variant="body1"
|
14818
|
+
mode="primary"
|
14819
|
+
>${name}</descope-text>
|
14820
|
+
</descope-list-item>
|
14821
|
+
</a>
|
14822
|
+
`;
|
14823
|
+
|
14824
|
+
const customMixin = (superclass) =>
|
14825
|
+
class AppsListMixinClass extends superclass {
|
14826
|
+
get size() {
|
14827
|
+
return this.getAttribute('size') || 'sm';
|
14828
|
+
}
|
14829
|
+
};
|
14830
|
+
|
14831
|
+
const AppsListClass = compose(
|
14832
|
+
createStyleMixin({
|
14833
|
+
mappings: {
|
14834
|
+
maxHeight: { selector: () => ':host' },
|
14835
|
+
minHeight: { selector: () => ':host' },
|
14836
|
+
hostDirection: { selector: () => ':host', property: 'direction' },
|
14837
|
+
itemsFontWeight: {
|
14838
|
+
selector: TextClass.componentName,
|
14839
|
+
property: TextClass.cssVarList.fontWeight,
|
14840
|
+
},
|
14841
|
+
itemsFontSize: {
|
14842
|
+
selector: TextClass.componentName,
|
14843
|
+
property: TextClass.cssVarList.fontSize,
|
14844
|
+
},
|
14845
|
+
itemsTextAlign: {
|
14846
|
+
selector: TextClass.componentName,
|
14847
|
+
property: TextClass.cssVarList.textAlign,
|
14848
|
+
},
|
14849
|
+
},
|
14850
|
+
}),
|
14851
|
+
createDynamicDataMixin({ itemRenderer, rerenderAttrsList: ['size'] }),
|
14852
|
+
draggableMixin,
|
14853
|
+
componentNameValidationMixin,
|
14854
|
+
customMixin
|
14855
|
+
)(
|
14856
|
+
createProxy({
|
14857
|
+
slots: ['empty-state'],
|
14858
|
+
wrappedEleName: 'descope-list',
|
14859
|
+
excludeAttrsSync: ['tabindex', 'class'],
|
14860
|
+
componentName,
|
14861
|
+
style: () => `
|
14862
|
+
:host {
|
14863
|
+
width: 100%;
|
14864
|
+
display: inline-flex;
|
14865
|
+
}
|
14866
|
+
|
14867
|
+
descope-text::part(text-wrapper) {
|
14868
|
+
display: -webkit-box;
|
14869
|
+
-webkit-line-clamp: 2;
|
14870
|
+
-webkit-box-orient: vertical;
|
14871
|
+
overflow: hidden;
|
14872
|
+
}
|
14873
|
+
|
14874
|
+
a {
|
14875
|
+
text-decoration: none;
|
14876
|
+
}
|
14877
|
+
|
14878
|
+
descope-text {
|
14879
|
+
${TextClass.cssVarList.hostDirection}: var(${AppsListClass.cssVarList.hostDirection});
|
14880
|
+
}
|
14881
|
+
`,
|
14882
|
+
})
|
14883
|
+
);
|
14884
|
+
|
14885
|
+
const vars$1 = AppsListClass.cssVarList;
|
14886
|
+
const globalRefs = getThemeRefs(globals);
|
14887
|
+
|
14888
|
+
const defaultHeight = '400px';
|
14889
|
+
|
14890
|
+
const appsList = {
|
14891
|
+
[vars$1.itemsFontWeight]: 'normal',
|
14892
|
+
[vars$1.itemsTextAlign]: 'start',
|
14893
|
+
[vars$1.hostDirection]: globalRefs.direction,
|
14894
|
+
[vars$1.maxHeight]: defaultHeight,
|
14895
|
+
|
14896
|
+
_empty: {
|
14897
|
+
[vars$1.minHeight]: defaultHeight,
|
14898
|
+
},
|
14899
|
+
|
14900
|
+
size: {
|
14901
|
+
xs: {
|
14902
|
+
[vars$1.itemsFontSize]: '14px',
|
14903
|
+
},
|
14904
|
+
sm: {
|
14905
|
+
[vars$1.itemsFontSize]: '14px',
|
14906
|
+
},
|
14907
|
+
md: {
|
14908
|
+
[vars$1.itemsFontSize]: '16px',
|
14909
|
+
},
|
14910
|
+
lg: {
|
14911
|
+
[vars$1.itemsFontSize]: '20px',
|
14912
|
+
},
|
14913
|
+
},
|
14914
|
+
};
|
14915
|
+
|
14916
|
+
var appsList$1 = /*#__PURE__*/Object.freeze({
|
14917
|
+
__proto__: null,
|
14918
|
+
default: appsList,
|
14408
14919
|
vars: vars$1
|
14409
14920
|
});
|
14410
14921
|
|
@@ -14453,6 +14964,9 @@ const components = {
|
|
14453
14964
|
codeSnippet,
|
14454
14965
|
radioGroup: radioGroup$1,
|
14455
14966
|
radioButton: radioButton$1,
|
14967
|
+
list: list$2,
|
14968
|
+
listItem,
|
14969
|
+
appsList: appsList$1,
|
14456
14970
|
};
|
14457
14971
|
|
14458
14972
|
const theme = Object.keys(components).reduce(
|
@@ -14465,7 +14979,7 @@ const vars = Object.keys(components).reduce(
|
|
14465
14979
|
);
|
14466
14980
|
|
14467
14981
|
const defaultTheme = { globals, components: theme };
|
14468
|
-
const themeVars = { globals: vars$
|
14982
|
+
const themeVars = { globals: vars$M, components: vars };
|
14469
14983
|
|
14470
14984
|
const colors = {
|
14471
14985
|
surface: {
|