@statistikzh/leu 0.13.0 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (187) hide show
  1. package/.eslintrc.json +8 -0
  2. package/.github/workflows/ci.yml +78 -0
  3. package/.github/workflows/deploy-github-pages.yaml +2 -1
  4. package/.github/workflows/release-please.yml +2 -1
  5. package/.nvmrc +1 -0
  6. package/.prettierignore +1 -0
  7. package/.storybook/main.js +19 -3
  8. package/.storybook/static/fonts/Inter-Black.woff2 +0 -0
  9. package/.storybook/static/fonts/Inter-Regular.woff2 +0 -0
  10. package/.storybook/static/fonts.css +11 -0
  11. package/CHANGELOG.md +27 -0
  12. package/custom-elements-manifest.config.js +2 -2
  13. package/dist/Accordion.d.ts +1 -1
  14. package/dist/Accordion.d.ts.map +1 -1
  15. package/dist/Accordion.js +2 -4
  16. package/dist/Button.d.ts +2 -2
  17. package/dist/Button.d.ts.map +1 -1
  18. package/dist/Button.js +64 -34
  19. package/dist/ButtonGroup.d.ts +1 -1
  20. package/dist/ButtonGroup.js +1 -1
  21. package/dist/Checkbox.d.ts +1 -1
  22. package/dist/Checkbox.d.ts.map +1 -1
  23. package/dist/Checkbox.js +2 -3
  24. package/dist/CheckboxGroup.d.ts +1 -1
  25. package/dist/CheckboxGroup.d.ts.map +1 -1
  26. package/dist/CheckboxGroup.js +1 -3
  27. package/dist/Chip.d.ts +1 -1
  28. package/dist/Chip.d.ts.map +1 -1
  29. package/dist/Chip.js +5 -6
  30. package/dist/ChipGroup.d.ts +1 -1
  31. package/dist/ChipGroup.d.ts.map +1 -1
  32. package/dist/ChipGroup.js +2 -2
  33. package/dist/ChipLink.js +1 -1
  34. package/dist/ChipRemovable.js +1 -1
  35. package/dist/ChipSelectable.js +1 -1
  36. package/dist/Dialog.d.ts +1 -1
  37. package/dist/Dialog.d.ts.map +1 -1
  38. package/dist/Dialog.js +3 -5
  39. package/dist/Dropdown.d.ts +1 -1
  40. package/dist/Dropdown.d.ts.map +1 -1
  41. package/dist/Dropdown.js +4 -3
  42. package/dist/Icon.d.ts +2 -98
  43. package/dist/Icon.d.ts.map +1 -1
  44. package/dist/Icon.js +6 -2
  45. package/dist/Input.d.ts +7 -2
  46. package/dist/Input.d.ts.map +1 -1
  47. package/dist/Input.js +15 -8
  48. package/dist/{LeuElement-874a297c.d.ts → LeuElement-BjGpKQpe.d.ts} +1 -1
  49. package/dist/LeuElement-BjGpKQpe.d.ts.map +1 -0
  50. package/dist/{LeuElement-874a297c.js → LeuElement-BjGpKQpe.js} +12 -2
  51. package/dist/Menu.d.ts +2 -2
  52. package/dist/Menu.js +1 -1
  53. package/dist/MenuItem.d.ts +3 -3
  54. package/dist/MenuItem.js +1 -1
  55. package/dist/Pagination.d.ts +1 -1
  56. package/dist/Pagination.js +3 -3
  57. package/dist/Popup.d.ts +2 -2
  58. package/dist/Popup.d.ts.map +1 -1
  59. package/dist/Popup.js +2 -3
  60. package/dist/Radio.d.ts +1 -1
  61. package/dist/Radio.d.ts.map +1 -1
  62. package/dist/Radio.js +1 -3
  63. package/dist/RadioGroup.d.ts +1 -1
  64. package/dist/RadioGroup.d.ts.map +1 -1
  65. package/dist/RadioGroup.js +1 -3
  66. package/dist/Range.d.ts +1 -1
  67. package/dist/Range.d.ts.map +1 -1
  68. package/dist/Range.js +17 -19
  69. package/dist/ScrollTop.d.ts +1 -1
  70. package/dist/ScrollTop.d.ts.map +1 -1
  71. package/dist/ScrollTop.js +27 -3
  72. package/dist/Select.d.ts +3 -3
  73. package/dist/Select.d.ts.map +1 -1
  74. package/dist/Select.js +7 -5
  75. package/dist/Spinner.d.ts +1 -1
  76. package/dist/Spinner.js +1 -1
  77. package/dist/Table.d.ts +1 -1
  78. package/dist/Table.d.ts.map +1 -1
  79. package/dist/Table.js +3 -4
  80. package/dist/VisuallyHidden.d.ts +1 -1
  81. package/dist/VisuallyHidden.d.ts.map +1 -1
  82. package/dist/VisuallyHidden.js +3 -5
  83. package/dist/{hasSlotController-dbcac394.d.ts → hasSlotController-DvFw2NdC.d.ts} +1 -1
  84. package/dist/hasSlotController-DvFw2NdC.d.ts.map +1 -0
  85. package/dist/{hasSlotController-dbcac394.js → hasSlotController-DvFw2NdC.js} +1 -1
  86. package/dist/index.d.ts +1 -1
  87. package/dist/index.js +5 -7
  88. package/dist/leu-accordion.js +1 -1
  89. package/dist/leu-button-group.js +1 -1
  90. package/dist/leu-button.js +2 -2
  91. package/dist/leu-checkbox-group.js +1 -1
  92. package/dist/leu-checkbox.js +1 -1
  93. package/dist/leu-chip-group.js +1 -1
  94. package/dist/leu-chip-link.js +1 -1
  95. package/dist/leu-chip-removable.js +1 -1
  96. package/dist/leu-chip-selectable.js +1 -1
  97. package/dist/leu-dialog.js +2 -2
  98. package/dist/leu-dropdown.js +2 -2
  99. package/dist/leu-icon.js +1 -1
  100. package/dist/leu-input.js +1 -1
  101. package/dist/leu-menu-item.js +1 -1
  102. package/dist/leu-menu.js +1 -1
  103. package/dist/leu-pagination.js +2 -2
  104. package/dist/leu-popup.js +1 -1
  105. package/dist/leu-radio-group.js +1 -1
  106. package/dist/leu-radio.js +1 -1
  107. package/dist/leu-range.js +1 -1
  108. package/dist/leu-scroll-top.js +2 -3
  109. package/dist/leu-select.js +2 -2
  110. package/dist/leu-spinner.js +1 -1
  111. package/dist/leu-table.js +2 -2
  112. package/dist/leu-visually-hidden.js +1 -1
  113. package/dist/theme.css +143 -107
  114. package/dist/vscode.html-custom-data.json +3 -32
  115. package/dist/vue/index.d.ts +11 -77
  116. package/dist/web-types.json +246 -242
  117. package/index.js +1 -1
  118. package/package.json +55 -51
  119. package/rollup.config.js +3 -3
  120. package/scripts/generate-component/generate.js +5 -5
  121. package/src/components/accordion/test/accordion.test.js +24 -20
  122. package/src/components/button/Button.js +9 -4
  123. package/src/components/button/button.css +56 -22
  124. package/src/components/button/stories/button.stories.js +44 -45
  125. package/src/components/button/test/button.test.js +13 -13
  126. package/src/components/button-group/ButtonGroup.js +1 -1
  127. package/src/components/button-group/stories/button-group.stories.js +2 -2
  128. package/src/components/checkbox/checkbox.css +1 -0
  129. package/src/components/chip/ChipSelectable.js +1 -1
  130. package/src/components/chip/chip.css +4 -3
  131. package/src/components/chip/stories/chip-group.stories.js +4 -4
  132. package/src/components/chip/stories/chip-selectable.stories.js +1 -1
  133. package/src/components/chip/test/chip-group.test.js +25 -33
  134. package/src/components/chip/test/chip-link.test.js +5 -5
  135. package/src/components/chip/test/chip-removable.test.js +6 -8
  136. package/src/components/chip/test/chip-selectable.test.js +9 -11
  137. package/src/components/dialog/test/dialog.test.js +1 -1
  138. package/src/components/dropdown/dropdown.css +1 -0
  139. package/src/components/dropdown/test/dropdown.test.js +12 -13
  140. package/src/components/icon/icon.css +4 -0
  141. package/src/components/input/Input.js +25 -17
  142. package/src/components/input/stories/input.stories.js +0 -2
  143. package/src/components/input/test/input.test.js +26 -0
  144. package/src/components/menu/stories/menu-item.stories.js +2 -0
  145. package/src/components/menu/test/menu-item.test.js +3 -2
  146. package/src/components/menu/test/menu.test.js +24 -22
  147. package/src/components/pagination/Pagination.js +1 -1
  148. package/src/components/pagination/pagination.css +1 -1
  149. package/src/components/pagination/stories/pagination.stories.js +2 -1
  150. package/src/components/pagination/test/pagination.test.js +8 -6
  151. package/src/components/popup/Popup.js +4 -4
  152. package/src/components/popup/popup.css +1 -0
  153. package/src/components/popup/test/popup.test.js +6 -8
  154. package/src/components/radio/RadioGroup.js +2 -2
  155. package/src/components/range/Range.js +20 -21
  156. package/src/components/select/Select.js +6 -1
  157. package/src/components/select/select.css +1 -1
  158. package/src/components/select/stories/select.stories.js +1 -1
  159. package/src/components/select/test/select.test.js +19 -16
  160. package/src/components/table/Table.js +4 -4
  161. package/src/components/table/test/table.test.js +3 -2
  162. package/src/components/visually-hidden/test/visually-hidden.test.js +6 -8
  163. package/src/lib/LeuElement.js +2 -2
  164. package/src/lib/hasSlotController.js +1 -1
  165. package/src/styles/common-styles.css +9 -0
  166. package/src/styles/style.stories.js +3 -1
  167. package/tsconfig.build.json +4 -3
  168. package/web-dev-server.config.mjs +1 -0
  169. package/web-test-runner.config.mjs +2 -1
  170. package/.github/workflows/test.yml +0 -38
  171. package/.storybook/preview-head.html +0 -5
  172. package/dist/Breadcrumb.d.ts +0 -69
  173. package/dist/Breadcrumb.d.ts.map +0 -1
  174. package/dist/Breadcrumb.js +0 -391
  175. package/dist/LeuElement-874a297c.d.ts.map +0 -1
  176. package/dist/hasSlotController-dbcac394.d.ts.map +0 -1
  177. package/dist/leu-breadcrumb.d.ts +0 -3
  178. package/dist/leu-breadcrumb.d.ts.map +0 -1
  179. package/dist/leu-breadcrumb.js +0 -17
  180. package/dist/utils-65469421.d.ts +0 -16
  181. package/dist/utils-65469421.d.ts.map +0 -1
  182. package/dist/utils-65469421.js +0 -35
  183. package/src/components/breadcrumb/Breadcrumb.js +0 -324
  184. package/src/components/breadcrumb/breadcrumb.css +0 -98
  185. package/src/components/breadcrumb/leu-breadcrumb.js +0 -5
  186. package/src/components/breadcrumb/stories/breadcrumb.stories.js +0 -73
  187. package/src/components/breadcrumb/test/breadcrumb.test.js +0 -141
