@odx/ui 7.2.0 → 7.2.2
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/CHANGELOG.md +13 -0
- package/core-theme.css +1 -1
- package/package.json +1 -1
- package/scss/components/form-field.component.scss +6 -5
- package/scss/components/navigation-back.component.scss +1 -1
- package/scss/components/option.component.scss +2 -0
- package/scss/components/tab-bar-item.component.scss +1 -1
- package/scss/components/table.component.scss +1 -1
- package/scss/components/toast-item.component.scss +1 -1
- package/scss/components/toggle-button-group.component.scss +1 -1
- package/scss/components/toggle-button.component.scss +1 -1
- package/scss/components/wizard-step.component.scss +1 -1
- package/scss/form-field.component.scss +6 -5
- package/scss/navigation-back.component.scss +1 -1
- package/scss/option.component.scss +2 -0
- package/scss/tab-bar-item.component.scss +1 -1
- package/scss/table.component.scss +1 -1
- package/scss/toast-item.component.scss +1 -1
- package/scss/toggle-button-group.component.scss +1 -1
- package/scss/toggle-button.component.scss +1 -1
- package/scss/variables/_color-palettes-dark.scss +1 -1
- package/scss/wizard-step.component.scss +1 -1
package/package.json
CHANGED
|
@@ -132,8 +132,7 @@
|
|
|
132
132
|
width: 100%;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
#{$control-selector}
|
|
136
|
-
input {
|
|
135
|
+
#{$control-selector} {
|
|
137
136
|
&::placeholder {
|
|
138
137
|
color: var(--odx-input-control-color);
|
|
139
138
|
font-weight: var(--odx-typography-font-weight-normal);
|
|
@@ -143,18 +142,20 @@
|
|
|
143
142
|
}
|
|
144
143
|
|
|
145
144
|
.is-disabled & {
|
|
146
|
-
|
|
145
|
+
#{$control-selector}::placeholder {
|
|
147
146
|
color: var(--odx-input-control-color-disabled);
|
|
148
147
|
}
|
|
149
148
|
}
|
|
150
149
|
|
|
151
|
-
|
|
150
|
+
textarea#{$control-selector} {
|
|
152
151
|
block-size: calc(var(--odx-size-300) + var(--odx-spacing-150));
|
|
152
|
+
overflow: auto;
|
|
153
153
|
padding-block: var(--odx-control-spacing-md);
|
|
154
154
|
resize: vertical;
|
|
155
|
+
white-space: unset;
|
|
155
156
|
}
|
|
156
157
|
|
|
157
|
-
|
|
158
|
+
select#{$control-selector} {
|
|
158
159
|
border-right: var(--odx-spacing-37) solid transparent;
|
|
159
160
|
}
|
|
160
161
|
|
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
letter-spacing: var(--odx-typography-font-weight-normal-letter-spacing);
|
|
5
5
|
line-height: var(--odx-typography-line-height-text-lg);
|
|
6
6
|
margin-block-end: var(--odx-spacing-25);
|
|
7
|
+
overflow: clip;
|
|
7
8
|
padding: calc(var(--odx-spacing-12) * 3) var(--odx-spacing-75);
|
|
9
|
+
text-overflow: ellipsis;
|
|
8
10
|
transition: var(--odx-motion-transition-default);
|
|
9
11
|
transition-property: background-color, color;
|
|
10
12
|
user-select: none;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
--odx-table-background-color: var(--white);
|
|
3
3
|
--odx-table-head-border-color: var(--odx-color-stroke-neutral-strong);
|
|
4
4
|
--odx-table-cell-border-color: var(--odx-color-stroke-neutral-subtle);
|
|
5
|
-
--odx-table-cell-background-color-hover: var(--
|
|
5
|
+
--odx-table-cell-background-color-hover: var(--odx-color-background-transparent-hover);
|
|
6
6
|
--odx-table-cell-background-color-striped: var(--gray-50);
|
|
7
7
|
--odx-table-cell-background-color-active: var(--cyan-500-15);
|
|
8
8
|
|
|
@@ -132,8 +132,7 @@
|
|
|
132
132
|
width: 100%;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
#{$control-selector}
|
|
136
|
-
input {
|
|
135
|
+
#{$control-selector} {
|
|
137
136
|
&::placeholder {
|
|
138
137
|
color: var(--odx-input-control-color);
|
|
139
138
|
font-weight: var(--odx-typography-font-weight-normal);
|
|
@@ -143,18 +142,20 @@
|
|
|
143
142
|
}
|
|
144
143
|
|
|
145
144
|
.is-disabled & {
|
|
146
|
-
|
|
145
|
+
#{$control-selector}::placeholder {
|
|
147
146
|
color: var(--odx-input-control-color-disabled);
|
|
148
147
|
}
|
|
149
148
|
}
|
|
150
149
|
|
|
151
|
-
|
|
150
|
+
textarea#{$control-selector} {
|
|
152
151
|
block-size: calc(var(--odx-size-300) + var(--odx-spacing-150));
|
|
152
|
+
overflow: auto;
|
|
153
153
|
padding-block: var(--odx-control-spacing-md);
|
|
154
154
|
resize: vertical;
|
|
155
|
+
white-space: unset;
|
|
155
156
|
}
|
|
156
157
|
|
|
157
|
-
|
|
158
|
+
select#{$control-selector} {
|
|
158
159
|
border-right: var(--odx-spacing-37) solid transparent;
|
|
159
160
|
}
|
|
160
161
|
|
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
letter-spacing: var(--odx-typography-font-weight-normal-letter-spacing);
|
|
5
5
|
line-height: var(--odx-typography-line-height-text-lg);
|
|
6
6
|
margin-block-end: var(--odx-spacing-25);
|
|
7
|
+
overflow: clip;
|
|
7
8
|
padding: calc(var(--odx-spacing-12) * 3) var(--odx-spacing-75);
|
|
9
|
+
text-overflow: ellipsis;
|
|
8
10
|
transition: var(--odx-motion-transition-default);
|
|
9
11
|
transition-property: background-color, color;
|
|
10
12
|
user-select: none;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
--odx-table-background-color: var(--white);
|
|
3
3
|
--odx-table-head-border-color: var(--odx-color-stroke-neutral-strong);
|
|
4
4
|
--odx-table-cell-border-color: var(--odx-color-stroke-neutral-subtle);
|
|
5
|
-
--odx-table-cell-background-color-hover: var(--
|
|
5
|
+
--odx-table-cell-background-color-hover: var(--odx-color-background-transparent-hover);
|
|
6
6
|
--odx-table-cell-background-color-striped: var(--gray-50);
|
|
7
7
|
--odx-table-cell-background-color-active: var(--cyan-500-15);
|
|
8
8
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
--blue-100: var(--odx-palette-blue-70);
|
|
27
27
|
--blue-600: var(--odx-palette-blue-20);
|
|
28
28
|
--blue-700: var(--odx-palette-blue-10);
|
|
29
|
-
--blue-700-5: var(--odx-
|
|
29
|
+
--blue-700-5: var(--odx-color-background-transparent-hover);
|
|
30
30
|
--blue-700-10: var(--odx-palette-blue-80-15);
|
|
31
31
|
--blue-900: var(--odx-palette-blue-10);
|
|
32
32
|
|