@ni/ok-components 1.8.3 → 1.9.0
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/all-components-bundle.js +771 -441
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +6063 -5965
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/custom-elements.json +580 -215
- package/dist/custom-elements.md +75 -34
- package/dist/esm/fv/all-fv.d.ts +1 -0
- package/dist/esm/fv/all-fv.js +1 -0
- package/dist/esm/fv/all-fv.js.map +1 -1
- package/dist/esm/fv/splitter/index.d.ts +69 -0
- package/dist/esm/fv/splitter/index.js +266 -0
- package/dist/esm/fv/splitter/index.js.map +1 -0
- package/dist/esm/fv/splitter/styles.d.ts +1 -0
- package/dist/esm/fv/splitter/styles.js +62 -0
- package/dist/esm/fv/splitter/styles.js.map +1 -0
- package/dist/esm/fv/splitter/template.d.ts +2 -0
- package/dist/esm/fv/splitter/template.js +12 -0
- package/dist/esm/fv/splitter/template.js.map +1 -0
- package/package.json +1 -1
|
@@ -14955,9 +14955,9 @@
|
|
|
14955
14955
|
const prefix = 'ni-nimble';
|
|
14956
14956
|
const styleNameFromTokenName = (tokenName) => `${prefix}-${tokenName}`;
|
|
14957
14957
|
|
|
14958
|
-
const template$
|
|
14958
|
+
const template$1n = html `<slot></slot>`;
|
|
14959
14959
|
|
|
14960
|
-
const styles$
|
|
14960
|
+
const styles$1D = css `
|
|
14961
14961
|
${display$2('contents')}
|
|
14962
14962
|
|
|
14963
14963
|
:host {
|
|
@@ -15084,8 +15084,8 @@
|
|
|
15084
15084
|
], ThemeProvider.prototype, "theme", void 0);
|
|
15085
15085
|
const nimbleDesignSystemProvider = ThemeProvider.compose({
|
|
15086
15086
|
baseName: 'theme-provider',
|
|
15087
|
-
styles: styles$
|
|
15088
|
-
template: template$
|
|
15087
|
+
styles: styles$1D,
|
|
15088
|
+
template: template$1n
|
|
15089
15089
|
});
|
|
15090
15090
|
DesignSystem.getOrCreate()
|
|
15091
15091
|
.withPrefix('nimble')
|
|
@@ -16550,7 +16550,7 @@
|
|
|
16550
16550
|
const sectionBackgroundColor = createThemeColorToken(tokenNames.sectionBackgroundColor, tokenValues.sectionBackgroundColor);
|
|
16551
16551
|
const sectionBackgroundImage = createThemeColorToken(tokenNames.sectionBackgroundImage, tokenValues.sectionBackgroundImage);
|
|
16552
16552
|
const dividerBackgroundColor = createThemeColorToken(tokenNames.dividerBackgroundColor, tokenValues.dividerBackgroundColor);
|
|
16553
|
-
createThemeColorToken(tokenNames.dividerBackgroundDynamicColor, tokenValues.dividerBackgroundDynamicColor);
|
|
16553
|
+
const dividerBackgroundDynamicColor = createThemeColorToken(tokenNames.dividerBackgroundDynamicColor, tokenValues.dividerBackgroundDynamicColor);
|
|
16554
16554
|
const fillSelectedColor = createThemeColorToken(tokenNames.fillSelectedColor, tokenValues.fillSelectedColor);
|
|
16555
16555
|
const fillSelectedRgbPartialColor = createThemeColorToken(tokenNames.fillSelectedRgbPartialColor, tokenValues.fillSelectedRgbPartialColor);
|
|
16556
16556
|
const fillHoverSelectedColor = createThemeColorToken(tokenNames.fillHoverSelectedColor, tokenValues.fillHoverSelectedColor);
|
|
@@ -16731,7 +16731,7 @@
|
|
|
16731
16731
|
}
|
|
16732
16732
|
// #endregion
|
|
16733
16733
|
|
|
16734
|
-
const styles$
|
|
16734
|
+
const styles$1C = css `
|
|
16735
16735
|
@layer base, hover, focusVisible, active, disabled, top;
|
|
16736
16736
|
|
|
16737
16737
|
@layer base {
|
|
@@ -16809,7 +16809,7 @@
|
|
|
16809
16809
|
}
|
|
16810
16810
|
`;
|
|
16811
16811
|
|
|
16812
|
-
const template$
|
|
16812
|
+
const template$1m = (_context, definition) => html `${
|
|
16813
16813
|
/* top-container div is necessary because setting contenteditable directly on the native anchor instead
|
|
16814
16814
|
leaves it focusable, unlike the behavior you get when the anchor is _within_ a contenteditable element.
|
|
16815
16815
|
*/ ''}<div
|
|
@@ -16912,8 +16912,8 @@
|
|
|
16912
16912
|
const nimbleAnchor = Anchor.compose({
|
|
16913
16913
|
baseName: 'anchor',
|
|
16914
16914
|
baseClass: Anchor$1,
|
|
16915
|
-
template: template$
|
|
16916
|
-
styles: styles$
|
|
16915
|
+
template: template$1m,
|
|
16916
|
+
styles: styles$1C,
|
|
16917
16917
|
shadowOptions: {
|
|
16918
16918
|
delegatesFocus: true
|
|
16919
16919
|
}
|
|
@@ -17022,7 +17022,7 @@
|
|
|
17022
17022
|
padding: 0;
|
|
17023
17023
|
`;
|
|
17024
17024
|
|
|
17025
|
-
const styles$
|
|
17025
|
+
const styles$1B = css `
|
|
17026
17026
|
@layer base, checked, hover, focusVisible, active, disabled, top;
|
|
17027
17027
|
|
|
17028
17028
|
@layer base {
|
|
@@ -17306,8 +17306,8 @@
|
|
|
17306
17306
|
}
|
|
17307
17307
|
`));
|
|
17308
17308
|
|
|
17309
|
-
const styles$
|
|
17310
|
-
${styles$
|
|
17309
|
+
const styles$1A = css `
|
|
17310
|
+
${styles$1B}
|
|
17311
17311
|
${buttonAppearanceVariantStyles}
|
|
17312
17312
|
|
|
17313
17313
|
.control {
|
|
@@ -17327,7 +17327,7 @@
|
|
|
17327
17327
|
}
|
|
17328
17328
|
`;
|
|
17329
17329
|
|
|
17330
|
-
const template$
|
|
17330
|
+
const template$1l = (context, definition) => html `
|
|
17331
17331
|
<a
|
|
17332
17332
|
class="control"
|
|
17333
17333
|
part="control"
|
|
@@ -17409,8 +17409,8 @@
|
|
|
17409
17409
|
], AnchorButton.prototype, "disabled", void 0);
|
|
17410
17410
|
const nimbleAnchorButton = AnchorButton.compose({
|
|
17411
17411
|
baseName: 'anchor-button',
|
|
17412
|
-
template: template$
|
|
17413
|
-
styles: styles$
|
|
17412
|
+
template: template$1l,
|
|
17413
|
+
styles: styles$1A,
|
|
17414
17414
|
shadowOptions: {
|
|
17415
17415
|
delegatesFocus: true
|
|
17416
17416
|
}
|
|
@@ -17418,7 +17418,7 @@
|
|
|
17418
17418
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleAnchorButton());
|
|
17419
17419
|
const anchorButtonTag = 'nimble-anchor-button';
|
|
17420
17420
|
|
|
17421
|
-
const styles$
|
|
17421
|
+
const styles$1z = css `
|
|
17422
17422
|
${display$2('grid')}
|
|
17423
17423
|
|
|
17424
17424
|
:host {
|
|
@@ -17501,7 +17501,7 @@
|
|
|
17501
17501
|
}
|
|
17502
17502
|
`;
|
|
17503
17503
|
|
|
17504
|
-
const template$
|
|
17504
|
+
const template$1k = (context, definition) => html `
|
|
17505
17505
|
<template
|
|
17506
17506
|
role="menuitem"
|
|
17507
17507
|
class="${x => (typeof x.startColumnCount === 'number'
|
|
@@ -17602,8 +17602,8 @@
|
|
|
17602
17602
|
// FoundationAnchor already applies the StartEnd mixin, so we don't need to do it here.
|
|
17603
17603
|
const nimbleAnchorMenuItem = AnchorMenuItem.compose({
|
|
17604
17604
|
baseName: 'anchor-menu-item',
|
|
17605
|
-
template: template$
|
|
17606
|
-
styles: styles$
|
|
17605
|
+
template: template$1k,
|
|
17606
|
+
styles: styles$1z,
|
|
17607
17607
|
shadowOptions: {
|
|
17608
17608
|
delegatesFocus: true
|
|
17609
17609
|
}
|
|
@@ -17615,7 +17615,7 @@
|
|
|
17615
17615
|
|
|
17616
17616
|
// These styles end up inside a @layer block so must use the
|
|
17617
17617
|
// cssPartial tag instead of the css tag
|
|
17618
|
-
const styles$
|
|
17618
|
+
const styles$1y = cssPartial `
|
|
17619
17619
|
.severity-text {
|
|
17620
17620
|
display: none;
|
|
17621
17621
|
font: ${errorTextFont};
|
|
@@ -17725,12 +17725,12 @@
|
|
|
17725
17725
|
const themeBehavior = (theme, styles) => new ThemeStyleSheetBehavior(theme, styles);
|
|
17726
17726
|
/* eslint-enable max-classes-per-file */
|
|
17727
17727
|
|
|
17728
|
-
const styles$
|
|
17728
|
+
const styles$1x = css `
|
|
17729
17729
|
@layer base, hover, focusVisible, active, disabled, top;
|
|
17730
17730
|
|
|
17731
17731
|
@layer base {
|
|
17732
17732
|
${display$2('inline-flex')}
|
|
17733
|
-
${styles$
|
|
17733
|
+
${styles$1y}
|
|
17734
17734
|
:host {
|
|
17735
17735
|
color: ${buttonLabelFontColor};
|
|
17736
17736
|
font: ${buttonLabelFont};
|
|
@@ -18410,8 +18410,8 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
18410
18410
|
}
|
|
18411
18411
|
`));
|
|
18412
18412
|
|
|
18413
|
-
const styles$
|
|
18414
|
-
${styles$
|
|
18413
|
+
const styles$1w = css `
|
|
18414
|
+
${styles$1x}
|
|
18415
18415
|
${'' /* Anchor specific styles */}
|
|
18416
18416
|
@layer base {
|
|
18417
18417
|
.control {
|
|
@@ -19470,13 +19470,13 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
19470
19470
|
};
|
|
19471
19471
|
|
|
19472
19472
|
// Avoiding any whitespace in the template because this is an inline element
|
|
19473
|
-
const template$
|
|
19473
|
+
const template$1j = html `<div
|
|
19474
19474
|
class="icon"
|
|
19475
19475
|
aria-hidden="true"
|
|
19476
19476
|
:innerHTML=${x => x.icon.data}
|
|
19477
19477
|
></div>`;
|
|
19478
19478
|
|
|
19479
|
-
const styles$
|
|
19479
|
+
const styles$1v = css `
|
|
19480
19480
|
${display$2('inline-flex')}
|
|
19481
19481
|
|
|
19482
19482
|
:host {
|
|
@@ -19539,8 +19539,8 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
19539
19539
|
const registerIconSvg = (baseName, iconClass) => {
|
|
19540
19540
|
const composedIcon = iconClass.compose({
|
|
19541
19541
|
baseName,
|
|
19542
|
-
template: template$
|
|
19543
|
-
styles: styles$
|
|
19542
|
+
template: template$1j,
|
|
19543
|
+
styles: styles$1v
|
|
19544
19544
|
});
|
|
19545
19545
|
DesignSystem.getOrCreate().withPrefix('nimble').register(composedIcon());
|
|
19546
19546
|
};
|
|
@@ -19664,7 +19664,7 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
19664
19664
|
*/
|
|
19665
19665
|
const StepperOrientation = Orientation;
|
|
19666
19666
|
|
|
19667
|
-
const template$
|
|
19667
|
+
const template$1i = (context, definition) => html `
|
|
19668
19668
|
<template slot="step">
|
|
19669
19669
|
<li class="
|
|
19670
19670
|
container
|
|
@@ -19811,15 +19811,15 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
19811
19811
|
], AnchorStep.prototype, "tabIndex", void 0);
|
|
19812
19812
|
const nimbleAnchorStep = AnchorStep.compose({
|
|
19813
19813
|
baseName: 'anchor-step',
|
|
19814
|
-
template: template$
|
|
19815
|
-
styles: styles$
|
|
19814
|
+
template: template$1i,
|
|
19815
|
+
styles: styles$1w,
|
|
19816
19816
|
shadowOptions: {
|
|
19817
19817
|
delegatesFocus: true
|
|
19818
19818
|
}
|
|
19819
19819
|
});
|
|
19820
19820
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleAnchorStep());
|
|
19821
19821
|
|
|
19822
|
-
const styles$
|
|
19822
|
+
const styles$1u = css `
|
|
19823
19823
|
${display$2('inline-flex')}
|
|
19824
19824
|
|
|
19825
19825
|
:host {
|
|
@@ -19936,7 +19936,7 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
19936
19936
|
}
|
|
19937
19937
|
`;
|
|
19938
19938
|
|
|
19939
|
-
const template$
|
|
19939
|
+
const template$1h = (context, definition) => html `
|
|
19940
19940
|
<template slot="anchortab" role="tab" aria-disabled="${x => x.disabled}">
|
|
19941
19941
|
<a
|
|
19942
19942
|
download="${x => x.download}"
|
|
@@ -19988,15 +19988,15 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
19988
19988
|
// FoundationAnchor already applies the StartEnd mixin, so we don't need to do it here.
|
|
19989
19989
|
const nimbleAnchorTab = AnchorTab.compose({
|
|
19990
19990
|
baseName: 'anchor-tab',
|
|
19991
|
-
template: template$
|
|
19992
|
-
styles: styles$
|
|
19991
|
+
template: template$1h,
|
|
19992
|
+
styles: styles$1u,
|
|
19993
19993
|
shadowOptions: {
|
|
19994
19994
|
delegatesFocus: true
|
|
19995
19995
|
}
|
|
19996
19996
|
});
|
|
19997
19997
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleAnchorTab());
|
|
19998
19998
|
|
|
19999
|
-
const styles$
|
|
19999
|
+
const styles$1t = css `
|
|
20000
20000
|
${display$2('flex')}
|
|
20001
20001
|
|
|
20002
20002
|
:host {
|
|
@@ -20036,12 +20036,12 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
20036
20036
|
}
|
|
20037
20037
|
`;
|
|
20038
20038
|
|
|
20039
|
-
const styles$
|
|
20040
|
-
${styles$
|
|
20039
|
+
const styles$1s = css `
|
|
20040
|
+
${styles$1B}
|
|
20041
20041
|
${buttonAppearanceVariantStyles}
|
|
20042
20042
|
`;
|
|
20043
20043
|
|
|
20044
|
-
const template$
|
|
20044
|
+
const template$1g = (context, definition) => html `
|
|
20045
20045
|
<button
|
|
20046
20046
|
class="control"
|
|
20047
20047
|
part="control"
|
|
@@ -20132,8 +20132,8 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
20132
20132
|
const nimbleButton = Button.compose({
|
|
20133
20133
|
baseName: 'button',
|
|
20134
20134
|
baseClass: Button$1,
|
|
20135
|
-
template: template$
|
|
20136
|
-
styles: styles$
|
|
20135
|
+
template: template$1g,
|
|
20136
|
+
styles: styles$1s,
|
|
20137
20137
|
shadowOptions: {
|
|
20138
20138
|
delegatesFocus: true
|
|
20139
20139
|
}
|
|
@@ -20167,7 +20167,7 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
20167
20167
|
registerIconSvg('icon-arrow-expander-right', IconArrowExpanderRight);
|
|
20168
20168
|
const iconArrowExpanderRightTag = 'nimble-icon-arrow-expander-right';
|
|
20169
20169
|
|
|
20170
|
-
const template$
|
|
20170
|
+
const template$1f = (context, definition) => html `
|
|
20171
20171
|
<div
|
|
20172
20172
|
class="tab-bar"
|
|
20173
20173
|
>
|
|
@@ -20468,15 +20468,15 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
20468
20468
|
applyMixins(AnchorTabs, StartEnd);
|
|
20469
20469
|
const nimbleAnchorTabs = AnchorTabs.compose({
|
|
20470
20470
|
baseName: 'anchor-tabs',
|
|
20471
|
-
template: template$
|
|
20472
|
-
styles: styles$
|
|
20471
|
+
template: template$1f,
|
|
20472
|
+
styles: styles$1t,
|
|
20473
20473
|
shadowOptions: {
|
|
20474
20474
|
delegatesFocus: false
|
|
20475
20475
|
}
|
|
20476
20476
|
});
|
|
20477
20477
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleAnchorTabs());
|
|
20478
20478
|
|
|
20479
|
-
const styles$
|
|
20479
|
+
const styles$1r = css `
|
|
20480
20480
|
${display$2('block')}
|
|
20481
20481
|
|
|
20482
20482
|
:host {
|
|
@@ -20581,7 +20581,7 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
20581
20581
|
}
|
|
20582
20582
|
`;
|
|
20583
20583
|
|
|
20584
|
-
const template$
|
|
20584
|
+
const template$1e = (context, definition) => html `
|
|
20585
20585
|
<template
|
|
20586
20586
|
role="treeitem"
|
|
20587
20587
|
slot="${x => (x.isNestedItem() ? 'item' : null)}"
|
|
@@ -20718,8 +20718,8 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
20718
20718
|
// FoundationAnchor already applies the StartEnd mixin, so we don't need to do it here.
|
|
20719
20719
|
const nimbleAnchorTreeItem = AnchorTreeItem.compose({
|
|
20720
20720
|
baseName: 'anchor-tree-item',
|
|
20721
|
-
template: template$
|
|
20722
|
-
styles: styles$
|
|
20721
|
+
template: template$1e,
|
|
20722
|
+
styles: styles$1r,
|
|
20723
20723
|
shadowOptions: {
|
|
20724
20724
|
delegatesFocus: true
|
|
20725
20725
|
}
|
|
@@ -20735,7 +20735,7 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
20735
20735
|
zIndex1000: '1000'
|
|
20736
20736
|
};
|
|
20737
20737
|
|
|
20738
|
-
const styles$
|
|
20738
|
+
const styles$1q = css `
|
|
20739
20739
|
${display$2('block')}
|
|
20740
20740
|
|
|
20741
20741
|
:host {
|
|
@@ -20766,14 +20766,14 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
20766
20766
|
baseName: 'anchored-region',
|
|
20767
20767
|
baseClass: AnchoredRegion$1,
|
|
20768
20768
|
template: anchoredRegionTemplate,
|
|
20769
|
-
styles: styles$
|
|
20769
|
+
styles: styles$1q
|
|
20770
20770
|
});
|
|
20771
20771
|
DesignSystem.getOrCreate()
|
|
20772
20772
|
.withPrefix('nimble')
|
|
20773
20773
|
.register(nimbleAnchoredRegion());
|
|
20774
20774
|
const anchoredRegionTag = 'nimble-anchored-region';
|
|
20775
20775
|
|
|
20776
|
-
const styles$
|
|
20776
|
+
const styles$1p = css `
|
|
20777
20777
|
${display$2('flex')}
|
|
20778
20778
|
|
|
20779
20779
|
:host {
|
|
@@ -20925,7 +20925,7 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
20925
20925
|
information: 'information'
|
|
20926
20926
|
};
|
|
20927
20927
|
|
|
20928
|
-
const template$
|
|
20928
|
+
const template$1d = html `
|
|
20929
20929
|
<${themeProviderTag} theme="${Theme.color}">
|
|
20930
20930
|
<div class="container"
|
|
20931
20931
|
role="status"
|
|
@@ -21043,8 +21043,8 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
21043
21043
|
applyMixins(Banner, ARIAGlobalStatesAndProperties);
|
|
21044
21044
|
const nimbleBanner = Banner.compose({
|
|
21045
21045
|
baseName: 'banner',
|
|
21046
|
-
template: template$
|
|
21047
|
-
styles: styles$
|
|
21046
|
+
template: template$1d,
|
|
21047
|
+
styles: styles$1p
|
|
21048
21048
|
});
|
|
21049
21049
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleBanner());
|
|
21050
21050
|
|
|
@@ -21085,7 +21085,7 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
21085
21085
|
</template>
|
|
21086
21086
|
`;
|
|
21087
21087
|
|
|
21088
|
-
const styles$
|
|
21088
|
+
const styles$1o = css `
|
|
21089
21089
|
${display$2('inline-flex')}
|
|
21090
21090
|
|
|
21091
21091
|
:host {
|
|
@@ -21189,11 +21189,11 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
21189
21189
|
baseName: 'breadcrumb',
|
|
21190
21190
|
baseClass: Breadcrumb$1,
|
|
21191
21191
|
template: breadcrumbTemplate,
|
|
21192
|
-
styles: styles$
|
|
21192
|
+
styles: styles$1o
|
|
21193
21193
|
});
|
|
21194
21194
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleBreadcrumb());
|
|
21195
21195
|
|
|
21196
|
-
const styles$
|
|
21196
|
+
const styles$1n = css `
|
|
21197
21197
|
@layer base, hover, focusVisible, active, disabled, top;
|
|
21198
21198
|
|
|
21199
21199
|
@layer base {
|
|
@@ -21290,14 +21290,14 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21290
21290
|
baseName: 'breadcrumb-item',
|
|
21291
21291
|
baseClass: BreadcrumbItem$1,
|
|
21292
21292
|
template: breadcrumbItemTemplate,
|
|
21293
|
-
styles: styles$
|
|
21293
|
+
styles: styles$1n,
|
|
21294
21294
|
separator: forwardSlash16X16.data
|
|
21295
21295
|
});
|
|
21296
21296
|
DesignSystem.getOrCreate()
|
|
21297
21297
|
.withPrefix('nimble')
|
|
21298
21298
|
.register(nimbleBreadcrumbItem());
|
|
21299
21299
|
|
|
21300
|
-
const styles$
|
|
21300
|
+
const styles$1m = css `
|
|
21301
21301
|
${display$2('flex')}
|
|
21302
21302
|
|
|
21303
21303
|
:host {
|
|
@@ -21321,7 +21321,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21321
21321
|
}
|
|
21322
21322
|
`;
|
|
21323
21323
|
|
|
21324
|
-
const template$
|
|
21324
|
+
const template$1c = html `
|
|
21325
21325
|
<section aria-labelledby="title-slot">
|
|
21326
21326
|
<span id="title-slot"><slot name="title"></slot></span>
|
|
21327
21327
|
<slot></slot>
|
|
@@ -21336,12 +21336,12 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21336
21336
|
const nimbleCard = Card.compose({
|
|
21337
21337
|
baseName: 'card',
|
|
21338
21338
|
baseClass: Card$1,
|
|
21339
|
-
template: template$
|
|
21340
|
-
styles: styles$
|
|
21339
|
+
template: template$1c,
|
|
21340
|
+
styles: styles$1m
|
|
21341
21341
|
});
|
|
21342
21342
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleCard());
|
|
21343
21343
|
|
|
21344
|
-
const styles$
|
|
21344
|
+
const styles$1l = css `
|
|
21345
21345
|
${display$2('inline-flex')}
|
|
21346
21346
|
|
|
21347
21347
|
:host {
|
|
@@ -21499,7 +21499,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21499
21499
|
const nimbleCardButton = CardButton.compose({
|
|
21500
21500
|
baseName: 'card-button',
|
|
21501
21501
|
template: buttonTemplate,
|
|
21502
|
-
styles: styles$
|
|
21502
|
+
styles: styles$1l,
|
|
21503
21503
|
shadowOptions: {
|
|
21504
21504
|
delegatesFocus: true
|
|
21505
21505
|
}
|
|
@@ -21507,7 +21507,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21507
21507
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleCardButton());
|
|
21508
21508
|
const cardButtonTag = 'nimble-card-button';
|
|
21509
21509
|
|
|
21510
|
-
const styles$
|
|
21510
|
+
const styles$1k = css `
|
|
21511
21511
|
.error-icon {
|
|
21512
21512
|
display: none;
|
|
21513
21513
|
}
|
|
@@ -21541,9 +21541,9 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21541
21541
|
}
|
|
21542
21542
|
`;
|
|
21543
21543
|
|
|
21544
|
-
const styles$
|
|
21544
|
+
const styles$1j = css `
|
|
21545
21545
|
${display$2('inline-grid')}
|
|
21546
|
-
${styles$
|
|
21546
|
+
${styles$1k}
|
|
21547
21547
|
|
|
21548
21548
|
:host {
|
|
21549
21549
|
font: ${bodyFont};
|
|
@@ -21683,7 +21683,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21683
21683
|
</div>
|
|
21684
21684
|
`;
|
|
21685
21685
|
|
|
21686
|
-
const template$
|
|
21686
|
+
const template$1b = (_context, definition) => html `
|
|
21687
21687
|
<template
|
|
21688
21688
|
role="checkbox"
|
|
21689
21689
|
aria-checked="${x => x.checked}"
|
|
@@ -21780,8 +21780,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21780
21780
|
const nimbleCheckbox = Checkbox.compose({
|
|
21781
21781
|
baseName: 'checkbox',
|
|
21782
21782
|
baseClass: Checkbox$1,
|
|
21783
|
-
template: template$
|
|
21784
|
-
styles: styles$
|
|
21783
|
+
template: template$1b,
|
|
21784
|
+
styles: styles$1j,
|
|
21785
21785
|
checkedIndicator: check16X16.data,
|
|
21786
21786
|
indeterminateIndicator: minus16X16.data
|
|
21787
21787
|
});
|
|
@@ -21793,7 +21793,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21793
21793
|
block: 'block'
|
|
21794
21794
|
};
|
|
21795
21795
|
|
|
21796
|
-
const styles$
|
|
21796
|
+
const styles$1i = css `
|
|
21797
21797
|
${display$2('inline-flex')}
|
|
21798
21798
|
|
|
21799
21799
|
:host {
|
|
@@ -21854,7 +21854,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21854
21854
|
}
|
|
21855
21855
|
`));
|
|
21856
21856
|
|
|
21857
|
-
const template$
|
|
21857
|
+
const template$1a = (context, definition) => html `
|
|
21858
21858
|
${startSlotTemplate(context, definition)}
|
|
21859
21859
|
<span
|
|
21860
21860
|
class="content"
|
|
@@ -21940,8 +21940,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21940
21940
|
applyMixins(Chip, StartEnd);
|
|
21941
21941
|
const nimbleChip = Chip.compose({
|
|
21942
21942
|
baseName: 'chip',
|
|
21943
|
-
template: template$
|
|
21944
|
-
styles: styles$
|
|
21943
|
+
template: template$1a,
|
|
21944
|
+
styles: styles$1i,
|
|
21945
21945
|
shadowOptions: {
|
|
21946
21946
|
delegatesFocus: true
|
|
21947
21947
|
}
|
|
@@ -21949,8 +21949,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21949
21949
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleChip());
|
|
21950
21950
|
const chipTag = 'nimble-chip';
|
|
21951
21951
|
|
|
21952
|
-
const styles$
|
|
21953
|
-
${styles$
|
|
21952
|
+
const styles$1h = css `
|
|
21953
|
+
${styles$1B}
|
|
21954
21954
|
${buttonAppearanceVariantStyles}
|
|
21955
21955
|
|
|
21956
21956
|
@layer checked {
|
|
@@ -21997,7 +21997,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
21997
21997
|
}
|
|
21998
21998
|
`));
|
|
21999
21999
|
|
|
22000
|
-
const template$
|
|
22000
|
+
const template$19 = (context, definition) => html `
|
|
22001
22001
|
<div
|
|
22002
22002
|
role="button"
|
|
22003
22003
|
part="control"
|
|
@@ -22092,8 +22092,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
22092
22092
|
applyMixins(ToggleButton, StartEnd, DelegatesARIAButton);
|
|
22093
22093
|
const nimbleToggleButton = ToggleButton.compose({
|
|
22094
22094
|
baseName: 'toggle-button',
|
|
22095
|
-
template: template$
|
|
22096
|
-
styles: styles$
|
|
22095
|
+
template: template$19,
|
|
22096
|
+
styles: styles$1h,
|
|
22097
22097
|
shadowOptions: {
|
|
22098
22098
|
delegatesFocus: true
|
|
22099
22099
|
}
|
|
@@ -22123,7 +22123,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
22123
22123
|
frameless: 'frameless'
|
|
22124
22124
|
};
|
|
22125
22125
|
|
|
22126
|
-
const styles$
|
|
22126
|
+
const styles$1g = css `
|
|
22127
22127
|
${display$2('inline-flex')}
|
|
22128
22128
|
|
|
22129
22129
|
:host {
|
|
@@ -22413,7 +22413,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
22413
22413
|
}
|
|
22414
22414
|
`));
|
|
22415
22415
|
|
|
22416
|
-
const styles$
|
|
22416
|
+
const styles$1f = css `
|
|
22417
22417
|
.annotated-label {
|
|
22418
22418
|
display: flex;
|
|
22419
22419
|
flex-direction: row;
|
|
@@ -22440,10 +22440,10 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
22440
22440
|
none: undefined,
|
|
22441
22441
|
standard: 'standard'};
|
|
22442
22442
|
|
|
22443
|
-
const styles$
|
|
22443
|
+
const styles$1e = css `
|
|
22444
|
+
${styles$1g}
|
|
22445
|
+
${styles$1k}
|
|
22444
22446
|
${styles$1f}
|
|
22445
|
-
${styles$1j}
|
|
22446
|
-
${styles$1e}
|
|
22447
22447
|
|
|
22448
22448
|
:host {
|
|
22449
22449
|
field-sizing: fixed;
|
|
@@ -22571,7 +22571,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
22571
22571
|
<slot></slot>
|
|
22572
22572
|
</label>
|
|
22573
22573
|
`);
|
|
22574
|
-
const template$
|
|
22574
|
+
const template$18 = (context, definition) => html `
|
|
22575
22575
|
<template
|
|
22576
22576
|
aria-disabled="${x => x.ariaDisabled}"
|
|
22577
22577
|
autocomplete="${x => x.autocomplete}"
|
|
@@ -23346,8 +23346,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
23346
23346
|
const nimbleCombobox = Combobox.compose({
|
|
23347
23347
|
baseName: 'combobox',
|
|
23348
23348
|
baseClass: FormAssociatedCombobox,
|
|
23349
|
-
template: template$
|
|
23350
|
-
styles: styles$
|
|
23349
|
+
template: template$18,
|
|
23350
|
+
styles: styles$1e,
|
|
23351
23351
|
shadowOptions: {
|
|
23352
23352
|
delegatesFocus: true
|
|
23353
23353
|
},
|
|
@@ -23391,7 +23391,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
23391
23391
|
*/
|
|
23392
23392
|
const UserDismissed = Symbol('user dismissed');
|
|
23393
23393
|
|
|
23394
|
-
const styles$
|
|
23394
|
+
const styles$1d = css `
|
|
23395
23395
|
${display$2('grid')}
|
|
23396
23396
|
|
|
23397
23397
|
dialog {
|
|
@@ -23484,7 +23484,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
23484
23484
|
}
|
|
23485
23485
|
`;
|
|
23486
23486
|
|
|
23487
|
-
const template$
|
|
23487
|
+
const template$17 = html `
|
|
23488
23488
|
<template>
|
|
23489
23489
|
<dialog
|
|
23490
23490
|
${ref('dialogElement')}
|
|
@@ -23632,13 +23632,13 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
23632
23632
|
applyMixins(Dialog, ARIAGlobalStatesAndProperties);
|
|
23633
23633
|
const nimbleDialog = Dialog.compose({
|
|
23634
23634
|
baseName: 'dialog',
|
|
23635
|
-
template: template$
|
|
23636
|
-
styles: styles$
|
|
23635
|
+
template: template$17,
|
|
23636
|
+
styles: styles$1d,
|
|
23637
23637
|
baseClass: Dialog
|
|
23638
23638
|
});
|
|
23639
23639
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleDialog());
|
|
23640
23640
|
|
|
23641
|
-
const styles$
|
|
23641
|
+
const styles$1c = css `
|
|
23642
23642
|
${display$2('block')}
|
|
23643
23643
|
|
|
23644
23644
|
:host {
|
|
@@ -23781,7 +23781,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
23781
23781
|
}
|
|
23782
23782
|
`;
|
|
23783
23783
|
|
|
23784
|
-
const template$
|
|
23784
|
+
const template$16 = html `
|
|
23785
23785
|
<dialog
|
|
23786
23786
|
${ref('dialog')}
|
|
23787
23787
|
aria-label="${x => x.ariaLabel}"
|
|
@@ -23923,8 +23923,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
23923
23923
|
applyMixins(Drawer, ARIAGlobalStatesAndProperties);
|
|
23924
23924
|
const nimbleDrawer = Drawer.compose({
|
|
23925
23925
|
baseName: 'drawer',
|
|
23926
|
-
template: template$
|
|
23927
|
-
styles: styles$
|
|
23926
|
+
template: template$16,
|
|
23927
|
+
styles: styles$1c
|
|
23928
23928
|
});
|
|
23929
23929
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleDrawer());
|
|
23930
23930
|
|
|
@@ -26764,7 +26764,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
26764
26764
|
}
|
|
26765
26765
|
}
|
|
26766
26766
|
|
|
26767
|
-
const styles$
|
|
26767
|
+
const styles$1b = css `
|
|
26768
26768
|
${display$2('none')}
|
|
26769
26769
|
`;
|
|
26770
26770
|
|
|
@@ -26837,7 +26837,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
26837
26837
|
], LabelProviderCore.prototype, "itemRemove", void 0);
|
|
26838
26838
|
const nimbleLabelProviderCore = LabelProviderCore.compose({
|
|
26839
26839
|
baseName: 'label-provider-core',
|
|
26840
|
-
styles: styles$
|
|
26840
|
+
styles: styles$1b
|
|
26841
26841
|
});
|
|
26842
26842
|
DesignSystem.getOrCreate()
|
|
26843
26843
|
.withPrefix('nimble')
|
|
@@ -27004,13 +27004,13 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27004
27004
|
], LabelProviderTable.prototype, "groupRowPlaceholderEmpty", void 0);
|
|
27005
27005
|
const nimbleLabelProviderTable = LabelProviderTable.compose({
|
|
27006
27006
|
baseName: 'label-provider-table',
|
|
27007
|
-
styles: styles$
|
|
27007
|
+
styles: styles$1b
|
|
27008
27008
|
});
|
|
27009
27009
|
DesignSystem.getOrCreate()
|
|
27010
27010
|
.withPrefix('nimble')
|
|
27011
27011
|
.register(nimbleLabelProviderTable());
|
|
27012
27012
|
|
|
27013
|
-
const styles$
|
|
27013
|
+
const styles$1a = css `
|
|
27014
27014
|
${display$2('flex')}
|
|
27015
27015
|
|
|
27016
27016
|
:host {
|
|
@@ -27086,7 +27086,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27086
27086
|
* The template for the {@link @ni/fast-foundation#(ListboxOption:class)} component.
|
|
27087
27087
|
* @public
|
|
27088
27088
|
*/
|
|
27089
|
-
const template$
|
|
27089
|
+
const template$15 = (context, definition) => html `
|
|
27090
27090
|
<template
|
|
27091
27091
|
aria-checked="${x => x.ariaChecked}"
|
|
27092
27092
|
aria-disabled="${x => x.ariaDisabled}"
|
|
@@ -27188,13 +27188,13 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27188
27188
|
const nimbleListOption = ListOption.compose({
|
|
27189
27189
|
baseName: 'list-option',
|
|
27190
27190
|
baseClass: ListboxOption,
|
|
27191
|
-
template: template$
|
|
27192
|
-
styles: styles$
|
|
27191
|
+
template: template$15,
|
|
27192
|
+
styles: styles$1a
|
|
27193
27193
|
});
|
|
27194
27194
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleListOption());
|
|
27195
27195
|
const listOptionTag = 'nimble-list-option';
|
|
27196
27196
|
|
|
27197
|
-
const styles$
|
|
27197
|
+
const styles$19 = css `
|
|
27198
27198
|
${display$2('flex')}
|
|
27199
27199
|
|
|
27200
27200
|
:host {
|
|
@@ -27256,7 +27256,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27256
27256
|
const isListOption$1 = (n) => {
|
|
27257
27257
|
return n instanceof ListOption;
|
|
27258
27258
|
};
|
|
27259
|
-
const template$
|
|
27259
|
+
const template$14 = html `
|
|
27260
27260
|
<template
|
|
27261
27261
|
role="group"
|
|
27262
27262
|
aria-label="${x => x.labelContent}"
|
|
@@ -27398,8 +27398,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27398
27398
|
const nimbleListOptionGroup = ListOptionGroup.compose({
|
|
27399
27399
|
baseName: 'list-option-group',
|
|
27400
27400
|
baseClass: FoundationElement,
|
|
27401
|
-
template: template$
|
|
27402
|
-
styles: styles$
|
|
27401
|
+
template: template$14,
|
|
27402
|
+
styles: styles$19
|
|
27403
27403
|
});
|
|
27404
27404
|
DesignSystem.getOrCreate()
|
|
27405
27405
|
.withPrefix('nimble')
|
|
@@ -27426,9 +27426,9 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27426
27426
|
attr()
|
|
27427
27427
|
], Mapping$1.prototype, "key", void 0);
|
|
27428
27428
|
|
|
27429
|
-
const template$
|
|
27429
|
+
const template$13 = html `<template slot="mapping"></template>`;
|
|
27430
27430
|
|
|
27431
|
-
const styles$
|
|
27431
|
+
const styles$18 = css `
|
|
27432
27432
|
${display$2('none')}
|
|
27433
27433
|
`;
|
|
27434
27434
|
|
|
@@ -27444,8 +27444,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27444
27444
|
], MappingEmpty.prototype, "text", void 0);
|
|
27445
27445
|
const emptyMapping = MappingEmpty.compose({
|
|
27446
27446
|
baseName: 'mapping-empty',
|
|
27447
|
-
template: template$
|
|
27448
|
-
styles: styles$
|
|
27447
|
+
template: template$13,
|
|
27448
|
+
styles: styles$18
|
|
27449
27449
|
});
|
|
27450
27450
|
DesignSystem.getOrCreate().withPrefix('nimble').register(emptyMapping());
|
|
27451
27451
|
|
|
@@ -27515,8 +27515,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27515
27515
|
], MappingIcon.prototype, "resolvedIcon", void 0);
|
|
27516
27516
|
const iconMapping = MappingIcon.compose({
|
|
27517
27517
|
baseName: 'mapping-icon',
|
|
27518
|
-
template: template$
|
|
27519
|
-
styles: styles$
|
|
27518
|
+
template: template$13,
|
|
27519
|
+
styles: styles$18
|
|
27520
27520
|
});
|
|
27521
27521
|
DesignSystem.getOrCreate().withPrefix('nimble').register(iconMapping());
|
|
27522
27522
|
|
|
@@ -27539,8 +27539,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27539
27539
|
], MappingSpinner.prototype, "textHidden", void 0);
|
|
27540
27540
|
const spinnerMapping = MappingSpinner.compose({
|
|
27541
27541
|
baseName: 'mapping-spinner',
|
|
27542
|
-
template: template$
|
|
27543
|
-
styles: styles$
|
|
27542
|
+
template: template$13,
|
|
27543
|
+
styles: styles$18
|
|
27544
27544
|
});
|
|
27545
27545
|
DesignSystem.getOrCreate().withPrefix('nimble').register(spinnerMapping());
|
|
27546
27546
|
|
|
@@ -27556,8 +27556,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27556
27556
|
], MappingText.prototype, "text", void 0);
|
|
27557
27557
|
const textMapping = MappingText.compose({
|
|
27558
27558
|
baseName: 'mapping-text',
|
|
27559
|
-
template: template$
|
|
27560
|
-
styles: styles$
|
|
27559
|
+
template: template$13,
|
|
27560
|
+
styles: styles$18
|
|
27561
27561
|
});
|
|
27562
27562
|
DesignSystem.getOrCreate().withPrefix('nimble').register(textMapping());
|
|
27563
27563
|
|
|
@@ -27859,7 +27859,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27859
27859
|
observable
|
|
27860
27860
|
], Menu$1.prototype, "itemIcons", void 0);
|
|
27861
27861
|
|
|
27862
|
-
const template$
|
|
27862
|
+
const template$12 = () => html `
|
|
27863
27863
|
<template
|
|
27864
27864
|
slot="${x => {
|
|
27865
27865
|
if (x.slot) {
|
|
@@ -27876,7 +27876,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27876
27876
|
</template>
|
|
27877
27877
|
`;
|
|
27878
27878
|
|
|
27879
|
-
const styles$
|
|
27879
|
+
const styles$17 = css `
|
|
27880
27880
|
${display$2('grid')}
|
|
27881
27881
|
|
|
27882
27882
|
:host {
|
|
@@ -27947,8 +27947,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27947
27947
|
const nimbleMenu = Menu.compose({
|
|
27948
27948
|
baseName: 'menu',
|
|
27949
27949
|
baseClass: Menu$1,
|
|
27950
|
-
template: template$
|
|
27951
|
-
styles: styles$
|
|
27950
|
+
template: template$12,
|
|
27951
|
+
styles: styles$17
|
|
27952
27952
|
});
|
|
27953
27953
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleMenu());
|
|
27954
27954
|
const menuTag = 'nimble-menu';
|
|
@@ -27965,7 +27965,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27965
27965
|
auto: 'auto'
|
|
27966
27966
|
};
|
|
27967
27967
|
|
|
27968
|
-
const styles$
|
|
27968
|
+
const styles$16 = css `
|
|
27969
27969
|
${display$2('inline-block')}
|
|
27970
27970
|
|
|
27971
27971
|
:host {
|
|
@@ -27983,7 +27983,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
27983
27983
|
}
|
|
27984
27984
|
`;
|
|
27985
27985
|
|
|
27986
|
-
const template$
|
|
27986
|
+
const template$11 = html `
|
|
27987
27987
|
<template
|
|
27988
27988
|
?open="${x => x.open}"
|
|
27989
27989
|
@focusout="${(x, c) => x.focusoutHandler(c.event)}"
|
|
@@ -28233,8 +28233,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
28233
28233
|
], MenuButton.prototype, "slottedMenus", void 0);
|
|
28234
28234
|
const nimbleMenuButton = MenuButton.compose({
|
|
28235
28235
|
baseName: 'menu-button',
|
|
28236
|
-
template: template$
|
|
28237
|
-
styles: styles$
|
|
28236
|
+
template: template$11,
|
|
28237
|
+
styles: styles$16,
|
|
28238
28238
|
shadowOptions: {
|
|
28239
28239
|
delegatesFocus: true
|
|
28240
28240
|
}
|
|
@@ -28242,7 +28242,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
28242
28242
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleMenuButton());
|
|
28243
28243
|
const menuButtonTag = 'nimble-menu-button';
|
|
28244
28244
|
|
|
28245
|
-
const styles$
|
|
28245
|
+
const styles$15 = css `
|
|
28246
28246
|
${display$2('grid')}
|
|
28247
28247
|
|
|
28248
28248
|
:host {
|
|
@@ -28339,7 +28339,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
28339
28339
|
baseName: 'menu-item',
|
|
28340
28340
|
baseClass: MenuItem$1,
|
|
28341
28341
|
template: menuItemTemplate,
|
|
28342
|
-
styles: styles$
|
|
28342
|
+
styles: styles$15,
|
|
28343
28343
|
expandCollapseGlyph: arrowExpanderRight16X16.data
|
|
28344
28344
|
});
|
|
28345
28345
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleMenuItem());
|
|
@@ -28355,10 +28355,10 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
28355
28355
|
frameless: 'frameless'
|
|
28356
28356
|
};
|
|
28357
28357
|
|
|
28358
|
-
const styles$
|
|
28358
|
+
const styles$14 = css `
|
|
28359
28359
|
${display$2('inline-block')}
|
|
28360
|
-
${styles$
|
|
28361
|
-
${styles$
|
|
28360
|
+
${styles$1k}
|
|
28361
|
+
${styles$1f}
|
|
28362
28362
|
|
|
28363
28363
|
:host {
|
|
28364
28364
|
font: ${bodyFont};
|
|
@@ -28589,7 +28589,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
28589
28589
|
* The template for the {@link @ni/fast-foundation#(NumberField:class)} component.
|
|
28590
28590
|
* @public
|
|
28591
28591
|
*/
|
|
28592
|
-
const template
|
|
28592
|
+
const template$10 = (context, definition) => html `
|
|
28593
28593
|
<template class="${x => (x.readOnly ? 'readonly' : '')}">
|
|
28594
28594
|
${labelTemplate$4}
|
|
28595
28595
|
<div class="root" part="root">
|
|
@@ -28743,8 +28743,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
28743
28743
|
const nimbleNumberField = NumberField.compose({
|
|
28744
28744
|
baseName: 'number-field',
|
|
28745
28745
|
baseClass: NumberField$1,
|
|
28746
|
-
template: template
|
|
28747
|
-
styles: styles$
|
|
28746
|
+
template: template$10,
|
|
28747
|
+
styles: styles$14,
|
|
28748
28748
|
shadowOptions: {
|
|
28749
28749
|
delegatesFocus: true
|
|
28750
28750
|
},
|
|
@@ -28787,7 +28787,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
28787
28787
|
});
|
|
28788
28788
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleNumberField());
|
|
28789
28789
|
|
|
28790
|
-
const styles$
|
|
28790
|
+
const styles$13 = css `
|
|
28791
28791
|
${display$2('inline-flex')}
|
|
28792
28792
|
|
|
28793
28793
|
:host {
|
|
@@ -28887,15 +28887,15 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
28887
28887
|
baseName: 'radio',
|
|
28888
28888
|
baseClass: Radio$1,
|
|
28889
28889
|
template: radioTemplate,
|
|
28890
|
-
styles: styles$
|
|
28890
|
+
styles: styles$13,
|
|
28891
28891
|
checkedIndicator: circleFilled16X16.data
|
|
28892
28892
|
});
|
|
28893
28893
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleRadio());
|
|
28894
28894
|
|
|
28895
|
-
const styles$
|
|
28895
|
+
const styles$12 = css `
|
|
28896
28896
|
${display$2('inline-block')}
|
|
28897
|
-
${styles$
|
|
28898
|
-
${styles$
|
|
28897
|
+
${styles$1k}
|
|
28898
|
+
${styles$1f}
|
|
28899
28899
|
|
|
28900
28900
|
.positioning-region {
|
|
28901
28901
|
display: flex;
|
|
@@ -28934,7 +28934,7 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
28934
28934
|
`;
|
|
28935
28935
|
|
|
28936
28936
|
const labelTemplate$3 = createRequiredVisibleLabelTemplate(html `<slot name="label"></slot>`);
|
|
28937
|
-
const template
|
|
28937
|
+
const template$$ = html `
|
|
28938
28938
|
<template
|
|
28939
28939
|
role="radiogroup"
|
|
28940
28940
|
aria-disabled="${x => x.disabled}"
|
|
@@ -28974,8 +28974,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
28974
28974
|
const nimbleRadioGroup = RadioGroup.compose({
|
|
28975
28975
|
baseName: 'radio-group',
|
|
28976
28976
|
baseClass: RadioGroup$1,
|
|
28977
|
-
template: template
|
|
28978
|
-
styles: styles$
|
|
28977
|
+
template: template$$,
|
|
28978
|
+
styles: styles$12,
|
|
28979
28979
|
shadowOptions: {
|
|
28980
28980
|
delegatesFocus: true
|
|
28981
28981
|
}
|
|
@@ -48741,7 +48741,7 @@ img.ProseMirror-separator {
|
|
|
48741
48741
|
//#region src/index.ts
|
|
48742
48742
|
var src_default$7 = HardBreak;
|
|
48743
48743
|
|
|
48744
|
-
const styles$
|
|
48744
|
+
const styles$11 = css `
|
|
48745
48745
|
${display$2('inline')}
|
|
48746
48746
|
|
|
48747
48747
|
.positioning-region {
|
|
@@ -48778,7 +48778,7 @@ img.ProseMirror-separator {
|
|
|
48778
48778
|
baseName: 'toolbar',
|
|
48779
48779
|
baseClass: Toolbar$1,
|
|
48780
48780
|
template: toolbarTemplate,
|
|
48781
|
-
styles: styles$
|
|
48781
|
+
styles: styles$11
|
|
48782
48782
|
});
|
|
48783
48783
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleToolbar());
|
|
48784
48784
|
const toolbarTag = 'nimble-toolbar';
|
|
@@ -48807,8 +48807,8 @@ img.ProseMirror-separator {
|
|
|
48807
48807
|
cssCustomPropertyName: null
|
|
48808
48808
|
}).withDefault(richTextLabelDefaults.richTextToggleNumberedListLabel);
|
|
48809
48809
|
|
|
48810
|
-
const styles
|
|
48811
|
-
${styles$
|
|
48810
|
+
const styles$10 = css `
|
|
48811
|
+
${styles$1g}
|
|
48812
48812
|
|
|
48813
48813
|
:host {
|
|
48814
48814
|
height: auto;
|
|
@@ -48826,7 +48826,7 @@ img.ProseMirror-separator {
|
|
|
48826
48826
|
}
|
|
48827
48827
|
`;
|
|
48828
48828
|
|
|
48829
|
-
const template$
|
|
48829
|
+
const template$_ = html `
|
|
48830
48830
|
<template>
|
|
48831
48831
|
<${anchoredRegionTag}
|
|
48832
48832
|
${ref('region')}
|
|
@@ -49114,15 +49114,15 @@ img.ProseMirror-separator {
|
|
|
49114
49114
|
], RichTextMentionListbox.prototype, "anchorElement", void 0);
|
|
49115
49115
|
const nimbleRichTextMentionListbox = RichTextMentionListbox.compose({
|
|
49116
49116
|
baseName: 'rich-text-mention-listbox',
|
|
49117
|
-
template: template$
|
|
49118
|
-
styles: styles
|
|
49117
|
+
template: template$_,
|
|
49118
|
+
styles: styles$10
|
|
49119
49119
|
});
|
|
49120
49120
|
DesignSystem.getOrCreate()
|
|
49121
49121
|
.withPrefix('nimble')
|
|
49122
49122
|
.register(nimbleRichTextMentionListbox());
|
|
49123
49123
|
const richTextMentionListboxTag = 'nimble-rich-text-mention-listbox';
|
|
49124
49124
|
|
|
49125
|
-
const template$
|
|
49125
|
+
const template$Z = html `
|
|
49126
49126
|
<template
|
|
49127
49127
|
${children$1({ property: 'childItems', filter: elements() })}
|
|
49128
49128
|
@focusout="${x => x.focusoutHandler()}"
|
|
@@ -49224,9 +49224,9 @@ img.ProseMirror-separator {
|
|
|
49224
49224
|
</template>
|
|
49225
49225
|
`;
|
|
49226
49226
|
|
|
49227
|
-
const styles
|
|
49227
|
+
const styles$$ = css `
|
|
49228
49228
|
${display$2('inline-flex')}
|
|
49229
|
-
${styles$
|
|
49229
|
+
${styles$1k}
|
|
49230
49230
|
|
|
49231
49231
|
:host {
|
|
49232
49232
|
font: ${bodyFont};
|
|
@@ -68431,8 +68431,8 @@ img.ProseMirror-separator {
|
|
|
68431
68431
|
applyMixins(RichTextEditor, ARIAGlobalStatesAndProperties);
|
|
68432
68432
|
const nimbleRichTextEditor = RichTextEditor.compose({
|
|
68433
68433
|
baseName: 'rich-text-editor',
|
|
68434
|
-
template: template$
|
|
68435
|
-
styles: styles
|
|
68434
|
+
template: template$Z,
|
|
68435
|
+
styles: styles$$,
|
|
68436
68436
|
shadowOptions: {
|
|
68437
68437
|
delegatesFocus: true
|
|
68438
68438
|
}
|
|
@@ -68441,13 +68441,13 @@ img.ProseMirror-separator {
|
|
|
68441
68441
|
.withPrefix('nimble')
|
|
68442
68442
|
.register(nimbleRichTextEditor());
|
|
68443
68443
|
|
|
68444
|
-
const template$
|
|
68444
|
+
const template$Y = html `
|
|
68445
68445
|
<template ${children$1({ property: 'childItems', filter: elements() })}>
|
|
68446
68446
|
<div ${ref('viewer')} class="viewer"></div>
|
|
68447
68447
|
</template>
|
|
68448
68448
|
`;
|
|
68449
68449
|
|
|
68450
|
-
const styles$
|
|
68450
|
+
const styles$_ = css `
|
|
68451
68451
|
${display$2('flex')}
|
|
68452
68452
|
|
|
68453
68453
|
:host {
|
|
@@ -68560,17 +68560,17 @@ img.ProseMirror-separator {
|
|
|
68560
68560
|
], RichTextViewer.prototype, "markdown", void 0);
|
|
68561
68561
|
const nimbleRichTextViewer = RichTextViewer.compose({
|
|
68562
68562
|
baseName: 'rich-text-viewer',
|
|
68563
|
-
template: template$
|
|
68564
|
-
styles: styles$
|
|
68563
|
+
template: template$Y,
|
|
68564
|
+
styles: styles$_
|
|
68565
68565
|
});
|
|
68566
68566
|
DesignSystem.getOrCreate()
|
|
68567
68567
|
.withPrefix('nimble')
|
|
68568
68568
|
.register(nimbleRichTextViewer());
|
|
68569
68569
|
|
|
68570
|
-
const styles$
|
|
68570
|
+
const styles$Z = css `
|
|
68571
|
+
${styles$1g}
|
|
68572
|
+
${styles$1k}
|
|
68571
68573
|
${styles$1f}
|
|
68572
|
-
${styles$1j}
|
|
68573
|
-
${styles$1e}
|
|
68574
68574
|
|
|
68575
68575
|
${
|
|
68576
68576
|
/* We are using flex `order` to define the visual ordering of the selected value,
|
|
@@ -68733,7 +68733,7 @@ img.ProseMirror-separator {
|
|
|
68733
68733
|
}
|
|
68734
68734
|
`));
|
|
68735
68735
|
|
|
68736
|
-
const styles$
|
|
68736
|
+
const styles$Y = css `
|
|
68737
68737
|
${display$2('inline-grid')}
|
|
68738
68738
|
|
|
68739
68739
|
:host {
|
|
@@ -68903,7 +68903,7 @@ img.ProseMirror-separator {
|
|
|
68903
68903
|
}
|
|
68904
68904
|
`));
|
|
68905
68905
|
|
|
68906
|
-
const template$
|
|
68906
|
+
const template$X = html `
|
|
68907
68907
|
<template role="progressbar">
|
|
68908
68908
|
${''
|
|
68909
68909
|
/**
|
|
@@ -68950,8 +68950,8 @@ img.ProseMirror-separator {
|
|
|
68950
68950
|
], Spinner.prototype, "appearance", void 0);
|
|
68951
68951
|
const nimbleSpinner = Spinner.compose({
|
|
68952
68952
|
baseName: 'spinner',
|
|
68953
|
-
template: template$
|
|
68954
|
-
styles: styles$
|
|
68953
|
+
template: template$X,
|
|
68954
|
+
styles: styles$Y
|
|
68955
68955
|
});
|
|
68956
68956
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleSpinner());
|
|
68957
68957
|
const spinnerTag = 'nimble-spinner';
|
|
@@ -68967,7 +68967,7 @@ img.ProseMirror-separator {
|
|
|
68967
68967
|
<slot ${ref('labelSlot')}></slot>
|
|
68968
68968
|
</label>
|
|
68969
68969
|
`);
|
|
68970
|
-
const template$
|
|
68970
|
+
const template$W = (context, definition) => html `
|
|
68971
68971
|
<template
|
|
68972
68972
|
class="${x => [
|
|
68973
68973
|
x.collapsible && 'collapsible',
|
|
@@ -70179,8 +70179,8 @@ img.ProseMirror-separator {
|
|
|
70179
70179
|
const nimbleSelect = Select.compose({
|
|
70180
70180
|
baseName: 'select',
|
|
70181
70181
|
baseClass: Select$2,
|
|
70182
|
-
template: template$
|
|
70183
|
-
styles: styles$
|
|
70182
|
+
template: template$W,
|
|
70183
|
+
styles: styles$Z,
|
|
70184
70184
|
indicator: arrowExpanderDown16X16.data,
|
|
70185
70185
|
end: html `
|
|
70186
70186
|
<${iconExclamationMarkTag}
|
|
@@ -70193,8 +70193,8 @@ img.ProseMirror-separator {
|
|
|
70193
70193
|
applyMixins(Select, StartEnd, DelegatesARIASelect);
|
|
70194
70194
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleSelect());
|
|
70195
70195
|
|
|
70196
|
-
const styles$
|
|
70197
|
-
${styles$
|
|
70196
|
+
const styles$X = css `
|
|
70197
|
+
${styles$1x}
|
|
70198
70198
|
${'' /* Button specific styles */}
|
|
70199
70199
|
@layer base {
|
|
70200
70200
|
.control {
|
|
@@ -70205,7 +70205,7 @@ img.ProseMirror-separator {
|
|
|
70205
70205
|
}
|
|
70206
70206
|
`;
|
|
70207
70207
|
|
|
70208
|
-
const template$
|
|
70208
|
+
const template$V = (context, definition) => html `
|
|
70209
70209
|
<template slot="step">
|
|
70210
70210
|
<li class="
|
|
70211
70211
|
container
|
|
@@ -70327,15 +70327,15 @@ img.ProseMirror-separator {
|
|
|
70327
70327
|
], Step.prototype, "tabIndex", void 0);
|
|
70328
70328
|
const nimbleStep = Step.compose({
|
|
70329
70329
|
baseName: 'step',
|
|
70330
|
-
template: template$
|
|
70331
|
-
styles: styles$
|
|
70330
|
+
template: template$V,
|
|
70331
|
+
styles: styles$X,
|
|
70332
70332
|
shadowOptions: {
|
|
70333
70333
|
delegatesFocus: true
|
|
70334
70334
|
}
|
|
70335
70335
|
});
|
|
70336
70336
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleStep());
|
|
70337
70337
|
|
|
70338
|
-
const styles$
|
|
70338
|
+
const styles$W = css `
|
|
70339
70339
|
${display$2('inline-flex')}
|
|
70340
70340
|
|
|
70341
70341
|
:host {
|
|
@@ -70406,7 +70406,7 @@ img.ProseMirror-separator {
|
|
|
70406
70406
|
}
|
|
70407
70407
|
`;
|
|
70408
70408
|
|
|
70409
|
-
const template$
|
|
70409
|
+
const template$U = html `
|
|
70410
70410
|
${when(x => x.showScrollButtons, html `
|
|
70411
70411
|
<${buttonTag}
|
|
70412
70412
|
content-hidden
|
|
@@ -70551,12 +70551,12 @@ img.ProseMirror-separator {
|
|
|
70551
70551
|
], Stepper.prototype, "steps", void 0);
|
|
70552
70552
|
const nimbleStepper = Stepper.compose({
|
|
70553
70553
|
baseName: 'stepper',
|
|
70554
|
-
template: template$
|
|
70555
|
-
styles: styles$
|
|
70554
|
+
template: template$U,
|
|
70555
|
+
styles: styles$W
|
|
70556
70556
|
});
|
|
70557
70557
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleStepper());
|
|
70558
70558
|
|
|
70559
|
-
const styles$
|
|
70559
|
+
const styles$V = css `
|
|
70560
70560
|
${display$2('inline-flex')}
|
|
70561
70561
|
|
|
70562
70562
|
:host {
|
|
@@ -70786,7 +70786,7 @@ img.ProseMirror-separator {
|
|
|
70786
70786
|
}
|
|
70787
70787
|
`));
|
|
70788
70788
|
|
|
70789
|
-
const template$
|
|
70789
|
+
const template$T = html `
|
|
70790
70790
|
<template
|
|
70791
70791
|
role="switch"
|
|
70792
70792
|
aria-checked="${x => x.checked}"
|
|
@@ -70830,12 +70830,12 @@ img.ProseMirror-separator {
|
|
|
70830
70830
|
const nimbleSwitch = Switch.compose({
|
|
70831
70831
|
baseClass: Switch$1,
|
|
70832
70832
|
baseName: 'switch',
|
|
70833
|
-
template: template$
|
|
70834
|
-
styles: styles$
|
|
70833
|
+
template: template$T,
|
|
70834
|
+
styles: styles$V
|
|
70835
70835
|
});
|
|
70836
70836
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleSwitch());
|
|
70837
70837
|
|
|
70838
|
-
const styles$
|
|
70838
|
+
const styles$U = css `
|
|
70839
70839
|
${display$2('inline-flex')}
|
|
70840
70840
|
|
|
70841
70841
|
:host {
|
|
@@ -70946,11 +70946,11 @@ img.ProseMirror-separator {
|
|
|
70946
70946
|
baseName: 'tab',
|
|
70947
70947
|
baseClass: Tab$1,
|
|
70948
70948
|
template: tabTemplate,
|
|
70949
|
-
styles: styles$
|
|
70949
|
+
styles: styles$U
|
|
70950
70950
|
});
|
|
70951
70951
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTab());
|
|
70952
70952
|
|
|
70953
|
-
const styles$
|
|
70953
|
+
const styles$T = css `
|
|
70954
70954
|
${display$2('block')}
|
|
70955
70955
|
|
|
70956
70956
|
:host {
|
|
@@ -70969,7 +70969,7 @@ img.ProseMirror-separator {
|
|
|
70969
70969
|
baseName: 'tab-panel',
|
|
70970
70970
|
baseClass: TabPanel$1,
|
|
70971
70971
|
template: tabPanelTemplate,
|
|
70972
|
-
styles: styles$
|
|
70972
|
+
styles: styles$T
|
|
70973
70973
|
});
|
|
70974
70974
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTabPanel());
|
|
70975
70975
|
|
|
@@ -74712,7 +74712,7 @@ img.ProseMirror-separator {
|
|
|
74712
74712
|
}
|
|
74713
74713
|
}
|
|
74714
74714
|
|
|
74715
|
-
const styles$
|
|
74715
|
+
const styles$S = css `
|
|
74716
74716
|
${display$2('flex')}
|
|
74717
74717
|
|
|
74718
74718
|
:host {
|
|
@@ -74950,7 +74950,7 @@ focus outline in that case.
|
|
|
74950
74950
|
}
|
|
74951
74951
|
`));
|
|
74952
74952
|
|
|
74953
|
-
const styles$
|
|
74953
|
+
const styles$R = css `
|
|
74954
74954
|
${display$2('flex')}
|
|
74955
74955
|
|
|
74956
74956
|
:host {
|
|
@@ -74983,7 +74983,7 @@ focus outline in that case.
|
|
|
74983
74983
|
}
|
|
74984
74984
|
`;
|
|
74985
74985
|
|
|
74986
|
-
const template$
|
|
74986
|
+
const template$S = html `
|
|
74987
74987
|
<template role="columnheader"
|
|
74988
74988
|
class="${x => (x.alignment === TableColumnAlignment.right ? 'right-align' : '')}"
|
|
74989
74989
|
aria-sort="${x => x.ariaSort}"
|
|
@@ -75069,13 +75069,13 @@ focus outline in that case.
|
|
|
75069
75069
|
], TableHeader.prototype, "isGrouped", void 0);
|
|
75070
75070
|
const nimbleTableHeader = TableHeader.compose({
|
|
75071
75071
|
baseName: 'table-header',
|
|
75072
|
-
template: template$
|
|
75073
|
-
styles: styles$
|
|
75072
|
+
template: template$S,
|
|
75073
|
+
styles: styles$R
|
|
75074
75074
|
});
|
|
75075
75075
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTableHeader());
|
|
75076
75076
|
const tableHeaderTag = 'nimble-table-header';
|
|
75077
75077
|
|
|
75078
|
-
const styles$
|
|
75078
|
+
const styles$Q = css `
|
|
75079
75079
|
:host .animating {
|
|
75080
75080
|
transition: ${mediumDelay} ease-in;
|
|
75081
75081
|
}
|
|
@@ -75100,9 +75100,9 @@ focus outline in that case.
|
|
|
75100
75100
|
}
|
|
75101
75101
|
`;
|
|
75102
75102
|
|
|
75103
|
-
const styles$
|
|
75103
|
+
const styles$P = css `
|
|
75104
75104
|
${display$2('flex')}
|
|
75105
|
-
${styles$
|
|
75105
|
+
${styles$Q}
|
|
75106
75106
|
|
|
75107
75107
|
:host {
|
|
75108
75108
|
width: fit-content;
|
|
@@ -75348,7 +75348,7 @@ focus outline in that case.
|
|
|
75348
75348
|
}
|
|
75349
75349
|
`));
|
|
75350
75350
|
|
|
75351
|
-
const styles$
|
|
75351
|
+
const styles$O = css `
|
|
75352
75352
|
${display$2('flex')}
|
|
75353
75353
|
|
|
75354
75354
|
:host {
|
|
@@ -75393,7 +75393,7 @@ focus outline in that case.
|
|
|
75393
75393
|
}
|
|
75394
75394
|
`;
|
|
75395
75395
|
|
|
75396
|
-
const template$
|
|
75396
|
+
const template$R = html `
|
|
75397
75397
|
<template role="cell" style="--ni-private-table-cell-nesting-level: ${x => x.nestingLevel}"
|
|
75398
75398
|
@focusin="${x => x.onCellFocusIn()}"
|
|
75399
75399
|
@blur="${x => x.onCellBlur()}"
|
|
@@ -75490,8 +75490,8 @@ focus outline in that case.
|
|
|
75490
75490
|
], TableCell.prototype, "nestingLevel", void 0);
|
|
75491
75491
|
const nimbleTableCell = TableCell.compose({
|
|
75492
75492
|
baseName: 'table-cell',
|
|
75493
|
-
template: template$
|
|
75494
|
-
styles: styles$
|
|
75493
|
+
template: template$R,
|
|
75494
|
+
styles: styles$O
|
|
75495
75495
|
});
|
|
75496
75496
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTableCell());
|
|
75497
75497
|
const tableCellTag = 'nimble-table-cell';
|
|
@@ -75527,7 +75527,7 @@ focus outline in that case.
|
|
|
75527
75527
|
`)}
|
|
75528
75528
|
</${tableCellTag}>
|
|
75529
75529
|
`;
|
|
75530
|
-
const template$
|
|
75530
|
+
const template$Q = html `
|
|
75531
75531
|
<template
|
|
75532
75532
|
role="row"
|
|
75533
75533
|
aria-selected=${x => x.ariaSelected}
|
|
@@ -75903,15 +75903,15 @@ focus outline in that case.
|
|
|
75903
75903
|
], TableRow.prototype, "ariaSelected", null);
|
|
75904
75904
|
const nimbleTableRow = TableRow.compose({
|
|
75905
75905
|
baseName: 'table-row',
|
|
75906
|
-
template: template$
|
|
75907
|
-
styles: styles$
|
|
75906
|
+
template: template$Q,
|
|
75907
|
+
styles: styles$P
|
|
75908
75908
|
});
|
|
75909
75909
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTableRow());
|
|
75910
75910
|
const tableRowTag = 'nimble-table-row';
|
|
75911
75911
|
|
|
75912
|
-
const styles$
|
|
75912
|
+
const styles$N = css `
|
|
75913
75913
|
${display$2('grid')}
|
|
75914
|
-
${styles$
|
|
75914
|
+
${styles$Q}
|
|
75915
75915
|
|
|
75916
75916
|
:host {
|
|
75917
75917
|
align-items: center;
|
|
@@ -76084,7 +76084,7 @@ focus outline in that case.
|
|
|
76084
76084
|
}
|
|
76085
76085
|
`));
|
|
76086
76086
|
|
|
76087
|
-
const template$
|
|
76087
|
+
const template$P = html `
|
|
76088
76088
|
<template
|
|
76089
76089
|
role="row"
|
|
76090
76090
|
@click=${x => x.onGroupExpandToggle()}
|
|
@@ -76260,8 +76260,8 @@ focus outline in that case.
|
|
|
76260
76260
|
], TableGroupRow.prototype, "allowHover", void 0);
|
|
76261
76261
|
const nimbleTableGroupRow = TableGroupRow.compose({
|
|
76262
76262
|
baseName: 'table-group-row',
|
|
76263
|
-
template: template$
|
|
76264
|
-
styles: styles$
|
|
76263
|
+
template: template$P,
|
|
76264
|
+
styles: styles$N
|
|
76265
76265
|
});
|
|
76266
76266
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTableGroupRow());
|
|
76267
76267
|
const tableGroupRowTag = 'nimble-table-group-row';
|
|
@@ -76281,7 +76281,7 @@ focus outline in that case.
|
|
|
76281
76281
|
<slot name="${x => x.slot}"></slot>
|
|
76282
76282
|
</${tableHeaderTag}>
|
|
76283
76283
|
`;
|
|
76284
|
-
const template$
|
|
76284
|
+
const template$O = html `
|
|
76285
76285
|
<template
|
|
76286
76286
|
role="treegrid"
|
|
76287
76287
|
${'' /* tabindex managed dynamically by KeyboardNavigationManager */}
|
|
@@ -81085,12 +81085,12 @@ focus outline in that case.
|
|
|
81085
81085
|
], Table$1.prototype, "windowShiftKeyDown", void 0);
|
|
81086
81086
|
const nimbleTable = Table$1.compose({
|
|
81087
81087
|
baseName: 'table',
|
|
81088
|
-
template: template$
|
|
81089
|
-
styles: styles$
|
|
81088
|
+
template: template$O,
|
|
81089
|
+
styles: styles$S
|
|
81090
81090
|
});
|
|
81091
81091
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTable());
|
|
81092
81092
|
|
|
81093
|
-
const styles$
|
|
81093
|
+
const styles$M = css `
|
|
81094
81094
|
${display$2('contents')}
|
|
81095
81095
|
|
|
81096
81096
|
.header-content {
|
|
@@ -81102,7 +81102,7 @@ focus outline in that case.
|
|
|
81102
81102
|
|
|
81103
81103
|
// Avoiding a wrapping <template> and be careful about starting and ending whitspace
|
|
81104
81104
|
// so the template can be composed into other column header templates
|
|
81105
|
-
const template$
|
|
81105
|
+
const template$N = html `<span
|
|
81106
81106
|
${overflow('hasOverflow')}
|
|
81107
81107
|
class="header-content"
|
|
81108
81108
|
title=${x => (x.hasOverflow && x.headerTextContent ? x.headerTextContent : null)}
|
|
@@ -81167,7 +81167,7 @@ focus outline in that case.
|
|
|
81167
81167
|
return ColumnWithPlaceholder;
|
|
81168
81168
|
}
|
|
81169
81169
|
|
|
81170
|
-
const styles$
|
|
81170
|
+
const styles$L = css `
|
|
81171
81171
|
${display$2('flex')}
|
|
81172
81172
|
|
|
81173
81173
|
:host {
|
|
@@ -81198,7 +81198,7 @@ focus outline in that case.
|
|
|
81198
81198
|
}
|
|
81199
81199
|
`;
|
|
81200
81200
|
|
|
81201
|
-
const template$
|
|
81201
|
+
const template$M = html `
|
|
81202
81202
|
<template
|
|
81203
81203
|
@click="${(x, c) => {
|
|
81204
81204
|
if (typeof x.cellRecord?.href === 'string') {
|
|
@@ -81290,8 +81290,8 @@ focus outline in that case.
|
|
|
81290
81290
|
], TableColumnAnchorCellView.prototype, "showAnchor", null);
|
|
81291
81291
|
const anchorCellView = TableColumnAnchorCellView.compose({
|
|
81292
81292
|
baseName: 'table-column-anchor-cell-view',
|
|
81293
|
-
template: template$
|
|
81294
|
-
styles: styles$
|
|
81293
|
+
template: template$M,
|
|
81294
|
+
styles: styles$L
|
|
81295
81295
|
});
|
|
81296
81296
|
DesignSystem.getOrCreate().withPrefix('nimble').register(anchorCellView());
|
|
81297
81297
|
const tableColumnAnchorCellViewTag = 'nimble-table-column-anchor-cell-view';
|
|
@@ -81368,7 +81368,7 @@ focus outline in that case.
|
|
|
81368
81368
|
observable
|
|
81369
81369
|
], TableColumnTextGroupHeaderViewBase.prototype, "text", void 0);
|
|
81370
81370
|
|
|
81371
|
-
const template$
|
|
81371
|
+
const template$L = html `
|
|
81372
81372
|
<span
|
|
81373
81373
|
${overflow('hasOverflow')}
|
|
81374
81374
|
title="${x => (x.hasOverflow && x.text ? x.text : null)}"
|
|
@@ -81377,7 +81377,7 @@ focus outline in that case.
|
|
|
81377
81377
|
</span>
|
|
81378
81378
|
`;
|
|
81379
81379
|
|
|
81380
|
-
const styles$
|
|
81380
|
+
const styles$K = css `
|
|
81381
81381
|
${display$2('flex')}
|
|
81382
81382
|
|
|
81383
81383
|
span {
|
|
@@ -81401,8 +81401,8 @@ focus outline in that case.
|
|
|
81401
81401
|
}
|
|
81402
81402
|
const tableColumnTextGroupHeaderView = TableColumnTextGroupHeaderView.compose({
|
|
81403
81403
|
baseName: 'table-column-text-group-header-view',
|
|
81404
|
-
template: template$
|
|
81405
|
-
styles: styles$
|
|
81404
|
+
template: template$L,
|
|
81405
|
+
styles: styles$K
|
|
81406
81406
|
});
|
|
81407
81407
|
DesignSystem.getOrCreate()
|
|
81408
81408
|
.withPrefix('nimble')
|
|
@@ -81646,8 +81646,8 @@ focus outline in that case.
|
|
|
81646
81646
|
], TableColumnAnchor.prototype, "download", void 0);
|
|
81647
81647
|
const nimbleTableColumnAnchor = TableColumnAnchor.compose({
|
|
81648
81648
|
baseName: 'table-column-anchor',
|
|
81649
|
-
template: template$
|
|
81650
|
-
styles: styles$
|
|
81649
|
+
template: template$N,
|
|
81650
|
+
styles: styles$M
|
|
81651
81651
|
});
|
|
81652
81652
|
DesignSystem.getOrCreate()
|
|
81653
81653
|
.withPrefix('nimble')
|
|
@@ -81699,15 +81699,15 @@ focus outline in that case.
|
|
|
81699
81699
|
}
|
|
81700
81700
|
const tableColumnDateTextGroupHeaderView = TableColumnDateTextGroupHeaderView.compose({
|
|
81701
81701
|
baseName: 'table-column-date-text-group-header-view',
|
|
81702
|
-
template: template$
|
|
81703
|
-
styles: styles$
|
|
81702
|
+
template: template$L,
|
|
81703
|
+
styles: styles$K
|
|
81704
81704
|
});
|
|
81705
81705
|
DesignSystem.getOrCreate()
|
|
81706
81706
|
.withPrefix('nimble')
|
|
81707
81707
|
.register(tableColumnDateTextGroupHeaderView());
|
|
81708
81708
|
const tableColumnDateTextGroupHeaderViewTag = 'nimble-table-column-date-text-group-header-view';
|
|
81709
81709
|
|
|
81710
|
-
const template$
|
|
81710
|
+
const template$K = html `
|
|
81711
81711
|
<template
|
|
81712
81712
|
class="
|
|
81713
81713
|
${x => (x.alignment === TableColumnAlignment.right ? 'right-align' : '')}
|
|
@@ -81723,7 +81723,7 @@ focus outline in that case.
|
|
|
81723
81723
|
</template>
|
|
81724
81724
|
`;
|
|
81725
81725
|
|
|
81726
|
-
const styles$
|
|
81726
|
+
const styles$J = css `
|
|
81727
81727
|
${display$2('flex')}
|
|
81728
81728
|
|
|
81729
81729
|
:host {
|
|
@@ -81825,8 +81825,8 @@ focus outline in that case.
|
|
|
81825
81825
|
}
|
|
81826
81826
|
const dateTextCellView = TableColumnDateTextCellView.compose({
|
|
81827
81827
|
baseName: 'table-column-date-text-cell-view',
|
|
81828
|
-
template: template$
|
|
81829
|
-
styles: styles$
|
|
81828
|
+
template: template$K,
|
|
81829
|
+
styles: styles$J
|
|
81830
81830
|
});
|
|
81831
81831
|
DesignSystem.getOrCreate().withPrefix('nimble').register(dateTextCellView());
|
|
81832
81832
|
const tableColumnDateTextCellViewTag = 'nimble-table-column-date-text-cell-view';
|
|
@@ -82084,8 +82084,8 @@ focus outline in that case.
|
|
|
82084
82084
|
], TableColumnDateText.prototype, "customHourCycle", void 0);
|
|
82085
82085
|
const nimbleTableColumnDateText = TableColumnDateText.compose({
|
|
82086
82086
|
baseName: 'table-column-date-text',
|
|
82087
|
-
template: template$
|
|
82088
|
-
styles: styles$
|
|
82087
|
+
template: template$N,
|
|
82088
|
+
styles: styles$M
|
|
82089
82089
|
});
|
|
82090
82090
|
DesignSystem.getOrCreate()
|
|
82091
82091
|
.withPrefix('nimble')
|
|
@@ -82101,8 +82101,8 @@ focus outline in that case.
|
|
|
82101
82101
|
}
|
|
82102
82102
|
const durationTextCellView = TableColumnDurationTextCellView.compose({
|
|
82103
82103
|
baseName: 'table-column-duration-text-cell-view',
|
|
82104
|
-
template: template$
|
|
82105
|
-
styles: styles$
|
|
82104
|
+
template: template$K,
|
|
82105
|
+
styles: styles$J
|
|
82106
82106
|
});
|
|
82107
82107
|
DesignSystem.getOrCreate()
|
|
82108
82108
|
.withPrefix('nimble')
|
|
@@ -82203,8 +82203,8 @@ focus outline in that case.
|
|
|
82203
82203
|
}
|
|
82204
82204
|
const tableColumnDurationTextGroupHeaderView = TableColumnDurationTextGroupHeaderView.compose({
|
|
82205
82205
|
baseName: 'table-column-duration-text-group-header-view',
|
|
82206
|
-
template: template$
|
|
82207
|
-
styles: styles$
|
|
82206
|
+
template: template$L,
|
|
82207
|
+
styles: styles$K
|
|
82208
82208
|
});
|
|
82209
82209
|
DesignSystem.getOrCreate()
|
|
82210
82210
|
.withPrefix('nimble')
|
|
@@ -82256,8 +82256,8 @@ focus outline in that case.
|
|
|
82256
82256
|
}
|
|
82257
82257
|
const nimbleTableColumnDurationText = TableColumnDurationText.compose({
|
|
82258
82258
|
baseName: 'table-column-duration-text',
|
|
82259
|
-
template: template$
|
|
82260
|
-
styles: styles$
|
|
82259
|
+
template: template$N,
|
|
82260
|
+
styles: styles$M
|
|
82261
82261
|
});
|
|
82262
82262
|
DesignSystem.getOrCreate()
|
|
82263
82263
|
.withPrefix('nimble')
|
|
@@ -82365,15 +82365,15 @@ focus outline in that case.
|
|
|
82365
82365
|
attr({ attribute: 'key-type' })
|
|
82366
82366
|
], TableColumnEnumBase.prototype, "keyType", void 0);
|
|
82367
82367
|
|
|
82368
|
-
const styles$
|
|
82369
|
-
${styles$
|
|
82368
|
+
const styles$I = css `
|
|
82369
|
+
${styles$M}
|
|
82370
82370
|
|
|
82371
82371
|
slot[name='mapping'] {
|
|
82372
82372
|
display: none;
|
|
82373
82373
|
}
|
|
82374
82374
|
`;
|
|
82375
82375
|
|
|
82376
|
-
const template$
|
|
82376
|
+
const template$J = html `${template$N}<slot ${slotted('mappings')} name="mapping"></slot>`;
|
|
82377
82377
|
|
|
82378
82378
|
// As the returned class is internal to the function, we can't write a signature that uses is directly, so rely on inference
|
|
82379
82379
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/explicit-function-return-type
|
|
@@ -82476,7 +82476,7 @@ focus outline in that case.
|
|
|
82476
82476
|
}
|
|
82477
82477
|
}
|
|
82478
82478
|
|
|
82479
|
-
const styles$
|
|
82479
|
+
const styles$H = css `
|
|
82480
82480
|
${display$2('inline-flex')}
|
|
82481
82481
|
|
|
82482
82482
|
:host {
|
|
@@ -82500,7 +82500,7 @@ focus outline in that case.
|
|
|
82500
82500
|
}
|
|
82501
82501
|
`;
|
|
82502
82502
|
|
|
82503
|
-
const template$
|
|
82503
|
+
const template$I = html `
|
|
82504
82504
|
${when(x => x.visualizationTemplate, html `
|
|
82505
82505
|
<span class="reserve-icon-size">
|
|
82506
82506
|
${x => x.visualizationTemplate}
|
|
@@ -82644,15 +82644,15 @@ focus outline in that case.
|
|
|
82644
82644
|
], TableColumnMappingGroupHeaderView.prototype, "visualizationTemplate", void 0);
|
|
82645
82645
|
const mappingGroupHeaderView = TableColumnMappingGroupHeaderView.compose({
|
|
82646
82646
|
baseName: 'table-column-mapping-group-header-view',
|
|
82647
|
-
template: template$
|
|
82648
|
-
styles: styles$
|
|
82647
|
+
template: template$I,
|
|
82648
|
+
styles: styles$H
|
|
82649
82649
|
});
|
|
82650
82650
|
DesignSystem.getOrCreate()
|
|
82651
82651
|
.withPrefix('nimble')
|
|
82652
82652
|
.register(mappingGroupHeaderView());
|
|
82653
82653
|
const tableColumnMappingGroupHeaderViewTag = 'nimble-table-column-mapping-group-header-view';
|
|
82654
82654
|
|
|
82655
|
-
const styles$
|
|
82655
|
+
const styles$G = css `
|
|
82656
82656
|
${display$2('inline-flex')}
|
|
82657
82657
|
|
|
82658
82658
|
:host {
|
|
@@ -82676,7 +82676,7 @@ focus outline in that case.
|
|
|
82676
82676
|
}
|
|
82677
82677
|
`;
|
|
82678
82678
|
|
|
82679
|
-
const template$
|
|
82679
|
+
const template$H = html `
|
|
82680
82680
|
${when(x => x.visualizationTemplate, html `
|
|
82681
82681
|
<span class="reserve-icon-size">
|
|
82682
82682
|
${x => x.visualizationTemplate}
|
|
@@ -82763,8 +82763,8 @@ focus outline in that case.
|
|
|
82763
82763
|
], TableColumnMappingCellView.prototype, "hasOverflow", void 0);
|
|
82764
82764
|
const mappingCellView = TableColumnMappingCellView.compose({
|
|
82765
82765
|
baseName: 'table-column-mapping-cell-view',
|
|
82766
|
-
template: template$
|
|
82767
|
-
styles: styles$
|
|
82766
|
+
template: template$H,
|
|
82767
|
+
styles: styles$G
|
|
82768
82768
|
});
|
|
82769
82769
|
DesignSystem.getOrCreate().withPrefix('nimble').register(mappingCellView());
|
|
82770
82770
|
const tableColumnMappingCellViewTag = 'nimble-table-column-mapping-cell-view';
|
|
@@ -82847,23 +82847,23 @@ focus outline in that case.
|
|
|
82847
82847
|
], TableColumnMapping.prototype, "widthMode", void 0);
|
|
82848
82848
|
const nimbleTableColumnMapping = TableColumnMapping.compose({
|
|
82849
82849
|
baseName: 'table-column-mapping',
|
|
82850
|
-
template: template$
|
|
82851
|
-
styles: styles$
|
|
82850
|
+
template: template$J,
|
|
82851
|
+
styles: styles$I
|
|
82852
82852
|
});
|
|
82853
82853
|
DesignSystem.getOrCreate()
|
|
82854
82854
|
.withPrefix('nimble')
|
|
82855
82855
|
.register(nimbleTableColumnMapping());
|
|
82856
82856
|
|
|
82857
|
-
const template$
|
|
82857
|
+
const template$G = html `
|
|
82858
82858
|
<template @delegated-event="${(x, c) => x.onDelegatedEvent(c.event)}"
|
|
82859
|
-
>${template$
|
|
82859
|
+
>${template$N}</template
|
|
82860
82860
|
>
|
|
82861
82861
|
`;
|
|
82862
82862
|
|
|
82863
82863
|
/** @internal */
|
|
82864
82864
|
const cellViewMenuSlotName = 'menu-button-menu';
|
|
82865
82865
|
|
|
82866
|
-
const template$
|
|
82866
|
+
const template$F = html `
|
|
82867
82867
|
${when(x => x.showMenuButton, html `
|
|
82868
82868
|
<${menuButtonTag}
|
|
82869
82869
|
${ref('menuButton')}
|
|
@@ -82882,7 +82882,7 @@ focus outline in that case.
|
|
|
82882
82882
|
`)}
|
|
82883
82883
|
`;
|
|
82884
82884
|
|
|
82885
|
-
const styles$
|
|
82885
|
+
const styles$F = css `
|
|
82886
82886
|
:host {
|
|
82887
82887
|
align-self: center;
|
|
82888
82888
|
width: 100%;
|
|
@@ -82957,8 +82957,8 @@ focus outline in that case.
|
|
|
82957
82957
|
], TableColumnMenuButtonCellView.prototype, "showMenuButton", null);
|
|
82958
82958
|
const menuButtonCellView = TableColumnMenuButtonCellView.compose({
|
|
82959
82959
|
baseName: 'table-column-menu-button-cell-view',
|
|
82960
|
-
template: template$
|
|
82961
|
-
styles: styles$
|
|
82960
|
+
template: template$F,
|
|
82961
|
+
styles: styles$F
|
|
82962
82962
|
});
|
|
82963
82963
|
DesignSystem.getOrCreate().withPrefix('nimble').register(menuButtonCellView());
|
|
82964
82964
|
const tableColumnMenuButtonCellViewTag = 'nimble-table-column-menu-button-cell-view';
|
|
@@ -83013,8 +83013,8 @@ focus outline in that case.
|
|
|
83013
83013
|
], TableColumnMenuButton.prototype, "menuSlot", void 0);
|
|
83014
83014
|
const nimbleTableColumnMenuButton = TableColumnMenuButton.compose({
|
|
83015
83015
|
baseName: 'table-column-menu-button',
|
|
83016
|
-
template: template$
|
|
83017
|
-
styles: styles$
|
|
83016
|
+
template: template$G,
|
|
83017
|
+
styles: styles$M
|
|
83018
83018
|
});
|
|
83019
83019
|
DesignSystem.getOrCreate()
|
|
83020
83020
|
.withPrefix('nimble')
|
|
@@ -83022,7 +83022,7 @@ focus outline in that case.
|
|
|
83022
83022
|
|
|
83023
83023
|
// Avoiding a wrapping <template> and be careful about starting and ending whitespace
|
|
83024
83024
|
// so the template can be composed into other column header templates
|
|
83025
|
-
const template$
|
|
83025
|
+
const template$E = html `<span
|
|
83026
83026
|
${overflow('hasOverflow')}
|
|
83027
83027
|
class="header-content"
|
|
83028
83028
|
title=${x => (x.hasOverflow && x.headerTextContent ? x.headerTextContent : null)}
|
|
@@ -83041,8 +83041,8 @@ focus outline in that case.
|
|
|
83041
83041
|
}
|
|
83042
83042
|
const tableColumnNumberTextGroupHeaderView = TableColumnNumberTextGroupHeaderView.compose({
|
|
83043
83043
|
baseName: 'table-column-number-text-group-header-view',
|
|
83044
|
-
template: template$
|
|
83045
|
-
styles: styles$
|
|
83044
|
+
template: template$L,
|
|
83045
|
+
styles: styles$K
|
|
83046
83046
|
});
|
|
83047
83047
|
DesignSystem.getOrCreate()
|
|
83048
83048
|
.withPrefix('nimble')
|
|
@@ -83063,8 +83063,8 @@ focus outline in that case.
|
|
|
83063
83063
|
}
|
|
83064
83064
|
const numberTextCellView = TableColumnNumberTextCellView.compose({
|
|
83065
83065
|
baseName: 'table-column-number-text-cell-view',
|
|
83066
|
-
template: template$
|
|
83067
|
-
styles: styles$
|
|
83066
|
+
template: template$K,
|
|
83067
|
+
styles: styles$J
|
|
83068
83068
|
});
|
|
83069
83069
|
DesignSystem.getOrCreate().withPrefix('nimble').register(numberTextCellView());
|
|
83070
83070
|
const tableColumnNumberTextCellViewTag = 'nimble-table-column-number-text-cell-view';
|
|
@@ -83604,8 +83604,8 @@ focus outline in that case.
|
|
|
83604
83604
|
], TableColumnNumberText.prototype, "unit", void 0);
|
|
83605
83605
|
const nimbleTableColumnNumberText = TableColumnNumberText.compose({
|
|
83606
83606
|
baseName: 'table-column-number-text',
|
|
83607
|
-
template: template$
|
|
83608
|
-
styles: styles$
|
|
83607
|
+
template: template$E,
|
|
83608
|
+
styles: styles$M
|
|
83609
83609
|
});
|
|
83610
83610
|
DesignSystem.getOrCreate()
|
|
83611
83611
|
.withPrefix('nimble')
|
|
@@ -83623,8 +83623,8 @@ focus outline in that case.
|
|
|
83623
83623
|
}
|
|
83624
83624
|
const textCellView = TableColumnTextCellView.compose({
|
|
83625
83625
|
baseName: 'table-column-text-cell-view',
|
|
83626
|
-
template: template$
|
|
83627
|
-
styles: styles$
|
|
83626
|
+
template: template$K,
|
|
83627
|
+
styles: styles$J
|
|
83628
83628
|
});
|
|
83629
83629
|
DesignSystem.getOrCreate().withPrefix('nimble').register(textCellView());
|
|
83630
83630
|
const tableColumnTextCellViewTag = 'nimble-table-column-text-cell-view';
|
|
@@ -83678,15 +83678,15 @@ focus outline in that case.
|
|
|
83678
83678
|
}
|
|
83679
83679
|
const nimbleTableColumnText = TableColumnText.compose({
|
|
83680
83680
|
baseName: 'table-column-text',
|
|
83681
|
-
template: template$
|
|
83682
|
-
styles: styles$
|
|
83681
|
+
template: template$N,
|
|
83682
|
+
styles: styles$M
|
|
83683
83683
|
});
|
|
83684
83684
|
DesignSystem.getOrCreate()
|
|
83685
83685
|
.withPrefix('nimble')
|
|
83686
83686
|
.register(nimbleTableColumnText());
|
|
83687
83687
|
|
|
83688
|
-
const styles$
|
|
83689
|
-
${styles$
|
|
83688
|
+
const styles$E = css `
|
|
83689
|
+
${styles$1t}
|
|
83690
83690
|
|
|
83691
83691
|
.tabpanel {
|
|
83692
83692
|
overflow: auto;
|
|
@@ -83767,12 +83767,12 @@ focus outline in that case.
|
|
|
83767
83767
|
const nimbleTabs = Tabs.compose({
|
|
83768
83768
|
baseName: 'tabs',
|
|
83769
83769
|
baseClass: Tabs$1,
|
|
83770
|
-
template: template$
|
|
83771
|
-
styles: styles$
|
|
83770
|
+
template: template$1f,
|
|
83771
|
+
styles: styles$E
|
|
83772
83772
|
});
|
|
83773
83773
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTabs());
|
|
83774
83774
|
|
|
83775
|
-
const styles$
|
|
83775
|
+
const styles$D = css `
|
|
83776
83776
|
${display$2('flex')}
|
|
83777
83777
|
|
|
83778
83778
|
:host {
|
|
@@ -83804,7 +83804,7 @@ focus outline in that case.
|
|
|
83804
83804
|
}
|
|
83805
83805
|
`;
|
|
83806
83806
|
|
|
83807
|
-
const template$
|
|
83807
|
+
const template$D = (context, definition) => html `
|
|
83808
83808
|
<template slot="end">
|
|
83809
83809
|
${when(x => x.defaultSlottedElements.length > 0, html `
|
|
83810
83810
|
<div class="separator"></div>
|
|
@@ -83836,8 +83836,8 @@ focus outline in that case.
|
|
|
83836
83836
|
], TabsToolbar.prototype, "defaultSlottedElements", void 0);
|
|
83837
83837
|
const nimbleTabsToolbar = TabsToolbar.compose({
|
|
83838
83838
|
baseName: 'tabs-toolbar',
|
|
83839
|
-
template: template$
|
|
83840
|
-
styles: styles$
|
|
83839
|
+
template: template$D,
|
|
83840
|
+
styles: styles$D
|
|
83841
83841
|
});
|
|
83842
83842
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTabsToolbar());
|
|
83843
83843
|
applyMixins(TabsToolbar, StartEnd);
|
|
@@ -83847,10 +83847,10 @@ focus outline in that case.
|
|
|
83847
83847
|
block: 'block'
|
|
83848
83848
|
};
|
|
83849
83849
|
|
|
83850
|
-
const styles$
|
|
83850
|
+
const styles$C = css `
|
|
83851
83851
|
${display$2('inline-flex')}
|
|
83852
|
-
${styles$
|
|
83853
|
-
${styles$
|
|
83852
|
+
${styles$1k}
|
|
83853
|
+
${styles$1f}
|
|
83854
83854
|
|
|
83855
83855
|
:host {
|
|
83856
83856
|
font: ${bodyFont};
|
|
@@ -84045,7 +84045,7 @@ focus outline in that case.
|
|
|
84045
84045
|
<slot ${slotted('defaultSlottedNodes')}></slot>
|
|
84046
84046
|
</label>
|
|
84047
84047
|
`);
|
|
84048
|
-
const template$
|
|
84048
|
+
const template$C = () => html `
|
|
84049
84049
|
${labelTemplate$1}
|
|
84050
84050
|
<div class="container">
|
|
84051
84051
|
<textarea
|
|
@@ -84193,8 +84193,8 @@ focus outline in that case.
|
|
|
84193
84193
|
const nimbleTextArea = TextArea.compose({
|
|
84194
84194
|
baseName: 'text-area',
|
|
84195
84195
|
baseClass: TextArea$1,
|
|
84196
|
-
template: template$
|
|
84197
|
-
styles: styles$
|
|
84196
|
+
template: template$C,
|
|
84197
|
+
styles: styles$C,
|
|
84198
84198
|
shadowOptions: {
|
|
84199
84199
|
delegatesFocus: true
|
|
84200
84200
|
}
|
|
@@ -84211,10 +84211,10 @@ focus outline in that case.
|
|
|
84211
84211
|
frameless: 'frameless'
|
|
84212
84212
|
};
|
|
84213
84213
|
|
|
84214
|
-
const styles$
|
|
84214
|
+
const styles$B = css `
|
|
84215
84215
|
${display$2('inline-block')}
|
|
84216
|
-
${styles$
|
|
84217
|
-
${styles$
|
|
84216
|
+
${styles$1k}
|
|
84217
|
+
${styles$1f}
|
|
84218
84218
|
|
|
84219
84219
|
:host {
|
|
84220
84220
|
font: ${bodyFont};
|
|
@@ -84491,7 +84491,7 @@ focus outline in that case.
|
|
|
84491
84491
|
* The template for the {@link @ni/fast-foundation#(TextField:class)} component.
|
|
84492
84492
|
* @public
|
|
84493
84493
|
*/
|
|
84494
|
-
const template$
|
|
84494
|
+
const template$B = (context, definition) => html `
|
|
84495
84495
|
<template
|
|
84496
84496
|
class="
|
|
84497
84497
|
${x => (x.readOnly ? 'readonly' : '')}
|
|
@@ -84580,8 +84580,8 @@ focus outline in that case.
|
|
|
84580
84580
|
const nimbleTextField = TextField.compose({
|
|
84581
84581
|
baseName: 'text-field',
|
|
84582
84582
|
baseClass: TextField$1,
|
|
84583
|
-
template: template$
|
|
84584
|
-
styles: styles$
|
|
84583
|
+
template: template$B,
|
|
84584
|
+
styles: styles$B,
|
|
84585
84585
|
shadowOptions: {
|
|
84586
84586
|
delegatesFocus: true
|
|
84587
84587
|
},
|
|
@@ -84598,7 +84598,7 @@ focus outline in that case.
|
|
|
84598
84598
|
});
|
|
84599
84599
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTextField());
|
|
84600
84600
|
|
|
84601
|
-
const styles$
|
|
84601
|
+
const styles$A = css `
|
|
84602
84602
|
${display$2('inline-flex')}
|
|
84603
84603
|
|
|
84604
84604
|
:host {
|
|
@@ -84684,7 +84684,7 @@ focus outline in that case.
|
|
|
84684
84684
|
}
|
|
84685
84685
|
`));
|
|
84686
84686
|
|
|
84687
|
-
const template$
|
|
84687
|
+
const template$A = html `
|
|
84688
84688
|
${when(x => x.tooltipVisible, html `
|
|
84689
84689
|
<${anchoredRegionTag}
|
|
84690
84690
|
class="anchored-region"
|
|
@@ -84736,8 +84736,8 @@ focus outline in that case.
|
|
|
84736
84736
|
const nimbleTooltip = Tooltip.compose({
|
|
84737
84737
|
baseName: 'tooltip',
|
|
84738
84738
|
baseClass: Tooltip$1,
|
|
84739
|
-
template: template$
|
|
84740
|
-
styles: styles$
|
|
84739
|
+
template: template$A,
|
|
84740
|
+
styles: styles$A
|
|
84741
84741
|
});
|
|
84742
84742
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTooltip());
|
|
84743
84743
|
const tooltipTag = 'nimble-tooltip';
|
|
@@ -84826,7 +84826,7 @@ focus outline in that case.
|
|
|
84826
84826
|
}
|
|
84827
84827
|
}
|
|
84828
84828
|
|
|
84829
|
-
const styles$
|
|
84829
|
+
const styles$z = css `
|
|
84830
84830
|
${display$2('block')}
|
|
84831
84831
|
|
|
84832
84832
|
:host {
|
|
@@ -85043,12 +85043,12 @@ focus outline in that case.
|
|
|
85043
85043
|
baseName: 'tree-item',
|
|
85044
85044
|
baseClass: TreeItem$1,
|
|
85045
85045
|
template: treeItemTemplate,
|
|
85046
|
-
styles: styles$
|
|
85046
|
+
styles: styles$z,
|
|
85047
85047
|
expandCollapseGlyph: arrowExpanderUp16X16.data
|
|
85048
85048
|
});
|
|
85049
85049
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTreeItem());
|
|
85050
85050
|
|
|
85051
|
-
const styles$
|
|
85051
|
+
const styles$y = css `
|
|
85052
85052
|
${display$2('flex')}
|
|
85053
85053
|
|
|
85054
85054
|
:host {
|
|
@@ -85062,7 +85062,7 @@ focus outline in that case.
|
|
|
85062
85062
|
}
|
|
85063
85063
|
`;
|
|
85064
85064
|
|
|
85065
|
-
const template$
|
|
85065
|
+
const template$z = html `
|
|
85066
85066
|
<template
|
|
85067
85067
|
role="tree"
|
|
85068
85068
|
${ref('treeView')}
|
|
@@ -85158,8 +85158,8 @@ focus outline in that case.
|
|
|
85158
85158
|
const nimbleTreeView = TreeView.compose({
|
|
85159
85159
|
baseName: 'tree-view',
|
|
85160
85160
|
baseClass: TreeView$1,
|
|
85161
|
-
template: template$
|
|
85162
|
-
styles: styles$
|
|
85161
|
+
template: template$z,
|
|
85162
|
+
styles: styles$y
|
|
85163
85163
|
});
|
|
85164
85164
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTreeView());
|
|
85165
85165
|
|
|
@@ -85275,9 +85275,9 @@ focus outline in that case.
|
|
|
85275
85275
|
}
|
|
85276
85276
|
const unitScaleByte = new UnitScaleByte();
|
|
85277
85277
|
|
|
85278
|
-
const template$
|
|
85278
|
+
const template$y = html `<template slot="unit"></template>`;
|
|
85279
85279
|
|
|
85280
|
-
const styles$
|
|
85280
|
+
const styles$x = css `
|
|
85281
85281
|
${display$2('none')}
|
|
85282
85282
|
`;
|
|
85283
85283
|
|
|
@@ -85305,8 +85305,8 @@ focus outline in that case.
|
|
|
85305
85305
|
], UnitByte.prototype, "binary", void 0);
|
|
85306
85306
|
const nimbleUnitByte = UnitByte.compose({
|
|
85307
85307
|
baseName: 'unit-byte',
|
|
85308
|
-
template: template$
|
|
85309
|
-
styles: styles$
|
|
85308
|
+
template: template$y,
|
|
85309
|
+
styles: styles$x
|
|
85310
85310
|
});
|
|
85311
85311
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleUnitByte());
|
|
85312
85312
|
|
|
@@ -85358,8 +85358,8 @@ focus outline in that case.
|
|
|
85358
85358
|
}
|
|
85359
85359
|
const nimbleUnitVolt = UnitVolt.compose({
|
|
85360
85360
|
baseName: 'unit-volt',
|
|
85361
|
-
template: template$
|
|
85362
|
-
styles: styles$
|
|
85361
|
+
template: template$y,
|
|
85362
|
+
styles: styles$x
|
|
85363
85363
|
});
|
|
85364
85364
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleUnitVolt());
|
|
85365
85365
|
|
|
@@ -100403,7 +100403,7 @@ focus outline in that case.
|
|
|
100403
100403
|
return new Table(reader.readAll());
|
|
100404
100404
|
}
|
|
100405
100405
|
|
|
100406
|
-
const template$
|
|
100406
|
+
const template$x = html `
|
|
100407
100407
|
<div class="wafer-map-container">
|
|
100408
100408
|
<svg class="svg-root">
|
|
100409
100409
|
<g ${ref('zoomContainer')} transform=${x => x.transform.toString()}>
|
|
@@ -100436,7 +100436,7 @@ focus outline in that case.
|
|
|
100436
100436
|
</div>
|
|
100437
100437
|
`;
|
|
100438
100438
|
|
|
100439
|
-
const styles$
|
|
100439
|
+
const styles$w = css `
|
|
100440
100440
|
${display$2('inline-block')}
|
|
100441
100441
|
|
|
100442
100442
|
:host {
|
|
@@ -103461,8 +103461,8 @@ focus outline in that case.
|
|
|
103461
103461
|
], WaferMap.prototype, "colorScale", void 0);
|
|
103462
103462
|
const nimbleWaferMap = WaferMap.compose({
|
|
103463
103463
|
baseName: 'wafer-map',
|
|
103464
|
-
template: template$
|
|
103465
|
-
styles: styles$
|
|
103464
|
+
template: template$x,
|
|
103465
|
+
styles: styles$w
|
|
103466
103466
|
});
|
|
103467
103467
|
DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleWaferMap());
|
|
103468
103468
|
|
|
@@ -103474,7 +103474,7 @@ focus outline in that case.
|
|
|
103474
103474
|
*/
|
|
103475
103475
|
const display$1 = (displayValue) => `${display$3(displayValue)}:host{box-sizing:border-box;}*{box-sizing:border-box;}:host::before,:host::after,::before,::after{box-sizing:border-box;}`;
|
|
103476
103476
|
|
|
103477
|
-
const styles$
|
|
103477
|
+
const styles$v = css `
|
|
103478
103478
|
${display$1('flex')}
|
|
103479
103479
|
|
|
103480
103480
|
:host {
|
|
@@ -103564,7 +103564,7 @@ focus outline in that case.
|
|
|
103564
103564
|
}
|
|
103565
103565
|
`;
|
|
103566
103566
|
|
|
103567
|
-
const template$
|
|
103567
|
+
const template$w = html `
|
|
103568
103568
|
<div class="toolbar ${x => (x.toolbarEmpty ? 'toolbar-empty' : '')}">
|
|
103569
103569
|
<slot name="toolbar" ${slotted({ property: 'slottedToolbarElements' })}></slot>
|
|
103570
103570
|
</div>
|
|
@@ -103955,16 +103955,16 @@ focus outline in that case.
|
|
|
103955
103955
|
], ChatConversation.prototype, "slottedEndElements", void 0);
|
|
103956
103956
|
const sprightChatConversation = ChatConversation.compose({
|
|
103957
103957
|
baseName: 'chat-conversation',
|
|
103958
|
-
template: template$
|
|
103959
|
-
styles: styles$
|
|
103958
|
+
template: template$w,
|
|
103959
|
+
styles: styles$v
|
|
103960
103960
|
});
|
|
103961
103961
|
DesignSystem.getOrCreate()
|
|
103962
103962
|
.withPrefix('spright')
|
|
103963
103963
|
.register(sprightChatConversation());
|
|
103964
103964
|
|
|
103965
|
-
const styles$
|
|
103965
|
+
const styles$u = css `
|
|
103966
103966
|
${display$1('flex')}
|
|
103967
|
-
${styles$
|
|
103967
|
+
${styles$1k}
|
|
103968
103968
|
|
|
103969
103969
|
:host {
|
|
103970
103970
|
width: 100%;
|
|
@@ -104108,7 +104108,7 @@ focus outline in that case.
|
|
|
104108
104108
|
}
|
|
104109
104109
|
`;
|
|
104110
104110
|
|
|
104111
|
-
const template$
|
|
104111
|
+
const template$v = html `
|
|
104112
104112
|
<div class="container">
|
|
104113
104113
|
<section class="attachments ${x => (x.attachmentsIsEmpty ? '' : 'has-content')}">
|
|
104114
104114
|
<slot
|
|
@@ -104360,8 +104360,8 @@ focus outline in that case.
|
|
|
104360
104360
|
], ChatInput.prototype, "slottedAttachmentsElements", void 0);
|
|
104361
104361
|
const sprightChatInput = ChatInput.compose({
|
|
104362
104362
|
baseName: 'chat-input',
|
|
104363
|
-
template: template$
|
|
104364
|
-
styles: styles$
|
|
104363
|
+
template: template$v,
|
|
104364
|
+
styles: styles$u,
|
|
104365
104365
|
shadowOptions: {
|
|
104366
104366
|
delegatesFocus: true
|
|
104367
104367
|
}
|
|
@@ -104379,7 +104379,7 @@ focus outline in that case.
|
|
|
104379
104379
|
inbound: 'inbound'
|
|
104380
104380
|
};
|
|
104381
104381
|
|
|
104382
|
-
const styles$
|
|
104382
|
+
const styles$t = css `
|
|
104383
104383
|
${display$1('flex')}
|
|
104384
104384
|
|
|
104385
104385
|
:host {
|
|
@@ -104453,7 +104453,7 @@ focus outline in that case.
|
|
|
104453
104453
|
}
|
|
104454
104454
|
`;
|
|
104455
104455
|
|
|
104456
|
-
const template$
|
|
104456
|
+
const template$u = (context, definition) => html `
|
|
104457
104457
|
<div class="container">
|
|
104458
104458
|
${startSlotTemplate(context, definition)}
|
|
104459
104459
|
<section class="message-content">
|
|
@@ -104502,12 +104502,12 @@ focus outline in that case.
|
|
|
104502
104502
|
applyMixins(ChatMessage, StartEnd);
|
|
104503
104503
|
const sprightChatMessage = ChatMessage.compose({
|
|
104504
104504
|
baseName: 'chat-message',
|
|
104505
|
-
template: template$
|
|
104506
|
-
styles: styles$
|
|
104505
|
+
template: template$u,
|
|
104506
|
+
styles: styles$t
|
|
104507
104507
|
});
|
|
104508
104508
|
DesignSystem.getOrCreate().withPrefix('spright').register(sprightChatMessage());
|
|
104509
104509
|
|
|
104510
|
-
const styles$
|
|
104510
|
+
const styles$s = css `
|
|
104511
104511
|
${display$1('flex')}
|
|
104512
104512
|
|
|
104513
104513
|
:host {
|
|
@@ -104565,7 +104565,7 @@ focus outline in that case.
|
|
|
104565
104565
|
}
|
|
104566
104566
|
`;
|
|
104567
104567
|
|
|
104568
|
-
const template$
|
|
104568
|
+
const template$t = (context, definition) => html `
|
|
104569
104569
|
<div class="container">
|
|
104570
104570
|
${startSlotTemplate(context, definition)}
|
|
104571
104571
|
<section class="message-content">
|
|
@@ -104605,12 +104605,12 @@ focus outline in that case.
|
|
|
104605
104605
|
applyMixins(ChatMessageInbound, StartEnd);
|
|
104606
104606
|
const sprightChatMessageInbound = ChatMessageInbound.compose({
|
|
104607
104607
|
baseName: 'chat-message-inbound',
|
|
104608
|
-
template: template$
|
|
104609
|
-
styles: styles$
|
|
104608
|
+
template: template$t,
|
|
104609
|
+
styles: styles$s
|
|
104610
104610
|
});
|
|
104611
104611
|
DesignSystem.getOrCreate().withPrefix('spright').register(sprightChatMessageInbound());
|
|
104612
104612
|
|
|
104613
|
-
const styles$
|
|
104613
|
+
const styles$r = css `
|
|
104614
104614
|
${display$1('flex')}
|
|
104615
104615
|
|
|
104616
104616
|
:host {
|
|
@@ -104644,7 +104644,7 @@ focus outline in that case.
|
|
|
104644
104644
|
}
|
|
104645
104645
|
`;
|
|
104646
104646
|
|
|
104647
|
-
const template$
|
|
104647
|
+
const template$s = () => html `
|
|
104648
104648
|
<div class="container">
|
|
104649
104649
|
<section class="message-content">
|
|
104650
104650
|
<slot></slot>
|
|
@@ -104666,12 +104666,12 @@ focus outline in that case.
|
|
|
104666
104666
|
}
|
|
104667
104667
|
const sprightChatMessageOutbound = ChatMessageOutbound.compose({
|
|
104668
104668
|
baseName: 'chat-message-outbound',
|
|
104669
|
-
template: template$
|
|
104670
|
-
styles: styles$
|
|
104669
|
+
template: template$s,
|
|
104670
|
+
styles: styles$r
|
|
104671
104671
|
});
|
|
104672
104672
|
DesignSystem.getOrCreate().withPrefix('spright').register(sprightChatMessageOutbound());
|
|
104673
104673
|
|
|
104674
|
-
const styles$
|
|
104674
|
+
const styles$q = css `
|
|
104675
104675
|
${display$1('flex')}
|
|
104676
104676
|
|
|
104677
104677
|
:host {
|
|
@@ -104698,7 +104698,7 @@ focus outline in that case.
|
|
|
104698
104698
|
}
|
|
104699
104699
|
`;
|
|
104700
104700
|
|
|
104701
|
-
const template$
|
|
104701
|
+
const template$r = () => html `
|
|
104702
104702
|
<div class="container">
|
|
104703
104703
|
<section class="message-content">
|
|
104704
104704
|
<slot></slot>
|
|
@@ -104718,12 +104718,12 @@ focus outline in that case.
|
|
|
104718
104718
|
}
|
|
104719
104719
|
const sprightChatMessageSystem = ChatMessageSystem.compose({
|
|
104720
104720
|
baseName: 'chat-message-system',
|
|
104721
|
-
template: template$
|
|
104722
|
-
styles: styles$
|
|
104721
|
+
template: template$r,
|
|
104722
|
+
styles: styles$q
|
|
104723
104723
|
});
|
|
104724
104724
|
DesignSystem.getOrCreate().withPrefix('spright').register(sprightChatMessageSystem());
|
|
104725
104725
|
|
|
104726
|
-
const styles$
|
|
104726
|
+
const styles$p = css `
|
|
104727
104727
|
${display$1('flex')}
|
|
104728
104728
|
|
|
104729
104729
|
:host {
|
|
@@ -104827,13 +104827,13 @@ focus outline in that case.
|
|
|
104827
104827
|
<path class="nigel-chat-dark-0" d="M11.36,7.6l-.03.02c-1.12.61-2.04,1.53-2.65,2.65l-.02.03c-.1.18-.35.18-.45,0l-.02-.03c-.61-1.12-1.53-2.04-2.65-2.65l-.03-.02c-.18-.1-.18-.35,0-.45l.03-.02c1.12-.61,2.04-1.53,2.65-2.65l.02-.03c.1-.18.35-.18.45,0l.02.03c.61,1.12,1.53,2.04,2.65,2.65l.03.02c.18.1.18.35,0,.45Z"/>
|
|
104828
104828
|
</svg>`;
|
|
104829
104829
|
|
|
104830
|
-
const template$
|
|
104830
|
+
const template$q = html `
|
|
104831
104831
|
<div class="icon light-icon" aria-hidden="true" :innerHTML="${() => nigelChatLightData}"></div>
|
|
104832
104832
|
<div class="icon dark-icon" aria-hidden="true" :innerHTML="${() => nigelChatDarkData}"></div>
|
|
104833
104833
|
`;
|
|
104834
104834
|
|
|
104835
|
-
const styles$
|
|
104836
|
-
${styles$
|
|
104835
|
+
const styles$o = css `
|
|
104836
|
+
${styles$1v}
|
|
104837
104837
|
|
|
104838
104838
|
.dark-icon {
|
|
104839
104839
|
display: none;
|
|
@@ -104856,15 +104856,15 @@ focus outline in that case.
|
|
|
104856
104856
|
}
|
|
104857
104857
|
const sprightIconNigelChat = IconNigelChat.compose({
|
|
104858
104858
|
baseName: 'icon-nigel-chat',
|
|
104859
|
-
template: template$
|
|
104860
|
-
styles: styles$
|
|
104859
|
+
template: template$q,
|
|
104860
|
+
styles: styles$o
|
|
104861
104861
|
});
|
|
104862
104862
|
DesignSystem.getOrCreate()
|
|
104863
104863
|
.withPrefix('spright')
|
|
104864
104864
|
.register(sprightIconNigelChat());
|
|
104865
104865
|
const iconNigelChatTag = 'spright-icon-nigel-chat';
|
|
104866
104866
|
|
|
104867
|
-
const template$
|
|
104867
|
+
const template$p = () => html `
|
|
104868
104868
|
<div class="container">
|
|
104869
104869
|
<div class="brand-icon">
|
|
104870
104870
|
<slot name="brand-icon">
|
|
@@ -104896,8 +104896,8 @@ focus outline in that case.
|
|
|
104896
104896
|
], ChatMessageWelcome.prototype, "subtitle", void 0);
|
|
104897
104897
|
const sprightChatMessageWelcome = ChatMessageWelcome.compose({
|
|
104898
104898
|
baseName: 'chat-message-welcome',
|
|
104899
|
-
template: template$
|
|
104900
|
-
styles: styles$
|
|
104899
|
+
template: template$p,
|
|
104900
|
+
styles: styles$p
|
|
104901
104901
|
});
|
|
104902
104902
|
DesignSystem.getOrCreate().withPrefix('spright').register(sprightChatMessageWelcome());
|
|
104903
104903
|
|
|
@@ -104918,13 +104918,13 @@ focus outline in that case.
|
|
|
104918
104918
|
*/
|
|
104919
104919
|
class IconBreakpointConditional extends Icon {
|
|
104920
104920
|
}
|
|
104921
|
-
const template$
|
|
104921
|
+
const template$o = html `
|
|
104922
104922
|
<div class="icon" aria-hidden="true" :innerHTML="${() => iconData$6}"></div>
|
|
104923
104923
|
`;
|
|
104924
104924
|
const sprightIconBreakpointConditional = IconBreakpointConditional.compose({
|
|
104925
104925
|
baseName: 'icon-breakpoint-conditional',
|
|
104926
|
-
template: template$
|
|
104927
|
-
styles: styles$
|
|
104926
|
+
template: template$o,
|
|
104927
|
+
styles: styles$1v
|
|
104928
104928
|
});
|
|
104929
104929
|
DesignSystem.getOrCreate()
|
|
104930
104930
|
.withPrefix('spright')
|
|
@@ -104949,13 +104949,13 @@ focus outline in that case.
|
|
|
104949
104949
|
*/
|
|
104950
104950
|
class IconBreakpointDisabled extends Icon {
|
|
104951
104951
|
}
|
|
104952
|
-
const template$
|
|
104952
|
+
const template$n = html `
|
|
104953
104953
|
<div class="icon" aria-hidden="true" :innerHTML="${() => iconData$5}"></div>
|
|
104954
104954
|
`;
|
|
104955
104955
|
const sprightIconBreakpointDisabled = IconBreakpointDisabled.compose({
|
|
104956
104956
|
baseName: 'icon-breakpoint-disabled',
|
|
104957
|
-
template: template$
|
|
104958
|
-
styles: styles$
|
|
104957
|
+
template: template$n,
|
|
104958
|
+
styles: styles$1v
|
|
104959
104959
|
});
|
|
104960
104960
|
DesignSystem.getOrCreate()
|
|
104961
104961
|
.withPrefix('spright')
|
|
@@ -104979,13 +104979,13 @@ focus outline in that case.
|
|
|
104979
104979
|
*/
|
|
104980
104980
|
class IconBreakpointEnabled extends Icon {
|
|
104981
104981
|
}
|
|
104982
|
-
const template$
|
|
104982
|
+
const template$m = html `
|
|
104983
104983
|
<div class="icon" aria-hidden="true" :innerHTML="${() => iconData$4}"></div>
|
|
104984
104984
|
`;
|
|
104985
104985
|
const sprightIconBreakpointEnabled = IconBreakpointEnabled.compose({
|
|
104986
104986
|
baseName: 'icon-breakpoint-enabled',
|
|
104987
|
-
template: template$
|
|
104988
|
-
styles: styles$
|
|
104987
|
+
template: template$m,
|
|
104988
|
+
styles: styles$1v
|
|
104989
104989
|
});
|
|
104990
104990
|
DesignSystem.getOrCreate()
|
|
104991
104991
|
.withPrefix('spright')
|
|
@@ -105009,13 +105009,13 @@ focus outline in that case.
|
|
|
105009
105009
|
*/
|
|
105010
105010
|
class IconBreakpointExecutionPointer extends Icon {
|
|
105011
105011
|
}
|
|
105012
|
-
const template$
|
|
105012
|
+
const template$l = html `
|
|
105013
105013
|
<div class="icon" aria-hidden="true" :innerHTML="${() => iconData$3}"></div>
|
|
105014
105014
|
`;
|
|
105015
105015
|
const sprightIconBreakpointExecutionPointer = IconBreakpointExecutionPointer.compose({
|
|
105016
105016
|
baseName: 'icon-breakpoint-execution-pointer',
|
|
105017
|
-
template: template$
|
|
105018
|
-
styles: styles$
|
|
105017
|
+
template: template$l,
|
|
105018
|
+
styles: styles$1v
|
|
105019
105019
|
});
|
|
105020
105020
|
DesignSystem.getOrCreate()
|
|
105021
105021
|
.withPrefix('spright')
|
|
@@ -105043,13 +105043,13 @@ focus outline in that case.
|
|
|
105043
105043
|
*/
|
|
105044
105044
|
class IconBreakpointHitDisabled extends Icon {
|
|
105045
105045
|
}
|
|
105046
|
-
const template$
|
|
105046
|
+
const template$k = html `
|
|
105047
105047
|
<div class="icon" aria-hidden="true" :innerHTML="${() => iconData$2}"></div>
|
|
105048
105048
|
`;
|
|
105049
105049
|
const sprightIconBreakpointHitDisabled = IconBreakpointHitDisabled.compose({
|
|
105050
105050
|
baseName: 'icon-breakpoint-hit-disabled',
|
|
105051
|
-
template: template$
|
|
105052
|
-
styles: styles$
|
|
105051
|
+
template: template$k,
|
|
105052
|
+
styles: styles$1v
|
|
105053
105053
|
});
|
|
105054
105054
|
DesignSystem.getOrCreate()
|
|
105055
105055
|
.withPrefix('spright')
|
|
@@ -105078,13 +105078,13 @@ focus outline in that case.
|
|
|
105078
105078
|
*/
|
|
105079
105079
|
class IconBreakpointHit extends Icon {
|
|
105080
105080
|
}
|
|
105081
|
-
const template$
|
|
105081
|
+
const template$j = html `
|
|
105082
105082
|
<div class="icon" aria-hidden="true" :innerHTML="${() => iconData$1}"></div>
|
|
105083
105083
|
`;
|
|
105084
105084
|
const sprightIconBreakpointHit = IconBreakpointHit.compose({
|
|
105085
105085
|
baseName: 'icon-breakpoint-hit',
|
|
105086
|
-
template: template$
|
|
105087
|
-
styles: styles$
|
|
105086
|
+
template: template$j,
|
|
105087
|
+
styles: styles$1v
|
|
105088
105088
|
});
|
|
105089
105089
|
DesignSystem.getOrCreate()
|
|
105090
105090
|
.withPrefix('spright')
|
|
@@ -105109,21 +105109,21 @@ focus outline in that case.
|
|
|
105109
105109
|
*/
|
|
105110
105110
|
class IconBreakpointHover extends Icon {
|
|
105111
105111
|
}
|
|
105112
|
-
const template$
|
|
105112
|
+
const template$i = html `
|
|
105113
105113
|
<div class="icon" aria-hidden="true" :innerHTML="${() => iconData}"></div>
|
|
105114
105114
|
`;
|
|
105115
105115
|
const sprightIconBreakpointHover = IconBreakpointHover.compose({
|
|
105116
105116
|
baseName: 'icon-breakpoint-hover',
|
|
105117
|
-
template: template$
|
|
105118
|
-
styles: styles$
|
|
105117
|
+
template: template$i,
|
|
105118
|
+
styles: styles$1v
|
|
105119
105119
|
});
|
|
105120
105120
|
DesignSystem.getOrCreate()
|
|
105121
105121
|
.withPrefix('spright')
|
|
105122
105122
|
.register(sprightIconBreakpointHover());
|
|
105123
105123
|
const iconBreakpointHoverTag = 'spright-icon-breakpoint-hover';
|
|
105124
105124
|
|
|
105125
|
-
const styles$
|
|
105126
|
-
${styles$
|
|
105125
|
+
const styles$n = css `
|
|
105126
|
+
${styles$1v}
|
|
105127
105127
|
|
|
105128
105128
|
.icon svg {
|
|
105129
105129
|
fill: ${calendarEventBorderReservationColor};
|
|
@@ -105140,15 +105140,15 @@ focus outline in that case.
|
|
|
105140
105140
|
}
|
|
105141
105141
|
const sprightIconWorkItemCalendarWeek = IconWorkItemCalendarWeek.compose({
|
|
105142
105142
|
baseName: 'icon-work-item-calendar-week',
|
|
105143
|
-
template: template$
|
|
105144
|
-
styles: styles$
|
|
105143
|
+
template: template$1j,
|
|
105144
|
+
styles: styles$n
|
|
105145
105145
|
});
|
|
105146
105146
|
DesignSystem.getOrCreate()
|
|
105147
105147
|
.withPrefix('spright')
|
|
105148
105148
|
.register(sprightIconWorkItemCalendarWeek());
|
|
105149
105149
|
|
|
105150
|
-
const styles$
|
|
105151
|
-
${styles$
|
|
105150
|
+
const styles$m = css `
|
|
105151
|
+
${styles$1v}
|
|
105152
105152
|
|
|
105153
105153
|
.icon svg {
|
|
105154
105154
|
fill: ${calendarEventBorderCalibrationColor};
|
|
@@ -105165,15 +105165,15 @@ focus outline in that case.
|
|
|
105165
105165
|
}
|
|
105166
105166
|
const sprightIconWorkItemCalipers = IconWorkItemCalipers.compose({
|
|
105167
105167
|
baseName: 'icon-work-item-calipers',
|
|
105168
|
-
template: template$
|
|
105169
|
-
styles: styles$
|
|
105168
|
+
template: template$1j,
|
|
105169
|
+
styles: styles$m
|
|
105170
105170
|
});
|
|
105171
105171
|
DesignSystem.getOrCreate()
|
|
105172
105172
|
.withPrefix('spright')
|
|
105173
105173
|
.register(sprightIconWorkItemCalipers());
|
|
105174
105174
|
|
|
105175
|
-
const styles$
|
|
105176
|
-
${styles$
|
|
105175
|
+
const styles$l = css `
|
|
105176
|
+
${styles$1v}
|
|
105177
105177
|
|
|
105178
105178
|
.icon svg {
|
|
105179
105179
|
fill: ${calendarEventBorderTransportOrderColor};
|
|
@@ -105190,15 +105190,15 @@ focus outline in that case.
|
|
|
105190
105190
|
}
|
|
105191
105191
|
const sprightIconWorkItemForklift = IconWorkItemForklift.compose({
|
|
105192
105192
|
baseName: 'icon-work-item-forklift',
|
|
105193
|
-
template: template$
|
|
105194
|
-
styles: styles$
|
|
105193
|
+
template: template$1j,
|
|
105194
|
+
styles: styles$l
|
|
105195
105195
|
});
|
|
105196
105196
|
DesignSystem.getOrCreate()
|
|
105197
105197
|
.withPrefix('spright')
|
|
105198
105198
|
.register(sprightIconWorkItemForklift());
|
|
105199
105199
|
|
|
105200
|
-
const styles$
|
|
105201
|
-
${styles$
|
|
105200
|
+
const styles$k = css `
|
|
105201
|
+
${styles$1v}
|
|
105202
105202
|
|
|
105203
105203
|
.icon svg {
|
|
105204
105204
|
fill: ${calendarEventBorderStaticColor};
|
|
@@ -105215,15 +105215,15 @@ focus outline in that case.
|
|
|
105215
105215
|
}
|
|
105216
105216
|
const sprightIconWorkItemRectangleCheckLines = IconWorkItemRectangleCheckLines.compose({
|
|
105217
105217
|
baseName: 'icon-work-item-rectangle-check-lines',
|
|
105218
|
-
template: template$
|
|
105219
|
-
styles: styles$
|
|
105218
|
+
template: template$1j,
|
|
105219
|
+
styles: styles$k
|
|
105220
105220
|
});
|
|
105221
105221
|
DesignSystem.getOrCreate()
|
|
105222
105222
|
.withPrefix('spright')
|
|
105223
105223
|
.register(sprightIconWorkItemRectangleCheckLines());
|
|
105224
105224
|
|
|
105225
|
-
const styles$
|
|
105226
|
-
${styles$
|
|
105225
|
+
const styles$j = css `
|
|
105226
|
+
${styles$1v}
|
|
105227
105227
|
|
|
105228
105228
|
.icon svg {
|
|
105229
105229
|
fill: ${calendarEventBorderWorkOrderColor};
|
|
@@ -105240,15 +105240,15 @@ focus outline in that case.
|
|
|
105240
105240
|
}
|
|
105241
105241
|
const sprightIconWorkItemSquareListCog = IconWorkItemSquareListCog.compose({
|
|
105242
105242
|
baseName: 'icon-work-item-square-list-cog',
|
|
105243
|
-
template: template$
|
|
105244
|
-
styles: styles$
|
|
105243
|
+
template: template$1j,
|
|
105244
|
+
styles: styles$j
|
|
105245
105245
|
});
|
|
105246
105246
|
DesignSystem.getOrCreate()
|
|
105247
105247
|
.withPrefix('spright')
|
|
105248
105248
|
.register(sprightIconWorkItemSquareListCog());
|
|
105249
105249
|
|
|
105250
|
-
const styles$
|
|
105251
|
-
${styles$
|
|
105250
|
+
const styles$i = css `
|
|
105251
|
+
${styles$1v}
|
|
105252
105252
|
|
|
105253
105253
|
.icon svg {
|
|
105254
105254
|
fill: ${calendarEventBorderJobColor};
|
|
@@ -105265,15 +105265,15 @@ focus outline in that case.
|
|
|
105265
105265
|
}
|
|
105266
105266
|
const sprightIconWorkItemUserHelmetSafety = IconWorkItemUserHelmetSafety.compose({
|
|
105267
105267
|
baseName: 'icon-work-item-user-helmet-safety',
|
|
105268
|
-
template: template$
|
|
105269
|
-
styles: styles$
|
|
105268
|
+
template: template$1j,
|
|
105269
|
+
styles: styles$i
|
|
105270
105270
|
});
|
|
105271
105271
|
DesignSystem.getOrCreate()
|
|
105272
105272
|
.withPrefix('spright')
|
|
105273
105273
|
.register(sprightIconWorkItemUserHelmetSafety());
|
|
105274
105274
|
|
|
105275
|
-
const styles$
|
|
105276
|
-
${styles$
|
|
105275
|
+
const styles$h = css `
|
|
105276
|
+
${styles$1v}
|
|
105277
105277
|
|
|
105278
105278
|
.icon svg {
|
|
105279
105279
|
fill: ${calendarEventBorderMaintenanceColor};
|
|
@@ -105290,14 +105290,14 @@ focus outline in that case.
|
|
|
105290
105290
|
}
|
|
105291
105291
|
const sprightIconWorkItemWrenchHammer = IconWorkItemWrenchHammer.compose({
|
|
105292
105292
|
baseName: 'icon-work-item-wrench-hammer',
|
|
105293
|
-
template: template$
|
|
105294
|
-
styles: styles$
|
|
105293
|
+
template: template$1j,
|
|
105294
|
+
styles: styles$h
|
|
105295
105295
|
});
|
|
105296
105296
|
DesignSystem.getOrCreate()
|
|
105297
105297
|
.withPrefix('spright')
|
|
105298
105298
|
.register(sprightIconWorkItemWrenchHammer());
|
|
105299
105299
|
|
|
105300
|
-
const styles$
|
|
105300
|
+
const styles$g = css `
|
|
105301
105301
|
${display$1('inline-block')}
|
|
105302
105302
|
|
|
105303
105303
|
:host {
|
|
@@ -105322,7 +105322,7 @@ focus outline in that case.
|
|
|
105322
105322
|
}
|
|
105323
105323
|
`;
|
|
105324
105324
|
|
|
105325
|
-
const template$
|
|
105325
|
+
const template$h = html `<slot></slot>`;
|
|
105326
105326
|
|
|
105327
105327
|
/**
|
|
105328
105328
|
* A Spright demo component (not for production use)
|
|
@@ -105331,8 +105331,8 @@ focus outline in that case.
|
|
|
105331
105331
|
}
|
|
105332
105332
|
const sprightRectangle = Rectangle.compose({
|
|
105333
105333
|
baseName: 'rectangle',
|
|
105334
|
-
template: template$
|
|
105335
|
-
styles: styles$
|
|
105334
|
+
template: template$h,
|
|
105335
|
+
styles: styles$g
|
|
105336
105336
|
});
|
|
105337
105337
|
DesignSystem.getOrCreate().withPrefix('spright').register(sprightRectangle());
|
|
105338
105338
|
|
|
@@ -105359,7 +105359,7 @@ focus outline in that case.
|
|
|
105359
105359
|
block: 'block'
|
|
105360
105360
|
};
|
|
105361
105361
|
|
|
105362
|
-
const styles$
|
|
105362
|
+
const styles$f = css `
|
|
105363
105363
|
@layer base, hover, focusVisible, active, disabled, top;
|
|
105364
105364
|
|
|
105365
105365
|
@layer base {
|
|
@@ -105465,7 +105465,7 @@ focus outline in that case.
|
|
|
105465
105465
|
}
|
|
105466
105466
|
`));
|
|
105467
105467
|
|
|
105468
|
-
const template$
|
|
105468
|
+
const template$g = html `
|
|
105469
105469
|
<details
|
|
105470
105470
|
class="accordion-item-details"
|
|
105471
105471
|
?open="${x => x.expanded}"
|
|
@@ -105516,8 +105516,8 @@ focus outline in that case.
|
|
|
105516
105516
|
], FvAccordionItem.prototype, "appearance", void 0);
|
|
105517
105517
|
const okFvAccordionItem = FvAccordionItem.compose({
|
|
105518
105518
|
baseName: 'fv-accordion-item',
|
|
105519
|
-
template: template$
|
|
105520
|
-
styles: styles$
|
|
105519
|
+
template: template$g,
|
|
105520
|
+
styles: styles$f
|
|
105521
105521
|
});
|
|
105522
105522
|
DesignSystem.getOrCreate()
|
|
105523
105523
|
.withPrefix('ok')
|
|
@@ -105532,7 +105532,7 @@ focus outline in that case.
|
|
|
105532
105532
|
card: 'card'
|
|
105533
105533
|
};
|
|
105534
105534
|
|
|
105535
|
-
const styles$
|
|
105535
|
+
const styles$e = css `
|
|
105536
105536
|
${display('block')}
|
|
105537
105537
|
|
|
105538
105538
|
:host {
|
|
@@ -105883,7 +105883,7 @@ focus outline in that case.
|
|
|
105883
105883
|
</div>
|
|
105884
105884
|
</div>
|
|
105885
105885
|
`;
|
|
105886
|
-
const template$
|
|
105886
|
+
const template$f = html `
|
|
105887
105887
|
${when(x => x.interactionMode === FvCardInteractionMode.card, html `
|
|
105888
105888
|
<${cardButtonTag}
|
|
105889
105889
|
class="card-shell card-button-shell"
|
|
@@ -106031,14 +106031,14 @@ focus outline in that case.
|
|
|
106031
106031
|
], FvCard.prototype, "hasFooterEndContent", void 0);
|
|
106032
106032
|
const okFvCard = FvCard.compose({
|
|
106033
106033
|
baseName: 'fv-card',
|
|
106034
|
-
template: template$
|
|
106035
|
-
styles: styles$
|
|
106034
|
+
template: template$f,
|
|
106035
|
+
styles: styles$e
|
|
106036
106036
|
});
|
|
106037
106037
|
DesignSystem.getOrCreate()
|
|
106038
106038
|
.withPrefix('ok')
|
|
106039
106039
|
.register(okFvCard());
|
|
106040
106040
|
|
|
106041
|
-
const styles$
|
|
106041
|
+
const styles$d = css `
|
|
106042
106042
|
@layer base, hover, focusVisible, active, disabled, top;
|
|
106043
106043
|
|
|
106044
106044
|
@layer base {
|
|
@@ -106286,7 +106286,7 @@ focus outline in that case.
|
|
|
106286
106286
|
@layer top {}
|
|
106287
106287
|
`;
|
|
106288
106288
|
|
|
106289
|
-
const template$
|
|
106289
|
+
const template$e = html `
|
|
106290
106290
|
<div class="chip-selector">
|
|
106291
106291
|
${when(x => x.label.length > 0, html `
|
|
106292
106292
|
<label id="${x => x.labelId}" class="label" for="${x => x.inputId}">
|
|
@@ -106778,12 +106778,12 @@ focus outline in that case.
|
|
|
106778
106778
|
], FvChipSelector.prototype, "field", void 0);
|
|
106779
106779
|
const okFvChipSelector = FvChipSelector.compose({
|
|
106780
106780
|
baseName: 'fv-chip-selector',
|
|
106781
|
-
template: template$
|
|
106782
|
-
styles: styles$
|
|
106781
|
+
template: template$e,
|
|
106782
|
+
styles: styles$d
|
|
106783
106783
|
});
|
|
106784
106784
|
DesignSystem.getOrCreate().withPrefix('ok').register(okFvChipSelector());
|
|
106785
106785
|
|
|
106786
|
-
const styles$
|
|
106786
|
+
const styles$c = css `
|
|
106787
106787
|
@layer base, hover, focusVisible, active, disabled, top;
|
|
106788
106788
|
|
|
106789
106789
|
@layer base {
|
|
@@ -106835,7 +106835,7 @@ focus outline in that case.
|
|
|
106835
106835
|
@layer top {}
|
|
106836
106836
|
`;
|
|
106837
106837
|
|
|
106838
|
-
const template$
|
|
106838
|
+
const template$d = html `
|
|
106839
106839
|
<button
|
|
106840
106840
|
id="${x => x.tooltipAnchorId}"
|
|
106841
106841
|
class="context-help-trigger"
|
|
@@ -106883,12 +106883,12 @@ focus outline in that case.
|
|
|
106883
106883
|
], FvContextHelp.prototype, "iconVisible", void 0);
|
|
106884
106884
|
const okFvContextHelp = FvContextHelp.compose({
|
|
106885
106885
|
baseName: 'fv-context-help',
|
|
106886
|
-
template: template$
|
|
106887
|
-
styles: styles$
|
|
106886
|
+
template: template$d,
|
|
106887
|
+
styles: styles$c
|
|
106888
106888
|
});
|
|
106889
106889
|
DesignSystem.getOrCreate().withPrefix('ok').register(okFvContextHelp());
|
|
106890
106890
|
|
|
106891
|
-
const styles$
|
|
106891
|
+
const styles$b = css `
|
|
106892
106892
|
@layer base, hover, selected;
|
|
106893
106893
|
|
|
106894
106894
|
@layer base {
|
|
@@ -106985,7 +106985,7 @@ focus outline in that case.
|
|
|
106985
106985
|
}
|
|
106986
106986
|
`;
|
|
106987
106987
|
|
|
106988
|
-
const template$
|
|
106988
|
+
const template$c = html `
|
|
106989
106989
|
<div class="item" part="item">
|
|
106990
106990
|
<div class="text" part="text">
|
|
106991
106991
|
<div class="title" part="title">${x => x.titleText}</div>
|
|
@@ -107086,13 +107086,13 @@ focus outline in that case.
|
|
|
107086
107086
|
], FvMasterDetailListItem.prototype, "hasStatusSlotContent", void 0);
|
|
107087
107087
|
const okFvMasterDetailListItem = FvMasterDetailListItem.compose({
|
|
107088
107088
|
baseName: 'fv-master-detail-list-item',
|
|
107089
|
-
template: template$
|
|
107090
|
-
styles: styles$
|
|
107089
|
+
template: template$c,
|
|
107090
|
+
styles: styles$b
|
|
107091
107091
|
});
|
|
107092
107092
|
DesignSystem.getOrCreate().withPrefix('ok').register(okFvMasterDetailListItem());
|
|
107093
107093
|
const fvMasterDetailListItemTag = 'ok-fv-master-detail-list-item';
|
|
107094
107094
|
|
|
107095
|
-
const styles$
|
|
107095
|
+
const styles$a = css `
|
|
107096
107096
|
@layer base, hover, focusVisible;
|
|
107097
107097
|
|
|
107098
107098
|
@layer base {
|
|
@@ -107157,7 +107157,7 @@ focus outline in that case.
|
|
|
107157
107157
|
}
|
|
107158
107158
|
`;
|
|
107159
107159
|
|
|
107160
|
-
const template$
|
|
107160
|
+
const template$b = html `
|
|
107161
107161
|
<div class="master-detail-list">
|
|
107162
107162
|
<div class="filter-row">
|
|
107163
107163
|
<input
|
|
@@ -107351,15 +107351,15 @@ focus outline in that case.
|
|
|
107351
107351
|
], FvMasterDetailList.prototype, "items", void 0);
|
|
107352
107352
|
const okFvMasterDetailList = FvMasterDetailList.compose({
|
|
107353
107353
|
baseName: 'fv-master-detail-list',
|
|
107354
|
-
template: template$
|
|
107355
|
-
styles: styles$
|
|
107354
|
+
template: template$b,
|
|
107355
|
+
styles: styles$a,
|
|
107356
107356
|
shadowOptions: {
|
|
107357
107357
|
delegatesFocus: true
|
|
107358
107358
|
}
|
|
107359
107359
|
});
|
|
107360
107360
|
DesignSystem.getOrCreate().withPrefix('ok').register(okFvMasterDetailList());
|
|
107361
107361
|
|
|
107362
|
-
const styles$
|
|
107362
|
+
const styles$9 = css `
|
|
107363
107363
|
@layer base, hover, focusVisible, active, disabled, top;
|
|
107364
107364
|
|
|
107365
107365
|
@layer base {
|
|
@@ -107576,7 +107576,7 @@ focus outline in that case.
|
|
|
107576
107576
|
@layer top {}
|
|
107577
107577
|
`;
|
|
107578
107578
|
|
|
107579
|
-
const template$
|
|
107579
|
+
const template$a = html `
|
|
107580
107580
|
<div
|
|
107581
107581
|
class="split-button-container"
|
|
107582
107582
|
${ref('splitButtonContainer')}
|
|
@@ -107748,12 +107748,12 @@ focus outline in that case.
|
|
|
107748
107748
|
], FvSplitButton.prototype, "region", void 0);
|
|
107749
107749
|
const okFvSplitButton = FvSplitButton.compose({
|
|
107750
107750
|
baseName: 'fv-split-button',
|
|
107751
|
-
template: template$
|
|
107752
|
-
styles: styles$
|
|
107751
|
+
template: template$a,
|
|
107752
|
+
styles: styles$9
|
|
107753
107753
|
});
|
|
107754
107754
|
DesignSystem.getOrCreate().withPrefix('ok').register(okFvSplitButton());
|
|
107755
107755
|
|
|
107756
|
-
const styles$
|
|
107756
|
+
const styles$8 = css `
|
|
107757
107757
|
@layer base, hover, focusVisible, active, disabled, top;
|
|
107758
107758
|
|
|
107759
107759
|
@layer base {
|
|
@@ -107978,7 +107978,7 @@ focus outline in that case.
|
|
|
107978
107978
|
@layer top {}
|
|
107979
107979
|
`;
|
|
107980
107980
|
|
|
107981
|
-
const template$
|
|
107981
|
+
const template$9 = html `
|
|
107982
107982
|
<div
|
|
107983
107983
|
class="split-button-container"
|
|
107984
107984
|
${ref('splitButtonContainer')}
|
|
@@ -108178,12 +108178,12 @@ focus outline in that case.
|
|
|
108178
108178
|
], FvSplitButtonAnchor.prototype, "region", void 0);
|
|
108179
108179
|
const okFvSplitButtonAnchor = FvSplitButtonAnchor.compose({
|
|
108180
108180
|
baseName: 'fv-split-button-anchor',
|
|
108181
|
-
template: template$
|
|
108182
|
-
styles: styles$
|
|
108181
|
+
template: template$9,
|
|
108182
|
+
styles: styles$8
|
|
108183
108183
|
});
|
|
108184
108184
|
DesignSystem.getOrCreate().withPrefix('ok').register(okFvSplitButtonAnchor());
|
|
108185
108185
|
|
|
108186
|
-
const styles$
|
|
108186
|
+
const styles$7 = css `
|
|
108187
108187
|
${display('block')}
|
|
108188
108188
|
|
|
108189
108189
|
.sticky-header {
|
|
@@ -108202,7 +108202,7 @@ focus outline in that case.
|
|
|
108202
108202
|
}
|
|
108203
108203
|
`;
|
|
108204
108204
|
|
|
108205
|
-
const template$
|
|
108205
|
+
const template$8 = html `
|
|
108206
108206
|
<div class="header" part="header">
|
|
108207
108207
|
<slot
|
|
108208
108208
|
name="header"
|
|
@@ -108302,12 +108302,12 @@ focus outline in that case.
|
|
|
108302
108302
|
], FvStickyHeader.prototype, "showStickyHeader", void 0);
|
|
108303
108303
|
const okFvStickyHeader = FvStickyHeader.compose({
|
|
108304
108304
|
baseName: 'fv-sticky-header',
|
|
108305
|
-
template: template$
|
|
108306
|
-
styles: styles$
|
|
108305
|
+
template: template$8,
|
|
108306
|
+
styles: styles$7
|
|
108307
108307
|
});
|
|
108308
108308
|
DesignSystem.getOrCreate().withPrefix('ok').register(okFvStickyHeader());
|
|
108309
108309
|
|
|
108310
|
-
const styles$
|
|
108310
|
+
const styles$6 = css `
|
|
108311
108311
|
@layer base, hover, focusVisible, active, disabled, top;
|
|
108312
108312
|
|
|
108313
108313
|
@layer base {
|
|
@@ -108375,7 +108375,7 @@ focus outline in that case.
|
|
|
108375
108375
|
@layer top {}
|
|
108376
108376
|
`;
|
|
108377
108377
|
|
|
108378
|
-
const template$
|
|
108378
|
+
const template$7 = html `
|
|
108379
108379
|
<section class="summary-panel" part="panel">
|
|
108380
108380
|
<div
|
|
108381
108381
|
${ref('summaryItems')}
|
|
@@ -108519,12 +108519,12 @@ focus outline in that case.
|
|
|
108519
108519
|
], FvSummaryPanel.prototype, "editItemsButtonLabel", void 0);
|
|
108520
108520
|
const okFvSummaryPanel = FvSummaryPanel.compose({
|
|
108521
108521
|
baseName: 'fv-summary-panel',
|
|
108522
|
-
template: template$
|
|
108523
|
-
styles: styles$
|
|
108522
|
+
template: template$7,
|
|
108523
|
+
styles: styles$6
|
|
108524
108524
|
});
|
|
108525
108525
|
DesignSystem.getOrCreate().withPrefix('ok').register(okFvSummaryPanel());
|
|
108526
108526
|
|
|
108527
|
-
const styles$
|
|
108527
|
+
const styles$5 = css `
|
|
108528
108528
|
@layer base, hover, focusVisible, active, disabled, top;
|
|
108529
108529
|
|
|
108530
108530
|
@layer base {
|
|
@@ -108682,7 +108682,7 @@ focus outline in that case.
|
|
|
108682
108682
|
@layer top {}
|
|
108683
108683
|
`;
|
|
108684
108684
|
|
|
108685
|
-
const template$
|
|
108685
|
+
const template$6 = html `
|
|
108686
108686
|
<${cardButtonTag}
|
|
108687
108687
|
class="summary-panel-tile"
|
|
108688
108688
|
?selected="${x => x.selected}"
|
|
@@ -108748,12 +108748,12 @@ focus outline in that case.
|
|
|
108748
108748
|
], FvSummaryPanelTile.prototype, "textPosition", void 0);
|
|
108749
108749
|
const okFvSummaryPanelTile = FvSummaryPanelTile.compose({
|
|
108750
108750
|
baseName: 'fv-summary-panel-tile',
|
|
108751
|
-
template: template$
|
|
108752
|
-
styles: styles$
|
|
108751
|
+
template: template$6,
|
|
108752
|
+
styles: styles$5
|
|
108753
108753
|
});
|
|
108754
108754
|
DesignSystem.getOrCreate().withPrefix('ok').register(okFvSummaryPanelTile());
|
|
108755
108755
|
|
|
108756
|
-
const styles$
|
|
108756
|
+
const styles$4 = css `
|
|
108757
108757
|
@layer base, hover, focusVisible, active, disabled, top;
|
|
108758
108758
|
|
|
108759
108759
|
@layer base {
|
|
@@ -108928,7 +108928,7 @@ focus outline in that case.
|
|
|
108928
108928
|
}
|
|
108929
108929
|
`;
|
|
108930
108930
|
|
|
108931
|
-
const template$
|
|
108931
|
+
const template$5 = html `
|
|
108932
108932
|
<div class="search-input-container">
|
|
108933
108933
|
<span class="search-input-icon" aria-hidden="true">
|
|
108934
108934
|
<${iconMagnifyingGlassTag}></${iconMagnifyingGlassTag}>
|
|
@@ -108999,14 +108999,344 @@ focus outline in that case.
|
|
|
108999
108999
|
const okFvSearchInput = FvSearchInput.compose({
|
|
109000
109000
|
baseName: 'fv-search-input',
|
|
109001
109001
|
baseClass: TextField$1,
|
|
109002
|
-
template: template$
|
|
109003
|
-
styles: styles$
|
|
109002
|
+
template: template$5,
|
|
109003
|
+
styles: styles$4,
|
|
109004
109004
|
shadowOptions: {
|
|
109005
109005
|
delegatesFocus: true
|
|
109006
109006
|
}
|
|
109007
109007
|
});
|
|
109008
109008
|
DesignSystem.getOrCreate().withPrefix('ok').register(okFvSearchInput());
|
|
109009
109009
|
|
|
109010
|
+
const styles$3 = css `
|
|
109011
|
+
@layer base, hover, focusVisible, active;
|
|
109012
|
+
|
|
109013
|
+
@layer base {
|
|
109014
|
+
${display('block')}
|
|
109015
|
+
|
|
109016
|
+
:host {
|
|
109017
|
+
position: relative;
|
|
109018
|
+
flex: 0 0 2px;
|
|
109019
|
+
width: 2px;
|
|
109020
|
+
height: 100%;
|
|
109021
|
+
min-height: 0;
|
|
109022
|
+
background: ${dividerBackgroundDynamicColor};
|
|
109023
|
+
outline: none;
|
|
109024
|
+
}
|
|
109025
|
+
|
|
109026
|
+
.splitter {
|
|
109027
|
+
position: absolute;
|
|
109028
|
+
inset: 0 -8px 0 -2px;
|
|
109029
|
+
cursor: col-resize;
|
|
109030
|
+
touch-action: none;
|
|
109031
|
+
user-select: none;
|
|
109032
|
+
-webkit-user-select: none;
|
|
109033
|
+
outline: none;
|
|
109034
|
+
}
|
|
109035
|
+
}
|
|
109036
|
+
|
|
109037
|
+
@layer hover {
|
|
109038
|
+
:host(:hover) {
|
|
109039
|
+
background: ${borderHoverColor};
|
|
109040
|
+
}
|
|
109041
|
+
}
|
|
109042
|
+
|
|
109043
|
+
@layer focusVisible {
|
|
109044
|
+
:host(:focus),
|
|
109045
|
+
:host(:focus-visible) {
|
|
109046
|
+
outline: none;
|
|
109047
|
+
}
|
|
109048
|
+
|
|
109049
|
+
:host(:focus-visible)::before {
|
|
109050
|
+
content: '';
|
|
109051
|
+
position: absolute;
|
|
109052
|
+
z-index: 1;
|
|
109053
|
+
inset-block: 0;
|
|
109054
|
+
left: 1px;
|
|
109055
|
+
width: 3px;
|
|
109056
|
+
transform: translateX(-50%);
|
|
109057
|
+
background: ${borderHoverColor};
|
|
109058
|
+
pointer-events: none;
|
|
109059
|
+
}
|
|
109060
|
+
}
|
|
109061
|
+
|
|
109062
|
+
@layer active {
|
|
109063
|
+
:host([resizing]) {
|
|
109064
|
+
background: ${borderHoverColor};
|
|
109065
|
+
}
|
|
109066
|
+
}
|
|
109067
|
+
`;
|
|
109068
|
+
|
|
109069
|
+
const template$4 = html `
|
|
109070
|
+
<div
|
|
109071
|
+
class="splitter"
|
|
109072
|
+
@pointerdown="${(x, c) => x.handlePointerDown(c.event)}"
|
|
109073
|
+
@pointermove="${(x, c) => x.handlePointerMove(c.event)}"
|
|
109074
|
+
@pointerup="${(x, c) => x.handlePointerUp(c.event)}"
|
|
109075
|
+
@pointercancel="${(x, c) => x.handlePointerCancel(c.event)}"
|
|
109076
|
+
@lostpointercapture="${(x, c) => x.handlePointerCancel(c.event)}"
|
|
109077
|
+
></div>
|
|
109078
|
+
`;
|
|
109079
|
+
|
|
109080
|
+
/**
|
|
109081
|
+
* A vertical separator that enables pointer and keyboard resizing between two panes.
|
|
109082
|
+
*/
|
|
109083
|
+
class FvSplitter extends FoundationElement {
|
|
109084
|
+
constructor() {
|
|
109085
|
+
super();
|
|
109086
|
+
/** The accessible name for the separator. */
|
|
109087
|
+
this.ariaLabel = 'Resize panes';
|
|
109088
|
+
/** The splitter position as a percentage of the containing layout's width. */
|
|
109089
|
+
this.position = 60;
|
|
109090
|
+
/** The minimum allowed position. */
|
|
109091
|
+
this.min = 0;
|
|
109092
|
+
/** The maximum allowed position. */
|
|
109093
|
+
this.max = 100;
|
|
109094
|
+
/** The percentage-point increment used for keyboard resizing. */
|
|
109095
|
+
this.step = 1;
|
|
109096
|
+
/** @internal */
|
|
109097
|
+
this.resizing = false;
|
|
109098
|
+
this.pointerStartPosition = 0;
|
|
109099
|
+
this.requestedPosition = this.position;
|
|
109100
|
+
this.applyingConstrainedPosition = false;
|
|
109101
|
+
this.requestedPositionResetScheduled = false;
|
|
109102
|
+
this.positionChangeCallbackVersion = 0;
|
|
109103
|
+
this.keydownHandler = (event) => {
|
|
109104
|
+
this.handleKeyDown(event);
|
|
109105
|
+
};
|
|
109106
|
+
const positionDescriptor = Object.getOwnPropertyDescriptor(Object.getPrototypeOf(this), 'position');
|
|
109107
|
+
if (!positionDescriptor?.get || !positionDescriptor.set) {
|
|
109108
|
+
return;
|
|
109109
|
+
}
|
|
109110
|
+
const getPosition = positionDescriptor.get.bind(this);
|
|
109111
|
+
const setPosition = positionDescriptor.set.bind(this);
|
|
109112
|
+
Object.defineProperty(this, 'position', {
|
|
109113
|
+
configurable: true,
|
|
109114
|
+
enumerable: positionDescriptor.enumerable,
|
|
109115
|
+
get: getPosition,
|
|
109116
|
+
set: (value) => {
|
|
109117
|
+
const previousPosition = getPosition();
|
|
109118
|
+
const callbackVersion = this.positionChangeCallbackVersion;
|
|
109119
|
+
setPosition(value);
|
|
109120
|
+
if (!this.applyingConstrainedPosition
|
|
109121
|
+
&& callbackVersion === this.positionChangeCallbackVersion
|
|
109122
|
+
&& previousPosition === getPosition()) {
|
|
109123
|
+
this.requestedPosition = getPosition();
|
|
109124
|
+
}
|
|
109125
|
+
}
|
|
109126
|
+
});
|
|
109127
|
+
}
|
|
109128
|
+
/** @internal */
|
|
109129
|
+
connectedCallback() {
|
|
109130
|
+
super.connectedCallback();
|
|
109131
|
+
this.setAttribute('role', 'separator');
|
|
109132
|
+
this.setAttribute('aria-orientation', 'vertical');
|
|
109133
|
+
this.setAttribute('aria-label', this.ariaLabel);
|
|
109134
|
+
this.tabIndex = 0;
|
|
109135
|
+
this.addEventListener('keydown', this.keydownHandler);
|
|
109136
|
+
this.syncAriaValueAttributes();
|
|
109137
|
+
}
|
|
109138
|
+
/** @internal */
|
|
109139
|
+
disconnectedCallback() {
|
|
109140
|
+
this.removeEventListener('keydown', this.keydownHandler);
|
|
109141
|
+
super.disconnectedCallback();
|
|
109142
|
+
}
|
|
109143
|
+
/** @internal */
|
|
109144
|
+
positionChanged() {
|
|
109145
|
+
this.positionChangeCallbackVersion += 1;
|
|
109146
|
+
if (!this.applyingConstrainedPosition) {
|
|
109147
|
+
this.requestedPosition = this.position;
|
|
109148
|
+
this.resetRequestedPositionAfterSynchronousUpdates();
|
|
109149
|
+
}
|
|
109150
|
+
this.applyConstrainedPosition();
|
|
109151
|
+
}
|
|
109152
|
+
/** @internal */
|
|
109153
|
+
minChanged() {
|
|
109154
|
+
this.applyConstrainedPosition();
|
|
109155
|
+
}
|
|
109156
|
+
/** @internal */
|
|
109157
|
+
maxChanged() {
|
|
109158
|
+
this.applyConstrainedPosition();
|
|
109159
|
+
}
|
|
109160
|
+
/** @internal */
|
|
109161
|
+
resizingChanged() {
|
|
109162
|
+
this.toggleAttribute('resizing', this.resizing);
|
|
109163
|
+
}
|
|
109164
|
+
/** @internal */
|
|
109165
|
+
handlePointerDown(event) {
|
|
109166
|
+
if (event.button !== 0 || !event.isPrimary || this.pointerId !== undefined) {
|
|
109167
|
+
return true;
|
|
109168
|
+
}
|
|
109169
|
+
event.preventDefault();
|
|
109170
|
+
const pointerTarget = event.currentTarget;
|
|
109171
|
+
this.focus();
|
|
109172
|
+
this.pointerId = event.pointerId;
|
|
109173
|
+
this.pointerStartPosition = this.position;
|
|
109174
|
+
this.resizing = true;
|
|
109175
|
+
if (event.pointerId !== -1) {
|
|
109176
|
+
pointerTarget.setPointerCapture(event.pointerId);
|
|
109177
|
+
}
|
|
109178
|
+
return true;
|
|
109179
|
+
}
|
|
109180
|
+
/** @internal */
|
|
109181
|
+
handlePointerMove(event) {
|
|
109182
|
+
if (event.pointerId !== this.pointerId) {
|
|
109183
|
+
return true;
|
|
109184
|
+
}
|
|
109185
|
+
const container = this.parentElement;
|
|
109186
|
+
if (!container) {
|
|
109187
|
+
return true;
|
|
109188
|
+
}
|
|
109189
|
+
const bounds = container.getBoundingClientRect();
|
|
109190
|
+
if (bounds.width > 0) {
|
|
109191
|
+
const distanceFromInlineStart = this.isRtl
|
|
109192
|
+
? bounds.right - event.clientX
|
|
109193
|
+
: event.clientX - bounds.left;
|
|
109194
|
+
this.updatePosition((distanceFromInlineStart / bounds.width) * 100);
|
|
109195
|
+
}
|
|
109196
|
+
return true;
|
|
109197
|
+
}
|
|
109198
|
+
/** @internal */
|
|
109199
|
+
handlePointerUp(event) {
|
|
109200
|
+
if (event.pointerId === this.pointerId) {
|
|
109201
|
+
this.finishResize();
|
|
109202
|
+
}
|
|
109203
|
+
return true;
|
|
109204
|
+
}
|
|
109205
|
+
/** @internal */
|
|
109206
|
+
handlePointerCancel(event) {
|
|
109207
|
+
if (event.pointerId === this.pointerId) {
|
|
109208
|
+
this.updatePosition(this.pointerStartPosition);
|
|
109209
|
+
this.resizing = false;
|
|
109210
|
+
this.pointerId = undefined;
|
|
109211
|
+
}
|
|
109212
|
+
return true;
|
|
109213
|
+
}
|
|
109214
|
+
/** @internal */
|
|
109215
|
+
handleKeyDown(event) {
|
|
109216
|
+
let nextPosition;
|
|
109217
|
+
const direction = this.isRtl ? -1 : 1;
|
|
109218
|
+
switch (event.key) {
|
|
109219
|
+
case 'ArrowLeft':
|
|
109220
|
+
nextPosition = this.position - direction * this.validStep;
|
|
109221
|
+
break;
|
|
109222
|
+
case 'ArrowRight':
|
|
109223
|
+
nextPosition = this.position + direction * this.validStep;
|
|
109224
|
+
break;
|
|
109225
|
+
case 'Home':
|
|
109226
|
+
nextPosition = this.validMin;
|
|
109227
|
+
break;
|
|
109228
|
+
case 'End':
|
|
109229
|
+
nextPosition = this.validMax;
|
|
109230
|
+
break;
|
|
109231
|
+
default:
|
|
109232
|
+
return true;
|
|
109233
|
+
}
|
|
109234
|
+
event.preventDefault();
|
|
109235
|
+
const previousPosition = this.position;
|
|
109236
|
+
this.updatePosition(nextPosition);
|
|
109237
|
+
if (this.position !== previousPosition) {
|
|
109238
|
+
this.dispatchEvent(new Event('change', { bubbles: true, composed: true }));
|
|
109239
|
+
}
|
|
109240
|
+
return true;
|
|
109241
|
+
}
|
|
109242
|
+
get validMin() {
|
|
109243
|
+
return Number.isFinite(this.min) ? Math.min(100, Math.max(0, this.min)) : 0;
|
|
109244
|
+
}
|
|
109245
|
+
get validMax() {
|
|
109246
|
+
const max = Number.isFinite(this.max) ? this.max : 100;
|
|
109247
|
+
return Math.max(this.validMin, Math.min(100, Math.max(0, max)));
|
|
109248
|
+
}
|
|
109249
|
+
get validStep() {
|
|
109250
|
+
return Number.isFinite(this.step) && this.step > 0 ? this.step : 1;
|
|
109251
|
+
}
|
|
109252
|
+
get isRtl() {
|
|
109253
|
+
return getComputedStyle(this).direction === 'rtl';
|
|
109254
|
+
}
|
|
109255
|
+
constrain(position) {
|
|
109256
|
+
const finitePosition = Number.isFinite(position) ? position : 60;
|
|
109257
|
+
return Math.min(this.validMax, Math.max(this.validMin, finitePosition));
|
|
109258
|
+
}
|
|
109259
|
+
updatePosition(position) {
|
|
109260
|
+
const nextPosition = this.constrain(position);
|
|
109261
|
+
this.requestedPosition = nextPosition;
|
|
109262
|
+
if (nextPosition !== this.position) {
|
|
109263
|
+
this.position = nextPosition;
|
|
109264
|
+
this.dispatchEvent(new Event('input', { bubbles: true, composed: true }));
|
|
109265
|
+
}
|
|
109266
|
+
}
|
|
109267
|
+
applyConstrainedPosition() {
|
|
109268
|
+
const constrainedPosition = this.constrain(this.requestedPosition);
|
|
109269
|
+
if (constrainedPosition !== this.position) {
|
|
109270
|
+
this.applyingConstrainedPosition = true;
|
|
109271
|
+
this.position = constrainedPosition;
|
|
109272
|
+
this.applyingConstrainedPosition = false;
|
|
109273
|
+
}
|
|
109274
|
+
this.syncAriaValueAttributesIfConnected();
|
|
109275
|
+
}
|
|
109276
|
+
resetRequestedPositionAfterSynchronousUpdates() {
|
|
109277
|
+
if (this.requestedPositionResetScheduled) {
|
|
109278
|
+
return;
|
|
109279
|
+
}
|
|
109280
|
+
this.requestedPositionResetScheduled = true;
|
|
109281
|
+
queueMicrotask(() => {
|
|
109282
|
+
this.requestedPositionResetScheduled = false;
|
|
109283
|
+
this.requestedPosition = this.position;
|
|
109284
|
+
});
|
|
109285
|
+
}
|
|
109286
|
+
finishResize() {
|
|
109287
|
+
const changed = this.position !== this.pointerStartPosition;
|
|
109288
|
+
this.resizing = false;
|
|
109289
|
+
this.pointerId = undefined;
|
|
109290
|
+
if (changed) {
|
|
109291
|
+
this.dispatchEvent(new Event('change', { bubbles: true, composed: true }));
|
|
109292
|
+
}
|
|
109293
|
+
}
|
|
109294
|
+
syncAriaValueAttributesIfConnected() {
|
|
109295
|
+
if (this.$fastController.isConnected) {
|
|
109296
|
+
this.syncAriaValueAttributes();
|
|
109297
|
+
}
|
|
109298
|
+
}
|
|
109299
|
+
syncAriaValueAttributes() {
|
|
109300
|
+
this.setAttribute('aria-valuemin', String(this.validMin));
|
|
109301
|
+
this.setAttribute('aria-valuemax', String(this.validMax));
|
|
109302
|
+
this.setAttribute('aria-valuenow', String(this.position));
|
|
109303
|
+
this.setAttribute('aria-valuetext', `${this.position} percent`);
|
|
109304
|
+
}
|
|
109305
|
+
}
|
|
109306
|
+
__decorate([
|
|
109307
|
+
attr({ attribute: 'aria-label' })
|
|
109308
|
+
], FvSplitter.prototype, "ariaLabel", void 0);
|
|
109309
|
+
__decorate([
|
|
109310
|
+
attr({ attribute: 'aria-labelledby' })
|
|
109311
|
+
], FvSplitter.prototype, "ariaLabelledby", void 0);
|
|
109312
|
+
__decorate([
|
|
109313
|
+
attr({ attribute: 'aria-controls' })
|
|
109314
|
+
], FvSplitter.prototype, "ariaControls", void 0);
|
|
109315
|
+
__decorate([
|
|
109316
|
+
attr({ converter: nullableNumberConverter })
|
|
109317
|
+
], FvSplitter.prototype, "position", void 0);
|
|
109318
|
+
__decorate([
|
|
109319
|
+
attr({ converter: nullableNumberConverter })
|
|
109320
|
+
], FvSplitter.prototype, "min", void 0);
|
|
109321
|
+
__decorate([
|
|
109322
|
+
attr({ converter: nullableNumberConverter })
|
|
109323
|
+
], FvSplitter.prototype, "max", void 0);
|
|
109324
|
+
__decorate([
|
|
109325
|
+
attr({ converter: nullableNumberConverter })
|
|
109326
|
+
], FvSplitter.prototype, "step", void 0);
|
|
109327
|
+
__decorate([
|
|
109328
|
+
observable
|
|
109329
|
+
], FvSplitter.prototype, "resizing", void 0);
|
|
109330
|
+
const okFvSplitter = FvSplitter.compose({
|
|
109331
|
+
baseName: 'fv-splitter',
|
|
109332
|
+
template: template$4,
|
|
109333
|
+
styles: styles$3,
|
|
109334
|
+
shadowOptions: {
|
|
109335
|
+
delegatesFocus: false
|
|
109336
|
+
}
|
|
109337
|
+
});
|
|
109338
|
+
DesignSystem.getOrCreate().withPrefix('ok').register(okFvSplitter());
|
|
109339
|
+
|
|
109010
109340
|
const styles$2 = css `
|
|
109011
109341
|
${display('inline-block')}
|
|
109012
109342
|
|
|
@@ -109556,7 +109886,7 @@ focus outline in that case.
|
|
|
109556
109886
|
|
|
109557
109887
|
const template = html `
|
|
109558
109888
|
<template @delegated-event="${(x, c) => x.onDelegatedEvent(c.event)}"
|
|
109559
|
-
>${template$
|
|
109889
|
+
>${template$N}</template
|
|
109560
109890
|
>
|
|
109561
109891
|
`;
|
|
109562
109892
|
|
|
@@ -109642,7 +109972,7 @@ focus outline in that case.
|
|
|
109642
109972
|
const tsTableColumnBreakpoint = TsTableColumnBreakpoint.compose({
|
|
109643
109973
|
baseName: 'ts-table-column-breakpoint',
|
|
109644
109974
|
template,
|
|
109645
|
-
styles: styles$
|
|
109975
|
+
styles: styles$M
|
|
109646
109976
|
});
|
|
109647
109977
|
DesignSystem.getOrCreate()
|
|
109648
109978
|
.withPrefix('ok')
|