@trimble-oss/moduswebcomponents-angular 1.8.0-ng17 → 1.8.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 +368 -258
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs +373 -263
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs.map +1 -1
- package/lib/stencil-generated/components.d.ts +3 -3
- package/package.json +6 -3
|
@@ -48,7 +48,7 @@ export declare class ModusWcAppMenu {
|
|
|
48
48
|
protected z: NgZone;
|
|
49
49
|
protected el: HTMLModusWcAppMenuElement;
|
|
50
50
|
layoutChange: EventEmitter<CustomEvent<{
|
|
51
|
-
layout:
|
|
51
|
+
layout: "list" | "grid";
|
|
52
52
|
}>>;
|
|
53
53
|
itemsOrderChange: EventEmitter<CustomEvent<IModusWcAppMenuIAppMenuItem[]>>;
|
|
54
54
|
itemClick: EventEmitter<CustomEvent<{
|
|
@@ -436,7 +436,7 @@ export declare class ModusWcMenuItem {
|
|
|
436
436
|
protected el: HTMLModusWcMenuItemElement;
|
|
437
437
|
itemSelect: EventEmitter<CustomEvent<{
|
|
438
438
|
value: string;
|
|
439
|
-
selected?: boolean
|
|
439
|
+
selected?: boolean;
|
|
440
440
|
}>>;
|
|
441
441
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
442
442
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModusWcMenuItem, never>;
|
|
@@ -998,7 +998,7 @@ export declare class ModusWcTreeItem {
|
|
|
998
998
|
protected el: HTMLModusWcTreeItemElement;
|
|
999
999
|
itemSelect: EventEmitter<CustomEvent<{
|
|
1000
1000
|
value: string;
|
|
1001
|
-
selected?: boolean
|
|
1001
|
+
selected?: boolean;
|
|
1002
1002
|
}>>;
|
|
1003
1003
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1004
1004
|
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.8.0-
|
|
3
|
+
"version": "1.8.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.8.0"
|
|
8
11
|
},
|
|
9
12
|
"dependencies": {
|