@uniai-fe/uds-primitives 0.4.5 → 0.4.6
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/dist/styles.css
CHANGED
|
@@ -4173,7 +4173,8 @@ figure.chip {
|
|
|
4173
4173
|
|
|
4174
4174
|
.select-tags {
|
|
4175
4175
|
display: flex;
|
|
4176
|
-
|
|
4176
|
+
max-width: calc(100% - var(--select-icon-size-medium) - var(var(--select-multiple-chip-gap)));
|
|
4177
|
+
flex-wrap: wrap;
|
|
4177
4178
|
gap: var(--select-multiple-chip-gap);
|
|
4178
4179
|
align-items: center;
|
|
4179
4180
|
min-width: 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniai-fe/uds-primitives",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.6",
|
|
4
4
|
"description": "UNIAI Design System; Primitives Components Package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"publishConfig": {
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
|
-
"packageManager": "pnpm@10.
|
|
18
|
+
"packageManager": "pnpm@10.33.0",
|
|
19
19
|
"engines": {
|
|
20
20
|
"node": ">=24",
|
|
21
21
|
"pnpm": ">=10"
|
|
@@ -407,7 +407,11 @@
|
|
|
407
407
|
|
|
408
408
|
.select-tags {
|
|
409
409
|
display: flex;
|
|
410
|
-
|
|
410
|
+
max-width: calc(
|
|
411
|
+
100% - var(--select-icon-size-medium) - var(var(--select-multiple-chip-gap))
|
|
412
|
+
);
|
|
413
|
+
// flex-wrap: nowrap;
|
|
414
|
+
flex-wrap: wrap;
|
|
411
415
|
gap: var(--select-multiple-chip-gap);
|
|
412
416
|
align-items: center;
|
|
413
417
|
min-width: 0;
|