@oliasoft-open-source/react-ui-library 4.0.0-beta-20 → 4.0.0-beta-21
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/global.css +7 -6
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -2368,31 +2368,32 @@ html[data-theme='dark'] {
|
|
|
2368
2368
|
._fileInput_1elar_1 {
|
|
2369
2369
|
display: none !important;
|
|
2370
2370
|
}
|
|
2371
|
-
.
|
|
2371
|
+
._label_1dz6f_1 {
|
|
2372
2372
|
display: flex;
|
|
2373
2373
|
align-items: center;
|
|
2374
2374
|
}
|
|
2375
|
-
.
|
|
2375
|
+
._label_1dz6f_1._labelLeft_1dz6f_5 {
|
|
2376
2376
|
margin-bottom: 0;
|
|
2377
2377
|
flex-shrink: 0;
|
|
2378
2378
|
padding-right: var(--spacing-2);
|
|
2379
2379
|
}
|
|
2380
|
-
.
|
|
2380
|
+
._label_1dz6f_1._labelLeft_1dz6f_5 > label {
|
|
2381
2381
|
margin-bottom: 0;
|
|
2382
2382
|
}
|
|
2383
|
-
.
|
|
2383
|
+
._label_1dz6f_1 ._icons_1dz6f_13 {
|
|
2384
2384
|
display: inline-flex;
|
|
2385
2385
|
font-size: 1.25em;
|
|
2386
2386
|
}
|
|
2387
|
-
.
|
|
2387
|
+
._label_1dz6f_1 ._icons_1dz6f_13 > * {
|
|
2388
2388
|
margin-left: var(--spacing-1);
|
|
2389
2389
|
}
|
|
2390
|
-
.
|
|
2390
|
+
._label_1dz6f_1 > label {
|
|
2391
2391
|
display: flex;
|
|
2392
2392
|
align-items: center;
|
|
2393
2393
|
font-weight: bold;
|
|
2394
2394
|
font-size: var(--font-size);
|
|
2395
2395
|
margin-bottom: var(--spacing-1);
|
|
2396
|
+
line-height: 1.25;
|
|
2396
2397
|
}
|
|
2397
2398
|
._field_2ll8c_1 {
|
|
2398
2399
|
margin-bottom: var(--spacing-3);
|
package/dist/index.js
CHANGED
|
@@ -17037,9 +17037,9 @@ FileInput.propTypes = {
|
|
|
17037
17037
|
onChange: propTypes$1.exports.func,
|
|
17038
17038
|
testId: propTypes$1.exports.string
|
|
17039
17039
|
};
|
|
17040
|
-
const label$7 = "
|
|
17041
|
-
const labelLeft$1 = "
|
|
17042
|
-
const icons$1 = "
|
|
17040
|
+
const label$7 = "_label_1dz6f_1";
|
|
17041
|
+
const labelLeft$1 = "_labelLeft_1dz6f_5";
|
|
17042
|
+
const icons$1 = "_icons_1dz6f_13";
|
|
17043
17043
|
const styles$w = {
|
|
17044
17044
|
label: label$7,
|
|
17045
17045
|
labelLeft: labelLeft$1,
|
package/package.json
CHANGED