Skip to content

Commit

Permalink
Merge branch 'main' into table-height
Browse files Browse the repository at this point in the history
  • Loading branch information
mollykreis committed Jan 29, 2025
2 parents 34ddf95 + e987724 commit 4765613
Show file tree
Hide file tree
Showing 25 changed files with 237 additions and 35 deletions.
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions packages/angular-workspace/nimble-angular/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,36 @@
{
"name": "@ni/nimble-angular",
"entries": [
{
"date": "Wed, 29 Jan 2025 18:28:30 GMT",
"version": "28.9.1",
"tag": "@ni/nimble-angular_v28.9.1",
"comments": {
"patch": [
{
"author": "beachball",
"package": "@ni/nimble-angular",
"comment": "Bump @ni/nimble-components to v32.11.3",
"commit": "not available"
}
]
}
},
{
"date": "Wed, 29 Jan 2025 17:51:30 GMT",
"version": "28.9.0",
"tag": "@ni/nimble-angular_v28.9.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@ni/nimble-angular",
"commit": "2da4a675fd278413bee4afbc7c7717f40c5cb93f",
"comment": "Export DiacriticInsensitivePipe, Icon base, and Table SortedColumn types"
}
]
}
},
{
"date": "Thu, 16 Jan 2025 23:05:03 GMT",
"version": "28.8.2",
Expand Down
18 changes: 17 additions & 1 deletion packages/angular-workspace/nimble-angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
# Change Log - @ni/nimble-angular

<!-- This log was last generated on Thu, 16 Jan 2025 23:05:03 GMT and should not be manually modified. -->
<!-- This log was last generated on Wed, 29 Jan 2025 18:28:30 GMT and should not be manually modified. -->

<!-- Start content -->

## 28.9.1

Wed, 29 Jan 2025 18:28:30 GMT

### Patches

- Bump @ni/nimble-components to v32.11.3

## 28.9.0

Wed, 29 Jan 2025 17:51:30 GMT

### Minor changes

- Export DiacriticInsensitivePipe, Icon base, and Table SortedColumn types ([ni/nimble@2da4a67](https://github.com/ni/nimble/commit/2da4a675fd278413bee4afbc7c7717f40c5cb93f))

## 28.8.2

Thu, 16 Jan 2025 23:05:03 GMT
Expand Down
4 changes: 2 additions & 2 deletions packages/angular-workspace/nimble-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ni/nimble-angular",
"version": "28.8.2",
"version": "28.9.1",
"description": "Angular components for the NI Nimble Design System",
"scripts": {
"invoke-publish": "npm run invoke-publish:setup && cd ../dist/nimble-angular && npm publish",
Expand Down Expand Up @@ -32,7 +32,7 @@
"@angular/forms": "^17.3.12",
"@angular/localize": "^17.3.12",
"@angular/router": "^17.3.12",
"@ni/nimble-components": "^32.11.2"
"@ni/nimble-components": "^32.11.3"
},
"dependencies": {
"tslib": "^2.2.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { Pipe, type PipeTransform } from '@angular/core';
import { diacriticInsensitiveStringNormalizer } from '@ni/nimble-components/dist/esm/utilities/models/string-normalizers';

/**
* Generic normalize pipe that removes the accents and special characters.
* This pipe can be used to normalize a string before performing diacritic-insensitive string comparisons.
*/
@Pipe({
name: 'diacritic-insensitive',
standalone: true
})
export class DiacriticInsensitivePipe implements PipeTransform {
public transform(value: string): string {
return diacriticInsensitiveStringNormalizer(value);
}
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './diacritic-insensitive.pipe';
export * from './duration.pipe';
export * from './number-text.pipe';
export { byteUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/byte-unit-scale';
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { DiacriticInsensitivePipe } from '../diacritic-insensitive.pipe';

describe('DiacriticInsensitivePipe', () => {
it('can be constructed and used', () => {
const pipe = new DiacriticInsensitivePipe();
expect(pipe.transform('Français é, è, ê and ë (French characters)')).toBe('francais e, e, e and e (french characters)');
});
});
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';
import type { Icon } from '@ni/nimble-components/dist/esm/icon-base';
import { Icon } from '@ni/nimble-components/dist/esm/icon-base';
import type { IconSeverity } from '@ni/nimble-components/dist/esm/icon-base/types';

export { Icon };

/**
* Base class for the nimble icon directives
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { TablePageObject as NimbleComponentsTablePageObject } from '@ni/nimble-components/dist/esm/table/testing/table.pageobject';
import { TablePageObject as NimbleComponentsTablePageObject, type SortedColumn } from '@ni/nimble-components/dist/esm/table/testing/table.pageobject';
import { waitForUpdatesAsync } from '@ni/nimble-angular';
import type { Table, TableRecord } from '@ni/nimble-angular/table';

export type { SortedColumn };

/**
* The page object for the `nimble-table` component to provide consistent ways of querying
* and interacting with the component during tests.
Expand Down
15 changes: 15 additions & 0 deletions packages/angular-workspace/spright-angular/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
{
"name": "@ni/spright-angular",
"entries": [
{
"date": "Wed, 29 Jan 2025 18:28:30 GMT",
"version": "5.3.7",
"tag": "@ni/spright-angular_v5.3.7",
"comments": {
"patch": [
{
"author": "beachball",
"package": "@ni/spright-angular",
"comment": "Bump @ni/spright-components to v4.3.8",
"commit": "not available"
}
]
}
},
{
"date": "Thu, 16 Jan 2025 23:05:03 GMT",
"version": "5.3.6",
Expand Down
10 changes: 9 additions & 1 deletion packages/angular-workspace/spright-angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# Change Log - @ni/spright-angular

<!-- This log was last generated on Thu, 16 Jan 2025 23:05:03 GMT and should not be manually modified. -->
<!-- This log was last generated on Wed, 29 Jan 2025 18:28:30 GMT and should not be manually modified. -->

<!-- Start content -->

## 5.3.7

Wed, 29 Jan 2025 18:28:30 GMT

### Patches

- Bump @ni/spright-components to v4.3.8

## 5.3.6

Thu, 16 Jan 2025 23:05:03 GMT
Expand Down
4 changes: 2 additions & 2 deletions packages/angular-workspace/spright-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ni/spright-angular",
"version": "5.3.6",
"version": "5.3.7",
"description": "Angular components for NI Spright",
"scripts": {
"invoke-publish": "npm run invoke-publish:setup && cd ../dist/spright-angular && npm publish",
Expand All @@ -24,7 +24,7 @@
"peerDependencies": {
"@angular/common": "^17.3.12",
"@angular/core": "^17.3.12",
"@ni/spright-components": "^4.3.7"
"@ni/spright-components": "^4.3.8"
},
"dependencies": {
"tslib": "^2.2.0"
Expand Down
15 changes: 15 additions & 0 deletions packages/blazor-workspace/NimbleBlazor/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
{
"name": "@ni/nimble-blazor",
"entries": [
{
"date": "Wed, 29 Jan 2025 18:28:30 GMT",
"version": "19.4.3",
"tag": "@ni/nimble-blazor_v19.4.3",
"comments": {
"patch": [
{
"author": "beachball",
"package": "@ni/nimble-blazor",
"comment": "Bump @ni/nimble-components to v32.11.3",
"commit": "not available"
}
]
}
},
{
"date": "Thu, 16 Jan 2025 23:05:03 GMT",
"version": "19.4.2",
Expand Down
10 changes: 9 additions & 1 deletion packages/blazor-workspace/NimbleBlazor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# Change Log - @ni/nimble-blazor

<!-- This log was last generated on Thu, 16 Jan 2025 23:05:03 GMT and should not be manually modified. -->
<!-- This log was last generated on Wed, 29 Jan 2025 18:28:30 GMT and should not be manually modified. -->

<!-- Start content -->

## 19.4.3

Wed, 29 Jan 2025 18:28:30 GMT

### Patches

- Bump @ni/nimble-components to v32.11.3

## 19.4.2

Thu, 16 Jan 2025 23:05:03 GMT
Expand Down
4 changes: 2 additions & 2 deletions packages/blazor-workspace/NimbleBlazor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ni/nimble-blazor",
"version": "19.4.2",
"version": "19.4.3",
"description": "Blazor components for the NI Nimble Design System",
"scripts": {
"pack": "cross-env-shell dotnet pack -c Release -p:PackageVersion=$npm_package_version --output ../dist",
Expand All @@ -25,7 +25,7 @@
"!*"
],
"peerDependencies": {
"@ni/nimble-components": "^32.11.2",
"@ni/nimble-components": "^32.11.3",
"@ni/nimble-tokens": "^8.6.0",
"cross-env": "^7.0.3",
"rimraf": "^6.0.0"
Expand Down
15 changes: 15 additions & 0 deletions packages/blazor-workspace/SprightBlazor/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
{
"name": "@ni/spright-blazor",
"entries": [
{
"date": "Wed, 29 Jan 2025 18:28:30 GMT",
"version": "3.2.7",
"tag": "@ni/spright-blazor_v3.2.7",
"comments": {
"patch": [
{
"author": "beachball",
"package": "@ni/spright-blazor",
"comment": "Bump @ni/spright-components to v4.3.8",
"commit": "not available"
}
]
}
},
{
"date": "Thu, 16 Jan 2025 23:05:03 GMT",
"version": "3.2.6",
Expand Down
10 changes: 9 additions & 1 deletion packages/blazor-workspace/SprightBlazor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# Change Log - @ni/spright-blazor

<!-- This log was last generated on Thu, 16 Jan 2025 23:05:03 GMT and should not be manually modified. -->
<!-- This log was last generated on Wed, 29 Jan 2025 18:28:30 GMT and should not be manually modified. -->

<!-- Start content -->

## 3.2.7

Wed, 29 Jan 2025 18:28:30 GMT

### Patches

- Bump @ni/spright-components to v4.3.8

## 3.2.6

Thu, 16 Jan 2025 23:05:03 GMT
Expand Down
4 changes: 2 additions & 2 deletions packages/blazor-workspace/SprightBlazor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ni/spright-blazor",
"version": "3.2.6",
"version": "3.2.7",
"description": "Blazor components for Spright",
"scripts": {
"pack": "cross-env-shell dotnet pack -c Release -p:PackageVersion=$npm_package_version --output ../dist",
Expand All @@ -25,7 +25,7 @@
"!*"
],
"peerDependencies": {
"@ni/spright-components": "^4.3.7",
"@ni/spright-components": "^4.3.8",
"cross-env": "^7.0.3",
"rimraf": "^6.0.0"
}
Expand Down
Loading

0 comments on commit 4765613

Please sign in to comment.