@wizishop/angular-components 15.1.12 → 15.1.14
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/lib/components/block/block.component.mjs +4 -3
- package/esm2020/lib/components/loader/loader.component.mjs +4 -3
- package/esm2020/lib/components/shared-components.module.mjs +10 -11
- package/esm2020/lib/components/table/table.module.mjs +5 -5
- package/esm2020/public-api.mjs +1 -2
- package/fesm2015/wizishop-angular-components.mjs +17 -37
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +17 -37
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/block/block.component.d.ts +1 -1
- package/lib/components/loader/loader.component.d.ts +1 -1
- package/lib/components/shared-components.module.d.ts +64 -65
- package/lib/components/table/table.module.d.ts +2 -2
- package/package.json +1 -1
- package/public-api.d.ts +0 -1
- package/wizishop-angular-components-15.1.14.tgz +0 -0
- package/esm2020/lib/components/loader/loader.module.mjs +0 -25
- package/lib/components/loader/loader.module.d.ts +0 -9
- package/wizishop-angular-components-15.1.12.tgz +0 -0
|
@@ -35,10 +35,10 @@ class LoaderComponent {
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
LoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: LoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
38
|
-
LoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: LoaderComponent, selector: "wac-loader", inputs: { text: "text", small: "small" }, ngImport: i0, template: "<div class=\"wac-loader\" [ngClass]=\"{ 'is-small': small }\">\n <div class=\"loader loader1\">\n <div>\n <div>\n <div>\n <div>\n <div>\n <div></div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n <p class=\"is-textcentered\" *ngIf=\"text
|
|
38
|
+
LoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: LoaderComponent, isStandalone: true, selector: "wac-loader", inputs: { text: "text", small: "small" }, ngImport: i0, template: "<div class=\"wac-loader\" [ngClass]=\"{ 'is-small': small }\">\n <div class=\"loader loader1\">\n <div>\n <div>\n <div>\n <div>\n <div>\n <div></div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n <p class=\"is-textcentered\" *ngIf=\"!!text\" [innerHTML]=\"text\"></p>\n</div>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
39
39
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: LoaderComponent, decorators: [{
|
|
40
40
|
type: Component,
|
|
41
|
-
args: [{ selector: 'wac-loader', encapsulation: ViewEncapsulation.None, template: "<div class=\"wac-loader\" [ngClass]=\"{ 'is-small': small }\">\n <div class=\"loader loader1\">\n <div>\n <div>\n <div>\n <div>\n <div>\n <div></div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n <p class=\"is-textcentered\" *ngIf=\"text
|
|
41
|
+
args: [{ selector: 'wac-loader', encapsulation: ViewEncapsulation.None, standalone: true, imports: [CommonModule], template: "<div class=\"wac-loader\" [ngClass]=\"{ 'is-small': small }\">\n <div class=\"loader loader1\">\n <div>\n <div>\n <div>\n <div>\n <div>\n <div></div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n <p class=\"is-textcentered\" *ngIf=\"!!text\" [innerHTML]=\"text\"></p>\n</div>\n" }]
|
|
42
42
|
}], propDecorators: { text: [{
|
|
43
43
|
type: Input
|
|
44
44
|
}], small: [{
|
|
@@ -3342,26 +3342,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
3342
3342
|
}]
|
|
3343
3343
|
}] });
|
|
3344
3344
|
|
|
3345
|
-
class LoaderModule {
|
|
3346
|
-
}
|
|
3347
|
-
LoaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: LoaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3348
|
-
LoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.1", ngImport: i0, type: LoaderModule, declarations: [LoaderComponent], imports: [CommonModule,
|
|
3349
|
-
FormsModule], exports: [LoaderComponent] });
|
|
3350
|
-
LoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: LoaderModule, imports: [CommonModule,
|
|
3351
|
-
FormsModule] });
|
|
3352
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: LoaderModule, decorators: [{
|
|
3353
|
-
type: NgModule,
|
|
3354
|
-
args: [{
|
|
3355
|
-
imports: [
|
|
3356
|
-
CommonModule,
|
|
3357
|
-
FormsModule,
|
|
3358
|
-
],
|
|
3359
|
-
exports: [LoaderComponent],
|
|
3360
|
-
declarations: [LoaderComponent],
|
|
3361
|
-
providers: [],
|
|
3362
|
-
}]
|
|
3363
|
-
}] });
|
|
3364
|
-
|
|
3365
3345
|
class TableColumn {
|
|
3366
3346
|
constructor(currentCell, renderer, document) {
|
|
3367
3347
|
this.currentCell = currentCell;
|
|
@@ -3605,13 +3585,13 @@ TableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15
|
|
|
3605
3585
|
TableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.1", ngImport: i0, type: TableModule, declarations: [TableComponent, TableColumn, CheckBoxRow, TableColumnHeader, TableRow], imports: [CommonModule,
|
|
3606
3586
|
FormsModule,
|
|
3607
3587
|
InputSearchModule,
|
|
3608
|
-
|
|
3588
|
+
LoaderComponent,
|
|
3609
3589
|
CheckboxModule,
|
|
3610
3590
|
PaginationModule], exports: [TableComponent, TableColumn, CheckBoxRow, TableColumnHeader, TableRow] });
|
|
3611
3591
|
TableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: TableModule, imports: [CommonModule,
|
|
3612
3592
|
FormsModule,
|
|
3613
3593
|
InputSearchModule,
|
|
3614
|
-
|
|
3594
|
+
LoaderComponent,
|
|
3615
3595
|
CheckboxModule,
|
|
3616
3596
|
PaginationModule] });
|
|
3617
3597
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: TableModule, decorators: [{
|
|
@@ -3621,7 +3601,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
3621
3601
|
CommonModule,
|
|
3622
3602
|
FormsModule,
|
|
3623
3603
|
InputSearchModule,
|
|
3624
|
-
|
|
3604
|
+
LoaderComponent,
|
|
3625
3605
|
CheckboxModule,
|
|
3626
3606
|
PaginationModule
|
|
3627
3607
|
],
|
|
@@ -4235,10 +4215,10 @@ class BlockComponent {
|
|
|
4235
4215
|
}
|
|
4236
4216
|
}
|
|
4237
4217
|
BlockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: BlockComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
4238
|
-
BlockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: BlockComponent, selector: "wac-block", inputs: { config: "config" }, host: { properties: { "style": "this.borderRadius" } }, queries: [{ propertyName: "blockSeparators", predicate: BlockSeparatorComponent }], ngImport: i0, template: "<ng-content></ng-content>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
4218
|
+
BlockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: BlockComponent, isStandalone: true, selector: "wac-block", inputs: { config: "config" }, host: { properties: { "style": "this.borderRadius" } }, queries: [{ propertyName: "blockSeparators", predicate: BlockSeparatorComponent }], ngImport: i0, template: "<ng-content></ng-content>", dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
4239
4219
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: BlockComponent, decorators: [{
|
|
4240
4220
|
type: Component,
|
|
4241
|
-
args: [{ selector: 'wac-block', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-content></ng-content>" }]
|
|
4221
|
+
args: [{ selector: 'wac-block', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CommonModule], template: "<ng-content></ng-content>" }]
|
|
4242
4222
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { blockSeparators: [{
|
|
4243
4223
|
type: ContentChildren,
|
|
4244
4224
|
args: [BlockSeparatorComponent]
|
|
@@ -6016,7 +5996,6 @@ const components = [
|
|
|
6016
5996
|
InputWithSelectComponent,
|
|
6017
5997
|
PopinComponent,
|
|
6018
5998
|
FreePopinComponent,
|
|
6019
|
-
BlockComponent,
|
|
6020
5999
|
BlockTitleLegacyComponent,
|
|
6021
6000
|
WrapperComponent,
|
|
6022
6001
|
FiltersComponent,
|
|
@@ -6065,7 +6044,9 @@ const exportsFromModule = [
|
|
|
6065
6044
|
];
|
|
6066
6045
|
const standaloneComponents = [
|
|
6067
6046
|
TabComponent,
|
|
6068
|
-
SnackbarComponent
|
|
6047
|
+
SnackbarComponent,
|
|
6048
|
+
BlockComponent,
|
|
6049
|
+
LoaderComponent,
|
|
6069
6050
|
];
|
|
6070
6051
|
class SharedComponentsModule {
|
|
6071
6052
|
}
|
|
@@ -6102,7 +6083,6 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6102
6083
|
InputWithSelectComponent,
|
|
6103
6084
|
PopinComponent,
|
|
6104
6085
|
FreePopinComponent,
|
|
6105
|
-
BlockComponent,
|
|
6106
6086
|
BlockTitleLegacyComponent,
|
|
6107
6087
|
WrapperComponent,
|
|
6108
6088
|
FiltersComponent,
|
|
@@ -6145,7 +6125,6 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6145
6125
|
TooltipModule,
|
|
6146
6126
|
CheckboxModule,
|
|
6147
6127
|
InputModule,
|
|
6148
|
-
LoaderModule,
|
|
6149
6128
|
ProgressBarModule,
|
|
6150
6129
|
PerfectScrollbarModule,
|
|
6151
6130
|
AlertPopupModule,
|
|
@@ -6155,7 +6134,9 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6155
6134
|
NgScrollbarReachedModule,
|
|
6156
6135
|
TreeModule,
|
|
6157
6136
|
ExpansionModule, TabComponent,
|
|
6158
|
-
SnackbarComponent
|
|
6137
|
+
SnackbarComponent,
|
|
6138
|
+
BlockComponent,
|
|
6139
|
+
LoaderComponent], exports: [TagComponent,
|
|
6159
6140
|
ButtonComponent,
|
|
6160
6141
|
InfoComponent,
|
|
6161
6142
|
SettingsComponent,
|
|
@@ -6187,7 +6168,6 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6187
6168
|
InputWithSelectComponent,
|
|
6188
6169
|
PopinComponent,
|
|
6189
6170
|
FreePopinComponent,
|
|
6190
|
-
BlockComponent,
|
|
6191
6171
|
BlockTitleLegacyComponent,
|
|
6192
6172
|
WrapperComponent,
|
|
6193
6173
|
FiltersComponent,
|
|
@@ -6229,7 +6209,9 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6229
6209
|
LoaderComponent,
|
|
6230
6210
|
ProgressBarComponent,
|
|
6231
6211
|
TreeComponent, ExpansionPanelComponent, ExpansionPanelHeaderComponent, AccordionComponent, ExpansionPanelDirective, ExpansionPanelHeaderDirective, TabComponent,
|
|
6232
|
-
SnackbarComponent
|
|
6212
|
+
SnackbarComponent,
|
|
6213
|
+
BlockComponent,
|
|
6214
|
+
LoaderComponent] });
|
|
6233
6215
|
SharedComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: SharedComponentsModule, imports: [CommonModule,
|
|
6234
6216
|
FormsModule,
|
|
6235
6217
|
NwbAllModule,
|
|
@@ -6246,7 +6228,6 @@ SharedComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0",
|
|
|
6246
6228
|
TooltipModule,
|
|
6247
6229
|
CheckboxModule,
|
|
6248
6230
|
InputModule,
|
|
6249
|
-
LoaderModule,
|
|
6250
6231
|
ProgressBarModule,
|
|
6251
6232
|
PerfectScrollbarModule,
|
|
6252
6233
|
AlertPopupModule,
|
|
@@ -6276,7 +6257,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
6276
6257
|
TooltipModule,
|
|
6277
6258
|
CheckboxModule,
|
|
6278
6259
|
InputModule,
|
|
6279
|
-
LoaderModule,
|
|
6280
6260
|
ProgressBarModule,
|
|
6281
6261
|
PerfectScrollbarModule,
|
|
6282
6262
|
AlertPopupModule,
|
|
@@ -6464,5 +6444,5 @@ const switchInOut = trigger('switchInOut', [
|
|
|
6464
6444
|
* Generated bundle index. Do not edit.
|
|
6465
6445
|
*/
|
|
6466
6446
|
|
|
6467
|
-
export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CallComponentFunctionPipe, CardPriceComponent, ChargingBarComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, CopyToClipBoardDirective, DebounceKeyupDirective, DeleteComponent, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpandedPanelComponent, ExpansionExport, ExpansionModule, ExpansionPanelComponent, ExpansionPanelDirective, ExpansionPanelHeaderComponent, ExpansionPanelHeaderDirective, FilterOptionsPipe, FiltersComponent, FiltersTableService, FindOptionSelectedPipe, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, GooglePreviewComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HistoryService, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent,
|
|
6447
|
+
export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CallComponentFunctionPipe, CardPriceComponent, ChargingBarComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, CopyToClipBoardDirective, DebounceKeyupDirective, DeleteComponent, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpandedPanelComponent, ExpansionExport, ExpansionModule, ExpansionPanelComponent, ExpansionPanelDirective, ExpansionPanelHeaderComponent, ExpansionPanelHeaderDirective, FilterOptionsPipe, FiltersComponent, FiltersTableService, FindOptionSelectedPipe, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, GooglePreviewComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HistoryService, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, OnlyNumberDirective, OptionCallToActionComponent, OptionComponent, OptionalDisableContainerComponent, PaginationComponent, PlaceholderComponent, PopinComponent, ProgressBarComponent, RadioComponent, RadioDirective, RadioGroupDirective, ScrollToDirective, SearchComponent, SelectComponent, SelectDirective, SelectFiltersPipe, SelectInTextComponent, SelectOptionDirective, SelectSearchTriggerComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SummaryComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TagLabelComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, TwoDigitDecimalNumberDirective, UploadComponent, ValueChangeService, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperMultipleBlockComponent, WrapperSidebarComponent, WzEditInPlaceComponent, ZindexToggleDirective, animateListFromBottom, animateListFromLeft, animateListFromRight, animateListFromTop, inOutX, inOutY, opacityAnimation, showFromBottom, showFromLeft, showFromRight, showFromTop, switchInOut, uuid };
|
|
6468
6448
|
//# sourceMappingURL=wizishop-angular-components.mjs.map
|