@rolster/styles-foundations 2.4.17 → 2.4.18

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": "@rolster/styles-foundations",
3
- "version": "2.4.17",
3
+ "version": "2.4.18",
4
4
  "description": "Front-end style pack to develop responsive and mobile projects on the web with Rolster.",
5
5
  "sass": "scss/styles.scss",
6
6
  "style": "dist/styles.css",
@@ -1,9 +1,9 @@
1
1
  // Rolster Technology Datatable Component
2
- // v2.3.4
2
+ // v2.3.5
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
6
- // Updated: 27/Abr/2025
6
+ // Updated: 06/May/2025
7
7
 
8
8
  @mixin datatable_cell_control() {
9
9
  --rlc-avatar-border-radius: var(--rls-sizing-x3);
@@ -264,6 +264,8 @@
264
264
  }
265
265
 
266
266
  &__floating {
267
+ --pvt-action-tooltip-left: 0;
268
+ --pvt-action-tooltip-right: initial;
267
269
  --pvt-action-tooltip-transform: translate(
268
270
  calc(-100% - var(--rls-sizing-x4))
269
271
  );
@@ -287,21 +289,23 @@
287
289
  }
288
290
 
289
291
  &--invested {
292
+ --pvt-action-tooltip-left: initial;
293
+ --pvt-action-tooltip-right: 0;
290
294
  --pvt-action-tooltip-transform: translate(
291
295
  calc(100% + var(--rls-sizing-x4))
292
296
  );
293
297
 
294
298
  right: initial;
295
299
  left: 0;
296
- transform: translateX(calc(-100% + var(--rls-sizing-x6)));
297
- border-left: none;
298
- border-right: 2px dashed var(--rls-app-color-300);
300
+ transform: translateX(calc(-100% + var(--rls-sizing-x4)));
299
301
  }
300
302
 
301
303
  .rls-button-action__tooltip {
302
304
  top: 0;
303
- left: 0;
305
+ left: var(--pvt-action-tooltip-left);
306
+ right: var(--pvt-action-tooltip-right);
304
307
  transform: var(--pvt-action-tooltip-transform);
308
+ z-index: var(--rls-z-index-2);
305
309
  }
306
310
  }
307
311
 
@@ -7,7 +7,7 @@
7
7
 
8
8
  @use 'sass:meta';
9
9
 
