@rolster/styles-foundations 2.3.25 → 2.3.27

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.25",
3
+ "version": "2.3.27",
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,14 +1,14 @@
1
1
  // Rolster Technology ListField Component
2
- // v1.3.2
2
+ // v1.3.3
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
6
- // Updated: 27/Oct/2024
6
+ // Updated: 01/Mar/2025
7
7
 
8
8
  .rls-field-list {
9
9
  --pvt-action-font-color: var(--rls-app-color-300);
10
10
  --pvt-list-height: 0rem;
11
- --pvt-list-max-height: 160rem;
11
+ --pvt-list-max-height: 0rem;
12
12
  --pvt-list-opacity: 0;
13
13
  --pvt-list-transform: scale(0, 0);
14
14
  --pvt-list-transform-origin: 0% 0%;
@@ -78,11 +78,13 @@
78
78
  width: 100%;
79
79
  height: 0rem;
80
80
  max-height: var(--pvt-list-max-height);
81
+ opacity: 0;
81
82
  overflow: hidden;
82
83
  z-index: var(--rls-z-index-2);
83
84
  padding-bottom: var(--rls-sizing-x6);
84
85
 
85
86
  &--visible {
87
+ --pvt-list-max-height: 160rem;
86
88
  --pvt-list-height: auto;
87
89
  --pvt-list-opacity: 1;
88
90
  --pvt-list-transform: scale(1, 1);
@@ -104,11 +106,12 @@
104
106
  display: flex;
105
107
  flex-direction: column;
106
108
  width: 100%;
107
- height: auto;
109
+ height: var(--pvt-list-height);
108
110
  max-height: var(--pvt-list-max-height);
109
111
  padding: var(--rls-sizing-x4) var(--rls-sizing-x2);
110
112
  box-sizing: border-box;
111
113
  border-radius: var(--rls-sizing-x4);
114
+ opacity: var(--pvt-list-opacity);
112
115
  overflow: hidden;
113
116
  z-index: var(--rls-z-index-2);
114
117
  background: var(--rls-app-background-500);
@@ -206,7 +209,6 @@
206
209
  .rls-field-list {
207
210
  --pvt-list-transform: translateY(100%);
208
211
  --pvt-list-transform-origin: initial;
209
- --pvt-list-max-height: initial;
210
212
 
211
213
  &__suggestions {
212
214
  position: fixed;
@@ -217,6 +219,7 @@
217
219
  z-index: var(--rls-z-index-32);
218
220
 
219
221
  &--visible {
222
+ --pvt-list-max-height: initial;
220
223
  --pvt-list-transform: translateY(0%);
221
224
  --pvt-backdrop-opacity: 1;
222
225
  --pvt-backdrop-bottom: 0rem;