@descope/web-components-ui 1.0.387 → 1.0.388
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs.js +1280 -1178
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1258 -1155
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/boolean-fields-descope-checkbox-index-js.js +1 -1
- package/dist/umd/boolean-fields-descope-switch-toggle-index-js.js +1 -1
- package/dist/umd/descope-apps-list-index-js.js +1 -1
- package/dist/umd/descope-grid-descope-grid-selection-column-index-js.js +1 -1
- package/dist/umd/descope-grid-index-js.js +1 -1
- package/dist/umd/descope-scopes-list-index-js.js +2 -0
- package/dist/umd/descope-scopes-list-index-js.js.LICENSE.txt +5 -0
- package/dist/umd/index.js +1 -1
- package/package.json +1 -1
- package/src/components/boolean-fields/commonStyles.js +1 -2
- package/src/components/boolean-fields/descope-checkbox/CheckboxClass.js +6 -0
- package/src/components/descope-scopes-list/ScopesListClass.js +111 -0
- package/src/components/descope-scopes-list/index.js +7 -0
- package/src/index.cjs.js +1 -0
- package/src/index.js +1 -0
- package/src/mixins/createDynamicDataMixin.js +9 -28
- package/src/theme/components/checkbox.js +1 -8
- package/src/theme/components/index.js +2 -0
- package/src/theme/components/scopesList.js +15 -0
package/dist/index.esm.js
CHANGED
@@ -1715,9 +1715,9 @@ const createIcon = async (src) => {
|
|
1715
1715
|
|
1716
1716
|
/* eslint-disable no-use-before-define */
|
1717
1717
|
|
1718
|
-
const componentName$
|
1718
|
+
const componentName$11 = getComponentName('icon');
|
1719
1719
|
|
1720
|
-
class RawIcon extends createBaseClass({ componentName: componentName$
|
1720
|
+
class RawIcon extends createBaseClass({ componentName: componentName$11, baseSelector: 'slot' }) {
|
1721
1721
|
static get observedAttributes() {
|
1722
1722
|
return ['src'];
|
1723
1723
|
}
|
@@ -1802,7 +1802,7 @@ const clickableMixin = (superclass) =>
|
|
1802
1802
|
}
|
1803
1803
|
};
|
1804
1804
|
|
1805
|
-
const componentName
|
1805
|
+
const componentName$10 = getComponentName('button');
|
1806
1806
|
|
1807
1807
|
const resetStyles = `
|
1808
1808
|
:host {
|
@@ -1918,7 +1918,7 @@ const ButtonClass = compose(
|
|
1918
1918
|
}
|
1919
1919
|
`,
|
1920
1920
|
excludeAttrsSync: ['tabindex'],
|
1921
|
-
componentName: componentName
|
1921
|
+
componentName: componentName$10,
|
1922
1922
|
})
|
1923
1923
|
);
|
1924
1924
|
|
@@ -1955,7 +1955,7 @@ loadingIndicatorStyles = `
|
|
1955
1955
|
}
|
1956
1956
|
`;
|
1957
1957
|
|
1958
|
-
customElements.define(componentName
|
1958
|
+
customElements.define(componentName$10, ButtonClass);
|
1959
1959
|
|
1960
1960
|
const createBaseInputClass = (...args) =>
|
1961
1961
|
compose(
|
@@ -1965,11 +1965,11 @@ const createBaseInputClass = (...args) =>
|
|
1965
1965
|
inputEventsDispatchingMixin
|
1966
1966
|
)(createBaseClass(...args));
|
1967
1967
|
|
1968
|
-
const componentName
|
1968
|
+
const componentName$$ = getComponentName('boolean-field-internal');
|
1969
1969
|
|
1970
1970
|
const forwardAttributes$1 = ['disabled', 'label', 'invalid', 'readonly'];
|
1971
1971
|
|
1972
|
-
const BaseInputClass$a = createBaseInputClass({ componentName: componentName
|
1972
|
+
const BaseInputClass$a = createBaseInputClass({ componentName: componentName$$, baseSelector: 'div' });
|
1973
1973
|
|
1974
1974
|
class BooleanInputInternal extends BaseInputClass$a {
|
1975
1975
|
static get observedAttributes() {
|
@@ -2045,14 +2045,14 @@ const booleanFieldMixin = (superclass) =>
|
|
2045
2045
|
|
2046
2046
|
const template = document.createElement('template');
|
2047
2047
|
template.innerHTML = `
|
2048
|
-
<${componentName
|
2048
|
+
<${componentName$$}
|
2049
2049
|
tabindex="-1"
|
2050
2050
|
slot="input"
|
2051
|
-
></${componentName
|
2051
|
+
></${componentName$$}>
|
2052
2052
|
`;
|
2053
2053
|
|
2054
2054
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
2055
|
-
this.inputElement = this.shadowRoot.querySelector(componentName
|
2055
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$$);
|
2056
2056
|
this.checkbox = this.inputElement.querySelector('vaadin-checkbox');
|
2057
2057
|
|
2058
2058
|
forwardAttrs(this, this.inputElement, {
|
@@ -2235,8 +2235,7 @@ vaadin-text-field {
|
|
2235
2235
|
align-items: flex-start;
|
2236
2236
|
}
|
2237
2237
|
vaadin-text-field::before {
|
2238
|
-
|
2239
|
-
margin: 0;
|
2238
|
+
content: unset;
|
2240
2239
|
}
|
2241
2240
|
vaadin-text-field::part(label) {
|
2242
2241
|
position: absolute;
|
@@ -2267,7 +2266,7 @@ descope-boolean-field-internal {
|
|
2267
2266
|
}
|
2268
2267
|
`;
|
2269
2268
|
|
2270
|
-
const componentName$
|
2269
|
+
const componentName$_ = getComponentName('checkbox');
|
2271
2270
|
|
2272
2271
|
const {
|
2273
2272
|
host: host$n,
|
@@ -2343,6 +2342,7 @@ const CheckboxClass = compose(
|
|
2343
2342
|
:host {
|
2344
2343
|
display: inline-flex;
|
2345
2344
|
max-width: 100%;
|
2345
|
+
margin: 1px;
|
2346
2346
|
}
|
2347
2347
|
|
2348
2348
|
:host ::part(error-message) {
|
@@ -2366,6 +2366,11 @@ const CheckboxClass = compose(
|
|
2366
2366
|
vaadin-checkbox::part(checkbox)::after {
|
2367
2367
|
top: 0;
|
2368
2368
|
left: 0;
|
2369
|
+
-webkit-text-fill-color: initial;
|
2370
|
+
}
|
2371
|
+
|
2372
|
+
vaadin-checkbox label {
|
2373
|
+
-webkit-text-fill-color: initial;
|
2369
2374
|
}
|
2370
2375
|
|
2371
2376
|
vaadin-text-field::part(input-field)::after {
|
@@ -2373,15 +2378,15 @@ const CheckboxClass = compose(
|
|
2373
2378
|
}
|
2374
2379
|
`,
|
2375
2380
|
excludeAttrsSync: ['label', 'tabindex'],
|
2376
|
-
componentName: componentName$
|
2381
|
+
componentName: componentName$_,
|
2377
2382
|
})
|
2378
2383
|
);
|
2379
2384
|
|
2380
|
-
customElements.define(componentName
|
2385
|
+
customElements.define(componentName$$, BooleanInputInternal);
|
2381
2386
|
|
2382
|
-
customElements.define(componentName$
|
2387
|
+
customElements.define(componentName$_, CheckboxClass);
|
2383
2388
|
|
2384
|
-
const componentName$
|
2389
|
+
const componentName$Z = getComponentName('switch-toggle');
|
2385
2390
|
|
2386
2391
|
const {
|
2387
2392
|
host: host$m,
|
@@ -2513,17 +2518,17 @@ const SwitchToggleClass = compose(
|
|
2513
2518
|
}
|
2514
2519
|
`,
|
2515
2520
|
excludeAttrsSync: ['label', 'tabindex'],
|
2516
|
-
componentName: componentName$
|
2521
|
+
componentName: componentName$Z,
|
2517
2522
|
})
|
2518
2523
|
);
|
2519
2524
|
|
2520
|
-
customElements.define(componentName$
|
2525
|
+
customElements.define(componentName$Z, SwitchToggleClass);
|
2521
2526
|
|
2522
|
-
const componentName$
|
2527
|
+
const componentName$Y = getComponentName('loader-linear');
|
2523
2528
|
|
2524
|
-
class RawLoaderLinear extends createBaseClass({ componentName: componentName$
|
2529
|
+
class RawLoaderLinear extends createBaseClass({ componentName: componentName$Y, baseSelector: ':host > div' }) {
|
2525
2530
|
static get componentName() {
|
2526
|
-
return componentName$
|
2531
|
+
return componentName$Y;
|
2527
2532
|
}
|
2528
2533
|
|
2529
2534
|
constructor() {
|
@@ -2584,11 +2589,11 @@ const LoaderLinearClass = compose(
|
|
2584
2589
|
componentNameValidationMixin
|
2585
2590
|
)(RawLoaderLinear);
|
2586
2591
|
|
2587
|
-
customElements.define(componentName$
|
2592
|
+
customElements.define(componentName$Y, LoaderLinearClass);
|
2588
2593
|
|
2589
|
-
const componentName$
|
2594
|
+
const componentName$X = getComponentName('loader-radial');
|
2590
2595
|
|
2591
|
-
class RawLoaderRadial extends createBaseClass({ componentName: componentName$
|
2596
|
+
class RawLoaderRadial extends createBaseClass({ componentName: componentName$X, baseSelector: ':host > div' }) {
|
2592
2597
|
constructor() {
|
2593
2598
|
super();
|
2594
2599
|
|
@@ -2632,11 +2637,11 @@ const LoaderRadialClass = compose(
|
|
2632
2637
|
componentNameValidationMixin
|
2633
2638
|
)(RawLoaderRadial);
|
2634
2639
|
|
2635
|
-
customElements.define(componentName$
|
2640
|
+
customElements.define(componentName$X, LoaderRadialClass);
|
2636
2641
|
|
2637
|
-
const componentName$
|
2642
|
+
const componentName$W = getComponentName('container');
|
2638
2643
|
|
2639
|
-
class RawContainer extends createBaseClass({ componentName: componentName$
|
2644
|
+
class RawContainer extends createBaseClass({ componentName: componentName$W, baseSelector: 'slot' }) {
|
2640
2645
|
constructor() {
|
2641
2646
|
super();
|
2642
2647
|
|
@@ -2689,9 +2694,9 @@ const ContainerClass = compose(
|
|
2689
2694
|
componentNameValidationMixin
|
2690
2695
|
)(RawContainer);
|
2691
2696
|
|
2692
|
-
customElements.define(componentName$
|
2697
|
+
customElements.define(componentName$W, ContainerClass);
|
2693
2698
|
|
2694
|
-
const componentName$
|
2699
|
+
const componentName$V = getComponentName('combo-box');
|
2695
2700
|
|
2696
2701
|
const ComboBoxMixin = (superclass) =>
|
2697
2702
|
class ComboBoxMixinClass extends superclass {
|
@@ -3136,14 +3141,14 @@ const ComboBoxClass = compose(
|
|
3136
3141
|
// and reset items to an empty array, and opening the list box with no items
|
3137
3142
|
// to display.
|
3138
3143
|
excludeAttrsSync: ['tabindex', 'size', 'data'],
|
3139
|
-
componentName: componentName$
|
3144
|
+
componentName: componentName$V,
|
3140
3145
|
includeForwardProps: ['items', 'renderer', 'selectedItem'],
|
3141
3146
|
})
|
3142
3147
|
);
|
3143
3148
|
|
3144
|
-
customElements.define(componentName$
|
3149
|
+
customElements.define(componentName$V, ComboBoxClass);
|
3145
3150
|
|
3146
|
-
customElements.define(componentName$
|
3151
|
+
customElements.define(componentName$11, IconClass);
|
3147
3152
|
|
3148
3153
|
const SUPPORTED_FORMATS = ['MM/DD/YYYY', 'DD/MM/YYYY', 'YYYY/MM/DD'];
|
3149
3154
|
|
@@ -3460,7 +3465,7 @@ const nextMonth = (timestamp) => {
|
|
3460
3465
|
return date;
|
3461
3466
|
};
|
3462
3467
|
|
3463
|
-
const componentName$
|
3468
|
+
const componentName$U = getComponentName('calendar');
|
3464
3469
|
|
3465
3470
|
const observedAttrs$2 = [
|
3466
3471
|
'initial-value',
|
@@ -3477,7 +3482,7 @@ const observedAttrs$2 = [
|
|
3477
3482
|
|
3478
3483
|
const calendarUiAttrs = ['calendar-label-submit', 'calendar-label-cancel'];
|
3479
3484
|
|
3480
|
-
const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$
|
3485
|
+
const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$U, baseSelector: 'div' });
|
3481
3486
|
|
3482
3487
|
class RawCalendar extends BaseInputClass$9 {
|
3483
3488
|
static get observedAttributes() {
|
@@ -4090,7 +4095,7 @@ const CalendarClass = compose(
|
|
4090
4095
|
componentNameValidationMixin
|
4091
4096
|
)(RawCalendar);
|
4092
4097
|
|
4093
|
-
customElements.define(componentName$
|
4098
|
+
customElements.define(componentName$U, CalendarClass);
|
4094
4099
|
|
4095
4100
|
const {
|
4096
4101
|
host: host$j,
|
@@ -4237,7 +4242,7 @@ var textFieldMappings = {
|
|
4237
4242
|
inputIconColor: { ...inputIcon, property: 'color' },
|
4238
4243
|
};
|
4239
4244
|
|
4240
|
-
const componentName$
|
4245
|
+
const componentName$T = getComponentName('text-field');
|
4241
4246
|
|
4242
4247
|
const observedAttrs$1 = ['type', 'label-type', 'copy-to-clipboard'];
|
4243
4248
|
|
@@ -4359,11 +4364,11 @@ const TextFieldClass = compose(
|
|
4359
4364
|
}
|
4360
4365
|
`,
|
4361
4366
|
excludeAttrsSync: ['tabindex'],
|
4362
|
-
componentName: componentName$
|
4367
|
+
componentName: componentName$T,
|
4363
4368
|
})
|
4364
4369
|
);
|
4365
4370
|
|
4366
|
-
customElements.define(componentName$
|
4371
|
+
customElements.define(componentName$T, TextFieldClass);
|
4367
4372
|
|
4368
4373
|
const patterns = {
|
4369
4374
|
MM: '(0?[1-9]|1[0-2])',
|
@@ -4496,12 +4501,12 @@ class DateCounter {
|
|
4496
4501
|
}
|
4497
4502
|
}
|
4498
4503
|
|
4499
|
-
const componentName$
|
4504
|
+
const componentName$S = getComponentName('date-field');
|
4500
4505
|
|
4501
4506
|
// we set baseSelector to `vaadin-popover` as a temporary hack, so our portalMixin will
|
4502
4507
|
// be able to process this component's overlay. The whole process needs refactoring as soon as possible.
|
4503
4508
|
const BASE_SELECTOR = 'vaadin-popover';
|
4504
|
-
const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$
|
4509
|
+
const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$S, baseSelector: BASE_SELECTOR });
|
4505
4510
|
|
4506
4511
|
const dateFieldAttrs = ['format', 'opened', 'initial-value', 'readonly'];
|
4507
4512
|
const calendarAttrs = ['years-range', 'calendar-months', 'calendar-weekdays'];
|
@@ -5168,11 +5173,11 @@ const DateFieldClass = compose(
|
|
5168
5173
|
componentNameValidationMixin
|
5169
5174
|
)(RawDateFieldClass);
|
5170
5175
|
|
5171
|
-
customElements.define(componentName$
|
5176
|
+
customElements.define(componentName$S, DateFieldClass);
|
5172
5177
|
|
5173
|
-
const componentName$
|
5178
|
+
const componentName$R = getComponentName('text');
|
5174
5179
|
|
5175
|
-
class RawText extends createBaseClass({ componentName: componentName$
|
5180
|
+
class RawText extends createBaseClass({ componentName: componentName$R, baseSelector: ':host > slot' }) {
|
5176
5181
|
constructor() {
|
5177
5182
|
super();
|
5178
5183
|
|
@@ -5229,8 +5234,8 @@ const TextClass = compose(
|
|
5229
5234
|
componentNameValidationMixin
|
5230
5235
|
)(RawText);
|
5231
5236
|
|
5232
|
-
const componentName$
|
5233
|
-
class RawDivider extends createBaseClass({ componentName: componentName$
|
5237
|
+
const componentName$Q = getComponentName('divider');
|
5238
|
+
class RawDivider extends createBaseClass({ componentName: componentName$Q, baseSelector: ':host > div' }) {
|
5234
5239
|
constructor() {
|
5235
5240
|
super();
|
5236
5241
|
|
@@ -5329,11 +5334,11 @@ const DividerClass = compose(
|
|
5329
5334
|
componentNameValidationMixin
|
5330
5335
|
)(RawDivider);
|
5331
5336
|
|
5332
|
-
customElements.define(componentName$
|
5337
|
+
customElements.define(componentName$R, TextClass);
|
5333
5338
|
|
5334
|
-
customElements.define(componentName$
|
5339
|
+
customElements.define(componentName$Q, DividerClass);
|
5335
5340
|
|
5336
|
-
const componentName$
|
5341
|
+
const componentName$P = getComponentName('email-field');
|
5337
5342
|
|
5338
5343
|
const defaultPattern = "^[\\w\\.\\%\\+\\-']+@[\\w\\.\\-]+\\.[A-Za-z]{2,}$";
|
5339
5344
|
const defaultAutocomplete = 'username';
|
@@ -5401,15 +5406,15 @@ const EmailFieldClass = compose(
|
|
5401
5406
|
}
|
5402
5407
|
`,
|
5403
5408
|
excludeAttrsSync: ['tabindex'],
|
5404
|
-
componentName: componentName$
|
5409
|
+
componentName: componentName$P,
|
5405
5410
|
})
|
5406
5411
|
);
|
5407
5412
|
|
5408
|
-
customElements.define(componentName$
|
5413
|
+
customElements.define(componentName$P, EmailFieldClass);
|
5409
5414
|
|
5410
|
-
const componentName$
|
5415
|
+
const componentName$O = getComponentName('link');
|
5411
5416
|
|
5412
|
-
class RawLink extends createBaseClass({ componentName: componentName$
|
5417
|
+
class RawLink extends createBaseClass({ componentName: componentName$O, baseSelector: ':host a' }) {
|
5413
5418
|
constructor() {
|
5414
5419
|
super();
|
5415
5420
|
|
@@ -5473,7 +5478,7 @@ const LinkClass = compose(
|
|
5473
5478
|
componentNameValidationMixin
|
5474
5479
|
)(RawLink);
|
5475
5480
|
|
5476
|
-
customElements.define(componentName$
|
5481
|
+
customElements.define(componentName$O, LinkClass);
|
5477
5482
|
|
5478
5483
|
const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) => {
|
5479
5484
|
let style;
|
@@ -5525,37 +5530,37 @@ const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) =>
|
|
5525
5530
|
return CssVarImageClass;
|
5526
5531
|
};
|
5527
5532
|
|
5528
|
-
const componentName$
|
5533
|
+
const componentName$N = getComponentName('logo');
|
5529
5534
|
|
5530
5535
|
const LogoClass = createCssVarImageClass({
|
5531
|
-
componentName: componentName$
|
5536
|
+
componentName: componentName$N,
|
5532
5537
|
varName: 'url',
|
5533
5538
|
fallbackVarName: 'fallbackUrl',
|
5534
5539
|
});
|
5535
5540
|
|
5536
|
-
customElements.define(componentName$
|
5541
|
+
customElements.define(componentName$N, LogoClass);
|
5537
5542
|
|
5538
|
-
const componentName$
|
5543
|
+
const componentName$M = getComponentName('totp-image');
|
5539
5544
|
|
5540
5545
|
const TotpImageClass = createCssVarImageClass({
|
5541
|
-
componentName: componentName$
|
5546
|
+
componentName: componentName$M,
|
5542
5547
|
varName: 'url',
|
5543
5548
|
fallbackVarName: 'fallbackUrl',
|
5544
5549
|
});
|
5545
5550
|
|
5546
|
-
customElements.define(componentName$
|
5551
|
+
customElements.define(componentName$M, TotpImageClass);
|
5547
5552
|
|
5548
|
-
const componentName$
|
5553
|
+
const componentName$L = getComponentName('notp-image');
|
5549
5554
|
|
5550
5555
|
const NotpImageClass = createCssVarImageClass({
|
5551
|
-
componentName: componentName$
|
5556
|
+
componentName: componentName$L,
|
5552
5557
|
varName: 'url',
|
5553
5558
|
fallbackVarName: 'fallbackUrl',
|
5554
5559
|
});
|
5555
5560
|
|
5556
|
-
customElements.define(componentName$
|
5561
|
+
customElements.define(componentName$L, NotpImageClass);
|
5557
5562
|
|
5558
|
-
const componentName$
|
5563
|
+
const componentName$K = getComponentName('number-field');
|
5559
5564
|
|
5560
5565
|
const NumberFieldClass = compose(
|
5561
5566
|
createStyleMixin({
|
@@ -5589,11 +5594,11 @@ const NumberFieldClass = compose(
|
|
5589
5594
|
}
|
5590
5595
|
`,
|
5591
5596
|
excludeAttrsSync: ['tabindex'],
|
5592
|
-
componentName: componentName$
|
5597
|
+
componentName: componentName$K,
|
5593
5598
|
})
|
5594
5599
|
);
|
5595
5600
|
|
5596
|
-
customElements.define(componentName$
|
5601
|
+
customElements.define(componentName$K, NumberFieldClass);
|
5597
5602
|
|
5598
5603
|
const INPUT_MASK_TEXT_PROP = '--descope-input-mask-content';
|
5599
5604
|
const INPUT_MASK_DISPLAY_PROP = '--descope-input-mask-display';
|
@@ -5639,13 +5644,13 @@ const toggleMaskVisibility = (input, value) => {
|
|
5639
5644
|
|
5640
5645
|
/* eslint-disable no-param-reassign */
|
5641
5646
|
|
5642
|
-
const componentName$
|
5647
|
+
const componentName$J = getComponentName('passcode-internal');
|
5643
5648
|
|
5644
5649
|
const observedAttributes$5 = ['digits', 'loading'];
|
5645
5650
|
|
5646
5651
|
const forwardAttributes = ['disabled', 'bordered', 'size', 'invalid', 'readonly'];
|
5647
5652
|
|
5648
|
-
const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$
|
5653
|
+
const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$J, baseSelector: 'div' });
|
5649
5654
|
|
5650
5655
|
class PasscodeInternal extends BaseInputClass$7 {
|
5651
5656
|
static get observedAttributes() {
|
@@ -5863,7 +5868,7 @@ class PasscodeInternal extends BaseInputClass$7 {
|
|
5863
5868
|
}
|
5864
5869
|
}
|
5865
5870
|
|
5866
|
-
const componentName$
|
5871
|
+
const componentName$I = getComponentName('passcode');
|
5867
5872
|
|
5868
5873
|
const observedAttributes$4 = ['digits'];
|
5869
5874
|
|
@@ -5882,17 +5887,17 @@ const customMixin$a = (superclass) =>
|
|
5882
5887
|
const template = document.createElement('template');
|
5883
5888
|
|
5884
5889
|
template.innerHTML = `
|
5885
|
-
<${componentName$
|
5890
|
+
<${componentName$J}
|
5886
5891
|
bordered="true"
|
5887
5892
|
name="code"
|
5888
5893
|
tabindex="-1"
|
5889
5894
|
slot="input"
|
5890
|
-
><slot></slot></${componentName$
|
5895
|
+
><slot></slot></${componentName$J}>
|
5891
5896
|
`;
|
5892
5897
|
|
5893
5898
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
5894
5899
|
|
5895
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
5900
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$J);
|
5896
5901
|
|
5897
5902
|
forwardAttrs(this, this.inputElement, { includeAttrs: ['digits', 'size', 'loading'] });
|
5898
5903
|
}
|
@@ -6044,13 +6049,13 @@ const PasscodeClass = compose(
|
|
6044
6049
|
${resetInputCursor('vaadin-text-field')}
|
6045
6050
|
`,
|
6046
6051
|
excludeAttrsSync: ['tabindex'],
|
6047
|
-
componentName: componentName$
|
6052
|
+
componentName: componentName$I,
|
6048
6053
|
})
|
6049
6054
|
);
|
6050
6055
|
|
6051
|
-
customElements.define(componentName$
|
6056
|
+
customElements.define(componentName$J, PasscodeInternal);
|
6052
6057
|
|
6053
|
-
customElements.define(componentName$
|
6058
|
+
customElements.define(componentName$I, PasscodeClass);
|
6054
6059
|
|
6055
6060
|
const passwordDraggableMixin = (superclass) =>
|
6056
6061
|
class PasswordDraggableMixinClass extends superclass {
|
@@ -6091,7 +6096,7 @@ const passwordDraggableMixin = (superclass) =>
|
|
6091
6096
|
}
|
6092
6097
|
};
|
6093
6098
|
|
6094
|
-
const componentName$
|
6099
|
+
const componentName$H = getComponentName('password');
|
6095
6100
|
|
6096
6101
|
const customMixin$9 = (superclass) =>
|
6097
6102
|
class PasswordFieldMixinClass extends superclass {
|
@@ -6366,11 +6371,11 @@ const PasswordClass = compose(
|
|
6366
6371
|
}
|
6367
6372
|
`,
|
6368
6373
|
excludeAttrsSync: ['tabindex'],
|
6369
|
-
componentName: componentName$
|
6374
|
+
componentName: componentName$H,
|
6370
6375
|
})
|
6371
6376
|
);
|
6372
6377
|
|
6373
|
-
customElements.define(componentName$
|
6378
|
+
customElements.define(componentName$H, PasswordClass);
|
6374
6379
|
|
6375
6380
|
const disableRules = [
|
6376
6381
|
'blockquote',
|
@@ -6396,9 +6401,9 @@ const decodeHTML = (html) => {
|
|
6396
6401
|
/* eslint-disable no-param-reassign */
|
6397
6402
|
|
6398
6403
|
|
6399
|
-
const componentName$
|
6404
|
+
const componentName$G = getComponentName('enriched-text');
|
6400
6405
|
|
6401
|
-
class EnrichedText extends createBaseClass({ componentName: componentName$
|
6406
|
+
class EnrichedText extends createBaseClass({ componentName: componentName$G, baseSelector: ':host > div' }) {
|
6402
6407
|
#origLinkRenderer;
|
6403
6408
|
|
6404
6409
|
#origEmRenderer;
|
@@ -6594,9 +6599,9 @@ const EnrichedTextClass = compose(
|
|
6594
6599
|
componentNameValidationMixin
|
6595
6600
|
)(EnrichedText);
|
6596
6601
|
|
6597
|
-
customElements.define(componentName$
|
6602
|
+
customElements.define(componentName$G, EnrichedTextClass);
|
6598
6603
|
|
6599
|
-
const componentName$
|
6604
|
+
const componentName$F = getComponentName('text-area');
|
6600
6605
|
|
6601
6606
|
const {
|
6602
6607
|
host: host$d,
|
@@ -6672,17 +6677,17 @@ const TextAreaClass = compose(
|
|
6672
6677
|
${resetInputCursor('vaadin-text-area')}
|
6673
6678
|
`,
|
6674
6679
|
excludeAttrsSync: ['tabindex'],
|
6675
|
-
componentName: componentName$
|
6680
|
+
componentName: componentName$F,
|
6676
6681
|
})
|
6677
6682
|
);
|
6678
6683
|
|
6679
|
-
customElements.define(componentName$
|
6684
|
+
customElements.define(componentName$F, TextAreaClass);
|
6680
6685
|
|
6681
6686
|
const observedAttributes$3 = ['src', 'alt'];
|
6682
6687
|
|
6683
|
-
const componentName$
|
6688
|
+
const componentName$E = getComponentName('image');
|
6684
6689
|
|
6685
|
-
const BaseClass$1 = createBaseClass({ componentName: componentName$
|
6690
|
+
const BaseClass$1 = createBaseClass({ componentName: componentName$E, baseSelector: ':host > img' });
|
6686
6691
|
class RawImage extends BaseClass$1 {
|
6687
6692
|
static get observedAttributes() {
|
6688
6693
|
return observedAttributes$3.concat(BaseClass$1.observedAttributes || []);
|
@@ -6722,7 +6727,7 @@ const ImageClass = compose(
|
|
6722
6727
|
draggableMixin
|
6723
6728
|
)(RawImage);
|
6724
6729
|
|
6725
|
-
customElements.define(componentName$
|
6730
|
+
customElements.define(componentName$E, ImageClass);
|
6726
6731
|
|
6727
6732
|
var CountryCodes = [
|
6728
6733
|
// United States should be the first option
|
@@ -7991,7 +7996,7 @@ const parsePhoneNumber = (val) => {
|
|
7991
7996
|
return [countryCode, phoneNumber];
|
7992
7997
|
};
|
7993
7998
|
|
7994
|
-
const componentName$
|
7999
|
+
const componentName$D = getComponentName('phone-field-internal');
|
7995
8000
|
|
7996
8001
|
const commonAttrs$1 = ['disabled', 'size', 'bordered', 'invalid', 'readonly'];
|
7997
8002
|
const countryAttrs = ['country-input-placeholder', 'default-code', 'restrict-countries'];
|
@@ -8005,7 +8010,7 @@ const mapAttrs$1 = {
|
|
8005
8010
|
|
8006
8011
|
const inputRelatedAttrs$1 = [].concat(commonAttrs$1, countryAttrs, phoneAttrs, labelTypeAttrs);
|
8007
8012
|
|
8008
|
-
const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$
|
8013
|
+
const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$D, baseSelector: 'div' });
|
8009
8014
|
|
8010
8015
|
let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
8011
8016
|
static get observedAttributes() {
|
@@ -8222,12 +8227,12 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
|
|
8222
8227
|
}
|
8223
8228
|
};
|
8224
8229
|
|
8225
|
-
customElements.define(componentName$
|
8230
|
+
customElements.define(componentName$D, PhoneFieldInternal$1);
|
8226
8231
|
|
8227
8232
|
const textVars$1 = TextFieldClass.cssVarList;
|
8228
8233
|
const comboVars = ComboBoxClass.cssVarList;
|
8229
8234
|
|
8230
|
-
const componentName$
|
8235
|
+
const componentName$C = getComponentName('phone-field');
|
8231
8236
|
|
8232
8237
|
const customMixin$8 = (superclass) =>
|
8233
8238
|
class PhoneFieldMixinClass extends superclass {
|
@@ -8241,15 +8246,15 @@ const customMixin$8 = (superclass) =>
|
|
8241
8246
|
const template = document.createElement('template');
|
8242
8247
|
|
8243
8248
|
template.innerHTML = `
|
8244
|
-
<${componentName$
|
8249
|
+
<${componentName$D}
|
8245
8250
|
tabindex="-1"
|
8246
8251
|
slot="input"
|
8247
|
-
></${componentName$
|
8252
|
+
></${componentName$D}>
|
8248
8253
|
`;
|
8249
8254
|
|
8250
8255
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
8251
8256
|
|
8252
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
8257
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$D);
|
8253
8258
|
|
8254
8259
|
forwardAttrs(this.shadowRoot.host, this.inputElement, {
|
8255
8260
|
includeAttrs: [
|
@@ -8471,17 +8476,17 @@ const PhoneFieldClass = compose(
|
|
8471
8476
|
${resetInputLabelPosition('vaadin-text-field')}
|
8472
8477
|
`,
|
8473
8478
|
excludeAttrsSync: ['tabindex'],
|
8474
|
-
componentName: componentName$
|
8479
|
+
componentName: componentName$C,
|
8475
8480
|
})
|
8476
8481
|
);
|
8477
8482
|
|
8478
|
-
customElements.define(componentName$
|
8483
|
+
customElements.define(componentName$C, PhoneFieldClass);
|
8479
8484
|
|
8480
8485
|
const getCountryByCodeId = (countryCode) => {
|
8481
8486
|
return CountryCodes.find((c) => c.code === countryCode)?.dialCode;
|
8482
8487
|
};
|
8483
8488
|
|
8484
|
-
const componentName$
|
8489
|
+
const componentName$B = getComponentName('phone-field-internal-input-box');
|
8485
8490
|
|
8486
8491
|
const observedAttributes$2 = [
|
8487
8492
|
'disabled',
|
@@ -8498,7 +8503,7 @@ const mapAttrs = {
|
|
8498
8503
|
'phone-input-placeholder': 'placeholder',
|
8499
8504
|
};
|
8500
8505
|
|
8501
|
-
const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$
|
8506
|
+
const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$B, baseSelector: 'div' });
|
8502
8507
|
|
8503
8508
|
class PhoneFieldInternal extends BaseInputClass$5 {
|
8504
8509
|
static get observedAttributes() {
|
@@ -8637,11 +8642,11 @@ class PhoneFieldInternal extends BaseInputClass$5 {
|
|
8637
8642
|
}
|
8638
8643
|
}
|
8639
8644
|
|
8640
|
-
customElements.define(componentName$
|
8645
|
+
customElements.define(componentName$B, PhoneFieldInternal);
|
8641
8646
|
|
8642
8647
|
const textVars = TextFieldClass.cssVarList;
|
8643
8648
|
|
8644
|
-
const componentName$
|
8649
|
+
const componentName$A = getComponentName('phone-input-box-field');
|
8645
8650
|
|
8646
8651
|
const customMixin$7 = (superclass) =>
|
8647
8652
|
class PhoneInputBoxFieldMixinClass extends superclass {
|
@@ -8655,15 +8660,15 @@ const customMixin$7 = (superclass) =>
|
|
8655
8660
|
const template = document.createElement('template');
|
8656
8661
|
|
8657
8662
|
template.innerHTML = `
|
8658
|
-
<${componentName$
|
8663
|
+
<${componentName$B}
|
8659
8664
|
tabindex="-1"
|
8660
8665
|
slot="input"
|
8661
|
-
></${componentName$
|
8666
|
+
></${componentName$B}>
|
8662
8667
|
`;
|
8663
8668
|
|
8664
8669
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
8665
8670
|
|
8666
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
8671
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$B);
|
8667
8672
|
|
8668
8673
|
forwardAttrs(this.shadowRoot.host, this.inputElement, {
|
8669
8674
|
includeAttrs: [
|
@@ -8840,26 +8845,26 @@ const PhoneFieldInputBoxClass = compose(
|
|
8840
8845
|
${inputFloatingLabelStyle()}
|
8841
8846
|
`,
|
8842
8847
|
excludeAttrsSync: ['tabindex'],
|
8843
|
-
componentName: componentName$
|
8848
|
+
componentName: componentName$A,
|
8844
8849
|
})
|
8845
8850
|
);
|
8846
8851
|
|
8847
|
-
customElements.define(componentName$
|
8852
|
+
customElements.define(componentName$A, PhoneFieldInputBoxClass);
|
8848
8853
|
|
8849
|
-
const componentName$
|
8854
|
+
const componentName$z = getComponentName('new-password-internal');
|
8850
8855
|
|
8851
8856
|
const interpolateString = (template, values) =>
|
8852
8857
|
template.replace(/{{(\w+)+}}/g, (match, key) => values?.[key] || match);
|
8853
8858
|
|
8854
8859
|
// eslint-disable-next-line max-classes-per-file
|
8855
8860
|
|
8856
|
-
const componentName$
|
8861
|
+
const componentName$y = getComponentName('policy-validation');
|
8857
8862
|
|
8858
8863
|
const overrideAttrs = ['data-password-policy-value-minlength'];
|
8859
8864
|
const dataAttrs = ['data', 'active-policies', 'overrides', ...overrideAttrs];
|
8860
8865
|
const policyAttrs = ['label', 'value', ...dataAttrs];
|
8861
8866
|
|
8862
|
-
class RawPolicyValidation extends createBaseClass({ componentName: componentName$
|
8867
|
+
class RawPolicyValidation extends createBaseClass({ componentName: componentName$y, baseSelector: ':host > div' }) {
|
8863
8868
|
#availablePolicies;
|
8864
8869
|
|
8865
8870
|
#activePolicies = [];
|
@@ -9067,7 +9072,7 @@ const PolicyValidationClass = compose(
|
|
9067
9072
|
componentNameValidationMixin
|
9068
9073
|
)(RawPolicyValidation);
|
9069
9074
|
|
9070
|
-
const componentName$
|
9075
|
+
const componentName$x = getComponentName('new-password');
|
9071
9076
|
|
9072
9077
|
const policyPreviewVars = PolicyValidationClass.cssVarList;
|
9073
9078
|
|
@@ -9081,18 +9086,18 @@ const customMixin$6 = (superclass) =>
|
|
9081
9086
|
const externalInputAttr = this.getAttribute('external-input');
|
9082
9087
|
|
9083
9088
|
template.innerHTML = `
|
9084
|
-
<${componentName$
|
9089
|
+
<${componentName$z}
|
9085
9090
|
name="new-password"
|
9086
9091
|
tabindex="-1"
|
9087
9092
|
slot="input"
|
9088
9093
|
external-input="${externalInputAttr}"
|
9089
9094
|
>
|
9090
|
-
</${componentName$
|
9095
|
+
</${componentName$z}>
|
9091
9096
|
`;
|
9092
9097
|
|
9093
9098
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
9094
9099
|
|
9095
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
9100
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$z);
|
9096
9101
|
|
9097
9102
|
if (this.getAttribute('external-input') === 'true') {
|
9098
9103
|
this.initExternalInput();
|
@@ -9268,11 +9273,11 @@ const NewPasswordClass = compose(
|
|
9268
9273
|
}
|
9269
9274
|
`,
|
9270
9275
|
excludeAttrsSync: ['tabindex'],
|
9271
|
-
componentName: componentName$
|
9276
|
+
componentName: componentName$x,
|
9272
9277
|
})
|
9273
9278
|
);
|
9274
9279
|
|
9275
|
-
customElements.define(componentName$
|
9280
|
+
customElements.define(componentName$y, PolicyValidationClass);
|
9276
9281
|
|
9277
9282
|
const passwordAttrPrefixRegex = /^password-/;
|
9278
9283
|
const confirmAttrPrefixRegex = /^confirm-/;
|
@@ -9304,7 +9309,7 @@ const inputRelatedAttrs = [].concat(
|
|
9304
9309
|
policyPanelAttrs
|
9305
9310
|
);
|
9306
9311
|
|
9307
|
-
const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$
|
9312
|
+
const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$z, baseSelector: 'div' });
|
9308
9313
|
|
9309
9314
|
class NewPasswordInternal extends BaseInputClass$4 {
|
9310
9315
|
static get observedAttributes() {
|
@@ -9514,16 +9519,16 @@ class NewPasswordInternal extends BaseInputClass$4 {
|
|
9514
9519
|
}
|
9515
9520
|
}
|
9516
9521
|
|
9517
|
-
customElements.define(componentName$
|
9522
|
+
customElements.define(componentName$z, NewPasswordInternal);
|
9518
9523
|
|
9519
|
-
customElements.define(componentName$
|
9524
|
+
customElements.define(componentName$x, NewPasswordClass);
|
9520
9525
|
|
9521
|
-
const componentName$
|
9526
|
+
const componentName$w = getComponentName('recaptcha');
|
9522
9527
|
|
9523
9528
|
const observedAttributes$1 = ['enabled', 'site-key', 'action', 'enterprise'];
|
9524
9529
|
|
9525
9530
|
const BaseClass = createBaseClass({
|
9526
|
-
componentName: componentName$
|
9531
|
+
componentName: componentName$w,
|
9527
9532
|
baseSelector: ':host > div',
|
9528
9533
|
});
|
9529
9534
|
class RawRecaptcha extends BaseClass {
|
@@ -9710,7 +9715,7 @@ class RawRecaptcha extends BaseClass {
|
|
9710
9715
|
|
9711
9716
|
const RecaptchaClass = compose(draggableMixin)(RawRecaptcha);
|
9712
9717
|
|
9713
|
-
customElements.define(componentName$
|
9718
|
+
customElements.define(componentName$w, RecaptchaClass);
|
9714
9719
|
|
9715
9720
|
const getFileBase64 = (fileObj) => {
|
9716
9721
|
return new Promise((resolve) => {
|
@@ -9724,7 +9729,7 @@ const getFilename = (fileObj) => {
|
|
9724
9729
|
return fileObj.name.replace(/^.*\\/, '');
|
9725
9730
|
};
|
9726
9731
|
|
9727
|
-
const componentName$
|
9732
|
+
const componentName$v = getComponentName('upload-file');
|
9728
9733
|
|
9729
9734
|
const observedAttributes = [
|
9730
9735
|
'title',
|
@@ -9739,7 +9744,7 @@ const observedAttributes = [
|
|
9739
9744
|
'icon',
|
9740
9745
|
];
|
9741
9746
|
|
9742
|
-
const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$
|
9747
|
+
const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$v, baseSelector: ':host > div' });
|
9743
9748
|
|
9744
9749
|
class RawUploadFile extends BaseInputClass$3 {
|
9745
9750
|
static get observedAttributes() {
|
@@ -9954,7 +9959,7 @@ const UploadFileClass = compose(
|
|
9954
9959
|
componentNameValidationMixin
|
9955
9960
|
)(RawUploadFile);
|
9956
9961
|
|
9957
|
-
customElements.define(componentName$
|
9962
|
+
customElements.define(componentName$v, UploadFileClass);
|
9958
9963
|
|
9959
9964
|
const createBaseButtonSelectionGroupInternalClass = (componentName) => {
|
9960
9965
|
class BaseButtonSelectionGroupInternalClass extends createBaseInputClass({
|
@@ -10052,10 +10057,10 @@ const createBaseButtonSelectionGroupInternalClass = (componentName) => {
|
|
10052
10057
|
return BaseButtonSelectionGroupInternalClass;
|
10053
10058
|
};
|
10054
10059
|
|
10055
|
-
const componentName$
|
10060
|
+
const componentName$u = getComponentName('button-selection-group-internal');
|
10056
10061
|
|
10057
10062
|
class ButtonSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
10058
|
-
componentName$
|
10063
|
+
componentName$u
|
10059
10064
|
) {
|
10060
10065
|
getSelectedNode() {
|
10061
10066
|
return this.items.find((item) => item.hasAttribute('selected'));
|
@@ -10287,7 +10292,7 @@ const buttonSelectionGroupStyles = `
|
|
10287
10292
|
${resetInputCursor('vaadin-text-field')}
|
10288
10293
|
`;
|
10289
10294
|
|
10290
|
-
const componentName$
|
10295
|
+
const componentName$t = getComponentName('button-selection-group');
|
10291
10296
|
|
10292
10297
|
const buttonSelectionGroupMixin = (superclass) =>
|
10293
10298
|
class ButtonMultiSelectionGroupMixinClass extends superclass {
|
@@ -10296,19 +10301,19 @@ const buttonSelectionGroupMixin = (superclass) =>
|
|
10296
10301
|
const template = document.createElement('template');
|
10297
10302
|
|
10298
10303
|
template.innerHTML = `
|
10299
|
-
<${componentName$
|
10304
|
+
<${componentName$u}
|
10300
10305
|
name="button-selection-group"
|
10301
10306
|
slot="input"
|
10302
10307
|
tabindex="-1"
|
10303
10308
|
part="internal-component"
|
10304
10309
|
>
|
10305
10310
|
<slot></slot>
|
10306
|
-
</${componentName$
|
10311
|
+
</${componentName$u}>
|
10307
10312
|
`;
|
10308
10313
|
|
10309
10314
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
10310
10315
|
|
10311
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
10316
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$u);
|
10312
10317
|
|
10313
10318
|
forwardAttrs(this, this.inputElement, {
|
10314
10319
|
includeAttrs: ['size', 'default-value', 'allow-deselect'],
|
@@ -10333,16 +10338,16 @@ const ButtonSelectionGroupClass = compose(
|
|
10333
10338
|
wrappedEleName: 'vaadin-text-field',
|
10334
10339
|
style: () => buttonSelectionGroupStyles,
|
10335
10340
|
excludeAttrsSync: ['tabindex'],
|
10336
|
-
componentName: componentName$
|
10341
|
+
componentName: componentName$t,
|
10337
10342
|
})
|
10338
10343
|
);
|
10339
10344
|
|
10340
|
-
customElements.define(componentName$
|
10345
|
+
customElements.define(componentName$u, ButtonSelectionGroupInternalClass);
|
10341
10346
|
|
10342
|
-
const componentName$
|
10347
|
+
const componentName$s = getComponentName('button-selection-group-item');
|
10343
10348
|
|
10344
10349
|
class RawSelectItem extends createBaseClass({
|
10345
|
-
componentName: componentName$
|
10350
|
+
componentName: componentName$s,
|
10346
10351
|
baseSelector: ':host > descope-button',
|
10347
10352
|
}) {
|
10348
10353
|
get size() {
|
@@ -10449,14 +10454,14 @@ const ButtonSelectionGroupItemClass = compose(
|
|
10449
10454
|
componentNameValidationMixin
|
10450
10455
|
)(RawSelectItem);
|
10451
10456
|
|
10452
|
-
customElements.define(componentName$
|
10457
|
+
customElements.define(componentName$s, ButtonSelectionGroupItemClass);
|
10453
10458
|
|
10454
|
-
customElements.define(componentName$
|
10459
|
+
customElements.define(componentName$t, ButtonSelectionGroupClass);
|
10455
10460
|
|
10456
|
-
const componentName$
|
10461
|
+
const componentName$r = getComponentName('button-multi-selection-group-internal');
|
10457
10462
|
|
10458
10463
|
class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
|
10459
|
-
componentName$
|
10464
|
+
componentName$r
|
10460
10465
|
) {
|
10461
10466
|
#getSelectedNodes() {
|
10462
10467
|
return this.items.filter((item) => item.hasAttribute('selected'));
|
@@ -10559,7 +10564,7 @@ class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGr
|
|
10559
10564
|
}
|
10560
10565
|
}
|
10561
10566
|
|
10562
|
-
const componentName$
|
10567
|
+
const componentName$q = getComponentName('button-multi-selection-group');
|
10563
10568
|
|
10564
10569
|
const buttonMultiSelectionGroupMixin = (superclass) =>
|
10565
10570
|
class ButtonMultiSelectionGroupMixinClass extends superclass {
|
@@ -10568,19 +10573,19 @@ const buttonMultiSelectionGroupMixin = (superclass) =>
|
|
10568
10573
|
const template = document.createElement('template');
|
10569
10574
|
|
10570
10575
|
template.innerHTML = `
|
10571
|
-
<${componentName$
|
10576
|
+
<${componentName$r}
|
10572
10577
|
name="button-selection-group"
|
10573
10578
|
slot="input"
|
10574
10579
|
tabindex="-1"
|
10575
10580
|
part="internal-component"
|
10576
10581
|
>
|
10577
10582
|
<slot></slot>
|
10578
|
-
</${componentName$
|
10583
|
+
</${componentName$r}>
|
10579
10584
|
`;
|
10580
10585
|
|
10581
10586
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
10582
10587
|
|
10583
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
10588
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$r);
|
10584
10589
|
|
10585
10590
|
forwardAttrs(this, this.inputElement, {
|
10586
10591
|
includeAttrs: ['size', 'default-values', 'min-items-selection', 'max-items-selection'],
|
@@ -10605,13 +10610,13 @@ const ButtonMultiSelectionGroupClass = compose(
|
|
10605
10610
|
wrappedEleName: 'vaadin-text-field',
|
10606
10611
|
style: () => buttonSelectionGroupStyles,
|
10607
10612
|
excludeAttrsSync: ['tabindex'],
|
10608
|
-
componentName: componentName$
|
10613
|
+
componentName: componentName$q,
|
10609
10614
|
})
|
10610
10615
|
);
|
10611
10616
|
|
10612
|
-
customElements.define(componentName$
|
10617
|
+
customElements.define(componentName$r, ButtonMultiSelectionGroupInternalClass);
|
10613
10618
|
|
10614
|
-
customElements.define(componentName$
|
10619
|
+
customElements.define(componentName$q, ButtonMultiSelectionGroupClass);
|
10615
10620
|
|
10616
10621
|
/* eslint-disable no-param-reassign */
|
10617
10622
|
|
@@ -10639,9 +10644,9 @@ class GridTextColumnClass extends GridSortColumn {
|
|
10639
10644
|
}
|
10640
10645
|
}
|
10641
10646
|
|
10642
|
-
const componentName$
|
10647
|
+
const componentName$p = getComponentName('grid-text-column');
|
10643
10648
|
|
10644
|
-
customElements.define(componentName$
|
10649
|
+
customElements.define(componentName$p, GridTextColumnClass);
|
10645
10650
|
|
10646
10651
|
/* eslint-disable no-param-reassign */
|
10647
10652
|
|
@@ -10676,9 +10681,9 @@ class GridCustomColumnClass extends GridTextColumnClass {
|
|
10676
10681
|
|
10677
10682
|
/* eslint-disable no-param-reassign */
|
10678
10683
|
|
10679
|
-
const componentName$
|
10684
|
+
const componentName$o = getComponentName('grid-custom-column');
|
10680
10685
|
|
10681
|
-
customElements.define(componentName$
|
10686
|
+
customElements.define(componentName$o, GridCustomColumnClass);
|
10682
10687
|
|
10683
10688
|
const createCheckboxEle = () => {
|
10684
10689
|
const checkbox = document.createElement('descope-checkbox');
|
@@ -10737,9 +10742,9 @@ class GridSelectionColumnClass extends GridSelectionColumn {
|
|
10737
10742
|
}
|
10738
10743
|
}
|
10739
10744
|
|
10740
|
-
const componentName$
|
10745
|
+
const componentName$n = getComponentName('grid-selection-column');
|
10741
10746
|
|
10742
|
-
customElements.define(componentName$
|
10747
|
+
customElements.define(componentName$n, GridSelectionColumnClass);
|
10743
10748
|
|
10744
10749
|
/* eslint-disable no-param-reassign */
|
10745
10750
|
|
@@ -10778,9 +10783,9 @@ class GridItemDetailsColumnClass extends GridSortColumn {
|
|
10778
10783
|
}
|
10779
10784
|
}
|
10780
10785
|
|
10781
|
-
const componentName$
|
10786
|
+
const componentName$m = getComponentName('grid-item-details-column');
|
10782
10787
|
|
10783
|
-
customElements.define(componentName$
|
10788
|
+
customElements.define(componentName$m, GridItemDetailsColumnClass);
|
10784
10789
|
|
10785
10790
|
const decode = (input) => {
|
10786
10791
|
const txt = document.createElement('textarea');
|
@@ -10792,9 +10797,9 @@ const tpl = (input, inline) => {
|
|
10792
10797
|
return inline ? input : `<pre>${input}</pre>`;
|
10793
10798
|
};
|
10794
10799
|
|
10795
|
-
const componentName$
|
10800
|
+
const componentName$l = getComponentName('code-snippet');
|
10796
10801
|
|
10797
|
-
let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$
|
10802
|
+
let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$l, baseSelector: ':host > code' }) {
|
10798
10803
|
static get observedAttributes() {
|
10799
10804
|
return ['lang', 'inline'];
|
10800
10805
|
}
|
@@ -11024,7 +11029,7 @@ const CodeSnippetClass = compose(
|
|
11024
11029
|
componentNameValidationMixin
|
11025
11030
|
)(CodeSnippet$1);
|
11026
11031
|
|
11027
|
-
customElements.define(componentName$
|
11032
|
+
customElements.define(componentName$l, CodeSnippetClass);
|
11028
11033
|
|
11029
11034
|
const isValidDataType = (data) => {
|
11030
11035
|
const isValid = Array.isArray(data);
|
@@ -11099,7 +11104,7 @@ const defaultRowDetailsRenderer = (item, itemLabelsMapping) => {
|
|
11099
11104
|
`;
|
11100
11105
|
};
|
11101
11106
|
|
11102
|
-
const componentName$
|
11107
|
+
const componentName$k = getComponentName('grid');
|
11103
11108
|
|
11104
11109
|
const GridMixin = (superclass) =>
|
11105
11110
|
class GridMixinClass extends superclass {
|
@@ -11453,13 +11458,13 @@ const GridClass = compose(
|
|
11453
11458
|
/*!css*/
|
11454
11459
|
`,
|
11455
11460
|
excludeAttrsSync: ['columns', 'tabindex'],
|
11456
|
-
componentName: componentName$
|
11461
|
+
componentName: componentName$k,
|
11457
11462
|
})
|
11458
11463
|
);
|
11459
11464
|
|
11460
|
-
customElements.define(componentName$
|
11465
|
+
customElements.define(componentName$k, GridClass);
|
11461
11466
|
|
11462
|
-
const componentName$
|
11467
|
+
const componentName$j = getComponentName('multi-select-combo-box');
|
11463
11468
|
|
11464
11469
|
const multiSelectComboBoxMixin = (superclass) =>
|
11465
11470
|
class MultiSelectComboBoxMixinClass extends superclass {
|
@@ -12093,16 +12098,16 @@ const MultiSelectComboBoxClass = compose(
|
|
12093
12098
|
// Note: we exclude `placeholder` because the vaadin component observes it and
|
12094
12099
|
// tries to override it, causing us to lose the user set placeholder.
|
12095
12100
|
excludeAttrsSync: ['tabindex', 'size', 'data', 'placeholder'],
|
12096
|
-
componentName: componentName$
|
12101
|
+
componentName: componentName$j,
|
12097
12102
|
includeForwardProps: ['items', 'renderer', 'selectedItems'],
|
12098
12103
|
})
|
12099
12104
|
);
|
12100
12105
|
|
12101
|
-
customElements.define(componentName$
|
12106
|
+
customElements.define(componentName$j, MultiSelectComboBoxClass);
|
12102
12107
|
|
12103
|
-
const componentName$
|
12108
|
+
const componentName$i = getComponentName('badge');
|
12104
12109
|
|
12105
|
-
class RawBadge extends createBaseClass({ componentName: componentName$
|
12110
|
+
class RawBadge extends createBaseClass({ componentName: componentName$i, baseSelector: ':host > div' }) {
|
12106
12111
|
constructor() {
|
12107
12112
|
super();
|
12108
12113
|
|
@@ -12153,9 +12158,9 @@ const BadgeClass = compose(
|
|
12153
12158
|
componentNameValidationMixin
|
12154
12159
|
)(RawBadge);
|
12155
12160
|
|
12156
|
-
customElements.define(componentName$
|
12161
|
+
customElements.define(componentName$i, BadgeClass);
|
12157
12162
|
|
12158
|
-
const componentName$
|
12163
|
+
const componentName$h = getComponentName('modal');
|
12159
12164
|
|
12160
12165
|
const customMixin$5 = (superclass) =>
|
12161
12166
|
class ModalMixinClass extends superclass {
|
@@ -12254,11 +12259,11 @@ const ModalClass = compose(
|
|
12254
12259
|
wrappedEleName: 'vaadin-dialog',
|
12255
12260
|
style: () => ``,
|
12256
12261
|
excludeAttrsSync: ['tabindex', 'opened'],
|
12257
|
-
componentName: componentName$
|
12262
|
+
componentName: componentName$h,
|
12258
12263
|
})
|
12259
12264
|
);
|
12260
12265
|
|
12261
|
-
customElements.define(componentName$
|
12266
|
+
customElements.define(componentName$h, ModalClass);
|
12262
12267
|
|
12263
12268
|
const vaadinContainerClass = window.customElements.get('vaadin-notification-container');
|
12264
12269
|
|
@@ -12269,7 +12274,7 @@ if (!vaadinContainerClass) {
|
|
12269
12274
|
class NotificationContainerClass extends vaadinContainerClass {}
|
12270
12275
|
customElements.define(getComponentName('notification-container'), NotificationContainerClass);
|
12271
12276
|
|
12272
|
-
const componentName$
|
12277
|
+
const componentName$g = getComponentName('notification-card');
|
12273
12278
|
|
12274
12279
|
const notificationCardMixin = (superclass) =>
|
12275
12280
|
class NotificationCardMixinClass extends superclass {
|
@@ -12377,13 +12382,13 @@ const NotificationCardClass = compose(
|
|
12377
12382
|
}
|
12378
12383
|
`,
|
12379
12384
|
excludeAttrsSync: ['tabindex'],
|
12380
|
-
componentName: componentName$
|
12385
|
+
componentName: componentName$g,
|
12381
12386
|
})
|
12382
12387
|
);
|
12383
12388
|
|
12384
|
-
customElements.define(componentName$
|
12389
|
+
customElements.define(componentName$g, NotificationCardClass);
|
12385
12390
|
|
12386
|
-
const componentName$
|
12391
|
+
const componentName$f = getComponentName('notification');
|
12387
12392
|
|
12388
12393
|
const NotificationMixin = (superclass) =>
|
12389
12394
|
class NotificationMixinClass extends superclass {
|
@@ -12478,14 +12483,14 @@ const NotificationClass = compose(
|
|
12478
12483
|
createProxy({
|
12479
12484
|
wrappedEleName: 'vaadin-notification',
|
12480
12485
|
excludeAttrsSync: ['tabindex'],
|
12481
|
-
componentName: componentName$
|
12486
|
+
componentName: componentName$f,
|
12482
12487
|
})
|
12483
12488
|
);
|
12484
12489
|
|
12485
|
-
customElements.define(componentName$
|
12490
|
+
customElements.define(componentName$f, NotificationClass);
|
12486
12491
|
|
12487
|
-
const componentName$
|
12488
|
-
class RawAvatar extends createBaseClass({ componentName: componentName$
|
12492
|
+
const componentName$e = getComponentName('avatar');
|
12493
|
+
class RawAvatar extends createBaseClass({ componentName: componentName$e, baseSelector: ':host > .wrapper' }) {
|
12489
12494
|
constructor() {
|
12490
12495
|
super();
|
12491
12496
|
|
@@ -12589,11 +12594,11 @@ const AvatarClass = compose(
|
|
12589
12594
|
componentNameValidationMixin
|
12590
12595
|
)(RawAvatar);
|
12591
12596
|
|
12592
|
-
customElements.define(componentName$
|
12597
|
+
customElements.define(componentName$e, AvatarClass);
|
12593
12598
|
|
12594
|
-
const componentName$
|
12599
|
+
const componentName$d = getComponentName('mappings-field-internal');
|
12595
12600
|
|
12596
|
-
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$
|
12601
|
+
const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$d, baseSelector: 'div' });
|
12597
12602
|
|
12598
12603
|
class MappingsFieldInternal extends BaseInputClass$2 {
|
12599
12604
|
#errorItem;
|
@@ -12828,7 +12833,7 @@ class MappingsFieldInternal extends BaseInputClass$2 {
|
|
12828
12833
|
}
|
12829
12834
|
}
|
12830
12835
|
|
12831
|
-
const componentName$
|
12836
|
+
const componentName$c = getComponentName('mappings-field');
|
12832
12837
|
|
12833
12838
|
const customMixin$4 = (superclass) =>
|
12834
12839
|
class MappingsFieldMixinClass extends superclass {
|
@@ -12857,14 +12862,14 @@ const customMixin$4 = (superclass) =>
|
|
12857
12862
|
const template = document.createElement('template');
|
12858
12863
|
|
12859
12864
|
template.innerHTML = `
|
12860
|
-
<${componentName$
|
12865
|
+
<${componentName$d}
|
12861
12866
|
tabindex="-1"
|
12862
|
-
></${componentName$
|
12867
|
+
></${componentName$d}>
|
12863
12868
|
`;
|
12864
12869
|
|
12865
12870
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
12866
12871
|
|
12867
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
12872
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$d);
|
12868
12873
|
|
12869
12874
|
forwardAttrs(this, this.inputElement, {
|
12870
12875
|
includeAttrs: [
|
@@ -12996,17 +13001,17 @@ const MappingsFieldClass = compose(
|
|
12996
13001
|
'options',
|
12997
13002
|
'error-message',
|
12998
13003
|
],
|
12999
|
-
componentName: componentName$
|
13004
|
+
componentName: componentName$c,
|
13000
13005
|
})
|
13001
13006
|
);
|
13002
13007
|
|
13003
|
-
customElements.define(componentName$
|
13008
|
+
customElements.define(componentName$d, MappingsFieldInternal);
|
13004
13009
|
|
13005
|
-
const componentName$
|
13010
|
+
const componentName$b = getComponentName('mapping-item');
|
13006
13011
|
|
13007
13012
|
const inputAttrs = ['size', 'bordered', 'readonly', 'full-width', 'disabled'];
|
13008
13013
|
|
13009
|
-
const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$
|
13014
|
+
const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$b, baseSelector: 'div' });
|
13010
13015
|
|
13011
13016
|
class MappingItem extends BaseInputClass$1 {
|
13012
13017
|
static get observedAttributes() {
|
@@ -13156,17 +13161,17 @@ class MappingItem extends BaseInputClass$1 {
|
|
13156
13161
|
}
|
13157
13162
|
}
|
13158
13163
|
|
13159
|
-
customElements.define(componentName$
|
13164
|
+
customElements.define(componentName$b, MappingItem);
|
13160
13165
|
|
13161
|
-
customElements.define(componentName$
|
13166
|
+
customElements.define(componentName$c, MappingsFieldClass);
|
13162
13167
|
|
13163
13168
|
var deleteIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTZDMSAxNy4xIDEuOSAxOCAzIDE4SDExQzEyLjEgMTggMTMgMTcuMSAxMyAxNlY0SDFWMTZaTTMgNkgxMVYxNkgzVjZaTTEwLjUgMUw5LjUgMEg0LjVMMy41IDFIMFYzSDE0VjFIMTAuNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
|
13164
13169
|
|
13165
13170
|
var editIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjAwMDIgMC45OTIxNDlDMTAuMDAwMiAxLjAxNjE1IDEwLjAwMDIgMS4wMTYxNSAxMC4wMDAyIDEuMDE2MTVMOC4yMjQxOSAzLjAwODE1SDIuOTkyMTlDMi40NjQxOSAzLjAwODE1IDIuMDA4MTkgMy40NDAxNSAyLjAwODE5IDMuOTkyMTVWMTIuMDA4MkMyLjAwODE5IDEyLjUzNjIgMi40NDAxOSAxMi45OTIyIDIuOTkyMTkgMTIuOTkyMkg1LjUzNjE5QzUuODQ4MTkgMTMuMDQwMiA2LjE2MDE5IDEzLjA0MDIgNi40NzIxOSAxMi45OTIySDExLjAwODJDMTEuNTM2MiAxMi45OTIyIDExLjk5MjIgMTIuNTYwMiAxMS45OTIyIDEyLjAwODJWNy43ODQxNkwxMy45MzYyIDUuNjI0MTVMMTQuMDA4MiA1LjY3MjE1VjExLjk4NDJDMTQuMDA4MiAxMy42NjQyIDEyLjY2NDIgMTUuMDA4MiAxMS4wMDgyIDE1LjAwODJIMy4wMTYxOUMxLjMzNjE5IDE1LjAwODIgLTAuMDA3ODEyNSAxMy42NjQyIC0wLjAwNzgxMjUgMTEuOTg0MlYzLjk5MjE1Qy0wLjAwNzgxMjUgMi4zMzYxNSAxLjMzNjE5IDAuOTkyMTQ5IDMuMDE2MTkgMC45OTIxNDlIMTAuMDAwMlpNMTEuMjcyMiAyLjYyNDE1TDEyLjYxNjIgNC4xMTIxNUw3LjcyMDE5IDkuNjgwMTZDNy41MDQxOSA5LjkyMDE2IDYuODMyMTkgMTAuMjMyMiA1LjY4MDE5IDEwLjYxNjJDNS42NTYxOSAxMC42NDAyIDUuNjA4MTkgMTAuNjQwMiA1LjU2MDE5IDEwLjYxNjJDNS40NjQxOSAxMC41OTIyIDUuMzkyMTkgMTAuNDcyMiA1LjQ0MDE5IDEwLjM3NjJDNS43NTIxOSA5LjI0ODE2IDYuMDQwMTkgOC41NTIxNiA2LjI1NjE5IDguMzEyMTZMMTEuMjcyMiAyLjYyNDE1Wk0xMS45MjAyIDEuODU2MTVMMTMuMjg4MiAwLjMyMDE0OUMxMy42NDgyIC0wLjA4Nzg1MTYgMTQuMjcyMiAtMC4xMTE4NTIgMTQuNjgwMiAwLjI3MjE0OUMxNS4wODgyIDAuNjMyMTQ5IDE1LjExMjIgMS4yODAxNSAxNC43NTIyIDEuNjg4MTVMMTMuMjY0MiAzLjM2ODE1TDExLjkyMDIgMS44NTYxNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
|
13166
13171
|
|
13167
|
-
const componentName$
|
13172
|
+
const componentName$a = getComponentName('user-attribute');
|
13168
13173
|
class RawUserAttribute extends createBaseClass({
|
13169
|
-
componentName: componentName$
|
13174
|
+
componentName: componentName$a,
|
13170
13175
|
baseSelector: ':host > .root',
|
13171
13176
|
}) {
|
13172
13177
|
constructor() {
|
@@ -13400,13 +13405,13 @@ const UserAttributeClass = compose(
|
|
13400
13405
|
componentNameValidationMixin
|
13401
13406
|
)(RawUserAttribute);
|
13402
13407
|
|
13403
|
-
customElements.define(componentName$
|
13408
|
+
customElements.define(componentName$a, UserAttributeClass);
|
13404
13409
|
|
13405
13410
|
var greenVIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhDMCAxMi40IDMuNiAxNiA4IDE2QzEyLjQgMTYgMTYgMTIuNCAxNiA4QzE2IDMuNiAxMi40IDAgOCAwWk03LjEgMTEuN0wyLjkgNy42TDQuMyA2LjJMNyA4LjlMMTIgNEwxMy40IDUuNEw3LjEgMTEuN1oiIGZpbGw9IiM0Q0FGNTAiLz4KPC9zdmc+Cg==";
|
13406
13411
|
|
13407
|
-
const componentName$
|
13412
|
+
const componentName$9 = getComponentName('user-auth-method');
|
13408
13413
|
class RawUserAuthMethod extends createBaseClass({
|
13409
|
-
componentName: componentName$
|
13414
|
+
componentName: componentName$9,
|
13410
13415
|
baseSelector: ':host > .root',
|
13411
13416
|
}) {
|
13412
13417
|
constructor() {
|
@@ -13598,11 +13603,11 @@ const UserAuthMethodClass = compose(
|
|
13598
13603
|
componentNameValidationMixin
|
13599
13604
|
)(RawUserAuthMethod);
|
13600
13605
|
|
13601
|
-
customElements.define(componentName$
|
13606
|
+
customElements.define(componentName$9, UserAuthMethodClass);
|
13602
13607
|
|
13603
|
-
const componentName$
|
13608
|
+
const componentName$8 = getComponentName('saml-group-mappings-internal');
|
13604
13609
|
|
13605
|
-
const BaseInputClass = createBaseInputClass({ componentName: componentName$
|
13610
|
+
const BaseInputClass = createBaseInputClass({ componentName: componentName$8, baseSelector: '' });
|
13606
13611
|
|
13607
13612
|
class SamlGroupMappingsInternal extends BaseInputClass {
|
13608
13613
|
static get observedAttributes() {
|
@@ -13728,7 +13733,7 @@ class SamlGroupMappingsInternal extends BaseInputClass {
|
|
13728
13733
|
}
|
13729
13734
|
}
|
13730
13735
|
|
13731
|
-
const componentName$
|
13736
|
+
const componentName$7 = getComponentName('saml-group-mappings');
|
13732
13737
|
|
13733
13738
|
const customMixin$3 = (superclass) =>
|
13734
13739
|
class SamlGroupMappingsMixinClass extends superclass {
|
@@ -13738,14 +13743,14 @@ const customMixin$3 = (superclass) =>
|
|
13738
13743
|
const template = document.createElement('template');
|
13739
13744
|
|
13740
13745
|
template.innerHTML = `
|
13741
|
-
<${componentName$
|
13746
|
+
<${componentName$8}
|
13742
13747
|
tabindex="-1"
|
13743
|
-
></${componentName$
|
13748
|
+
></${componentName$8}>
|
13744
13749
|
`;
|
13745
13750
|
|
13746
13751
|
this.baseElement.appendChild(template.content.cloneNode(true));
|
13747
13752
|
|
13748
|
-
this.inputElement = this.shadowRoot.querySelector(componentName$
|
13753
|
+
this.inputElement = this.shadowRoot.querySelector(componentName$8);
|
13749
13754
|
|
13750
13755
|
forwardAttrs(this, this.inputElement, {
|
13751
13756
|
includeAttrs: [
|
@@ -13822,15 +13827,15 @@ const SamlGroupMappingsClass = compose(
|
|
13822
13827
|
'options',
|
13823
13828
|
'error-message',
|
13824
13829
|
],
|
13825
|
-
componentName: componentName$
|
13830
|
+
componentName: componentName$7,
|
13826
13831
|
})
|
13827
13832
|
);
|
13828
13833
|
|
13829
|
-
customElements.define(componentName$
|
13834
|
+
customElements.define(componentName$8, SamlGroupMappingsInternal);
|
13830
13835
|
|
13831
|
-
customElements.define(componentName$
|
13836
|
+
customElements.define(componentName$7, SamlGroupMappingsClass);
|
13832
13837
|
|
13833
|
-
const componentName$
|
13838
|
+
const componentName$6 = getComponentName('radio-button');
|
13834
13839
|
|
13835
13840
|
const customMixin$2 = (superclass) =>
|
13836
13841
|
class CustomMixin extends superclass {
|
@@ -13895,11 +13900,11 @@ const RadioButtonClass = compose(
|
|
13895
13900
|
wrappedEleName: 'vaadin-radio-button',
|
13896
13901
|
excludeAttrsSync: ['tabindex', 'data'],
|
13897
13902
|
includeForwardProps: ['checked', 'name', 'disabled'],
|
13898
|
-
componentName: componentName$
|
13903
|
+
componentName: componentName$6,
|
13899
13904
|
})
|
13900
13905
|
);
|
13901
13906
|
|
13902
|
-
const componentName$
|
13907
|
+
const componentName$5 = getComponentName('radio-group');
|
13903
13908
|
|
13904
13909
|
const RadioGroupMixin = (superclass) =>
|
13905
13910
|
class RadioGroupMixinClass extends superclass {
|
@@ -13914,12 +13919,12 @@ const RadioGroupMixin = (superclass) =>
|
|
13914
13919
|
|
13915
13920
|
// we are overriding vaadin children getter so it will run on our custom elements
|
13916
13921
|
Object.defineProperty(this.baseElement, 'children', {
|
13917
|
-
get: () => this.querySelectorAll(componentName$
|
13922
|
+
get: () => this.querySelectorAll(componentName$6),
|
13918
13923
|
});
|
13919
13924
|
|
13920
13925
|
// we are overriding vaadin __filterRadioButtons so it will run on our custom elements
|
13921
13926
|
this.baseElement.__filterRadioButtons = (nodes) => {
|
13922
|
-
return nodes.filter((node) => node.localName === componentName$
|
13927
|
+
return nodes.filter((node) => node.localName === componentName$6);
|
13923
13928
|
};
|
13924
13929
|
|
13925
13930
|
// vaadin radio group missing some input properties
|
@@ -14069,13 +14074,13 @@ const RadioGroupClass = compose(
|
|
14069
14074
|
`,
|
14070
14075
|
|
14071
14076
|
excludeAttrsSync: ['tabindex', 'size', 'data', 'direction'],
|
14072
|
-
componentName: componentName$
|
14077
|
+
componentName: componentName$5,
|
14073
14078
|
includeForwardProps: ['value'],
|
14074
14079
|
})
|
14075
14080
|
);
|
14076
14081
|
|
14077
|
-
customElements.define(componentName$
|
14078
|
-
customElements.define(componentName$
|
14082
|
+
customElements.define(componentName$5, RadioGroupClass);
|
14083
|
+
customElements.define(componentName$6, RadioButtonClass);
|
14079
14084
|
|
14080
14085
|
const activeableMixin = (superclass) =>
|
14081
14086
|
class ActiveableMixinClass extends superclass {
|
@@ -14092,7 +14097,7 @@ const activeableMixin = (superclass) =>
|
|
14092
14097
|
}
|
14093
14098
|
};
|
14094
14099
|
|
14095
|
-
const componentName$
|
14100
|
+
const componentName$4 = getComponentName('list-item');
|
14096
14101
|
|
14097
14102
|
const customMixin$1 = (superclass) =>
|
14098
14103
|
class ListItemMixinClass extends superclass {
|
@@ -14141,11 +14146,11 @@ const ListItemClass = compose(
|
|
14141
14146
|
componentNameValidationMixin,
|
14142
14147
|
customMixin$1,
|
14143
14148
|
activeableMixin
|
14144
|
-
)(createBaseClass({ componentName: componentName$
|
14149
|
+
)(createBaseClass({ componentName: componentName$4, baseSelector: 'slot' }));
|
14145
14150
|
|
14146
|
-
const componentName$
|
14151
|
+
const componentName$3 = getComponentName('list');
|
14147
14152
|
|
14148
|
-
class RawList extends createBaseClass({ componentName: componentName$
|
14153
|
+
class RawList extends createBaseClass({ componentName: componentName$3, baseSelector: '.wrapper' }) {
|
14149
14154
|
static get observedAttributes() {
|
14150
14155
|
return ['variant', 'readonly'];
|
14151
14156
|
}
|
@@ -14292,8 +14297,8 @@ const ListClass = compose(
|
|
14292
14297
|
componentNameValidationMixin
|
14293
14298
|
)(RawList);
|
14294
14299
|
|
14295
|
-
customElements.define(componentName$
|
14296
|
-
customElements.define(componentName$
|
14300
|
+
customElements.define(componentName$3, ListClass);
|
14301
|
+
customElements.define(componentName$4, ListItemClass);
|
14297
14302
|
|
14298
14303
|
const defaultValidateSchema = () => true;
|
14299
14304
|
const defaultItemRenderer = (item) => `<pre>${JSON.stringify(item, null, 4)}</pre>`;
|
@@ -14370,18 +14375,14 @@ const createDynamicDataMixin =
|
|
14370
14375
|
init() {
|
14371
14376
|
super.init?.();
|
14372
14377
|
|
14373
|
-
|
14374
|
-
|
14375
|
-
|
14376
|
-
(attrs)
|
14377
|
-
|
14378
|
-
|
14379
|
-
|
14380
|
-
|
14381
|
-
);
|
14382
|
-
} else {
|
14383
|
-
this.#renderItems();
|
14384
|
-
}
|
14378
|
+
observeAttributes(
|
14379
|
+
this,
|
14380
|
+
(attrs) => {
|
14381
|
+
if (attrs.includes('data')) this.#handleDataAttr();
|
14382
|
+
else this.#renderItems();
|
14383
|
+
},
|
14384
|
+
{ includeAttrs: [...rerenderAttrsList, 'data'] }
|
14385
|
+
);
|
14385
14386
|
}
|
14386
14387
|
|
14387
14388
|
#handleDataAttr() {
|
@@ -14390,30 +14391,15 @@ const createDynamicDataMixin =
|
|
14390
14391
|
if (!dataAttr) return;
|
14391
14392
|
|
14392
14393
|
try {
|
14393
|
-
this
|
14394
|
+
this.data = JSON.parse(dataAttr);
|
14394
14395
|
} catch (e) {
|
14395
14396
|
// eslint-disable-next-line no-console
|
14396
14397
|
console.warn('Invalid JSON data', dataAttr);
|
14397
14398
|
}
|
14398
14399
|
}
|
14399
|
-
|
14400
|
-
attributeChangedCallback(name, oldValue, newValue) {
|
14401
|
-
super.attributeChangedCallback?.(name, oldValue, newValue);
|
14402
|
-
|
14403
|
-
if (newValue === oldValue) return;
|
14404
|
-
|
14405
|
-
if (name === 'data') {
|
14406
|
-
try {
|
14407
|
-
this.data = JSON.parse(newValue);
|
14408
|
-
} catch (e) {
|
14409
|
-
// eslint-disable-next-line no-console
|
14410
|
-
console.warn('Invalid JSON data', newValue);
|
14411
|
-
}
|
14412
|
-
}
|
14413
|
-
}
|
14414
14400
|
};
|
14415
14401
|
|
14416
|
-
const componentName$
|
14402
|
+
const componentName$2 = getComponentName('apps-list');
|
14417
14403
|
|
14418
14404
|
const limitAbbreviation = (str, limit = 2) =>
|
14419
14405
|
str
|
@@ -14423,7 +14409,7 @@ const limitAbbreviation = (str, limit = 2) =>
|
|
14423
14409
|
.map((s) => s[0]?.toUpperCase())
|
14424
14410
|
.join('');
|
14425
14411
|
|
14426
|
-
const itemRenderer = ({ name, icon, url }, _, ref) => `
|
14412
|
+
const itemRenderer$1 = ({ name, icon, url }, _, ref) => `
|
14427
14413
|
<a ${url ? `href="${url}" title="${url}"` : ''} target="_blank">
|
14428
14414
|
<descope-list-item>
|
14429
14415
|
<descope-avatar
|
@@ -14466,7 +14452,7 @@ const AppsListClass = compose(
|
|
14466
14452
|
},
|
14467
14453
|
},
|
14468
14454
|
}),
|
14469
|
-
createDynamicDataMixin({ itemRenderer, rerenderAttrsList: ['size'] }),
|
14455
|
+
createDynamicDataMixin({ itemRenderer: itemRenderer$1, rerenderAttrsList: ['size'] }),
|
14470
14456
|
draggableMixin,
|
14471
14457
|
componentNameValidationMixin,
|
14472
14458
|
customMixin
|
@@ -14475,7 +14461,7 @@ const AppsListClass = compose(
|
|
14475
14461
|
slots: ['empty-state'],
|
14476
14462
|
wrappedEleName: 'descope-list',
|
14477
14463
|
excludeAttrsSync: ['tabindex', 'class', 'empty'],
|
14478
|
-
componentName: componentName$
|
14464
|
+
componentName: componentName$2,
|
14479
14465
|
style: () => `
|
14480
14466
|
:host {
|
14481
14467
|
width: 100%;
|
@@ -14500,7 +14486,113 @@ const AppsListClass = compose(
|
|
14500
14486
|
})
|
14501
14487
|
);
|
14502
14488
|
|
14503
|
-
customElements.define(componentName$
|
14489
|
+
customElements.define(componentName$2, AppsListClass);
|
14490
|
+
|
14491
|
+
const componentName$1 = getComponentName('scopes-list');
|
14492
|
+
const variants = ['checkbox', 'switch'];
|
14493
|
+
|
14494
|
+
const itemRenderer = ({ id, desc, required = false }, _, ref) => {
|
14495
|
+
const ComponentClass = ref.variant === 'checkbox' ? CheckboxClass : SwitchToggleClass;
|
14496
|
+
|
14497
|
+
return `
|
14498
|
+
<${ComponentClass.componentName}
|
14499
|
+
bordered="true"
|
14500
|
+
size=${ref.size}
|
14501
|
+
label="${desc}"
|
14502
|
+
data-id="${id}"
|
14503
|
+
readonly="${required || ref.isReadOnly}"
|
14504
|
+
required="${required}"
|
14505
|
+
checked="true"
|
14506
|
+
></${ComponentClass.componentName}>
|
14507
|
+
`;
|
14508
|
+
};
|
14509
|
+
|
14510
|
+
class RawScopesList extends createBaseClass({ componentName: componentName$1, baseSelector: 'div' }) {
|
14511
|
+
constructor() {
|
14512
|
+
super();
|
14513
|
+
|
14514
|
+
this.attachShadow({ mode: 'open' }).innerHTML = `
|
14515
|
+
<style>
|
14516
|
+
:host {
|
14517
|
+
display: inline-flex;
|
14518
|
+
}
|
14519
|
+
|
14520
|
+
div {
|
14521
|
+
display: flex;
|
14522
|
+
flex-direction: column;
|
14523
|
+
}
|
14524
|
+
|
14525
|
+
</style>
|
14526
|
+
<div></div>
|
14527
|
+
`;
|
14528
|
+
}
|
14529
|
+
|
14530
|
+
get isReadOnly() {
|
14531
|
+
return this.getAttribute('readonly') === 'true';
|
14532
|
+
}
|
14533
|
+
|
14534
|
+
get size() {
|
14535
|
+
return this.getAttribute('size') || 'sm';
|
14536
|
+
}
|
14537
|
+
|
14538
|
+
get value() {
|
14539
|
+
return Array.from(this.shadowRoot.querySelector('div').children).reduce(
|
14540
|
+
(acc, el) => ({ ...acc, [el.getAttribute('data-id')]: el.checked }),
|
14541
|
+
{}
|
14542
|
+
);
|
14543
|
+
}
|
14544
|
+
|
14545
|
+
get variant() {
|
14546
|
+
const variant = this.getAttribute('variant');
|
14547
|
+
|
14548
|
+
return variants.includes(variant) ? variant : variants[0];
|
14549
|
+
}
|
14550
|
+
}
|
14551
|
+
|
14552
|
+
const ScopesListClass = compose(
|
14553
|
+
createStyleMixin({
|
14554
|
+
mappings: {
|
14555
|
+
hostWidth: { selector: () => ':host', property: 'width' },
|
14556
|
+
hostDirection: [
|
14557
|
+
{ selector: () => ':host', property: 'direction' },
|
14558
|
+
{
|
14559
|
+
selector: () => CheckboxClass.componentName,
|
14560
|
+
property: CheckboxClass.cssVarList.hostDirection,
|
14561
|
+
},
|
14562
|
+
{
|
14563
|
+
selector: () => SwitchToggleClass.componentName,
|
14564
|
+
property: SwitchToggleClass.cssVarList.hostDirection,
|
14565
|
+
},
|
14566
|
+
],
|
14567
|
+
gap: { selector: () => 'div', property: 'gap' },
|
14568
|
+
requiredInputBorderColor: [
|
14569
|
+
{
|
14570
|
+
selector: `${CheckboxClass.componentName}[required="true"]`,
|
14571
|
+
property: CheckboxClass.cssVarList.inputBorderColor,
|
14572
|
+
},
|
14573
|
+
{
|
14574
|
+
selector: `${SwitchToggleClass.componentName}[required="true"]`,
|
14575
|
+
property: SwitchToggleClass.cssVarList.inputBorderColor,
|
14576
|
+
},
|
14577
|
+
],
|
14578
|
+
requiredInputValueTextColor: [
|
14579
|
+
{
|
14580
|
+
selector: `${CheckboxClass.componentName}[required="true"]`,
|
14581
|
+
property: CheckboxClass.cssVarList.inputValueTextColor,
|
14582
|
+
},
|
14583
|
+
{
|
14584
|
+
selector: `${SwitchToggleClass.componentName}[required="true"]`,
|
14585
|
+
property: SwitchToggleClass.cssVarList.knobColor,
|
14586
|
+
},
|
14587
|
+
],
|
14588
|
+
},
|
14589
|
+
}),
|
14590
|
+
createDynamicDataMixin({ itemRenderer, rerenderAttrsList: ['size', 'variant'] }),
|
14591
|
+
draggableMixin,
|
14592
|
+
componentNameValidationMixin
|
14593
|
+
)(RawScopesList);
|
14594
|
+
|
14595
|
+
customElements.define(componentName$1, ScopesListClass);
|
14504
14596
|
|
14505
14597
|
const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
|
14506
14598
|
|
@@ -14932,7 +15024,7 @@ const globals = {
|
|
14932
15024
|
fonts,
|
14933
15025
|
direction,
|
14934
15026
|
};
|
14935
|
-
const vars$
|
15027
|
+
const vars$P = getThemeVars(globals);
|
14936
15028
|
|
14937
15029
|
const globalRefs$x = getThemeRefs(globals);
|
14938
15030
|
const compVars$6 = ButtonClass.cssVarList;
|
@@ -14945,7 +15037,7 @@ const mode = {
|
|
14945
15037
|
surface: globalRefs$x.colors.surface,
|
14946
15038
|
};
|
14947
15039
|
|
14948
|
-
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName
|
15040
|
+
const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$10);
|
14949
15041
|
|
14950
15042
|
const button = {
|
14951
15043
|
...helperTheme$4,
|
@@ -15057,7 +15149,7 @@ const button = {
|
|
15057
15149
|
},
|
15058
15150
|
};
|
15059
15151
|
|
15060
|
-
const vars$
|
15152
|
+
const vars$O = {
|
15061
15153
|
...compVars$6,
|
15062
15154
|
...helperVars$4,
|
15063
15155
|
};
|
@@ -15065,13 +15157,13 @@ const vars$N = {
|
|
15065
15157
|
var button$1 = /*#__PURE__*/Object.freeze({
|
15066
15158
|
__proto__: null,
|
15067
15159
|
default: button,
|
15068
|
-
vars: vars$
|
15160
|
+
vars: vars$O
|
15069
15161
|
});
|
15070
15162
|
|
15071
15163
|
const componentName = getComponentName('input-wrapper');
|
15072
15164
|
const globalRefs$w = getThemeRefs(globals);
|
15073
15165
|
|
15074
|
-
const [theme$1, refs, vars$
|
15166
|
+
const [theme$1, refs, vars$N] = createHelperVars(
|
15075
15167
|
{
|
15076
15168
|
labelTextColor: globalRefs$w.colors.surface.dark,
|
15077
15169
|
labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
|
@@ -15190,13 +15282,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
|
|
15190
15282
|
__proto__: null,
|
15191
15283
|
default: theme$1,
|
15192
15284
|
refs: refs,
|
15193
|
-
vars: vars$
|
15285
|
+
vars: vars$N
|
15194
15286
|
});
|
15195
15287
|
|
15196
15288
|
const globalRefs$v = getThemeRefs(globals);
|
15197
|
-
const vars$
|
15289
|
+
const vars$M = TextFieldClass.cssVarList;
|
15198
15290
|
|
15199
15291
|
const textField = {
|
15292
|
+
[vars$M.hostWidth]: refs.width,
|
15293
|
+
[vars$M.hostMinWidth]: refs.minWidth,
|
15294
|
+
[vars$M.hostDirection]: refs.direction,
|
15295
|
+
[vars$M.fontSize]: refs.fontSize,
|
15296
|
+
[vars$M.fontFamily]: refs.fontFamily,
|
15297
|
+
[vars$M.labelFontSize]: refs.labelFontSize,
|
15298
|
+
[vars$M.labelFontWeight]: refs.labelFontWeight,
|
15299
|
+
[vars$M.labelTextColor]: refs.labelTextColor,
|
15300
|
+
[vars$M.labelRequiredIndicator]: refs.requiredIndicator,
|
15301
|
+
[vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
|
15302
|
+
[vars$M.inputValueTextColor]: refs.valueTextColor,
|
15303
|
+
[vars$M.inputPlaceholderColor]: refs.placeholderTextColor,
|
15304
|
+
[vars$M.inputBorderWidth]: refs.borderWidth,
|
15305
|
+
[vars$M.inputBorderStyle]: refs.borderStyle,
|
15306
|
+
[vars$M.inputBorderColor]: refs.borderColor,
|
15307
|
+
[vars$M.inputBorderRadius]: refs.borderRadius,
|
15308
|
+
[vars$M.inputOutlineWidth]: refs.outlineWidth,
|
15309
|
+
[vars$M.inputOutlineStyle]: refs.outlineStyle,
|
15310
|
+
[vars$M.inputOutlineColor]: refs.outlineColor,
|
15311
|
+
[vars$M.inputOutlineOffset]: refs.outlineOffset,
|
15312
|
+
[vars$M.inputBackgroundColor]: refs.backgroundColor,
|
15313
|
+
[vars$M.inputHeight]: refs.inputHeight,
|
15314
|
+
[vars$M.inputHorizontalPadding]: refs.horizontalPadding,
|
15315
|
+
[vars$M.helperTextColor]: refs.helperTextColor,
|
15316
|
+
[vars$M.textAlign]: refs.textAlign,
|
15317
|
+
textAlign: {
|
15318
|
+
right: { [vars$M.inputTextAlign]: 'right' },
|
15319
|
+
left: { [vars$M.inputTextAlign]: 'left' },
|
15320
|
+
center: { [vars$M.inputTextAlign]: 'center' },
|
15321
|
+
},
|
15322
|
+
[vars$M.labelPosition]: refs.labelPosition,
|
15323
|
+
[vars$M.labelTopPosition]: refs.labelTopPosition,
|
15324
|
+
[vars$M.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
15325
|
+
[vars$M.inputTransformY]: refs.inputTransformY,
|
15326
|
+
[vars$M.inputTransition]: refs.inputTransition,
|
15327
|
+
[vars$M.marginInlineStart]: refs.marginInlineStart,
|
15328
|
+
[vars$M.placeholderOpacity]: refs.placeholderOpacity,
|
15329
|
+
[vars$M.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15330
|
+
[vars$M.valueInputHeight]: refs.valueInputHeight,
|
15331
|
+
[vars$M.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15332
|
+
[vars$M.inputIconOffset]: globalRefs$v.spacing.md,
|
15333
|
+
[vars$M.inputIconSize]: refs.inputIconSize,
|
15334
|
+
[vars$M.inputIconColor]: refs.placeholderTextColor,
|
15335
|
+
};
|
15336
|
+
|
15337
|
+
var textField$1 = /*#__PURE__*/Object.freeze({
|
15338
|
+
__proto__: null,
|
15339
|
+
default: textField,
|
15340
|
+
textField: textField,
|
15341
|
+
vars: vars$M
|
15342
|
+
});
|
15343
|
+
|
15344
|
+
const globalRefs$u = getThemeRefs(globals);
|
15345
|
+
const vars$L = PasswordClass.cssVarList;
|
15346
|
+
|
15347
|
+
const password = {
|
15200
15348
|
[vars$L.hostWidth]: refs.width,
|
15201
15349
|
[vars$L.hostMinWidth]: refs.minWidth,
|
15202
15350
|
[vars$L.hostDirection]: refs.direction,
|
@@ -15205,10 +15353,13 @@ const textField = {
|
|
15205
15353
|
[vars$L.labelFontSize]: refs.labelFontSize,
|
15206
15354
|
[vars$L.labelFontWeight]: refs.labelFontWeight,
|
15207
15355
|
[vars$L.labelTextColor]: refs.labelTextColor,
|
15208
|
-
[vars$L.labelRequiredIndicator]: refs.requiredIndicator,
|
15209
15356
|
[vars$L.errorMessageTextColor]: refs.errorMessageTextColor,
|
15357
|
+
[vars$L.inputHorizontalPadding]: refs.horizontalPadding,
|
15358
|
+
[vars$L.inputHeight]: refs.inputHeight,
|
15359
|
+
[vars$L.inputBackgroundColor]: refs.backgroundColor,
|
15360
|
+
[vars$L.labelRequiredIndicator]: refs.requiredIndicator,
|
15210
15361
|
[vars$L.inputValueTextColor]: refs.valueTextColor,
|
15211
|
-
[vars$L.
|
15362
|
+
[vars$L.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
15212
15363
|
[vars$L.inputBorderWidth]: refs.borderWidth,
|
15213
15364
|
[vars$L.inputBorderStyle]: refs.borderStyle,
|
15214
15365
|
[vars$L.inputBorderColor]: refs.borderColor,
|
@@ -15217,16 +15368,9 @@ const textField = {
|
|
15217
15368
|
[vars$L.inputOutlineStyle]: refs.outlineStyle,
|
15218
15369
|
[vars$L.inputOutlineColor]: refs.outlineColor,
|
15219
15370
|
[vars$L.inputOutlineOffset]: refs.outlineOffset,
|
15220
|
-
[vars$L.
|
15221
|
-
[vars$L.
|
15222
|
-
[vars$L.
|
15223
|
-
[vars$L.helperTextColor]: refs.helperTextColor,
|
15224
|
-
[vars$L.textAlign]: refs.textAlign,
|
15225
|
-
textAlign: {
|
15226
|
-
right: { [vars$L.inputTextAlign]: 'right' },
|
15227
|
-
left: { [vars$L.inputTextAlign]: 'left' },
|
15228
|
-
center: { [vars$L.inputTextAlign]: 'center' },
|
15229
|
-
},
|
15371
|
+
[vars$L.revealButtonOffset]: globalRefs$u.spacing.md,
|
15372
|
+
[vars$L.revealButtonSize]: refs.toggleButtonSize,
|
15373
|
+
[vars$L.revealButtonColor]: refs.placeholderTextColor,
|
15230
15374
|
[vars$L.labelPosition]: refs.labelPosition,
|
15231
15375
|
[vars$L.labelTopPosition]: refs.labelTopPosition,
|
15232
15376
|
[vars$L.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -15236,23 +15380,17 @@ const textField = {
|
|
15236
15380
|
[vars$L.placeholderOpacity]: refs.placeholderOpacity,
|
15237
15381
|
[vars$L.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15238
15382
|
[vars$L.valueInputHeight]: refs.valueInputHeight,
|
15239
|
-
[vars$L.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15240
|
-
[vars$L.inputIconOffset]: globalRefs$v.spacing.md,
|
15241
|
-
[vars$L.inputIconSize]: refs.inputIconSize,
|
15242
|
-
[vars$L.inputIconColor]: refs.placeholderTextColor,
|
15243
15383
|
};
|
15244
15384
|
|
15245
|
-
var
|
15385
|
+
var password$1 = /*#__PURE__*/Object.freeze({
|
15246
15386
|
__proto__: null,
|
15247
|
-
default:
|
15248
|
-
textField: textField,
|
15387
|
+
default: password,
|
15249
15388
|
vars: vars$L
|
15250
15389
|
});
|
15251
15390
|
|
15252
|
-
const
|
15253
|
-
const vars$K = PasswordClass.cssVarList;
|
15391
|
+
const vars$K = NumberFieldClass.cssVarList;
|
15254
15392
|
|
15255
|
-
const
|
15393
|
+
const numberField = {
|
15256
15394
|
[vars$K.hostWidth]: refs.width,
|
15257
15395
|
[vars$K.hostMinWidth]: refs.minWidth,
|
15258
15396
|
[vars$K.hostDirection]: refs.direction,
|
@@ -15262,12 +15400,8 @@ const password = {
|
|
15262
15400
|
[vars$K.labelFontWeight]: refs.labelFontWeight,
|
15263
15401
|
[vars$K.labelTextColor]: refs.labelTextColor,
|
15264
15402
|
[vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
|
15265
|
-
[vars$K.inputHorizontalPadding]: refs.horizontalPadding,
|
15266
|
-
[vars$K.inputHeight]: refs.inputHeight,
|
15267
|
-
[vars$K.inputBackgroundColor]: refs.backgroundColor,
|
15268
|
-
[vars$K.labelRequiredIndicator]: refs.requiredIndicator,
|
15269
15403
|
[vars$K.inputValueTextColor]: refs.valueTextColor,
|
15270
|
-
[vars$K.
|
15404
|
+
[vars$K.inputPlaceholderColor]: refs.placeholderTextColor,
|
15271
15405
|
[vars$K.inputBorderWidth]: refs.borderWidth,
|
15272
15406
|
[vars$K.inputBorderStyle]: refs.borderStyle,
|
15273
15407
|
[vars$K.inputBorderColor]: refs.borderColor,
|
@@ -15276,9 +15410,10 @@ const password = {
|
|
15276
15410
|
[vars$K.inputOutlineStyle]: refs.outlineStyle,
|
15277
15411
|
[vars$K.inputOutlineColor]: refs.outlineColor,
|
15278
15412
|
[vars$K.inputOutlineOffset]: refs.outlineOffset,
|
15279
|
-
[vars$K.
|
15280
|
-
[vars$K.
|
15281
|
-
[vars$K.
|
15413
|
+
[vars$K.inputBackgroundColor]: refs.backgroundColor,
|
15414
|
+
[vars$K.labelRequiredIndicator]: refs.requiredIndicator,
|
15415
|
+
[vars$K.inputHorizontalPadding]: refs.horizontalPadding,
|
15416
|
+
[vars$K.inputHeight]: refs.inputHeight,
|
15282
15417
|
[vars$K.labelPosition]: refs.labelPosition,
|
15283
15418
|
[vars$K.labelTopPosition]: refs.labelTopPosition,
|
15284
15419
|
[vars$K.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
@@ -15288,17 +15423,18 @@ const password = {
|
|
15288
15423
|
[vars$K.placeholderOpacity]: refs.placeholderOpacity,
|
15289
15424
|
[vars$K.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
15290
15425
|
[vars$K.valueInputHeight]: refs.valueInputHeight,
|
15426
|
+
[vars$K.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15291
15427
|
};
|
15292
15428
|
|
15293
|
-
var
|
15429
|
+
var numberField$1 = /*#__PURE__*/Object.freeze({
|
15294
15430
|
__proto__: null,
|
15295
|
-
default:
|
15431
|
+
default: numberField,
|
15296
15432
|
vars: vars$K
|
15297
15433
|
});
|
15298
15434
|
|
15299
|
-
const vars$J =
|
15435
|
+
const vars$J = EmailFieldClass.cssVarList;
|
15300
15436
|
|
15301
|
-
const
|
15437
|
+
const emailField = {
|
15302
15438
|
[vars$J.hostWidth]: refs.width,
|
15303
15439
|
[vars$J.hostMinWidth]: refs.minWidth,
|
15304
15440
|
[vars$J.hostDirection]: refs.direction,
|
@@ -15309,6 +15445,7 @@ const numberField = {
|
|
15309
15445
|
[vars$J.labelTextColor]: refs.labelTextColor,
|
15310
15446
|
[vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
|
15311
15447
|
[vars$J.inputValueTextColor]: refs.valueTextColor,
|
15448
|
+
[vars$J.labelRequiredIndicator]: refs.requiredIndicator,
|
15312
15449
|
[vars$J.inputPlaceholderColor]: refs.placeholderTextColor,
|
15313
15450
|
[vars$J.inputBorderWidth]: refs.borderWidth,
|
15314
15451
|
[vars$J.inputBorderStyle]: refs.borderStyle,
|
@@ -15319,7 +15456,6 @@ const numberField = {
|
|
15319
15456
|
[vars$J.inputOutlineColor]: refs.outlineColor,
|
15320
15457
|
[vars$J.inputOutlineOffset]: refs.outlineOffset,
|
15321
15458
|
[vars$J.inputBackgroundColor]: refs.backgroundColor,
|
15322
|
-
[vars$J.labelRequiredIndicator]: refs.requiredIndicator,
|
15323
15459
|
[vars$J.inputHorizontalPadding]: refs.horizontalPadding,
|
15324
15460
|
[vars$J.inputHeight]: refs.inputHeight,
|
15325
15461
|
[vars$J.labelPosition]: refs.labelPosition,
|
@@ -15334,204 +15470,153 @@ const numberField = {
|
|
15334
15470
|
[vars$J.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15335
15471
|
};
|
15336
15472
|
|
15337
|
-
var
|
15473
|
+
var emailField$1 = /*#__PURE__*/Object.freeze({
|
15338
15474
|
__proto__: null,
|
15339
|
-
default:
|
15475
|
+
default: emailField,
|
15340
15476
|
vars: vars$J
|
15341
15477
|
});
|
15342
15478
|
|
15343
|
-
const vars$I =
|
15479
|
+
const vars$I = TextAreaClass.cssVarList;
|
15344
15480
|
|
15345
|
-
const
|
15481
|
+
const textArea = {
|
15346
15482
|
[vars$I.hostWidth]: refs.width,
|
15347
15483
|
[vars$I.hostMinWidth]: refs.minWidth,
|
15348
15484
|
[vars$I.hostDirection]: refs.direction,
|
15349
15485
|
[vars$I.fontSize]: refs.fontSize,
|
15350
15486
|
[vars$I.fontFamily]: refs.fontFamily,
|
15351
|
-
[vars$I.labelFontSize]: refs.labelFontSize,
|
15352
|
-
[vars$I.labelFontWeight]: refs.labelFontWeight,
|
15353
15487
|
[vars$I.labelTextColor]: refs.labelTextColor,
|
15488
|
+
[vars$I.labelRequiredIndicator]: refs.requiredIndicator,
|
15354
15489
|
[vars$I.errorMessageTextColor]: refs.errorMessageTextColor,
|
15490
|
+
[vars$I.inputBackgroundColor]: refs.backgroundColor,
|
15355
15491
|
[vars$I.inputValueTextColor]: refs.valueTextColor,
|
15356
|
-
[vars$I.
|
15357
|
-
[vars$I.
|
15492
|
+
[vars$I.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
15493
|
+
[vars$I.inputBorderRadius]: refs.borderRadius,
|
15358
15494
|
[vars$I.inputBorderWidth]: refs.borderWidth,
|
15359
15495
|
[vars$I.inputBorderStyle]: refs.borderStyle,
|
15360
15496
|
[vars$I.inputBorderColor]: refs.borderColor,
|
15361
|
-
[vars$I.inputBorderRadius]: refs.borderRadius,
|
15362
15497
|
[vars$I.inputOutlineWidth]: refs.outlineWidth,
|
15363
15498
|
[vars$I.inputOutlineStyle]: refs.outlineStyle,
|
15364
15499
|
[vars$I.inputOutlineColor]: refs.outlineColor,
|
15365
15500
|
[vars$I.inputOutlineOffset]: refs.outlineOffset,
|
15366
|
-
[vars$I.
|
15367
|
-
[vars$I.
|
15368
|
-
|
15369
|
-
|
15370
|
-
|
15371
|
-
|
15372
|
-
|
15373
|
-
|
15374
|
-
|
15375
|
-
|
15376
|
-
|
15377
|
-
[vars$I.valueInputHeight]: refs.valueInputHeight,
|
15378
|
-
[vars$I.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
15501
|
+
[vars$I.inputResizeType]: 'vertical',
|
15502
|
+
[vars$I.inputMinHeight]: '5em',
|
15503
|
+
textAlign: {
|
15504
|
+
right: { [vars$I.inputTextAlign]: 'right' },
|
15505
|
+
left: { [vars$I.inputTextAlign]: 'left' },
|
15506
|
+
center: { [vars$I.inputTextAlign]: 'center' },
|
15507
|
+
},
|
15508
|
+
|
15509
|
+
_readonly: {
|
15510
|
+
[vars$I.inputResizeType]: 'none',
|
15511
|
+
},
|
15379
15512
|
};
|
15380
15513
|
|
15381
|
-
var
|
15514
|
+
var textArea$1 = /*#__PURE__*/Object.freeze({
|
15382
15515
|
__proto__: null,
|
15383
|
-
default:
|
15516
|
+
default: textArea,
|
15384
15517
|
vars: vars$I
|
15385
15518
|
});
|
15386
15519
|
|
15387
|
-
const vars$H =
|
15520
|
+
const vars$H = CheckboxClass.cssVarList;
|
15521
|
+
const checkboxSize = '1.35em';
|
15388
15522
|
|
15389
|
-
const
|
15523
|
+
const checkbox = {
|
15390
15524
|
[vars$H.hostWidth]: refs.width,
|
15391
|
-
[vars$H.hostMinWidth]: refs.minWidth,
|
15392
15525
|
[vars$H.hostDirection]: refs.direction,
|
15393
15526
|
[vars$H.fontSize]: refs.fontSize,
|
15394
15527
|
[vars$H.fontFamily]: refs.fontFamily,
|
15395
15528
|
[vars$H.labelTextColor]: refs.labelTextColor,
|
15396
15529
|
[vars$H.labelRequiredIndicator]: refs.requiredIndicator,
|
15530
|
+
[vars$H.labelFontWeight]: '400',
|
15531
|
+
[vars$H.labelLineHeight]: checkboxSize,
|
15532
|
+
[vars$H.labelSpacing]: '1em',
|
15397
15533
|
[vars$H.errorMessageTextColor]: refs.errorMessageTextColor,
|
15398
|
-
[vars$H.
|
15399
|
-
[vars$H.
|
15400
|
-
[vars$H.
|
15534
|
+
[vars$H.inputOutlineWidth]: refs.outlineWidth,
|
15535
|
+
[vars$H.inputOutlineOffset]: refs.outlineOffset,
|
15536
|
+
[vars$H.inputOutlineColor]: refs.outlineColor,
|
15537
|
+
[vars$H.inputOutlineStyle]: refs.outlineStyle,
|
15401
15538
|
[vars$H.inputBorderRadius]: refs.borderRadius,
|
15539
|
+
[vars$H.inputBorderColor]: refs.borderColor,
|
15402
15540
|
[vars$H.inputBorderWidth]: refs.borderWidth,
|
15403
15541
|
[vars$H.inputBorderStyle]: refs.borderStyle,
|
15404
|
-
[vars$H.
|
15405
|
-
[vars$H.
|
15406
|
-
[vars$H.
|
15407
|
-
[vars$H.inputOutlineColor]: refs.outlineColor,
|
15408
|
-
[vars$H.inputOutlineOffset]: refs.outlineOffset,
|
15409
|
-
[vars$H.inputResizeType]: 'vertical',
|
15410
|
-
[vars$H.inputMinHeight]: '5em',
|
15411
|
-
textAlign: {
|
15412
|
-
right: { [vars$H.inputTextAlign]: 'right' },
|
15413
|
-
left: { [vars$H.inputTextAlign]: 'left' },
|
15414
|
-
center: { [vars$H.inputTextAlign]: 'center' },
|
15415
|
-
},
|
15416
|
-
|
15417
|
-
_readonly: {
|
15418
|
-
[vars$H.inputResizeType]: 'none',
|
15419
|
-
},
|
15542
|
+
[vars$H.inputBackgroundColor]: refs.backgroundColor,
|
15543
|
+
[vars$H.inputSize]: checkboxSize,
|
15544
|
+
[vars$H.inputValueTextColor]: refs.valueTextColor,
|
15420
15545
|
};
|
15421
15546
|
|
15422
|
-
var
|
15547
|
+
var checkbox$1 = /*#__PURE__*/Object.freeze({
|
15423
15548
|
__proto__: null,
|
15424
|
-
default:
|
15549
|
+
default: checkbox,
|
15425
15550
|
vars: vars$H
|
15426
15551
|
});
|
15427
15552
|
|
15428
|
-
const
|
15429
|
-
const
|
15553
|
+
const knobMargin = '2px';
|
15554
|
+
const checkboxHeight = '1.25em';
|
15430
15555
|
|
15431
|
-
const
|
15556
|
+
const globalRefs$t = getThemeRefs(globals);
|
15557
|
+
const vars$G = SwitchToggleClass.cssVarList;
|
15558
|
+
|
15559
|
+
const switchToggle = {
|
15432
15560
|
[vars$G.hostWidth]: refs.width,
|
15433
15561
|
[vars$G.hostDirection]: refs.direction,
|
15434
15562
|
[vars$G.fontSize]: refs.fontSize,
|
15435
15563
|
[vars$G.fontFamily]: refs.fontFamily,
|
15436
|
-
|
15437
|
-
[vars$G.labelRequiredIndicator]: refs.requiredIndicator,
|
15438
|
-
[vars$G.labelFontWeight]: '400',
|
15439
|
-
[vars$G.labelLineHeight]: checkboxSize,
|
15440
|
-
[vars$G.labelSpacing]: '1em',
|
15441
|
-
[vars$G.errorMessageTextColor]: refs.errorMessageTextColor,
|
15564
|
+
|
15442
15565
|
[vars$G.inputOutlineWidth]: refs.outlineWidth,
|
15443
15566
|
[vars$G.inputOutlineOffset]: refs.outlineOffset,
|
15444
15567
|
[vars$G.inputOutlineColor]: refs.outlineColor,
|
15445
15568
|
[vars$G.inputOutlineStyle]: refs.outlineStyle,
|
15446
|
-
[vars$G.inputBorderRadius]: refs.borderRadius,
|
15447
|
-
[vars$G.inputBorderColor]: refs.borderColor,
|
15448
|
-
[vars$G.inputBorderWidth]: refs.borderWidth,
|
15449
|
-
[vars$G.inputBorderStyle]: refs.borderStyle,
|
15450
|
-
[vars$G.inputBackgroundColor]: refs.backgroundColor,
|
15451
|
-
[vars$G.inputSize]: checkboxSize,
|
15452
|
-
|
15453
|
-
_checked: {
|
15454
|
-
[vars$G.inputValueTextColor]: refs.valueTextColor,
|
15455
|
-
},
|
15456
|
-
|
15457
|
-
_disabled: {
|
15458
|
-
[vars$G.labelTextColor]: refs.labelTextColor,
|
15459
|
-
},
|
15460
|
-
};
|
15461
15569
|
|
15462
|
-
|
15463
|
-
|
15464
|
-
|
15465
|
-
vars:
|
15466
|
-
|
15570
|
+
[vars$G.trackBorderStyle]: refs.borderStyle,
|
15571
|
+
[vars$G.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
|
15572
|
+
[vars$G.trackBorderColor]: refs.borderColor,
|
15573
|
+
[vars$G.trackBackgroundColor]: refs.backgroundColor,
|
15574
|
+
[vars$G.trackBorderRadius]: globalRefs$t.radius.md,
|
15575
|
+
[vars$G.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
|
15576
|
+
[vars$G.trackHeight]: checkboxHeight,
|
15577
|
+
|
15578
|
+
[vars$G.knobSize]: `calc(1em - ${knobMargin})`,
|
15579
|
+
[vars$G.knobRadius]: '50%',
|
15580
|
+
[vars$G.knobTopOffset]: '1px',
|
15581
|
+
[vars$G.knobLeftOffset]: knobMargin,
|
15582
|
+
[vars$G.knobColor]: refs.labelTextColor,
|
15583
|
+
[vars$G.knobTransitionDuration]: '0.3s',
|
15467
15584
|
|
15468
|
-
|
15469
|
-
|
15470
|
-
|
15471
|
-
|
15472
|
-
|
15473
|
-
|
15474
|
-
const switchToggle = {
|
15475
|
-
[vars$F.hostWidth]: refs.width,
|
15476
|
-
[vars$F.hostDirection]: refs.direction,
|
15477
|
-
[vars$F.fontSize]: refs.fontSize,
|
15478
|
-
[vars$F.fontFamily]: refs.fontFamily,
|
15479
|
-
|
15480
|
-
[vars$F.inputOutlineWidth]: refs.outlineWidth,
|
15481
|
-
[vars$F.inputOutlineOffset]: refs.outlineOffset,
|
15482
|
-
[vars$F.inputOutlineColor]: refs.outlineColor,
|
15483
|
-
[vars$F.inputOutlineStyle]: refs.outlineStyle,
|
15484
|
-
|
15485
|
-
[vars$F.trackBorderStyle]: refs.borderStyle,
|
15486
|
-
[vars$F.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
|
15487
|
-
[vars$F.trackBorderColor]: refs.borderColor,
|
15488
|
-
[vars$F.trackBackgroundColor]: refs.backgroundColor,
|
15489
|
-
[vars$F.trackBorderRadius]: globalRefs$t.radius.md,
|
15490
|
-
[vars$F.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
|
15491
|
-
[vars$F.trackHeight]: checkboxHeight,
|
15492
|
-
|
15493
|
-
[vars$F.knobSize]: `calc(1em - ${knobMargin})`,
|
15494
|
-
[vars$F.knobRadius]: '50%',
|
15495
|
-
[vars$F.knobTopOffset]: '1px',
|
15496
|
-
[vars$F.knobLeftOffset]: knobMargin,
|
15497
|
-
[vars$F.knobColor]: refs.labelTextColor,
|
15498
|
-
[vars$F.knobTransitionDuration]: '0.3s',
|
15499
|
-
|
15500
|
-
[vars$F.labelTextColor]: refs.labelTextColor,
|
15501
|
-
[vars$F.labelFontWeight]: '400',
|
15502
|
-
[vars$F.labelLineHeight]: '1.35em',
|
15503
|
-
[vars$F.labelSpacing]: '1em',
|
15504
|
-
[vars$F.labelRequiredIndicator]: refs.requiredIndicator,
|
15505
|
-
[vars$F.errorMessageTextColor]: refs.errorMessageTextColor,
|
15585
|
+
[vars$G.labelTextColor]: refs.labelTextColor,
|
15586
|
+
[vars$G.labelFontWeight]: '400',
|
15587
|
+
[vars$G.labelLineHeight]: '1.35em',
|
15588
|
+
[vars$G.labelSpacing]: '1em',
|
15589
|
+
[vars$G.labelRequiredIndicator]: refs.requiredIndicator,
|
15590
|
+
[vars$G.errorMessageTextColor]: refs.errorMessageTextColor,
|
15506
15591
|
|
15507
15592
|
_checked: {
|
15508
|
-
[vars$
|
15509
|
-
[vars$
|
15510
|
-
[vars$
|
15511
|
-
[vars$
|
15593
|
+
[vars$G.trackBorderColor]: refs.borderColor,
|
15594
|
+
[vars$G.knobLeftOffset]: `calc(100% - var(${vars$G.knobSize}) - ${knobMargin})`,
|
15595
|
+
[vars$G.knobColor]: refs.valueTextColor,
|
15596
|
+
[vars$G.knobTextColor]: refs.valueTextColor,
|
15512
15597
|
},
|
15513
15598
|
|
15514
15599
|
_disabled: {
|
15515
|
-
[vars$
|
15516
|
-
[vars$
|
15517
|
-
[vars$
|
15518
|
-
[vars$
|
15600
|
+
[vars$G.knobColor]: globalRefs$t.colors.surface.light,
|
15601
|
+
[vars$G.trackBorderColor]: globalRefs$t.colors.surface.light,
|
15602
|
+
[vars$G.trackBackgroundColor]: globalRefs$t.colors.surface.main,
|
15603
|
+
[vars$G.labelTextColor]: refs.labelTextColor,
|
15519
15604
|
_checked: {
|
15520
|
-
[vars$
|
15521
|
-
[vars$
|
15605
|
+
[vars$G.knobColor]: globalRefs$t.colors.surface.light,
|
15606
|
+
[vars$G.trackBackgroundColor]: globalRefs$t.colors.surface.main,
|
15522
15607
|
},
|
15523
15608
|
},
|
15524
15609
|
|
15525
15610
|
_invalid: {
|
15526
|
-
[vars$
|
15527
|
-
[vars$
|
15611
|
+
[vars$G.trackBorderColor]: globalRefs$t.colors.error.main,
|
15612
|
+
[vars$G.knobColor]: globalRefs$t.colors.error.main,
|
15528
15613
|
},
|
15529
15614
|
};
|
15530
15615
|
|
15531
15616
|
var switchToggle$1 = /*#__PURE__*/Object.freeze({
|
15532
15617
|
__proto__: null,
|
15533
15618
|
default: switchToggle,
|
15534
|
-
vars: vars$
|
15619
|
+
vars: vars$G
|
15535
15620
|
});
|
15536
15621
|
|
15537
15622
|
const globalRefs$s = getThemeRefs(globals);
|
@@ -15556,7 +15641,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
|
|
15556
15641
|
horizontalAlignment,
|
15557
15642
|
shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
|
15558
15643
|
},
|
15559
|
-
componentName$
|
15644
|
+
componentName$W
|
15560
15645
|
);
|
15561
15646
|
|
15562
15647
|
const { shadowColor: shadowColor$3 } = helperRefs$3;
|
@@ -15643,7 +15728,7 @@ const container = {
|
|
15643
15728
|
},
|
15644
15729
|
};
|
15645
15730
|
|
15646
|
-
const vars$
|
15731
|
+
const vars$F = {
|
15647
15732
|
...compVars$5,
|
15648
15733
|
...helperVars$3,
|
15649
15734
|
};
|
@@ -15651,168 +15736,168 @@ const vars$E = {
|
|
15651
15736
|
var container$1 = /*#__PURE__*/Object.freeze({
|
15652
15737
|
__proto__: null,
|
15653
15738
|
default: container,
|
15654
|
-
vars: vars$
|
15739
|
+
vars: vars$F
|
15655
15740
|
});
|
15656
15741
|
|
15657
|
-
const vars$
|
15742
|
+
const vars$E = LogoClass.cssVarList;
|
15658
15743
|
|
15659
15744
|
const logo$2 = {
|
15660
|
-
[vars$
|
15745
|
+
[vars$E.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
|
15661
15746
|
};
|
15662
15747
|
|
15663
15748
|
var logo$3 = /*#__PURE__*/Object.freeze({
|
15664
15749
|
__proto__: null,
|
15665
15750
|
default: logo$2,
|
15666
|
-
vars: vars$
|
15751
|
+
vars: vars$E
|
15667
15752
|
});
|
15668
15753
|
|
15669
|
-
const vars$
|
15754
|
+
const vars$D = TotpImageClass.cssVarList;
|
15670
15755
|
|
15671
15756
|
const logo$1 = {
|
15672
|
-
[vars$
|
15757
|
+
[vars$D.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
|
15673
15758
|
};
|
15674
15759
|
|
15675
15760
|
var totpImage = /*#__PURE__*/Object.freeze({
|
15676
15761
|
__proto__: null,
|
15677
15762
|
default: logo$1,
|
15678
|
-
vars: vars$
|
15763
|
+
vars: vars$D
|
15679
15764
|
});
|
15680
15765
|
|
15681
|
-
const vars$
|
15766
|
+
const vars$C = NotpImageClass.cssVarList;
|
15682
15767
|
|
15683
15768
|
const logo = {
|
15684
|
-
[vars$
|
15769
|
+
[vars$C.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
|
15685
15770
|
};
|
15686
15771
|
|
15687
15772
|
var notpImage = /*#__PURE__*/Object.freeze({
|
15688
15773
|
__proto__: null,
|
15689
15774
|
default: logo,
|
15690
|
-
vars: vars$
|
15775
|
+
vars: vars$C
|
15691
15776
|
});
|
15692
15777
|
|
15693
15778
|
const globalRefs$r = getThemeRefs(globals);
|
15694
|
-
const vars$
|
15779
|
+
const vars$B = TextClass.cssVarList;
|
15695
15780
|
|
15696
15781
|
const text = {
|
15697
|
-
[vars$
|
15698
|
-
[vars$
|
15699
|
-
[vars$
|
15700
|
-
[vars$
|
15782
|
+
[vars$B.hostDirection]: globalRefs$r.direction,
|
15783
|
+
[vars$B.textLineHeight]: '1.35em',
|
15784
|
+
[vars$B.textAlign]: 'left',
|
15785
|
+
[vars$B.textColor]: globalRefs$r.colors.surface.dark,
|
15701
15786
|
|
15702
15787
|
variant: {
|
15703
15788
|
h1: {
|
15704
|
-
[vars$
|
15705
|
-
[vars$
|
15706
|
-
[vars$
|
15789
|
+
[vars$B.fontSize]: globalRefs$r.typography.h1.size,
|
15790
|
+
[vars$B.fontWeight]: globalRefs$r.typography.h1.weight,
|
15791
|
+
[vars$B.fontFamily]: globalRefs$r.typography.h1.font,
|
15707
15792
|
},
|
15708
15793
|
h2: {
|
15709
|
-
[vars$
|
15710
|
-
[vars$
|
15711
|
-
[vars$
|
15794
|
+
[vars$B.fontSize]: globalRefs$r.typography.h2.size,
|
15795
|
+
[vars$B.fontWeight]: globalRefs$r.typography.h2.weight,
|
15796
|
+
[vars$B.fontFamily]: globalRefs$r.typography.h2.font,
|
15712
15797
|
},
|
15713
15798
|
h3: {
|
15714
|
-
[vars$
|
15715
|
-
[vars$
|
15716
|
-
[vars$
|
15799
|
+
[vars$B.fontSize]: globalRefs$r.typography.h3.size,
|
15800
|
+
[vars$B.fontWeight]: globalRefs$r.typography.h3.weight,
|
15801
|
+
[vars$B.fontFamily]: globalRefs$r.typography.h3.font,
|
15717
15802
|
},
|
15718
15803
|
subtitle1: {
|
15719
|
-
[vars$
|
15720
|
-
[vars$
|
15721
|
-
[vars$
|
15804
|
+
[vars$B.fontSize]: globalRefs$r.typography.subtitle1.size,
|
15805
|
+
[vars$B.fontWeight]: globalRefs$r.typography.subtitle1.weight,
|
15806
|
+
[vars$B.fontFamily]: globalRefs$r.typography.subtitle1.font,
|
15722
15807
|
},
|
15723
15808
|
subtitle2: {
|
15724
|
-
[vars$
|
15725
|
-
[vars$
|
15726
|
-
[vars$
|
15809
|
+
[vars$B.fontSize]: globalRefs$r.typography.subtitle2.size,
|
15810
|
+
[vars$B.fontWeight]: globalRefs$r.typography.subtitle2.weight,
|
15811
|
+
[vars$B.fontFamily]: globalRefs$r.typography.subtitle2.font,
|
15727
15812
|
},
|
15728
15813
|
body1: {
|
15729
|
-
[vars$
|
15730
|
-
[vars$
|
15731
|
-
[vars$
|
15814
|
+
[vars$B.fontSize]: globalRefs$r.typography.body1.size,
|
15815
|
+
[vars$B.fontWeight]: globalRefs$r.typography.body1.weight,
|
15816
|
+
[vars$B.fontFamily]: globalRefs$r.typography.body1.font,
|
15732
15817
|
},
|
15733
15818
|
body2: {
|
15734
|
-
[vars$
|
15735
|
-
[vars$
|
15736
|
-
[vars$
|
15819
|
+
[vars$B.fontSize]: globalRefs$r.typography.body2.size,
|
15820
|
+
[vars$B.fontWeight]: globalRefs$r.typography.body2.weight,
|
15821
|
+
[vars$B.fontFamily]: globalRefs$r.typography.body2.font,
|
15737
15822
|
},
|
15738
15823
|
},
|
15739
15824
|
|
15740
15825
|
mode: {
|
15741
15826
|
primary: {
|
15742
|
-
[vars$
|
15827
|
+
[vars$B.textColor]: globalRefs$r.colors.surface.contrast,
|
15743
15828
|
},
|
15744
15829
|
secondary: {
|
15745
|
-
[vars$
|
15830
|
+
[vars$B.textColor]: globalRefs$r.colors.surface.dark,
|
15746
15831
|
},
|
15747
15832
|
error: {
|
15748
|
-
[vars$
|
15833
|
+
[vars$B.textColor]: globalRefs$r.colors.error.main,
|
15749
15834
|
},
|
15750
15835
|
success: {
|
15751
|
-
[vars$
|
15836
|
+
[vars$B.textColor]: globalRefs$r.colors.success.main,
|
15752
15837
|
},
|
15753
15838
|
},
|
15754
15839
|
|
15755
15840
|
textAlign: {
|
15756
|
-
right: { [vars$
|
15757
|
-
left: { [vars$
|
15758
|
-
center: { [vars$
|
15841
|
+
right: { [vars$B.textAlign]: 'right' },
|
15842
|
+
left: { [vars$B.textAlign]: 'left' },
|
15843
|
+
center: { [vars$B.textAlign]: 'center' },
|
15759
15844
|
},
|
15760
15845
|
|
15761
15846
|
_fullWidth: {
|
15762
|
-
[vars$
|
15847
|
+
[vars$B.hostWidth]: '100%',
|
15763
15848
|
},
|
15764
15849
|
|
15765
15850
|
_italic: {
|
15766
|
-
[vars$
|
15851
|
+
[vars$B.fontStyle]: 'italic',
|
15767
15852
|
},
|
15768
15853
|
|
15769
15854
|
_uppercase: {
|
15770
|
-
[vars$
|
15855
|
+
[vars$B.textTransform]: 'uppercase',
|
15771
15856
|
},
|
15772
15857
|
|
15773
15858
|
_lowercase: {
|
15774
|
-
[vars$
|
15859
|
+
[vars$B.textTransform]: 'lowercase',
|
15775
15860
|
},
|
15776
15861
|
};
|
15777
15862
|
|
15778
15863
|
var text$1 = /*#__PURE__*/Object.freeze({
|
15779
15864
|
__proto__: null,
|
15780
15865
|
default: text,
|
15781
|
-
vars: vars$
|
15866
|
+
vars: vars$B
|
15782
15867
|
});
|
15783
15868
|
|
15784
15869
|
const globalRefs$q = getThemeRefs(globals);
|
15785
|
-
const vars$
|
15870
|
+
const vars$A = LinkClass.cssVarList;
|
15786
15871
|
|
15787
15872
|
const link = {
|
15788
|
-
[vars$
|
15789
|
-
[vars$
|
15873
|
+
[vars$A.hostDirection]: globalRefs$q.direction,
|
15874
|
+
[vars$A.cursor]: 'pointer',
|
15790
15875
|
|
15791
|
-
[vars$
|
15876
|
+
[vars$A.textColor]: globalRefs$q.colors.primary.main,
|
15792
15877
|
|
15793
15878
|
textAlign: {
|
15794
|
-
right: { [vars$
|
15795
|
-
left: { [vars$
|
15796
|
-
center: { [vars$
|
15879
|
+
right: { [vars$A.textAlign]: 'right' },
|
15880
|
+
left: { [vars$A.textAlign]: 'left' },
|
15881
|
+
center: { [vars$A.textAlign]: 'center' },
|
15797
15882
|
},
|
15798
15883
|
|
15799
15884
|
_fullWidth: {
|
15800
|
-
[vars$
|
15885
|
+
[vars$A.hostWidth]: '100%',
|
15801
15886
|
},
|
15802
15887
|
|
15803
15888
|
_hover: {
|
15804
|
-
[vars$
|
15889
|
+
[vars$A.textDecoration]: 'underline',
|
15805
15890
|
},
|
15806
15891
|
|
15807
15892
|
mode: {
|
15808
15893
|
secondary: {
|
15809
|
-
[vars$
|
15894
|
+
[vars$A.textColor]: globalRefs$q.colors.secondary.main,
|
15810
15895
|
},
|
15811
15896
|
error: {
|
15812
|
-
[vars$
|
15897
|
+
[vars$A.textColor]: globalRefs$q.colors.error.main,
|
15813
15898
|
},
|
15814
15899
|
success: {
|
15815
|
-
[vars$
|
15900
|
+
[vars$A.textColor]: globalRefs$q.colors.success.main,
|
15816
15901
|
},
|
15817
15902
|
},
|
15818
15903
|
};
|
@@ -15820,37 +15905,37 @@ const link = {
|
|
15820
15905
|
var link$1 = /*#__PURE__*/Object.freeze({
|
15821
15906
|
__proto__: null,
|
15822
15907
|
default: link,
|
15823
|
-
vars: vars$
|
15908
|
+
vars: vars$A
|
15824
15909
|
});
|
15825
15910
|
|
15826
15911
|
const globalRefs$p = getThemeRefs(globals);
|
15827
|
-
const vars$
|
15912
|
+
const vars$z = EnrichedTextClass.cssVarList;
|
15828
15913
|
|
15829
15914
|
const enrichedText = {
|
15830
|
-
[vars$
|
15831
|
-
[vars$
|
15915
|
+
[vars$z.hostDirection]: globalRefs$p.direction,
|
15916
|
+
[vars$z.hostWidth]: useVar(vars$B.hostWidth),
|
15832
15917
|
|
15833
|
-
[vars$
|
15834
|
-
[vars$
|
15835
|
-
[vars$
|
15918
|
+
[vars$z.textLineHeight]: useVar(vars$B.textLineHeight),
|
15919
|
+
[vars$z.textColor]: useVar(vars$B.textColor),
|
15920
|
+
[vars$z.textAlign]: useVar(vars$B.textAlign),
|
15836
15921
|
|
15837
|
-
[vars$
|
15838
|
-
[vars$
|
15839
|
-
[vars$
|
15922
|
+
[vars$z.fontSize]: useVar(vars$B.fontSize),
|
15923
|
+
[vars$z.fontWeight]: useVar(vars$B.fontWeight),
|
15924
|
+
[vars$z.fontFamily]: useVar(vars$B.fontFamily),
|
15840
15925
|
|
15841
|
-
[vars$
|
15842
|
-
[vars$
|
15843
|
-
[vars$
|
15926
|
+
[vars$z.linkColor]: useVar(vars$A.textColor),
|
15927
|
+
[vars$z.linkTextDecoration]: 'none',
|
15928
|
+
[vars$z.linkHoverTextDecoration]: 'underline',
|
15844
15929
|
|
15845
|
-
[vars$
|
15846
|
-
[vars$
|
15847
|
-
[vars$
|
15930
|
+
[vars$z.fontWeightBold]: '900',
|
15931
|
+
[vars$z.minWidth]: '0.25em',
|
15932
|
+
[vars$z.minHeight]: '1.35em',
|
15848
15933
|
|
15849
|
-
[vars$
|
15934
|
+
[vars$z.hostDisplay]: 'inline-block',
|
15850
15935
|
|
15851
15936
|
_empty: {
|
15852
15937
|
_hideWhenEmpty: {
|
15853
|
-
[vars$
|
15938
|
+
[vars$z.hostDisplay]: 'none',
|
15854
15939
|
},
|
15855
15940
|
},
|
15856
15941
|
};
|
@@ -15858,7 +15943,7 @@ const enrichedText = {
|
|
15858
15943
|
var enrichedText$1 = /*#__PURE__*/Object.freeze({
|
15859
15944
|
__proto__: null,
|
15860
15945
|
default: enrichedText,
|
15861
|
-
vars: vars$
|
15946
|
+
vars: vars$z
|
15862
15947
|
});
|
15863
15948
|
|
15864
15949
|
const globalRefs$o = getThemeRefs(globals);
|
@@ -15869,7 +15954,7 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
|
|
15869
15954
|
thickness: '2px',
|
15870
15955
|
spacing: '10px',
|
15871
15956
|
},
|
15872
|
-
componentName$
|
15957
|
+
componentName$Q
|
15873
15958
|
);
|
15874
15959
|
|
15875
15960
|
const divider = {
|
@@ -15900,7 +15985,7 @@ const divider = {
|
|
15900
15985
|
},
|
15901
15986
|
};
|
15902
15987
|
|
15903
|
-
const vars$
|
15988
|
+
const vars$y = {
|
15904
15989
|
...compVars$4,
|
15905
15990
|
...helperVars$2,
|
15906
15991
|
};
|
@@ -15908,93 +15993,93 @@ const vars$x = {
|
|
15908
15993
|
var divider$1 = /*#__PURE__*/Object.freeze({
|
15909
15994
|
__proto__: null,
|
15910
15995
|
default: divider,
|
15911
|
-
vars: vars$
|
15996
|
+
vars: vars$y
|
15912
15997
|
});
|
15913
15998
|
|
15914
|
-
const vars$
|
15999
|
+
const vars$x = PasscodeClass.cssVarList;
|
15915
16000
|
|
15916
16001
|
const passcode = {
|
15917
|
-
[vars$
|
15918
|
-
[vars$
|
15919
|
-
[vars$
|
15920
|
-
[vars$
|
15921
|
-
[vars$
|
15922
|
-
[vars$
|
15923
|
-
[vars$
|
15924
|
-
[vars$
|
15925
|
-
[vars$
|
15926
|
-
[vars$
|
15927
|
-
[vars$
|
15928
|
-
[vars$
|
15929
|
-
[vars$
|
15930
|
-
[vars$
|
15931
|
-
[vars$
|
16002
|
+
[vars$x.hostDirection]: refs.direction,
|
16003
|
+
[vars$x.fontFamily]: refs.fontFamily,
|
16004
|
+
[vars$x.fontSize]: refs.fontSize,
|
16005
|
+
[vars$x.labelTextColor]: refs.labelTextColor,
|
16006
|
+
[vars$x.labelRequiredIndicator]: refs.requiredIndicator,
|
16007
|
+
[vars$x.errorMessageTextColor]: refs.errorMessageTextColor,
|
16008
|
+
[vars$x.digitValueTextColor]: refs.valueTextColor,
|
16009
|
+
[vars$x.digitPadding]: '0',
|
16010
|
+
[vars$x.digitTextAlign]: 'center',
|
16011
|
+
[vars$x.digitSpacing]: '4px',
|
16012
|
+
[vars$x.hostWidth]: refs.width,
|
16013
|
+
[vars$x.digitOutlineColor]: 'transparent',
|
16014
|
+
[vars$x.digitOutlineWidth]: refs.outlineWidth,
|
16015
|
+
[vars$x.focusedDigitFieldOutlineColor]: refs.outlineColor,
|
16016
|
+
[vars$x.digitSize]: refs.inputHeight,
|
15932
16017
|
|
15933
16018
|
size: {
|
15934
|
-
xs: { [vars$
|
15935
|
-
sm: { [vars$
|
15936
|
-
md: { [vars$
|
15937
|
-
lg: { [vars$
|
16019
|
+
xs: { [vars$x.spinnerSize]: '15px' },
|
16020
|
+
sm: { [vars$x.spinnerSize]: '20px' },
|
16021
|
+
md: { [vars$x.spinnerSize]: '20px' },
|
16022
|
+
lg: { [vars$x.spinnerSize]: '20px' },
|
15938
16023
|
},
|
15939
16024
|
|
15940
16025
|
_hideCursor: {
|
15941
|
-
[vars$
|
16026
|
+
[vars$x.digitCaretTextColor]: 'transparent',
|
15942
16027
|
},
|
15943
16028
|
|
15944
16029
|
_loading: {
|
15945
|
-
[vars$
|
16030
|
+
[vars$x.overlayOpacity]: refs.overlayOpacity,
|
15946
16031
|
},
|
15947
16032
|
};
|
15948
16033
|
|
15949
16034
|
var passcode$1 = /*#__PURE__*/Object.freeze({
|
15950
16035
|
__proto__: null,
|
15951
16036
|
default: passcode,
|
15952
|
-
vars: vars$
|
16037
|
+
vars: vars$x
|
15953
16038
|
});
|
15954
16039
|
|
15955
16040
|
const globalRefs$n = getThemeRefs(globals);
|
15956
|
-
const vars$
|
16041
|
+
const vars$w = LoaderLinearClass.cssVarList;
|
15957
16042
|
|
15958
16043
|
const loaderLinear = {
|
15959
|
-
[vars$
|
15960
|
-
[vars$
|
16044
|
+
[vars$w.hostDisplay]: 'inline-block',
|
16045
|
+
[vars$w.hostWidth]: '100%',
|
15961
16046
|
|
15962
|
-
[vars$
|
15963
|
-
[vars$
|
16047
|
+
[vars$w.barColor]: globalRefs$n.colors.surface.contrast,
|
16048
|
+
[vars$w.barWidth]: '20%',
|
15964
16049
|
|
15965
|
-
[vars$
|
15966
|
-
[vars$
|
16050
|
+
[vars$w.barBackgroundColor]: globalRefs$n.colors.surface.light,
|
16051
|
+
[vars$w.barBorderRadius]: '4px',
|
15967
16052
|
|
15968
|
-
[vars$
|
15969
|
-
[vars$
|
15970
|
-
[vars$
|
15971
|
-
[vars$
|
16053
|
+
[vars$w.animationDuration]: '2s',
|
16054
|
+
[vars$w.animationTimingFunction]: 'linear',
|
16055
|
+
[vars$w.animationIterationCount]: 'infinite',
|
16056
|
+
[vars$w.verticalPadding]: '0.25em',
|
15972
16057
|
|
15973
16058
|
size: {
|
15974
|
-
xs: { [vars$
|
15975
|
-
sm: { [vars$
|
15976
|
-
md: { [vars$
|
15977
|
-
lg: { [vars$
|
16059
|
+
xs: { [vars$w.barHeight]: '2px' },
|
16060
|
+
sm: { [vars$w.barHeight]: '4px' },
|
16061
|
+
md: { [vars$w.barHeight]: '6px' },
|
16062
|
+
lg: { [vars$w.barHeight]: '8px' },
|
15978
16063
|
},
|
15979
16064
|
|
15980
16065
|
mode: {
|
15981
16066
|
primary: {
|
15982
|
-
[vars$
|
16067
|
+
[vars$w.barColor]: globalRefs$n.colors.primary.main,
|
15983
16068
|
},
|
15984
16069
|
secondary: {
|
15985
|
-
[vars$
|
16070
|
+
[vars$w.barColor]: globalRefs$n.colors.secondary.main,
|
15986
16071
|
},
|
15987
16072
|
},
|
15988
16073
|
|
15989
16074
|
_hidden: {
|
15990
|
-
[vars$
|
16075
|
+
[vars$w.hostDisplay]: 'none',
|
15991
16076
|
},
|
15992
16077
|
};
|
15993
16078
|
|
15994
16079
|
var loaderLinear$1 = /*#__PURE__*/Object.freeze({
|
15995
16080
|
__proto__: null,
|
15996
16081
|
default: loaderLinear,
|
15997
|
-
vars: vars$
|
16082
|
+
vars: vars$w
|
15998
16083
|
});
|
15999
16084
|
|
16000
16085
|
const globalRefs$m = getThemeRefs(globals);
|
@@ -16012,7 +16097,7 @@ const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
|
|
16012
16097
|
},
|
16013
16098
|
},
|
16014
16099
|
},
|
16015
|
-
componentName$
|
16100
|
+
componentName$X
|
16016
16101
|
);
|
16017
16102
|
|
16018
16103
|
const loaderRadial = {
|
@@ -16041,7 +16126,7 @@ const loaderRadial = {
|
|
16041
16126
|
[compVars$3.hostDisplay]: 'none',
|
16042
16127
|
},
|
16043
16128
|
};
|
16044
|
-
const vars$
|
16129
|
+
const vars$v = {
|
16045
16130
|
...compVars$3,
|
16046
16131
|
...helperVars$1,
|
16047
16132
|
};
|
@@ -16049,93 +16134,134 @@ const vars$u = {
|
|
16049
16134
|
var loaderRadial$1 = /*#__PURE__*/Object.freeze({
|
16050
16135
|
__proto__: null,
|
16051
16136
|
default: loaderRadial,
|
16052
|
-
vars: vars$
|
16137
|
+
vars: vars$v
|
16053
16138
|
});
|
16054
16139
|
|
16055
16140
|
const globalRefs$l = getThemeRefs(globals);
|
16056
|
-
const vars$
|
16141
|
+
const vars$u = ComboBoxClass.cssVarList;
|
16057
16142
|
|
16058
16143
|
const comboBox = {
|
16059
|
-
[vars$
|
16060
|
-
[vars$
|
16061
|
-
[vars$
|
16062
|
-
[vars$
|
16063
|
-
[vars$
|
16064
|
-
[vars$
|
16065
|
-
[vars$
|
16066
|
-
[vars$
|
16067
|
-
[vars$
|
16068
|
-
[vars$
|
16069
|
-
[vars$
|
16070
|
-
[vars$
|
16071
|
-
[vars$
|
16072
|
-
[vars$
|
16073
|
-
[vars$
|
16074
|
-
[vars$
|
16075
|
-
[vars$
|
16076
|
-
[vars$
|
16077
|
-
[vars$
|
16078
|
-
[vars$
|
16079
|
-
[vars$
|
16080
|
-
[vars$
|
16081
|
-
[vars$
|
16082
|
-
[vars$
|
16083
|
-
[vars$
|
16084
|
-
[vars$
|
16085
|
-
[vars$
|
16086
|
-
[vars$
|
16087
|
-
[vars$
|
16088
|
-
[vars$
|
16089
|
-
[vars$
|
16090
|
-
[vars$
|
16091
|
-
[vars$
|
16092
|
-
[vars$
|
16093
|
-
[vars$
|
16094
|
-
[vars$
|
16095
|
-
[vars$
|
16096
|
-
[vars$
|
16144
|
+
[vars$u.hostWidth]: refs.width,
|
16145
|
+
[vars$u.hostDirection]: refs.direction,
|
16146
|
+
[vars$u.fontSize]: refs.fontSize,
|
16147
|
+
[vars$u.fontFamily]: refs.fontFamily,
|
16148
|
+
[vars$u.labelFontSize]: refs.labelFontSize,
|
16149
|
+
[vars$u.labelFontWeight]: refs.labelFontWeight,
|
16150
|
+
[vars$u.labelTextColor]: refs.labelTextColor,
|
16151
|
+
[vars$u.errorMessageTextColor]: refs.errorMessageTextColor,
|
16152
|
+
[vars$u.inputBorderColor]: refs.borderColor,
|
16153
|
+
[vars$u.inputBorderWidth]: refs.borderWidth,
|
16154
|
+
[vars$u.inputBorderStyle]: refs.borderStyle,
|
16155
|
+
[vars$u.inputBorderRadius]: refs.borderRadius,
|
16156
|
+
[vars$u.inputOutlineColor]: refs.outlineColor,
|
16157
|
+
[vars$u.inputOutlineOffset]: refs.outlineOffset,
|
16158
|
+
[vars$u.inputOutlineWidth]: refs.outlineWidth,
|
16159
|
+
[vars$u.inputOutlineStyle]: refs.outlineStyle,
|
16160
|
+
[vars$u.labelRequiredIndicator]: refs.requiredIndicator,
|
16161
|
+
[vars$u.inputValueTextColor]: refs.valueTextColor,
|
16162
|
+
[vars$u.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16163
|
+
[vars$u.inputBackgroundColor]: refs.backgroundColor,
|
16164
|
+
[vars$u.inputHorizontalPadding]: refs.horizontalPadding,
|
16165
|
+
[vars$u.inputHeight]: refs.inputHeight,
|
16166
|
+
[vars$u.inputDropdownButtonColor]: globalRefs$l.colors.surface.dark,
|
16167
|
+
[vars$u.inputDropdownButtonCursor]: 'pointer',
|
16168
|
+
[vars$u.inputDropdownButtonSize]: refs.toggleButtonSize,
|
16169
|
+
[vars$u.inputDropdownButtonOffset]: globalRefs$l.spacing.xs,
|
16170
|
+
[vars$u.overlayItemPaddingInlineStart]: globalRefs$l.spacing.xs,
|
16171
|
+
[vars$u.overlayItemPaddingInlineEnd]: globalRefs$l.spacing.lg,
|
16172
|
+
[vars$u.labelPosition]: refs.labelPosition,
|
16173
|
+
[vars$u.labelTopPosition]: refs.labelTopPosition,
|
16174
|
+
[vars$u.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16175
|
+
[vars$u.inputTransformY]: refs.inputTransformY,
|
16176
|
+
[vars$u.inputTransition]: refs.inputTransition,
|
16177
|
+
[vars$u.marginInlineStart]: refs.marginInlineStart,
|
16178
|
+
[vars$u.placeholderOpacity]: refs.placeholderOpacity,
|
16179
|
+
[vars$u.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
16180
|
+
[vars$u.valueInputHeight]: refs.valueInputHeight,
|
16181
|
+
[vars$u.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16097
16182
|
|
16098
16183
|
_readonly: {
|
16099
|
-
[vars$
|
16184
|
+
[vars$u.inputDropdownButtonCursor]: 'default',
|
16100
16185
|
},
|
16101
16186
|
|
16102
16187
|
// Overlay theme exposed via the component:
|
16103
|
-
[vars$
|
16104
|
-
[vars$
|
16105
|
-
[vars$
|
16106
|
-
[vars$
|
16107
|
-
[vars$
|
16108
|
-
[vars$
|
16188
|
+
[vars$u.overlayFontSize]: refs.fontSize,
|
16189
|
+
[vars$u.overlayFontFamily]: refs.fontFamily,
|
16190
|
+
[vars$u.overlayCursor]: 'pointer',
|
16191
|
+
[vars$u.overlayItemBoxShadow]: 'none',
|
16192
|
+
[vars$u.overlayBackground]: refs.backgroundColor,
|
16193
|
+
[vars$u.overlayTextColor]: refs.valueTextColor,
|
16109
16194
|
|
16110
16195
|
// Overlay direct theme:
|
16111
|
-
[vars$
|
16112
|
-
[vars$
|
16196
|
+
[vars$u.overlay.minHeight]: '400px',
|
16197
|
+
[vars$u.overlay.margin]: '0',
|
16113
16198
|
};
|
16114
16199
|
|
16115
16200
|
var comboBox$1 = /*#__PURE__*/Object.freeze({
|
16116
16201
|
__proto__: null,
|
16117
16202
|
comboBox: comboBox,
|
16118
16203
|
default: comboBox,
|
16119
|
-
vars: vars$
|
16204
|
+
vars: vars$u
|
16120
16205
|
});
|
16121
16206
|
|
16122
|
-
const vars$
|
16207
|
+
const vars$t = ImageClass.cssVarList;
|
16123
16208
|
|
16124
16209
|
const image = {};
|
16125
16210
|
|
16126
16211
|
var image$1 = /*#__PURE__*/Object.freeze({
|
16127
16212
|
__proto__: null,
|
16128
16213
|
default: image,
|
16129
|
-
vars: vars$
|
16214
|
+
vars: vars$t
|
16130
16215
|
});
|
16131
16216
|
|
16132
|
-
const vars$
|
16217
|
+
const vars$s = PhoneFieldClass.cssVarList;
|
16133
16218
|
|
16134
16219
|
const phoneField = {
|
16135
|
-
[vars$
|
16220
|
+
[vars$s.hostWidth]: refs.width,
|
16221
|
+
[vars$s.hostDirection]: refs.direction,
|
16222
|
+
[vars$s.fontSize]: refs.fontSize,
|
16223
|
+
[vars$s.fontFamily]: refs.fontFamily,
|
16224
|
+
[vars$s.labelTextColor]: refs.labelTextColor,
|
16225
|
+
[vars$s.labelRequiredIndicator]: refs.requiredIndicator,
|
16226
|
+
[vars$s.errorMessageTextColor]: refs.errorMessageTextColor,
|
16227
|
+
[vars$s.inputValueTextColor]: refs.valueTextColor,
|
16228
|
+
[vars$s.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16229
|
+
[vars$s.inputBorderStyle]: refs.borderStyle,
|
16230
|
+
[vars$s.inputBorderWidth]: refs.borderWidth,
|
16231
|
+
[vars$s.inputBorderColor]: refs.borderColor,
|
16232
|
+
[vars$s.inputBorderRadius]: refs.borderRadius,
|
16233
|
+
[vars$s.inputOutlineStyle]: refs.outlineStyle,
|
16234
|
+
[vars$s.inputOutlineWidth]: refs.outlineWidth,
|
16235
|
+
[vars$s.inputOutlineColor]: refs.outlineColor,
|
16236
|
+
[vars$s.inputOutlineOffset]: refs.outlineOffset,
|
16237
|
+
[vars$s.phoneInputWidth]: refs.minWidth,
|
16238
|
+
[vars$s.countryCodeInputWidth]: '5em',
|
16239
|
+
[vars$s.countryCodeDropdownWidth]: '20em',
|
16240
|
+
[vars$s.marginInlineStart]: '-0.25em',
|
16241
|
+
[vars$s.valueInputHeight]: refs.valueInputHeight,
|
16242
|
+
[vars$s.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16243
|
+
|
16244
|
+
// '@overlay': {
|
16245
|
+
// overlayItemBackgroundColor: 'red'
|
16246
|
+
// }
|
16247
|
+
};
|
16248
|
+
|
16249
|
+
var phoneField$1 = /*#__PURE__*/Object.freeze({
|
16250
|
+
__proto__: null,
|
16251
|
+
default: phoneField,
|
16252
|
+
vars: vars$s
|
16253
|
+
});
|
16254
|
+
|
16255
|
+
const vars$r = PhoneFieldInputBoxClass.cssVarList;
|
16256
|
+
|
16257
|
+
const phoneInputBoxField = {
|
16258
|
+
[vars$r.hostWidth]: '16em',
|
16259
|
+
[vars$r.hostMinWidth]: refs.minWidth,
|
16136
16260
|
[vars$r.hostDirection]: refs.direction,
|
16137
16261
|
[vars$r.fontSize]: refs.fontSize,
|
16138
16262
|
[vars$r.fontFamily]: refs.fontFamily,
|
16263
|
+
[vars$r.labelFontSize]: refs.labelFontSize,
|
16264
|
+
[vars$r.labelFontWeight]: refs.labelFontWeight,
|
16139
16265
|
[vars$r.labelTextColor]: refs.labelTextColor,
|
16140
16266
|
[vars$r.labelRequiredIndicator]: refs.requiredIndicator,
|
16141
16267
|
[vars$r.errorMessageTextColor]: refs.errorMessageTextColor,
|
@@ -16149,28 +16275,32 @@ const phoneField = {
|
|
16149
16275
|
[vars$r.inputOutlineWidth]: refs.outlineWidth,
|
16150
16276
|
[vars$r.inputOutlineColor]: refs.outlineColor,
|
16151
16277
|
[vars$r.inputOutlineOffset]: refs.outlineOffset,
|
16152
|
-
[vars$r.
|
16153
|
-
[vars$r.
|
16154
|
-
[vars$r.
|
16155
|
-
[vars$r.
|
16278
|
+
[vars$r.labelPosition]: refs.labelPosition,
|
16279
|
+
[vars$r.labelTopPosition]: refs.labelTopPosition,
|
16280
|
+
[vars$r.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16281
|
+
[vars$r.inputTransformY]: refs.inputTransformY,
|
16282
|
+
[vars$r.inputTransition]: refs.inputTransition,
|
16283
|
+
[vars$r.marginInlineStart]: refs.marginInlineStart,
|
16156
16284
|
[vars$r.valueInputHeight]: refs.valueInputHeight,
|
16157
16285
|
[vars$r.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16286
|
+
[vars$r.inputHorizontalPadding]: '0',
|
16158
16287
|
|
16159
|
-
|
16160
|
-
|
16161
|
-
|
16288
|
+
_fullWidth: {
|
16289
|
+
[vars$r.hostWidth]: refs.width,
|
16290
|
+
},
|
16162
16291
|
};
|
16163
16292
|
|
16164
|
-
var
|
16293
|
+
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16165
16294
|
__proto__: null,
|
16166
|
-
default:
|
16295
|
+
default: phoneInputBoxField,
|
16167
16296
|
vars: vars$r
|
16168
16297
|
});
|
16169
16298
|
|
16170
|
-
const
|
16299
|
+
const globalRefs$k = getThemeRefs(globals);
|
16300
|
+
const vars$q = NewPasswordClass.cssVarList;
|
16171
16301
|
|
16172
|
-
const
|
16173
|
-
[vars$q.hostWidth]:
|
16302
|
+
const newPassword = {
|
16303
|
+
[vars$q.hostWidth]: refs.width,
|
16174
16304
|
[vars$q.hostMinWidth]: refs.minWidth,
|
16175
16305
|
[vars$q.hostDirection]: refs.direction,
|
16176
16306
|
[vars$q.fontSize]: refs.fontSize,
|
@@ -16178,171 +16308,126 @@ const phoneInputBoxField = {
|
|
16178
16308
|
[vars$q.labelFontSize]: refs.labelFontSize,
|
16179
16309
|
[vars$q.labelFontWeight]: refs.labelFontWeight,
|
16180
16310
|
[vars$q.labelTextColor]: refs.labelTextColor,
|
16181
|
-
[vars$q.
|
16311
|
+
[vars$q.spaceBetweenInputs]: '1em',
|
16182
16312
|
[vars$q.errorMessageTextColor]: refs.errorMessageTextColor,
|
16183
|
-
[vars$q.
|
16184
|
-
[vars$q.
|
16185
|
-
[vars$q.inputBorderStyle]: refs.borderStyle,
|
16186
|
-
[vars$q.inputBorderWidth]: refs.borderWidth,
|
16187
|
-
[vars$q.inputBorderColor]: refs.borderColor,
|
16188
|
-
[vars$q.inputBorderRadius]: refs.borderRadius,
|
16189
|
-
[vars$q.inputOutlineStyle]: refs.outlineStyle,
|
16190
|
-
[vars$q.inputOutlineWidth]: refs.outlineWidth,
|
16191
|
-
[vars$q.inputOutlineColor]: refs.outlineColor,
|
16192
|
-
[vars$q.inputOutlineOffset]: refs.outlineOffset,
|
16193
|
-
[vars$q.labelPosition]: refs.labelPosition,
|
16194
|
-
[vars$q.labelTopPosition]: refs.labelTopPosition,
|
16195
|
-
[vars$q.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16196
|
-
[vars$q.inputTransformY]: refs.inputTransformY,
|
16197
|
-
[vars$q.inputTransition]: refs.inputTransition,
|
16198
|
-
[vars$q.marginInlineStart]: refs.marginInlineStart,
|
16313
|
+
[vars$q.policyPreviewBackgroundColor]: 'none',
|
16314
|
+
[vars$q.policyPreviewPadding]: globalRefs$k.spacing.lg,
|
16199
16315
|
[vars$q.valueInputHeight]: refs.valueInputHeight,
|
16200
|
-
[vars$q.valueInputMarginBottom]: refs.valueInputMarginBottom,
|
16201
|
-
[vars$q.inputHorizontalPadding]: '0',
|
16202
|
-
|
16203
|
-
_fullWidth: {
|
16204
|
-
[vars$q.hostWidth]: refs.width,
|
16205
|
-
},
|
16206
|
-
};
|
16207
|
-
|
16208
|
-
var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
|
16209
|
-
__proto__: null,
|
16210
|
-
default: phoneInputBoxField,
|
16211
|
-
vars: vars$q
|
16212
|
-
});
|
16213
|
-
|
16214
|
-
const globalRefs$k = getThemeRefs(globals);
|
16215
|
-
const vars$p = NewPasswordClass.cssVarList;
|
16216
|
-
|
16217
|
-
const newPassword = {
|
16218
|
-
[vars$p.hostWidth]: refs.width,
|
16219
|
-
[vars$p.hostMinWidth]: refs.minWidth,
|
16220
|
-
[vars$p.hostDirection]: refs.direction,
|
16221
|
-
[vars$p.fontSize]: refs.fontSize,
|
16222
|
-
[vars$p.fontFamily]: refs.fontFamily,
|
16223
|
-
[vars$p.labelFontSize]: refs.labelFontSize,
|
16224
|
-
[vars$p.labelFontWeight]: refs.labelFontWeight,
|
16225
|
-
[vars$p.labelTextColor]: refs.labelTextColor,
|
16226
|
-
[vars$p.spaceBetweenInputs]: '1em',
|
16227
|
-
[vars$p.errorMessageTextColor]: refs.errorMessageTextColor,
|
16228
|
-
[vars$p.policyPreviewBackgroundColor]: 'none',
|
16229
|
-
[vars$p.policyPreviewPadding]: globalRefs$k.spacing.lg,
|
16230
|
-
[vars$p.valueInputHeight]: refs.valueInputHeight,
|
16231
16316
|
|
16232
16317
|
_required: {
|
16233
16318
|
// NewPassword doesn't pass `required` attribute to its Password components.
|
16234
16319
|
// That's why we fake the required indicator on each input.
|
16235
16320
|
// We do that by injecting `::after` element, and populating it with requiredIndicator content.
|
16236
|
-
[vars$
|
16321
|
+
[vars$q.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
|
16237
16322
|
},
|
16238
16323
|
};
|
16239
16324
|
|
16240
16325
|
var newPassword$1 = /*#__PURE__*/Object.freeze({
|
16241
16326
|
__proto__: null,
|
16242
16327
|
default: newPassword,
|
16243
|
-
vars: vars$
|
16328
|
+
vars: vars$q
|
16244
16329
|
});
|
16245
16330
|
|
16246
|
-
const vars$
|
16331
|
+
const vars$p = UploadFileClass.cssVarList;
|
16247
16332
|
|
16248
16333
|
const uploadFile = {
|
16249
|
-
[vars$
|
16250
|
-
[vars$
|
16251
|
-
[vars$
|
16334
|
+
[vars$p.hostDirection]: refs.direction,
|
16335
|
+
[vars$p.labelTextColor]: refs.labelTextColor,
|
16336
|
+
[vars$p.fontFamily]: refs.fontFamily,
|
16252
16337
|
|
16253
|
-
[vars$
|
16338
|
+
[vars$p.iconSize]: '2em',
|
16254
16339
|
|
16255
|
-
[vars$
|
16256
|
-
[vars$
|
16340
|
+
[vars$p.hostPadding]: '0.75em',
|
16341
|
+
[vars$p.gap]: '0.5em',
|
16257
16342
|
|
16258
|
-
[vars$
|
16259
|
-
[vars$
|
16260
|
-
[vars$
|
16343
|
+
[vars$p.fontSize]: '16px',
|
16344
|
+
[vars$p.titleFontWeight]: '500',
|
16345
|
+
[vars$p.lineHeight]: '1em',
|
16261
16346
|
|
16262
|
-
[vars$
|
16263
|
-
[vars$
|
16264
|
-
[vars$
|
16265
|
-
[vars$
|
16347
|
+
[vars$p.borderWidth]: refs.borderWidth,
|
16348
|
+
[vars$p.borderColor]: refs.borderColor,
|
16349
|
+
[vars$p.borderRadius]: refs.borderRadius,
|
16350
|
+
[vars$p.borderStyle]: 'dashed',
|
16266
16351
|
|
16267
16352
|
_required: {
|
16268
|
-
[vars$
|
16353
|
+
[vars$p.requiredIndicator]: refs.requiredIndicator,
|
16269
16354
|
},
|
16270
16355
|
|
16271
16356
|
size: {
|
16272
16357
|
xs: {
|
16273
|
-
[vars$
|
16274
|
-
[vars$
|
16275
|
-
[vars$
|
16276
|
-
[vars$
|
16277
|
-
[vars$
|
16358
|
+
[vars$p.hostHeight]: '196px',
|
16359
|
+
[vars$p.hostWidth]: '200px',
|
16360
|
+
[vars$p.titleFontSize]: '0.875em',
|
16361
|
+
[vars$p.descriptionFontSize]: '0.875em',
|
16362
|
+
[vars$p.lineHeight]: '1.25em',
|
16278
16363
|
},
|
16279
16364
|
sm: {
|
16280
|
-
[vars$
|
16281
|
-
[vars$
|
16282
|
-
[vars$
|
16283
|
-
[vars$
|
16284
|
-
[vars$
|
16365
|
+
[vars$p.hostHeight]: '216px',
|
16366
|
+
[vars$p.hostWidth]: '230px',
|
16367
|
+
[vars$p.titleFontSize]: '1em',
|
16368
|
+
[vars$p.descriptionFontSize]: '0.875em',
|
16369
|
+
[vars$p.lineHeight]: '1.25em',
|
16285
16370
|
},
|
16286
16371
|
md: {
|
16287
|
-
[vars$
|
16288
|
-
[vars$
|
16289
|
-
[vars$
|
16290
|
-
[vars$
|
16291
|
-
[vars$
|
16372
|
+
[vars$p.hostHeight]: '256px',
|
16373
|
+
[vars$p.hostWidth]: '312px',
|
16374
|
+
[vars$p.titleFontSize]: '1.125em',
|
16375
|
+
[vars$p.descriptionFontSize]: '1em',
|
16376
|
+
[vars$p.lineHeight]: '1.5em',
|
16292
16377
|
},
|
16293
16378
|
lg: {
|
16294
|
-
[vars$
|
16295
|
-
[vars$
|
16296
|
-
[vars$
|
16297
|
-
[vars$
|
16298
|
-
[vars$
|
16379
|
+
[vars$p.hostHeight]: '280px',
|
16380
|
+
[vars$p.hostWidth]: '336px',
|
16381
|
+
[vars$p.titleFontSize]: '1.125em',
|
16382
|
+
[vars$p.descriptionFontSize]: '1.125em',
|
16383
|
+
[vars$p.lineHeight]: '1.75em',
|
16299
16384
|
},
|
16300
16385
|
},
|
16301
16386
|
|
16302
16387
|
_fullWidth: {
|
16303
|
-
[vars$
|
16388
|
+
[vars$p.hostWidth]: refs.width,
|
16304
16389
|
},
|
16305
16390
|
};
|
16306
16391
|
|
16307
16392
|
var uploadFile$1 = /*#__PURE__*/Object.freeze({
|
16308
16393
|
__proto__: null,
|
16309
16394
|
default: uploadFile,
|
16310
|
-
vars: vars$
|
16395
|
+
vars: vars$p
|
16311
16396
|
});
|
16312
16397
|
|
16313
16398
|
const globalRefs$j = getThemeRefs(globals);
|
16314
16399
|
|
16315
|
-
const vars$
|
16400
|
+
const vars$o = ButtonSelectionGroupItemClass.cssVarList;
|
16316
16401
|
|
16317
16402
|
const buttonSelectionGroupItem = {
|
16318
|
-
[vars$
|
16319
|
-
[vars$
|
16320
|
-
[vars$
|
16321
|
-
[vars$
|
16322
|
-
[vars$
|
16323
|
-
[vars$
|
16324
|
-
[vars$
|
16325
|
-
[vars$
|
16403
|
+
[vars$o.hostDirection]: 'inherit',
|
16404
|
+
[vars$o.backgroundColor]: globalRefs$j.colors.surface.main,
|
16405
|
+
[vars$o.labelTextColor]: globalRefs$j.colors.surface.contrast,
|
16406
|
+
[vars$o.borderColor]: globalRefs$j.colors.surface.light,
|
16407
|
+
[vars$o.borderStyle]: 'solid',
|
16408
|
+
[vars$o.borderRadius]: globalRefs$j.radius.sm,
|
16409
|
+
[vars$o.outlineColor]: 'transparent',
|
16410
|
+
[vars$o.borderWidth]: globalRefs$j.border.xs,
|
16326
16411
|
|
16327
16412
|
_hover: {
|
16328
|
-
[vars$
|
16413
|
+
[vars$o.backgroundColor]: globalRefs$j.colors.surface.highlight,
|
16329
16414
|
},
|
16330
16415
|
|
16331
16416
|
_focused: {
|
16332
|
-
[vars$
|
16417
|
+
[vars$o.outlineColor]: globalRefs$j.colors.surface.light,
|
16333
16418
|
},
|
16334
16419
|
|
16335
16420
|
_selected: {
|
16336
|
-
[vars$
|
16337
|
-
[vars$
|
16338
|
-
[vars$
|
16421
|
+
[vars$o.borderColor]: globalRefs$j.colors.surface.contrast,
|
16422
|
+
[vars$o.backgroundColor]: globalRefs$j.colors.surface.contrast,
|
16423
|
+
[vars$o.labelTextColor]: globalRefs$j.colors.surface.main,
|
16339
16424
|
},
|
16340
16425
|
};
|
16341
16426
|
|
16342
16427
|
var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
|
16343
16428
|
__proto__: null,
|
16344
16429
|
default: buttonSelectionGroupItem,
|
16345
|
-
vars: vars$
|
16430
|
+
vars: vars$o
|
16346
16431
|
});
|
16347
16432
|
|
16348
16433
|
const globalRefs$i = getThemeRefs(globals);
|
@@ -16357,28 +16442,28 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
|
|
16357
16442
|
[vars.hostWidth]: refs.width,
|
16358
16443
|
});
|
16359
16444
|
|
16360
|
-
const vars$
|
16445
|
+
const vars$n = ButtonSelectionGroupClass.cssVarList;
|
16361
16446
|
|
16362
16447
|
const buttonSelectionGroup = {
|
16363
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
16448
|
+
...createBaseButtonSelectionGroupMappings(vars$n),
|
16364
16449
|
};
|
16365
16450
|
|
16366
16451
|
var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
16367
16452
|
__proto__: null,
|
16368
16453
|
default: buttonSelectionGroup,
|
16369
|
-
vars: vars$
|
16454
|
+
vars: vars$n
|
16370
16455
|
});
|
16371
16456
|
|
16372
|
-
const vars$
|
16457
|
+
const vars$m = ButtonMultiSelectionGroupClass.cssVarList;
|
16373
16458
|
|
16374
16459
|
const buttonMultiSelectionGroup = {
|
16375
|
-
...createBaseButtonSelectionGroupMappings(vars$
|
16460
|
+
...createBaseButtonSelectionGroupMappings(vars$m),
|
16376
16461
|
};
|
16377
16462
|
|
16378
16463
|
var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
|
16379
16464
|
__proto__: null,
|
16380
16465
|
default: buttonMultiSelectionGroup,
|
16381
|
-
vars: vars$
|
16466
|
+
vars: vars$m
|
16382
16467
|
});
|
16383
16468
|
|
16384
16469
|
const globalRefs$h = getThemeRefs(globals);
|
@@ -16391,58 +16476,58 @@ const modal = {
|
|
16391
16476
|
[compVars$2.overlayWidth]: '540px',
|
16392
16477
|
};
|
16393
16478
|
|
16394
|
-
const vars$
|
16479
|
+
const vars$l = {
|
16395
16480
|
...compVars$2,
|
16396
16481
|
};
|
16397
16482
|
|
16398
16483
|
var modal$1 = /*#__PURE__*/Object.freeze({
|
16399
16484
|
__proto__: null,
|
16400
16485
|
default: modal,
|
16401
|
-
vars: vars$
|
16486
|
+
vars: vars$l
|
16402
16487
|
});
|
16403
16488
|
|
16404
16489
|
const globalRefs$g = getThemeRefs(globals);
|
16405
|
-
const vars$
|
16490
|
+
const vars$k = GridClass.cssVarList;
|
16406
16491
|
|
16407
16492
|
const grid = {
|
16408
|
-
[vars$
|
16409
|
-
[vars$
|
16410
|
-
[vars$
|
16411
|
-
[vars$
|
16412
|
-
[vars$
|
16413
|
-
|
16414
|
-
[vars$
|
16415
|
-
[vars$
|
16416
|
-
|
16417
|
-
[vars$
|
16418
|
-
[vars$
|
16419
|
-
[vars$
|
16420
|
-
|
16421
|
-
[vars$
|
16422
|
-
[vars$
|
16423
|
-
[vars$
|
16424
|
-
[vars$
|
16425
|
-
|
16426
|
-
[vars$
|
16427
|
-
[vars$
|
16428
|
-
|
16429
|
-
[vars$
|
16430
|
-
[vars$
|
16431
|
-
[vars$
|
16432
|
-
|
16433
|
-
[vars$
|
16434
|
-
[vars$
|
16435
|
-
[vars$
|
16436
|
-
[vars$
|
16437
|
-
[vars$
|
16438
|
-
[vars$
|
16439
|
-
[vars$
|
16440
|
-
[vars$
|
16441
|
-
[vars$
|
16442
|
-
[vars$
|
16493
|
+
[vars$k.hostWidth]: '100%',
|
16494
|
+
[vars$k.hostHeight]: '100%',
|
16495
|
+
[vars$k.hostMinHeight]: '400px',
|
16496
|
+
[vars$k.fontWeight]: '400',
|
16497
|
+
[vars$k.backgroundColor]: globalRefs$g.colors.surface.main,
|
16498
|
+
|
16499
|
+
[vars$k.fontSize]: refs.fontSize,
|
16500
|
+
[vars$k.fontFamily]: refs.fontFamily,
|
16501
|
+
|
16502
|
+
[vars$k.sortIndicatorsColor]: globalRefs$g.colors.surface.light,
|
16503
|
+
[vars$k.activeSortIndicator]: globalRefs$g.colors.surface.dark,
|
16504
|
+
[vars$k.resizeHandleColor]: globalRefs$g.colors.surface.light,
|
16505
|
+
|
16506
|
+
[vars$k.borderWidth]: refs.borderWidth,
|
16507
|
+
[vars$k.borderStyle]: refs.borderStyle,
|
16508
|
+
[vars$k.borderRadius]: refs.borderRadius,
|
16509
|
+
[vars$k.borderColor]: 'transparent',
|
16510
|
+
|
16511
|
+
[vars$k.headerRowTextColor]: globalRefs$g.colors.surface.dark,
|
16512
|
+
[vars$k.separatorColor]: globalRefs$g.colors.surface.light,
|
16513
|
+
|
16514
|
+
[vars$k.valueTextColor]: globalRefs$g.colors.surface.contrast,
|
16515
|
+
[vars$k.selectedBackgroundColor]: globalRefs$g.colors.surface.highlight,
|
16516
|
+
[vars$k.hostDirection]: globalRefs$g.direction,
|
16517
|
+
|
16518
|
+
[vars$k.toggleDetailsPanelButtonSize]: '1em',
|
16519
|
+
[vars$k.toggleDetailsPanelButtonOpenedColor]: globalRefs$g.colors.surface.contrast,
|
16520
|
+
[vars$k.toggleDetailsPanelButtonClosedColor]: globalRefs$g.colors.surface.light,
|
16521
|
+
[vars$k.toggleDetailsPanelButtonCursor]: 'pointer',
|
16522
|
+
[vars$k.detailsPanelBackgroundColor]: globalRefs$g.colors.surface.highlight,
|
16523
|
+
[vars$k.detailsPanelBorderTopColor]: globalRefs$g.colors.surface.light,
|
16524
|
+
[vars$k.detailsPanelLabelsColor]: globalRefs$g.colors.surface.dark,
|
16525
|
+
[vars$k.detailsPanelLabelsFontSize]: '0.8em',
|
16526
|
+
[vars$k.detailsPanelItemsGap]: '2em',
|
16527
|
+
[vars$k.detailsPanelPadding]: '12px 0',
|
16443
16528
|
|
16444
16529
|
_bordered: {
|
16445
|
-
[vars$
|
16530
|
+
[vars$k.borderColor]: refs.borderColor,
|
16446
16531
|
},
|
16447
16532
|
};
|
16448
16533
|
|
@@ -16450,53 +16535,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
|
|
16450
16535
|
__proto__: null,
|
16451
16536
|
default: grid,
|
16452
16537
|
grid: grid,
|
16453
|
-
vars: vars$
|
16538
|
+
vars: vars$k
|
16454
16539
|
});
|
16455
16540
|
|
16456
16541
|
const globalRefs$f = getThemeRefs(globals);
|
16457
|
-
const vars$
|
16542
|
+
const vars$j = NotificationCardClass.cssVarList;
|
16458
16543
|
|
16459
16544
|
const shadowColor$2 = '#00000020';
|
16460
16545
|
|
16461
16546
|
const notification = {
|
16462
|
-
[vars$
|
16463
|
-
[vars$
|
16464
|
-
[vars$
|
16465
|
-
[vars$
|
16466
|
-
[vars$
|
16467
|
-
[vars$
|
16468
|
-
[vars$
|
16469
|
-
[vars$
|
16470
|
-
[vars$
|
16547
|
+
[vars$j.hostMinWidth]: '415px',
|
16548
|
+
[vars$j.fontFamily]: globalRefs$f.fonts.font1.family,
|
16549
|
+
[vars$j.fontSize]: globalRefs$f.typography.body1.size,
|
16550
|
+
[vars$j.backgroundColor]: globalRefs$f.colors.surface.main,
|
16551
|
+
[vars$j.textColor]: globalRefs$f.colors.surface.contrast,
|
16552
|
+
[vars$j.boxShadow]: `${globalRefs$f.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$f.shadow.narrow.xl} ${shadowColor$2}`,
|
16553
|
+
[vars$j.verticalPadding]: '0.625em',
|
16554
|
+
[vars$j.horizontalPadding]: '1.5em',
|
16555
|
+
[vars$j.borderRadius]: globalRefs$f.radius.xs,
|
16471
16556
|
|
16472
16557
|
_bordered: {
|
16473
|
-
[vars$
|
16474
|
-
[vars$
|
16475
|
-
[vars$
|
16558
|
+
[vars$j.borderWidth]: globalRefs$f.border.sm,
|
16559
|
+
[vars$j.borderStyle]: 'solid',
|
16560
|
+
[vars$j.borderColor]: 'transparent',
|
16476
16561
|
},
|
16477
16562
|
|
16478
16563
|
size: {
|
16479
|
-
xs: { [vars$
|
16480
|
-
sm: { [vars$
|
16481
|
-
md: { [vars$
|
16482
|
-
lg: { [vars$
|
16564
|
+
xs: { [vars$j.fontSize]: '12px' },
|
16565
|
+
sm: { [vars$j.fontSize]: '14px' },
|
16566
|
+
md: { [vars$j.fontSize]: '16px' },
|
16567
|
+
lg: { [vars$j.fontSize]: '18px' },
|
16483
16568
|
},
|
16484
16569
|
|
16485
16570
|
mode: {
|
16486
16571
|
primary: {
|
16487
|
-
[vars$
|
16488
|
-
[vars$
|
16489
|
-
[vars$
|
16572
|
+
[vars$j.backgroundColor]: globalRefs$f.colors.primary.main,
|
16573
|
+
[vars$j.textColor]: globalRefs$f.colors.primary.contrast,
|
16574
|
+
[vars$j.borderColor]: globalRefs$f.colors.primary.light,
|
16490
16575
|
},
|
16491
16576
|
success: {
|
16492
|
-
[vars$
|
16493
|
-
[vars$
|
16494
|
-
[vars$
|
16577
|
+
[vars$j.backgroundColor]: globalRefs$f.colors.success.main,
|
16578
|
+
[vars$j.textColor]: globalRefs$f.colors.success.contrast,
|
16579
|
+
[vars$j.borderColor]: globalRefs$f.colors.success.light,
|
16495
16580
|
},
|
16496
16581
|
error: {
|
16497
|
-
[vars$
|
16498
|
-
[vars$
|
16499
|
-
[vars$
|
16582
|
+
[vars$j.backgroundColor]: globalRefs$f.colors.error.main,
|
16583
|
+
[vars$j.textColor]: globalRefs$f.colors.error.contrast,
|
16584
|
+
[vars$j.borderColor]: globalRefs$f.colors.error.light,
|
16500
16585
|
},
|
16501
16586
|
},
|
16502
16587
|
};
|
@@ -16504,148 +16589,148 @@ const notification = {
|
|
16504
16589
|
var notificationCard = /*#__PURE__*/Object.freeze({
|
16505
16590
|
__proto__: null,
|
16506
16591
|
default: notification,
|
16507
|
-
vars: vars$
|
16592
|
+
vars: vars$j
|
16508
16593
|
});
|
16509
16594
|
|
16510
16595
|
const globalRefs$e = getThemeRefs(globals);
|
16511
|
-
const vars$
|
16596
|
+
const vars$i = MultiSelectComboBoxClass.cssVarList;
|
16512
16597
|
|
16513
16598
|
const multiSelectComboBox = {
|
16514
|
-
[vars$
|
16515
|
-
[vars$
|
16516
|
-
[vars$
|
16517
|
-
[vars$
|
16518
|
-
[vars$
|
16519
|
-
[vars$
|
16520
|
-
[vars$
|
16521
|
-
[vars$
|
16522
|
-
[vars$
|
16523
|
-
[vars$
|
16524
|
-
[vars$
|
16525
|
-
[vars$
|
16526
|
-
[vars$
|
16527
|
-
[vars$
|
16528
|
-
[vars$
|
16529
|
-
[vars$
|
16530
|
-
[vars$
|
16531
|
-
[vars$
|
16532
|
-
[vars$
|
16533
|
-
[vars$
|
16534
|
-
[vars$
|
16535
|
-
[vars$
|
16536
|
-
[vars$
|
16537
|
-
[vars$
|
16538
|
-
[vars$
|
16539
|
-
[vars$
|
16540
|
-
[vars$
|
16541
|
-
[vars$
|
16542
|
-
[vars$
|
16543
|
-
[vars$
|
16544
|
-
[vars$
|
16545
|
-
[vars$
|
16546
|
-
[vars$
|
16547
|
-
[vars$
|
16548
|
-
[vars$
|
16549
|
-
[vars$
|
16550
|
-
[vars$
|
16551
|
-
[vars$
|
16552
|
-
[vars$
|
16553
|
-
[vars$
|
16554
|
-
[vars$
|
16599
|
+
[vars$i.hostWidth]: refs.width,
|
16600
|
+
[vars$i.hostDirection]: refs.direction,
|
16601
|
+
[vars$i.fontSize]: refs.fontSize,
|
16602
|
+
[vars$i.fontFamily]: refs.fontFamily,
|
16603
|
+
[vars$i.labelFontSize]: refs.labelFontSize,
|
16604
|
+
[vars$i.labelFontWeight]: refs.labelFontWeight,
|
16605
|
+
[vars$i.labelTextColor]: refs.labelTextColor,
|
16606
|
+
[vars$i.errorMessageTextColor]: refs.errorMessageTextColor,
|
16607
|
+
[vars$i.inputBorderColor]: refs.borderColor,
|
16608
|
+
[vars$i.inputBorderWidth]: refs.borderWidth,
|
16609
|
+
[vars$i.inputBorderStyle]: refs.borderStyle,
|
16610
|
+
[vars$i.inputBorderRadius]: refs.borderRadius,
|
16611
|
+
[vars$i.inputOutlineColor]: refs.outlineColor,
|
16612
|
+
[vars$i.inputOutlineOffset]: refs.outlineOffset,
|
16613
|
+
[vars$i.inputOutlineWidth]: refs.outlineWidth,
|
16614
|
+
[vars$i.inputOutlineStyle]: refs.outlineStyle,
|
16615
|
+
[vars$i.labelRequiredIndicator]: refs.requiredIndicator,
|
16616
|
+
[vars$i.inputValueTextColor]: refs.valueTextColor,
|
16617
|
+
[vars$i.inputPlaceholderTextColor]: refs.placeholderTextColor,
|
16618
|
+
[vars$i.inputBackgroundColor]: refs.backgroundColor,
|
16619
|
+
[vars$i.inputHorizontalPadding]: refs.horizontalPadding,
|
16620
|
+
[vars$i.inputVerticalPadding]: refs.verticalPadding,
|
16621
|
+
[vars$i.inputHeight]: refs.inputHeight,
|
16622
|
+
[vars$i.inputDropdownButtonColor]: globalRefs$e.colors.surface.dark,
|
16623
|
+
[vars$i.inputDropdownButtonCursor]: 'pointer',
|
16624
|
+
[vars$i.inputDropdownButtonSize]: refs.toggleButtonSize,
|
16625
|
+
[vars$i.inputDropdownButtonOffset]: globalRefs$e.spacing.xs,
|
16626
|
+
[vars$i.overlayItemPaddingInlineStart]: globalRefs$e.spacing.xs,
|
16627
|
+
[vars$i.overlayItemPaddingInlineEnd]: globalRefs$e.spacing.lg,
|
16628
|
+
[vars$i.chipFontSize]: refs.chipFontSize,
|
16629
|
+
[vars$i.chipTextColor]: globalRefs$e.colors.surface.contrast,
|
16630
|
+
[vars$i.chipBackgroundColor]: globalRefs$e.colors.surface.light,
|
16631
|
+
[vars$i.labelPosition]: refs.labelPosition,
|
16632
|
+
[vars$i.labelTopPosition]: refs.labelTopPosition,
|
16633
|
+
[vars$i.labelLeftPosition]: refs.labelLeftPosition,
|
16634
|
+
[vars$i.labelHorizontalPosition]: refs.labelHorizontalPosition,
|
16635
|
+
[vars$i.inputTransformY]: refs.inputTransformY,
|
16636
|
+
[vars$i.inputTransition]: refs.inputTransition,
|
16637
|
+
[vars$i.marginInlineStart]: refs.marginInlineStart,
|
16638
|
+
[vars$i.placeholderOpacity]: refs.placeholderOpacity,
|
16639
|
+
[vars$i.inputVerticalAlignment]: refs.inputVerticalAlignment,
|
16555
16640
|
|
16556
16641
|
labelType: {
|
16557
16642
|
floating: {
|
16558
|
-
[vars$
|
16643
|
+
[vars$i.inputHorizontalPadding]: '0.25em',
|
16559
16644
|
_hasValue: {
|
16560
|
-
[vars$
|
16645
|
+
[vars$i.inputHorizontalPadding]: '0.45em',
|
16561
16646
|
},
|
16562
16647
|
},
|
16563
16648
|
},
|
16564
16649
|
|
16565
16650
|
_readonly: {
|
16566
|
-
[vars$
|
16651
|
+
[vars$i.inputDropdownButtonCursor]: 'default',
|
16567
16652
|
},
|
16568
16653
|
|
16569
16654
|
// Overlay theme exposed via the component:
|
16570
|
-
[vars$
|
16571
|
-
[vars$
|
16572
|
-
[vars$
|
16573
|
-
[vars$
|
16574
|
-
[vars$
|
16575
|
-
[vars$
|
16655
|
+
[vars$i.overlayFontSize]: refs.fontSize,
|
16656
|
+
[vars$i.overlayFontFamily]: refs.fontFamily,
|
16657
|
+
[vars$i.overlayCursor]: 'pointer',
|
16658
|
+
[vars$i.overlayItemBoxShadow]: 'none',
|
16659
|
+
[vars$i.overlayBackground]: refs.backgroundColor,
|
16660
|
+
[vars$i.overlayTextColor]: refs.valueTextColor,
|
16576
16661
|
|
16577
16662
|
// Overlay direct theme:
|
16578
|
-
[vars$
|
16579
|
-
[vars$
|
16663
|
+
[vars$i.overlay.minHeight]: '400px',
|
16664
|
+
[vars$i.overlay.margin]: '0',
|
16580
16665
|
};
|
16581
16666
|
|
16582
16667
|
var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
|
16583
16668
|
__proto__: null,
|
16584
16669
|
default: multiSelectComboBox,
|
16585
16670
|
multiSelectComboBox: multiSelectComboBox,
|
16586
|
-
vars: vars$
|
16671
|
+
vars: vars$i
|
16587
16672
|
});
|
16588
16673
|
|
16589
16674
|
const globalRefs$d = getThemeRefs(globals);
|
16590
|
-
const vars$
|
16675
|
+
const vars$h = BadgeClass.cssVarList;
|
16591
16676
|
|
16592
16677
|
const badge = {
|
16593
|
-
[vars$
|
16594
|
-
[vars$
|
16678
|
+
[vars$h.hostWidth]: 'fit-content',
|
16679
|
+
[vars$h.hostDirection]: globalRefs$d.direction,
|
16595
16680
|
|
16596
|
-
[vars$
|
16681
|
+
[vars$h.textAlign]: 'center',
|
16597
16682
|
|
16598
|
-
[vars$
|
16599
|
-
[vars$
|
16683
|
+
[vars$h.fontFamily]: globalRefs$d.fonts.font1.family,
|
16684
|
+
[vars$h.fontWeight]: '400',
|
16600
16685
|
|
16601
|
-
[vars$
|
16602
|
-
[vars$
|
16686
|
+
[vars$h.verticalPadding]: '0.25em',
|
16687
|
+
[vars$h.horizontalPadding]: '0.5em',
|
16603
16688
|
|
16604
|
-
[vars$
|
16605
|
-
[vars$
|
16606
|
-
[vars$
|
16607
|
-
[vars$
|
16689
|
+
[vars$h.borderWidth]: globalRefs$d.border.xs,
|
16690
|
+
[vars$h.borderRadius]: globalRefs$d.radius.xs,
|
16691
|
+
[vars$h.borderColor]: 'transparent',
|
16692
|
+
[vars$h.borderStyle]: 'solid',
|
16608
16693
|
|
16609
16694
|
_fullWidth: {
|
16610
|
-
[vars$
|
16695
|
+
[vars$h.hostWidth]: '100%',
|
16611
16696
|
},
|
16612
16697
|
|
16613
16698
|
size: {
|
16614
|
-
xs: { [vars$
|
16615
|
-
sm: { [vars$
|
16616
|
-
md: { [vars$
|
16617
|
-
lg: { [vars$
|
16699
|
+
xs: { [vars$h.fontSize]: '12px' },
|
16700
|
+
sm: { [vars$h.fontSize]: '14px' },
|
16701
|
+
md: { [vars$h.fontSize]: '16px' },
|
16702
|
+
lg: { [vars$h.fontSize]: '18px' },
|
16618
16703
|
},
|
16619
16704
|
|
16620
16705
|
mode: {
|
16621
16706
|
default: {
|
16622
|
-
[vars$
|
16707
|
+
[vars$h.textColor]: globalRefs$d.colors.surface.dark,
|
16623
16708
|
_bordered: {
|
16624
|
-
[vars$
|
16709
|
+
[vars$h.borderColor]: globalRefs$d.colors.surface.light,
|
16625
16710
|
},
|
16626
16711
|
},
|
16627
16712
|
primary: {
|
16628
|
-
[vars$
|
16713
|
+
[vars$h.textColor]: globalRefs$d.colors.primary.main,
|
16629
16714
|
_bordered: {
|
16630
|
-
[vars$
|
16715
|
+
[vars$h.borderColor]: globalRefs$d.colors.primary.light,
|
16631
16716
|
},
|
16632
16717
|
},
|
16633
16718
|
secondary: {
|
16634
|
-
[vars$
|
16719
|
+
[vars$h.textColor]: globalRefs$d.colors.secondary.main,
|
16635
16720
|
_bordered: {
|
16636
|
-
[vars$
|
16721
|
+
[vars$h.borderColor]: globalRefs$d.colors.secondary.light,
|
16637
16722
|
},
|
16638
16723
|
},
|
16639
16724
|
error: {
|
16640
|
-
[vars$
|
16725
|
+
[vars$h.textColor]: globalRefs$d.colors.error.main,
|
16641
16726
|
_bordered: {
|
16642
|
-
[vars$
|
16727
|
+
[vars$h.borderColor]: globalRefs$d.colors.error.light,
|
16643
16728
|
},
|
16644
16729
|
},
|
16645
16730
|
success: {
|
16646
|
-
[vars$
|
16731
|
+
[vars$h.textColor]: globalRefs$d.colors.success.main,
|
16647
16732
|
_bordered: {
|
16648
|
-
[vars$
|
16733
|
+
[vars$h.borderColor]: globalRefs$d.colors.success.light,
|
16649
16734
|
},
|
16650
16735
|
},
|
16651
16736
|
},
|
@@ -16654,7 +16739,7 @@ const badge = {
|
|
16654
16739
|
var badge$1 = /*#__PURE__*/Object.freeze({
|
16655
16740
|
__proto__: null,
|
16656
16741
|
default: badge,
|
16657
|
-
vars: vars$
|
16742
|
+
vars: vars$h
|
16658
16743
|
});
|
16659
16744
|
|
16660
16745
|
const globalRefs$c = getThemeRefs(globals);
|
@@ -16692,143 +16777,143 @@ const avatar = {
|
|
16692
16777
|
},
|
16693
16778
|
};
|
16694
16779
|
|
16695
|
-
const vars$
|
16780
|
+
const vars$g = {
|
16696
16781
|
...compVars$1,
|
16697
16782
|
};
|
16698
16783
|
|
16699
16784
|
var avatar$1 = /*#__PURE__*/Object.freeze({
|
16700
16785
|
__proto__: null,
|
16701
16786
|
default: avatar,
|
16702
|
-
vars: vars$
|
16787
|
+
vars: vars$g
|
16703
16788
|
});
|
16704
16789
|
|
16705
16790
|
const globalRefs$b = getThemeRefs(globals);
|
16706
16791
|
|
16707
|
-
const vars$
|
16792
|
+
const vars$f = MappingsFieldClass.cssVarList;
|
16708
16793
|
|
16709
16794
|
const mappingsField = {
|
16710
|
-
[vars$
|
16711
|
-
[vars$
|
16712
|
-
[vars$
|
16713
|
-
[vars$
|
16714
|
-
[vars$
|
16715
|
-
[vars$
|
16716
|
-
[vars$
|
16717
|
-
[vars$
|
16718
|
-
[vars$
|
16719
|
-
[vars$
|
16795
|
+
[vars$f.hostWidth]: refs.width,
|
16796
|
+
[vars$f.hostDirection]: refs.direction,
|
16797
|
+
[vars$f.fontSize]: refs.fontSize,
|
16798
|
+
[vars$f.fontFamily]: refs.fontFamily,
|
16799
|
+
[vars$f.separatorFontSize]: '14px',
|
16800
|
+
[vars$f.labelsFontSize]: '14px',
|
16801
|
+
[vars$f.labelsLineHeight]: '1',
|
16802
|
+
[vars$f.labelsMarginBottom]: '6px',
|
16803
|
+
[vars$f.labelTextColor]: refs.labelTextColor,
|
16804
|
+
[vars$f.itemMarginBottom]: '1em',
|
16720
16805
|
// To be positioned correctly, the min width has to match the text field min width
|
16721
|
-
[vars$
|
16806
|
+
[vars$f.valueLabelMinWidth]: refs.minWidth,
|
16722
16807
|
// To be positioned correctly, the min width has to match the combo box field min width
|
16723
|
-
[vars$
|
16724
|
-
[vars$
|
16725
|
-
[vars$
|
16808
|
+
[vars$f.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$b.border.xs})`,
|
16809
|
+
[vars$f.separatorWidth]: '70px',
|
16810
|
+
[vars$f.removeButtonWidth]: '60px',
|
16726
16811
|
};
|
16727
16812
|
|
16728
16813
|
var mappingsField$1 = /*#__PURE__*/Object.freeze({
|
16729
16814
|
__proto__: null,
|
16730
16815
|
default: mappingsField,
|
16731
16816
|
mappingsField: mappingsField,
|
16732
|
-
vars: vars$
|
16817
|
+
vars: vars$f
|
16733
16818
|
});
|
16734
16819
|
|
16735
16820
|
const globalRefs$a = getThemeRefs(globals);
|
16736
|
-
const vars$
|
16821
|
+
const vars$e = UserAttributeClass.cssVarList;
|
16737
16822
|
|
16738
16823
|
const userAttribute = {
|
16739
|
-
[vars$
|
16740
|
-
[vars$
|
16741
|
-
[vars$
|
16742
|
-
[vars$
|
16743
|
-
[vars$
|
16744
|
-
[vars$
|
16824
|
+
[vars$e.hostDirection]: globalRefs$a.direction,
|
16825
|
+
[vars$e.labelTextWidth]: '150px',
|
16826
|
+
[vars$e.valueTextWidth]: '200px',
|
16827
|
+
[vars$e.badgeMaxWidth]: '85px',
|
16828
|
+
[vars$e.itemsGap]: '16px',
|
16829
|
+
[vars$e.hostMinWidth]: '530px',
|
16745
16830
|
_fullWidth: {
|
16746
|
-
[vars$
|
16831
|
+
[vars$e.hostWidth]: '100%',
|
16747
16832
|
},
|
16748
16833
|
};
|
16749
16834
|
|
16750
16835
|
var userAttribute$1 = /*#__PURE__*/Object.freeze({
|
16751
16836
|
__proto__: null,
|
16752
16837
|
default: userAttribute,
|
16753
|
-
vars: vars$
|
16838
|
+
vars: vars$e
|
16754
16839
|
});
|
16755
16840
|
|
16756
16841
|
const globalRefs$9 = getThemeRefs(globals);
|
16757
|
-
const vars$
|
16842
|
+
const vars$d = UserAuthMethodClass.cssVarList;
|
16758
16843
|
|
16759
16844
|
const userAuthMethod = {
|
16760
|
-
[vars$
|
16761
|
-
[vars$
|
16762
|
-
[vars$
|
16763
|
-
[vars$
|
16764
|
-
[vars$
|
16845
|
+
[vars$d.hostDirection]: globalRefs$9.direction,
|
16846
|
+
[vars$d.labelTextWidth]: '200px',
|
16847
|
+
[vars$d.itemsGap]: '16px',
|
16848
|
+
[vars$d.hostMinWidth]: '530px',
|
16849
|
+
[vars$d.iconSize]: '24px',
|
16765
16850
|
_fullWidth: {
|
16766
|
-
[vars$
|
16851
|
+
[vars$d.hostWidth]: '100%',
|
16767
16852
|
},
|
16768
16853
|
};
|
16769
16854
|
|
16770
16855
|
var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
|
16771
16856
|
__proto__: null,
|
16772
16857
|
default: userAuthMethod,
|
16773
|
-
vars: vars$
|
16858
|
+
vars: vars$d
|
16774
16859
|
});
|
16775
16860
|
|
16776
|
-
const vars$
|
16861
|
+
const vars$c = SamlGroupMappingsClass.cssVarList;
|
16777
16862
|
|
16778
16863
|
const samlGroupMappings = {
|
16779
|
-
[vars$
|
16780
|
-
[vars$
|
16781
|
-
[vars$
|
16864
|
+
[vars$c.hostWidth]: refs.width,
|
16865
|
+
[vars$c.hostDirection]: refs.direction,
|
16866
|
+
[vars$c.groupNameInputMarginBottom]: '1em',
|
16782
16867
|
};
|
16783
16868
|
|
16784
16869
|
var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
|
16785
16870
|
__proto__: null,
|
16786
16871
|
default: samlGroupMappings,
|
16787
16872
|
samlGroupMappings: samlGroupMappings,
|
16788
|
-
vars: vars$
|
16873
|
+
vars: vars$c
|
16789
16874
|
});
|
16790
16875
|
|
16791
16876
|
const globalRefs$8 = getThemeRefs(globals);
|
16792
|
-
const vars$
|
16877
|
+
const vars$b = PolicyValidationClass.cssVarList;
|
16793
16878
|
|
16794
16879
|
const policyValidation = {
|
16795
|
-
[vars$
|
16796
|
-
[vars$
|
16797
|
-
[vars$
|
16798
|
-
[vars$
|
16799
|
-
[vars$
|
16800
|
-
[vars$
|
16801
|
-
[vars$
|
16802
|
-
[vars$
|
16803
|
-
[vars$
|
16804
|
-
[vars$
|
16805
|
-
[vars$
|
16806
|
-
[vars$
|
16807
|
-
[vars$
|
16808
|
-
[vars$
|
16809
|
-
[vars$
|
16810
|
-
[vars$
|
16880
|
+
[vars$b.fontFamily]: refs.fontFamily,
|
16881
|
+
[vars$b.fontSize]: refs.labelFontSize,
|
16882
|
+
[vars$b.textColor]: refs.labelTextColor,
|
16883
|
+
[vars$b.borderWidth]: refs.borderWidth,
|
16884
|
+
[vars$b.borderStyle]: refs.borderStyle,
|
16885
|
+
[vars$b.borderColor]: refs.borderColor,
|
16886
|
+
[vars$b.borderRadius]: globalRefs$8.radius.sm,
|
16887
|
+
[vars$b.backgroundColor]: 'none',
|
16888
|
+
[vars$b.padding]: '0px',
|
16889
|
+
[vars$b.labelMargin]: globalRefs$8.spacing.sm,
|
16890
|
+
[vars$b.itemsSpacing]: globalRefs$8.spacing.lg,
|
16891
|
+
[vars$b.itemSymbolDefault]: "'\\2022'", // "•"
|
16892
|
+
[vars$b.itemSymbolSuccess]: "'\\2713'", // "✓"
|
16893
|
+
[vars$b.itemSymbolError]: "'\\2A09'", // "⨉"
|
16894
|
+
[vars$b.itemSymbolSuccessColor]: globalRefs$8.colors.success.main,
|
16895
|
+
[vars$b.itemSymbolErrorColor]: globalRefs$8.colors.error.main,
|
16811
16896
|
};
|
16812
16897
|
|
16813
16898
|
var policyValidation$1 = /*#__PURE__*/Object.freeze({
|
16814
16899
|
__proto__: null,
|
16815
16900
|
default: policyValidation,
|
16816
|
-
vars: vars$
|
16901
|
+
vars: vars$b
|
16817
16902
|
});
|
16818
16903
|
|
16819
|
-
const vars$
|
16904
|
+
const vars$a = IconClass.cssVarList;
|
16820
16905
|
|
16821
16906
|
const icon = {};
|
16822
16907
|
|
16823
16908
|
var icon$1 = /*#__PURE__*/Object.freeze({
|
16824
16909
|
__proto__: null,
|
16825
16910
|
default: icon,
|
16826
|
-
vars: vars$
|
16911
|
+
vars: vars$a
|
16827
16912
|
});
|
16828
16913
|
|
16829
16914
|
const globalRefs$7 = getThemeRefs(globals);
|
16830
16915
|
|
16831
|
-
const vars$
|
16916
|
+
const vars$9 = CodeSnippetClass.cssVarList;
|
16832
16917
|
|
16833
16918
|
const light = {
|
16834
16919
|
color1: '#fa0',
|
@@ -16863,50 +16948,50 @@ const dark = {
|
|
16863
16948
|
};
|
16864
16949
|
|
16865
16950
|
const CodeSnippet = {
|
16866
|
-
[vars$
|
16867
|
-
[vars$
|
16868
|
-
[vars$
|
16869
|
-
[vars$
|
16870
|
-
[vars$
|
16871
|
-
[vars$
|
16872
|
-
[vars$
|
16873
|
-
[vars$
|
16874
|
-
[vars$
|
16875
|
-
[vars$
|
16876
|
-
[vars$
|
16877
|
-
[vars$
|
16878
|
-
[vars$
|
16879
|
-
[vars$
|
16880
|
-
[vars$
|
16881
|
-
[vars$
|
16882
|
-
[vars$
|
16883
|
-
[vars$
|
16884
|
-
[vars$
|
16885
|
-
[vars$
|
16886
|
-
[vars$
|
16887
|
-
[vars$
|
16888
|
-
[vars$
|
16889
|
-
[vars$
|
16890
|
-
[vars$
|
16891
|
-
[vars$
|
16892
|
-
[vars$
|
16893
|
-
[vars$
|
16894
|
-
[vars$
|
16895
|
-
[vars$
|
16896
|
-
[vars$
|
16897
|
-
[vars$
|
16898
|
-
[vars$
|
16899
|
-
[vars$
|
16900
|
-
[vars$
|
16901
|
-
[vars$
|
16902
|
-
[vars$
|
16903
|
-
[vars$
|
16904
|
-
[vars$
|
16905
|
-
[vars$
|
16906
|
-
[vars$
|
16907
|
-
[vars$
|
16908
|
-
[vars$
|
16909
|
-
[vars$
|
16951
|
+
[vars$9.rootBgColor]: globalRefs$7.colors.surface.main,
|
16952
|
+
[vars$9.rootTextColor]: globalRefs$7.colors.surface.contrast,
|
16953
|
+
[vars$9.docTagTextColor]: light.color2,
|
16954
|
+
[vars$9.keywordTextColor]: light.color2,
|
16955
|
+
[vars$9.metaKeywordTextColor]: light.color2,
|
16956
|
+
[vars$9.templateTagTextColor]: light.color2,
|
16957
|
+
[vars$9.templateVariableTextColor]: light.color2,
|
16958
|
+
[vars$9.typeTextColor]: light.color2,
|
16959
|
+
[vars$9.variableLanguageTextColor]: light.color2,
|
16960
|
+
[vars$9.titleTextColor]: light.color3,
|
16961
|
+
[vars$9.titleClassTextColor]: light.color3,
|
16962
|
+
[vars$9.titleClassInheritedTextColor]: light.color3,
|
16963
|
+
[vars$9.titleFunctionTextColor]: light.color3,
|
16964
|
+
[vars$9.attrTextColor]: light.color4,
|
16965
|
+
[vars$9.attributeTextColor]: light.color4,
|
16966
|
+
[vars$9.literalTextColor]: light.color4,
|
16967
|
+
[vars$9.metaTextColor]: light.color4,
|
16968
|
+
[vars$9.numberTextColor]: light.color4,
|
16969
|
+
[vars$9.operatorTextColor]: light.color4,
|
16970
|
+
[vars$9.variableTextColor]: light.color4,
|
16971
|
+
[vars$9.selectorAttrTextColor]: light.color4,
|
16972
|
+
[vars$9.selectorClassTextColor]: light.color4,
|
16973
|
+
[vars$9.selectorIdTextColor]: light.color4,
|
16974
|
+
[vars$9.regexpTextColor]: light.color13,
|
16975
|
+
[vars$9.stringTextColor]: light.color13,
|
16976
|
+
[vars$9.metaStringTextColor]: light.color13,
|
16977
|
+
[vars$9.builtInTextColor]: light.color5,
|
16978
|
+
[vars$9.symbolTextColor]: light.color5,
|
16979
|
+
[vars$9.commentTextColor]: light.color6,
|
16980
|
+
[vars$9.codeTextColor]: light.color6,
|
16981
|
+
[vars$9.formulaTextColor]: light.color6,
|
16982
|
+
[vars$9.nameTextColor]: light.color7,
|
16983
|
+
[vars$9.quoteTextColor]: light.color7,
|
16984
|
+
[vars$9.selectorTagTextColor]: light.color7,
|
16985
|
+
[vars$9.selectorPseudoTextColor]: light.color7,
|
16986
|
+
[vars$9.substTextColor]: light.color8,
|
16987
|
+
[vars$9.sectionTextColor]: light.color4,
|
16988
|
+
[vars$9.bulletTextColor]: light.color9,
|
16989
|
+
[vars$9.emphasisTextColor]: light.color8,
|
16990
|
+
[vars$9.strongTextColor]: light.color8,
|
16991
|
+
[vars$9.additionTextColor]: light.color7,
|
16992
|
+
[vars$9.additionBgColor]: light.color10,
|
16993
|
+
[vars$9.deletionTextColor]: light.color2,
|
16994
|
+
[vars$9.deletionBgColor]: light.color10,
|
16910
16995
|
/* purposely ignored */
|
16911
16996
|
// [vars.charEscapeTextColor]: '',
|
16912
16997
|
// [vars.linkTextColor]: '',
|
@@ -16918,50 +17003,50 @@ const CodeSnippet = {
|
|
16918
17003
|
|
16919
17004
|
const codeSnippetDarkThemeOverrides = {
|
16920
17005
|
codeSnippet: {
|
16921
|
-
[vars$
|
16922
|
-
[vars$
|
16923
|
-
[vars$
|
16924
|
-
[vars$
|
16925
|
-
[vars$
|
16926
|
-
[vars$
|
16927
|
-
[vars$
|
16928
|
-
[vars$
|
16929
|
-
[vars$
|
16930
|
-
[vars$
|
16931
|
-
[vars$
|
16932
|
-
[vars$
|
16933
|
-
[vars$
|
16934
|
-
[vars$
|
16935
|
-
[vars$
|
16936
|
-
[vars$
|
16937
|
-
[vars$
|
16938
|
-
[vars$
|
16939
|
-
[vars$
|
16940
|
-
[vars$
|
16941
|
-
[vars$
|
16942
|
-
[vars$
|
16943
|
-
[vars$
|
16944
|
-
[vars$
|
16945
|
-
[vars$
|
16946
|
-
[vars$
|
16947
|
-
[vars$
|
16948
|
-
[vars$
|
16949
|
-
[vars$
|
16950
|
-
[vars$
|
16951
|
-
[vars$
|
16952
|
-
[vars$
|
16953
|
-
[vars$
|
16954
|
-
[vars$
|
16955
|
-
[vars$
|
16956
|
-
[vars$
|
16957
|
-
[vars$
|
16958
|
-
[vars$
|
16959
|
-
[vars$
|
16960
|
-
[vars$
|
16961
|
-
[vars$
|
16962
|
-
[vars$
|
16963
|
-
[vars$
|
16964
|
-
[vars$
|
17006
|
+
[vars$9.rootBgColor]: globalRefs$7.colors.surface.main,
|
17007
|
+
[vars$9.rootTextColor]: globalRefs$7.colors.surface.contrast,
|
17008
|
+
[vars$9.docTagTextColor]: dark.color2,
|
17009
|
+
[vars$9.keywordTextColor]: dark.color2,
|
17010
|
+
[vars$9.metaKeywordTextColor]: dark.color2,
|
17011
|
+
[vars$9.templateTagTextColor]: dark.color2,
|
17012
|
+
[vars$9.templateVariableTextColor]: dark.color2,
|
17013
|
+
[vars$9.typeTextColor]: dark.color2,
|
17014
|
+
[vars$9.variableLanguageTextColor]: dark.color2,
|
17015
|
+
[vars$9.titleTextColor]: dark.color3,
|
17016
|
+
[vars$9.titleClassTextColor]: dark.color3,
|
17017
|
+
[vars$9.titleClassInheritedTextColor]: dark.color3,
|
17018
|
+
[vars$9.titleFunctionTextColor]: dark.color3,
|
17019
|
+
[vars$9.attrTextColor]: dark.color4,
|
17020
|
+
[vars$9.attributeTextColor]: dark.color4,
|
17021
|
+
[vars$9.literalTextColor]: dark.color4,
|
17022
|
+
[vars$9.metaTextColor]: dark.color4,
|
17023
|
+
[vars$9.numberTextColor]: dark.color4,
|
17024
|
+
[vars$9.operatorTextColor]: dark.color4,
|
17025
|
+
[vars$9.variableTextColor]: dark.color4,
|
17026
|
+
[vars$9.selectorAttrTextColor]: dark.color4,
|
17027
|
+
[vars$9.selectorClassTextColor]: dark.color4,
|
17028
|
+
[vars$9.selectorIdTextColor]: dark.color4,
|
17029
|
+
[vars$9.regexpTextColor]: dark.color13,
|
17030
|
+
[vars$9.stringTextColor]: dark.color13,
|
17031
|
+
[vars$9.metaStringTextColor]: dark.color13,
|
17032
|
+
[vars$9.builtInTextColor]: dark.color5,
|
17033
|
+
[vars$9.symbolTextColor]: dark.color5,
|
17034
|
+
[vars$9.commentTextColor]: dark.color6,
|
17035
|
+
[vars$9.codeTextColor]: dark.color6,
|
17036
|
+
[vars$9.formulaTextColor]: dark.color6,
|
17037
|
+
[vars$9.nameTextColor]: dark.color7,
|
17038
|
+
[vars$9.quoteTextColor]: dark.color7,
|
17039
|
+
[vars$9.selectorTagTextColor]: dark.color7,
|
17040
|
+
[vars$9.selectorPseudoTextColor]: dark.color7,
|
17041
|
+
[vars$9.substTextColor]: dark.color8,
|
17042
|
+
[vars$9.sectionTextColor]: dark.color4,
|
17043
|
+
[vars$9.bulletTextColor]: dark.color9,
|
17044
|
+
[vars$9.emphasisTextColor]: dark.color8,
|
17045
|
+
[vars$9.strongTextColor]: dark.color8,
|
17046
|
+
[vars$9.additionTextColor]: dark.color7,
|
17047
|
+
[vars$9.additionBgColor]: dark.color10,
|
17048
|
+
[vars$9.deletionTextColor]: dark.color2,
|
17049
|
+
[vars$9.deletionBgColor]: dark.color10,
|
16965
17050
|
},
|
16966
17051
|
};
|
16967
17052
|
|
@@ -16969,36 +17054,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
|
|
16969
17054
|
__proto__: null,
|
16970
17055
|
codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
|
16971
17056
|
default: CodeSnippet,
|
16972
|
-
vars: vars$
|
17057
|
+
vars: vars$9
|
16973
17058
|
});
|
16974
17059
|
|
16975
|
-
const vars$
|
17060
|
+
const vars$8 = RadioGroupClass.cssVarList;
|
16976
17061
|
const globalRefs$6 = getThemeRefs(globals);
|
16977
17062
|
|
16978
17063
|
const radioGroup = {
|
16979
|
-
[vars$
|
16980
|
-
[vars$
|
16981
|
-
[vars$
|
16982
|
-
[vars$
|
16983
|
-
[vars$
|
16984
|
-
[vars$
|
16985
|
-
[vars$
|
16986
|
-
[vars$
|
16987
|
-
[vars$
|
16988
|
-
[vars$
|
17064
|
+
[vars$8.buttonsRowGap]: '9px',
|
17065
|
+
[vars$8.hostWidth]: refs.width,
|
17066
|
+
[vars$8.hostDirection]: refs.direction,
|
17067
|
+
[vars$8.fontSize]: refs.fontSize,
|
17068
|
+
[vars$8.fontFamily]: refs.fontFamily,
|
17069
|
+
[vars$8.labelTextColor]: refs.labelTextColor,
|
17070
|
+
[vars$8.labelRequiredIndicator]: refs.requiredIndicator,
|
17071
|
+
[vars$8.errorMessageTextColor]: refs.errorMessageTextColor,
|
17072
|
+
[vars$8.helperTextColor]: refs.helperTextColor,
|
17073
|
+
[vars$8.itemsLabelColor]: globalRefs$6.colors.surface.contrast,
|
16989
17074
|
|
16990
17075
|
textAlign: {
|
16991
|
-
right: { [vars$
|
16992
|
-
left: { [vars$
|
16993
|
-
center: { [vars$
|
17076
|
+
right: { [vars$8.inputTextAlign]: 'right' },
|
17077
|
+
left: { [vars$8.inputTextAlign]: 'left' },
|
17078
|
+
center: { [vars$8.inputTextAlign]: 'center' },
|
16994
17079
|
},
|
16995
17080
|
|
16996
17081
|
_fullWidth: {
|
16997
|
-
[vars$
|
17082
|
+
[vars$8.buttonsSpacing]: 'space-between',
|
16998
17083
|
},
|
16999
17084
|
|
17000
17085
|
_disabled: {
|
17001
|
-
[vars$
|
17086
|
+
[vars$8.itemsLabelColor]: globalRefs$6.colors.surface.light,
|
17002
17087
|
},
|
17003
17088
|
};
|
17004
17089
|
|
@@ -17006,24 +17091,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
|
|
17006
17091
|
__proto__: null,
|
17007
17092
|
default: radioGroup,
|
17008
17093
|
radioGroup: radioGroup,
|
17009
|
-
vars: vars$
|
17094
|
+
vars: vars$8
|
17010
17095
|
});
|
17011
17096
|
|
17012
|
-
const vars$
|
17097
|
+
const vars$7 = RadioButtonClass.cssVarList;
|
17013
17098
|
const globalRefs$5 = getThemeRefs(globals);
|
17014
17099
|
|
17015
17100
|
const radioButton = {
|
17016
|
-
[vars$
|
17017
|
-
[vars$
|
17018
|
-
[vars$
|
17019
|
-
[vars$
|
17020
|
-
[vars$
|
17021
|
-
[vars$
|
17022
|
-
[vars$
|
17023
|
-
[vars$
|
17101
|
+
[vars$7.fontFamily]: refs.fontFamily,
|
17102
|
+
[vars$7.radioSize]: 'calc(1em + 6px)',
|
17103
|
+
[vars$7.radioMargin]: 'auto 4px',
|
17104
|
+
[vars$7.radioCheckedSize]: `calc(var(${vars$7.radioSize})/5)`,
|
17105
|
+
[vars$7.radioCheckedColor]: globalRefs$5.colors.surface.light,
|
17106
|
+
[vars$7.radioBackgroundColor]: globalRefs$5.colors.surface.light,
|
17107
|
+
[vars$7.radioBorderColor]: 'none',
|
17108
|
+
[vars$7.radioBorderWidth]: 0,
|
17024
17109
|
|
17025
17110
|
_checked: {
|
17026
|
-
[vars$
|
17111
|
+
[vars$7.radioBackgroundColor]: globalRefs$5.colors.surface.contrast,
|
17027
17112
|
},
|
17028
17113
|
|
17029
17114
|
_hover: {
|
@@ -17032,16 +17117,16 @@ const radioButton = {
|
|
17032
17117
|
|
17033
17118
|
size: {
|
17034
17119
|
xs: {
|
17035
|
-
[vars$
|
17120
|
+
[vars$7.fontSize]: '12px',
|
17036
17121
|
},
|
17037
17122
|
sm: {
|
17038
|
-
[vars$
|
17123
|
+
[vars$7.fontSize]: '14px',
|
17039
17124
|
},
|
17040
17125
|
md: {
|
17041
|
-
[vars$
|
17126
|
+
[vars$7.fontSize]: '16px',
|
17042
17127
|
},
|
17043
17128
|
lg: {
|
17044
|
-
[vars$
|
17129
|
+
[vars$7.fontSize]: '18px',
|
17045
17130
|
},
|
17046
17131
|
},
|
17047
17132
|
};
|
@@ -17050,97 +17135,97 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
|
|
17050
17135
|
__proto__: null,
|
17051
17136
|
default: radioButton,
|
17052
17137
|
radioButton: radioButton,
|
17053
|
-
vars: vars$
|
17138
|
+
vars: vars$7
|
17054
17139
|
});
|
17055
17140
|
|
17056
17141
|
const globalRefs$4 = getThemeRefs(globals);
|
17057
17142
|
|
17058
|
-
const vars$
|
17143
|
+
const vars$6 = CalendarClass.cssVarList;
|
17059
17144
|
|
17060
17145
|
const calendar = {
|
17061
|
-
[vars$
|
17062
|
-
[vars$
|
17063
|
-
[vars$
|
17146
|
+
[vars$6.fontFamily]: refs.fontFamily,
|
17147
|
+
[vars$6.fontSize]: refs.fontSize,
|
17148
|
+
[vars$6.hostDirection]: refs.direction,
|
17064
17149
|
|
17065
|
-
[vars$
|
17150
|
+
[vars$6.calendarPadding]: '1em',
|
17066
17151
|
|
17067
|
-
[vars$
|
17068
|
-
[vars$
|
17069
|
-
[vars$
|
17070
|
-
[vars$
|
17152
|
+
[vars$6.topNavVerticalPadding]: '1em',
|
17153
|
+
[vars$6.topNavAlignment]: 'space-between',
|
17154
|
+
[vars$6.topNavGap]: '0',
|
17155
|
+
[vars$6.topNavSelectorsGap]: '0.5em',
|
17071
17156
|
|
17072
|
-
[vars$
|
17073
|
-
[vars$
|
17074
|
-
[vars$
|
17075
|
-
[vars$
|
17157
|
+
[vars$6.bottomNavVerticalPadding]: '0.75em',
|
17158
|
+
[vars$6.bottomNavHorizontalPadding]: '1.5em',
|
17159
|
+
[vars$6.bottomNavAlignment]: 'space-between',
|
17160
|
+
[vars$6.bottomNavGap]: '0.5em',
|
17076
17161
|
|
17077
|
-
[vars$
|
17078
|
-
[vars$
|
17079
|
-
[vars$
|
17080
|
-
[vars$
|
17162
|
+
[vars$6.navMarginBottom]: '0.75em',
|
17163
|
+
[vars$6.navBorderBottomWidth]: '1px',
|
17164
|
+
[vars$6.navBorderBottomColor]: globalRefs$4.colors.surface.highlight,
|
17165
|
+
[vars$6.navBorderBottomStyle]: 'solid',
|
17081
17166
|
|
17082
|
-
[vars$
|
17083
|
-
[vars$
|
17167
|
+
[vars$6.yearInputWidth]: '6em',
|
17168
|
+
[vars$6.monthInputWidth]: '8em',
|
17084
17169
|
|
17085
|
-
[vars$
|
17086
|
-
[vars$
|
17170
|
+
[vars$6.navButtonSize]: '24px',
|
17171
|
+
[vars$6.navButtonCursor]: 'pointer',
|
17087
17172
|
|
17088
|
-
[vars$
|
17089
|
-
[vars$
|
17173
|
+
[vars$6.weekdayFontSize]: '0.875em',
|
17174
|
+
[vars$6.weekdayFontWeight]: '500',
|
17090
17175
|
|
17091
17176
|
// day table cell
|
17092
|
-
[vars$
|
17177
|
+
[vars$6.dayHeight]: '3.125em',
|
17093
17178
|
|
17094
17179
|
// day value
|
17095
|
-
[vars$
|
17096
|
-
[vars$
|
17097
|
-
[vars$
|
17098
|
-
[vars$
|
17099
|
-
[vars$
|
17100
|
-
[vars$
|
17101
|
-
[vars$
|
17102
|
-
[vars$
|
17103
|
-
[vars$
|
17104
|
-
[vars$
|
17180
|
+
[vars$6.daySize]: '2.125em',
|
17181
|
+
[vars$6.dayFontSize]: '1em',
|
17182
|
+
[vars$6.dayRadius]: '50%',
|
17183
|
+
[vars$6.dayTextAlign]: 'center',
|
17184
|
+
[vars$6.dayPadding]: '0',
|
17185
|
+
[vars$6.dayTextColor]: globalRefs$4.colors.surface.contrast,
|
17186
|
+
[vars$6.dayFontWeight]: '500',
|
17187
|
+
[vars$6.dayBackgroundColor]: 'transparent',
|
17188
|
+
[vars$6.dayCursor]: 'pointer',
|
17189
|
+
[vars$6.dayBackgroundColorHover]: globalRefs$4.colors.primary.highlight,
|
17105
17190
|
|
17106
17191
|
// selected day
|
17107
|
-
[vars$
|
17108
|
-
[vars$
|
17192
|
+
[vars$6.daySelectedBackgroundColor]: globalRefs$4.colors.primary.main,
|
17193
|
+
[vars$6.daySelectedTextdColor]: globalRefs$4.colors.primary.contrast,
|
17109
17194
|
|
17110
17195
|
// disabled day (out of min/max range)
|
17111
|
-
[vars$
|
17196
|
+
[vars$6.dayDisabledTextdColor]: globalRefs$4.colors.surface.light,
|
17112
17197
|
|
17113
17198
|
// today
|
17114
|
-
[vars$
|
17115
|
-
[vars$
|
17116
|
-
[vars$
|
17199
|
+
[vars$6.currentDayBorderColor]: globalRefs$4.colors.surface.light,
|
17200
|
+
[vars$6.currentDayBorderWidth]: '1px',
|
17201
|
+
[vars$6.currentDayBorderStyle]: 'solid',
|
17117
17202
|
|
17118
17203
|
size: {
|
17119
|
-
xs: { [vars$
|
17120
|
-
sm: { [vars$
|
17121
|
-
md: { [vars$
|
17122
|
-
lg: { [vars$
|
17204
|
+
xs: { [vars$6.fontSize]: '12px' },
|
17205
|
+
sm: { [vars$6.fontSize]: '14px' },
|
17206
|
+
md: { [vars$6.fontSize]: '16px' },
|
17207
|
+
lg: { [vars$6.fontSize]: '18px' },
|
17123
17208
|
},
|
17124
17209
|
|
17125
|
-
[vars$
|
17210
|
+
[vars$6.navButtonRotation]: 'rotate(180deg)',
|
17126
17211
|
|
17127
17212
|
_disabled: {
|
17128
|
-
[vars$
|
17129
|
-
[vars$
|
17130
|
-
[vars$
|
17131
|
-
[vars$
|
17213
|
+
[vars$6.navButtonOpacity]: '0.5',
|
17214
|
+
[vars$6.dayBackgroundColorHover]: 'none',
|
17215
|
+
[vars$6.navButtonCursor]: 'default',
|
17216
|
+
[vars$6.dayCursor]: 'default',
|
17132
17217
|
},
|
17133
17218
|
|
17134
17219
|
_fullWidth: {
|
17135
|
-
[vars$
|
17136
|
-
[vars$
|
17220
|
+
[vars$6.hostWidth]: '100%',
|
17221
|
+
[vars$6.dayBlockAlign]: '0 auto',
|
17137
17222
|
},
|
17138
17223
|
};
|
17139
17224
|
|
17140
17225
|
var calendar$1 = /*#__PURE__*/Object.freeze({
|
17141
17226
|
__proto__: null,
|
17142
17227
|
default: calendar,
|
17143
|
-
vars: vars$
|
17228
|
+
vars: vars$6
|
17144
17229
|
});
|
17145
17230
|
|
17146
17231
|
const globalRefs$3 = getThemeRefs(globals);
|
@@ -17148,28 +17233,28 @@ const globalRefs$3 = getThemeRefs(globals);
|
|
17148
17233
|
const shadowColor$1 = '#00000020';
|
17149
17234
|
const { shadow } = globalRefs$3;
|
17150
17235
|
|
17151
|
-
const vars$
|
17236
|
+
const vars$5 = DateFieldClass.cssVarList;
|
17152
17237
|
|
17153
17238
|
const dateField = {
|
17154
|
-
[vars$
|
17155
|
-
[vars$
|
17156
|
-
[vars$
|
17157
|
-
|
17158
|
-
[vars$
|
17159
|
-
[vars$
|
17160
|
-
[vars$
|
17161
|
-
[vars$
|
17162
|
-
[vars$
|
17163
|
-
[vars$
|
17164
|
-
[vars$
|
17165
|
-
[vars$
|
17166
|
-
[vars$
|
17239
|
+
[vars$5.hostWidth]: refs.width,
|
17240
|
+
[vars$5.hostDirection]: refs.direction,
|
17241
|
+
[vars$5.iconMargin]: '0.375em',
|
17242
|
+
|
17243
|
+
[vars$5.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
|
17244
|
+
[vars$5.overlay.backgroundColor]: refs.backgroundColor,
|
17245
|
+
[vars$5.overlay.backdropBackgroundColor]: 'transparent',
|
17246
|
+
[vars$5.overlay.backdropPointerEvents]: 'all',
|
17247
|
+
[vars$5.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
|
17248
|
+
[vars$5.overlay.outlineWidth]: '0',
|
17249
|
+
[vars$5.overlay.outlineColor]: 'transparent',
|
17250
|
+
[vars$5.overlay.outlineStyle]: 'none',
|
17251
|
+
[vars$5.overlay.padding]: '0',
|
17167
17252
|
};
|
17168
17253
|
|
17169
17254
|
var dateField$1 = /*#__PURE__*/Object.freeze({
|
17170
17255
|
__proto__: null,
|
17171
17256
|
default: dateField,
|
17172
|
-
vars: vars$
|
17257
|
+
vars: vars$5
|
17173
17258
|
});
|
17174
17259
|
|
17175
17260
|
const globalRefs$2 = getThemeRefs(globals);
|
@@ -17178,7 +17263,7 @@ const compVars = ListClass.cssVarList;
|
|
17178
17263
|
|
17179
17264
|
const [helperTheme, helperRefs, helperVars] = createHelperVars(
|
17180
17265
|
{ shadowColor: '#00000020' },
|
17181
|
-
componentName$
|
17266
|
+
componentName$3
|
17182
17267
|
);
|
17183
17268
|
|
17184
17269
|
const { shadowColor } = helperRefs;
|
@@ -17218,7 +17303,7 @@ const list$1 = {
|
|
17218
17303
|
},
|
17219
17304
|
};
|
17220
17305
|
|
17221
|
-
const vars$
|
17306
|
+
const vars$4 = {
|
17222
17307
|
...compVars,
|
17223
17308
|
...helperVars,
|
17224
17309
|
};
|
@@ -17226,78 +17311,78 @@ const vars$3 = {
|
|
17226
17311
|
var list$2 = /*#__PURE__*/Object.freeze({
|
17227
17312
|
__proto__: null,
|
17228
17313
|
default: list$1,
|
17229
|
-
vars: vars$
|
17314
|
+
vars: vars$4
|
17230
17315
|
});
|
17231
17316
|
|
17232
17317
|
const globalRefs$1 = getThemeRefs(globals);
|
17233
17318
|
|
17234
|
-
const vars$
|
17319
|
+
const vars$3 = ListItemClass.cssVarList;
|
17235
17320
|
|
17236
17321
|
const list = {
|
17237
|
-
[vars$
|
17238
|
-
[vars$
|
17239
|
-
[vars$
|
17240
|
-
[vars$
|
17241
|
-
[vars$
|
17242
|
-
[vars$
|
17243
|
-
[vars$
|
17244
|
-
[vars$
|
17245
|
-
[vars$
|
17246
|
-
[vars$
|
17247
|
-
[vars$
|
17322
|
+
[vars$3.backgroundColor]: globalRefs$1.colors.surface.main,
|
17323
|
+
[vars$3.padding]: globalRefs$1.spacing.lg,
|
17324
|
+
[vars$3.gap]: globalRefs$1.spacing.md,
|
17325
|
+
[vars$3.borderStyle]: 'solid',
|
17326
|
+
[vars$3.borderWidth]: globalRefs$1.border.xs,
|
17327
|
+
[vars$3.borderColor]: globalRefs$1.colors.surface.main,
|
17328
|
+
[vars$3.borderRadius]: globalRefs$1.radius.sm,
|
17329
|
+
[vars$3.cursor]: 'pointer',
|
17330
|
+
[vars$3.alignItems]: 'center',
|
17331
|
+
[vars$3.flexDirection]: 'row',
|
17332
|
+
[vars$3.transition]: 'border-color 0.2s, background-color 0.2s',
|
17248
17333
|
|
17249
17334
|
variant: {
|
17250
17335
|
tile: {
|
17251
|
-
[vars$
|
17252
|
-
[vars$
|
17253
|
-
[vars$
|
17336
|
+
[vars$3.alignItems]: 'flex-start',
|
17337
|
+
[vars$3.flexDirection]: 'column',
|
17338
|
+
[vars$3.borderColor]: globalRefs$1.colors.surface.light,
|
17254
17339
|
},
|
17255
17340
|
},
|
17256
17341
|
|
17257
17342
|
_hover: {
|
17258
|
-
[vars$
|
17343
|
+
[vars$3.backgroundColor]: globalRefs$1.colors.surface.highlight,
|
17259
17344
|
},
|
17260
17345
|
|
17261
17346
|
_active: {
|
17262
|
-
[vars$
|
17263
|
-
[vars$
|
17264
|
-
[vars$
|
17347
|
+
[vars$3.backgroundColor]: globalRefs$1.colors.surface.main,
|
17348
|
+
[vars$3.borderColor]: globalRefs$1.colors.primary.light,
|
17349
|
+
[vars$3.outline]: `1px solid ${globalRefs$1.colors.primary.light}`,
|
17265
17350
|
},
|
17266
17351
|
};
|
17267
17352
|
|
17268
17353
|
var listItem = /*#__PURE__*/Object.freeze({
|
17269
17354
|
__proto__: null,
|
17270
17355
|
default: list,
|
17271
|
-
vars: vars$
|
17356
|
+
vars: vars$3
|
17272
17357
|
});
|
17273
17358
|
|
17274
|
-
const vars$
|
17359
|
+
const vars$2 = AppsListClass.cssVarList;
|
17275
17360
|
const globalRefs = getThemeRefs(globals);
|
17276
17361
|
|
17277
17362
|
const defaultHeight = '400px';
|
17278
17363
|
|
17279
17364
|
const appsList = {
|
17280
|
-
[vars$
|
17281
|
-
[vars$
|
17282
|
-
[vars$
|
17283
|
-
[vars$
|
17365
|
+
[vars$2.itemsFontWeight]: 'normal',
|
17366
|
+
[vars$2.itemsTextAlign]: 'start',
|
17367
|
+
[vars$2.hostDirection]: globalRefs.direction,
|
17368
|
+
[vars$2.maxHeight]: defaultHeight,
|
17284
17369
|
|
17285
17370
|
_empty: {
|
17286
|
-
[vars$
|
17371
|
+
[vars$2.minHeight]: defaultHeight,
|
17287
17372
|
},
|
17288
17373
|
|
17289
17374
|
size: {
|
17290
17375
|
xs: {
|
17291
|
-
[vars$
|
17376
|
+
[vars$2.itemsFontSize]: '14px',
|
17292
17377
|
},
|
17293
17378
|
sm: {
|
17294
|
-
[vars$
|
17379
|
+
[vars$2.itemsFontSize]: '14px',
|
17295
17380
|
},
|
17296
17381
|
md: {
|
17297
|
-
[vars$
|
17382
|
+
[vars$2.itemsFontSize]: '16px',
|
17298
17383
|
},
|
17299
17384
|
lg: {
|
17300
|
-
[vars$
|
17385
|
+
[vars$2.itemsFontSize]: '20px',
|
17301
17386
|
},
|
17302
17387
|
},
|
17303
17388
|
};
|
@@ -17305,6 +17390,23 @@ const appsList = {
|
|
17305
17390
|
var appsList$1 = /*#__PURE__*/Object.freeze({
|
17306
17391
|
__proto__: null,
|
17307
17392
|
default: appsList,
|
17393
|
+
vars: vars$2
|
17394
|
+
});
|
17395
|
+
|
17396
|
+
const vars$1 = ScopesListClass.cssVarList;
|
17397
|
+
|
17398
|
+
const scopesList = {
|
17399
|
+
[vars$1.requiredInputBorderColor]: theme$1._disabled[vars$N.borderColor],
|
17400
|
+
[vars$1.requiredInputValueTextColor]: theme$1._disabled[vars$N.valueTextColor],
|
17401
|
+
[vars$1.hostWidth]: '280px',
|
17402
|
+
_fullWidth: {
|
17403
|
+
[vars$1.hostWidth]: '100%',
|
17404
|
+
},
|
17405
|
+
};
|
17406
|
+
|
17407
|
+
var scopesList$1 = /*#__PURE__*/Object.freeze({
|
17408
|
+
__proto__: null,
|
17409
|
+
default: scopesList,
|
17308
17410
|
vars: vars$1
|
17309
17411
|
});
|
17310
17412
|
|
@@ -17358,6 +17460,7 @@ const components = {
|
|
17358
17460
|
list: list$2,
|
17359
17461
|
listItem,
|
17360
17462
|
appsList: appsList$1,
|
17463
|
+
scopesList: scopesList$1,
|
17361
17464
|
};
|
17362
17465
|
|
17363
17466
|
const theme = Object.keys(components).reduce(
|
@@ -17370,7 +17473,7 @@ const vars = Object.keys(components).reduce(
|
|
17370
17473
|
);
|
17371
17474
|
|
17372
17475
|
const defaultTheme = { globals, components: theme };
|
17373
|
-
const themeVars = { globals: vars$
|
17476
|
+
const themeVars = { globals: vars$P, components: vars };
|
17374
17477
|
|
17375
17478
|
const colors = {
|
17376
17479
|
surface: {
|
@@ -17419,5 +17522,5 @@ const darkTheme = merge({}, defaultTheme, {
|
|
17419
17522
|
},
|
17420
17523
|
});
|
17421
17524
|
|
17422
|
-
export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, IconClass, ImageClass, LinkClass, ListClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, RecaptchaClass, SamlGroupMappingsClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
|
17525
|
+
export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, IconClass, ImageClass, LinkClass, ListClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, RecaptchaClass, SamlGroupMappingsClass, ScopesListClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
|
17423
17526
|
//# sourceMappingURL=index.esm.js.map
|