nve-designsystem 1.6.1 → 1.6.3
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/chunks/chunk.5YPURQKE.js +3 -3
- package/chunks/class-map.js +1 -1
- package/chunks/lit-element.js +70 -70
- package/chunks/property.js +2 -2
- package/components/nve-carousel/nve-carousel.styles.js +3 -3
- package/components/nve-checkbox/nve-checkbox.component.js +12 -12
- package/components/nve-divider/nve-divider.component.js +13 -13
- package/components/nve-icon/nve-icon.component.js +12 -12
- package/components/nve-link-card/nve-link-card.component.js +1 -1
- package/components/nve-menu/nve-menu.component.js +11 -11
- package/components/nve-popup/nve-popup.component.js +7 -7
- package/components/nve-radio/nve-radio.component.js +13 -13
- package/components/nve-spinner/nve-spinner.component.js +15 -15
- package/components/nve-stepper/nve-step/nve-step.styles.js +165 -163
- package/components/nve-tag/nve-tag.component.js +1 -1
- package/custom-elements.json +1 -1
- package/package.json +1 -1
package/chunks/chunk.5YPURQKE.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as b, x as g } from "./lit-element.js";
|
|
2
|
-
import {
|
|
2
|
+
import { u as y, g as p, w } from "./chunk.ZL53POKZ.js";
|
|
3
3
|
import { w as f } from "./chunk.GMYPQTFK.js";
|
|
4
4
|
import { c as S, d as o, S as C } from "./chunk.EMG3ZSPT.js";
|
|
5
5
|
import { e as L } from "./directive-helpers.js";
|
|
@@ -48,13 +48,13 @@ var I = b`
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
connectedCallback() {
|
|
51
|
-
super.connectedCallback(),
|
|
51
|
+
super.connectedCallback(), w(this);
|
|
52
52
|
}
|
|
53
53
|
firstUpdated() {
|
|
54
54
|
this.initialRender = !0, this.setIcon();
|
|
55
55
|
}
|
|
56
56
|
disconnectedCallback() {
|
|
57
|
-
super.disconnectedCallback(),
|
|
57
|
+
super.disconnectedCallback(), y(this);
|
|
58
58
|
}
|
|
59
59
|
getIconSource() {
|
|
60
60
|
const e = p(this.library);
|
package/chunks/class-map.js
CHANGED
|
@@ -4,7 +4,7 @@ import { T as h } from "./lit-element.js";
|
|
|
4
4
|
* Copyright 2017 Google LLC
|
|
5
5
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
6
6
|
*/
|
|
7
|
-
const a = { ATTRIBUTE: 1, CHILD: 2, PROPERTY: 3, BOOLEAN_ATTRIBUTE: 4
|
|
7
|
+
const a = { ATTRIBUTE: 1, CHILD: 2, PROPERTY: 3, BOOLEAN_ATTRIBUTE: 4 }, c = (e) => (...t) => ({ _$litDirective$: e, values: t });
|
|
8
8
|
class d {
|
|
9
9
|
constructor(t) {
|
|
10
10
|
}
|
package/chunks/lit-element.js
CHANGED
|
@@ -22,58 +22,58 @@ let tt = class {
|
|
|
22
22
|
return this.cssText;
|
|
23
23
|
}
|
|
24
24
|
};
|
|
25
|
-
const ot = (
|
|
26
|
-
const e =
|
|
27
|
-
if (
|
|
28
|
-
if (typeof
|
|
29
|
-
throw Error("Value passed to 'css' function must be a 'css' function result: " +
|
|
30
|
-
})(i) +
|
|
31
|
-
return new tt(e,
|
|
32
|
-
}, ht = (
|
|
33
|
-
if (D)
|
|
25
|
+
const ot = (r) => new tt(typeof r == "string" ? r : r + "", void 0, I), wt = (r, ...t) => {
|
|
26
|
+
const e = r.length === 1 ? r[0] : t.reduce((s, i, o) => s + ((n) => {
|
|
27
|
+
if (n._$cssResult$ === !0) return n.cssText;
|
|
28
|
+
if (typeof n == "number") return n;
|
|
29
|
+
throw Error("Value passed to 'css' function must be a 'css' function result: " + n + ". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.");
|
|
30
|
+
})(i) + r[o + 1], r[0]);
|
|
31
|
+
return new tt(e, r, I);
|
|
32
|
+
}, ht = (r, t) => {
|
|
33
|
+
if (D) r.adoptedStyleSheets = t.map((e) => e instanceof CSSStyleSheet ? e : e.styleSheet);
|
|
34
34
|
else for (const e of t) {
|
|
35
35
|
const s = document.createElement("style"), i = T.litNonce;
|
|
36
|
-
i !== void 0 && s.setAttribute("nonce", i), s.textContent = e.cssText,
|
|
36
|
+
i !== void 0 && s.setAttribute("nonce", i), s.textContent = e.cssText, r.appendChild(s);
|
|
37
37
|
}
|
|
38
|
-
}, W = D ? (
|
|
38
|
+
}, W = D ? (r) => r : (r) => r instanceof CSSStyleSheet ? ((t) => {
|
|
39
39
|
let e = "";
|
|
40
40
|
for (const s of t.cssRules) e += s.cssText;
|
|
41
41
|
return ot(e);
|
|
42
|
-
})(
|
|
42
|
+
})(r) : r;
|
|
43
43
|
/**
|
|
44
44
|
* @license
|
|
45
45
|
* Copyright 2017 Google LLC
|
|
46
46
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
47
47
|
*/
|
|
48
|
-
const { is: at, defineProperty: lt, getOwnPropertyDescriptor: ct, getOwnPropertyNames: dt, getOwnPropertySymbols: pt, getPrototypeOf:
|
|
48
|
+
const { is: at, defineProperty: lt, getOwnPropertyDescriptor: ct, getOwnPropertyNames: dt, getOwnPropertySymbols: pt, getPrototypeOf: ut } = Object, f = globalThis, q = f.trustedTypes, $t = q ? q.emptyScript : "", M = f.reactiveElementPolyfillSupport, b = (r, t) => r, B = { toAttribute(r, t) {
|
|
49
49
|
switch (t) {
|
|
50
50
|
case Boolean:
|
|
51
|
-
|
|
51
|
+
r = r ? $t : null;
|
|
52
52
|
break;
|
|
53
53
|
case Object:
|
|
54
54
|
case Array:
|
|
55
|
-
|
|
55
|
+
r = r == null ? r : JSON.stringify(r);
|
|
56
56
|
}
|
|
57
|
-
return
|
|
58
|
-
}, fromAttribute(
|
|
59
|
-
let e =
|
|
57
|
+
return r;
|
|
58
|
+
}, fromAttribute(r, t) {
|
|
59
|
+
let e = r;
|
|
60
60
|
switch (t) {
|
|
61
61
|
case Boolean:
|
|
62
|
-
e =
|
|
62
|
+
e = r !== null;
|
|
63
63
|
break;
|
|
64
64
|
case Number:
|
|
65
|
-
e =
|
|
65
|
+
e = r === null ? null : Number(r);
|
|
66
66
|
break;
|
|
67
67
|
case Object:
|
|
68
68
|
case Array:
|
|
69
69
|
try {
|
|
70
|
-
e = JSON.parse(
|
|
70
|
+
e = JSON.parse(r);
|
|
71
71
|
} catch {
|
|
72
72
|
e = null;
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
return e;
|
|
76
|
-
} }, et = (
|
|
76
|
+
} }, et = (r, t) => !at(r, t), J = { attribute: !0, type: String, converter: B, reflect: !1, hasChanged: et };
|
|
77
77
|
Symbol.metadata ?? (Symbol.metadata = Symbol("metadata")), f.litPropertyMetadata ?? (f.litPropertyMetadata = /* @__PURE__ */ new WeakMap());
|
|
78
78
|
class y extends HTMLElement {
|
|
79
79
|
static addInitializer(t) {
|
|
@@ -91,14 +91,14 @@ class y extends HTMLElement {
|
|
|
91
91
|
static getPropertyDescriptor(t, e, s) {
|
|
92
92
|
const { get: i, set: o } = ct(this.prototype, t) ?? { get() {
|
|
93
93
|
return this[e];
|
|
94
|
-
}, set(
|
|
95
|
-
this[e] =
|
|
94
|
+
}, set(n) {
|
|
95
|
+
this[e] = n;
|
|
96
96
|
} };
|
|
97
97
|
return { get() {
|
|
98
98
|
return i == null ? void 0 : i.call(this);
|
|
99
|
-
}, set(
|
|
99
|
+
}, set(n) {
|
|
100
100
|
const l = i == null ? void 0 : i.call(this);
|
|
101
|
-
o.call(this,
|
|
101
|
+
o.call(this, n), this.requestUpdate(t, l, s);
|
|
102
102
|
}, configurable: !0, enumerable: !0 };
|
|
103
103
|
}
|
|
104
104
|
static getPropertyOptions(t) {
|
|
@@ -106,7 +106,7 @@ class y extends HTMLElement {
|
|
|
106
106
|
}
|
|
107
107
|
static _$Ei() {
|
|
108
108
|
if (this.hasOwnProperty(b("elementProperties"))) return;
|
|
109
|
-
const t =
|
|
109
|
+
const t = ut(this);
|
|
110
110
|
t.finalize(), t.l !== void 0 && (this.l = [...t.l]), this.elementProperties = new Map(t.elementProperties);
|
|
111
111
|
}
|
|
112
112
|
static finalize() {
|
|
@@ -186,16 +186,16 @@ class y extends HTMLElement {
|
|
|
186
186
|
var o;
|
|
187
187
|
const s = this.constructor.elementProperties.get(t), i = this.constructor._$Eu(t, s);
|
|
188
188
|
if (i !== void 0 && s.reflect === !0) {
|
|
189
|
-
const
|
|
190
|
-
this._$Em = t,
|
|
189
|
+
const n = (((o = s.converter) == null ? void 0 : o.toAttribute) !== void 0 ? s.converter : B).toAttribute(e, s.type);
|
|
190
|
+
this._$Em = t, n == null ? this.removeAttribute(i) : this.setAttribute(i, n), this._$Em = null;
|
|
191
191
|
}
|
|
192
192
|
}
|
|
193
193
|
_$AK(t, e) {
|
|
194
194
|
var o;
|
|
195
195
|
const s = this.constructor, i = s._$Eh.get(t);
|
|
196
196
|
if (i !== void 0 && this._$Em !== i) {
|
|
197
|
-
const
|
|
198
|
-
this._$Em = i, this[i] = l.fromAttribute(e,
|
|
197
|
+
const n = s.getPropertyOptions(i), l = typeof n.converter == "function" ? { fromAttribute: n.converter } : ((o = n.converter) == null ? void 0 : o.fromAttribute) !== void 0 ? n.converter : B;
|
|
198
|
+
this._$Em = i, this[i] = l.fromAttribute(e, n.type), this._$Em = null;
|
|
199
199
|
}
|
|
200
200
|
}
|
|
201
201
|
requestUpdate(t, e, s) {
|
|
@@ -226,11 +226,11 @@ class y extends HTMLElement {
|
|
|
226
226
|
if (!this.isUpdatePending) return;
|
|
227
227
|
if (!this.hasUpdated) {
|
|
228
228
|
if (this.renderRoot ?? (this.renderRoot = this.createRenderRoot()), this._$Ep) {
|
|
229
|
-
for (const [o,
|
|
229
|
+
for (const [o, n] of this._$Ep) this[o] = n;
|
|
230
230
|
this._$Ep = void 0;
|
|
231
231
|
}
|
|
232
232
|
const i = this.constructor.elementProperties;
|
|
233
|
-
if (i.size > 0) for (const [o,
|
|
233
|
+
if (i.size > 0) for (const [o, n] of i) n.wrapped !== !0 || this._$AL.has(o) || this[o] === void 0 || this.P(o, this[o], n);
|
|
234
234
|
}
|
|
235
235
|
let t = !1;
|
|
236
236
|
const e = this._$AL;
|
|
@@ -279,30 +279,30 @@ y.elementStyles = [], y.shadowRootOptions = { mode: "open" }, y[b("elementProper
|
|
|
279
279
|
* Copyright 2017 Google LLC
|
|
280
280
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
281
281
|
*/
|
|
282
|
-
const C = globalThis, N = C.trustedTypes, K = N ? N.createPolicy("lit-html", { createHTML: (
|
|
282
|
+
const C = globalThis, N = C.trustedTypes, K = N ? N.createPolicy("lit-html", { createHTML: (r) => r }) : void 0, st = "$lit$", _ = `lit$${Math.random().toFixed(9).slice(2)}$`, it = "?" + _, _t = `<${it}>`, g = document, w = () => g.createComment(""), P = (r) => r === null || typeof r != "object" && typeof r != "function", j = Array.isArray, ft = (r) => j(r) || typeof (r == null ? void 0 : r[Symbol.iterator]) == "function", k = `[
|
|
283
283
|
\f\r]`, S = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, Z = /-->/g, F = />/g, A = RegExp(`>|${k}(?:([^\\s"'>=/]+)(${k}*=${k}*(?:[^
|
|
284
|
-
\f\r"'\`<>=]|("|')|))|$)`, "g"), G = /'/g, Q = /"/g,
|
|
285
|
-
function
|
|
286
|
-
if (!j(
|
|
284
|
+
\f\r"'\`<>=]|("|')|))|$)`, "g"), G = /'/g, Q = /"/g, rt = /^(?:script|style|textarea|title)$/i, At = (r) => (t, ...e) => ({ _$litType$: r, strings: t, values: e }), Pt = At(1), v = Symbol.for("lit-noChange"), d = Symbol.for("lit-nothing"), X = /* @__PURE__ */ new WeakMap(), m = g.createTreeWalker(g, 129);
|
|
285
|
+
function nt(r, t) {
|
|
286
|
+
if (!j(r) || !r.hasOwnProperty("raw")) throw Error("invalid template strings array");
|
|
287
287
|
return K !== void 0 ? K.createHTML(t) : t;
|
|
288
288
|
}
|
|
289
|
-
const mt = (
|
|
290
|
-
const e =
|
|
291
|
-
let i, o = t === 2 ? "<svg>" : t === 3 ? "<math>" : "",
|
|
289
|
+
const mt = (r, t) => {
|
|
290
|
+
const e = r.length - 1, s = [];
|
|
291
|
+
let i, o = t === 2 ? "<svg>" : t === 3 ? "<math>" : "", n = S;
|
|
292
292
|
for (let l = 0; l < e; l++) {
|
|
293
|
-
const h =
|
|
294
|
-
let c, p, a = -1,
|
|
295
|
-
for (;
|
|
296
|
-
const
|
|
297
|
-
o +=
|
|
293
|
+
const h = r[l];
|
|
294
|
+
let c, p, a = -1, u = 0;
|
|
295
|
+
for (; u < h.length && (n.lastIndex = u, p = n.exec(h), p !== null); ) u = n.lastIndex, n === S ? p[1] === "!--" ? n = Z : p[1] !== void 0 ? n = F : p[2] !== void 0 ? (rt.test(p[2]) && (i = RegExp("</" + p[2], "g")), n = A) : p[3] !== void 0 && (n = A) : n === A ? p[0] === ">" ? (n = i ?? S, a = -1) : p[1] === void 0 ? a = -2 : (a = n.lastIndex - p[2].length, c = p[1], n = p[3] === void 0 ? A : p[3] === '"' ? Q : G) : n === Q || n === G ? n = A : n === Z || n === F ? n = S : (n = A, i = void 0);
|
|
296
|
+
const $ = n === A && r[l + 1].startsWith("/>") ? " " : "";
|
|
297
|
+
o += n === S ? h + _t : a >= 0 ? (s.push(c), h.slice(0, a) + st + h.slice(a) + _ + $) : h + _ + (a === -2 ? l : $);
|
|
298
298
|
}
|
|
299
|
-
return [
|
|
299
|
+
return [nt(r, o + (r[e] || "<?>") + (t === 2 ? "</svg>" : t === 3 ? "</math>" : "")), s];
|
|
300
300
|
};
|
|
301
301
|
class U {
|
|
302
302
|
constructor({ strings: t, _$litType$: e }, s) {
|
|
303
303
|
let i;
|
|
304
304
|
this.parts = [];
|
|
305
|
-
let o = 0,
|
|
305
|
+
let o = 0, n = 0;
|
|
306
306
|
const l = t.length - 1, h = this.parts, [c, p] = mt(t, e);
|
|
307
307
|
if (this.el = U.createElement(c, s), m.currentNode = this.el.content, e === 2 || e === 3) {
|
|
308
308
|
const a = this.el.content.firstChild;
|
|
@@ -311,15 +311,15 @@ class U {
|
|
|
311
311
|
for (; (i = m.nextNode()) !== null && h.length < l; ) {
|
|
312
312
|
if (i.nodeType === 1) {
|
|
313
313
|
if (i.hasAttributes()) for (const a of i.getAttributeNames()) if (a.endsWith(st)) {
|
|
314
|
-
const
|
|
315
|
-
h.push({ type: 1, index: o, name: H[2], strings:
|
|
314
|
+
const u = p[n++], $ = i.getAttribute(a).split(_), H = /([.?@])?(.*)/.exec(u);
|
|
315
|
+
h.push({ type: 1, index: o, name: H[2], strings: $, ctor: H[1] === "." ? yt : H[1] === "?" ? vt : H[1] === "@" ? Et : R }), i.removeAttribute(a);
|
|
316
316
|
} else a.startsWith(_) && (h.push({ type: 6, index: o }), i.removeAttribute(a));
|
|
317
|
-
if (
|
|
318
|
-
const a = i.textContent.split(_),
|
|
319
|
-
if (
|
|
317
|
+
if (rt.test(i.tagName)) {
|
|
318
|
+
const a = i.textContent.split(_), u = a.length - 1;
|
|
319
|
+
if (u > 0) {
|
|
320
320
|
i.textContent = N ? N.emptyScript : "";
|
|
321
|
-
for (let
|
|
322
|
-
i.append(a[
|
|
321
|
+
for (let $ = 0; $ < u; $++) i.append(a[$], w()), m.nextNode(), h.push({ type: 2, index: ++o });
|
|
322
|
+
i.append(a[u], w());
|
|
323
323
|
}
|
|
324
324
|
}
|
|
325
325
|
} else if (i.nodeType === 8) if (i.data === it) h.push({ type: 2, index: o });
|
|
@@ -335,12 +335,12 @@ class U {
|
|
|
335
335
|
return s.innerHTML = t, s;
|
|
336
336
|
}
|
|
337
337
|
}
|
|
338
|
-
function E(
|
|
339
|
-
var
|
|
338
|
+
function E(r, t, e = r, s) {
|
|
339
|
+
var n, l;
|
|
340
340
|
if (t === v) return t;
|
|
341
|
-
let i = s !== void 0 ? (
|
|
341
|
+
let i = s !== void 0 ? (n = e._$Co) == null ? void 0 : n[s] : e._$Cl;
|
|
342
342
|
const o = P(t) ? void 0 : t._$litDirective$;
|
|
343
|
-
return (i == null ? void 0 : i.constructor) !== o && ((l = i == null ? void 0 : i._$AO) == null || l.call(i, !1), o === void 0 ? i = void 0 : (i = new o(
|
|
343
|
+
return (i == null ? void 0 : i.constructor) !== o && ((l = i == null ? void 0 : i._$AO) == null || l.call(i, !1), o === void 0 ? i = void 0 : (i = new o(r), i._$AT(r, e, s)), s !== void 0 ? (e._$Co ?? (e._$Co = []))[s] = i : e._$Cl = i), i !== void 0 && (t = E(r, i._$AS(r, t.values), i, s)), t;
|
|
344
344
|
}
|
|
345
345
|
class gt {
|
|
346
346
|
constructor(t, e) {
|
|
@@ -355,13 +355,13 @@ class gt {
|
|
|
355
355
|
u(t) {
|
|
356
356
|
const { el: { content: e }, parts: s } = this._$AD, i = ((t == null ? void 0 : t.creationScope) ?? g).importNode(e, !0);
|
|
357
357
|
m.currentNode = i;
|
|
358
|
-
let o = m.nextNode(),
|
|
358
|
+
let o = m.nextNode(), n = 0, l = 0, h = s[0];
|
|
359
359
|
for (; h !== void 0; ) {
|
|
360
|
-
if (
|
|
360
|
+
if (n === h.index) {
|
|
361
361
|
let c;
|
|
362
362
|
h.type === 2 ? c = new x(o, o.nextSibling, this, t) : h.type === 1 ? c = new h.ctor(o, h.name, h.strings, this, t) : h.type === 6 && (c = new St(o, this, t)), this._$AV.push(c), h = s[++l];
|
|
363
363
|
}
|
|
364
|
-
|
|
364
|
+
n !== (h == null ? void 0 : h.index) && (o = m.nextNode(), n++);
|
|
365
365
|
}
|
|
366
366
|
return m.currentNode = g, i;
|
|
367
367
|
}
|
|
@@ -403,11 +403,11 @@ class x {
|
|
|
403
403
|
}
|
|
404
404
|
$(t) {
|
|
405
405
|
var o;
|
|
406
|
-
const { values: e, _$litType$: s } = t, i = typeof s == "number" ? this._$AC(t) : (s.el === void 0 && (s.el = U.createElement(
|
|
406
|
+
const { values: e, _$litType$: s } = t, i = typeof s == "number" ? this._$AC(t) : (s.el === void 0 && (s.el = U.createElement(nt(s.h, s.h[0]), this.options)), s);
|
|
407
407
|
if (((o = this._$AH) == null ? void 0 : o._$AD) === i) this._$AH.p(e);
|
|
408
408
|
else {
|
|
409
|
-
const
|
|
410
|
-
|
|
409
|
+
const n = new gt(i, this), l = n.u(this.options);
|
|
410
|
+
n.p(e), this.T(l), this._$AH = n;
|
|
411
411
|
}
|
|
412
412
|
}
|
|
413
413
|
_$AC(t) {
|
|
@@ -445,14 +445,14 @@ class R {
|
|
|
445
445
|
}
|
|
446
446
|
_$AI(t, e = this, s, i) {
|
|
447
447
|
const o = this.strings;
|
|
448
|
-
let
|
|
449
|
-
if (o === void 0) t = E(this, t, e, 0),
|
|
448
|
+
let n = !1;
|
|
449
|
+
if (o === void 0) t = E(this, t, e, 0), n = !P(t) || t !== this._$AH && t !== v, n && (this._$AH = t);
|
|
450
450
|
else {
|
|
451
451
|
const l = t;
|
|
452
452
|
let h, c;
|
|
453
|
-
for (t = o[0], h = 0; h < o.length - 1; h++) c = E(this, l[s + h], e, h), c === v && (c = this._$AH[h]),
|
|
453
|
+
for (t = o[0], h = 0; h < o.length - 1; h++) c = E(this, l[s + h], e, h), c === v && (c = this._$AH[h]), n || (n = !P(c) || c !== this._$AH[h]), c === d ? t = d : t !== d && (t += (c ?? "") + o[h + 1]), this._$AH[h] = c;
|
|
454
454
|
}
|
|
455
|
-
|
|
455
|
+
n && !i && this.j(t);
|
|
456
456
|
}
|
|
457
457
|
j(t) {
|
|
458
458
|
t === d ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t ?? "");
|
|
@@ -501,14 +501,14 @@ class St {
|
|
|
501
501
|
}
|
|
502
502
|
const L = C.litHtmlPolyfillSupport;
|
|
503
503
|
L == null || L(U, x), (C.litHtmlVersions ?? (C.litHtmlVersions = [])).push("3.2.1");
|
|
504
|
-
const bt = (
|
|
504
|
+
const bt = (r, t, e) => {
|
|
505
505
|
const s = (e == null ? void 0 : e.renderBefore) ?? t;
|
|
506
506
|
let i = s._$litPart$;
|
|
507
507
|
if (i === void 0) {
|
|
508
508
|
const o = (e == null ? void 0 : e.renderBefore) ?? null;
|
|
509
509
|
s._$litPart$ = i = new x(t.insertBefore(w(), o), o, void 0, e ?? {});
|
|
510
510
|
}
|
|
511
|
-
return i._$AI(
|
|
511
|
+
return i._$AI(r), i;
|
|
512
512
|
};
|
|
513
513
|
/**
|
|
514
514
|
* @license
|
package/chunks/property.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { f as d, u as l } from "./lit-element.js";
|
|
2
2
|
/**
|
|
3
3
|
* @license
|
|
4
4
|
* Copyright 2017 Google LLC
|
|
@@ -14,7 +14,7 @@ const f = (e) => (r, t) => {
|
|
|
14
14
|
* Copyright 2017 Google LLC
|
|
15
15
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
16
16
|
*/
|
|
17
|
-
const p = { attribute: !0, type: String, converter:
|
|
17
|
+
const p = { attribute: !0, type: String, converter: l, reflect: !1, hasChanged: d }, u = (e = p, r, t) => {
|
|
18
18
|
const { kind: s, metadata: i } = t;
|
|
19
19
|
let o = globalThis.litPropertyMetadata.get(i);
|
|
20
20
|
if (o === void 0 && globalThis.litPropertyMetadata.set(i, o = /* @__PURE__ */ new Map()), o.set(t.name, e), s === "accessor") {
|
|
@@ -4,7 +4,7 @@ const t = a`
|
|
|
4
4
|
gap: 0rem 10px;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
:host([pagination-counter])
|
|
7
|
+
:host([pagination-counter]) #scroll-container::after {
|
|
8
8
|
content: attr(data-active-item) ' / ' attr(data-num-items);
|
|
9
9
|
display: block;
|
|
10
10
|
position: absolute;
|
|
@@ -13,8 +13,8 @@ const t = a`
|
|
|
13
13
|
padding: var(--spacing-xx-small) var(--spacing-x-small);
|
|
14
14
|
border-radius: var(--border-radius-small);
|
|
15
15
|
color: var(--pagination-counter-color, inherit);
|
|
16
|
-
background-color: var(--pagination-counter-bg-color, inherit);
|
|
17
|
-
|
|
16
|
+
background-color: var(--pagination-counter-bg-color, inherit);
|
|
17
|
+
}
|
|
18
18
|
|
|
19
19
|
:host::part(scroll-container) {
|
|
20
20
|
aspect-ratio: auto;
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import { t as i } from "../../chunks/property.js";
|
|
2
2
|
import "../../chunks/lit-element.js";
|
|
3
|
-
import { c as
|
|
3
|
+
import { c as n } from "../../chunks/chunk.GKEBKPRZ.js";
|
|
4
4
|
import "../../chunks/chunk.SI4ACBFK.js";
|
|
5
5
|
import "../../chunks/chunk.3RPBFEDE.js";
|
|
6
6
|
import "../../chunks/chunk.5YPURQKE.js";
|
|
7
7
|
import "../../chunks/chunk.EMG3ZSPT.js";
|
|
8
8
|
import p from "./nve-checkbox.styles.js";
|
|
9
|
-
var v = Object.
|
|
10
|
-
for (var
|
|
11
|
-
(l =
|
|
12
|
-
return
|
|
9
|
+
var v = Object.getOwnPropertyDescriptor, d = (e, o, a, c) => {
|
|
10
|
+
for (var t = c > 1 ? void 0 : c ? v(o, a) : o, r = e.length - 1, l; r >= 0; r--)
|
|
11
|
+
(l = e[r]) && (t = l(t) || t);
|
|
12
|
+
return t;
|
|
13
13
|
};
|
|
14
|
-
let
|
|
14
|
+
let s = class extends n {
|
|
15
15
|
constructor() {
|
|
16
16
|
super();
|
|
17
17
|
}
|
|
18
18
|
connectedCallback() {
|
|
19
|
-
super.connectedCallback(), this.addEventListener("sl-invalid", (
|
|
20
|
-
|
|
19
|
+
super.connectedCallback(), this.addEventListener("sl-invalid", (e) => {
|
|
20
|
+
e.preventDefault();
|
|
21
21
|
});
|
|
22
22
|
}
|
|
23
23
|
disconnectedCallback() {
|
|
@@ -25,10 +25,10 @@ let n = class extends a {
|
|
|
25
25
|
});
|
|
26
26
|
}
|
|
27
27
|
};
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
s.styles = [n.styles, p];
|
|
29
|
+
s = d([
|
|
30
30
|
i("nve-checkbox")
|
|
31
|
-
],
|
|
31
|
+
], s);
|
|
32
32
|
export {
|
|
33
|
-
|
|
33
|
+
s as default
|
|
34
34
|
};
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { d as
|
|
1
|
+
import { d as l } from "../../chunks/chunk.FDPXBVDV.js";
|
|
2
2
|
import "../../chunks/chunk.EMG3ZSPT.js";
|
|
3
3
|
import { i as v } from "../../chunks/lit-element.js";
|
|
4
|
-
import { t as
|
|
5
|
-
var
|
|
6
|
-
for (var r =
|
|
7
|
-
(i =
|
|
8
|
-
return
|
|
4
|
+
import { t as p } from "../../chunks/property.js";
|
|
5
|
+
var m = Object.getOwnPropertyDescriptor, n = (s, o, d, a) => {
|
|
6
|
+
for (var r = a > 1 ? void 0 : a ? m(o, d) : o, e = s.length - 1, i; e >= 0; e--)
|
|
7
|
+
(i = s[e]) && (r = i(r) || r);
|
|
8
|
+
return r;
|
|
9
9
|
};
|
|
10
|
-
let
|
|
10
|
+
let t = class extends l {
|
|
11
11
|
constructor() {
|
|
12
12
|
super();
|
|
13
13
|
}
|
|
14
14
|
};
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
t.styles = [
|
|
16
|
+
l.styles,
|
|
17
17
|
v`
|
|
18
18
|
:host {
|
|
19
19
|
--color: var(--neutrals-border-subtle);
|
|
@@ -22,9 +22,9 @@ l.styles = [
|
|
|
22
22
|
}
|
|
23
23
|
`
|
|
24
24
|
];
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
],
|
|
25
|
+
t = n([
|
|
26
|
+
p("nve-divider")
|
|
27
|
+
], t);
|
|
28
28
|
export {
|
|
29
|
-
|
|
29
|
+
t as default
|
|
30
30
|
};
|
|
@@ -21,7 +21,7 @@ function Y() {
|
|
|
21
21
|
(document.readyState == "interactive" || document.readyState == "complete") && (document.detachEvent("onreadystatechange", n), e());
|
|
22
22
|
});
|
|
23
23
|
}
|
|
24
|
-
function
|
|
24
|
+
function u(e) {
|
|
25
25
|
this.g = document.createElement("div"), this.g.setAttribute("aria-hidden", "true"), this.g.appendChild(document.createTextNode(e)), this.h = document.createElement("span"), this.i = document.createElement("span"), this.m = document.createElement("span"), this.j = document.createElement("span"), this.l = -1, this.h.style.cssText = "max-width:none;display:inline-block;position:absolute;height:100%;width:100%;overflow:scroll;font-size:16px;", this.i.style.cssText = "max-width:none;display:inline-block;position:absolute;height:100%;width:100%;overflow:scroll;font-size:16px;", this.j.style.cssText = "max-width:none;display:inline-block;position:absolute;height:100%;width:100%;overflow:scroll;font-size:16px;", this.m.style.cssText = "display:inline-block;width:200%;height:200%;font-size:16px;max-width:none;", this.h.appendChild(this.m), this.i.appendChild(this.j), this.g.appendChild(this.h), this.g.appendChild(this.i);
|
|
26
26
|
}
|
|
27
27
|
function r(e, n) {
|
|
@@ -33,10 +33,10 @@ function Y() {
|
|
|
33
33
|
}
|
|
34
34
|
function y(e, n) {
|
|
35
35
|
function t() {
|
|
36
|
-
var a =
|
|
36
|
+
var a = p;
|
|
37
37
|
E(a) && a.g.parentNode !== null && n(a.l);
|
|
38
38
|
}
|
|
39
|
-
var
|
|
39
|
+
var p = e;
|
|
40
40
|
i(e.h, t), i(e.i, t), E(e);
|
|
41
41
|
}
|
|
42
42
|
function N(e, n, t) {
|
|
@@ -50,7 +50,7 @@ function Y() {
|
|
|
50
50
|
return A === null && (A = !!e.document.fonts), A;
|
|
51
51
|
}
|
|
52
52
|
function g(e, n) {
|
|
53
|
-
var t = e.style,
|
|
53
|
+
var t = e.style, p = e.weight;
|
|
54
54
|
if ($ === null) {
|
|
55
55
|
var a = document.createElement("div");
|
|
56
56
|
try {
|
|
@@ -59,15 +59,15 @@ function Y() {
|
|
|
59
59
|
}
|
|
60
60
|
$ = a.style.font !== "";
|
|
61
61
|
}
|
|
62
|
-
return [t,
|
|
62
|
+
return [t, p, $ ? e.stretch : "", "100px", n].join(" ");
|
|
63
63
|
}
|
|
64
64
|
N.prototype.load = function(e, n) {
|
|
65
|
-
var t = this,
|
|
65
|
+
var t = this, p = e || "BESbswy", a = 0, w = n || 3e3, z = (/* @__PURE__ */ new Date()).getTime();
|
|
66
66
|
return new Promise(function(M, k) {
|
|
67
67
|
if (S(t.context) && !B(t.context)) {
|
|
68
68
|
var G = new Promise(function(b, x) {
|
|
69
69
|
function d() {
|
|
70
|
-
(/* @__PURE__ */ new Date()).getTime() - z >= w ? x(Error("" + w + "ms timeout exceeded")) : t.context.document.fonts.load(g(t, '"' + t.family + '"'),
|
|
70
|
+
(/* @__PURE__ */ new Date()).getTime() - z >= w ? x(Error("" + w + "ms timeout exceeded")) : t.context.document.fonts.load(g(t, '"' + t.family + '"'), p).then(function(m) {
|
|
71
71
|
1 <= m.length ? b() : setTimeout(d, 25);
|
|
72
72
|
}, x);
|
|
73
73
|
}
|
|
@@ -92,7 +92,7 @@ function Y() {
|
|
|
92
92
|
(o === !0 || o === void 0) && (c = d.g.offsetWidth, h = m.g.offsetWidth, f = C.g.offsetWidth, b()), a = setTimeout(x, 50);
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
|
-
var d = new p
|
|
95
|
+
var d = new u(p), m = new u(p), C = new u(p), c = -1, h = -1, f = -1, D = -1, O = -1, W = -1, l = document.createElement("div");
|
|
96
96
|
l.dir = "ltr", r(d, g(t, "sans-serif")), r(m, g(t, "serif")), r(C, g(t, "monospace")), l.appendChild(d.g), l.appendChild(m.g), l.appendChild(C.g), t.context.document.body.appendChild(l), D = d.g.offsetWidth, O = m.g.offsetWidth, W = C.g.offsetWidth, x(), y(d, function(o) {
|
|
97
97
|
c = o, b();
|
|
98
98
|
}), r(d, g(t, '"' + t.family + '",sans-serif')), y(m, function(o) {
|
|
@@ -108,10 +108,10 @@ function Y() {
|
|
|
108
108
|
}
|
|
109
109
|
var Z = Y();
|
|
110
110
|
const ee = /* @__PURE__ */ X(Z);
|
|
111
|
-
var te = Object.defineProperty, ne = Object.getOwnPropertyDescriptor, L = (s, i, T,
|
|
112
|
-
for (var r =
|
|
113
|
-
(y = s[E]) && (r = (
|
|
114
|
-
return
|
|
111
|
+
var te = Object.defineProperty, ne = Object.getOwnPropertyDescriptor, L = (s, i, T, u) => {
|
|
112
|
+
for (var r = u > 1 ? void 0 : u ? ne(i, T) : i, E = s.length - 1, y; E >= 0; E--)
|
|
113
|
+
(y = s[E]) && (r = (u ? y(i, T, r) : y(r)) || r);
|
|
114
|
+
return u && r && te(i, T, r), r;
|
|
115
115
|
};
|
|
116
116
|
let v = class extends U {
|
|
117
117
|
constructor() {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as h,
|
|
1
|
+
import { r as h, E as f, x as c } from "../../chunks/lit-element.js";
|
|
2
2
|
import { n, t as p } from "../../chunks/property.js";
|
|
3
3
|
import w from "./nve-link-card.styles.js";
|
|
4
4
|
var u = Object.defineProperty, m = Object.getOwnPropertyDescriptor, i = (e, l, o, s) => {
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { m as
|
|
1
|
+
import { m as p } from "../../chunks/chunk.2IP2T4OH.js";
|
|
2
2
|
import "../../chunks/chunk.EMG3ZSPT.js";
|
|
3
3
|
import { t as u } from "../../chunks/property.js";
|
|
4
4
|
import "../../chunks/lit-element.js";
|
|
5
|
-
import
|
|
6
|
-
var
|
|
7
|
-
for (var e =
|
|
8
|
-
(
|
|
9
|
-
return
|
|
5
|
+
import a from "./nve-menu.styles.js";
|
|
6
|
+
var f = Object.getOwnPropertyDescriptor, v = (s, o, n, m) => {
|
|
7
|
+
for (var e = m > 1 ? void 0 : m ? f(o, n) : o, r = s.length - 1, l; r >= 0; r--)
|
|
8
|
+
(l = s[r]) && (e = l(e) || e);
|
|
9
|
+
return e;
|
|
10
10
|
};
|
|
11
|
-
let
|
|
11
|
+
let t = class extends p {
|
|
12
12
|
constructor() {
|
|
13
13
|
super();
|
|
14
14
|
}
|
|
15
15
|
};
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
t.styles = [p.styles, a];
|
|
17
|
+
t = v([
|
|
18
18
|
u("nve-menu")
|
|
19
|
-
],
|
|
19
|
+
], t);
|
|
20
20
|
export {
|
|
21
|
-
|
|
21
|
+
t as default
|
|
22
22
|
};
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { t as m } from "../../chunks/property.js";
|
|
2
2
|
import "../../chunks/lit-element.js";
|
|
3
|
-
import { p as
|
|
3
|
+
import { p as l } from "../../chunks/chunk.OEGOQNYI.js";
|
|
4
4
|
import "../../chunks/chunk.AR3BL5H3.js";
|
|
5
5
|
import "../../chunks/chunk.6CTB5ZDJ.js";
|
|
6
6
|
import "../../chunks/chunk.EMG3ZSPT.js";
|
|
7
|
-
var
|
|
8
|
-
for (var
|
|
9
|
-
(s =
|
|
10
|
-
return
|
|
7
|
+
var v = Object.getOwnPropertyDescriptor, f = (t, e, a, o) => {
|
|
8
|
+
for (var r = o > 1 ? void 0 : o ? v(e, a) : e, p = t.length - 1, s; p >= 0; p--)
|
|
9
|
+
(s = t[p]) && (r = s(r) || r);
|
|
10
|
+
return r;
|
|
11
11
|
};
|
|
12
|
-
let u = class extends
|
|
12
|
+
let u = class extends l {
|
|
13
13
|
constructor() {
|
|
14
14
|
super();
|
|
15
15
|
}
|
|
16
16
|
};
|
|
17
|
-
u =
|
|
17
|
+
u = f([
|
|
18
18
|
m("nve-popup")
|
|
19
19
|
], u);
|
|
20
20
|
export {
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { t as
|
|
1
|
+
import { t as m } from "../../chunks/property.js";
|
|
2
2
|
import "../../chunks/lit-element.js";
|
|
3
|
-
import { r as
|
|
3
|
+
import { r as l } from "../../chunks/chunk.7ZRV3LMN.js";
|
|
4
4
|
import "../../chunks/chunk.5YPURQKE.js";
|
|
5
5
|
import "../../chunks/chunk.EMG3ZSPT.js";
|
|
6
|
-
import
|
|
7
|
-
var v = Object.
|
|
8
|
-
for (var r =
|
|
9
|
-
(p =
|
|
10
|
-
return
|
|
6
|
+
import f from "./nve-radio.styles.js";
|
|
7
|
+
var v = Object.getOwnPropertyDescriptor, n = (o, s, i, a) => {
|
|
8
|
+
for (var r = a > 1 ? void 0 : a ? v(s, i) : s, t = o.length - 1, p; t >= 0; t--)
|
|
9
|
+
(p = o[t]) && (r = p(r) || r);
|
|
10
|
+
return r;
|
|
11
11
|
};
|
|
12
|
-
let
|
|
12
|
+
let e = class extends l {
|
|
13
13
|
constructor() {
|
|
14
14
|
super();
|
|
15
15
|
}
|
|
16
16
|
};
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
],
|
|
17
|
+
e.styles = [l.styles, f];
|
|
18
|
+
e = n([
|
|
19
|
+
m("nve-radio")
|
|
20
|
+
], e);
|
|
21
21
|
export {
|
|
22
|
-
|
|
22
|
+
e as default
|
|
23
23
|
};
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { t as
|
|
2
|
-
import { i as
|
|
3
|
-
import { s as
|
|
1
|
+
import { t as l } from "../../chunks/property.js";
|
|
2
|
+
import { i as m } from "../../chunks/lit-element.js";
|
|
3
|
+
import { s as a } from "../../chunks/chunk.K6GIYILV.js";
|
|
4
4
|
import "../../chunks/chunk.YB3JVLEN.js";
|
|
5
5
|
import "../../chunks/chunk.6CTB5ZDJ.js";
|
|
6
6
|
import "../../chunks/chunk.EMG3ZSPT.js";
|
|
7
|
-
var
|
|
8
|
-
for (var r =
|
|
9
|
-
(
|
|
10
|
-
return
|
|
7
|
+
var f = Object.getOwnPropertyDescriptor, v = (s, n, i, p) => {
|
|
8
|
+
for (var r = p > 1 ? void 0 : p ? f(n, i) : n, e = s.length - 1, o; e >= 0; e--)
|
|
9
|
+
(o = s[e]) && (r = o(r) || r);
|
|
10
|
+
return r;
|
|
11
11
|
};
|
|
12
|
-
let
|
|
12
|
+
let t = class extends a {
|
|
13
13
|
constructor() {
|
|
14
14
|
super();
|
|
15
15
|
}
|
|
16
16
|
};
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
t.styles = [
|
|
18
|
+
a.styles,
|
|
19
19
|
// Import Shoelace styles after your custom styles
|
|
20
|
-
|
|
20
|
+
m`
|
|
21
21
|
.spinner__track {
|
|
22
22
|
stroke: transparent;
|
|
23
23
|
}
|
|
24
24
|
`
|
|
25
25
|
];
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
],
|
|
26
|
+
t = v([
|
|
27
|
+
l("nve-spinner")
|
|
28
|
+
], t);
|
|
29
29
|
export {
|
|
30
|
-
|
|
30
|
+
t as default
|
|
31
31
|
};
|
|
@@ -1,169 +1,171 @@
|
|
|
1
1
|
import { i as e } from "../../../chunks/lit-element.js";
|
|
2
2
|
const r = e`
|
|
3
3
|
:host {
|
|
4
|
-
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
4
|
+
flex-grow: var(--flex-grow, 1);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
nve-icon {
|
|
8
|
+
--icon-size: 24px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.step-figure {
|
|
12
|
+
position: relative;
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
font-size: 2rem;
|
|
16
|
+
width: 100%;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.filled-icon {
|
|
20
|
+
font-variation-settings:
|
|
21
|
+
'FILL' 1,
|
|
22
|
+
'wght' 300,
|
|
23
|
+
'GRAD' 1,
|
|
24
|
+
'opsz' 48 !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.clickable {
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.disable-click {
|
|
32
|
+
cursor: default;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.divider-horizontal {
|
|
36
|
+
height: 2px;
|
|
37
|
+
flex-grow: 1;
|
|
38
|
+
width: 100%;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.text-container {
|
|
42
|
+
padding-right: 1.5rem; /*24px; */
|
|
43
|
+
width: 100%;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.step-title {
|
|
47
|
+
color: var(--neutrals-foreground-primary, #0d0d0e);
|
|
48
|
+
|
|
49
|
+
/* Label/medium */
|
|
50
|
+
font-family: 'Source Sans Pro';
|
|
51
|
+
font-size: 1.125rem; /*18px; */
|
|
52
|
+
font-style: normal;
|
|
53
|
+
font-weight: 600;
|
|
54
|
+
line-height: 110%;
|
|
55
|
+
padding-top: 0.75rem; /*12px;*/
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.step-state {
|
|
59
|
+
/* Label/x-small-light */
|
|
60
|
+
font-family: 'Source Sans Pro';
|
|
61
|
+
font-size: 0.875rem; /*14px;*/
|
|
62
|
+
font-style: normal;
|
|
63
|
+
font-weight: 400;
|
|
64
|
+
line-height: 110%;
|
|
65
|
+
padding-top: 0.25rem; /*4px;*/
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.step-description {
|
|
69
|
+
color: var(--neutrals-foreground-primary, #0d0d0e);
|
|
70
|
+
|
|
71
|
+
/* Label/small-light */
|
|
72
|
+
font-family: 'Source Sans Pro';
|
|
73
|
+
font-size: 1rem; /*16px; */
|
|
74
|
+
font-style: normal;
|
|
75
|
+
font-weight: 400;
|
|
76
|
+
line-height: 110%;
|
|
77
|
+
padding-top: 0.625rem; /*10px; */
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.step-description-max-width-vertical {
|
|
81
|
+
max-width: 430px;
|
|
82
|
+
padding-bottom: var(--spacing-large, 1.5rem);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.step-description-max-width-horizontal {
|
|
86
|
+
max-width: 150px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.divider-not-reached-color {
|
|
90
|
+
background: var(--neutrals-background-secondary, #e4e5e7);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.divider-reached-color {
|
|
94
|
+
background: var(--neutrals-foreground-primary, #0d0d0e);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.state-not-started-icon-color {
|
|
98
|
+
color: var(--neutrals-background-secondary, #e4e5e7);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.state-not-started-color {
|
|
102
|
+
color: var(--neutrals-foreground-subtle, #60656c);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.state-started-color {
|
|
106
|
+
color: var(--feedback-background-emphasized-info, #1e6fdc);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.state-done-color {
|
|
110
|
+
/* TODO the token feeedback is misspelled, should be feedback but --feedback-foreground-emphasized-success gives color */
|
|
111
|
+
color: var(--feeedback-foreground-emphasized-success, #00814b);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.state-error-color {
|
|
115
|
+
color: var(--feedback-background-emphasized-error, #cc0000);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.vertical-container {
|
|
119
|
+
display: flex;
|
|
120
|
+
align-items: flex-start;
|
|
121
|
+
width: 100%;
|
|
122
|
+
height: 100%;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.divider-horizontal {
|
|
126
|
+
height: 2px;
|
|
127
|
+
flex-grow: 1;
|
|
128
|
+
width: 100%;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.divider-vertical {
|
|
132
|
+
width: 2px;
|
|
133
|
+
flex-grow: 1;
|
|
134
|
+
width: 100%;
|
|
135
|
+
height: 100%;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.step-figure-vertical {
|
|
139
|
+
display: flex;
|
|
140
|
+
font-size: 2rem;
|
|
141
|
+
flex-direction: column;
|
|
142
|
+
align-items: center;
|
|
143
|
+
width: 100%;
|
|
144
|
+
flex: 1;
|
|
145
|
+
height: 100%;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.vertical-divider-container {
|
|
149
|
+
display: flex;
|
|
150
|
+
justify-content: center;
|
|
151
|
+
flex-grow: 1;
|
|
152
|
+
height: 100%;
|
|
153
|
+
width: 2px;
|
|
154
|
+
padding-top: 1px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.text-container-vertical {
|
|
158
|
+
padding-left: 8px;
|
|
159
|
+
justify-content: center;
|
|
160
|
+
display: flex;
|
|
161
|
+
flex-direction: column;
|
|
162
|
+
flex: 10;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.step-title-vertical {
|
|
166
|
+
padding-top: 0;
|
|
167
|
+
align-self: flex-start;
|
|
168
|
+
}
|
|
167
169
|
`;
|
|
168
170
|
export {
|
|
169
171
|
r as default
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as r, t as f } from "../../chunks/property.js";
|
|
2
|
-
import { r as h,
|
|
2
|
+
import { r as h, E as u, x as p } from "../../chunks/lit-element.js";
|
|
3
3
|
import { e as g } from "../../chunks/class-map.js";
|
|
4
4
|
import m from "./nve-tag.styles.js";
|
|
5
5
|
var v = Object.defineProperty, b = Object.getOwnPropertyDescriptor, e = (s, l, o, i) => {
|
package/custom-elements.json
CHANGED
|
@@ -12699,7 +12699,7 @@
|
|
|
12699
12699
|
"package": {
|
|
12700
12700
|
"name": "nve-designsystem",
|
|
12701
12701
|
"description": "Designsystem for NVE",
|
|
12702
|
-
"version": "1.6.
|
|
12702
|
+
"version": "1.6.2",
|
|
12703
12703
|
"author": {
|
|
12704
12704
|
"name": "NVE",
|
|
12705
12705
|
"email": "nve@nve.no"
|