@limetech/lime-elements 36.4.0-next.2 → 36.4.0-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/limel-list_2.cjs.entry.js +1 -1
- package/dist/cjs/limel-menu-list.cjs.entry.js +1 -1
- package/dist/collection/components/list/list.css +2 -1
- package/dist/collection/components/menu-list/menu-list.css +2 -1
- package/dist/esm/limel-list_2.entry.js +1 -1
- package/dist/esm/limel-menu-list.entry.js +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-20059fcf.entry.js → p-3c10149f.entry.js} +1 -1
- package/dist/lime-elements/{p-d034bbcf.entry.js → p-f1d963ec.entry.js} +1 -1
- package/package.json +7 -7
|
@@ -865,6 +865,7 @@ limel-helper-line {
|
|
|
865
865
|
* @prop --list-grid-gap: Distance between items in a list that has `has-grid-layout` class. Defaults to `0.75rem`.
|
|
866
866
|
* @prop --list-background-color-of-odd-interactive-items: Background color of odd list items, when `has-striped-rows` class is applied to the component. Defaults to `--contrast-200`.
|
|
867
867
|
* @prop --list-background-color-of-even-interactive-items: Background color of even list items, when `has-striped-rows` class is applied to the component. Defaults to `transparent`.
|
|
868
|
+
* @prop --list-margin: Space around the list. Default to `0.25rem`;
|
|
868
869
|
*/
|
|
869
870
|
:host(limel-list) {
|
|
870
871
|
display: block;
|
|
@@ -4275,7 +4276,7 @@ a.mdc-list-item {
|
|
|
4275
4276
|
--icon-color,
|
|
4276
4277
|
rgb(var(--contrast-900))
|
|
4277
4278
|
);
|
|
4278
|
-
margin: 0.25rem;
|
|
4279
|
+
margin: --list-margin, 0.25rem;
|
|
4279
4280
|
padding: 0;
|
|
4280
4281
|
border-radius: 0.375rem;
|
|
4281
4282
|
}
|
|
@@ -937,6 +937,7 @@ limel-helper-line {
|
|
|
937
937
|
* @prop --list-grid-gap: Distance between items in a list that has `has-grid-layout` class. Defaults to `0.75rem`.
|
|
938
938
|
* @prop --list-background-color-of-odd-interactive-items: Background color of odd list items, when `has-striped-rows` class is applied to the component. Defaults to `--contrast-200`.
|
|
939
939
|
* @prop --list-background-color-of-even-interactive-items: Background color of even list items, when `has-striped-rows` class is applied to the component. Defaults to `transparent`.
|
|
940
|
+
* @prop --list-margin: Space around the list. Default to `0.25rem`;
|
|
940
941
|
*/
|
|
941
942
|
:host(limel-list) {
|
|
942
943
|
display: block;
|
|
@@ -4347,7 +4348,7 @@ a.mdc-list-item {
|
|
|
4347
4348
|
--icon-color,
|
|
4348
4349
|
rgb(var(--contrast-900))
|
|
4349
4350
|
);
|
|
4350
|
-
margin: 0.25rem;
|
|
4351
|
+
margin: --list-margin, 0.25rem;
|
|
4351
4352
|
padding: 0;
|
|
4352
4353
|
border-radius: 0.375rem;
|
|
4353
4354
|
}
|