@ni/nimble-components 32.2.8 → 32.2.9
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/all-components-bundle.js +5 -1
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +5 -1
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/text-field/styles.js +6 -2
- package/dist/esm/text-field/styles.js.map +1 -1
- package/package.json +1 -1
|
@@ -74278,8 +74278,9 @@ focus outline in that case.
|
|
|
74278
74278
|
align-items: center;
|
|
74279
74279
|
justify-content: center;
|
|
74280
74280
|
border: 0px solid rgba(${borderRgbPartialColor}, 0.3);
|
|
74281
|
-
gap: ${
|
|
74281
|
+
gap: ${smallPadding};
|
|
74282
74282
|
padding: ${borderWidth};
|
|
74283
|
+
padding-left: calc(${borderWidth} + ${smallPadding});
|
|
74283
74284
|
}
|
|
74284
74285
|
|
|
74285
74286
|
:host([readonly]) .root {
|
|
@@ -74334,6 +74335,7 @@ focus outline in that case.
|
|
|
74334
74335
|
slot[name='start']::slotted(*) {
|
|
74335
74336
|
flex: none;
|
|
74336
74337
|
opacity: 0.6;
|
|
74338
|
+
margin-right: ${smallPadding};
|
|
74337
74339
|
}
|
|
74338
74340
|
|
|
74339
74341
|
:host([disabled]) slot[name='start']::slotted(*) {
|
|
@@ -74384,6 +74386,7 @@ focus outline in that case.
|
|
|
74384
74386
|
[part='end']::after {
|
|
74385
74387
|
content: '';
|
|
74386
74388
|
position: absolute;
|
|
74389
|
+
margin-left: calc(-1 * (${borderWidth} + ${smallPadding}));
|
|
74387
74390
|
bottom: calc(-1 * ${borderWidth});
|
|
74388
74391
|
width: 0px;
|
|
74389
74392
|
height: 0px;
|
|
@@ -74455,6 +74458,7 @@ focus outline in that case.
|
|
|
74455
74458
|
.root {
|
|
74456
74459
|
border-width: ${borderWidth};
|
|
74457
74460
|
padding: 0;
|
|
74461
|
+
padding-left: ${smallPadding};
|
|
74458
74462
|
}
|
|
74459
74463
|
`), appearanceBehavior(TextFieldAppearance.frameless, css `
|
|
74460
74464
|
.control {
|