@ni/nimble-components 19.2.1 → 19.2.3

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.
@@ -16232,7 +16232,7 @@
16232
16232
 
16233
16233
  /**
16234
16234
  * Do not edit directly
16235
- * Generated on Mon, 12 Jun 2023 13:02:11 GMT
16235
+ * Generated on Tue, 13 Jun 2023 14:32:32 GMT
16236
16236
  */
16237
16237
  const Information100DarkUi = "#a46eff";
16238
16238
  const Information100LightUi = "#804ad9";
@@ -20541,16 +20541,14 @@
20541
20541
  // See: https://github.com/microsoft/fast/issues/6749
20542
20542
  set value(next) {
20543
20543
  super.value = next;
20544
- if (!this.valueUpdatedByInput) {
20545
- // Workaround using index notation to manipulate private member
20546
- // Can remove when following resolved: https://github.com/microsoft/fast/issues/6749
20547
- // eslint-disable-next-line @typescript-eslint/dot-notation
20548
- this['filter'] = '';
20549
- this.filterOptions();
20550
- this.selectedIndex = this.options
20551
- .map(option => option.text)
20552
- .indexOf(this.value);
20553
- }
20544
+ // Workaround using index notation to manipulate private member
20545
+ // Can remove when following resolved: https://github.com/microsoft/fast/issues/6749
20546
+ // eslint-disable-next-line @typescript-eslint/dot-notation
20547
+ this['filter'] = next;
20548
+ this.filterOptions();
20549
+ this.selectedIndex = this.options
20550
+ .map(option => option.text)
20551
+ .indexOf(this.value);
20554
20552
  }
20555
20553
  // Workaround for https://github.com/microsoft/fast/issues/5123
20556
20554
  setPositioning() {
@@ -29071,7 +29069,7 @@
29071
29069
 
29072
29070
  <div class="group-row-header-content">
29073
29071
  ${x => x.groupColumn?.columnInternals.groupHeaderViewTemplate}
29074
- <div class="group-row-child-count">(${x => x.leafItemCount})</span>
29072
+ <span class="group-row-child-count">(${x => x.leafItemCount})</span>
29075
29073
  </div>
29076
29074
  </template>
29077
29075
  `;