@uniai-fe/uds-primitives 0.4.4 → 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
|
@@ -535,7 +535,10 @@
|
|
|
535
535
|
--select-table-border-disabled-color: transparent;
|
|
536
536
|
--select-table-border-readonly-color: transparent;
|
|
537
537
|
--select-table-surface-color: transparent;
|
|
538
|
-
|
|
538
|
+
/* 변경: table disabled 배경은 input table disabled surface 계약과 동일하게 맞춘다. */
|
|
539
|
+
--select-table-surface-disabled-color: var(
|
|
540
|
+
--input-table-surface-disabled-color
|
|
541
|
+
);
|
|
539
542
|
--select-table-surface-readonly-color: transparent;
|
|
540
543
|
--select-table-color-text: var(--input-text-color);
|
|
541
544
|
--select-table-color-text-readonly: var(--select-primary-color-text-readonly);
|
|
@@ -4170,7 +4173,8 @@ figure.chip {
|
|
|
4170
4173
|
|
|
4171
4174
|
.select-tags {
|
|
4172
4175
|
display: flex;
|
|
4173
|
-
|
|
4176
|
+
max-width: calc(100% - var(--select-icon-size-medium) - var(var(--select-multiple-chip-gap)));
|
|
4177
|
+
flex-wrap: wrap;
|
|
4174
4178
|
gap: var(--select-multiple-chip-gap);
|
|
4175
4179
|
align-items: center;
|
|
4176
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;
|
|
@@ -39,7 +39,10 @@
|
|
|
39
39
|
--select-table-border-disabled-color: transparent;
|
|
40
40
|
--select-table-border-readonly-color: transparent;
|
|
41
41
|
--select-table-surface-color: transparent;
|
|
42
|
-
|
|
42
|
+
/* 변경: table disabled 배경은 input table disabled surface 계약과 동일하게 맞춘다. */
|
|
43
|
+
--select-table-surface-disabled-color: var(
|
|
44
|
+
--input-table-surface-disabled-color
|
|
45
|
+
);
|
|
43
46
|
--select-table-surface-readonly-color: transparent;
|
|
44
47
|
--select-table-color-text: var(--input-text-color);
|
|
45
48
|
--select-table-color-text-readonly: var(--select-primary-color-text-readonly);
|