@nordcode/ui 2.0.3 → 2.0.4
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/.idea/copilot.data.migration.agent.xml +6 -0
- package/.idea/copilot.data.migration.ask.xml +6 -0
- package/.idea/copilot.data.migration.ask2agent.xml +6 -0
- package/.idea/copilot.data.migration.edit.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/ui.iml +9 -0
- package/.idea/vcs.xml +6 -0
- package/CHANGELOG.md +6 -0
- package/out/bundle.css +15 -3
- package/out/bundle_configless.css +15 -3
- package/out/complete.css +16 -4
- package/out/complete_configless.css +16 -4
- package/package.json +1 -1
- package/src/styles/components/inputs/base.css +1 -1
- package/src/styles/utils/reset.css +16 -3
package/.idea/ui.iml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="JAVA_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
4
|
+
<exclude-output />
|
|
5
|
+
<content url="file://$MODULE_DIR$" />
|
|
6
|
+
<orderEntry type="inheritedJdk" />
|
|
7
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
8
|
+
</component>
|
|
9
|
+
</module>
|
package/.idea/vcs.xml
ADDED
package/CHANGELOG.md
CHANGED
package/out/bundle.css
CHANGED
|
@@ -352,6 +352,8 @@
|
|
|
352
352
|
font-kerning: normal;
|
|
353
353
|
-moz-osx-font-smoothing: grayscale;
|
|
354
354
|
-webkit-font-smoothing: antialiased;
|
|
355
|
+
hanging-punctuation: first allow-end last;
|
|
356
|
+
word-break: break-word;
|
|
355
357
|
}
|
|
356
358
|
|
|
357
359
|
:where(body) {
|
|
@@ -415,9 +417,19 @@
|
|
|
415
417
|
letter-spacing: inherit;
|
|
416
418
|
}
|
|
417
419
|
|
|
418
|
-
:where(html)
|
|
419
|
-
|
|
420
|
-
|
|
420
|
+
:where(html) {
|
|
421
|
+
overflow-y: scroll;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
@supports (scrollbar-gutter: stable) {
|
|
425
|
+
:where(html) {
|
|
426
|
+
scrollbar-gutter: stable;
|
|
427
|
+
overflow-y: auto;
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
:where(pre) {
|
|
432
|
+
white-space: pre-wrap;
|
|
421
433
|
}
|
|
422
434
|
}
|
|
423
435
|
|
|
@@ -134,6 +134,8 @@
|
|
|
134
134
|
font-kerning: normal;
|
|
135
135
|
-moz-osx-font-smoothing: grayscale;
|
|
136
136
|
-webkit-font-smoothing: antialiased;
|
|
137
|
+
hanging-punctuation: first allow-end last;
|
|
138
|
+
word-break: break-word;
|
|
137
139
|
}
|
|
138
140
|
|
|
139
141
|
:where(body) {
|
|
@@ -197,9 +199,19 @@
|
|
|
197
199
|
letter-spacing: inherit;
|
|
198
200
|
}
|
|
199
201
|
|
|
200
|
-
:where(html)
|
|
201
|
-
|
|
202
|
-
|
|
202
|
+
:where(html) {
|
|
203
|
+
overflow-y: scroll;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
@supports (scrollbar-gutter: stable) {
|
|
207
|
+
:where(html) {
|
|
208
|
+
scrollbar-gutter: stable;
|
|
209
|
+
overflow-y: auto;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
:where(pre) {
|
|
214
|
+
white-space: pre-wrap;
|
|
203
215
|
}
|
|
204
216
|
}
|
|
205
217
|
|
package/out/complete.css
CHANGED
|
@@ -352,6 +352,8 @@
|
|
|
352
352
|
font-kerning: normal;
|
|
353
353
|
-moz-osx-font-smoothing: grayscale;
|
|
354
354
|
-webkit-font-smoothing: antialiased;
|
|
355
|
+
hanging-punctuation: first allow-end last;
|
|
356
|
+
word-break: break-word;
|
|
355
357
|
}
|
|
356
358
|
|
|
357
359
|
:where(body) {
|
|
@@ -415,9 +417,19 @@
|
|
|
415
417
|
letter-spacing: inherit;
|
|
416
418
|
}
|
|
417
419
|
|
|
418
|
-
:where(html)
|
|
419
|
-
|
|
420
|
-
|
|
420
|
+
:where(html) {
|
|
421
|
+
overflow-y: scroll;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
@supports (scrollbar-gutter: stable) {
|
|
425
|
+
:where(html) {
|
|
426
|
+
scrollbar-gutter: stable;
|
|
427
|
+
overflow-y: auto;
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
:where(pre) {
|
|
432
|
+
white-space: pre-wrap;
|
|
421
433
|
}
|
|
422
434
|
}
|
|
423
435
|
|
|
@@ -2191,7 +2203,7 @@
|
|
|
2191
2203
|
}
|
|
2192
2204
|
|
|
2193
2205
|
:where(textarea:not([class]), .nc-textarea) {
|
|
2194
|
-
min-block-size: calc(
|
|
2206
|
+
min-block-size: calc(8lh + 2 * var(--_input-padding-block));
|
|
2195
2207
|
max-block-size: 80svh;
|
|
2196
2208
|
min-inline-size: var(--input-inline-size, 100%);
|
|
2197
2209
|
max-inline-size: 100%;
|
|
@@ -134,6 +134,8 @@
|
|
|
134
134
|
font-kerning: normal;
|
|
135
135
|
-moz-osx-font-smoothing: grayscale;
|
|
136
136
|
-webkit-font-smoothing: antialiased;
|
|
137
|
+
hanging-punctuation: first allow-end last;
|
|
138
|
+
word-break: break-word;
|
|
137
139
|
}
|
|
138
140
|
|
|
139
141
|
:where(body) {
|
|
@@ -197,9 +199,19 @@
|
|
|
197
199
|
letter-spacing: inherit;
|
|
198
200
|
}
|
|
199
201
|
|
|
200
|
-
:where(html)
|
|
201
|
-
|
|
202
|
-
|
|
202
|
+
:where(html) {
|
|
203
|
+
overflow-y: scroll;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
@supports (scrollbar-gutter: stable) {
|
|
207
|
+
:where(html) {
|
|
208
|
+
scrollbar-gutter: stable;
|
|
209
|
+
overflow-y: auto;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
:where(pre) {
|
|
214
|
+
white-space: pre-wrap;
|
|
203
215
|
}
|
|
204
216
|
}
|
|
205
217
|
|
|
@@ -1973,7 +1985,7 @@
|
|
|
1973
1985
|
}
|
|
1974
1986
|
|
|
1975
1987
|
:where(textarea:not([class]), .nc-textarea) {
|
|
1976
|
-
min-block-size: calc(
|
|
1988
|
+
min-block-size: calc(8lh + 2 * var(--_input-padding-block));
|
|
1977
1989
|
max-block-size: 80svh;
|
|
1978
1990
|
min-inline-size: var(--input-inline-size, 100%);
|
|
1979
1991
|
max-inline-size: 100%;
|
package/package.json
CHANGED
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
:where(textarea:not([class]), .nc-textarea) {
|
|
140
|
-
min-block-size: calc(
|
|
140
|
+
min-block-size: calc(8lh + 2 * var(--_input-padding-block));
|
|
141
141
|
max-block-size: 80svh;
|
|
142
142
|
min-inline-size: var(--input-inline-size, 100%);
|
|
143
143
|
max-inline-size: 100%;
|
|
@@ -53,6 +53,9 @@
|
|
|
53
53
|
font-kerning: normal;
|
|
54
54
|
-moz-osx-font-smoothing: grayscale;
|
|
55
55
|
-webkit-font-smoothing: antialiased;
|
|
56
|
+
|
|
57
|
+
hanging-punctuation: first allow-end last;
|
|
58
|
+
word-break: break-word;
|
|
56
59
|
}
|
|
57
60
|
|
|
58
61
|
:where(body) {
|
|
@@ -141,8 +144,18 @@
|
|
|
141
144
|
letter-spacing: inherit;
|
|
142
145
|
}
|
|
143
146
|
|
|
144
|
-
:where(html)
|
|
145
|
-
|
|
146
|
-
|
|
147
|
+
:where(html) {
|
|
148
|
+
overflow-y: scroll;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
@supports (scrollbar-gutter: stable) {
|
|
152
|
+
:where(html) {
|
|
153
|
+
overflow-y: auto;
|
|
154
|
+
scrollbar-gutter: stable;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
:where(pre) {
|
|
159
|
+
white-space: pre-wrap;
|
|
147
160
|
}
|
|
148
161
|
}
|