10
- :root {
10
+ body {
11
11
  --rlc-app-content-background: var(--rls-app-color-050);
12
12
  --rlc-app-header-background: var(--rls-app-color-100);
13
13
  --rlc-app-header-height: var(--rls-sizing-x28);
@@ -54,7 +54,7 @@
54
54
  --rlc-card-content-padding: var(--rls-sizing-x8);
55
55
 
56
56
  --rlc-checkbox-dimension: var(--rls-sizing-x12);
57
- --rlc-checkbox-children-dimension: 7rem;
57
+ --rlc-checkbox-children-dimension: 6rem;
58
58
 
59
59
  --rlc-datatable-body-max-height: initial;
60
60
  --rlc-datatable-body-overflow: initial;
@@ -110,7 +110,7 @@
110
110
  --rlc-progress-circular-dimension: var(--rls-sizing-x28);
111
111
 
112
112
  --rlc-radiobutton-dimension: var(--rls-sizing-x12);
113
- --rlc-radiobutton-children-dimension: 7rem;
113
+ --rlc-radiobutton-children-dimension: 6rem;
114
114
 
115
115
  --rlc-snackbar-left: 50%;
116
116
 
@@ -1,11 +1,11 @@
1
1
  // Rolster Technology Animations Foundations
2
- // v2.0.0
2
+ // v2.0.1
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
6
- // Updated: 26/May/2024
6
+ // Updated: 06/May/2025
7
7
 
8
- :root {
8
+ body {
9
9
  --rls-standard-curve: cubic-bezier(0.4, 0, 0.2, 1);
10
10
 
11
11
  --rls-deceleration-curve: cubic-bezier(0, 0, 0.2, 1);
@@ -1,13 +1,13 @@
1
1
  // Rolster Technology Colors Foundations
2
- // v2.6.2
2
+ // v2.6.3
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 03/Mar/2022
6
- // Updated: 23/Abr/2025
6
+ // Updated: 06/May/2025
7
7
 
8
8
  @use 'helpers' as helpers;
9
9
 
10
- :root {
10
+ body {
11
11
  --rls-app-color-900: rgb(40, 50, 61);
12
12
 
13
13
  --rls-app-color-800: rgb(52, 57, 87);
@@ -28,28 +28,6 @@
28
28
 
29
29
  --rls-app-color-050: rgb(255, 255, 255);
30
30
 
31
- *[app-theme='dark'] {
32
- --rls-app-color-050: rgb(40, 50, 61);
33
-
34
- --rls-app-color-100: rgb(52, 57, 87);
35
-
36
- --rls-app-color-200: rgb(72, 77, 107);
37
-
38
- --rls-app-color-300: rgb(98, 111, 155);
39
-
40
- --rls-app-color-400: rgb(128, 141, 190);
41
-
42
- --rls-app-color-500: rgb(189, 192, 220);
43
-
44
- --rls-app-color-600: rgb(214, 217, 240);
45
-
46
- --rls-app-color-700: rgb(229, 232, 245);
47
-
48
- --rls-app-color-800: rgb(244, 247, 255);
49
-
50
- --rls-app-color-900: rgb(255, 255, 255);
51
- }
52
-
53
31
  @include helpers.rolster-theme(
54
32
  'primary',
55
33
  #0b2446,
@@ -244,4 +222,26 @@
244
222
  #e6e4db,
245
223
  #f5f5f1
246
224
  );
225
+
226
+ &[app-theme='dark'] {
227
+ --rls-app-color-050: rgb(40, 50, 61);
228
+
229
+ --rls-app-color-100: rgb(52, 57, 87);
230
+
231
+ --rls-app-color-200: rgb(72, 77, 107);
232
+
233
+ --rls-app-color-300: rgb(98, 111, 155);
234
+
235
+ --rls-app-color-400: rgb(128, 141, 190);
236
+
237
+ --rls-app-color-500: rgb(189, 192, 220);
238
+
239
+ --rls-app-color-600: rgb(214, 217, 240);
240
+
241
+ --rls-app-color-700: rgb(229, 232, 245);
242
+
243
+ --rls-app-color-800: rgb(244, 247, 255);
244
+
245
+ --rls-app-color-900: rgb(255, 255, 255);
246
+ }
247
247
  }
@@ -1,11 +1,11 @@
1
1
  // Rolster Technology Elevations Foundations
2
- // v2.1.0
2
+ // v2.1.1
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
6
- // Updated: 18/Abr/2025
6
+ // Updated: 06/May/2025
7
7
 
8
- :root {
8
+ body {
9
9
  --rls-z-index-2: 2;
10
10
 
11
11
  --rls-z-index-4: 4;
@@ -1,11 +1,11 @@
1
1
  // Rolster Technology Sizings Foundations
2
- // v2.1.0
2
+ // v2.1.1
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
6
- // Updated: 26/May/2024
6
+ // Updated: 06/May/2025
7
7
 
8
- :root {
8
+ body {
9
9
  --rls-sizing-x1: 1rem;
10
10
 
11
11
  --rls-sizing-x2: 2rem;
@@ -1,9 +1,9 @@
1
1
  // Rolster Technology Themes Foundations
2
- // v2.4.1
2
+ // v2.4.2
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 03/Mar/2022
6
- // Updated: 19/Abr/2025
6
+ // Updated: 06/May/2025
7
7
 
8
8
  @mixin rolster-border-color($theme, $token) {
9
9
  --rls-#{$theme}-border-1-#{$token}: var(--rls-border-1) solid
@@ -89,7 +89,7 @@
89
89
  @include rolster-border-theme($theme, 100);
90
90
  }
91
91
 
92
- :root {
92
+ body {
93
93
  --rls-app-border-1-100: var(--rls-border-1) solid var(--rls-app-color-200);
94
94
 
95
95
  --rls-app-border-2-100: var(--rls-border-2) solid var(--rls-app-color-200);
@@ -1,11 +1,11 @@
1
1
  // Rolster Technology Typographics Foundations
2
- // v2.0.0
2
+ // v2.0.1
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
6
- // Updated: 26/May/2024
6
+ // Updated: 06/May/2025
7
7
 
8
- :root {
8
+ body {
9
9
  --rls-font-weight-thin: 100;
10
10
 
11
11
  --rls-font-weight-extra-light: 200;
@@ -253,7 +253,7 @@
253
253
  }
254
254
  }
255
255
 
256
- :root {
256
+ body {
257
257
  --flex-grid-12-gap: 0rem;
258
258
  --flex-grid-8-gap: 0rem;
259
259
  --flex-grid-6-gap: 0rem;
@@ -1,14 +1,13 @@
1
1
  // Rolster Technology Normalize Utilities
2
- // v2.0.3
2
+ // v2.0.4
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 11/Ago/2022
6
- // Updated: 23/Abr/2025
6
+ // Updated: 06/May/2025
7
7
 
8
8
  :root {
9
9
  --rls-app-font-family: -apple-system, -rolster-system-font, BlinkMacSystemFont,
10
10
  'Segoe UI', Roboto, Helvetica;
11
- --rlc-app-body-background: var(--rls-app-color-050);
12
11
  }
13
12
 
14
13
  html {
@@ -17,6 +16,8 @@ html {
17
16
  }
18
17
 
19
18
  body {
19
+ --rlc-app-body-background: var(--rls-app-color-050);
20
+
20
21
  position: absolute;
21
22
  top: 0rem;
22
23
  bottom: 0rem;