@ni/nimble-components 20.2.15 → 20.2.16
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 +35 -19
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +30 -17
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/anchor/template.d.ts +1 -1
- package/dist/esm/anchor/template.js +34 -19
- package/dist/esm/anchor/template.js.map +1 -1
- package/dist/esm/src/anchor/template.d.ts +1 -1
- package/package.json +1 -1
|
@@ -16288,7 +16288,7 @@
|
|
|
16288
16288
|
|
|
16289
16289
|
/**
|
|
16290
16290
|
* Do not edit directly
|
|
16291
|
-
* Generated on Thu, 14 Sep 2023
|
|
16291
|
+
* Generated on Thu, 14 Sep 2023 19:33:47 GMT
|
|
16292
16292
|
*/
|
|
16293
16293
|
|
|
16294
16294
|
const Information100DarkUi = "#a46eff";
|
|
@@ -17067,8 +17067,7 @@
|
|
|
17067
17067
|
`;
|
|
17068
17068
|
|
|
17069
17069
|
// prettier-ignore
|
|
17070
|
-
const template$z = (
|
|
17071
|
-
<a
|
|
17070
|
+
const template$z = (_context, definition) => html `<a
|
|
17072
17071
|
class="control"
|
|
17073
17072
|
part="control"
|
|
17074
17073
|
download="${x => x.download}"
|
|
@@ -17100,22 +17099,39 @@
|
|
|
17100
17099
|
aria-relevant="${x => x.ariaRelevant}"
|
|
17101
17100
|
aria-roledescription="${x => x.ariaRoledescription}"
|
|
17102
17101
|
${ref('control')}
|
|
17103
|
-
|
|
17104
|
-
|
|
17105
|
-
|
|
17106
|
-
|
|
17107
|
-
|
|
17108
|
-
|
|
17109
|
-
|
|
17110
|
-
|
|
17111
|
-
|
|
17112
|
-
|
|
17113
|
-
|
|
17114
|
-
|
|
17115
|
-
|
|
17116
|
-
|
|
17117
|
-
|
|
17118
|
-
|
|
17102
|
+
>${
|
|
17103
|
+
/* Start and End slot templates inlined to avoid extra whitespace.
|
|
17104
|
+
See https://github.com/microsoft/fast/issues/6557
|
|
17105
|
+
|
|
17106
|
+
Whitespace intentionally avoided between tags for inline styles */ ''}<span
|
|
17107
|
+
part="start"
|
|
17108
|
+
${ref('startContainer')}
|
|
17109
|
+
class="${_x => (definition.start ? 'start' : null)}"
|
|
17110
|
+
><slot
|
|
17111
|
+
name="start"
|
|
17112
|
+
${ref('start')}
|
|
17113
|
+
@slotchange="${x => x.handleStartContentChange()}">
|
|
17114
|
+
${definition.start || ''}
|
|
17115
|
+
</slot
|
|
17116
|
+
></span
|
|
17117
|
+
><span
|
|
17118
|
+
class="content"
|
|
17119
|
+
part="content"
|
|
17120
|
+
><slot
|
|
17121
|
+
${slotted('defaultSlottedContent')}
|
|
17122
|
+
></slot
|
|
17123
|
+
></span
|
|
17124
|
+
><span
|
|
17125
|
+
part="end"
|
|
17126
|
+
${ref('endContainer')}
|
|
17127
|
+
class=${_x => (definition.end ? 'end' : null)}
|
|
17128
|
+
><slot
|
|
17129
|
+
name="end"
|
|
17130
|
+
${ref('end')}
|
|
17131
|
+
@slotchange="${x => x.handleEndContentChange()}">
|
|
17132
|
+
${definition.end || ''}
|
|
17133
|
+
</slot
|
|
17134
|
+
></span></a>`;
|
|
17119
17135
|
|
|
17120
17136
|
/**
|
|
17121
17137
|
* A nimble-styled anchor
|