@ni/nimble-angular 28.8.2 → 28.9.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ni/nimble-angular",
3
- "version": "28.8.2",
3
+ "version": "28.9.1",
4
4
  "description": "Angular components for the NI Nimble Design System",
5
5
  "repository": {
6
6
  "type": "git",
@@ -259,7 +259,7 @@
259
259
  "@angular/forms": "^17.3.12",
260
260
  "@angular/localize": "^17.3.12",
261
261
  "@angular/router": "^17.3.12",
262
- "@ni/nimble-components": "^32.11.2"
262
+ "@ni/nimble-components": "^32.11.3"
263
263
  },
264
264
  "dependencies": {
265
265
  "tslib": "^2.2.0"
@@ -0,0 +1,11 @@
1
+ import { type PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Generic normalize pipe that removes the accents and special characters.
5
+ * This pipe can be used to normalize a string before performing diacritic-insensitive string comparisons.
6
+ */
7
+ export declare class DiacriticInsensitivePipe implements PipeTransform {
8
+ transform(value: string): string;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<DiacriticInsensitivePipe, never>;
10
+ static ɵpipe: i0.ɵɵPipeDeclaration<DiacriticInsensitivePipe, "diacritic-insensitive", true>;
11
+ }
@@ -1,3 +1,4 @@
1
+ export * from './diacritic-insensitive.pipe';
1
2
  export * from './duration.pipe';
2
3
  export * from './number-text.pipe';
3
4
  export { byteUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/byte-unit-scale';
@@ -1,5 +1,6 @@
1
- import { TablePageObject as NimbleComponentsTablePageObject } from '@ni/nimble-components/dist/esm/table/testing/table.pageobject';
1
+ import { TablePageObject as NimbleComponentsTablePageObject, type SortedColumn } from '@ni/nimble-components/dist/esm/table/testing/table.pageobject';
2
2
  import type { Table, TableRecord } from '@ni/nimble-angular/table';
3
+ export type { SortedColumn };
3
4
  /**
4
5
  * The page object for the `nimble-table` component to provide consistent ways of querying
5
6
  * and interacting with the component during tests.