@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.
- package/CHANGELOG.md +7 -0
- package/dist/collection/components/action-bar/action-bar-item/action-bar-item.css +7 -5
- package/dist/collection/components/action-bar/action-bar.css +7 -5
- package/dist/collection/components/badge/badge.css +7 -5
- package/dist/collection/components/breadcrumbs/breadcrumbs.css +7 -5
- package/dist/collection/components/button/button.css +7 -5
- package/dist/collection/components/button-group/button-group.css +7 -5
- package/dist/collection/components/card/card.css +7 -5
- package/dist/collection/components/chart/chart.css +7 -5
- package/dist/collection/components/checkbox/checkbox.css +7 -5
- package/dist/collection/components/chip/chip.css +7 -5
- package/dist/collection/components/chip-set/chip-set.css +7 -5
- package/dist/collection/components/circular-progress/circular-progress.css +7 -5
- package/dist/collection/components/code-diff/code-diff.css +7 -5
- package/dist/collection/components/code-editor/code-editor.css +7 -5
- package/dist/collection/components/collapsible-section/collapsible-section.css +7 -5
- package/dist/collection/components/color-picker/color-picker-palette.css +7 -5
- package/dist/collection/components/color-picker/color-picker.css +7 -5
- package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.css +7 -5
- package/dist/collection/components/dialog/dialog.css +7 -5
- package/dist/collection/components/dock/dock-button/dock-button.css +7 -5
- package/dist/collection/components/dock/dock.css +7 -5
- package/dist/collection/components/drag-handle/drag-handle.css +7 -5
- package/dist/collection/components/email-viewer/email-viewer.css +7 -5
- package/dist/collection/components/file/file.css +7 -5
- package/dist/collection/components/file-viewer/file-viewer.css +7 -5
- package/dist/collection/components/form/form.css +7 -5
- package/dist/collection/components/header/header.css +7 -5
- package/dist/collection/components/help/help.css +7 -5
- package/dist/collection/components/help/limel-help-content.css +7 -5
- package/dist/collection/components/icon-button/icon-button.css +7 -5
- package/dist/collection/components/info-tile/info-tile.css +7 -5
- package/dist/collection/components/input-field/input-field.css +7 -5
- package/dist/collection/components/list/list.css +7 -5
- package/dist/collection/components/list-item/list-item.css +7 -5
- package/dist/collection/components/list-item/menu-item-meta/menu-item-meta.css +7 -5
- package/dist/collection/components/markdown/markdown.css +7 -5
- package/dist/collection/components/menu-list/menu-list.css +7 -5
- package/dist/collection/components/notched-outline/notched-outline.css +7 -5
- package/dist/collection/components/popover-surface/popover-surface.css +7 -5
- package/dist/collection/components/profile-picture/profile-picture.css +7 -5
- package/dist/collection/components/progress-flow/progress-flow-item/progress-flow-item.css +7 -5
- package/dist/collection/components/radio-button-group/radio-button.css +7 -5
- package/dist/collection/components/select/select.css +7 -5
- package/dist/collection/components/shortcut/shortcut.css +7 -5
- package/dist/collection/components/slider/slider.css +7 -5
- package/dist/collection/components/split-button/split-button.css +7 -5
- package/dist/collection/components/switch/switch.css +7 -5
- package/dist/collection/components/tab-bar/tab-bar.css +7 -5
- package/dist/collection/components/table/table.css +7 -5
- package/dist/collection/components/text-editor/prosemirror-adapter/prosemirror-adapter.css +7 -5
- package/dist/collection/components/text-editor/text-editor.css +7 -5
- package/dist/collection/scss/mixins.scss +7 -5
- package/dist/collection/style/exports.scss +12 -0
- package/dist/collection/style/mixins.scss +7 -5
- package/dist/lime-elements/scss/mixins.scss +7 -5
- package/dist/lime-elements/style/exports.scss +12 -0
- package/dist/lime-elements/style/mixins.scss +7 -5
- package/dist/scss/mixins.scss +724 -0
- package/index.scss +9 -0
- package/package.json +3 -1
|
@@ -13,12 +13,14 @@
|
|
|
13
13
|
* @prop --info-tile-progress-prefix-color: Determines the color of the progress suffix. Defaults to `--contrast-1000`.
|
|
14
14
|
*/
|
|
15
15
|
/**
|
|
16
|
-
* Note! This file is
|
|
17
|
-
*
|
|
18
|
-
* That means this file cannot import from any file that isn't
|
|
19
|
-
* also exported, keeping the same relative path.
|
|
16
|
+
* Note! This file is forwarded via `src/style/exports.scss`
|
|
17
|
+
* and exposed to consumers through the root `index.scss`.
|
|
20
18
|
*
|
|
21
|
-
*
|
|
19
|
+
* Consumers import it using:
|
|
20
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
21
|
+
*
|
|
22
|
+
* Legacy import paths (`dist/scss/mixins`) are maintained
|
|
23
|
+
* for backward compatibility via copy rules in the Stencil config.
|
|
22
24
|
*/
|
|
23
25
|
/**
|
|
24
26
|
* 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
|
|
4
|
-
*
|
|
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
|
-
*
|
|
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
|
|
4
|
-
*
|
|
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
|
-
*
|
|
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
|
* @prop --list-item-image-border-radius: Defines the border radius of the list item image. Defaults to `50%`.
|
|
7
7
|
*/
|
|
8
8
|
/**
|
|
9
|
-
* Note! This file is
|
|
10
|
-
*
|
|
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
|
-
*
|
|
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.
|
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
* @prop --notification-badge-background-color: (Publicly documented in `limel-menu` too) Defines the background color of notification badges. Defaults to `--color-red-default`.
|
|
5
5
|
*/
|
|
6
6
|
/**
|
|
7
|
-
* Note! This file is
|
|
8
|
-
*
|
|
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
|
-
*
|
|
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.
|
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
* @prop --markdown-hyperlink-color--hovered: color of text for hyperlinks when hovered. Defaults to `--color-blue-default`;
|
|
5
5
|
*/
|
|
6
6
|
/**
|
|
7
|
-
* Note! This file is
|
|
8
|
-
*
|
|
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
|
-
*
|
|
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.
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Note! This file is
|
|
4
|
-
*
|
|
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
|
-
*
|
|
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
|
|
4
|
-
*
|
|
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
|
-
*
|
|
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
|
|
10
|
-
*
|
|
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
|
-
*
|
|
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
|
|
4
|
-
*
|
|
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
|
-
*
|
|
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.
|
|
@@ -71,12 +71,14 @@
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
/**
|
|
74
|
-
* Note! This file is
|
|
75
|
-
*
|
|
76
|
-
* That means this file cannot import from any file that isn't
|
|
77
|
-
* also exported, keeping the same relative path.
|
|
74
|
+
* Note! This file is forwarded via `src/style/exports.scss`
|
|
75
|
+
* and exposed to consumers through the root `index.scss`.
|
|
78
76
|
*
|
|
79
|
-
*
|
|
77
|
+
* Consumers import it using:
|
|
78
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
79
|
+
*
|
|
80
|
+
* Legacy import paths (`dist/scss/mixins`) are maintained
|
|
81
|
+
* for backward compatibility via copy rules in the Stencil config.
|
|
80
82
|
*/
|
|
81
83
|
/**
|
|
82
84
|
* 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
|
|
28
|
-
*
|
|
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
|
-
*
|
|
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.
|
|
@@ -20,12 +20,14 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
|
-
* Note! This file is
|
|
24
|
-
*
|
|
25
|
-
* That means this file cannot import from any file that isn't
|
|
26
|
-
* also exported, keeping the same relative path.
|
|
23
|
+
* Note! This file is forwarded via `src/style/exports.scss`
|
|
24
|
+
* and exposed to consumers through the root `index.scss`.
|
|
27
25
|
*
|
|
28
|
-
*
|
|
26
|
+
* Consumers import it using:
|
|
27
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
28
|
+
*
|
|
29
|
+
* Legacy import paths (`dist/scss/mixins`) are maintained
|
|
30
|
+
* for backward compatibility via copy rules in the Stencil config.
|
|
29
31
|
*/
|
|
30
32
|
/**
|
|
31
33
|
* This can be used on a trigger element that opens a dropdown menu or a popover.
|
|
@@ -8,12 +8,14 @@
|
|
|
8
8
|
* @prop --shortcut-badge-background-color: Background color of the notification badge. Defaults to `--color-red-default`
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
|
-
* Note! This file is
|
|
12
|
-
*
|
|
13
|
-
* That means this file cannot import from any file that isn't
|
|
14
|
-
* also exported, keeping the same relative path.
|
|
11
|
+
* Note! This file is forwarded via `src/style/exports.scss`
|
|
12
|
+
* and exposed to consumers through the root `index.scss`.
|
|
15
13
|
*
|
|
16
|
-
*
|
|
14
|
+
* Consumers import it using:
|
|
15
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
16
|
+
*
|
|
17
|
+
* Legacy import paths (`dist/scss/mixins`) are maintained
|
|
18
|
+
* for backward compatibility via copy rules in the Stencil config.
|
|
17
19
|
*/
|
|
18
20
|
/**
|
|
19
21
|
* This can be used on a trigger element that opens a dropdown menu or a popover.
|
|
@@ -174,12 +174,14 @@
|
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
/**
|
|
177
|
-
* Note! This file is
|
|
178
|
-
*
|
|
179
|
-
* That means this file cannot import from any file that isn't
|
|
180
|
-
* also exported, keeping the same relative path.
|
|
177
|
+
* Note! This file is forwarded via `src/style/exports.scss`
|
|
178
|
+
* and exposed to consumers through the root `index.scss`.
|
|
181
179
|
*
|
|
182
|
-
*
|
|
180
|
+
* Consumers import it using:
|
|
181
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
182
|
+
*
|
|
183
|
+
* Legacy import paths (`dist/scss/mixins`) are maintained
|
|
184
|
+
* for backward compatibility via copy rules in the Stencil config.
|
|
183
185
|
*/
|
|
184
186
|
/**
|
|
185
187
|
* 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
|
|
4
|
-
*
|
|
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
|
-
*
|
|
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
|
|
4
|
-
*
|
|
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
|
-
*
|
|
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
|
|
4
|
-
*
|
|
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
|
-
*
|
|
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
|
|
4
|
-
*
|
|
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
|
-
*
|
|
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.
|
|
@@ -230,12 +230,14 @@ li {
|
|
|
230
230
|
}
|
|
231
231
|
|
|
232
232
|
/**
|
|
233
|
-
* Note! This file is
|
|
234
|
-
*
|
|
235
|
-
* That means this file cannot import from any file that isn't
|
|
236
|
-
* also exported, keeping the same relative path.
|
|
233
|
+
* Note! This file is forwarded via `src/style/exports.scss`
|
|
234
|
+
* and exposed to consumers through the root `index.scss`.
|
|
237
235
|
*
|
|
238
|
-
*
|
|
236
|
+
* Consumers import it using:
|
|
237
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
238
|
+
*
|
|
239
|
+
* Legacy import paths (`dist/scss/mixins`) are maintained
|
|
240
|
+
* for backward compatibility via copy rules in the Stencil config.
|
|
239
241
|
*/
|
|
240
242
|
/**
|
|
241
243
|
* 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
|
|
10
|
-
*
|
|
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
|
-
*
|
|
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,10 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Note! This file is
|
|
3
|
-
*
|
|
4
|
-
* That means this file cannot import from any file that isn't
|
|
5
|
-
* also exported, keeping the same relative path.
|
|
2
|
+
* Note! This file is forwarded via `src/style/exports.scss`
|
|
3
|
+
* and exposed to consumers through the root `index.scss`.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
5
|
+
* Consumers import it using:
|
|
6
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
7
|
+
*
|
|
8
|
+
* Legacy import paths (`dist/scss/mixins`) are maintained
|
|
9
|
+
* for backward compatibility via copy rules in the Stencil config.
|
|
8
10
|
*/
|
|
9
11
|
|
|
10
12
|
@mixin visualize-keyboard-focus {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Public SCSS exports for consumers of @limetech/lime-elements.
|
|
3
|
+
*
|
|
4
|
+
* This file provides reusable styling utilities.
|
|
5
|
+
*
|
|
6
|
+
* Import this file using:
|
|
7
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
8
|
+
*
|
|
9
|
+
* For detailed documentation of each utility, its parameters,
|
|
10
|
+
* and usage examples, refer to the respective source files.
|
|
11
|
+
*/
|
|
12
|
+
@forward 'mixins';
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Note! This file is
|
|
3
|
-
*
|
|
4
|
-
* That means this file cannot import from any file that isn't
|
|
5
|
-
* also exported, keeping the same relative path.
|
|
2
|
+
* Note! This file is forwarded via `src/style/exports.scss`
|
|
3
|
+
* and exposed to consumers through the root `index.scss`.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
5
|
+
* Consumers import it using:
|
|
6
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
7
|
+
*
|
|
8
|
+
* Legacy import paths (`dist/scss/mixins`) are maintained
|
|
9
|
+
* for backward compatibility via copy rules in the Stencil config.
|
|
8
10
|
*/
|
|
9
11
|
|
|
10
12
|
@mixin visualize-keyboard-focus {
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Note! This file is
|
|
3
|
-
*
|
|
4
|
-
* That means this file cannot import from any file that isn't
|
|
5
|
-
* also exported, keeping the same relative path.
|
|
2
|
+
* Note! This file is forwarded via `src/style/exports.scss`
|
|
3
|
+
* and exposed to consumers through the root `index.scss`.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
5
|
+
* Consumers import it using:
|
|
6
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
7
|
+
*
|
|
8
|
+
* Legacy import paths (`dist/scss/mixins`) are maintained
|
|
9
|
+
* for backward compatibility via copy rules in the Stencil config.
|
|
8
10
|
*/
|
|
9
11
|
|
|
10
12
|
@mixin visualize-keyboard-focus {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Public SCSS exports for consumers of @limetech/lime-elements.
|
|
3
|
+
*
|
|
4
|
+
* This file provides reusable styling utilities.
|
|
5
|
+
*
|
|
6
|
+
* Import this file using:
|
|
7
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
8
|
+
*
|
|
9
|
+
* For detailed documentation of each utility, its parameters,
|
|
10
|
+
* and usage examples, refer to the respective source files.
|
|
11
|
+
*/
|
|
12
|
+
@forward 'mixins';
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Note! This file is
|
|
3
|
-
*
|
|
4
|
-
* That means this file cannot import from any file that isn't
|
|
5
|
-
* also exported, keeping the same relative path.
|
|
2
|
+
* Note! This file is forwarded via `src/style/exports.scss`
|
|
3
|
+
* and exposed to consumers through the root `index.scss`.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
5
|
+
* Consumers import it using:
|
|
6
|
+
* `@use '@limetech/lime-elements' as lime-elements;`
|
|
7
|
+
*
|
|
8
|
+
* Legacy import paths (`dist/scss/mixins`) are maintained
|
|
9
|
+
* for backward compatibility via copy rules in the Stencil config.
|
|
8
10
|
*/
|
|
9
11
|
|
|
10
12
|
@mixin visualize-keyboard-focus {
|