@uniai-fe/uds-primitives 0.4.4 → 0.4.5
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);
|
package/package.json
CHANGED
|
@@ -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);
|