@rolster/styles-foundations 2.3.34 → 2.3.36

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.3.34",
3
+ "version": "2.3.36",
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.2.1
2
+ // v2.2.3
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
6
- // Updated: 02/Mar/2025
6
+ // Updated: 04/Abr/2025
7
7
 
8
8
  @mixin datatable_cell_control() {
9
9
  --rlc-avatar-border-radius: var(--rls-sizing-x3);
@@ -191,6 +191,10 @@
191
191
  background: var(--rls-danger-color-050);
192
192
  border: var(--rls-danger-border-1-300);
193
193
  }
194
+
195
+ &--overflow {
196
+ overflow: hidden;
197
+ }
194
198
  }
195
199
 
196
200
  &__subheader {
@@ -271,6 +275,35 @@
271
275
  }
272
276
  }
273
277
 
278
+ &__floating {
279
+ position: absolute;
280
+ display: flex;
281
+ left: initial;
282
+ right: 0;
283
+ height: 100%;
284
+ column-gap: 4rem;
285
+ align-items: center;
286
+ z-index: var(--rls-z-index-2);
287
+ padding: 0rem var(--rls-sizing-x6);
288
+ background: var(--rls-app-background-300);
289
+ border-right: none;
290
+ border-left: 2px dashed var(--rls-app-border-100);
291
+ transform: translateX(calc(100% - var(--rls-sizing-x6)));
292
+ transition: transform 240ms var(--rls-standard-curve);
293
+
294
+ &:hover {
295
+ transform: translateX(0);
296
+ }
297
+
298
+ &--invested {
299
+ right: initial;
300
+ left: 0;
301
+ transform: translateX(calc(-100% + var(--rls-sizing-x6)));
302
+ border-left: none;
303
+ border-right: 2px dashed var(--rls-app-border-100);
304
+ }
305
+ }
306
+
274
307
  &__summary {
275
308
  --pvt-datatable-record-background: var(--rls-theme-color-050);
276
309
 
@@ -1,9 +1,9 @@
1
1
  // Rolster Technology ListField Component
2
- // v1.3.4
2
+ // v1.3.5
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
6
- // Updated: 18/Mar/2025
6
+ // Updated: 31/Mar/2025
7
7
 
8
8
  .rls-field-list {
9
9
  --pvt-action-font-color: var(--rls-app-color-300);
@@ -230,9 +230,9 @@
230
230
  }
231
231
 
232
232
  &__ul {
233
- max-width: 200rem;
233
+ max-width: 100%;
234
234
  max-height: 75%;
235
- padding: var(--rls-sizing-x8) var(--rls-sizing-x2);
235
+ padding: var(--rls-sizing-x8) var(--rls-sizing-x6);
236
236
  border-radius: var(--rls-sizing-x4) var(--rls-sizing-x4) 0rem 0rem;
237
237
  border: none;
238
238
  box-shadow: none;