@statistikzh/leu 0.17.0 → 0.18.1
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/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +18 -0
- package/dist/Accordion.js +1 -1
- package/dist/Button.js +1 -1
- package/dist/ButtonGroup.js +1 -1
- package/dist/ChartWrapper.js +1 -1
- package/dist/Checkbox.js +1 -1
- package/dist/CheckboxGroup.js +1 -1
- package/dist/Chip.js +1 -1
- package/dist/ChipGroup.js +1 -1
- package/dist/ChipLink.js +1 -1
- package/dist/ChipRemovable.js +3 -1
- package/dist/ChipSelectable.js +1 -1
- package/dist/Dialog.js +3 -1
- package/dist/Dropdown.js +1 -1
- package/dist/Icon.d.ts +130 -2
- package/dist/Icon.js +96 -69
- package/dist/Input.d.ts +0 -9
- package/dist/Input.js +6 -23
- package/dist/{LeuElement-BRZYxDjR.js → LeuElement-DgiuzsX9.js} +1 -1
- package/dist/Menu.js +3 -1
- package/dist/MenuItem.js +3 -1
- package/dist/Message.js +1 -1
- package/dist/Pagination.js +1 -1
- package/dist/Placeholder.js +1 -1
- package/dist/Popup.js +1 -1
- package/dist/Radio.js +1 -1
- package/dist/RadioGroup.js +1 -1
- package/dist/Range.js +1 -1
- package/dist/ScrollTop.js +1 -1
- package/dist/Select.js +1 -1
- package/dist/Spinner.js +1 -1
- package/dist/Table.js +2 -2
- package/dist/Tag.js +1 -1
- package/dist/VisuallyHidden.js +1 -1
- package/dist/components/icon/Icon.d.ts +5 -2
- package/dist/components/icon/Icon.d.ts.map +1 -1
- package/dist/components/icon/paths.d.ts +48 -23
- package/dist/components/icon/paths.d.ts.map +1 -1
- package/dist/components/icon/stories/icon.stories.d.ts.map +1 -1
- package/dist/components/input/Input.d.ts +0 -9
- package/dist/components/input/Input.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/leu-accordion.js +1 -1
- package/dist/leu-button-group.js +1 -1
- package/dist/leu-button.js +1 -1
- package/dist/leu-chart-wrapper.js +1 -1
- package/dist/leu-checkbox-group.js +1 -1
- package/dist/leu-checkbox.js +1 -1
- package/dist/leu-chip-group.js +1 -1
- package/dist/leu-chip-link.js +1 -1
- package/dist/leu-chip-removable.js +3 -1
- package/dist/leu-chip-selectable.js +1 -1
- package/dist/leu-dialog.js +3 -1
- package/dist/leu-dropdown.js +1 -1
- package/dist/leu-icon.js +3 -1
- package/dist/leu-input.js +3 -1
- package/dist/leu-menu-item.js +3 -1
- package/dist/leu-menu.js +3 -1
- package/dist/leu-message.js +1 -1
- package/dist/leu-pagination.js +1 -1
- package/dist/leu-placeholder.js +1 -1
- package/dist/leu-popup.js +1 -1
- package/dist/leu-radio-group.js +1 -1
- package/dist/leu-radio.js +1 -1
- package/dist/leu-range.js +1 -1
- package/dist/leu-scroll-top.js +1 -1
- package/dist/leu-select.js +1 -1
- package/dist/leu-spinner.js +1 -1
- package/dist/leu-table.js +3 -3
- package/dist/leu-tag.js +1 -1
- package/dist/leu-visually-hidden.js +1 -1
- package/dist/vscode.html-custom-data.json +1 -1
- package/dist/web-types.json +2 -2
- package/package.json +1 -1
- package/src/components/icon/Icon.ts +7 -10
- package/src/components/icon/paths.ts +126 -77
- package/src/components/icon/stories/icon.stories.ts +5 -0
- package/src/components/icon/test/icon.test.ts +5 -4
- package/src/components/input/Input.ts +3 -26
package/dist/Input.js
CHANGED
|
@@ -3,8 +3,10 @@ import { classMap } from 'lit/directives/class-map.js';
|
|
|
3
3
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
|
4
4
|
import { live } from 'lit/directives/live.js';
|
|
5
5
|
import { createRef, ref } from 'lit/directives/ref.js';
|
|
6
|
-
import { L as LeuElement } from './LeuElement-
|
|
6
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
7
7
|
import { LeuIcon } from './Icon.js';
|
|
8
|
+
import './_tslib-CNEFicEt.js';
|
|
9
|
+
import 'lit/decorators.js';
|
|
8
10
|
|
|
9
11
|
var css_248z = css`:host {
|
|
10
12
|
--input-color: var(--leu-color-black-100);
|
|
@@ -446,25 +448,6 @@ class LeuInput extends LeuElement {
|
|
|
446
448
|
this.dispatchEvent(new CustomEvent("input", { bubbles: true, composed: true }));
|
|
447
449
|
this.dispatchEvent(new CustomEvent("change", { bubbles: true, composed: true }));
|
|
448
450
|
}
|
|
449
|
-
/**
|
|
450
|
-
* Method for getting the id of the input element.
|
|
451
|
-
* If the id attribute is set, the value of the id attribute is returned.
|
|
452
|
-
* Otherwise a random id is generated and returned.
|
|
453
|
-
*
|
|
454
|
-
* @private
|
|
455
|
-
* @returns {string} id
|
|
456
|
-
*/
|
|
457
|
-
getId() {
|
|
458
|
-
const id = this.getAttribute("id");
|
|
459
|
-
if (id !== null && id !== "") {
|
|
460
|
-
return id;
|
|
461
|
-
}
|
|
462
|
-
if (this._identifier !== "") {
|
|
463
|
-
return this._identifier;
|
|
464
|
-
}
|
|
465
|
-
this._identifier = crypto.randomUUID();
|
|
466
|
-
return this._identifier;
|
|
467
|
-
}
|
|
468
451
|
/**
|
|
469
452
|
* Merge custom and default validation messages.
|
|
470
453
|
* A validation message can be a function or a string.
|
|
@@ -521,7 +504,7 @@ class LeuInput extends LeuElement {
|
|
|
521
504
|
errorMessages = [this.error, errorMessages];
|
|
522
505
|
}
|
|
523
506
|
return html `
|
|
524
|
-
<ul class="error" aria-errormessage
|
|
507
|
+
<ul class="error" aria-errormessage="input">
|
|
525
508
|
${errorMessages.map((message) => html `<li class="error-message">${message}</li>`)}
|
|
526
509
|
</ul>
|
|
527
510
|
`;
|
|
@@ -572,7 +555,7 @@ class LeuInput extends LeuElement {
|
|
|
572
555
|
>
|
|
573
556
|
<input
|
|
574
557
|
class="input"
|
|
575
|
-
id="input
|
|
558
|
+
id="input"
|
|
576
559
|
type=${this.type}
|
|
577
560
|
name=${this.name}
|
|
578
561
|
@change=${this.handleChange}
|
|
@@ -591,7 +574,7 @@ class LeuInput extends LeuElement {
|
|
|
591
574
|
ref=${ref(this._inputRef)}
|
|
592
575
|
aria-invalid=${isInvalid}
|
|
593
576
|
/>
|
|
594
|
-
<label for="input
|
|
577
|
+
<label for="input" class="label">${this.label}</label>
|
|
595
578
|
${this.prefix
|
|
596
579
|
? html `<div class="prefix" .aria-hidden=${true}>${this.prefix}</div>`
|
|
597
580
|
: nothing}
|
package/dist/Menu.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { css, html } from 'lit';
|
|
2
|
-
import { L as LeuElement } from './LeuElement-
|
|
2
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
3
3
|
import { LeuMenuItem } from './MenuItem.js';
|
|
4
4
|
import 'lit/directives/if-defined.js';
|
|
5
5
|
import './Icon.js';
|
|
6
|
+
import './_tslib-CNEFicEt.js';
|
|
7
|
+
import 'lit/decorators.js';
|
|
6
8
|
|
|
7
9
|
var css_248z = css`:host {
|
|
8
10
|
--menu-divider-color: var(--leu-color-black-transp-20);
|
package/dist/MenuItem.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { css, html, nothing } from 'lit';
|
|
2
2
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
|
3
|
-
import { L as LeuElement } from './LeuElement-
|
|
3
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
4
4
|
import { LeuIcon } from './Icon.js';
|
|
5
|
+
import './_tslib-CNEFicEt.js';
|
|
6
|
+
import 'lit/decorators.js';
|
|
5
7
|
|
|
6
8
|
var css_248z = css`:host {
|
|
7
9
|
--background: var(--leu-color-black-0);
|
package/dist/Message.js
CHANGED
|
@@ -2,7 +2,7 @@ import { _ as __decorate } from './_tslib-CNEFicEt.js';
|
|
|
2
2
|
import { css, html, nothing } from 'lit';
|
|
3
3
|
import { property } from 'lit/decorators.js';
|
|
4
4
|
import { classMap } from 'lit/directives/class-map.js';
|
|
5
|
-
import { L as LeuElement } from './LeuElement-
|
|
5
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
6
6
|
import { LeuIcon } from './Icon.js';
|
|
7
7
|
import { H as HasSlotController } from './hasSlotController-Bm2tipvG.js';
|
|
8
8
|
|
package/dist/Pagination.js
CHANGED
|
@@ -2,7 +2,7 @@ import { _ as __decorate } from './_tslib-CNEFicEt.js';
|
|
|
2
2
|
import { css, html } from 'lit';
|
|
3
3
|
import { live } from 'lit/directives/live.js';
|
|
4
4
|
import { property, state } from 'lit/decorators.js';
|
|
5
|
-
import { L as LeuElement } from './LeuElement-
|
|
5
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
6
6
|
import { LeuButton } from './Button.js';
|
|
7
7
|
import { LeuVisuallyHidden } from './VisuallyHidden.js';
|
|
8
8
|
import { LeuIcon } from './Icon.js';
|
package/dist/Placeholder.js
CHANGED
package/dist/Popup.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { css, html } from 'lit';
|
|
2
2
|
import { autoUpdate, size, flip, shift, computePosition } from '@floating-ui/dom';
|
|
3
|
-
import { L as LeuElement } from './LeuElement-
|
|
3
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
4
4
|
|
|
5
5
|
var css_248z = css`:host {
|
|
6
6
|
--popup-font-regular: var(--leu-font-family-regular);
|
package/dist/Radio.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { _ as __decorate } from './_tslib-CNEFicEt.js';
|
|
2
2
|
import { css, html } from 'lit';
|
|
3
3
|
import { property } from 'lit/decorators.js';
|
|
4
|
-
import { L as LeuElement } from './LeuElement-
|
|
4
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
5
5
|
|
|
6
6
|
var css_248z = css`:host {
|
|
7
7
|
--radio-color: var(--leu-color-black-40);
|
package/dist/RadioGroup.js
CHANGED
|
@@ -2,7 +2,7 @@ import { _ as __decorate } from './_tslib-CNEFicEt.js';
|
|
|
2
2
|
import { css, html } from 'lit';
|
|
3
3
|
import { classMap } from 'lit/directives/class-map.js';
|
|
4
4
|
import { property } from 'lit/decorators.js';
|
|
5
|
-
import { L as LeuElement } from './LeuElement-
|
|
5
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
6
6
|
import { LeuRadio } from './Radio.js';
|
|
7
7
|
|
|
8
8
|
var css_248z = css`:host {
|
package/dist/Range.js
CHANGED
package/dist/ScrollTop.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { css, html } from 'lit';
|
|
2
2
|
import { classMap } from 'lit/directives/class-map.js';
|
|
3
|
-
import { L as LeuElement } from './LeuElement-
|
|
3
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
4
4
|
import { LeuButton } from './Button.js';
|
|
5
5
|
import { LeuIcon } from './Icon.js';
|
|
6
6
|
import './_tslib-CNEFicEt.js';
|
package/dist/Select.js
CHANGED
|
@@ -2,7 +2,7 @@ import { css, nothing, html } from 'lit';
|
|
|
2
2
|
import { classMap } from 'lit/directives/class-map.js';
|
|
3
3
|
import { createRef, ref } from 'lit/directives/ref.js';
|
|
4
4
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
|
5
|
-
import { L as LeuElement } from './LeuElement-
|
|
5
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
6
6
|
import { H as HasSlotController } from './hasSlotController-Bm2tipvG.js';
|
|
7
7
|
import { LeuButton } from './Button.js';
|
|
8
8
|
import { LeuMenu } from './Menu.js';
|
package/dist/Spinner.js
CHANGED
package/dist/Table.js
CHANGED
|
@@ -2,12 +2,12 @@ import { css, html, nothing } from 'lit';
|
|
|
2
2
|
import { classMap } from 'lit/directives/class-map.js';
|
|
3
3
|
import { styleMap } from 'lit/directives/style-map.js';
|
|
4
4
|
import { createRef, ref } from 'lit/directives/ref.js';
|
|
5
|
-
import { L as LeuElement } from './LeuElement-
|
|
5
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
6
6
|
import { LeuIcon } from './Icon.js';
|
|
7
7
|
import { LeuPagination } from './Pagination.js';
|
|
8
8
|
import './_tslib-CNEFicEt.js';
|
|
9
|
-
import 'lit/directives/live.js';
|
|
10
9
|
import 'lit/decorators.js';
|
|
10
|
+
import 'lit/directives/live.js';
|
|
11
11
|
import './Button.js';
|
|
12
12
|
import 'lit/directives/if-defined.js';
|
|
13
13
|
import './hasSlotController-Bm2tipvG.js';
|
package/dist/Tag.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { _ as __decorate } from './_tslib-CNEFicEt.js';
|
|
2
2
|
import { css, html } from 'lit';
|
|
3
3
|
import { property } from 'lit/decorators.js';
|
|
4
|
-
import { L as LeuElement } from './LeuElement-
|
|
4
|
+
import { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
5
5
|
|
|
6
6
|
var css_248z = css`:host {
|
|
7
7
|
/* --tag-font-regular: var(--leu-font-family-regular);
|
package/dist/VisuallyHidden.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LeuElement } from "../../lib/LeuElement.js";
|
|
2
|
+
import { IconPathName } from "./paths.js";
|
|
2
3
|
/**
|
|
3
4
|
* A component to render all defined zhWeb icons.
|
|
4
5
|
* The `fill` of the icon is set to `currentColor` and
|
|
@@ -6,7 +7,6 @@ import { LeuElement } from "../../lib/LeuElement.js";
|
|
|
6
7
|
* If the icon name is not found, a placeholder will be displayed.
|
|
7
8
|
*
|
|
8
9
|
* @tagname leu-icon
|
|
9
|
-
* @prop {import("./paths").IconPathName} name - The name of the icon to display.
|
|
10
10
|
* @cssprop --leu-icon-size - The size of the icon.
|
|
11
11
|
*/
|
|
12
12
|
export declare class LeuIcon extends LeuElement {
|
|
@@ -17,7 +17,10 @@ export declare class LeuIcon extends LeuElement {
|
|
|
17
17
|
reflect: boolean;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
-
|
|
20
|
+
/**
|
|
21
|
+
* The name of the icon to display.
|
|
22
|
+
*/
|
|
23
|
+
name: IconPathName | "";
|
|
21
24
|
render(): import("lit-html").TemplateResult<1>;
|
|
22
25
|
}
|
|
23
26
|
//# sourceMappingURL=Icon.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../../src/components/icon/Icon.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../../src/components/icon/Icon.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAA;AAGpD,OAAO,EAAS,YAAY,EAAE,MAAM,YAAY,CAAA;AAEhD;;;;;;;;GAQG;AACH,qBAAa,OAAQ,SAAQ,UAAU;IACrC,MAAM,CAAC,MAAM,iCAA8B;IAE3C,MAAM,CAAC,UAAU;;;;;MAEhB;IAED;;OAEG;IAEH,IAAI,EAAE,YAAY,GAAG,EAAE,CAAK;IAE5B,MAAM;CAoBP"}
|
|
@@ -1,68 +1,105 @@
|
|
|
1
|
-
|
|
2
|
-
* @typedef {keyof paths} IconPathName
|
|
3
|
-
*/
|
|
1
|
+
export type IconPathName = keyof typeof paths;
|
|
4
2
|
export declare const paths: {
|
|
5
3
|
addNew: string;
|
|
4
|
+
alert: string;
|
|
6
5
|
angleDropDown: string;
|
|
7
|
-
|
|
6
|
+
angleDropUp: string;
|
|
8
7
|
angleLeft: string;
|
|
9
8
|
angleRight: string;
|
|
10
9
|
arrowDown: string;
|
|
11
10
|
arrowLeft: string;
|
|
12
11
|
arrowRight: string;
|
|
13
12
|
arrowUp: string;
|
|
13
|
+
backward: string;
|
|
14
|
+
block: string;
|
|
14
15
|
calendar: string;
|
|
16
|
+
camera: string;
|
|
15
17
|
caution: string;
|
|
18
|
+
cc: string;
|
|
19
|
+
chart: string;
|
|
16
20
|
chatMessage: string;
|
|
17
21
|
check: string;
|
|
18
22
|
clear: string;
|
|
19
23
|
close: string;
|
|
24
|
+
comment: string;
|
|
20
25
|
conference: string;
|
|
21
26
|
confirm: string;
|
|
22
27
|
confirmPlain: string;
|
|
28
|
+
conversation: string;
|
|
29
|
+
copy: string;
|
|
23
30
|
delete: string;
|
|
24
|
-
documents: string;
|
|
25
31
|
download: string;
|
|
32
|
+
earth: string;
|
|
26
33
|
edit: string;
|
|
27
34
|
email: string;
|
|
28
35
|
file: string;
|
|
36
|
+
fileCsv: string;
|
|
29
37
|
fileOutline: string;
|
|
38
|
+
filePdf: string;
|
|
39
|
+
fileXml: string;
|
|
30
40
|
files: string;
|
|
31
41
|
filter: string;
|
|
32
42
|
floppy: string;
|
|
43
|
+
folder: string;
|
|
33
44
|
forward: string;
|
|
34
45
|
getInformation: string;
|
|
35
46
|
hide: string;
|
|
36
47
|
home: string;
|
|
48
|
+
image: string;
|
|
49
|
+
income: string;
|
|
50
|
+
launch: string;
|
|
51
|
+
levelUp: string;
|
|
52
|
+
like: string;
|
|
37
53
|
link: string;
|
|
38
54
|
list: string;
|
|
39
|
-
lock: string;
|
|
40
55
|
location: string;
|
|
56
|
+
lock: string;
|
|
41
57
|
login: string;
|
|
42
58
|
logout: string;
|
|
59
|
+
love: string;
|
|
60
|
+
emailOpen: string;
|
|
43
61
|
map: string;
|
|
44
62
|
mapLocateMe: string;
|
|
45
|
-
mapLocation: string;
|
|
46
63
|
mapNavigation: string;
|
|
47
64
|
mapPin: string;
|
|
48
65
|
menu: string;
|
|
49
66
|
menuOverflow: string;
|
|
50
67
|
minus: string;
|
|
51
|
-
|
|
68
|
+
money: string;
|
|
69
|
+
moneyIncome: string;
|
|
70
|
+
organisation: string;
|
|
52
71
|
overflow: string;
|
|
53
72
|
paperplane: string;
|
|
54
73
|
paragraph: string;
|
|
74
|
+
passport: string;
|
|
55
75
|
phoneCall: string;
|
|
76
|
+
piechart: string;
|
|
77
|
+
pill: string;
|
|
56
78
|
pin: string;
|
|
57
79
|
plus: string;
|
|
58
80
|
print: string;
|
|
81
|
+
refresh: string;
|
|
59
82
|
remove: string;
|
|
83
|
+
repost: string;
|
|
60
84
|
resizeText: string;
|
|
61
85
|
search: string;
|
|
86
|
+
securities: string;
|
|
87
|
+
setting: string;
|
|
88
|
+
share: string;
|
|
62
89
|
show: string;
|
|
90
|
+
smileyDevastated: string;
|
|
91
|
+
smileyIndifferent: string;
|
|
92
|
+
smileySad: string;
|
|
93
|
+
smileySmile: string;
|
|
94
|
+
smileyThrilled: string;
|
|
95
|
+
swissId: string;
|
|
63
96
|
time: string;
|
|
64
97
|
upload: string;
|
|
65
|
-
|
|
98
|
+
user: string;
|
|
99
|
+
userMultiple: string;
|
|
100
|
+
vote: string;
|
|
101
|
+
zoom: string;
|
|
102
|
+
zoomOut: string;
|
|
66
103
|
fastForward: string;
|
|
67
104
|
fastRewind: string;
|
|
68
105
|
fullScreen: string;
|
|
@@ -70,32 +107,20 @@ export declare const paths: {
|
|
|
70
107
|
pause: string;
|
|
71
108
|
play: string;
|
|
72
109
|
playButton: string;
|
|
73
|
-
|
|
110
|
+
previous: string;
|
|
74
111
|
skipNext: string;
|
|
75
112
|
skipPrevious: string;
|
|
76
113
|
stop: string;
|
|
77
|
-
comment: string;
|
|
78
114
|
facebook: string;
|
|
79
115
|
google: string;
|
|
80
116
|
instagram: string;
|
|
81
117
|
kununu: string;
|
|
82
|
-
like: string;
|
|
83
118
|
linkedin: string;
|
|
84
|
-
love: string;
|
|
85
|
-
repost: string;
|
|
86
|
-
share: string;
|
|
87
119
|
snapchat: string;
|
|
120
|
+
tiktok: string;
|
|
88
121
|
twitter: string;
|
|
89
|
-
user: string;
|
|
90
|
-
users: string;
|
|
91
|
-
vote: string;
|
|
92
122
|
xing: string;
|
|
93
123
|
youtube: string;
|
|
94
124
|
youtubeLogo: string;
|
|
95
|
-
smileyThrilled: string;
|
|
96
|
-
smileySmile: string;
|
|
97
|
-
smileyIndifferent: string;
|
|
98
|
-
smileySad: string;
|
|
99
|
-
smileyDevastated: string;
|
|
100
125
|
};
|
|
101
126
|
//# sourceMappingURL=paths.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"paths.d.ts","sourceRoot":"","sources":["../../../src/components/icon/paths.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"paths.d.ts","sourceRoot":"","sources":["../../../src/components/icon/paths.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,KAAK,CAAA;AAE7C,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsNjB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/icon/stories/icon.stories.ts"],"names":[],"mappings":"AACA,OAAO,gBAAgB,CAAA;;;;;;;;;;;;;;;;;AAIvB,wBAeC;AASD,eAAO,MAAM,OAAO,KAAoB,CAAA;AAMxC,eAAO,MAAM,KAAK,KAAoB,CAAA;AAMtC,eAAO,MAAM,OAAO,KAAoB,CAAA;AAOxC,eAAO,MAAM,QAAQ;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"icon.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/icon/stories/icon.stories.ts"],"names":[],"mappings":"AACA,OAAO,gBAAgB,CAAA;;;;;;;;;;;;;;;;;AAIvB,wBAeC;AASD,eAAO,MAAM,OAAO,KAAoB,CAAA;AAMxC,eAAO,MAAM,KAAK,KAAoB,CAAA;AAMtC,eAAO,MAAM,OAAO,KAAoB,CAAA;AAOxC,eAAO,MAAM,QAAQ;;;;;;;;;CA8BpB,CAAA"}
|
|
@@ -194,15 +194,6 @@ export declare class LeuInput extends LeuElement {
|
|
|
194
194
|
* @fires {CustomEvent} change
|
|
195
195
|
*/
|
|
196
196
|
clear(): void;
|
|
197
|
-
/**
|
|
198
|
-
* Method for getting the id of the input element.
|
|
199
|
-
* If the id attribute is set, the value of the id attribute is returned.
|
|
200
|
-
* Otherwise a random id is generated and returned.
|
|
201
|
-
*
|
|
202
|
-
* @private
|
|
203
|
-
* @returns {string} id
|
|
204
|
-
*/
|
|
205
|
-
getId(): any;
|
|
206
197
|
/**
|
|
207
198
|
* Merge custom and default validation messages.
|
|
208
199
|
* A validation message can be a function or a string.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/input/Input.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,OAAO,EAAE,MAAM,KAAK,CAAA;AAMnC,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAA;AACpD,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAA;AAIzC,eAAO,MAAM,KAAK;;;EAGhB,CAAA;AAuBF;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,qBAAa,QAAS,SAAQ,UAAU;IACtC,MAAM,CAAC,YAAY;;MAElB;IAED,MAAM,CAAC,MAAM,iCAA8B;IAE3C;;OAEG;IACH,MAAM,CAAC,iBAAiB;;;;;;;MAGvB;IAED,MAAM,CAAC,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA2BhB;IAED,MAAM,CAAC,mBAAmB,CAAC,OAAO,KAAA,EAAE,aAAa,KAAA;;IAkCjD,IAAI,aAAa,WAKhB;IAED;;;;;;;;;;OAUG;IACH,kBAAkB,CAAC,KAAK,KAAA;IAMxB;;;;;;OAMG;IACH,UAAU,CAAC,KAAK,KAAA;IAQhB;;;;;;OAMG;IACH,aAAa,CAAC,KAAK,KAAA;IAInB;;;;;;;;OAQG;IACH,YAAY,CAAC,KAAK,KAAA;IASlB;;;;;;;OAOG;IACH,WAAW,CAAC,KAAK,KAAA;IAUjB;;;;;;;;OAQG;IACH,KAAK;IAaL
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/input/Input.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,OAAO,EAAE,MAAM,KAAK,CAAA;AAMnC,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAA;AACpD,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAA;AAIzC,eAAO,MAAM,KAAK;;;EAGhB,CAAA;AAuBF;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,qBAAa,QAAS,SAAQ,UAAU;IACtC,MAAM,CAAC,YAAY;;MAElB;IAED,MAAM,CAAC,MAAM,iCAA8B;IAE3C;;OAEG;IACH,MAAM,CAAC,iBAAiB;;;;;;;MAGvB;IAED,MAAM,CAAC,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA2BhB;IAED,MAAM,CAAC,mBAAmB,CAAC,OAAO,KAAA,EAAE,aAAa,KAAA;;IAkCjD,IAAI,aAAa,WAKhB;IAED;;;;;;;;;;OAUG;IACH,kBAAkB,CAAC,KAAK,KAAA;IAMxB;;;;;;OAMG;IACH,UAAU,CAAC,KAAK,KAAA;IAQhB;;;;;;OAMG;IACH,aAAa,CAAC,KAAK,KAAA;IAInB;;;;;;;;OAQG;IACH,YAAY,CAAC,KAAK,KAAA;IASlB;;;;;;;OAOG;IACH,WAAW,CAAC,KAAK,KAAA;IAUjB;;;;;;;;OAQG;IACH,KAAK;IAaL;;;;;;;;;;OAUG;IACH,qBAAqB;IA6BrB,SAAS;IAUT;;;OAGG;IACH,aAAa;IAIb;;;OAGG;IACH,mBAAmB;IAyBnB;;;;;;OAMG;IACH,kBAAkB;IA2BlB,MAAM;CAiDP"}
|
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ export { LeuRadio } from './Radio.js';
|
|
|
18
18
|
export { LeuRadioGroup } from './RadioGroup.js';
|
|
19
19
|
export { LeuSelect } from './Select.js';
|
|
20
20
|
export { LeuTable } from './Table.js';
|
|
21
|
-
export { L as LeuElement } from './LeuElement-
|
|
21
|
+
export { L as LeuElement } from './LeuElement-DgiuzsX9.js';
|
|
22
22
|
import './_tslib-CNEFicEt.js';
|
|
23
23
|
import 'lit';
|
|
24
24
|
import 'lit/static-html.js';
|
package/dist/leu-accordion.js
CHANGED
package/dist/leu-button-group.js
CHANGED
package/dist/leu-button.js
CHANGED
|
@@ -5,7 +5,7 @@ import 'lit/directives/class-map.js';
|
|
|
5
5
|
import 'lit/directives/if-defined.js';
|
|
6
6
|
import 'lit/decorators.js';
|
|
7
7
|
import './Icon.js';
|
|
8
|
-
import './LeuElement-
|
|
8
|
+
import './LeuElement-DgiuzsX9.js';
|
|
9
9
|
import './hasSlotController-Bm2tipvG.js';
|
|
10
10
|
|
|
11
11
|
LeuButton.define("leu-button");
|
|
@@ -2,7 +2,7 @@ import { LeuChartWrapper } from './ChartWrapper.js';
|
|
|
2
2
|
import './_tslib-CNEFicEt.js';
|
|
3
3
|
import 'lit';
|
|
4
4
|
import 'lit/decorators.js';
|
|
5
|
-
import './LeuElement-
|
|
5
|
+
import './LeuElement-DgiuzsX9.js';
|
|
6
6
|
import './hasSlotController-Bm2tipvG.js';
|
|
7
7
|
import './Spinner.js';
|
|
8
8
|
|
package/dist/leu-checkbox.js
CHANGED
package/dist/leu-chip-group.js
CHANGED
package/dist/leu-chip-link.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { LeuChipRemovable } from './ChipRemovable.js';
|
|
2
2
|
import 'lit';
|
|
3
3
|
import './Chip.js';
|
|
4
|
-
import './LeuElement-
|
|
4
|
+
import './LeuElement-DgiuzsX9.js';
|
|
5
5
|
import './Icon.js';
|
|
6
|
+
import './_tslib-CNEFicEt.js';
|
|
7
|
+
import 'lit/decorators.js';
|
|
6
8
|
|
|
7
9
|
LeuChipRemovable.define("leu-chip-removable");
|
|
8
10
|
|
package/dist/leu-dialog.js
CHANGED
|
@@ -2,9 +2,11 @@ import { LeuDialog } from './Dialog.js';
|
|
|
2
2
|
import 'lit';
|
|
3
3
|
import 'lit/directives/ref.js';
|
|
4
4
|
import 'lit/directives/class-map.js';
|
|
5
|
-
import './LeuElement-
|
|
5
|
+
import './LeuElement-DgiuzsX9.js';
|
|
6
6
|
import './hasSlotController-Bm2tipvG.js';
|
|
7
7
|
import './Icon.js';
|
|
8
|
+
import './_tslib-CNEFicEt.js';
|
|
9
|
+
import 'lit/decorators.js';
|
|
8
10
|
|
|
9
11
|
LeuDialog.define("leu-dialog");
|
|
10
12
|
|
package/dist/leu-dropdown.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LeuDropdown } from './Dropdown.js';
|
|
2
2
|
import 'lit';
|
|
3
3
|
import 'lit/directives/ref.js';
|
|
4
|
-
import './LeuElement-
|
|
4
|
+
import './LeuElement-DgiuzsX9.js';
|
|
5
5
|
import './hasSlotController-Bm2tipvG.js';
|
|
6
6
|
import './Button.js';
|
|
7
7
|
import './_tslib-CNEFicEt.js';
|
package/dist/leu-icon.js
CHANGED
package/dist/leu-input.js
CHANGED
|
@@ -4,8 +4,10 @@ import 'lit/directives/class-map.js';
|
|
|
4
4
|
import 'lit/directives/if-defined.js';
|
|
5
5
|
import 'lit/directives/live.js';
|
|
6
6
|
import 'lit/directives/ref.js';
|
|
7
|
-
import './LeuElement-
|
|
7
|
+
import './LeuElement-DgiuzsX9.js';
|
|
8
8
|
import './Icon.js';
|
|
9
|
+
import './_tslib-CNEFicEt.js';
|
|
10
|
+
import 'lit/decorators.js';
|
|
9
11
|
|
|
10
12
|
LeuInput.define("leu-input");
|
|
11
13
|
|
package/dist/leu-menu-item.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { LeuMenuItem } from './MenuItem.js';
|
|
2
2
|
import 'lit';
|
|
3
3
|
import 'lit/directives/if-defined.js';
|
|
4
|
-
import './LeuElement-
|
|
4
|
+
import './LeuElement-DgiuzsX9.js';
|
|
5
5
|
import './Icon.js';
|
|
6
|
+
import './_tslib-CNEFicEt.js';
|
|
7
|
+
import 'lit/decorators.js';
|
|
6
8
|
|
|
7
9
|
LeuMenuItem.define("leu-menu-item");
|
|
8
10
|
|
package/dist/leu-menu.js
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { LeuMenu } from './Menu.js';
|
|
2
2
|
import 'lit';
|
|
3
|
-
import './LeuElement-
|
|
3
|
+
import './LeuElement-DgiuzsX9.js';
|
|
4
4
|
import './MenuItem.js';
|
|
5
5
|
import 'lit/directives/if-defined.js';
|
|
6
6
|
import './Icon.js';
|
|
7
|
+
import './_tslib-CNEFicEt.js';
|
|
8
|
+
import 'lit/decorators.js';
|
|
7
9
|
|
|
8
10
|
LeuMenu.define("leu-menu");
|
|
9
11
|
|
package/dist/leu-message.js
CHANGED