@ni/nimble-components 18.1.3 → 18.2.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.
@@ -18394,6 +18394,10 @@
18394
18394
  name: 'filter_16_x_16',
18395
18395
  data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 3.045v1.29h.787a2.069 2.069 0 1 0 2.907 2.903l1.32 2.173v4.522l1.973-1.846V9.411l3.878-5.076h1.134v-1.29Zm2.033 4.059a1.154 1.154 0 0 1 0-2.308c.023 0 .045.006.068.007l1.002 1.575a1.154 1.154 0 0 1-1.07.726Z"/></svg>`
18396
18396
  };
18397
+ const floppyDisk16X16 = {
18398
+ name: 'floppy_disk_16_x_16',
18399
+ data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.455 4H3.583A.585.585 0 0 0 3 4.598V11.5l1.5 1.497 7.858.003c.33 0 .6-.27.6-.6L13 4.545c0-.33-.215-.546-.545-.546ZM11 12H8v-2H6v2H5V9h6v3Zm1-4H4V5h8v3Z"/></svg>`
18400
+ };
18397
18401
  const floppyDiskCheckmark16X16 = {
18398
18402
  name: 'floppy_disk_checkmark_16_x_16',
18399
18403
  data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.455 5h-1.041l-1.005 1H12v3H4V6h3.782L6.79 5H3.583A.585.585 0 0 0 3 5.598V12.5l1.5 1.497 7.858.003a.602.602 0 0 0 .6-.6L13 5.545A.513.513 0 0 0 12.455 5ZM11 13H8v-2H6v2H5v-3h6Zm2-10.99L9.091 5.9 7 3.79l.919-.89 1.164 1.208L12.128 1.1l.872.91"/></svg>`
@@ -21255,6 +21259,17 @@
21255
21259
  }
21256
21260
  registerIcon('icon-filter', IconFilter);
21257
21261
 
21262
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
21263
+ /**
21264
+ * The icon component for the 'floppyDisk' icon
21265
+ */
21266
+ class IconFloppyDisk extends Icon {
21267
+ constructor() {
21268
+ super(floppyDisk16X16);
21269
+ }
21270
+ }
21271
+ registerIcon('icon-floppy-disk', IconFloppyDisk);
21272
+
21258
21273
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
21259
21274
  /**
21260
21275
  * The icon component for the 'floppyDiskCheckmark' icon
@@ -26730,6 +26745,13 @@
26730
26745
  super.connectedCallback();
26731
26746
  this.customCellView = this.cellTemplate?.render(this.cellState, this.cellContentContainer);
26732
26747
  }
26748
+ disconnectedCallback() {
26749
+ super.disconnectedCallback();
26750
+ if (this.customCellView) {
26751
+ this.customCellView.dispose();
26752
+ this.customCellView = undefined;
26753
+ }
26754
+ }
26733
26755
  cellStateChanged() {
26734
26756
  this.customCellView?.bind(this.cellState, defaultExecutionContext);
26735
26757
  }