scb-wc 0.1.112 → 0.1.113
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/README.md +22 -41
- package/all.js +6 -0
- package/icons.json +178 -178
- package/index.js +94 -88
- package/mvc/components/all.js +6 -0
- package/mvc/components/scb-accordion/scb-accordion-item.js +1 -1
- package/mvc/components/scb-avatar/scb-avatar.js +1 -1
- package/mvc/components/scb-button/scb-button.js +3 -3
- package/mvc/components/scb-calendar/scb-calendar.js +1 -1
- package/mvc/components/scb-calendar-card/scb-calendar-card.js +4 -4
- package/mvc/components/scb-card/scb-card.js +2 -2
- package/mvc/{vendor → components/scb-chevron}/scb-chevron.js +1 -1
- package/mvc/components/scb-datepicker/scb-datepicker.js +118 -0
- package/mvc/components/scb-dropdown/scb-dropdown.js +1 -1
- package/mvc/components/scb-header/scb-header.js +2 -2
- package/mvc/components/scb-horizontal-scroller/scb-horizontal-scroller.js +6 -6
- package/mvc/components/scb-icon/scb-icon.js +9 -0
- package/mvc/components/scb-icon-button/scb-icon-button.js +5 -5
- package/mvc/components/scb-keyfigure-card/scb-keyfigure-card.js +6 -6
- package/mvc/components/scb-list/scb-list-item.js +2 -2
- package/mvc/components/scb-menu/scb-menu-item.js +1 -1
- package/mvc/components/scb-nav/scb-nav.js +2 -2
- package/mvc/components/scb-options-menu/scb-options-menu-item.js +1 -1
- package/mvc/components/scb-progress-stepper/scb-progress-step.js +2 -2
- package/mvc/components/scb-search/scb-search.js +1 -1
- package/mvc/components/scb-segmented-button/scb-segmented-item.js +1 -1
- package/mvc/components/scb-select/scb-select-option.js +1 -1
- package/mvc/components/scb-select/scb-select.js +1 -1
- package/mvc/components/scb-stepper/scb-step.js +1 -1
- package/mvc/components/scb-textfield/scb-textfield.js +33 -150
- package/mvc/components/scb-toc/scb-toc-item.js +1 -1
- package/mvc/components/shared/lazy-focus-ring.js +2 -0
- package/mvc/components/shared/lazy-ripple.js +2 -0
- package/mvc/components/shared/scb-icon-svg.js +11 -0
- package/mvc/scb-logo.svg +20 -20
- package/mvc/scb.svg +13 -13
- package/package.json +6 -2
- package/scb-avatar/scb-avatar.js +3 -1
- package/scb-chevron/scb-chevron.js +1 -0
- package/scb-components/index.d.ts +103 -0
- package/scb-components/scb-avatar/scb-avatar.d.ts +1 -1
- package/scb-components/scb-chevron/scb-chevron.d.ts +11 -0
- package/scb-components/scb-datepicker/scb-datepicker.d.ts +41 -0
- package/scb-components/scb-icon/scb-icon.d.ts +19 -0
- package/scb-components/shared/lazy-focus-ring.d.ts +4 -0
- package/scb-components/shared/lazy-ripple.d.ts +9 -0
- package/scb-components/shared/scb-icon-svg.d.ts +3 -0
- package/scb-datepicker/scb-datepicker.js +1 -0
- package/scb-icon/scb-icon.js +94 -0
- package/scb-wc.bundle.js +912 -841
- package/scb-wc.d.ts +206 -194
- package/shared/scb-icon-svg.js +5 -2
- package/mvc/vendor/lazy-focus-ring.js +0 -2
- package/mvc/vendor/lazy-ripple.js +0 -2
- package/mvc/vendor/scb-icon-svg.js +0 -11
- package/scb-wc-public-entry/index.d.ts +0 -97
package/scb-avatar/scb-avatar.js
CHANGED
|
@@ -43,6 +43,7 @@ var c = class extends t {
|
|
|
43
43
|
:host([size="small"]) { --_size: 32px; --_font-size: var(--md-sys-typescale-label-medium-size, 14px); }
|
|
44
44
|
:host([size="medium"]) { --_size: 40px; --_font-size: var(--md-sys-typescale-label-large-size, 16px); }
|
|
45
45
|
:host([size="large"]) { --_size: 56px; --_font-size: var(--md-sys-typescale-title-large-size, 20px); }
|
|
46
|
+
:host([size="extra-large"]),
|
|
46
47
|
:host([size="xlarge"]) { --_size: 80px; --_font-size: var(--md-sys-typescale-headline-medium-size, 28px); }
|
|
47
48
|
|
|
48
49
|
:host([shape="circular"]) { --_radius: var(--radius-full, 1000px); }
|
|
@@ -73,7 +74,8 @@ var c = class extends t {
|
|
|
73
74
|
:host([size="small"]) { --_icon-size: var(--icon-size-small, 20px); }
|
|
74
75
|
:host([size="medium"]) { --_icon-size: var(--icon-size-medium, 24px); }
|
|
75
76
|
:host([size="large"]) { --_icon-size: var(--icon-size-large, 30px); }
|
|
76
|
-
:host([size="
|
|
77
|
+
:host([size="extra-large"]),
|
|
78
|
+
:host([size="xlarge"]) { --_icon-size: var(--icon-size-extra-extra-large, 48px); }
|
|
77
79
|
:host([variant="icon"]) .container { background: var(--_bg); color: var(--_fg); }
|
|
78
80
|
|
|
79
81
|
img.icon {
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
export * from './scb-accordion/scb-accordion-item';
|
|
2
|
+
export * from './scb-accordion/scb-accordion';
|
|
3
|
+
export * from './scb-action-card/scb-action-card';
|
|
4
|
+
export * from './scb-app-bar/scb-app-bar';
|
|
5
|
+
export * from './scb-avatar/scb-avatar';
|
|
6
|
+
export * from './scb-badge/scb-badge';
|
|
7
|
+
export * from './scb-breadcrumb/scb-breadcrumb-item';
|
|
8
|
+
export * from './scb-breadcrumb/scb-breadcrumb';
|
|
9
|
+
export * from './scb-button/scb-button';
|
|
10
|
+
export * from './scb-calendar/scb-calendar-event';
|
|
11
|
+
export * from './scb-calendar/scb-calendar';
|
|
12
|
+
export * from './scb-calendar-card/scb-calendar-card';
|
|
13
|
+
export * from './scb-card/scb-action-card';
|
|
14
|
+
export * from './scb-card/scb-card';
|
|
15
|
+
export * from './scb-card/scb-container-card';
|
|
16
|
+
export * from './scb-card/scb-link-card';
|
|
17
|
+
export * from './scb-card/scb-list-card';
|
|
18
|
+
export * from './scb-card/scb-social-card';
|
|
19
|
+
export * from './scb-checkbox/scb-checkbox-group';
|
|
20
|
+
export * from './scb-checkbox/scb-checkbox';
|
|
21
|
+
export * from './scb-chevron/scb-chevron';
|
|
22
|
+
export * from './scb-chip/scb-chip';
|
|
23
|
+
export * from './scb-collapse/scb-collapse';
|
|
24
|
+
export * from './scb-container-card/scb-container-card';
|
|
25
|
+
export * from './scb-cookies-consent/scb-cookies-consent';
|
|
26
|
+
export * from './scb-datepicker/scb-datepicker';
|
|
27
|
+
export * from './scb-dialog/scb-dialog';
|
|
28
|
+
export * from './scb-divider/scb-divider';
|
|
29
|
+
export * from './scb-drawer/scb-drawer';
|
|
30
|
+
export * from './scb-drop-zone/scb-drop-zone';
|
|
31
|
+
export * from './scb-dropdown/scb-dropdown';
|
|
32
|
+
export * from './scb-fab/scb-fab';
|
|
33
|
+
export * from './scb-fact-card/scb-fact-card-content';
|
|
34
|
+
export * from './scb-fact-card/scb-fact-card';
|
|
35
|
+
export * from './scb-footer/scb-footer-section';
|
|
36
|
+
export * from './scb-footer/scb-footer';
|
|
37
|
+
export * from './scb-gallery-grid/scb-gallery-grid';
|
|
38
|
+
export * from './scb-grid/scb-grid-item';
|
|
39
|
+
export * from './scb-grid/scb-grid';
|
|
40
|
+
export * from './scb-grid/scb-stack';
|
|
41
|
+
export * from './scb-header/scb-header-menu-group';
|
|
42
|
+
export * from './scb-header/scb-header-menu-item';
|
|
43
|
+
export * from './scb-header/scb-header-tab';
|
|
44
|
+
export * from './scb-header/scb-header-utility';
|
|
45
|
+
export * from './scb-header/scb-header';
|
|
46
|
+
export * from './scb-horizontal-scroller/scb-horizontal-scroller';
|
|
47
|
+
export * from './scb-icon/scb-icon';
|
|
48
|
+
export * from './scb-icon-button/scb-icon-button';
|
|
49
|
+
export * from './scb-keyfigure-card/scb-keyfigure-card';
|
|
50
|
+
export * from './scb-link/scb-link';
|
|
51
|
+
export * from './scb-link-card/scb-link-card';
|
|
52
|
+
export * from './scb-list/scb-list-item';
|
|
53
|
+
export * from './scb-list/scb-list';
|
|
54
|
+
export * from './scb-list-card/scb-list-card';
|
|
55
|
+
export * from './scb-menu/scb-menu-item';
|
|
56
|
+
export * from './scb-menu/scb-menu-section';
|
|
57
|
+
export * from './scb-menu/scb-menu';
|
|
58
|
+
export * from './scb-menu/scb-sub-menu';
|
|
59
|
+
export * from './scb-nav/scb-nav-item';
|
|
60
|
+
export * from './scb-nav/scb-nav';
|
|
61
|
+
export * from './scb-notification-card/scb-notification-card';
|
|
62
|
+
export * from './scb-options-menu/scb-options-menu-item';
|
|
63
|
+
export * from './scb-options-menu/scb-options-menu';
|
|
64
|
+
export * from './scb-options-menu/scb-options-sub-menu';
|
|
65
|
+
export * from './scb-overlay/scb-overlay';
|
|
66
|
+
export * from './scb-pagination/scb-pagination';
|
|
67
|
+
export * from './scb-progress-indicator/scb-progress-indicator';
|
|
68
|
+
export * from './scb-progress-stepper/scb-progress-step';
|
|
69
|
+
export * from './scb-progress-stepper/scb-progress-stepper';
|
|
70
|
+
export * from './scb-radio-button/scb-radio-button';
|
|
71
|
+
export * from './scb-radio-button/scb-radio-group';
|
|
72
|
+
export * from './scb-scrollspy/scb-scrollspy';
|
|
73
|
+
export * from './scb-search/scb-search';
|
|
74
|
+
export * from './scb-segmented-button/scb-segmented-button';
|
|
75
|
+
export * from './scb-segmented-button/scb-segmented-item';
|
|
76
|
+
export * from './scb-select/scb-select-option';
|
|
77
|
+
export * from './scb-select/scb-select';
|
|
78
|
+
export * from './scb-skeleton/scb-skeleton';
|
|
79
|
+
export * from './scb-slider/scb-slider';
|
|
80
|
+
export * from './scb-snackbar/scb-snackbar';
|
|
81
|
+
export * from './scb-social-card/scb-social-card';
|
|
82
|
+
export * from './scb-status-pill/scb-status-pill';
|
|
83
|
+
export * from './scb-stepper/scb-step';
|
|
84
|
+
export * from './scb-stepper/scb-stepper';
|
|
85
|
+
export * from './scb-switch/scb-switch';
|
|
86
|
+
export * from './scb-table/scb-table';
|
|
87
|
+
export * from './scb-table-advanced/scb-table-advanced';
|
|
88
|
+
export * from './scb-tabs/scb-primary-tab';
|
|
89
|
+
export * from './scb-tabs/scb-secondary-tab';
|
|
90
|
+
export * from './scb-tabs/scb-tabs';
|
|
91
|
+
export * from './scb-textfield/scb-textfield';
|
|
92
|
+
export * from './scb-toc/scb-toc-item';
|
|
93
|
+
export * from './scb-toc/scb-toc';
|
|
94
|
+
export * from './scb-tooltip/scb-tooltip';
|
|
95
|
+
export * from './scb-viz/scb-viz-actions-runtime';
|
|
96
|
+
export * from './scb-viz/scb-viz-print-runtime';
|
|
97
|
+
export * from './scb-viz/scb-viz-series-differentiation-registry';
|
|
98
|
+
export * from './scb-viz/scb-viz-series-differentiation-runtime';
|
|
99
|
+
export * from './scb-viz/scb-viz-table-runtime';
|
|
100
|
+
export * from './scb-viz/scb-viz';
|
|
101
|
+
export * from './shared/lazy-focus-ring';
|
|
102
|
+
export * from './shared/lazy-ripple';
|
|
103
|
+
export * from './shared/scb-icon-svg';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LitElement, TemplateResult } from 'lit';
|
|
2
|
-
type AvatarSize = 'small' | 'medium' | 'large' | 'xlarge';
|
|
2
|
+
type AvatarSize = 'small' | 'medium' | 'large' | 'extra-large' | 'xlarge';
|
|
3
3
|
type AvatarShape = 'circular' | 'rounded' | 'square';
|
|
4
4
|
type AvatarVariant = 'image' | 'icon';
|
|
5
5
|
export declare class ScbAvatar extends LitElement {
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
export declare class ScbChevron extends LitElement {
|
|
3
|
+
open: boolean;
|
|
4
|
+
static styles: import('lit').CSSResult;
|
|
5
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
6
|
+
}
|
|
7
|
+
declare global {
|
|
8
|
+
interface HTMLElementTagNameMap {
|
|
9
|
+
'scb-chevron': ScbChevron;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { LitElement, PropertyValues, TemplateResult } from 'lit';
|
|
2
|
+
export declare class ScbDatepicker extends LitElement {
|
|
3
|
+
private _currentDate;
|
|
4
|
+
private _selectedDate;
|
|
5
|
+
private _showMonthDropdown;
|
|
6
|
+
private _showYearDropdown;
|
|
7
|
+
variant: 'datetime-local' | 'date';
|
|
8
|
+
lang: 'sv' | 'en';
|
|
9
|
+
selectedValue: string;
|
|
10
|
+
open: boolean;
|
|
11
|
+
private _selectedHour;
|
|
12
|
+
private _selectedMinute;
|
|
13
|
+
private readonly _viewportMargin;
|
|
14
|
+
private readonly _popupOffset;
|
|
15
|
+
private _removeLazyFocusRingListeners?;
|
|
16
|
+
private _onWindowReposition;
|
|
17
|
+
private _isRenderedInsideDialog;
|
|
18
|
+
connectedCallback(): void;
|
|
19
|
+
private _positionPopupWithinViewport;
|
|
20
|
+
static styles: import('lit').CSSResult[];
|
|
21
|
+
updated(changed: PropertyValues): void;
|
|
22
|
+
disconnectedCallback(): void;
|
|
23
|
+
private _monthNames;
|
|
24
|
+
render(): TemplateResult;
|
|
25
|
+
private _getMonthDays;
|
|
26
|
+
private _outsideClickHandler;
|
|
27
|
+
private _toggleMonthDropdown;
|
|
28
|
+
private _toggleYearDropdown;
|
|
29
|
+
private _onMonthChangeCustom;
|
|
30
|
+
private _onYearChangeCustom;
|
|
31
|
+
private _prevMonth;
|
|
32
|
+
private _prevYear;
|
|
33
|
+
private _nextMonth;
|
|
34
|
+
private _nextYear;
|
|
35
|
+
private _isToday;
|
|
36
|
+
private _isSelected;
|
|
37
|
+
private _selectDate;
|
|
38
|
+
private _fireDateTimeChange;
|
|
39
|
+
private _onTimeChange;
|
|
40
|
+
private _close;
|
|
41
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { LitElement, TemplateResult } from 'lit';
|
|
2
|
+
export type ScbIconSize = 'tiny' | 'extra-small' | 'small' | 'medium' | 'large' | 'extra-large';
|
|
3
|
+
export declare class ScbIcon extends LitElement {
|
|
4
|
+
/** Material Symbols-namn, till exempel "search". */
|
|
5
|
+
icon: string;
|
|
6
|
+
/** Ikonstorlek. */
|
|
7
|
+
size: ScbIconSize;
|
|
8
|
+
/** Gör ikonen fylld om true (Material Symbols med FILL-axeln). */
|
|
9
|
+
filled: boolean;
|
|
10
|
+
/** Tillgängligt namn när ikonen bär egen betydelse. Utelämna för dekorativa ikoner. */
|
|
11
|
+
label: string;
|
|
12
|
+
static styles: import('lit').CSSResult;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
'scb-icon': ScbIcon;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const ensureFocusRingReady: () => void;
|
|
2
|
+
export declare const ensureFocusRingOnFocusVisible: (event: Event) => void;
|
|
3
|
+
export declare const ensureFocusRingOnTab: (event: KeyboardEvent) => void;
|
|
4
|
+
export declare const addLazyFocusRingListeners: (...targets: EventTarget[]) => (() => void);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export type LazyRippleElement = HTMLElement & {
|
|
2
|
+
control?: HTMLElement | null;
|
|
3
|
+
hovered?: boolean;
|
|
4
|
+
handlePointerenter?: (event: PointerEvent) => void;
|
|
5
|
+
handlePointerdown?: (event: PointerEvent) => void | Promise<void>;
|
|
6
|
+
handleClick?: () => void;
|
|
7
|
+
};
|
|
8
|
+
export declare const ensureRippleReady: () => Promise<void>;
|
|
9
|
+
export declare const syncRippleToControl: (ripple: LazyRippleElement | null | undefined, control: HTMLElement | null | undefined, event?: PointerEvent, click?: boolean) => Promise<void>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { nothing } from 'lit';
|
|
2
|
+
export declare function hasScbSvgIcon(name: string | undefined | null): boolean;
|
|
3
|
+
export declare function renderScbIcon(name: string | undefined | null, className?: string, part?: string): typeof nothing | import('lit-html').TemplateResult<2>;
|
|
@@ -473,3 +473,4 @@ var c = class extends n {
|
|
|
473
473
|
};
|
|
474
474
|
t([s()], c.prototype, "_currentDate", void 0), t([s()], c.prototype, "_selectedDate", void 0), t([s()], c.prototype, "_showMonthDropdown", void 0), t([s()], c.prototype, "_showYearDropdown", void 0), t([o({ type: String })], c.prototype, "variant", void 0), t([o({ type: String })], c.prototype, "lang", void 0), t([o({ type: String })], c.prototype, "selectedValue", void 0), t([o({ type: Boolean })], c.prototype, "open", void 0), t([s()], c.prototype, "_selectedHour", void 0), t([s()], c.prototype, "_selectedMinute", void 0), c = t([a("scb-datepicker")], c);
|
|
475
475
|
//#endregion
|
|
476
|
+
export { c as ScbDatepicker };
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { __decorate as e } from "../_virtual/_@oxc-project_runtime@0.126.0/helpers/decorate.js";
|
|
2
|
+
import { LitElement as t, css as n, html as r, nothing as i } from "lit";
|
|
3
|
+
import { customElement as a, property as o } from "lit/decorators.js";
|
|
4
|
+
//#region src/scb-components/scb-icon/scb-icon.ts
|
|
5
|
+
var s = class extends t {
|
|
6
|
+
constructor(...e) {
|
|
7
|
+
super(...e), this.icon = "", this.size = "medium", this.filled = !1, this.label = "";
|
|
8
|
+
}
|
|
9
|
+
static {
|
|
10
|
+
this.styles = n`
|
|
11
|
+
:host {
|
|
12
|
+
display: inline-flex;
|
|
13
|
+
inline-size: var(--scb-icon-size, var(--icon-size-medium, 24px));
|
|
14
|
+
block-size: var(--scb-icon-size, var(--icon-size-medium, 24px));
|
|
15
|
+
flex: 0 0 auto;
|
|
16
|
+
align-items: center;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
color: inherit;
|
|
19
|
+
vertical-align: middle;
|
|
20
|
+
--scb-icon-font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
:host([size='tiny']) {
|
|
24
|
+
--scb-icon-size: var(--icon-size-tiny, 12px);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
:host([size='extra-small']) {
|
|
28
|
+
--scb-icon-size: var(--icon-size-extra-small, 16px);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
:host([size='small']) {
|
|
32
|
+
--scb-icon-size: var(--icon-size-small, 20px);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
:host([size='medium']) {
|
|
36
|
+
--scb-icon-size: var(--icon-size-medium, 24px);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
:host([size='large']) {
|
|
40
|
+
--scb-icon-size: var(--icon-size-medium, 24px);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
:host([size='extra-large']) {
|
|
44
|
+
--scb-icon-size: var(--icon-size-extra-large, 36px);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
:host([filled]) {
|
|
48
|
+
--scb-icon-font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.icon {
|
|
52
|
+
display: inline-block;
|
|
53
|
+
inline-size: var(--scb-icon-size, var(--icon-size-medium, 24px));
|
|
54
|
+
block-size: var(--scb-icon-size, var(--icon-size-medium, 24px));
|
|
55
|
+
overflow: hidden;
|
|
56
|
+
font-family: 'Material Symbols Outlined';
|
|
57
|
+
font-size: var(--scb-icon-size, var(--icon-size-medium, 24px));
|
|
58
|
+
font-style: normal;
|
|
59
|
+
font-weight: normal;
|
|
60
|
+
line-height: 1;
|
|
61
|
+
text-align: center;
|
|
62
|
+
white-space: nowrap;
|
|
63
|
+
text-transform: none;
|
|
64
|
+
word-wrap: normal;
|
|
65
|
+
direction: ltr;
|
|
66
|
+
font-feature-settings: 'liga' 1;
|
|
67
|
+
font-variation-settings: var(--scb-icon-font-variation-settings);
|
|
68
|
+
-webkit-font-smoothing: antialiased;
|
|
69
|
+
-moz-osx-font-smoothing: grayscale;
|
|
70
|
+
}
|
|
71
|
+
`;
|
|
72
|
+
}
|
|
73
|
+
render() {
|
|
74
|
+
let e = this.icon.trim(), t = this.label.trim();
|
|
75
|
+
return r`
|
|
76
|
+
<span
|
|
77
|
+
class="icon"
|
|
78
|
+
part="icon"
|
|
79
|
+
aria-hidden=${t ? i : "true"}
|
|
80
|
+
aria-label=${t || i}
|
|
81
|
+
role=${t ? "img" : i}
|
|
82
|
+
>${e}</span>
|
|
83
|
+
`;
|
|
84
|
+
}
|
|
85
|
+
};
|
|
86
|
+
e([o({ type: String })], s.prototype, "icon", void 0), e([o({
|
|
87
|
+
type: String,
|
|
88
|
+
reflect: !0
|
|
89
|
+
})], s.prototype, "size", void 0), e([o({
|
|
90
|
+
type: Boolean,
|
|
91
|
+
reflect: !0
|
|
92
|
+
})], s.prototype, "filled", void 0), e([o({ type: String })], s.prototype, "label", void 0), s = e([a("scb-icon")], s);
|
|
93
|
+
//#endregion
|
|
94
|
+
export { s as ScbIcon };
|