@lucca-front/scss 21.3.0 → 21.3.1-rc.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucca-front/scss",
3
- "version": "21.3.0",
3
+ "version": "21.3.1-rc.2",
4
4
  "description": "A Sass framework for Lucca products.",
5
5
  "main": "src/main.scss",
6
6
  "scripts": {},
@@ -24,7 +24,7 @@
24
24
  "normalize.css": "^8.0.0"
25
25
  },
26
26
  "peerDependencies": {
27
- "@lucca-front/icons": "21.3.0",
28
- "@lucca/prisme": "21.3.0"
27
+ "@lucca-front/icons": "21.3.1-rc.2",
28
+ "@lucca/prisme": "21.3.1-rc.2"
29
29
  }
30
30
  }
@@ -61,10 +61,12 @@
61
61
  }
62
62
  }
63
63
 
64
- [role='listbox'] {
64
+ .lu-picker-content-option {
65
+ flex-direction: row;
65
66
  display: flex;
66
67
  flex-wrap: wrap;
67
68
  padding: var(--pr-t-spacings-100);
69
+ gap: 0;
68
70
  }
69
71
 
70
72
  .color {
@@ -24,6 +24,12 @@
24
24
  @layer mods {
25
25
  &.mod-cellBorder {
26
26
  @include cellBorder;
27
+
28
+ :is(.dataTable-head-row-cell, .dataTable-body-row-cell, .dataTable-foot-row-cell) {
29
+ &.mod-editable {
30
+ @include cellBorderEditable;
31
+ }
32
+ }
27
33
  }
28
34
 
29
35
  &.mod-alignTop,
@@ -108,6 +108,10 @@
108
108
  --components-dataTable-cell-paddingInlineStart: var(--pr-t-spacings-50);
109
109
  }
110
110
 
111
+ @mixin cellBorderEditable {
112
+ --components-dataTable-cell-paddingInlineStart: var(--pr-t-spacings-100);
113
+ }
114
+
111
115
  @mixin actions {
112
116
  padding-block: 0;
113
117
  padding-inline: var(--pr-t-spacings-50);
@@ -19,7 +19,7 @@
19
19
  &::before {
20
20
  background-color: var(--palettes-700, var(--palettes-product-700));
21
21
  border-radius: var(--pr-t-border-radius-full);
22
- content: ' ' / ''; // Unbreakable space to avoid vertical alignement issues with inline-flex in some contexts like tables
22
+ content: ' ' / ''; // Unbreakable space to avoid vertical alignment issues with inline-flex in some contexts like tables
23
23
  display: block;
24
24
  block-size: var(--components-statusBadge-dot-size);
25
25
  flex-shrink: 0;