package/.eslintrc.json CHANGED
@@ -8,6 +8,14 @@
8
8
  "varsIgnorePattern": "^_",
9
9
  "argsIgnorePattern": "^_"
10
10
  }
11
+ ],
12
+ "prefer-destructuring": [
13
+ "error",
14
+ {
15
+ "AssignmentExpression": {
16
+ "array": false
17
+ }
18
+ }
11
19
  ]
12
20
  },
13
21
  "overrides": [
@@ -0,0 +1,78 @@
1
+ name: Continuous integration
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+
12
+ - name: Use Node.js
13
+ uses: actions/setup-node@v4
14
+ with:
15
+ node-version-file: ".nvmrc"
16
+ cache: "npm"
17
+
18
+ - run: npm ci
19
+
20
+ - name: Run linters
21
+ run: npm run lint
22
+
23
+ build:
24
+ runs-on: ubuntu-latest
25
+ needs: lint
26
+
27
+ steps:
28
+ - uses: actions/checkout@v4
29
+
30
+ - name: Use Node.js
31
+ uses: actions/setup-node@v4
32
+ with:
33
+ node-version-file: ".nvmrc"
34
+ cache: "npm"
35
+
36
+ - run: npm ci
37
+
38
+ - name: Build library
39
+ run: npm run build
40
+
41
+ - name: Build storybook
42
+ run: npm run storybook:build
43
+
44
+ test:
45
+ runs-on: ubuntu-latest
46
+ needs: lint
47
+
48
+ steps:
49
+ - name: Checkout code
50
+ uses: actions/checkout@v4
51
+
52
+ - name: Use Node.js
53
+ uses: actions/setup-node@v4
54
+ with:
55
+ node-version-file: ".nvmrc"
56
+ cache: "npm"
57
+
58
+ - name: Install dependencies
59
+ run: npm ci
60
+
61
+ - name: Install Playwright browsers
62
+ run: npx playwright install
63
+
64
+ - name: Cache Playwright binaries
65
+ uses: actions/cache@v4
66
+ with:
67
+ path: ~/.cache/ms-playwright
68
+ key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
69
+ restore-keys: |
70
+ ${{ runner.os }}-playwright-
71
+
72
+ - name: Run tests
73
+ run: npm test
74
+
75
+ - uses: actions/upload-artifact@v4
76
+ with:
77
+ name: coverage
78
+ path: coverage/
@@ -23,7 +23,8 @@ jobs:
23
23
  # Set up Node
24
24
  - uses: actions/setup-node@v4
25
25
  with:
26
- node-version: "20.x"
26
+ node-version-file: ".nvmrc"
27
+ cache: "npm"
27
28
 
28
29
  #👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
29
30
  - uses: bitovi/github-actions-storybook-to-github-pages@v1.0.3
@@ -25,7 +25,8 @@ jobs:
25
25
  if: ${{ steps.release.outputs.release_created }}
26
26
  - uses: actions/setup-node@v4
27
27
  with:
28
- node-version: "20.x"
28
+ node-version-file: ".nvmrc"
29
+ cache: "npm"
29
30
  registry-url: "https://registry.npmjs.org"
30
31
  if: ${{ steps.release.outputs.release_created }}
31
32
  - run: npm ci
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ v20.9.0
package/.prettierignore CHANGED
@@ -1 +1,2 @@
1
1
  scripts/generate-component/templates/**/*.js
2
+ CHANGELOG.md
@@ -8,16 +8,32 @@ const config = {
8
8
  stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
9
9
  addons: [
10
10
  "@storybook/addon-essentials",
11
- "@storybook/addon-links",
12
11
  "@storybook/addon-designs",
13
12
  "@whitespace/storybook-addon-html",
13
+ "@storybook/addon-a11y",
14
14
  ],
15
15
  staticDirs: ["static"],
16
16
  framework: {
17
17
  name: "@web/storybook-framework-web-components",
18
18
  },
19
- docs: {
20
- autodocs: false,
19
+ docs: {},
20
+ core: {
21
+ disableTelemetry: true, // 👈 Disables telemetry
22
+ },
23
+ previewHead: (head) => {
24
+ /**
25
+ * Workaround to get the build process working
26
+ * @web/storybook-builder sets `extractAssets: true`
27
+ * for the rollup html plugin. But the same path doesn't
28
+ * work in th development environment.
29
+ * */
30
+ const basePath =
31
+ process.env.NODE_ENV === "production" ? ".storybook/static/" : ""
32
+ return `
33
+ ${head}
34
+ <link rel="stylesheet" href="${basePath}fonts.css" />
35
+ <link rel="stylesheet" href="${basePath}theme.css" />
36
+ `
21
37
  },
22
38
  async wdsFinal(config) {
23
39
  config.open = false
@@ -0,0 +1,11 @@
1
+ @font-face {
2
+ font-family: InterRegular;
3
+ font-display: swap;
4
+ src: url("fonts/Inter-Regular.woff2") format("woff2");
5
+ }
6
+
7
+ @font-face {
8
+ font-family: InterBlack;
9
+ font-display: swap;
10
+ src: url("fonts/Inter-Black.woff2") format("woff2");
11
+ }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.14.0](https://github.com/statistikZH/leu/compare/v0.13.1...v0.14.0) (2025-02-26)
4
+
5
+
6
+ ### Features
7
+
8
+ * **input:** expose checkValidity method ([#270](https://github.com/statistikZH/leu/issues/270)) ([3786a59](https://github.com/statistikZH/leu/commit/3786a59b3b736a41740fd2370dc33e266ec00fac))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **checkbox:** display disappeared check icon ([#269](https://github.com/statistikZH/leu/issues/269)) ([b23568f](https://github.com/statistikZH/leu/commit/b23568f3d2957ef755755a8a9fac94fe5c1e08c0))
14
+ * **export:** remove non existing export of the breadcrumbs component ([da5bf4c](https://github.com/statistikZH/leu/commit/da5bf4c337b2b7019ef738de22412ee67c53cb1c))
15
+ * remove breadcrumb component as it isn't part of the design system anymore ([f1d5486](https://github.com/statistikZH/leu/commit/f1d5486261e17981a496ca0be2f63c88a0d99228))
16
+ * **select:** add missing label to the listbox element ([2dff6af](https://github.com/statistikZH/leu/commit/2dff6afd62f00b90dc26fba7ba484a5f3d3dd00b))
17
+ * **select:** reset display value when its value changes ([#266](https://github.com/statistikZH/leu/issues/266)) ([158ed5f](https://github.com/statistikZH/leu/commit/158ed5f48a916f159bb1902b0ae2431df1356253))
18
+
19
+ ## [0.13.1](https://github.com/statistikZH/leu/compare/v0.13.0...v0.13.1) (2025-01-16)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * **button:** set fixed height to the ghost variant so it doesn't change when adding an icon ([c2d94cb](https://github.com/statistikZH/leu/commit/c2d94cb282687770ab477893a0731f1fcbf8ebdf))
25
+ * **chip:** prevent cut of the descender of the lables of small sized chips ([#259](https://github.com/statistikZH/leu/issues/259)) ([08f5365](https://github.com/statistikZH/leu/commit/08f5365f82c80227613a09ebe287c5e40d63027d))
26
+ * **dropdown,icon,popup:** don't create a inline or a block box ([c2d94cb](https://github.com/statistikZH/leu/commit/c2d94cb282687770ab477893a0731f1fcbf8ebdf))
27
+ * export LeuElement ([68603d4](https://github.com/statistikZH/leu/commit/68603d42e4c169df8772b803bafb6e88d9dfe441))
28
+ * **select:** add missing background color ([c4d5117](https://github.com/statistikZH/leu/commit/c4d5117a7c2ba9748a2e123a1dcf47dee619f3b0))
29
+
3
30
  ## [0.13.0](https://github.com/statistikZH/leu/compare/v0.12.2...v0.13.0) (2025-01-08)
4
31
 
5
32
 
@@ -18,7 +18,7 @@ export default {
18
18
  name: "Documentation",
19
19
  url: `https://statistikzh.github.io/leu/?path=/story/${tag.replace(
20
20
  "leu-",
21
- ""
21
+ "",
22
22
  )}`,
23
23
  },
24
24
  ],
@@ -32,7 +32,7 @@ export default {
32
32
  name: "Documentation",
33
33
  url: `https://statistikzh.github.io/leu/?path=/story/${tag.replace(
34
34
  "leu-",
35
- ""
35
+ "",
36
36
  )}`,
37
37
  }),
38
38
  }),
@@ -28,5 +28,5 @@ export class LeuAccordion extends LeuElement {
28
28
  _handleToggleClick(): void;
29
29
  render(): import("lit-html").TemplateResult;
30
30
  }
31
- import { L as LeuElement } from './LeuElement-874a297c.js';
31
+ import { L as LeuElement } from './LeuElement-BjGpKQpe.js';
32
32
  //# sourceMappingURL=Accordion.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["Accordion.js"],"names":[],"mappings":"AAmJA;;;;;;;;;GASG;AACH;IAGI,qBAAqB;IACrB,cAAiB;IACjB,cAAe;IACf,oBAAqB;IAGvB;;;;;;OAMG;IACH,kBAHa,MAAM,CASlB;IAED;;;OAGG;IACH,2BAEC;IACD,4CA+BC;CAEF;gCA7NqD,0BAA0B"}
1
+ {"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["Accordion.js"],"names":[],"mappings":"AAiJA;;;;;;;;;GASG;AACH;IAGI,qBAAqB;IACrB,cAAiB;IACjB,cAAe;IACf,oBAAqB;IAGvB;;;;;;OAMG;IACH,kBAHa,MAAM,CASlB;IAED;;;OAGG;IACH,2BAEC;IACD,4CA+BC;CAEF;gCA3NqD,0BAA0B"}
package/dist/Accordion.js CHANGED
@@ -1,6 +1,6 @@
1
- import { _ as _defineProperty, L as LeuElement } from './LeuElement-874a297c.js';
1
+ import { _ as _defineProperty, L as LeuElement } from './LeuElement-BjGpKQpe.js';
2
2
  import { css, nothing } from 'lit';
3
- import { html, unsafeStatic } from 'lit/static-html.js';
3
+ import { unsafeStatic, html } from 'lit/static-html.js';
4
4
 
5
5
  var css_248z = css`:host {
6
6
  --accordion-font-regular: var(--leu-font-family-regular);
@@ -16,8 +16,6 @@ var css_248z = css`:host {
16
16
 
17
17
  --transition: 0.1s ease;
18
18
 
19
- font-family: var(--leu-font-family-regular);
20
-
21
19
  font-family: var(--accordion-font-regular);
22
20
 
23
21
  position: relative;
package/dist/Button.d.ts CHANGED
@@ -33,7 +33,7 @@ export class LeuButton extends LeuElement {
33
33
  * @type {("true" | "false" | undefined)}
34
34
  */
35
35
  expanded: ("true" | "false" | undefined);
36
- renderExpandingIcon(): import("lit-html").TemplateResult<1> | typeof nothing;
36
+ renderExpandingIcon(): typeof nothing | import("lit-html").TemplateResult<1>;
37
37
  getAriaAttributes(): {
38
38
  role: string;
39
39
  label: any;
@@ -41,6 +41,6 @@ export class LeuButton extends LeuElement {
41
41
  hasTextContent(): boolean;
42
42
  render(): import("lit-html").TemplateResult<1>;
43
43
  }
44
- import { L as LeuElement } from './LeuElement-874a297c.js';
44
+ import { L as LeuElement } from './LeuElement-BjGpKQpe.js';
45
45
  import { nothing } from 'lit';
46
46
  //# sourceMappingURL=Button.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["Button.js"],"names":[],"mappings":"AAoTA,+CAAkD;AAJlD,oCAA0C;AAE1C,oCAAmD;AAJnD,uCAA0D;AAS1D;;;;;GAKG;AACH;IAQI,WAAiB;IACjB,qBAAqB;IACrB,MADW,MAAM,CACI;IACrB,qBAAqB;IACrB,SADW,MAAM,CACO;IACxB,4CAA4C;IAC5C,MADW,QAAQ,GAAG,QAAQ,GAAG,OAAO,CACpB;IAEpB,qBAAqB;IACrB,eADW,MAAM,CACa;IAE9B,sBAAsB;IACtB,UADW,OAAO,CACG;IACrB,+EAA+E;IAC/E,OADW,OAAO,CACA;IAClB,sBAAsB;IACtB,QADW,OAAO,CACC;IACnB,wDAAwD;IACxD,UADW,OAAO,CACG;IAErB,gGAAgG;IAChG,OADW,OAAO,CACA;IAElB;;;OAGG;IACH,UAFU,CAAC,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC,CAEf;IAE3B,6EAOC;IACD;;;MAaC;IACD,0BAEC;IACD,+CAiCC;CACF;gCA7ZqD,0BAA0B;wBAC7C,KAAK"}
1
+ {"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["Button.js"],"names":[],"mappings":"AA6UA,+CAAkD;AAJlD,oCAA0C;AAE1C,oCAAmD;AAJnD,uCAA0D;AAS1D;;;;;GAKG;AACH;IAQI,WAAiB;IACjB,qBAAqB;IACrB,MADW,MAAM,CACI;IACrB,qBAAqB;IACrB,SADW,MAAM,CACO;IACxB,4CAA4C;IAC5C,MADW,QAAQ,GAAG,QAAQ,GAAG,OAAO,CACpB;IAEpB,qBAAqB;IACrB,eADW,MAAM,CACa;IAE9B,sBAAsB;IACtB,UADW,OAAO,CACG;IACrB,+EAA+E;IAC/E,OADW,OAAO,CACA;IAClB,sBAAsB;IACtB,QADW,OAAO,CACC;IACnB,wDAAwD;IACxD,UADW,OAAO,CACG;IAErB,gGAAgG;IAChG,OADW,OAAO,CACA;IAElB;;;OAGG;IACH,UAFU,CAAC,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC,CAEf;IAE3B,6EAOC;IACD;;;MAaC;IACD,0BAEC;IACD,+CAsCC;CACF;gCA3bqD,0BAA0B;wBAC7C,KAAK"}
package/dist/Button.js CHANGED
@@ -1,9 +1,9 @@
1
- import { _ as _defineProperty, L as LeuElement } from './LeuElement-874a297c.js';
1
+ import { _ as _defineProperty, L as LeuElement } from './LeuElement-BjGpKQpe.js';
2
2
  import { css, html, nothing } from 'lit';
3
3
  import { classMap } from 'lit/directives/class-map.js';
4
4
  import { ifDefined } from 'lit/directives/if-defined.js';
5
5
  import { LeuIcon } from './Icon.js';
6
- import { H as HasSlotController } from './hasSlotController-dbcac394.js';
6
+ import { H as HasSlotController } from './hasSlotController-DvFw2NdC.js';
7
7
 
8
8
  /**
9
9
  * All roles that are associated with a aria-checked attribute
@@ -155,6 +155,7 @@ button.ghost {
155
155
  padding: 0 0.5rem;
156
156
  color: var(--leu-color-black-60);
157
157
  font-family: var(--leu-font-family-regular);
158
+ height: 2rem;
158
159
  }
159
160
 
160
161
  button.ghost:hover {
@@ -237,60 +238,84 @@ button.ghost.inverted:disabled {
237
238
  display: block;
238
239
  }
239
240
 
240
- .ghost.icon-before .icon-wrapper--before,
241
- .ghost.icon-after .icon-wrapper--after {
241
+ .icon-wrapper {
242
+ display: none;
243
+ }
244
+
245
+ .icon-before .icon-wrapper--before,
246
+ .icon-after .icon-wrapper--after {
242
247
  display: block;
243
- padding: 0.5rem;
244
- border-radius: 50%;
245
- background: var(--leu-color-black-transp-10);
246
248
  }
247
249
 
248
- .ghost.active .icon-wrapper--before, .ghost.active .icon-wrapper--after {
249
- background: var(--leu-color-black-100);
250
- color: var(--leu-color-black-0);
250
+ .ghost .icon-wrapper {
251
+ position: relative;
252
+ width: 2rem;
253
+ padding: 0 0.5rem;
254
+ --_bg: var(--leu-color-black-transp-10);
255
+ --_color: currentcolor;
251
256
  }
252
257
 
253
- .ghost:disabled .icon-wrapper--before {
254
- background: var(--leu-color-black-transp-5);
258
+ .ghost .icon-wrapper__slot {
259
+ display: block;
260
+ position: relative;
261
+ z-index: 1;
262
+ color: var(--_color);
255
263
  }
256
264
 
257
- .ghost:disabled .icon-wrapper--after {
258
- background: var(--leu-color-black-transp-5);
265
+ .ghost .icon-wrapper::before {
266
+ content: "";
267
+ position: absolute;
268
+ z-index: 0;
269
+ left: 0;
270
+ top: -0.5rem;
271
+
272
+ width: 2rem;
273
+ aspect-ratio: 1;
274
+ border-radius: 50%;
275
+ background: var(--_bg);
259
276
  }
260
277
 
261
- /* inverted */
278
+ .ghost.active .icon-wrapper {
279
+ --_bg: var(--leu-color-black-100);
280
+ --_color: var(--leu-color-black-0);
281
+ }
262
282
 
263
- .ghost.inverted .icon-wrapper--before, .ghost.inverted .icon-wrapper--after {
264
- background: var(--leu-color-black-transp-20);
283
+ .ghost:disabled .icon-wrapper {
284
+ --_bg: var(--leu-color-black-transp-5);
265
285
  }
266
286
 
267
- .ghost.inverted:hover .icon-wrapper--before, .ghost.inverted:hover .icon-wrapper--after {
268
- background: var(--leu-color-black-transp-40);
269
- color: var(--leu-color-black-0);
287
+ /* inverted */
288
+
289
+ .ghost.inverted .icon-wrapper {
290
+ --_bg: var(--leu-color-black-transp-20);
270
291
  }
271
292
 
272
- .ghost.inverted:disabled .icon-wrapper--before {
273
- background: var(--leu-color-black-transp-20);
274
- color: var(--leu-color-white-transp-70);
293
+ .ghost.inverted:hover .icon-wrapper {
294
+ --_bg: var(--leu-color-black-transp-40);
295
+ --_color: var(--leu-color-black-0);
275
296
  }
276
297
 
277
- .ghost.inverted:disabled .icon-wrapper--after {
278
- background: var(--leu-color-black-transp-20);
279
- color: var(--leu-color-white-transp-70);
298
+ .ghost.inverted:disabled .icon-wrapper {
299
+ --_bg: var(--leu-color-black-transp-20);
300
+ --_color: var(--leu-color-white-transp-70);
280
301
  }
281
302
 
282
- .ghost.active.inverted .icon-wrapper--before, .ghost.active.inverted .icon-wrapper--after {
283
- background: var(--leu-color-black-0);
284
- color: var(--leu-color-black-100);
303
+ .ghost.active.inverted .icon-wrapper {
304
+ --_bg: var(--leu-color-black-0);
305
+ --_color: var(--leu-color-black-100);
285
306
  }
286
307
 
287
308
  /* Expanded icon */
288
309
 
289
- .icon-wrapper--expanded {
310
+ .icon-expanded leu-icon {
311
+ display: block;
312
+ }
313
+
314
+ .icon-expanded {
290
315
  transition: transform 0.1s ease;
291
316
  }
292
317
 
293
- :host([expanded="open"]) .icon-wrapper--expanded {
318
+ :host([expanded="true"]) .icon-expanded {
294
319
  transform: rotate(180deg);
295
320
  }
296
321
  `;
@@ -354,7 +379,7 @@ class LeuButton extends LeuElement {
354
379
  }
355
380
  renderExpandingIcon() {
356
381
  if (typeof this.expanded !== "undefined" && this.variant === "ghost") {
357
- return html`<div class="icon-wrapper icon-wrapper--expanded">
382
+ return html`<div class="icon-expanded">
358
383
  <leu-icon name="angleDropDown" size="24"></leu-icon>
359
384
  </div>`;
360
385
  }
@@ -404,9 +429,14 @@ class LeuButton extends LeuElement {
404
429
  ?disabled=${this.disabled}
405
430
  type=${this.type}
406
431
  >
407
- <slot name="before" class="icon-wrapper icon-wrapper--before"></slot>
432
+ <div class="icon-wrapper icon-wrapper--before">
433
+ <slot name="before" class="icon-wrapper__slot"></slot>
434
+ </div>
408
435
  <span class="content"><slot></slot></span>
409
- <slot name="after" class="icon-wrapper icon-wrapper--after"></slot>
436
+ <div class="icon-wrapper icon-wrapper--after">
437
+ <slot name="after" class="icon-wrapper__slot"></slot>
438
+ </div>
439
+
410
440
  ${this.renderExpandingIcon()}
411
441
  </button>
412
442
  `;
@@ -20,5 +20,5 @@ export class LeuButtonGroup extends LeuElement {
20
20
  _handleButtonClick(button: any): void;
21
21
  render(): import("lit-html").TemplateResult<1>;
22
22
  }
23
- import { L as LeuElement } from './LeuElement-874a297c.js';
23
+ import { L as LeuElement } from './LeuElement-BjGpKQpe.js';
24
24
  //# sourceMappingURL=ButtonGroup.d.ts.map
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty, L as LeuElement } from './LeuElement-874a297c.js';
1
+ import { _ as _defineProperty, L as LeuElement } from './LeuElement-BjGpKQpe.js';
2
2
  import { css, html } from 'lit';
3
3
 
4
4
  var css_248z = css`.group {
@@ -10,5 +10,5 @@ export class LeuCheckbox extends LeuElement {
10
10
  handleInput(event: any): void;
11
11
  render(): import("lit-html").TemplateResult<1>;
12
12
  }
13
- import { L as LeuElement } from './LeuElement-874a297c.js';
13
+ import { L as LeuElement } from './LeuElement-BjGpKQpe.js';
14
14
  //# sourceMappingURL=Checkbox.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["Checkbox.js"],"names":[],"mappings":"AAiGA;;GAEG;AACH;IAGI,iBAAoB;IACpB,kBAAqB;IACrB,aAAc;IACd,cAAe;IAEjB,+BAIC;IACD,8BAEC;IACD,+CAgBC;CACF;gCArIqD,0BAA0B"}
1
+ {"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["Checkbox.js"],"names":[],"mappings":"AAgGA;;GAEG;AACH;IAGI,iBAAoB;IACpB,kBAAqB;IACrB,aAAc;IACd,cAAe;IAEjB,+BAIC;IACD,8BAEC;IACD,+CAgBC;CACF;gCApIqD,0BAA0B"}
package/dist/Checkbox.js CHANGED
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty, L as LeuElement } from './LeuElement-874a297c.js';
1
+ import { _ as _defineProperty, L as LeuElement } from './LeuElement-BjGpKQpe.js';
2
2
  import { css, html } from 'lit';
3
3
  import { LeuIcon } from './Icon.js';
4
4
 
@@ -20,8 +20,6 @@ var css_248z = css`:host {
20
20
  align-items: flex-start;
21
21
  gap: 0.5rem;
22
22
 
23
- font-family: var(--leu-font-family-regular);
24
-
25
23
  font-family: var(--checkbox-font-regular);
26
24
  }
27
25
 
@@ -88,6 +86,7 @@ var css_248z = css`:host {
88
86
 
89
87
  .icon {
90
88
  position: absolute;
89
+ display: block;
91
90
  top: 0;
92
91
  left: 0;
93
92
  color: var(--checkbox-tick-color);
@@ -10,5 +10,5 @@ export class LeuCheckboxGroup extends LeuElement {
10
10
  handleItems(): void;
11
11
  render(): import("lit-html").TemplateResult<1>;
12
12
  }
13
- import { L as LeuElement } from './LeuElement-874a297c.js';
13
+ import { L as LeuElement } from './LeuElement-BjGpKQpe.js';
14
14
  //# sourceMappingURL=CheckboxGroup.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"CheckboxGroup.d.ts","sourceRoot":"","sources":["CheckboxGroup.js"],"names":[],"mappings":"AAqCA;;GAEG;AACH;IAGI,wCAAwC;IACxC,aADW,YAAY,GAAG,UAAU,CACL;IAC/B,aAAe;IAEjB,mBAEC;IACD,yBAEC;IACD,oBAEC;IACD,+CAWC;CACF;gCApEqD,0BAA0B"}
1
+ {"version":3,"file":"CheckboxGroup.d.ts","sourceRoot":"","sources":["CheckboxGroup.js"],"names":[],"mappings":"AAmCA;;GAEG;AACH;IAGI,wCAAwC;IACxC,aADW,YAAY,GAAG,UAAU,CACL;IAC/B,aAAe;IAEjB,mBAEC;IACD,yBAEC;IACD,oBAEC;IACD,+CAWC;CACF;gCAlEqD,0BAA0B"}
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty, L as LeuElement } from './LeuElement-874a297c.js';
1
+ import { _ as _defineProperty, L as LeuElement } from './LeuElement-BjGpKQpe.js';
2
2
  import { css, html } from 'lit';
3
3
  import { classMap } from 'lit/directives/class-map.js';
4
4
 
@@ -6,8 +6,6 @@ var css_248z = css`:host {
6
6
  --group-font-regular: var(--leu-font-family-regular);
7
7
  --group-font-black: var(--leu-font-family-black);
8
8
 
9
- font-family: var(--leu-font-family-regular);
10
-
11
9
  font-family: var(--group-font-regular);
12
10
  }
13
11
 
package/dist/Chip.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export class LeuChipBase extends LeuElement {
2
2
  inverted: boolean;
3
3
  }
4
- import { L as LeuElement } from './LeuElement-874a297c.js';
4
+ import { L as LeuElement } from './LeuElement-BjGpKQpe.js';
5
5
  //# sourceMappingURL=Chip.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Chip.d.ts","sourceRoot":"","sources":["Chip.js"],"names":[],"mappings":"AAsJA;IAGI,kBAAqB;CAExB;gCA3JqD,0BAA0B"}
1
+ {"version":3,"file":"Chip.d.ts","sourceRoot":"","sources":["Chip.js"],"names":[],"mappings":"AAqJA;IAGI,kBAAqB;CAExB;gCA1JqD,0BAA0B"}
package/dist/Chip.js CHANGED
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty, L as LeuElement } from './LeuElement-874a297c.js';
1
+ import { _ as _defineProperty, L as LeuElement } from './LeuElement-BjGpKQpe.js';
2
2
  import { css } from 'lit';
3
3
 
4
4
  var css_248z = css`:host *::before,
@@ -31,8 +31,6 @@ var css_248z = css`:host *::before,
31
31
 
32
32
  --leu-icon-size: 1rem;
33
33
 
34
- font-family: var(--leu-font-family-regular);
35
-
36
34
  font-family: var(--chip-font-regular);
37
35
 
38
36
  /* Allow shrinking to achieve text truncation (ellipsis) */
@@ -62,7 +60,7 @@ var css_248z = css`:host *::before,
62
60
  border: none;
63
61
  border-radius: 1rem;
64
62
  background-color: var(--chip-background-color);
65
- padding: 0.5rem 1rem;
63
+ padding: 8px 1rem;
66
64
 
67
65
  color: var(--chip-color);
68
66
  font-family: inherit;
@@ -73,6 +71,7 @@ var css_248z = css`:host *::before,
73
71
 
74
72
  display: inline-flex;
75
73
  gap: 0.5rem;
74
+ align-items: center;
76
75
 
77
76
  /* Allow shrinking to achieve text truncation (ellipsis) */
78
77
  min-width: 0;
@@ -116,10 +115,10 @@ var css_248z = css`:host *::before,
116
115
  }
117
116
 
118
117
  :host([size="small"]:not([variant="radio"])) .button {
119
- padding: 0.5625rem 0.75rem 0.4375rem;
118
+ padding: 0.3125rem 0.75rem;
120
119
 
121
120
  font-size: 0.75rem;
122
- line-height: 1;
121
+ line-height: 1.25rem;
123
122
  }
124
123
 
125
124
  :host([variant="radio"]) .button::before {
@@ -32,5 +32,5 @@ export const SELECTION_MODES: Readonly<{
32
32
  multiple: "multiple";
33
33
  none: "none";
34
34
  }>;
35
- import { L as LeuElement } from './LeuElement-874a297c.js';
35
+ import { L as LeuElement } from './LeuElement-BjGpKQpe.js';
36
36
  //# sourceMappingURL=ChipGroup.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ChipGroup.d.ts","sourceRoot":"","sources":["ChipGroup.js"],"names":[],"mappings":"AA8BA;;;;GAIG;AACH;IAiBM,aAAkB;IAEpB,kBAAqB;IACrB,qBAAqB;IACrB,cAAe;IAKf,6CAA6C;IAC7C,eADW,QAAQ,GAAG,UAAU,GAAG,MAAM,CACA;IA0B3C;;;;OAIG;IACH,+BAQC;IAjBD,sBAEC;IAiBD;;;;;;OAMG;IACH,yBAMC;IACD,4CAeC;CACF;AA7GD;;;;GAIG;gCA5BmD,0BAA0B"}
1
+ {"version":3,"file":"ChipGroup.d.ts","sourceRoot":"","sources":["ChipGroup.js"],"names":[],"mappings":"AA8BA;;;;GAIG;AACH;IAiBM,aAAkB;IAEpB,kBAAqB;IACrB,qBAAqB;IACrB,cAAe;IAKf,6CAA6C;IAC7C,eADW,QAAQ,GAAG,UAAU,GAAG,MAAM,CACA;IA0B3C;;;;OAIG;IACH,qBAFW,MAAM,EAAE,EAUlB;IAjBD,aAOW,MAAM,EAAE,CALlB;IAiBD;;;;;;OAMG;IACH,yBAMC;IACD,4CAeC;CACF;AA7GD;;;;GAIG;gCA5BmD,0BAA0B"}
package/dist/ChipGroup.js CHANGED
@@ -1,5 +1,5 @@
1
- import { _ as _defineProperty, L as LeuElement } from './LeuElement-874a297c.js';
2
- import { html, unsafeStatic } from 'lit/static-html.js';
1
+ import { _ as _defineProperty, L as LeuElement } from './LeuElement-BjGpKQpe.js';
2
+ import { unsafeStatic, html } from 'lit/static-html.js';
3
3
  import { css } from 'lit';
4
4
 
5
5
  var css_248z = css`.label {
package/dist/ChipLink.js CHANGED
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty } from './LeuElement-874a297c.js';
1
+ import { _ as _defineProperty } from './LeuElement-BjGpKQpe.js';
2
2
  import { html } from 'lit';
3
3
  import { LeuChipBase } from './Chip.js';
4
4
 
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty } from './LeuElement-874a297c.js';
1
+ import { _ as _defineProperty } from './LeuElement-BjGpKQpe.js';
2
2
  import { html } from 'lit';
3
3
  import { LeuChipBase } from './Chip.js';
4
4
  import { LeuIcon } from './Icon.js';
@@ -1,4 +1,4 @@
1
- import { _ as _defineProperty } from './LeuElement-874a297c.js';
1
+ import { _ as _defineProperty } from './LeuElement-BjGpKQpe.js';
2
2
  import { html } from 'lit';
3
3
  import { LeuChipBase } from './Chip.js';
4
4
 
package/dist/Dialog.d.ts CHANGED
@@ -13,5 +13,5 @@ export class LeuDialog extends LeuElement {
13
13
  close(): void;
14
14
  render(): import("lit-html").TemplateResult<1>;
15
15
  }
16
- import { L as LeuElement } from './LeuElement-874a297c.js';
16
+ import { L as LeuElement } from './LeuElement-BjGpKQpe.js';
17
17
  //# sourceMappingURL=Dialog.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["Dialog.js"],"names":[],"mappings":"AAuKA;;GAEG;AACH;IASI,8DAA6B;IAE7B,qBAAqB;IACrB,OADW,MAAM,CACF;IACf,qBAAqB;IACrB,UADW,MAAM,CACC;IAClB,sBAAsB;IACtB,MADW,OAAO,CACD;IAEnB,aAEC;IACD,cAEC;IACD,+CAiCC;CACF;gCApOqD,0BAA0B"}
1
+ {"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["Dialog.js"],"names":[],"mappings":"AAqKA;;GAEG;AACH;IASI,8DAA6B;IAE7B,qBAAqB;IACrB,OADW,MAAM,CACF;IACf,qBAAqB;IACrB,UADW,MAAM,CACC;IAClB,sBAAsB;IACtB,MADW,OAAO,CACD;IAEnB,aAEC;IACD,cAEC;IACD,+CAiCC;CACF;gCAlOqD,0BAA0B"}