@skf-design-system/ui-components 1.0.0-alpha.35 → 1.0.0-alpha.36
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/custom-elements.json +25490 -0
- package/dist/components/accordion/accordion.component.d.ts +1 -1
- package/dist/components/accordion/accordion.component.js +2 -2
- package/dist/components/card/card.component.d.ts +2 -0
- package/dist/components/card/card.styles.js +2 -1
- package/dist/components/datepicker/datepicker.component.js +1 -0
- package/dist/components/icon/icon.component.d.ts +1 -4
- package/dist/components/icon/icon.component.js +41 -53
- package/dist/components/icon/icon.styles.js +0 -1
- package/dist/components/input/input.component.js +1 -0
- package/dist/components/link/link.component.d.ts +15 -18
- package/dist/components/link/link.component.js +99 -108
- package/dist/components/link/link.styles.js +45 -45
- package/dist/components/menu/menu-item.component.d.ts +1 -1
- package/dist/components/menu/menu-item.component.js +8 -8
- package/dist/components/menu/menu-item.styles.js +8 -5
- package/dist/components/nav/nav-item.component.d.ts +4 -0
- package/dist/components/nav/nav-item.component.js +44 -25
- package/dist/components/nav/nav-item.styles.js +29 -25
- package/dist/components/nav/nav.component.d.ts +6 -0
- package/dist/components/nav/nav.component.js +42 -21
- package/dist/components/nav/nav.styles.js +15 -9
- package/dist/components/popover/popover.component.d.ts +4 -0
- package/dist/components/popover/popover.component.js +31 -23
- package/dist/components/progress/progress.component.d.ts +2 -0
- package/dist/components/progress/progress.component.js +38 -29
- package/dist/components/progress/progress.styles.js +3 -3
- package/dist/components/select/select-option-group.component.d.ts +4 -0
- package/dist/components/select/select-option-group.component.js +37 -18
- package/dist/components/select/select-option-group.style.js +12 -6
- package/dist/components/select/select-option.component.d.ts +5 -1
- package/dist/components/select/select-option.component.js +69 -52
- package/dist/components/select/select-option.styles.js +43 -31
- package/dist/components/select/select.component.d.ts +5 -1
- package/dist/components/select/select.component.js +47 -29
- package/dist/components/select/select.controllers.js +2 -1
- package/dist/components/textarea/textarea.component.js +5 -4
- package/dist/components/toast/toast.component.js +9 -9
- package/dist/components/toast/toast.singleton.d.ts +1 -1
- package/dist/components/toast/toast.singleton.js +18 -18
- package/dist/custom-elements.json +758 -678
- package/dist/internal/base-classes/popover/popover.base.d.ts +2 -2
- package/dist/internal/base-classes/popover/popover.base.js +17 -17
- package/dist/internal/base-classes/popover/popover.styles.js +4 -5
- package/dist/internal/components/hint/hint.component.d.ts +4 -0
- package/dist/internal/components/hint/hint.component.js +47 -20
- package/dist/internal/components/hint/hint.styles.js +29 -25
- package/dist/types/jsx/custom-element-jsx.d.ts +188 -70
- package/dist/types/vue/index.d.ts +81 -69
- package/dist/vscode.html-custom-data.json +91 -95
- package/dist/web-types.json +204 -203
- package/package.json +13 -13
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { SkfLink as
|
|
1
|
+
import { SkfLink as t } from "../link/link.component.js";
|
|
2
2
|
import "lit";
|
|
3
|
-
import { styles as
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
super(), this.role = "menuitem"
|
|
3
|
+
import { styles as l } from "./menu-item.styles.js";
|
|
4
|
+
const s = class s extends t {
|
|
5
|
+
connectedCallback() {
|
|
6
|
+
super.connectedCallback(), this.role = "menuitem";
|
|
7
7
|
}
|
|
8
8
|
};
|
|
9
|
-
|
|
10
|
-
let
|
|
9
|
+
s.styles = [t.styles, l];
|
|
10
|
+
let e = s;
|
|
11
11
|
export {
|
|
12
|
-
|
|
12
|
+
e as SkfMenuItem
|
|
13
13
|
};
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import { css as
|
|
2
|
-
const
|
|
1
|
+
import { css as o } from "lit";
|
|
2
|
+
const e = o`
|
|
3
3
|
@layer components {
|
|
4
|
-
|
|
4
|
+
:host {
|
|
5
|
+
display: block;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
#root {
|
|
5
9
|
block-size: var(--skf-size-44);
|
|
6
|
-
display: flex;
|
|
7
10
|
padding-inline: var(--skf-spacing-75);
|
|
8
11
|
|
|
9
12
|
@media screen and (any-hover: hover) {
|
|
@@ -15,5 +18,5 @@ const s = e`
|
|
|
15
18
|
}
|
|
16
19
|
`;
|
|
17
20
|
export {
|
|
18
|
-
|
|
21
|
+
e as styles
|
|
19
22
|
};
|
|
@@ -10,9 +10,13 @@ import { type CSSResultGroup } from 'lit';
|
|
|
10
10
|
* @tagname skf-nav-item
|
|
11
11
|
*/
|
|
12
12
|
export declare class SkfNavItem extends SkfElement {
|
|
13
|
+
#private;
|
|
13
14
|
static styles: CSSResultGroup;
|
|
14
15
|
href: string;
|
|
15
16
|
icon?: Icon;
|
|
17
|
+
vertical: boolean;
|
|
16
18
|
connectedCallback(): void;
|
|
19
|
+
/** @internal */
|
|
20
|
+
_handleStateChange(): void;
|
|
17
21
|
render(): import("lit").TemplateResult<1>;
|
|
18
22
|
}
|
|
@@ -1,38 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { componentStyles as c } from "../../styles/component.styles.js";
|
|
4
|
-
import { html as h } from "lit";
|
|
5
|
-
import { property as f } from "lit/decorators.js";
|
|
6
|
-
import { ifDefined as u } from "lit/directives/if-defined.js";
|
|
7
|
-
import { styles as a } from "./nav-item.styles.js";
|
|
8
|
-
var d = Object.defineProperty, p = (i, s, n, y) => {
|
|
9
|
-
for (var r = void 0, t = i.length - 1, l; t >= 0; t--)
|
|
10
|
-
(l = i[t]) && (r = l(s, n, r) || r);
|
|
11
|
-
return r && d(s, n, r), r;
|
|
1
|
+
var y = (t) => {
|
|
2
|
+
throw TypeError(t);
|
|
12
3
|
};
|
|
13
|
-
|
|
4
|
+
var u = (t, e, r) => e.has(t) || y("Cannot " + r);
|
|
5
|
+
var h = (t, e, r) => (u(t, e, "read from private field"), r ? r.call(t) : e.get(t)), f = (t, e, r) => e.has(t) ? y("Cannot add the same private member more than once") : e instanceof WeakSet ? e.add(t) : e.set(t, r), m = (t, e, r, s) => (u(t, e, "write to private field"), s ? s.call(t, r) : e.set(t, r), r);
|
|
6
|
+
import "../link/link.js";
|
|
7
|
+
import { SkfElement as d } from "../../internal/components/skf-element.js";
|
|
8
|
+
import { stateMap as g } from "../../internal/helpers/stateMap.js";
|
|
9
|
+
import { watch as C } from "../../internal/helpers/watch.js";
|
|
10
|
+
import { componentStyles as b } from "../../styles/component.styles.js";
|
|
11
|
+
import { html as O } from "lit";
|
|
12
|
+
import { property as _, state as P } from "lit/decorators.js";
|
|
13
|
+
import { ifDefined as S } from "lit/directives/if-defined.js";
|
|
14
|
+
import { styles as w } from "./nav-item.styles.js";
|
|
15
|
+
var D = Object.defineProperty, j = Object.getOwnPropertyDescriptor, l = (t, e, r, s) => {
|
|
16
|
+
for (var o = s > 1 ? void 0 : s ? j(e, r) : e, a = t.length - 1, c; a >= 0; a--)
|
|
17
|
+
(c = t[a]) && (o = (s ? c(e, r, o) : c(o)) || o);
|
|
18
|
+
return s && o && D(e, r, o), o;
|
|
19
|
+
}, n, p;
|
|
20
|
+
const v = class v extends d {
|
|
14
21
|
constructor() {
|
|
15
|
-
super(...arguments)
|
|
22
|
+
super(...arguments);
|
|
23
|
+
f(this, n);
|
|
24
|
+
f(this, p);
|
|
25
|
+
m(this, n, this.attachInternals()), m(this, p, h(this, n).states), this.href = "", this.vertical = !1;
|
|
16
26
|
}
|
|
17
27
|
connectedCallback() {
|
|
18
|
-
super.connectedCallback(), this.role = "
|
|
28
|
+
super.connectedCallback(), this.role = "listitem";
|
|
29
|
+
}
|
|
30
|
+
_handleStateChange() {
|
|
31
|
+
g(h(this, p), "vertical").set(this.vertical);
|
|
19
32
|
}
|
|
20
33
|
render() {
|
|
21
|
-
return
|
|
22
|
-
<skf-link color="inverse" href=${this.href} icon=${
|
|
34
|
+
return O`
|
|
35
|
+
<skf-link color="inverse" href=${this.href} icon=${S(this.icon)}>
|
|
23
36
|
<slot></slot>
|
|
24
37
|
</skf-link>
|
|
25
38
|
`;
|
|
26
39
|
}
|
|
27
40
|
};
|
|
28
|
-
|
|
29
|
-
let
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
],
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
],
|
|
41
|
+
n = new WeakMap(), p = new WeakMap(), v.styles = [b, w];
|
|
42
|
+
let i = v;
|
|
43
|
+
l([
|
|
44
|
+
_({ type: String })
|
|
45
|
+
], i.prototype, "href", 2);
|
|
46
|
+
l([
|
|
47
|
+
_({ type: String })
|
|
48
|
+
], i.prototype, "icon", 2);
|
|
49
|
+
l([
|
|
50
|
+
P()
|
|
51
|
+
], i.prototype, "vertical", 2);
|
|
52
|
+
l([
|
|
53
|
+
C("vertical")
|
|
54
|
+
], i.prototype, "_handleStateChange", 1);
|
|
36
55
|
export {
|
|
37
|
-
|
|
56
|
+
i as SkfNavItem
|
|
38
57
|
};
|
|
@@ -1,36 +1,40 @@
|
|
|
1
1
|
import { css as t } from "lit";
|
|
2
2
|
const s = t`
|
|
3
3
|
@layer components {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
@layer base {
|
|
5
|
+
skf-link::part(root) {
|
|
6
|
+
block-size: var(--skf-header-height);
|
|
7
|
+
display: flex;
|
|
8
|
+
padding-inline: var(--skf-spacing-100);
|
|
9
|
+
position: relative;
|
|
10
|
+
}
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
skf-link::part(root)::after {
|
|
13
|
+
content: '';
|
|
14
|
+
position: absolute;
|
|
15
|
+
transition: translate calc(var(--skf-motion-duration-fast) * 1ms)
|
|
16
|
+
var(--skf-motion-easing-ease-in);
|
|
17
|
+
}
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
skf-link::part(root):hover::after {
|
|
20
|
+
--_skf-nav-link-translate: 0;
|
|
21
|
+
}
|
|
21
22
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
:host(:not(:state(vertical))) skf-link::part(root)::after {
|
|
24
|
+
border-bottom: var(--skf-size-4) solid var(--skf-border-color-inverse);
|
|
25
|
+
inset-block-end: 0;
|
|
26
|
+
inset-inline: 0;
|
|
27
|
+
translate: 0 var(--_skf-nav-link-translate, 100%);
|
|
28
|
+
}
|
|
27
29
|
}
|
|
28
30
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
@layer mods {
|
|
32
|
+
:host(:state(vertical)) skf-link::part(root)::after {
|
|
33
|
+
border-left: var(--skf-size-4) solid var(--skf-border-color-inverse);
|
|
34
|
+
inset-block: 0;
|
|
35
|
+
inset-inline-start: 0;
|
|
36
|
+
translate: var(--_skf-nav-link-translate, -100%) 0;
|
|
37
|
+
}
|
|
34
38
|
}
|
|
35
39
|
}
|
|
36
40
|
`;
|
|
@@ -10,8 +10,14 @@ import { type CSSResultGroup } from 'lit';
|
|
|
10
10
|
* @tagname skf-nav
|
|
11
11
|
*/
|
|
12
12
|
export declare class SkfNav extends SkfElement {
|
|
13
|
+
#private;
|
|
13
14
|
static styles: CSSResultGroup;
|
|
15
|
+
/** If true, the navigation will be displayed vertically */
|
|
14
16
|
vertical: boolean;
|
|
17
|
+
/** @internal */
|
|
18
|
+
private _items;
|
|
15
19
|
connectedCallback(): void;
|
|
20
|
+
/** @internal */
|
|
21
|
+
_handleStateChange(): void;
|
|
16
22
|
render(): import("lit").TemplateResult<1>;
|
|
17
23
|
}
|
|
@@ -1,34 +1,55 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { html as p } from "lit";
|
|
4
|
-
import { property as c } from "lit/decorators.js";
|
|
5
|
-
import { ifDefined as f } from "lit/directives/if-defined.js";
|
|
6
|
-
import { styles as u } from "./nav.styles.js";
|
|
7
|
-
var v = Object.defineProperty, d = (i, a, l, h) => {
|
|
8
|
-
for (var e = void 0, r = i.length - 1, n; r >= 0; r--)
|
|
9
|
-
(n = i[r]) && (e = n(a, l, e) || e);
|
|
10
|
-
return e && v(a, l, e), e;
|
|
1
|
+
var u = (t) => {
|
|
2
|
+
throw TypeError(t);
|
|
11
3
|
};
|
|
12
|
-
|
|
4
|
+
var y = (t, e, r) => e.has(t) || u("Cannot " + r);
|
|
5
|
+
var c = (t, e, r) => (y(t, e, "read from private field"), r ? r.call(t) : e.get(t)), m = (t, e, r) => e.has(t) ? u("Cannot add the same private member more than once") : e instanceof WeakSet ? e.add(t) : e.set(t, r), h = (t, e, r, i) => (y(t, e, "write to private field"), i ? i.call(t, r) : e.set(t, r), r);
|
|
6
|
+
import { SkfElement as _ } from "../../internal/components/skf-element.js";
|
|
7
|
+
import { stateMap as d } from "../../internal/helpers/stateMap.js";
|
|
8
|
+
import { watch as b } from "../../internal/helpers/watch.js";
|
|
9
|
+
import { componentStyles as g } from "../../styles/component.styles.js";
|
|
10
|
+
import { html as C } from "lit";
|
|
11
|
+
import { property as O, queryAssignedElements as P } from "lit/decorators.js";
|
|
12
|
+
import { ifDefined as w } from "lit/directives/if-defined.js";
|
|
13
|
+
import { styles as D } from "./nav.styles.js";
|
|
14
|
+
var E = Object.defineProperty, j = Object.getOwnPropertyDescriptor, f = (t, e, r, i) => {
|
|
15
|
+
for (var s = i > 1 ? void 0 : i ? j(e, r) : e, n = t.length - 1, p; n >= 0; n--)
|
|
16
|
+
(p = t[n]) && (s = (i ? p(e, r, s) : p(s)) || s);
|
|
17
|
+
return i && s && E(e, r, s), s;
|
|
18
|
+
}, o, l;
|
|
19
|
+
const v = class v extends _ {
|
|
13
20
|
constructor() {
|
|
14
|
-
super(...arguments)
|
|
21
|
+
super(...arguments);
|
|
22
|
+
m(this, o);
|
|
23
|
+
m(this, l);
|
|
24
|
+
h(this, o, this.attachInternals()), h(this, l, c(this, o).states), this.vertical = !1;
|
|
15
25
|
}
|
|
16
26
|
connectedCallback() {
|
|
17
|
-
super.connectedCallback(), this.ariaLabel = this.ariaLabel ?? "Main navigation", this.role = "
|
|
27
|
+
super.connectedCallback(), this.ariaLabel = this.ariaLabel ?? "Main navigation", this.role = "navigation";
|
|
28
|
+
}
|
|
29
|
+
_handleStateChange() {
|
|
30
|
+
d(c(this, l), "vertical").set(this.vertical), this._items.forEach((r) => {
|
|
31
|
+
r.vertical = this.vertical;
|
|
32
|
+
});
|
|
18
33
|
}
|
|
19
34
|
render() {
|
|
20
|
-
return
|
|
21
|
-
<ul aria-orientation=${
|
|
35
|
+
return C`
|
|
36
|
+
<ul aria-orientation=${w(this.vertical ? "vertical" : void 0)}>
|
|
22
37
|
<slot></slot>
|
|
23
38
|
</ul>
|
|
24
39
|
`;
|
|
25
40
|
}
|
|
26
41
|
};
|
|
27
|
-
o.styles = [
|
|
28
|
-
let
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
],
|
|
42
|
+
o = new WeakMap(), l = new WeakMap(), v.styles = [g, D];
|
|
43
|
+
let a = v;
|
|
44
|
+
f([
|
|
45
|
+
O({ type: Boolean })
|
|
46
|
+
], a.prototype, "vertical", 2);
|
|
47
|
+
f([
|
|
48
|
+
P({ selector: "skf-nav-item" })
|
|
49
|
+
], a.prototype, "_items", 2);
|
|
50
|
+
f([
|
|
51
|
+
b("vertical")
|
|
52
|
+
], a.prototype, "_handleStateChange", 1);
|
|
32
53
|
export {
|
|
33
|
-
|
|
54
|
+
a as SkfNav
|
|
34
55
|
};
|
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
import { css as t } from "lit";
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
const o = t`
|
|
3
|
+
@layer components {
|
|
4
|
+
@layer base {
|
|
5
|
+
:host(:not(:state(vertical))) {
|
|
6
|
+
width: fit-content;
|
|
7
|
+
}
|
|
6
8
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
+
ul {
|
|
10
|
+
display: flex;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
9
13
|
|
|
10
|
-
|
|
11
|
-
|
|
14
|
+
@layer mods {
|
|
15
|
+
:host(:state(vertical)) ul {
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
}
|
|
12
18
|
}
|
|
13
19
|
}
|
|
14
20
|
`;
|
|
15
21
|
export {
|
|
16
|
-
|
|
22
|
+
o as styles
|
|
17
23
|
};
|
|
@@ -28,5 +28,9 @@ export declare class SkfPopover extends SkfPopoverBase {
|
|
|
28
28
|
/** @internal */
|
|
29
29
|
hideArrowChanged(): void;
|
|
30
30
|
/** @internal */
|
|
31
|
+
openExtended(): void;
|
|
32
|
+
/** @internal */
|
|
31
33
|
addEventListeners($element: HTMLElement | Element): void;
|
|
34
|
+
/** @internal */
|
|
35
|
+
_checkClickOutside: (e: Event) => void;
|
|
32
36
|
}
|
|
@@ -1,35 +1,43 @@
|
|
|
1
|
-
import { SkfPopoverBase as
|
|
2
|
-
import { watch as
|
|
3
|
-
import { property as
|
|
1
|
+
import { SkfPopoverBase as p } from "../../internal/base-classes/popover/popover.base.js";
|
|
2
|
+
import { watch as l } from "../../internal/helpers/watch.js";
|
|
3
|
+
import { property as c } from "lit/decorators.js";
|
|
4
4
|
import { styles as w } from "./popover.styles.js";
|
|
5
|
-
var
|
|
6
|
-
for (var
|
|
7
|
-
(
|
|
8
|
-
return s &&
|
|
5
|
+
var f = Object.defineProperty, v = Object.getOwnPropertyDescriptor, n = (d, t, r, s) => {
|
|
6
|
+
for (var e = s > 1 ? void 0 : s ? v(t, r) : t, o = d.length - 1, h; o >= 0; o--)
|
|
7
|
+
(h = d[o]) && (e = (s ? h(t, r, e) : h(e)) || e);
|
|
8
|
+
return s && e && f(t, r, e), e;
|
|
9
9
|
};
|
|
10
|
-
const
|
|
10
|
+
const a = class a extends p {
|
|
11
11
|
constructor() {
|
|
12
|
-
super(), this.offset = 8, this.hideArrow = !1, this.
|
|
12
|
+
super(), this.offset = 8, this.hideArrow = !1, this._checkClickOutside = (t) => {
|
|
13
|
+
this.isOpen && !this.contains(t.target) && this.close();
|
|
14
|
+
}, this.arrow = !this.hideArrow, this.placement = "bottom-start", this.triggerEvent = "click", this.variant = "popup", p.classMap = { popover: !0 };
|
|
13
15
|
}
|
|
14
16
|
hideArrowChanged() {
|
|
15
17
|
this.arrow = !this.hideArrow;
|
|
16
18
|
}
|
|
17
19
|
/** @internal */
|
|
18
|
-
|
|
19
|
-
|
|
20
|
+
openExtended() {
|
|
21
|
+
window.top && window.self !== window.top && window.top.addEventListener("click", this._checkClickOutside, {
|
|
22
|
+
signal: this.signal
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
/** @internal */
|
|
26
|
+
addEventListeners(t) {
|
|
27
|
+
t.addEventListener(this.triggerEvent, this.open.bind(this), { signal: this.signal });
|
|
20
28
|
}
|
|
21
29
|
};
|
|
22
|
-
|
|
23
|
-
let
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
],
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
],
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
],
|
|
30
|
+
a.styles = [p.styles, w];
|
|
31
|
+
let i = a;
|
|
32
|
+
n([
|
|
33
|
+
c({ type: Number })
|
|
34
|
+
], i.prototype, "offset", 2);
|
|
35
|
+
n([
|
|
36
|
+
c({ type: Boolean })
|
|
37
|
+
], i.prototype, "hideArrow", 2);
|
|
38
|
+
n([
|
|
39
|
+
l("hideArrow")
|
|
40
|
+
], i.prototype, "hideArrowChanged", 1);
|
|
33
41
|
export {
|
|
34
|
-
|
|
42
|
+
i as SkfPopover
|
|
35
43
|
};
|
|
@@ -18,5 +18,7 @@ export declare class SkfProgress extends SkfElement {
|
|
|
18
18
|
/** Specifies how much of the task that has been completed */
|
|
19
19
|
value: number;
|
|
20
20
|
connectedCallback(): void;
|
|
21
|
+
/** @internal */
|
|
22
|
+
_handleStateChange(): void;
|
|
21
23
|
render(): import("lit").TemplateResult<1>;
|
|
22
24
|
}
|
|
@@ -1,43 +1,52 @@
|
|
|
1
|
-
var
|
|
1
|
+
var v = (t) => {
|
|
2
2
|
throw TypeError(t);
|
|
3
3
|
};
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
import { SkfElement as
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
4
|
+
var y = (t, e, r) => e.has(t) || v("Cannot " + r);
|
|
5
|
+
var c = (t, e, r) => (y(t, e, "read from private field"), r ? r.call(t) : e.get(t)), u = (t, e, r) => e.has(t) ? v("Cannot add the same private member more than once") : e instanceof WeakSet ? e.add(t) : e.set(t, r), d = (t, e, r, a) => (y(t, e, "write to private field"), a ? a.call(t, r) : e.set(t, r), r);
|
|
6
|
+
import { SkfElement as b } from "../../internal/components/skf-element.js";
|
|
7
|
+
import { stateMap as _ } from "../../internal/helpers/stateMap.js";
|
|
8
|
+
import { watch as x } from "../../internal/helpers/watch.js";
|
|
9
|
+
import { componentStyles as C } from "../../styles/component.styles.js";
|
|
10
|
+
import { html as O } from "lit";
|
|
11
|
+
import { property as f } from "lit/decorators.js";
|
|
12
|
+
import { styles as g } from "./progress.styles.js";
|
|
13
|
+
var w = Object.defineProperty, j = Object.getOwnPropertyDescriptor, n = (t, e, r, a) => {
|
|
14
|
+
for (var s = a > 1 ? void 0 : a ? j(e, r) : e, l = t.length - 1, h; l >= 0; l--)
|
|
15
|
+
(h = t[l]) && (s = (a ? h(e, r, s) : h(s)) || s);
|
|
16
|
+
return a && s && w(e, r, s), s;
|
|
17
|
+
}, i, p;
|
|
18
|
+
const m = class m extends b {
|
|
17
19
|
constructor() {
|
|
18
20
|
super(...arguments);
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
u(this, i);
|
|
22
|
+
u(this, p);
|
|
23
|
+
d(this, i, this.attachInternals()), d(this, p, c(this, i).states), this.animated = !1, this.max = 1, this.value = 0;
|
|
21
24
|
}
|
|
22
25
|
connectedCallback() {
|
|
23
|
-
super.connectedCallback(),
|
|
26
|
+
super.connectedCallback(), this.role = "progressbar";
|
|
27
|
+
}
|
|
28
|
+
_handleStateChange() {
|
|
29
|
+
_(c(this, p), "animated").set(this.animated);
|
|
24
30
|
}
|
|
25
31
|
render() {
|
|
26
32
|
const r = this.value / this.max * 100;
|
|
27
|
-
return
|
|
33
|
+
return O`<div id="root" style="--_skf-progress-value: ${r}%"></div>`;
|
|
28
34
|
}
|
|
29
35
|
};
|
|
30
|
-
|
|
31
|
-
let o =
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
], o.prototype, "animated");
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
], o.prototype, "max");
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
], o.prototype, "value");
|
|
36
|
+
i = new WeakMap(), p = new WeakMap(), m.styles = [C, g], m.formAssociated = !0;
|
|
37
|
+
let o = m;
|
|
38
|
+
n([
|
|
39
|
+
f({ type: Boolean })
|
|
40
|
+
], o.prototype, "animated", 2);
|
|
41
|
+
n([
|
|
42
|
+
f({ type: Number })
|
|
43
|
+
], o.prototype, "max", 2);
|
|
44
|
+
n([
|
|
45
|
+
f({ type: Number })
|
|
46
|
+
], o.prototype, "value", 2);
|
|
47
|
+
n([
|
|
48
|
+
x("animated")
|
|
49
|
+
], o.prototype, "_handleStateChange", 1);
|
|
41
50
|
export {
|
|
42
51
|
o as SkfProgress
|
|
43
52
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { css as r } from "lit";
|
|
2
|
-
const
|
|
2
|
+
const s = r`
|
|
3
3
|
@layer components {
|
|
4
4
|
@layer base {
|
|
5
5
|
#root {
|
|
@@ -24,7 +24,7 @@ const o = r`
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
@layer mods {
|
|
27
|
-
:host(
|
|
27
|
+
:host(:state(animated)) {
|
|
28
28
|
#root::after {
|
|
29
29
|
animation: skf-progress-animation calc(var(--skf-motion-duration-slow) * 1ms) linear
|
|
30
30
|
infinite reverse;
|
|
@@ -51,5 +51,5 @@ const o = r`
|
|
|
51
51
|
}
|
|
52
52
|
`;
|
|
53
53
|
export {
|
|
54
|
-
|
|
54
|
+
s as styles
|
|
55
55
|
};
|
|
@@ -10,7 +10,11 @@ import { type CSSResultGroup } from 'lit';
|
|
|
10
10
|
* @tagname skf-select-option-group
|
|
11
11
|
*/
|
|
12
12
|
export declare class SkfSelectOptionGroup extends SkfElement {
|
|
13
|
+
#private;
|
|
13
14
|
static styles: CSSResultGroup;
|
|
14
15
|
label: string;
|
|
16
|
+
small: boolean;
|
|
17
|
+
/** @internal */
|
|
18
|
+
_handleStateChange(): void;
|
|
15
19
|
render(): import("lit").TemplateResult<1>;
|
|
16
20
|
}
|
|
@@ -1,19 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { html as p } from "lit";
|
|
4
|
-
import { property as d } from "lit/decorators.js";
|
|
5
|
-
import { styles as n } from "./select-option-group.style.js";
|
|
6
|
-
var v = Object.defineProperty, u = (o, s, i, b) => {
|
|
7
|
-
for (var r = void 0, e = o.length - 1, m; e >= 0; e--)
|
|
8
|
-
(m = o[e]) && (r = m(s, i, r) || r);
|
|
9
|
-
return r && v(s, i, r), r;
|
|
1
|
+
var b = (t) => {
|
|
2
|
+
throw TypeError(t);
|
|
10
3
|
};
|
|
11
|
-
|
|
4
|
+
var d = (t, e, s) => e.has(t) || b("Cannot " + s);
|
|
5
|
+
var h = (t, e, s) => (d(t, e, "read from private field"), s ? s.call(t) : e.get(t)), n = (t, e, s) => e.has(t) ? b("Cannot add the same private member more than once") : e instanceof WeakSet ? e.add(t) : e.set(t, s), f = (t, e, s, r) => (d(t, e, "write to private field"), r ? r.call(t, s) : e.set(t, s), s);
|
|
6
|
+
import { SkfElement as u } from "../../internal/components/skf-element.js";
|
|
7
|
+
import { stateMap as y } from "../../internal/helpers/stateMap.js";
|
|
8
|
+
import { watch as _ } from "../../internal/helpers/watch.js";
|
|
9
|
+
import { componentStyles as g } from "../../styles/component.styles.js";
|
|
10
|
+
import { html as P } from "lit";
|
|
11
|
+
import { property as w, state as C } from "lit/decorators.js";
|
|
12
|
+
import { styles as D } from "./select-option-group.style.js";
|
|
13
|
+
var j = Object.defineProperty, x = Object.getOwnPropertyDescriptor, v = (t, e, s, r) => {
|
|
14
|
+
for (var l = r > 1 ? void 0 : r ? x(e, s) : e, i = t.length - 1, p; i >= 0; i--)
|
|
15
|
+
(p = t[i]) && (l = (r ? p(e, s, l) : p(l)) || l);
|
|
16
|
+
return r && l && j(e, s, l), l;
|
|
17
|
+
}, o, m;
|
|
18
|
+
const c = class c extends u {
|
|
12
19
|
constructor() {
|
|
13
|
-
super(...arguments)
|
|
20
|
+
super(...arguments);
|
|
21
|
+
n(this, o);
|
|
22
|
+
n(this, m);
|
|
23
|
+
f(this, o, this.attachInternals()), f(this, m, h(this, o).states), this.label = "Default label", this.small = !1;
|
|
24
|
+
}
|
|
25
|
+
_handleStateChange() {
|
|
26
|
+
y(h(this, m), "small").set(this.small);
|
|
14
27
|
}
|
|
15
28
|
render() {
|
|
16
|
-
return
|
|
29
|
+
return P`
|
|
17
30
|
<div role="group">
|
|
18
31
|
<div id="label">${this.label}</div>
|
|
19
32
|
<slot></slot>
|
|
@@ -21,11 +34,17 @@ const l = class l extends a {
|
|
|
21
34
|
`;
|
|
22
35
|
}
|
|
23
36
|
};
|
|
24
|
-
|
|
25
|
-
let
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
],
|
|
37
|
+
o = new WeakMap(), m = new WeakMap(), c.styles = [g, D];
|
|
38
|
+
let a = c;
|
|
39
|
+
v([
|
|
40
|
+
w({ reflect: !0 })
|
|
41
|
+
], a.prototype, "label", 2);
|
|
42
|
+
v([
|
|
43
|
+
C()
|
|
44
|
+
], a.prototype, "small", 2);
|
|
45
|
+
v([
|
|
46
|
+
_("small")
|
|
47
|
+
], a.prototype, "_handleStateChange", 1);
|
|
29
48
|
export {
|
|
30
|
-
|
|
49
|
+
a as SkfSelectOptionGroup
|
|
31
50
|
};
|
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
import { css as e } from "lit";
|
|
2
2
|
const t = e`
|
|
3
3
|
@layer components {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
display: flex;
|
|
8
|
-
font-weight: var(--skf-font-weight-bold);
|
|
4
|
+
@layer base {
|
|
5
|
+
#label {
|
|
6
|
+
--_skf-select-option-group-height: var(--skf-size-44);
|
|
9
7
|
|
|
10
|
-
|
|
8
|
+
align-items: center;
|
|
9
|
+
block-size: var(--_skf-select-option-group-height);
|
|
10
|
+
display: flex;
|
|
11
|
+
font-weight: var(--skf-font-weight-bold);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@layer mods {
|
|
16
|
+
:host(:state(small)) #label {
|
|
11
17
|
--_skf-select-option-group-height: var(--skf-size-32);
|
|
12
18
|
}
|
|
13
19
|
}
|