@osovitny/anatoly 2.1.14 → 2.14.2
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/assets/styles/alerts.less +182 -0
- package/assets/styles/spinner.less +64 -0
- package/assets/styles/toastr.less +192 -0
- package/{esm2015/lib/core/consts/settings.js → esm2020/lib/core/consts/settings.mjs} +2 -2
- package/{esm2015/lib/core/convert.js → esm2020/lib/core/convert.mjs} +2 -2
- package/esm2020/lib/core/core.module.mjs +72 -0
- package/esm2020/lib/core/go/base-go.service.mjs +41 -0
- package/{esm2015/lib/core/guards/once-import.guard.js → esm2020/lib/core/guards/once-import.guard.mjs} +2 -2
- package/{esm2015/lib/core/guid.js → esm2020/lib/core/guid.mjs} +2 -2
- package/esm2020/lib/core/interceptors/httpInterceptor.mjs +108 -0
- package/esm2020/lib/core/localization/localization.module.mjs +47 -0
- package/esm2020/lib/core/localization/localization.service.mjs +185 -0
- package/esm2020/lib/core/localization/localizationSettings.module.mjs +88 -0
- package/esm2020/lib/core/localization/localize.pipe.mjs +78 -0
- package/{esm2015/lib/core/localization/utils.js → esm2020/lib/core/localization/utils.mjs} +2 -2
- package/esm2020/lib/core/logging/globalErrorHandler.mjs +44 -0
- package/esm2020/lib/core/logging/logging.service.mjs +39 -0
- package/{esm2015/lib/core/notifications/alerts.js → esm2020/lib/core/notifications/alerts.mjs} +2 -2
- package/{esm2015/lib/core/notifications/interfaces/notification.js → esm2020/lib/core/notifications/interfaces/notification.mjs} +2 -2
- package/esm2020/lib/core/notifications/services/notification-service.mjs +228 -0
- package/esm2020/lib/core/services/appcontext.service.mjs +118 -0
- package/esm2020/lib/core/services/dm.service.mjs +72 -0
- package/esm2020/lib/core/services/google-analytics.service.mjs +54 -0
- package/{esm2015/lib/core/services/idle.service.js → esm2020/lib/core/services/idle.service.mjs} +10 -8
- package/{esm2015/lib/core/services/loading.service.js → esm2020/lib/core/services/loading.service.mjs} +10 -9
- package/esm2020/lib/core/services/web-storage.service.mjs +69 -0
- package/{esm2015/lib/core/subs.js → esm2020/lib/core/subs.mjs} +2 -2
- package/esm2020/lib/core/utils.mjs +82 -0
- package/esm2020/lib/data/base/base-api.service.mjs +89 -0
- package/esm2020/lib/data/base/grid/base-grid-edit.service.mjs +77 -0
- package/esm2020/lib/data/base/grid/base-grid-read.service.mjs +62 -0
- package/{esm2015/lib/data/consts.js → esm2020/lib/data/consts.mjs} +2 -2
- package/esm2020/lib/data/data.module.mjs +51 -0
- package/esm2020/lib/data/services/billing-api.service.mjs +65 -0
- package/esm2020/lib/data/services/emails-api.service.mjs +42 -0
- package/esm2020/lib/data/services/notifications/notifications-api-service.mjs +43 -0
- package/esm2020/lib/ui/components/base-edit.component.mjs +143 -0
- package/esm2020/lib/ui/components/base.component.mjs +47 -0
- package/esm2020/lib/ui/components/base.dialog.mjs +49 -0
- package/esm2020/lib/ui/components/billing/buyaccess-button.component.mjs +69 -0
- package/esm2020/lib/ui/components/billing/subscribe-plan-button.component.mjs +63 -0
- package/esm2020/lib/ui/components/billing/upgrade-plan-button.component.mjs +52 -0
- package/esm2020/lib/ui/components/content-header/content-header.component.mjs +37 -0
- package/esm2020/lib/ui/components/html-editor/base-html-editor.component.mjs +111 -0
- package/esm2020/lib/ui/components/html-editor/forms-html-editor.component.mjs +48 -0
- package/esm2020/lib/ui/components/html-editor/html-editor.component.mjs +52 -0
- package/{esm2015/lib/ui/components/html-editor/html-editor.defaultoptions.js → esm2020/lib/ui/components/html-editor/html-editor.defaultoptions.mjs} +2 -2
- package/esm2020/lib/ui/components/identity/signin-button.component.mjs +32 -0
- package/esm2020/lib/ui/components/identity/signout-button.component.mjs +32 -0
- package/esm2020/lib/ui/components/identity/signup-button.component.mjs +31 -0
- package/esm2020/lib/ui/components/loading/loading.component.mjs +49 -0
- package/esm2020/lib/ui/components/spinner/spinner.component.mjs +74 -0
- package/esm2020/lib/ui/directives/native-element.directive.mjs +41 -0
- package/esm2020/lib/ui/forms/contact-us/contact-us.mjs +120 -0
- package/esm2020/lib/ui/pipes/filesize.pipe.mjs +45 -0
- package/esm2020/lib/ui/pipes/replace-text.pipe.mjs +40 -0
- package/esm2020/lib/ui/pipes/safeHtml.pipe.mjs +37 -0
- package/esm2020/lib/ui/ui.module.mjs +167 -0
- package/esm2020/lib/ui/validation/form-validation-summary.component.mjs +67 -0
- package/esm2020/lib/ui/validation/item-validation-summary.component.mjs +40 -0
- package/esm2020/lib/ui/validation/validation-summary.component.mjs +128 -0
- package/esm2020/public-api.mjs +68 -0
- package/fesm2015/osovitny-anatoly.mjs +3650 -0
- package/fesm2015/osovitny-anatoly.mjs.map +1 -0
- package/fesm2020/osovitny-anatoly.mjs +3658 -0
- package/fesm2020/osovitny-anatoly.mjs.map +1 -0
- package/{osovitny-anatoly.d.ts → index.d.ts} +1 -0
- package/lib/core/core.module.d.ts +5 -0
- package/lib/core/go/base-go.service.d.ts +3 -0
- package/lib/core/interceptors/httpInterceptor.d.ts +3 -0
- package/lib/core/localization/localization.module.d.ts +6 -0
- package/lib/core/localization/localization.service.d.ts +3 -0
- package/lib/core/localization/localizationSettings.module.d.ts +5 -0
- package/lib/core/localization/localize.pipe.d.ts +3 -0
- package/lib/core/logging/globalErrorHandler.d.ts +3 -0
- package/lib/core/logging/logging.service.d.ts +3 -0
- package/lib/core/notifications/services/notification-service.d.ts +3 -0
- package/lib/core/services/appcontext.service.d.ts +3 -0
- package/lib/core/services/dm.service.d.ts +3 -0
- package/lib/core/services/google-analytics.service.d.ts +3 -0
- package/lib/core/services/idle.service.d.ts +3 -0
- package/lib/core/services/loading.service.d.ts +3 -0
- package/lib/core/services/web-storage.service.d.ts +5 -0
- package/lib/data/base/base-api.service.d.ts +3 -0
- package/lib/data/base/grid/base-grid-edit.service.d.ts +3 -0
- package/lib/data/base/grid/base-grid-read.service.d.ts +3 -0
- package/lib/data/data.module.d.ts +5 -0
- package/lib/data/services/billing-api.service.d.ts +3 -0
- package/lib/data/services/emails-api.service.d.ts +10 -0
- package/lib/data/services/notifications/notifications-api-service.d.ts +3 -0
- package/lib/ui/components/base-edit.component.d.ts +5 -2
- package/lib/ui/components/base.component.d.ts +4 -1
- package/lib/ui/components/base.dialog.d.ts +3 -0
- package/lib/ui/components/billing/buyaccess-button.component.d.ts +5 -2
- package/lib/ui/components/billing/subscribe-plan-button.component.d.ts +4 -1
- package/lib/ui/components/billing/upgrade-plan-button.component.d.ts +4 -1
- package/lib/ui/components/content-header/content-header.component.d.ts +3 -0
- package/lib/ui/components/html-editor/base-html-editor.component.d.ts +3 -0
- package/lib/ui/components/html-editor/forms-html-editor.component.d.ts +3 -0
- package/lib/ui/components/html-editor/html-editor.component.d.ts +3 -0
- package/lib/ui/components/identity/signin-button.component.d.ts +3 -0
- package/lib/ui/components/identity/signout-button.component.d.ts +3 -0
- package/lib/ui/components/identity/signup-button.component.d.ts +3 -0
- package/lib/ui/components/loading/loading.component.d.ts +4 -1
- package/lib/ui/components/spinner/spinner.component.d.ts +3 -0
- package/lib/ui/directives/native-element.directive.d.ts +3 -0
- package/lib/ui/forms/contact-us/contact-us.d.ts +33 -0
- package/lib/ui/pipes/filesize.pipe.d.ts +3 -0
- package/lib/ui/pipes/replace-text.pipe.d.ts +3 -0
- package/lib/ui/pipes/safeHtml.pipe.d.ts +3 -0
- package/lib/ui/ui.module.d.ts +26 -0
- package/lib/ui/validation/form-validation-summary.component.d.ts +3 -0
- package/lib/ui/validation/item-validation-summary.component.d.ts +3 -0
- package/lib/ui/validation/validation-summary.component.d.ts +3 -0
- package/package.json +23 -11
- package/public-api.d.ts +3 -2
- package/bundles/osovitny-anatoly.umd.js +0 -3700
- package/bundles/osovitny-anatoly.umd.js.map +0 -1
- package/esm2015/lib/core/core.module.js +0 -58
- package/esm2015/lib/core/go/base-go.service.js +0 -42
- package/esm2015/lib/core/interceptors/httpInterceptor.js +0 -109
- package/esm2015/lib/core/localization/localization.module.js +0 -41
- package/esm2015/lib/core/localization/localization.service.js +0 -187
- package/esm2015/lib/core/localization/localizationSettings.module.js +0 -78
- package/esm2015/lib/core/localization/localize.pipe.js +0 -78
- package/esm2015/lib/core/logging/globalErrorHandler.js +0 -44
- package/esm2015/lib/core/logging/logging.service.js +0 -38
- package/esm2015/lib/core/notifications/services/notification-service.js +0 -230
- package/esm2015/lib/core/services/appcontext.service.js +0 -119
- package/esm2015/lib/core/services/dm.service.js +0 -74
- package/esm2015/lib/core/services/google-analytics.service.js +0 -53
- package/esm2015/lib/core/services/web-storage.service.js +0 -66
- package/esm2015/lib/core/utils.js +0 -81
- package/esm2015/lib/data/base/base-api.service.js +0 -89
- package/esm2015/lib/data/base/grid/base-grid-edit.service.js +0 -77
- package/esm2015/lib/data/base/grid/base-grid-read.service.js +0 -62
- package/esm2015/lib/data/data.module.js +0 -43
- package/esm2015/lib/data/services/billing-api.service.js +0 -65
- package/esm2015/lib/data/services/notifications/notifications-api-service.js +0 -45
- package/esm2015/lib/ui/components/base-edit.component.js +0 -142
- package/esm2015/lib/ui/components/base.component.js +0 -43
- package/esm2015/lib/ui/components/base.dialog.js +0 -47
- package/esm2015/lib/ui/components/billing/buyaccess-button.component.js +0 -71
- package/esm2015/lib/ui/components/billing/subscribe-plan-button.component.js +0 -63
- package/esm2015/lib/ui/components/billing/upgrade-plan-button.component.js +0 -54
- package/esm2015/lib/ui/components/content-header/content-header.component.js +0 -37
- package/esm2015/lib/ui/components/html-editor/base-html-editor.component.js +0 -108
- package/esm2015/lib/ui/components/html-editor/forms-html-editor.component.js +0 -44
- package/esm2015/lib/ui/components/html-editor/html-editor.component.js +0 -51
- package/esm2015/lib/ui/components/identity/signin-button.component.js +0 -33
- package/esm2015/lib/ui/components/identity/signout-button.component.js +0 -33
- package/esm2015/lib/ui/components/identity/signup-button.component.js +0 -31
- package/esm2015/lib/ui/components/loading/loading.component.js +0 -49
- package/esm2015/lib/ui/components/spinner/spinner.component.js +0 -73
- package/esm2015/lib/ui/directives/native-element.directive.js +0 -41
- package/esm2015/lib/ui/pipes/filesize.pipe.js +0 -41
- package/esm2015/lib/ui/pipes/replace-text.pipe.js +0 -36
- package/esm2015/lib/ui/pipes/safeHtml.pipe.js +0 -36
- package/esm2015/lib/ui/ui.module.js +0 -105
- package/esm2015/lib/ui/validation/form-validation-summary.component.js +0 -64
- package/esm2015/lib/ui/validation/item-validation-summary.component.js +0 -38
- package/esm2015/lib/ui/validation/validation-summary.component.js +0 -126
- package/esm2015/public-api.js +0 -62
- package/fesm2015/osovitny-anatoly.js +0 -3434
- package/fesm2015/osovitny-anatoly.js.map +0 -1
- package/osovitny-anatoly.metadata.json +0 -1
- /package/{esm2015/lib/core/consts/urls.js → esm2020/lib/core/consts/urls.mjs} +0 -0
- /package/{esm2015/osovitny-anatoly.js → esm2020/osovitny-anatoly.mjs} +0 -0
package/package.json
CHANGED
|
@@ -1,19 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osovitny/anatoly",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.14.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "
|
|
6
|
-
"@angular/core": "
|
|
5
|
+
"@angular/common": "14.0.6",
|
|
6
|
+
"@angular/core": "14.0.6"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"tslib": "2.
|
|
9
|
+
"tslib": "2.4.0"
|
|
10
|
+
},
|
|
11
|
+
"module": "fesm2015/osovitny-anatoly.mjs",
|
|
12
|
+
"es2020": "fesm2020/osovitny-anatoly.mjs",
|
|
13
|
+
"esm2020": "esm2020/osovitny-anatoly.mjs",
|
|
14
|
+
"fesm2020": "fesm2020/osovitny-anatoly.mjs",
|
|
15
|
+
"fesm2015": "fesm2015/osovitny-anatoly.mjs",
|
|
16
|
+
"typings": "index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
"./package.json": {
|
|
19
|
+
"default": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./index.d.ts",
|
|
23
|
+
"esm2020": "./esm2020/osovitny-anatoly.mjs",
|
|
24
|
+
"es2020": "./fesm2020/osovitny-anatoly.mjs",
|
|
25
|
+
"es2015": "./fesm2015/osovitny-anatoly.mjs",
|
|
26
|
+
"node": "./fesm2015/osovitny-anatoly.mjs",
|
|
27
|
+
"default": "./fesm2020/osovitny-anatoly.mjs"
|
|
28
|
+
}
|
|
10
29
|
},
|
|
11
|
-
"main": "bundles/osovitny-anatoly.umd.js",
|
|
12
|
-
"module": "fesm2015/osovitny-anatoly.js",
|
|
13
|
-
"es2015": "fesm2015/osovitny-anatoly.js",
|
|
14
|
-
"esm2015": "esm2015/osovitny-anatoly.js",
|
|
15
|
-
"fesm2015": "fesm2015/osovitny-anatoly.js",
|
|
16
|
-
"typings": "osovitny-anatoly.d.ts",
|
|
17
|
-
"metadata": "osovitny-anatoly.metadata.json",
|
|
18
30
|
"sideEffects": false
|
|
19
31
|
}
|
package/public-api.d.ts
CHANGED
|
@@ -19,7 +19,6 @@ export * from './lib/core/services/web-storage.service';
|
|
|
19
19
|
export * from './lib/core/services/dm.service';
|
|
20
20
|
export * from './lib/core/services/google-analytics.service';
|
|
21
21
|
export * from './lib/core/convert';
|
|
22
|
-
export * from './lib/core/core.module';
|
|
23
22
|
export * from './lib/core/guid';
|
|
24
23
|
export * from './lib/core/subs';
|
|
25
24
|
export * from './lib/core/utils';
|
|
@@ -28,7 +27,6 @@ export * from './lib/data/base/grid/base-grid-read.service';
|
|
|
28
27
|
export * from './lib/data/base/base-api.service';
|
|
29
28
|
export * from './lib/data/services/notifications/notifications-api-service';
|
|
30
29
|
export * from './lib/data/services/billing-api.service';
|
|
31
|
-
export * from './lib/data/data.module';
|
|
32
30
|
export * from './lib/ui/components/base.component';
|
|
33
31
|
export * from './lib/ui/components/base-edit.component';
|
|
34
32
|
export * from './lib/ui/components/base.dialog';
|
|
@@ -46,10 +44,13 @@ export * from './lib/ui/components/identity/signup-button.component';
|
|
|
46
44
|
export * from './lib/ui/components/loading/loading.component';
|
|
47
45
|
export * from './lib/ui/components/spinner/spinner.component';
|
|
48
46
|
export * from './lib/ui/directives/native-element.directive';
|
|
47
|
+
export * from './lib/ui/forms/contact-us/contact-us';
|
|
49
48
|
export * from './lib/ui/pipes/replace-text.pipe';
|
|
50
49
|
export * from './lib/ui/pipes/filesize.pipe';
|
|
51
50
|
export * from './lib/ui/pipes/safeHtml.pipe';
|
|
52
51
|
export * from './lib/ui/validation/form-validation-summary.component';
|
|
53
52
|
export * from './lib/ui/validation/item-validation-summary.component';
|
|
54
53
|
export * from './lib/ui/validation/validation-summary.component';
|
|
54
|
+
export * from './lib/core/core.module';
|
|
55
|
+
export * from './lib/data/data.module';
|
|
55
56
|
export * from './lib/ui/ui.module';
|