@smartsoft001-mobilems/angular 1.0.41
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/esm2020/index.mjs +8 -0
- package/esm2020/lib/+state/configs.facade.mjs +54 -0
- package/esm2020/lib/components/app/app.component.mjs +13 -0
- package/esm2020/lib/components/filters/filters.component.mjs +351 -0
- package/esm2020/lib/components/index.mjs +8 -0
- package/esm2020/lib/components/page/page.component.mjs +11 -0
- package/esm2020/lib/directives/index.mjs +2 -0
- package/esm2020/lib/environments/environment.mjs +5 -0
- package/esm2020/lib/services/configs/configs.service.mjs +44 -0
- package/esm2020/lib/services/crud/crud.service.mjs +82 -0
- package/esm2020/lib/services/dictionary/dictionary.service.mjs +36 -0
- package/esm2020/lib/services/index.mjs +15 -0
- package/esm2020/lib/services/style/style.service.mjs +23 -0
- package/esm2020/lib/services/style/variables.mjs +33 -0
- package/esm2020/lib/shared.config.mjs +13 -0
- package/esm2020/lib/shared.module.mjs +91 -0
- package/esm2020/lib/translations.mjs +19 -0
- package/esm2020/smartsoft001-mobilems-angular.mjs +5 -0
- package/index.d.ts +7 -0
- package/lib/+state/configs.facade.d.ts +17 -0
- package/lib/components/app/app.component.d.ts +6 -0
- package/lib/components/filters/filters.component.d.ts +87 -0
- package/lib/components/index.d.ts +5 -0
- package/lib/components/page/page.component.d.ts +6 -0
- package/lib/directives/index.d.ts +1 -0
- package/lib/environments/environment.d.ts +4 -0
- package/lib/services/configs/configs.service.d.ts +13 -0
- package/lib/services/crud/crud.service.d.ts +18 -0
- package/lib/services/dictionary/dictionary.service.d.ts +26 -0
- package/lib/services/index.d.ts +9 -0
- package/lib/services/style/style.service.d.ts +10 -0
- package/lib/services/style/variables.d.ts +2 -0
- package/lib/shared.config.d.ts +6 -0
- package/lib/shared.module.d.ts +16 -0
- package/lib/translations.d.ts +6 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@smartsoft001-mobilems/angular",
|
|
3
|
+
"version": "1.0.41",
|
|
4
|
+
"module": "esm2020/smartsoft001-mobilems-angular.mjs",
|
|
5
|
+
"es2020": "esm2020/smartsoft001-mobilems-angular.mjs",
|
|
6
|
+
"esm2020": "esm2020/smartsoft001-mobilems-angular.mjs",
|
|
7
|
+
"typings": "index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
"./package.json": {
|
|
10
|
+
"default": "./package.json"
|
|
11
|
+
},
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./index.d.ts",
|
|
14
|
+
"es2020": "./esm2020/smartsoft001-mobilems-angular.mjs",
|
|
15
|
+
"esm2020": "./esm2020/smartsoft001-mobilems-angular.mjs",
|
|
16
|
+
"default": "./esm2020/smartsoft001-mobilems-angular.mjs"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"tslib": "^2.3.0"
|
|
22
|
+
},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"@angular/core": "14.2.2",
|
|
25
|
+
"@smartsoft001/angular": "^1.2.21",
|
|
26
|
+
"@angular/platform-browser": "14.2.2",
|
|
27
|
+
"rxjs": "~7.5.0",
|
|
28
|
+
"@smartsoft001-mobilems/models": "1.0.41",
|
|
29
|
+
"@angular/router": "14.2.2",
|
|
30
|
+
"@angular/common": "14.2.2",
|
|
31
|
+
"@ngx-translate/core": "^13.0.0",
|
|
32
|
+
"@ngrx/store": "14.0.2",
|
|
33
|
+
"@ngrx/effects": "14.0.2",
|
|
34
|
+
"lodash-decorators": "^6.0.1",
|
|
35
|
+
"@smartsoft001/crud-shell-angular": "^1.2.21",
|
|
36
|
+
"lodash": "^4.17.20",
|
|
37
|
+
"moment": "^2.27.0",
|
|
38
|
+
"@angular/animations": "14.2.2",
|
|
39
|
+
"@smartsoft001/auth-shell-angular": "^1.1.21",
|
|
40
|
+
"@ionic/angular": "^6.1.3",
|
|
41
|
+
"@angular/platform-browser-dynamic": "14.2.2"
|
|
42
|
+
}
|
|
43
|
+
}
|