@ni/nimble-angular 32.0.1 → 32.1.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/chip/index.d.ts +5 -0
- package/chip/nimble-chip.directive.d.ts +24 -0
- package/chip/nimble-chip.module.d.ts +9 -0
- package/chip/public-api.d.ts +2 -0
- package/chip/testing/chip.pageobject.d.ts +2 -0
- package/chip/testing/index.d.ts +5 -0
- package/chip/testing/public-api.d.ts +1 -0
- package/fesm2022/ni-nimble-angular-card.mjs +7 -7
- package/fesm2022/ni-nimble-angular-chip-testing.mjs +6 -0
- package/fesm2022/ni-nimble-angular-chip-testing.mjs.map +1 -0
- package/fesm2022/ni-nimble-angular-chip.mjs +70 -0
- package/fesm2022/ni-nimble-angular-chip.mjs.map +1 -0
- package/fesm2022/ni-nimble-angular-label-provider-core.mjs +10 -10
- package/fesm2022/ni-nimble-angular-label-provider-rich-text.mjs +10 -10
- package/fesm2022/ni-nimble-angular-label-provider-table.mjs +10 -10
- package/fesm2022/ni-nimble-angular-mapping-base.mjs +3 -3
- package/fesm2022/ni-nimble-angular-mapping-empty.mjs +7 -7
- package/fesm2022/ni-nimble-angular-mapping-icon.mjs +7 -7
- package/fesm2022/ni-nimble-angular-mapping-spinner.mjs +7 -7
- package/fesm2022/ni-nimble-angular-mapping-text.mjs +7 -7
- package/fesm2022/ni-nimble-angular-mapping-user.mjs +7 -7
- package/fesm2022/ni-nimble-angular-pipes.mjs +9 -9
- package/fesm2022/ni-nimble-angular-rich-text-editor.mjs +7 -7
- package/fesm2022/ni-nimble-angular-rich-text-mention-users.mjs +7 -7
- package/fesm2022/ni-nimble-angular-rich-text-mention.mjs +3 -3
- package/fesm2022/ni-nimble-angular-rich-text-viewer.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-anchor.mjs +10 -10
- package/fesm2022/ni-nimble-angular-table-column-date-text.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-duration-text.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-mapping.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-menu-button.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-number-text.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-text.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column.mjs +3 -3
- package/fesm2022/ni-nimble-angular-table.mjs +7 -7
- package/fesm2022/ni-nimble-angular-unit-byte.mjs +7 -7
- package/fesm2022/ni-nimble-angular-unit-celsius.mjs +7 -7
- package/fesm2022/ni-nimble-angular-unit-fahrenheit.mjs +7 -7
- package/fesm2022/ni-nimble-angular-unit-volt.mjs +7 -7
- package/fesm2022/ni-nimble-angular.mjs +2005 -2005
- package/package.json +30 -21
package/package.json
CHANGED
|
@@ -1,22 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/nimble-angular",
|
|
3
|
-
"version": "32.0
|
|
3
|
+
"version": "32.1.0",
|
|
4
4
|
"description": "Angular components for the NI Nimble Design System",
|
|
5
|
-
"
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/ni/nimble.git"
|
|
8
|
-
},
|
|
9
|
-
"publishConfig": {
|
|
10
|
-
"access": "public"
|
|
11
|
-
},
|
|
12
|
-
"author": {
|
|
13
|
-
"name": "National Instruments"
|
|
14
|
-
},
|
|
15
|
-
"license": "MIT",
|
|
16
|
-
"bugs": {
|
|
17
|
-
"url": "https://github.com/ni/nimble/issues"
|
|
18
|
-
},
|
|
19
|
-
"homepage": "https://github.com/ni/nimble#readme",
|
|
5
|
+
"type": "module",
|
|
20
6
|
"exports": {
|
|
21
7
|
"./styles/*": {
|
|
22
8
|
"sass": "./styles/*.scss"
|
|
@@ -32,6 +18,10 @@
|
|
|
32
18
|
"types": "./card/index.d.ts",
|
|
33
19
|
"default": "./fesm2022/ni-nimble-angular-card.mjs"
|
|
34
20
|
},
|
|
21
|
+
"./chip": {
|
|
22
|
+
"types": "./chip/index.d.ts",
|
|
23
|
+
"default": "./fesm2022/ni-nimble-angular-chip.mjs"
|
|
24
|
+
},
|
|
35
25
|
"./internal-utilities": {
|
|
36
26
|
"types": "./internal-utilities/index.d.ts",
|
|
37
27
|
"default": "./fesm2022/ni-nimble-angular-internal-utilities.mjs"
|
|
@@ -56,6 +46,10 @@
|
|
|
56
46
|
"types": "./breadcrumb/testing/index.d.ts",
|
|
57
47
|
"default": "./fesm2022/ni-nimble-angular-breadcrumb-testing.mjs"
|
|
58
48
|
},
|
|
49
|
+
"./chip/testing": {
|
|
50
|
+
"types": "./chip/testing/index.d.ts",
|
|
51
|
+
"default": "./fesm2022/ni-nimble-angular-chip-testing.mjs"
|
|
52
|
+
},
|
|
59
53
|
"./combobox/testing": {
|
|
60
54
|
"types": "./combobox/testing/index.d.ts",
|
|
61
55
|
"default": "./fesm2022/ni-nimble-angular-combobox-testing.mjs"
|
|
@@ -185,17 +179,32 @@
|
|
|
185
179
|
"default": "./fesm2022/ni-nimble-angular-table-column-menu-button-testing.mjs"
|
|
186
180
|
}
|
|
187
181
|
},
|
|
182
|
+
"repository": {
|
|
183
|
+
"type": "git",
|
|
184
|
+
"url": "git+https://github.com/ni/nimble.git"
|
|
185
|
+
},
|
|
186
|
+
"publishConfig": {
|
|
187
|
+
"access": "public"
|
|
188
|
+
},
|
|
189
|
+
"author": {
|
|
190
|
+
"name": "National Instruments"
|
|
191
|
+
},
|
|
192
|
+
"license": "MIT",
|
|
193
|
+
"bugs": {
|
|
194
|
+
"url": "https://github.com/ni/nimble/issues"
|
|
195
|
+
},
|
|
196
|
+
"homepage": "https://github.com/ni/nimble#readme",
|
|
197
|
+
"dependencies": {
|
|
198
|
+
"tslib": "^2.2.0"
|
|
199
|
+
},
|
|
188
200
|
"peerDependencies": {
|
|
189
201
|
"@angular/common": "^19.2.17",
|
|
190
202
|
"@angular/core": "^19.2.17",
|
|
191
203
|
"@angular/forms": "^19.2.17",
|
|
192
204
|
"@angular/localize": "^19.2.17",
|
|
193
205
|
"@angular/router": "^19.2.17",
|
|
194
|
-
"@ni/nimble-components": "^35.0.
|
|
195
|
-
"@ni/unit-format": "^1.0.
|
|
196
|
-
},
|
|
197
|
-
"dependencies": {
|
|
198
|
-
"tslib": "^2.2.0"
|
|
206
|
+
"@ni/nimble-components": "^35.0.2",
|
|
207
|
+
"@ni/unit-format": "^1.0.2"
|
|
199
208
|
},
|
|
200
209
|
"module": "fesm2022/ni-nimble-angular.mjs",
|
|
201
210
|
"typings": "index.d.ts",
|