@limetech/lime-elements 39.8.1 → 39.9.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 (61) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/collection/components/action-bar/action-bar-item/action-bar-item.css +7 -5
  3. package/dist/collection/components/action-bar/action-bar.css +7 -5
  4. package/dist/collection/components/badge/badge.css +7 -5
  5. package/dist/collection/components/breadcrumbs/breadcrumbs.css +7 -5
  6. package/dist/collection/components/button/button.css +7 -5
  7. package/dist/collection/components/button-group/button-group.css +7 -5
  8. package/dist/collection/components/card/card.css +7 -5
  9. package/dist/collection/components/chart/chart.css +7 -5
  10. package/dist/collection/components/checkbox/checkbox.css +7 -5
  11. package/dist/collection/components/chip/chip.css +7 -5
  12. package/dist/collection/components/chip-set/chip-set.css +7 -5
  13. package/dist/collection/components/circular-progress/circular-progress.css +7 -5
  14. package/dist/collection/components/code-diff/code-diff.css +7 -5
  15. package/dist/collection/components/code-editor/code-editor.css +7 -5
  16. package/dist/collection/components/collapsible-section/collapsible-section.css +7 -5
  17. package/dist/collection/components/color-picker/color-picker-palette.css +7 -5
  18. package/dist/collection/components/color-picker/color-picker.css +7 -5
  19. package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.css +7 -5
  20. package/dist/collection/components/dialog/dialog.css +7 -5
  21. package/dist/collection/components/dock/dock-button/dock-button.css +7 -5
  22. package/dist/collection/components/dock/dock.css +7 -5
  23. package/dist/collection/components/drag-handle/drag-handle.css +7 -5
  24. package/dist/collection/components/email-viewer/email-viewer.css +7 -5
  25. package/dist/collection/components/file/file.css +7 -5
  26. package/dist/collection/components/file-viewer/file-viewer.css +7 -5
  27. package/dist/collection/components/form/form.css +7 -5
  28. package/dist/collection/components/header/header.css +7 -5
  29. package/dist/collection/components/help/help.css +7 -5
  30. package/dist/collection/components/help/limel-help-content.css +7 -5
  31. package/dist/collection/components/icon-button/icon-button.css +7 -5
  32. package/dist/collection/components/info-tile/info-tile.css +7 -5
  33. package/dist/collection/components/input-field/input-field.css +7 -5
  34. package/dist/collection/components/list/list.css +7 -5
  35. package/dist/collection/components/list-item/list-item.css +7 -5
  36. package/dist/collection/components/list-item/menu-item-meta/menu-item-meta.css +7 -5
  37. package/dist/collection/components/markdown/markdown.css +7 -5
  38. package/dist/collection/components/menu-list/menu-list.css +7 -5
  39. package/dist/collection/components/notched-outline/notched-outline.css +7 -5
  40. package/dist/collection/components/popover-surface/popover-surface.css +7 -5
  41. package/dist/collection/components/profile-picture/profile-picture.css +7 -5
  42. package/dist/collection/components/progress-flow/progress-flow-item/progress-flow-item.css +7 -5
  43. package/dist/collection/components/radio-button-group/radio-button.css +7 -5
  44. package/dist/collection/components/select/select.css +7 -5
  45. package/dist/collection/components/shortcut/shortcut.css +7 -5
  46. package/dist/collection/components/slider/slider.css +7 -5
  47. package/dist/collection/components/split-button/split-button.css +7 -5
  48. package/dist/collection/components/switch/switch.css +7 -5
  49. package/dist/collection/components/tab-bar/tab-bar.css +7 -5
  50. package/dist/collection/components/table/table.css +7 -5
  51. package/dist/collection/components/text-editor/prosemirror-adapter/prosemirror-adapter.css +7 -5
  52. package/dist/collection/components/text-editor/text-editor.css +7 -5
  53. package/dist/collection/scss/mixins.scss +7 -5
  54. package/dist/collection/style/exports.scss +12 -0
  55. package/dist/collection/style/mixins.scss +7 -5
  56. package/dist/lime-elements/scss/mixins.scss +7 -5
  57. package/dist/lime-elements/style/exports.scss +12 -0
  58. package/dist/lime-elements/style/mixins.scss +7 -5
  59. package/dist/scss/mixins.scss +724 -0
  60. package/index.scss +9 -0
  61. package/package.json +3 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [39.9.0](https://github.com/Lundalogik/lime-elements/compare/v39.8.1...v39.9.0) (2026-03-19)
2
+
3
+ ### Features
4
+
5
+
6
+ * **style:** enable importing shared SCSS mixins and utilities ([76c26e0](https://github.com/Lundalogik/lime-elements/commit/76c26e0c24bd073b776251dbc74da8f74df1b37c))
7
+
1
8
  ## [39.8.1](https://github.com/Lundalogik/lime-elements/compare/v39.8.0...v39.8.1) (2026-03-19)
2
9
 
3
10
  ### Bug Fixes
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -9,12 +9,14 @@
9
9
 
10
10
  */
11
11
  /**
12
- * Note! This file is exported to `dist/scss/` in the published
13
- * node module, for consumer projects to import.
14
- * That means this file cannot import from any file that isn't
15
- * also exported, keeping the same relative path.
12
+ * Note! This file is forwarded via `src/style/exports.scss`
13
+ * and exposed to consumers through the root `index.scss`.
16
14
  *
17
- * Or, just don't import anything, that works too.
15
+ * Consumers import it using:
16
+ * `@use '@limetech/lime-elements' as lime-elements;`
17
+ *
18
+ * Legacy import paths (`dist/scss/mixins`) are maintained
19
+ * for backward compatibility via copy rules in the Stencil config.
18
20
  */
19
21
  /**
20
22
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -6,12 +6,14 @@
6
6
  * without being explicitly called by outside code.
7
7
  */
8
8
  /**
9
- * Note! This file is exported to `dist/scss/` in the published
10
- * node module, for consumer projects to import.
11
- * That means this file cannot import from any file that isn't
12
- * also exported, keeping the same relative path.
9
+ * Note! This file is forwarded via `src/style/exports.scss`
10
+ * and exposed to consumers through the root `index.scss`.
13
11
  *
14
- * Or, just don't import anything, that works too.
12
+ * Consumers import it using:
13
+ * `@use '@limetech/lime-elements' as lime-elements;`
14
+ *
15
+ * Legacy import paths (`dist/scss/mixins`) are maintained
16
+ * for backward compatibility via copy rules in the Stencil config.
15
17
  */
16
18
  /**
17
19
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -40,12 +40,14 @@
40
40
  * without being explicitly called by outside code.
41
41
  */
42
42
  /**
43
- * Note! This file is exported to `dist/scss/` in the published
44
- * node module, for consumer projects to import.
45
- * That means this file cannot import from any file that isn't
46
- * also exported, keeping the same relative path.
43
+ * Note! This file is forwarded via `src/style/exports.scss`
44
+ * and exposed to consumers through the root `index.scss`.
47
45
  *
48
- * Or, just don't import anything, that works too.
46
+ * Consumers import it using:
47
+ * `@use '@limetech/lime-elements' as lime-elements;`
48
+ *
49
+ * Legacy import paths (`dist/scss/mixins`) are maintained
50
+ * for backward compatibility via copy rules in the Stencil config.
49
51
  */
50
52
  /**
51
53
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -6,12 +6,14 @@
6
6
  * without being explicitly called by outside code.
7
7
  */
8
8
  /**
9
- * Note! This file is exported to `dist/scss/` in the published
10
- * node module, for consumer projects to import.
11
- * That means this file cannot import from any file that isn't
12
- * also exported, keeping the same relative path.
9
+ * Note! This file is forwarded via `src/style/exports.scss`
10
+ * and exposed to consumers through the root `index.scss`.
13
11
  *
14
- * Or, just don't import anything, that works too.
12
+ * Consumers import it using:
13
+ * `@use '@limetech/lime-elements' as lime-elements;`
14
+ *
15
+ * Legacy import paths (`dist/scss/mixins`) are maintained
16
+ * for backward compatibility via copy rules in the Stencil config.
15
17
  */
16
18
  /**
17
19
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -7,12 +7,14 @@
7
7
  * @prop --card-background-color--hovered: background color of the card, when hovered.
8
8
  */
9
9
  /**
10
- * Note! This file is exported to `dist/scss/` in the published
11
- * node module, for consumer projects to import.
12
- * That means this file cannot import from any file that isn't
13
- * also exported, keeping the same relative path.
10
+ * Note! This file is forwarded via `src/style/exports.scss`
11
+ * and exposed to consumers through the root `index.scss`.
14
12
  *
15
- * Or, just don't import anything, that works too.
13
+ * Consumers import it using:
14
+ * `@use '@limetech/lime-elements' as lime-elements;`
15
+ *
16
+ * Legacy import paths (`dist/scss/mixins`) are maintained
17
+ * for backward compatibility via copy rules in the Stencil config.
16
18
  */
17
19
  /**
18
20
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -24,12 +24,14 @@
24
24
  * :::
25
25
  */
26
26
  /**
27
- * Note! This file is exported to `dist/scss/` in the published
28
- * node module, for consumer projects to import.
29
- * That means this file cannot import from any file that isn't
30
- * also exported, keeping the same relative path.
27
+ * Note! This file is forwarded via `src/style/exports.scss`
28
+ * and exposed to consumers through the root `index.scss`.
31
29
  *
32
- * Or, just don't import anything, that works too.
30
+ * Consumers import it using:
31
+ * `@use '@limetech/lime-elements' as lime-elements;`
32
+ *
33
+ * Legacy import paths (`dist/scss/mixins`) are maintained
34
+ * for backward compatibility via copy rules in the Stencil config.
33
35
  */
34
36
  /**
35
37
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -68,12 +68,14 @@ div[role=progressbar]:after {
68
68
  }
69
69
  }
70
70
  /**
71
- * Note! This file is exported to `dist/scss/` in the published
72
- * node module, for consumer projects to import.
73
- * That means this file cannot import from any file that isn't
74
- * also exported, keeping the same relative path.
71
+ * Note! This file is forwarded via `src/style/exports.scss`
72
+ * and exposed to consumers through the root `index.scss`.
75
73
  *
76
- * Or, just don't import anything, that works too.
74
+ * Consumers import it using:
75
+ * `@use '@limetech/lime-elements' as lime-elements;`
76
+ *
77
+ * Legacy import paths (`dist/scss/mixins`) are maintained
78
+ * for backward compatibility via copy rules in the Stencil config.
77
79
  */
78
80
  /**
79
81
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -4,12 +4,14 @@
4
4
  }
5
5
 
6
6
  /**
7
- * Note! This file is exported to `dist/scss/` in the published
8
- * node module, for consumer projects to import.
9
- * That means this file cannot import from any file that isn't
10
- * also exported, keeping the same relative path.
7
+ * Note! This file is forwarded via `src/style/exports.scss`
8
+ * and exposed to consumers through the root `index.scss`.
11
9
  *
12
- * Or, just don't import anything, that works too.
10
+ * Consumers import it using:
11
+ * `@use '@limetech/lime-elements' as lime-elements;`
12
+ *
13
+ * Legacy import paths (`dist/scss/mixins`) are maintained
14
+ * for backward compatibility via copy rules in the Stencil config.
13
15
  */
14
16
  /**
15
17
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -616,12 +616,14 @@
616
616
  * without being explicitly called by outside code.
617
617
  */
618
618
  /**
619
- * Note! This file is exported to `dist/scss/` in the published
620
- * node module, for consumer projects to import.
621
- * That means this file cannot import from any file that isn't
622
- * also exported, keeping the same relative path.
619
+ * Note! This file is forwarded via `src/style/exports.scss`
620
+ * and exposed to consumers through the root `index.scss`.
623
621
  *
624
- * Or, just don't import anything, that works too.
622
+ * Consumers import it using:
623
+ * `@use '@limetech/lime-elements' as lime-elements;`
624
+ *
625
+ * Legacy import paths (`dist/scss/mixins`) are maintained
626
+ * for backward compatibility via copy rules in the Stencil config.
625
627
  */
626
628
  /**
627
629
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -125,12 +125,14 @@ section.open .open-close-toggle:focus-visible + .expand-icon .line:nth-of-type(3
125
125
  }
126
126
 
127
127
  /**
128
- * Note! This file is exported to `dist/scss/` in the published
129
- * node module, for consumer projects to import.
130
- * That means this file cannot import from any file that isn't
131
- * also exported, keeping the same relative path.
128
+ * Note! This file is forwarded via `src/style/exports.scss`
129
+ * and exposed to consumers through the root `index.scss`.
132
130
  *
133
- * Or, just don't import anything, that works too.
131
+ * Consumers import it using:
132
+ * `@use '@limetech/lime-elements' as lime-elements;`
133
+ *
134
+ * Legacy import paths (`dist/scss/mixins`) are maintained
135
+ * for backward compatibility via copy rules in the Stencil config.
134
136
  */
135
137
  /**
136
138
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -6,12 +6,14 @@
6
6
  * without being explicitly called by outside code.
7
7
  */
8
8
  /**
9
- * Note! This file is exported to `dist/scss/` in the published
10
- * node module, for consumer projects to import.
11
- * That means this file cannot import from any file that isn't
12
- * also exported, keeping the same relative path.
9
+ * Note! This file is forwarded via `src/style/exports.scss`
10
+ * and exposed to consumers through the root `index.scss`.
13
11
  *
14
- * Or, just don't import anything, that works too.
12
+ * Consumers import it using:
13
+ * `@use '@limetech/lime-elements' as lime-elements;`
14
+ *
15
+ * Legacy import paths (`dist/scss/mixins`) are maintained
16
+ * for backward compatibility via copy rules in the Stencil config.
15
17
  */
16
18
  /**
17
19
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -6,12 +6,14 @@
6
6
  * without being explicitly called by outside code.
7
7
  */
8
8
  /**
9
- * Note! This file is exported to `dist/scss/` in the published
10
- * node module, for consumer projects to import.
11
- * That means this file cannot import from any file that isn't
12
- * also exported, keeping the same relative path.
9
+ * Note! This file is forwarded via `src/style/exports.scss`
10
+ * and exposed to consumers through the root `index.scss`.
13
11
  *
14
- * Or, just don't import anything, that works too.
12
+ * Consumers import it using:
13
+ * `@use '@limetech/lime-elements' as lime-elements;`
14
+ *
15
+ * Legacy import paths (`dist/scss/mixins`) are maintained
16
+ * for backward compatibility via copy rules in the Stencil config.
15
17
  */
16
18
  /**
17
19
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -6,12 +6,14 @@
6
6
  * without being explicitly called by outside code.
7
7
  */
8
8
  /**
9
- * Note! This file is exported to `dist/scss/` in the published
10
- * node module, for consumer projects to import.
11
- * That means this file cannot import from any file that isn't
12
- * also exported, keeping the same relative path.
9
+ * Note! This file is forwarded via `src/style/exports.scss`
10
+ * and exposed to consumers through the root `index.scss`.
13
11
  *
14
- * Or, just don't import anything, that works too.
12
+ * Consumers import it using:
13
+ * `@use '@limetech/lime-elements' as lime-elements;`
14
+ *
15
+ * Legacy import paths (`dist/scss/mixins`) are maintained
16
+ * for backward compatibility via copy rules in the Stencil config.
15
17
  */
16
18
  /**
17
19
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -6,12 +6,14 @@
6
6
  * without being explicitly called by outside code.
7
7
  */
8
8
  /**
9
- * Note! This file is exported to `dist/scss/` in the published
10
- * node module, for consumer projects to import.
11
- * That means this file cannot import from any file that isn't
12
- * also exported, keeping the same relative path.
9
+ * Note! This file is forwarded via `src/style/exports.scss`
10
+ * and exposed to consumers through the root `index.scss`.
13
11
  *
14
- * Or, just don't import anything, that works too.
12
+ * Consumers import it using:
13
+ * `@use '@limetech/lime-elements' as lime-elements;`
14
+ *
15
+ * Legacy import paths (`dist/scss/mixins`) are maintained
16
+ * for backward compatibility via copy rules in the Stencil config.
15
17
  */
16
18
  /**
17
19
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.
@@ -1,11 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Note! This file is exported to `dist/scss/` in the published
4
- * node module, for consumer projects to import.
5
- * That means this file cannot import from any file that isn't
6
- * also exported, keeping the same relative path.
3
+ * Note! This file is forwarded via `src/style/exports.scss`
4
+ * and exposed to consumers through the root `index.scss`.
7
5
  *
8
- * Or, just don't import anything, that works too.
6
+ * Consumers import it using:
7
+ * `@use '@limetech/lime-elements' as lime-elements;`
8
+ *
9
+ * Legacy import paths (`dist/scss/mixins`) are maintained
10
+ * for backward compatibility via copy rules in the Stencil config.
9
11
  */
10
12
  /**
11
13
  * This can be used on a trigger element that opens a dropdown menu or a popover.