@ni/nimble-components 18.11.1 → 18.12.0
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 +16 -0
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +873 -872
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/icon-base/icon-metadata.js +3 -0
- package/dist/esm/icon-base/icon-metadata.js.map +1 -1
- package/dist/esm/icons/all-icons.d.ts +1 -0
- package/dist/esm/icons/all-icons.js +1 -0
- package/dist/esm/icons/all-icons.js.map +1 -1
- package/dist/esm/icons/file-export.d.ts +13 -0
- package/dist/esm/icons/file-export.js +16 -0
- package/dist/esm/icons/file-export.js.map +1 -0
- package/package.json +3 -2
|
@@ -19086,6 +19086,10 @@
|
|
|
19086
19086
|
name: 'file_drawer_16_x_16',
|
|
19087
19087
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 4v10h12V4Zm8 4H6V6h4Zm4-5H2V2h12Z"/></svg>`
|
|
19088
19088
|
};
|
|
19089
|
+
const fileExport = {
|
|
19090
|
+
name: 'file_export',
|
|
19091
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.8 13.6H2V3h4.2v4.2h4.2V10c-2 0-3.6 1.6-3.6 3.6Zm3.7-7.4H7.3V3l3.2 3.2Z"/><path d="M11.6 9.2v1.6c-1.9-.2-3.6 1.1-3.9 3 .6-.7 2.2-2.2 3.9-1.8v1.5l2.4-2.1-2.4-2.2Z"/></svg>`
|
|
19092
|
+
};
|
|
19089
19093
|
const fileSearch16X16 = {
|
|
19090
19094
|
name: 'file_search_16_x_16',
|
|
19091
19095
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 6v6h-3.333a3.662 3.662 0 0 0 .249-1.302A3.701 3.701 0 0 0 7.22 7 3.654 3.654 0 0 0 6 7.223V2h4v4Zm-3-4v3h3Zm-1.126 8.698a2.697 2.697 0 0 1-4.73 1.772L2.521 14l-.48-.823 2.613-1.523a2.698 2.698 0 1 1 5.22-.956Zm-.952 0a1.745 1.745 0 1 0-1.745 1.745 1.747 1.747 0 0 0 1.745-1.745Z"/></svg>`
|
|
@@ -22146,6 +22150,18 @@
|
|
|
22146
22150
|
registerIcon('icon-file-drawer', IconFileDrawer);
|
|
22147
22151
|
DesignSystem.tagFor(IconFileDrawer);
|
|
22148
22152
|
|
|
22153
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
22154
|
+
/**
|
|
22155
|
+
* The icon component for the 'fileExport' icon
|
|
22156
|
+
*/
|
|
22157
|
+
class IconFileExport extends Icon {
|
|
22158
|
+
constructor() {
|
|
22159
|
+
super(fileExport);
|
|
22160
|
+
}
|
|
22161
|
+
}
|
|
22162
|
+
registerIcon('icon-file-export', IconFileExport);
|
|
22163
|
+
DesignSystem.tagFor(IconFileExport);
|
|
22164
|
+
|
|
22149
22165
|
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
22150
22166
|
/**
|
|
22151
22167
|
* The icon component for the 'fileSearch' icon
|