@trimble-oss/moduswebcomponents-angular 1.8.0-ng21 → 1.9.0-ng17
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 +49 -40
- package/esm2022/lib/modus-wc-angular.module.mjs +42 -0
- package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
- package/esm2022/lib/stencil-generated/components.mjs +1792 -0
- package/esm2022/lib/stencil-generated/index.mjs +60 -0
- package/esm2022/public-api.mjs +7 -0
- package/esm2022/trimble-oss-moduswebcomponents-angular.mjs +5 -0
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs +448 -487
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs.map +1 -1
- package/index.d.ts +5 -0
- package/lib/modus-wc-angular.module.d.ts +7 -0
- package/lib/stencil-generated/angular-component-lib/utils.d.ts +9 -0
- package/{types/trimble-oss-moduswebcomponents-angular.d.ts → lib/stencil-generated/components.d.ts} +444 -363
- package/lib/stencil-generated/index.d.ts +2 -0
- package/package.json +9 -11
- package/public-api.d.ts +4 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import * as d from './components';
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.ModusWcAccordion | typeof d.ModusWcAlert | typeof d.ModusWcAppMenu | typeof d.ModusWcAutocomplete | typeof d.ModusWcAvatar | typeof d.ModusWcBadge | typeof d.ModusWcBottomSheet | typeof d.ModusWcBreadcrumbs | typeof d.ModusWcButton | typeof d.ModusWcButtonGroup | typeof d.ModusWcCard | typeof d.ModusWcCheckbox | typeof d.ModusWcChip | typeof d.ModusWcCollapse | typeof d.ModusWcDate | typeof d.ModusWcDivider | typeof d.ModusWcDropdownMenu | typeof d.ModusWcFileDropzone | typeof d.ModusWcHandle | typeof d.ModusWcIcon | typeof d.ModusWcInputFeedback | typeof d.ModusWcInputLabel | typeof d.ModusWcLink | typeof d.ModusWcLoader | typeof d.ModusWcLogo | typeof d.ModusWcMenu | typeof d.ModusWcMenuItem | typeof d.ModusWcModal | typeof d.ModusWcNavbar | typeof d.ModusWcNumberInput | typeof d.ModusWcPagination | typeof d.ModusWcPanel | typeof d.ModusWcProfileMenu | typeof d.ModusWcProgress | typeof d.ModusWcRadio | typeof d.ModusWcRating | typeof d.ModusWcSelect | typeof d.ModusWcSideNavigation | typeof d.ModusWcSkeleton | typeof d.ModusWcSlider | typeof d.ModusWcStepper | typeof d.ModusWcSwitch | typeof d.ModusWcTable | typeof d.ModusWcTabs | typeof d.ModusWcTextInput | typeof d.ModusWcTextarea | typeof d.ModusWcThemeProvider | typeof d.ModusWcThemeSwitcher | typeof d.ModusWcTimeInput | typeof d.ModusWcToast | typeof d.ModusWcToolbar | typeof d.ModusWcTooltip | typeof d.ModusWcTreeItem | typeof d.ModusWcTreeMenu | typeof d.ModusWcTypography | typeof d.ModusWcUtilityPanel)[];
|
package/package.json
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trimble-oss/moduswebcomponents-angular",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Trimble Modus Angular Component Library",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "Trimble Inc.",
|
|
3
|
+
"version": "1.9.0-ng17",
|
|
7
4
|
"peerDependencies": {
|
|
8
|
-
"@angular/common": "^
|
|
9
|
-
"@angular/core": "^
|
|
10
|
-
"@trimble-oss/moduswebcomponents": "1.
|
|
5
|
+
"@angular/common": "^17.3.0",
|
|
6
|
+
"@angular/core": "^17.3.0",
|
|
7
|
+
"@trimble-oss/moduswebcomponents": "1.9.0"
|
|
11
8
|
},
|
|
12
9
|
"dependencies": {
|
|
13
10
|
"tslib": "^2.3.0"
|
|
@@ -17,15 +14,16 @@
|
|
|
17
14
|
"access": "public"
|
|
18
15
|
},
|
|
19
16
|
"module": "fesm2022/trimble-oss-moduswebcomponents-angular.mjs",
|
|
20
|
-
"typings": "
|
|
17
|
+
"typings": "index.d.ts",
|
|
21
18
|
"exports": {
|
|
22
19
|
"./package.json": {
|
|
23
20
|
"default": "./package.json"
|
|
24
21
|
},
|
|
25
22
|
".": {
|
|
26
|
-
"types": "./
|
|
23
|
+
"types": "./index.d.ts",
|
|
24
|
+
"esm2022": "./esm2022/trimble-oss-moduswebcomponents-angular.mjs",
|
|
25
|
+
"esm": "./esm2022/trimble-oss-moduswebcomponents-angular.mjs",
|
|
27
26
|
"default": "./fesm2022/trimble-oss-moduswebcomponents-angular.mjs"
|
|
28
27
|
}
|
|
29
|
-
}
|
|
30
|
-
"type": "module"
|
|
28
|
+
}
|
|
31
29
|
}
|
package/public-api.d.ts
ADDED