@rolster/styles-foundations 2.4.16 → 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 +1 -1
- package/scss/components/data-table.scss +12 -15
- package/scss/components.scss +13 -6
- package/scss/foundations/animations.scss +3 -3
- package/scss/foundations/colors.scss +25 -25
- package/scss/foundations/elevations.scss +3 -3
- package/scss/foundations/sizings.scss +3 -3
- package/scss/foundations/themes.scss +3 -3
- package/scss/foundations/typographics.scss +3 -3
- package/scss/utilities/layout.scss +1 -1
- package/scss/utilities/normalize.scss +4 -3
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology Datatable Component
|
|
2
|
-
// v2.3.
|
|
2
|
+
// v2.3.5
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 06/May/2025
|
|
7
7
|
|
|
8
8
|
@mixin datatable_cell_control() {
|
|
9
9
|
--rlc-avatar-border-radius: var(--rls-sizing-x3);
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
--rlc-fieldbox-body-shadow: none;
|
|
20
20
|
--rlc-fieldbox-action-background: transparent;
|
|
21
21
|
|
|
22
|
+
--rlc-switch-max-width: var(--rls-sizing-x18);
|
|
22
23
|
--rlc-switch-bar-radius: var(--rls-sizing-x2);
|
|
23
24
|
--rlc-switch-bar-height: var(--rls-sizing-x4);
|
|
24
25
|
--rlc-switch-element-size: var(--rls-sizing-x10);
|
|
@@ -169,22 +170,18 @@
|
|
|
169
170
|
|
|
170
171
|
&--success {
|
|
171
172
|
background: var(--rls-success-color-050);
|
|
172
|
-
border: var(--rls-success-border-1-300);
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
&--info {
|
|
176
176
|
background: var(--rls-info-color-050);
|
|
177
|
-
border: var(--rls-info-border-1-300);
|
|
178
177
|
}
|
|
179
178
|
|
|
180
179
|
&--warning {
|
|
181
180
|
background: var(--rls-warning-color-050);
|
|
182
|
-
border: var(--rls-warning-border-1-300);
|
|
183
181
|
}
|
|
184
182
|
|
|
185
183
|
&--error {
|
|
186
184
|
background: var(--rls-danger-color-050);
|
|
187
|
-
border: var(--rls-danger-border-1-300);
|
|
188
185
|
}
|
|
189
186
|
|
|
190
187
|
&--overflow {
|
|
@@ -222,11 +219,7 @@
|
|
|
222
219
|
}
|
|
223
220
|
|
|
224
221
|
&.rls-align-center {
|
|
225
|
-
|
|
226
|
-
& > .rls-radiobutton,
|
|
227
|
-
& > .rls-switch {
|
|
228
|
-
margin: auto;
|
|
229
|
-
}
|
|
222
|
+
justify-content: center;
|
|
230
223
|
}
|
|
231
224
|
|
|
232
225
|
& > span {
|
|
@@ -271,6 +264,8 @@
|
|
|
271
264
|
}
|
|
272
265
|
|
|
273
266
|
&__floating {
|
|
267
|
+
--pvt-action-tooltip-left: 0;
|
|
268
|
+
--pvt-action-tooltip-right: initial;
|
|
274
269
|
--pvt-action-tooltip-transform: translate(
|
|
275
270
|
calc(-100% - var(--rls-sizing-x4))
|
|
276
271
|
);
|
|
@@ -294,21 +289,23 @@
|
|
|
294
289
|
}
|
|
295
290
|
|
|
296
291
|
&--invested {
|
|
292
|
+
--pvt-action-tooltip-left: initial;
|
|
293
|
+
--pvt-action-tooltip-right: 0;
|
|
297
294
|
--pvt-action-tooltip-transform: translate(
|
|
298
295
|
calc(100% + var(--rls-sizing-x4))
|
|
299
296
|
);
|
|
300
297
|
|
|
301
298
|
right: initial;
|
|
302
299
|
left: 0;
|
|
303
|
-
transform: translateX(calc(-100% + var(--rls-sizing-
|
|
304
|
-
border-left: none;
|
|
305
|
-
border-right: 2px dashed var(--rls-app-color-300);
|
|
300
|
+
transform: translateX(calc(-100% + var(--rls-sizing-x4)));
|
|
306
301
|
}
|
|
307
302
|
|
|
308
303
|
.rls-button-action__tooltip {
|
|
309
304
|
top: 0;
|
|
310
|
-
left:
|
|
305
|
+
left: var(--pvt-action-tooltip-left);
|
|
306
|
+
right: var(--pvt-action-tooltip-right);
|
|
311
307
|
transform: var(--pvt-action-tooltip-transform);
|
|
308
|
+
z-index: var(--rls-z-index-2);
|
|
312
309
|
}
|
|
313
310
|
}
|
|
314
311
|
|
package/scss/components.scss
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
// Rolster Technology Components
|
|
2
|
-
// v2.2.
|
|
2
|
+
// v2.2.1
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 13/Abr/2023
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 27/Abr/2025
|
|
7
7
|
|
|
8
8
|
@use 'sass:meta';
|
|
9
9
|
|
|
10
|
-
|
|
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);
|
|
@@ -53,6 +53,9 @@
|
|
|
53
53
|
|
|
54
54
|
--rlc-card-content-padding: var(--rls-sizing-x8);
|
|
55
55
|
|
|
56
|
+
--rlc-checkbox-dimension: var(--rls-sizing-x12);
|
|
57
|
+
--rlc-checkbox-children-dimension: 6rem;
|
|
58
|
+
|
|
56
59
|
--rlc-datatable-body-max-height: initial;
|
|
57
60
|
--rlc-datatable-body-overflow: initial;
|
|
58
61
|
--rlc-datatable-letter-spacing: 0.0625em;
|
|
@@ -106,6 +109,9 @@
|
|
|
106
109
|
|
|
107
110
|
--rlc-progress-circular-dimension: var(--rls-sizing-x28);
|
|
108
111
|
|
|
112
|
+
--rlc-radiobutton-dimension: var(--rls-sizing-x12);
|
|
113
|
+
--rlc-radiobutton-children-dimension: 6rem;
|
|
114
|
+
|
|
109
115
|
--rlc-snackbar-left: 50%;
|
|
110
116
|
|
|
111
117
|
--rlc-skeleton-height: inherit;
|
|
@@ -115,9 +121,10 @@
|
|
|
115
121
|
--rlc-skeleton-text-height: var(--rls-body-line-height);
|
|
116
122
|
--rlc-skeleton-text-letter-spacing: var(--rls-body-letter-spacing);
|
|
117
123
|
|
|
118
|
-
--rlc-switch-
|
|
119
|
-
--rlc-switch-bar-
|
|
120
|
-
--rlc-switch-
|
|
124
|
+
--rlc-switch-max-width: var(--rls-sizing-x18);
|
|
125
|
+
--rlc-switch-bar-radius: var(--rls-sizing-x2);
|
|
126
|
+
--rlc-switch-bar-height: var(--rls-sizing-x4);
|
|
127
|
+
--rlc-switch-element-size: var(--rls-sizing-x10);
|
|
121
128
|
|
|
122
129
|
--rlc-tabulartext-char-width: 5.5rem;
|
|
123
130
|
--rlc-tabulartext-font-size: var(--rls-body-font-size);
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
// Rolster Technology Animations Foundations
|
|
2
|
-
// v2.0.
|
|
2
|
+
// v2.0.1
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 06/May/2025
|
|
7
7
|
|
|
8
|
-
|
|
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
|
+
// v2.6.3
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 03/Mar/2022
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 06/May/2025
|
|
7
7
|
|
|
8
8
|
@use 'helpers' as helpers;
|
|
9
9
|
|
|
10
|
-
|
|
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.
|
|
2
|
+
// v2.1.1
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 06/May/2025
|
|
7
7
|
|
|
8
|
-
|
|
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.
|
|
2
|
+
// v2.1.1
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 06/May/2025
|
|
7
7
|
|
|
8
|
-
|
|
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.
|
|
2
|
+
// v2.4.2
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 03/Mar/2022
|
|
6
|
-
// Updated:
|
|
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
|
-
|
|
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.
|
|
2
|
+
// v2.0.1
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 06/May/2025
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
body {
|
|
9
9
|
--rls-font-weight-thin: 100;
|
|
10
10
|
|
|
11
11
|
--rls-font-weight-extra-light: 200;
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
// Rolster Technology Normalize Utilities
|
|
2
|
-
// v2.0.
|
|
2
|
+
// v2.0.4
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 11/Ago/2022
|
|
6
|
-
// Updated:
|
|
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;
|