@rolster/styles-foundations 2.3.37 → 2.3.39
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,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology Datatable Component
|
|
2
|
-
// v2.
|
|
2
|
+
// v2.3.0
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 14/Abr/2025
|
|
7
7
|
|
|
8
8
|
@mixin datatable_cell_control() {
|
|
9
9
|
--rlc-avatar-border-radius: var(--rls-sizing-x3);
|
|
@@ -274,6 +274,8 @@
|
|
|
274
274
|
}
|
|
275
275
|
|
|
276
276
|
&__floating {
|
|
277
|
+
--pvt-action-tooltip-transform: translate(calc(-100% - var(--rls-sizing-x4)));
|
|
278
|
+
|
|
277
279
|
position: absolute;
|
|
278
280
|
display: flex;
|
|
279
281
|
left: initial;
|
|
@@ -285,8 +287,7 @@
|
|
|
285
287
|
padding: 0rem var(--rls-sizing-x6);
|
|
286
288
|
background: var(--rls-app-background-300);
|
|
287
289
|
border-right: none;
|
|
288
|
-
|
|
289
|
-
transform: translateX(calc(100% - var(--rls-sizing-x6)));
|
|
290
|
+
transform: translateX(calc(100% - var(--rls-sizing-x4)));
|
|
290
291
|
transition: transform 240ms var(--rls-standard-curve);
|
|
291
292
|
|
|
292
293
|
&:hover {
|
|
@@ -294,12 +295,20 @@
|
|
|
294
295
|
}
|
|
295
296
|
|
|
296
297
|
&--invested {
|
|
298
|
+
--pvt-action-tooltip-transform: translate(calc(100% + var(--rls-sizing-x4)));
|
|
299
|
+
|
|
297
300
|
right: initial;
|
|
298
301
|
left: 0;
|
|
299
302
|
transform: translateX(calc(-100% + var(--rls-sizing-x6)));
|
|
300
303
|
border-left: none;
|
|
301
304
|
border-right: 2px dashed var(--rls-app-border-100);
|
|
302
305
|
}
|
|
306
|
+
|
|
307
|
+
.rls-button-action__tooltip {
|
|
308
|
+
top: 0;
|
|
309
|
+
left: 0;
|
|
310
|
+
transform: var(--pvt-action-tooltip-transform);
|
|
311
|
+
}
|
|
303
312
|
}
|
|
304
313
|
|
|
305
314
|
&__summary {
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
// Rolster Technology ListField Component
|
|
2
|
-
// v1.3.
|
|
2
|
+
// v1.3.6
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 16/Abr/2025
|
|
7
7
|
|
|
8
8
|
.rls-field-list {
|
|
9
9
|
--pvt-action-font-color: var(--rls-app-color-300);
|
|
10
|
-
--pvt-list-height:
|
|
11
|
-
--pvt-list-max-height:
|
|
10
|
+
--pvt-list-height: auto;
|
|
11
|
+
--pvt-list-max-height: 160rem;
|
|
12
12
|
--pvt-list-opacity: 0;
|
|
13
13
|
--pvt-list-transform: none;
|
|
14
14
|
--pvt-backdrop-opacity: 0;
|
|
@@ -75,21 +75,19 @@
|
|
|
75
75
|
bottom: initial;
|
|
76
76
|
left: 0rem;
|
|
77
77
|
width: 100%;
|
|
78
|
-
height:
|
|
78
|
+
height: auto;
|
|
79
79
|
max-height: var(--pvt-list-max-height);
|
|
80
80
|
opacity: 0;
|
|
81
81
|
overflow: hidden;
|
|
82
82
|
z-index: var(--rls-z-index-2);
|
|
83
|
-
padding-bottom: var(--rls-sizing-x6);
|
|
84
83
|
|
|
85
84
|
&--visible {
|
|
86
|
-
--pvt-list-max-height: 160rem;
|
|
87
85
|
--pvt-list-height: auto;
|
|
86
|
+
--pvt-list-max-height: 160rem;
|
|
88
87
|
--pvt-list-opacity: 1;
|
|
89
88
|
|
|
90
89
|
overflow: initial;
|
|
91
90
|
opacity: 1;
|
|
92
|
-
height: auto;
|
|
93
91
|
z-index: var(--rls-z-index-8);
|
|
94
92
|
}
|
|
95
93
|
|