@ni/nimble-components 35.12.3 → 35.12.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/all-components-bundle.js +10 -3
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +5 -4
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/custom-elements.json +17 -0
- package/dist/custom-elements.md +11 -9
- package/dist/esm/switch/styles.js +7 -4
- package/dist/esm/switch/styles.js.map +1 -1
- package/dist/esm/text-field/index.d.ts +9 -0
- package/dist/esm/text-field/index.js +3 -0
- package/dist/esm/text-field/index.js.map +1 -1
- package/dist/esm/text-field/template.js +1 -0
- package/dist/esm/text-field/template.js.map +1 -1
- package/package.json +1 -1
|
@@ -70383,9 +70383,6 @@ img.ProseMirror-separator {
|
|
|
70383
70383
|
--ni-private-switch-indicator-size: 24px;
|
|
70384
70384
|
--ni-private-switch-indicator-inner-size: 18px;
|
|
70385
70385
|
--ni-private-switch-indicator-margin: -2px;
|
|
70386
|
-
padding-bottom: calc(
|
|
70387
|
-
${controlHeight} - var(--ni-private-switch-height)
|
|
70388
|
-
);
|
|
70389
70386
|
}
|
|
70390
70387
|
|
|
70391
70388
|
:host([disabled]) {
|
|
@@ -70410,6 +70407,12 @@ img.ProseMirror-separator {
|
|
|
70410
70407
|
.switch-container {
|
|
70411
70408
|
display: flex;
|
|
70412
70409
|
align-items: center;
|
|
70410
|
+
${'' /*
|
|
70411
|
+
Reserve space around the 24px control to fill a 32px height until we have a switch 32 design.
|
|
70412
|
+
See: https://github.com/ni/nimble/issues/3013
|
|
70413
|
+
*/}
|
|
70414
|
+
padding-top: 2px;
|
|
70415
|
+
padding-bottom: 6px;
|
|
70413
70416
|
}
|
|
70414
70417
|
|
|
70415
70418
|
slot[name='unchecked-message']::slotted(*) {
|
|
@@ -84289,6 +84292,7 @@ focus outline in that case.
|
|
|
84289
84292
|
?spellcheck="${x => x.spellcheck}"
|
|
84290
84293
|
:value="${x => x.value}"
|
|
84291
84294
|
type="${x => x.type}"
|
|
84295
|
+
autocomplete="${x => x.autocomplete}"
|
|
84292
84296
|
aria-atomic="${x => x.ariaAtomic}"
|
|
84293
84297
|
aria-busy="${x => x.ariaBusy}"
|
|
84294
84298
|
aria-controls="${x => x.ariaControls}"
|
|
@@ -84337,6 +84341,9 @@ focus outline in that case.
|
|
|
84337
84341
|
__decorate([
|
|
84338
84342
|
attr
|
|
84339
84343
|
], TextField.prototype, "appearance", void 0);
|
|
84344
|
+
__decorate([
|
|
84345
|
+
attr
|
|
84346
|
+
], TextField.prototype, "autocomplete", void 0);
|
|
84340
84347
|
__decorate([
|
|
84341
84348
|
attr({ attribute: 'full-bleed', mode: 'boolean' })
|
|
84342
84349
|
], TextField.prototype, "fullBleed", void 0);
|