@trimble-oss/moduswebcomponents-angular 1.9.0-ng17 → 1.9.0-ng18
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/README.md +8 -8
- package/esm2022/lib/modus-wc-angular.module.mjs +6 -6
- package/esm2022/lib/stencil-generated/components.mjs +377 -265
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs +382 -270
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs.map +1 -1
- package/lib/stencil-generated/components.d.ts +3 -3
- package/package.json +6 -3
|
@@ -86,7 +86,7 @@ export declare class ModusWcAppMenu {
|
|
|
86
86
|
protected z: NgZone;
|
|
87
87
|
protected el: HTMLModusWcAppMenuElement;
|
|
88
88
|
layoutChange: EventEmitter<ModusWcAppMenuCustomEvent<{
|
|
89
|
-
layout:
|
|
89
|
+
layout: "list" | "grid";
|
|
90
90
|
}>>;
|
|
91
91
|
itemsOrderChange: EventEmitter<ModusWcAppMenuCustomEvent<IModusWcAppMenuIAppMenuItem[]>>;
|
|
92
92
|
itemClick: EventEmitter<ModusWcAppMenuCustomEvent<{
|
|
@@ -514,7 +514,7 @@ export declare class ModusWcMenuItem {
|
|
|
514
514
|
protected el: HTMLModusWcMenuItemElement;
|
|
515
515
|
itemSelect: EventEmitter<ModusWcMenuItemCustomEvent<{
|
|
516
516
|
value: string;
|
|
517
|
-
selected?: boolean
|
|
517
|
+
selected?: boolean;
|
|
518
518
|
}>>;
|
|
519
519
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
520
520
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModusWcMenuItem, never>;
|
|
@@ -1076,7 +1076,7 @@ export declare class ModusWcTreeItem {
|
|
|
1076
1076
|
protected el: HTMLModusWcTreeItemElement;
|
|
1077
1077
|
itemSelect: EventEmitter<ModusWcTreeItemCustomEvent<{
|
|
1078
1078
|
value: string;
|
|
1079
|
-
selected?: boolean
|
|
1079
|
+
selected?: boolean;
|
|
1080
1080
|
}>>;
|
|
1081
1081
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1082
1082
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModusWcTreeItem, never>;
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trimble-oss/moduswebcomponents-angular",
|
|
3
|
-
"version": "1.9.0-
|
|
3
|
+
"version": "1.9.0-ng18",
|
|
4
|
+
"description": "Trimble Modus Angular Component Library",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Trimble Inc.",
|
|
4
7
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
8
|
+
"@angular/common": "^18.2.0",
|
|
9
|
+
"@angular/core": "^18.2.0",
|
|
7
10
|
"@trimble-oss/moduswebcomponents": "1.9.0"
|
|
8
11
|
},
|
|
9
12
|
"dependencies": {
|