@lucca-front/scss 22.0.0 → 22.0.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": "22.0.0",
3
+ "version": "22.0.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": "22.0.0",
28
- "@lucca/prisme": "22.0.0"
27
+ "@lucca-front/icons": "22.0.1-rc.2",
28
+ "@lucca/prisme": "22.0.1-rc.2"
29
29
  }
30
30
  }
@@ -11,7 +11,11 @@
11
11
  // TOKENS : TYPO
12
12
 
13
13
  --pr-t-font-family: '#{config.$fontFamily}', Tahoma, sans-serif;
14
- --pr-t-font-family-brand: '#{config.$fontFamilyBrand}', Tahoma, sans-serif;
14
+ --pr-t-font-family-brand: var(--pr-t-font-family);
15
+
16
+ &:lang(fr, en, de, nl, it, pt, es) {
17
+ --pr-t-font-family-brand: '#{config.$fontFamilyBrand}', Tahoma, sans-serif;
18
+ }
15
19
 
16
20
  @if (config.$fontFamilyCursive) {
17
21
  --pr-t-font-family-cursive: '#{config.$fontFamilyCursive}', cursive;
@@ -160,6 +160,8 @@
160
160
 
161
161
  .statusBadge,
162
162
  .tag,
163
+ lu-tag,
164
+ pr-tag,
163
165
  .avatar {
164
166
  vertical-align: top;
165
167
  }
@@ -108,6 +108,7 @@
108
108
  }
109
109
 
110
110
  .dialog-inside-header-actionOptional {
111
+ grid-area: action;
111
112
  margin-inline-end: calc(var(--pr-t-spacings-100) * -1);
112
113
 
113
114
  &:empty {
@@ -277,6 +277,8 @@
277
277
 
278
278
  .statusBadge,
279
279
  .tag,
280
+ lu-tag,
281
+ pr-tag,
280
282
  .avatar {
281
283
  vertical-align: top;
282
284
  }
@@ -66,6 +66,11 @@
66
66
  }
67
67
  }
68
68
 
69
+ .listboxOption-content-value {
70
+ flex-grow: 1;
71
+ min-inline-size: 0;
72
+ }
73
+
69
74
  .listboxOption-content-checkboxField.checkboxField {
70
75
  margin-block-start: var(--pr-t-spacings-25);
71
76
  display: var(--components-listboxOption-content-checkboxField-display);
@@ -13,13 +13,25 @@
13
13
  margin: var(--components-tooltip-margin);
14
14
  text-align: center;
15
15
  inline-size: fit-content;
16
- animation-name: scaleIn;
16
+ animation-name: scaleIn, tooltipPointerEventsIn;
17
+ animation-delay: var(--components-tooltip-animationDelay);
17
18
  animation-duration: var(--commons-animations-durations-fast);
18
19
  animation-iteration-count: 1;
20
+ animation-fill-mode: backwards;
19
21
  overflow-wrap: break-word;
20
22
 
21
23
  @include keyframe.scaleIn;
22
24
 
25
+ @keyframes tooltipPointerEventsIn {
26
+ 0% {
27
+ pointer-events: none;
28
+ }
29
+
30
+ 1% {
31
+ pointer-events: auto;
32
+ }
33
+ }
34
+
23
35
  &:empty {
24
36
  display: none;
25
37
  }
@@ -4,4 +4,5 @@
4
4
  --components-tooltip-max-width: 15rem;
5
5
  --components-tooltip-transformOrigin: center;
6
6
  --components-tooltip-margin: 0;
7
+ --components-tooltip-animationDelay: 300ms;
7
8
  }