@osovitny/anatoly 2.14.10 → 2.14.12
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/scss/mixins/_cards.scss +99 -0
- package/assets/styles/styles.scss +19 -0
- package/esm2020/lib/core/services/appcontext.service.mjs +1 -1
- package/esm2020/lib/ui/components/card/card-body.component.mjs +31 -0
- package/esm2020/lib/ui/components/card/card-footer.component.mjs +29 -0
- package/esm2020/lib/ui/components/card/card-header.component.mjs +45 -0
- package/esm2020/lib/ui/components/card/card.component.mjs +29 -0
- package/esm2020/lib/ui/components/nodata/nodata.component.mjs +38 -0
- package/esm2020/lib/ui/components/spinners/loading/loading.component.mjs +49 -0
- package/esm2020/lib/ui/components/spinners/pagespinner/pagespinner.component.mjs +61 -0
- package/esm2020/lib/ui/components/spinners/pagespinner/spinkits.mjs +12 -0
- package/esm2020/lib/ui/ui.module.mjs +46 -12
- package/esm2020/public-api.mjs +10 -4
- package/fesm2015/osovitny-anatoly.mjs +198 -48
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +198 -48
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/card/card-body.component.d.ts +7 -0
- package/lib/ui/components/card/card-footer.component.d.ts +6 -0
- package/lib/ui/components/card/card-header.component.d.ts +11 -0
- package/lib/ui/components/card/card.component.d.ts +6 -0
- package/lib/ui/components/nodata/nodata.component.d.ts +8 -0
- package/lib/ui/components/{loading → spinners/loading}/loading.component.d.ts +1 -1
- package/lib/ui/components/{spinner/spinner.component.d.ts → spinners/pagespinner/pagespinner.component.d.ts} +3 -3
- package/lib/ui/ui.module.d.ts +24 -20
- package/package.json +1 -1
- package/public-api.d.ts +7 -3
- package/esm2020/lib/ui/components/content-header/content-header.component.mjs +0 -37
- package/esm2020/lib/ui/components/loading/loading.component.mjs +0 -49
- package/esm2020/lib/ui/components/spinner/spinkits.mjs +0 -12
- package/esm2020/lib/ui/components/spinner/spinner.component.mjs +0 -61
- package/lib/ui/components/content-header/content-header.component.d.ts +0 -8
- /package/lib/ui/components/{spinner → spinners/pagespinner}/spinkits.d.ts +0 -0
|
@@ -2417,40 +2417,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
2417
2417
|
type: Input
|
|
2418
2418
|
}] } });
|
|
2419
2419
|
|
|
2420
|
-
/*
|
|
2421
|
-
<file>
|
|
2422
|
-
Project:
|
|
2423
|
-
@osovitny/anatoly
|
|
2424
|
-
|
|
2425
|
-
Authors:
|
|
2426
|
-
Vadim Osovitny
|
|
2427
|
-
Anatoly Osovitny
|
|
2428
|
-
|
|
2429
|
-
Created:
|
|
2430
|
-
23 Apr 2018
|
|
2431
|
-
|
|
2432
|
-
Version:
|
|
2433
|
-
1.0
|
|
2434
|
-
|
|
2435
|
-
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
2436
|
-
</file>
|
|
2437
|
-
*/
|
|
2438
|
-
class ContentHeaderComponent {
|
|
2439
|
-
ngOnInit() {
|
|
2440
|
-
if (this.title == null) {
|
|
2441
|
-
this.title = "";
|
|
2442
|
-
}
|
|
2443
|
-
}
|
|
2444
|
-
}
|
|
2445
|
-
ContentHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: ContentHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2446
|
-
ContentHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: ContentHeaderComponent, selector: "anatoly-content-header", inputs: { title: "title" }, ngImport: i0, template: "<h2 class=\"page-header\">\r\n {{title}}\r\n <!--<small>Optional {{title}}</small>-->\r\n</h2>\r\n" });
|
|
2447
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: ContentHeaderComponent, decorators: [{
|
|
2448
|
-
type: Component,
|
|
2449
|
-
args: [{ selector: "anatoly-content-header", template: "<h2 class=\"page-header\">\r\n {{title}}\r\n <!--<small>Optional {{title}}</small>-->\r\n</h2>\r\n" }]
|
|
2450
|
-
}], propDecorators: { title: [{
|
|
2451
|
-
type: Input
|
|
2452
|
-
}] } });
|
|
2453
|
-
|
|
2454
2420
|
/*
|
|
2455
2421
|
<file>
|
|
2456
2422
|
Project:
|
|
@@ -2982,6 +2948,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
2982
2948
|
type: Input
|
|
2983
2949
|
}] } });
|
|
2984
2950
|
|
|
2951
|
+
/*
|
|
2952
|
+
<file>
|
|
2953
|
+
Project:
|
|
2954
|
+
@osovitny/anatoly
|
|
2955
|
+
|
|
2956
|
+
Authors:
|
|
2957
|
+
Vadim Osovitny
|
|
2958
|
+
Anatoly Osovitny
|
|
2959
|
+
|
|
2960
|
+
Created:
|
|
2961
|
+
29 Jul 2022
|
|
2962
|
+
|
|
2963
|
+
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
2964
|
+
</file>
|
|
2965
|
+
*/
|
|
2966
|
+
class NodataComponent {
|
|
2967
|
+
constructor() {
|
|
2968
|
+
this.icon = 'fas fa-cubes fa-w-16 fa-9x';
|
|
2969
|
+
this.heading = 'No data found';
|
|
2970
|
+
this.headingClass = 'text-uppercase text-primary';
|
|
2971
|
+
}
|
|
2972
|
+
}
|
|
2973
|
+
NodataComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: NodataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2974
|
+
NodataComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: NodataComponent, selector: "anatoly-nodata", inputs: { icon: "icon", heading: "heading", headingClass: "headingClass" }, ngImport: i0, template: "<div class=\"no-data\">\r\n <div class=\"text-center\">\r\n <i class='{{icon}}'></i>\r\n <h2 class='{{headingClass}}'>{{heading}}</h2>\r\n <ng-content></ng-content>\r\n </div>\r\n</div>\r\n" });
|
|
2975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: NodataComponent, decorators: [{
|
|
2976
|
+
type: Component,
|
|
2977
|
+
args: [{ selector: 'anatoly-nodata', template: "<div class=\"no-data\">\r\n <div class=\"text-center\">\r\n <i class='{{icon}}'></i>\r\n <h2 class='{{headingClass}}'>{{heading}}</h2>\r\n <ng-content></ng-content>\r\n </div>\r\n</div>\r\n" }]
|
|
2978
|
+
}], propDecorators: { icon: [{
|
|
2979
|
+
type: Input
|
|
2980
|
+
}], heading: [{
|
|
2981
|
+
type: Input
|
|
2982
|
+
}], headingClass: [{
|
|
2983
|
+
type: Input
|
|
2984
|
+
}] } });
|
|
2985
|
+
|
|
2985
2986
|
/*
|
|
2986
2987
|
<file>
|
|
2987
2988
|
Project:
|
|
@@ -3051,7 +3052,7 @@ const Spinkit = {
|
|
|
3051
3052
|
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
3052
3053
|
</file>
|
|
3053
3054
|
*/
|
|
3054
|
-
class
|
|
3055
|
+
class PageSpinnerComponent {
|
|
3055
3056
|
constructor(router, document) {
|
|
3056
3057
|
this.router = router;
|
|
3057
3058
|
this.document = document;
|
|
@@ -3074,11 +3075,11 @@ class SpinnerComponent {
|
|
|
3074
3075
|
this.isSpinnerVisible = false;
|
|
3075
3076
|
}
|
|
3076
3077
|
}
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type:
|
|
3078
|
+
PageSpinnerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: PageSpinnerComponent, deps: [{ token: i1.Router }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Component });
|
|
3079
|
+
PageSpinnerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: PageSpinnerComponent, selector: "anatoly-pagespinner", inputs: { backgroundColor: "backgroundColor", spinner: "spinner" }, ngImport: i0, template: "<div id=\"http-loader\" *ngIf=\"isSpinnerVisible\">\r\n <div class=\"loader-bg\">\r\n <div class=\"sk-line-material\" [class.colored]=\"!backgroundColor\" *ngIf=\"spinner === Spinkit.skLine\">\r\n <div class=\"sk-child sk-bounce1\" [style.background-color]='backgroundColor'></div>\r\n </div>\r\n </div>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1$5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
3080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: PageSpinnerComponent, decorators: [{
|
|
3080
3081
|
type: Component,
|
|
3081
|
-
args: [{ selector: 'anatoly-
|
|
3082
|
+
args: [{ selector: 'anatoly-pagespinner', encapsulation: ViewEncapsulation.None, template: "<div id=\"http-loader\" *ngIf=\"isSpinnerVisible\">\r\n <div class=\"loader-bg\">\r\n <div class=\"sk-line-material\" [class.colored]=\"!backgroundColor\" *ngIf=\"spinner === Spinkit.skLine\">\r\n <div class=\"sk-child sk-bounce1\" [style.background-color]='backgroundColor'></div>\r\n </div>\r\n </div>\r\n</div>\r\n" }]
|
|
3082
3083
|
}], ctorParameters: function () { return [{ type: i1.Router }, { type: Document, decorators: [{
|
|
3083
3084
|
type: Inject,
|
|
3084
3085
|
args: [DOCUMENT]
|
|
@@ -3088,6 +3089,127 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
3088
3089
|
type: Input
|
|
3089
3090
|
}] } });
|
|
3090
3091
|
|
|
3092
|
+
/*
|
|
3093
|
+
<file>
|
|
3094
|
+
Project:
|
|
3095
|
+
@osovitny/anatoly
|
|
3096
|
+
|
|
3097
|
+
Authors:
|
|
3098
|
+
Vadim Osovitny
|
|
3099
|
+
Anatoly Osovitny
|
|
3100
|
+
|
|
3101
|
+
Created:
|
|
3102
|
+
29 July 2022
|
|
3103
|
+
|
|
3104
|
+
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
3105
|
+
</file>
|
|
3106
|
+
*/
|
|
3107
|
+
class CardComponent {
|
|
3108
|
+
}
|
|
3109
|
+
CardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: CardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3110
|
+
CardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: CardComponent, selector: "anatoly-card", inputs: { class: "class" }, ngImport: i0, template: "<div class='card {{class}}'>\r\n <ng-content select='mex-card-header'></ng-content>\r\n <ng-content select='mex-card-body'></ng-content>\r\n <ng-content></ng-content>\r\n <ng-content select='mex-card-footer'></ng-content>\r\n</div>\r\n" });
|
|
3111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: CardComponent, decorators: [{
|
|
3112
|
+
type: Component,
|
|
3113
|
+
args: [{ selector: 'anatoly-card', template: "<div class='card {{class}}'>\r\n <ng-content select='mex-card-header'></ng-content>\r\n <ng-content select='mex-card-body'></ng-content>\r\n <ng-content></ng-content>\r\n <ng-content select='mex-card-footer'></ng-content>\r\n</div>\r\n" }]
|
|
3114
|
+
}], propDecorators: { class: [{
|
|
3115
|
+
type: Input
|
|
3116
|
+
}] } });
|
|
3117
|
+
|
|
3118
|
+
/*
|
|
3119
|
+
<file>
|
|
3120
|
+
Project:
|
|
3121
|
+
@osovitny/anatoly
|
|
3122
|
+
|
|
3123
|
+
Authors:
|
|
3124
|
+
Vadim Osovitny
|
|
3125
|
+
Anatoly Osovitny
|
|
3126
|
+
|
|
3127
|
+
Created:
|
|
3128
|
+
29 July 2022
|
|
3129
|
+
|
|
3130
|
+
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
3131
|
+
</file>
|
|
3132
|
+
*/
|
|
3133
|
+
class CardHeaderComponent {
|
|
3134
|
+
constructor() {
|
|
3135
|
+
this.isTitleVisible = false;
|
|
3136
|
+
}
|
|
3137
|
+
set title(val) {
|
|
3138
|
+
if (val) {
|
|
3139
|
+
this.isTitleVisible = true;
|
|
3140
|
+
this.titleValue = val;
|
|
3141
|
+
}
|
|
3142
|
+
}
|
|
3143
|
+
ngOnInit() {
|
|
3144
|
+
if (this.title)
|
|
3145
|
+
this.isTitleVisible = true;
|
|
3146
|
+
}
|
|
3147
|
+
}
|
|
3148
|
+
CardHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: CardHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3149
|
+
CardHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: CardHeaderComponent, selector: "anatoly-card-header", inputs: { class: "class", title: "title" }, ngImport: i0, template: "<div class='card-header {{class}}'>\r\n <h3 *ngIf='isTitleVisible' class='card-title'>{{titleValue}}</h3>\r\n <ng-content></ng-content>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1$5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
3150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: CardHeaderComponent, decorators: [{
|
|
3151
|
+
type: Component,
|
|
3152
|
+
args: [{ selector: 'anatoly-card-header', template: "<div class='card-header {{class}}'>\r\n <h3 *ngIf='isTitleVisible' class='card-title'>{{titleValue}}</h3>\r\n <ng-content></ng-content>\r\n</div>\r\n" }]
|
|
3153
|
+
}], propDecorators: { class: [{
|
|
3154
|
+
type: Input
|
|
3155
|
+
}], title: [{
|
|
3156
|
+
type: Input
|
|
3157
|
+
}] } });
|
|
3158
|
+
|
|
3159
|
+
/*
|
|
3160
|
+
<file>
|
|
3161
|
+
Project:
|
|
3162
|
+
@osovitny/anatoly
|
|
3163
|
+
|
|
3164
|
+
Authors:
|
|
3165
|
+
Vadim Osovitny
|
|
3166
|
+
Anatoly Osovitny
|
|
3167
|
+
|
|
3168
|
+
Created:
|
|
3169
|
+
29 July 2022
|
|
3170
|
+
|
|
3171
|
+
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
3172
|
+
</file>
|
|
3173
|
+
*/
|
|
3174
|
+
class CardBodyComponent {
|
|
3175
|
+
}
|
|
3176
|
+
CardBodyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: CardBodyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3177
|
+
CardBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: CardBodyComponent, selector: "anatoly-card-body", inputs: { class: "class", styles: "styles" }, ngImport: i0, template: "<div class='card-body {{class}}'>\r\n <ng-content></ng-content>\r\n</div>\r\n" });
|
|
3178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: CardBodyComponent, decorators: [{
|
|
3179
|
+
type: Component,
|
|
3180
|
+
args: [{ selector: 'anatoly-card-body', template: "<div class='card-body {{class}}'>\r\n <ng-content></ng-content>\r\n</div>\r\n" }]
|
|
3181
|
+
}], propDecorators: { class: [{
|
|
3182
|
+
type: Input
|
|
3183
|
+
}], styles: [{
|
|
3184
|
+
type: Input
|
|
3185
|
+
}] } });
|
|
3186
|
+
|
|
3187
|
+
/*
|
|
3188
|
+
<file>
|
|
3189
|
+
Project:
|
|
3190
|
+
@osovitny/anatoly
|
|
3191
|
+
|
|
3192
|
+
Authors:
|
|
3193
|
+
Vadim Osovitny
|
|
3194
|
+
Anatoly Osovitny
|
|
3195
|
+
|
|
3196
|
+
Created:
|
|
3197
|
+
29 July 2022
|
|
3198
|
+
|
|
3199
|
+
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
3200
|
+
</file>
|
|
3201
|
+
*/
|
|
3202
|
+
class CardFooterComponent {
|
|
3203
|
+
}
|
|
3204
|
+
CardFooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: CardFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3205
|
+
CardFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: CardFooterComponent, selector: "anatoly-card-footer", inputs: { class: "class" }, ngImport: i0, template: "<div class='card-footer {{class}}'>\r\n <ng-content></ng-content>\r\n</div>\r\n" });
|
|
3206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: CardFooterComponent, decorators: [{
|
|
3207
|
+
type: Component,
|
|
3208
|
+
args: [{ selector: 'anatoly-card-footer', template: "<div class='card-footer {{class}}'>\r\n <ng-content></ng-content>\r\n</div>\r\n" }]
|
|
3209
|
+
}], propDecorators: { class: [{
|
|
3210
|
+
type: Input
|
|
3211
|
+
}] } });
|
|
3212
|
+
|
|
3091
3213
|
/*
|
|
3092
3214
|
<file>
|
|
3093
3215
|
Project:
|
|
@@ -3570,9 +3692,16 @@ AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version
|
|
|
3570
3692
|
SignInButtonComponent,
|
|
3571
3693
|
SignUpButtonComponent,
|
|
3572
3694
|
SignOutButtonComponent,
|
|
3573
|
-
|
|
3574
|
-
|
|
3695
|
+
NodataComponent,
|
|
3696
|
+
//Spinners
|
|
3697
|
+
PageSpinnerComponent,
|
|
3575
3698
|
LoadingComponent,
|
|
3699
|
+
//Cards
|
|
3700
|
+
CardComponent,
|
|
3701
|
+
CardHeaderComponent,
|
|
3702
|
+
CardBodyComponent,
|
|
3703
|
+
CardFooterComponent,
|
|
3704
|
+
//HtmlEditor
|
|
3576
3705
|
HtmlEditorComponent,
|
|
3577
3706
|
FormsHtmlEditorComponent,
|
|
3578
3707
|
//Directives
|
|
@@ -3598,9 +3727,16 @@ AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version
|
|
|
3598
3727
|
SignInButtonComponent,
|
|
3599
3728
|
SignUpButtonComponent,
|
|
3600
3729
|
SignOutButtonComponent,
|
|
3601
|
-
|
|
3602
|
-
|
|
3730
|
+
NodataComponent,
|
|
3731
|
+
//Spinners
|
|
3732
|
+
PageSpinnerComponent,
|
|
3603
3733
|
LoadingComponent,
|
|
3734
|
+
//Cards
|
|
3735
|
+
CardComponent,
|
|
3736
|
+
CardHeaderComponent,
|
|
3737
|
+
CardBodyComponent,
|
|
3738
|
+
CardFooterComponent,
|
|
3739
|
+
//HtmlEditor
|
|
3604
3740
|
HtmlEditorComponent,
|
|
3605
3741
|
FormsHtmlEditorComponent,
|
|
3606
3742
|
//Directives
|
|
@@ -3644,9 +3780,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
3644
3780
|
SignInButtonComponent,
|
|
3645
3781
|
SignUpButtonComponent,
|
|
3646
3782
|
SignOutButtonComponent,
|
|
3647
|
-
|
|
3648
|
-
|
|
3783
|
+
NodataComponent,
|
|
3784
|
+
//Spinners
|
|
3785
|
+
PageSpinnerComponent,
|
|
3649
3786
|
LoadingComponent,
|
|
3787
|
+
//Cards
|
|
3788
|
+
CardComponent,
|
|
3789
|
+
CardHeaderComponent,
|
|
3790
|
+
CardBodyComponent,
|
|
3791
|
+
CardFooterComponent,
|
|
3792
|
+
//HtmlEditor
|
|
3650
3793
|
HtmlEditorComponent,
|
|
3651
3794
|
FormsHtmlEditorComponent,
|
|
3652
3795
|
//Directives
|
|
@@ -3670,9 +3813,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
3670
3813
|
SignInButtonComponent,
|
|
3671
3814
|
SignUpButtonComponent,
|
|
3672
3815
|
SignOutButtonComponent,
|
|
3673
|
-
|
|
3674
|
-
|
|
3816
|
+
NodataComponent,
|
|
3817
|
+
//Spinners
|
|
3818
|
+
PageSpinnerComponent,
|
|
3675
3819
|
LoadingComponent,
|
|
3820
|
+
//Cards
|
|
3821
|
+
CardComponent,
|
|
3822
|
+
CardHeaderComponent,
|
|
3823
|
+
CardBodyComponent,
|
|
3824
|
+
CardFooterComponent,
|
|
3825
|
+
//HtmlEditor
|
|
3676
3826
|
HtmlEditorComponent,
|
|
3677
3827
|
FormsHtmlEditorComponent,
|
|
3678
3828
|
//Directives
|
|
@@ -3700,5 +3850,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
3700
3850
|
* Generated bundle index. Do not edit.
|
|
3701
3851
|
*/
|
|
3702
3852
|
|
|
3703
|
-
export { Alerts, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyUIModule, AppContextService, AppCoreSettings, BaseApiService, BaseComponent, BaseDialog, BaseEditComponent, BaseGoService, BaseGridEditService, BaseGridReadService, BaseHtmlEditorComponent, BillingApiService, BuyAccessButtonComponent, ContactUsDialog, ContactUsForm,
|
|
3853
|
+
export { Alerts, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyUIModule, AppContextService, AppCoreSettings, BaseApiService, BaseComponent, BaseDialog, BaseEditComponent, BaseGoService, BaseGridEditService, BaseGridReadService, BaseHtmlEditorComponent, BillingApiService, BuyAccessButtonComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, ContactUsDialog, ContactUsForm, ContextInitState, Convert, DefaultEditorOptions, DigitalMarketingService, FileSizePipe, FormValidationSummaryComponent, FormsHtmlEditorComponent, FroalaEditorModuleWithProviders, FroalaViewModuleWithProviders, GlobalErrorHandler, GoogleAnalyticsService, Guid, HtmlEditorComponent, IdleService, InjectorInstance, ItemValidationSummaryComponent, LoadingComponent, LoadingService, LocalStorageService, LocalizationInjectorInstance, LocalizationModule, LocalizationService, LocalizationSettingsModule, LocalizePipe, LoggingService, NativeElementDirective, NodataComponent, NotificationService, NotificationsApiService, PageSpinnerComponent, ReplaceTextPipe, SafeHtmlPipe, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, Subs, SubscribePlanButtonComponent, TranslateModuleAtRoot, UpgradePlanButtonComponent, Urls, Utils, ValidationSummaryComponent, customTranslateLoaderFactory, localizationInitializerFactory, throwIfAlreadyLoaded };
|
|
3704
3854
|
//# sourceMappingURL=osovitny-anatoly.mjs.map
|