@trimble-oss/moduswebcomponents-angular 1.4.0-ng19 → 1.5.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 +14 -8
- 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 +1343 -0
- package/esm2022/lib/stencil-generated/index.mjs +56 -0
- package/esm2022/public-api.mjs +7 -0
- package/esm2022/trimble-oss-moduswebcomponents-angular.mjs +5 -0
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs +207 -275
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs.map +1 -1
- package/lib/modus-wc-angular.module.d.ts +1 -1
- package/lib/stencil-generated/components.d.ts +78 -51
- package/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +6 -7
- package/public-api.d.ts +1 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
|
-
export declare const DIRECTIVES: (typeof d.ModusWcAccordion | typeof d.ModusWcAlert | typeof d.ModusWcAutocomplete | typeof d.ModusWcAvatar | typeof d.ModusWcBadge | 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.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.ModusWcTypography | typeof d.ModusWcUtilityPanel)[];
|
|
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.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.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.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.5.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.5.0"
|
|
11
8
|
},
|
|
12
9
|
"dependencies": {
|
|
13
10
|
"tslib": "^2.3.0"
|
|
@@ -24,6 +21,8 @@
|
|
|
24
21
|
},
|
|
25
22
|
".": {
|
|
26
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
28
|
}
|
package/public-api.d.ts
CHANGED