@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: [{
|
|
@@ -3331,26 +3331,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
3331
3331
|
}]
|
|
3332
3332
|
}] });
|
|
3333
3333
|
|
|
3334
|
-
class LoaderModule {
|
|
3335
|
-
}
|
|
3336
|
-
LoaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: LoaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3337
|
-
LoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.1", ngImport: i0, type: LoaderModule, declarations: [LoaderComponent], imports: [CommonModule,
|
|
3338
|
-
FormsModule], exports: [LoaderComponent] });
|
|
3339
|
-
LoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: LoaderModule, imports: [CommonModule,
|
|
3340
|
-
FormsModule] });
|
|
3341
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: LoaderModule, decorators: [{
|
|
3342
|
-
type: NgModule,
|
|
3343
|
-
args: [{
|
|
3344
|
-
imports: [
|
|
3345
|
-
CommonModule,
|
|
3346
|
-
FormsModule,
|
|
3347
|
-
],
|
|
3348
|
-
exports: [LoaderComponent],
|
|
3349
|
-
declarations: [LoaderComponent],
|
|
3350
|
-
providers: [],
|
|
3351
|
-
}]
|
|
3352
|
-
}] });
|
|
3353
|
-
|
|
3354
3334
|
class TableColumn {
|
|
3355
3335
|
constructor(currentCell, renderer, document) {
|
|
3356
3336
|
this.currentCell = currentCell;
|
|
@@ -3590,13 +3570,13 @@ TableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15
|
|
|
3590
3570
|
TableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.1", ngImport: i0, type: TableModule, declarations: [TableComponent, TableColumn, CheckBoxRow, TableColumnHeader, TableRow], imports: [CommonModule,
|
|
3591
3571
|
FormsModule,
|
|
3592
3572
|
InputSearchModule,
|
|
3593
|
-
|
|
3573
|
+
LoaderComponent,
|
|
3594
3574
|
CheckboxModule,
|
|
3595
3575
|
PaginationModule], exports: [TableComponent, TableColumn, CheckBoxRow, TableColumnHeader, TableRow] });
|
|
3596
3576
|
TableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: TableModule, imports: [CommonModule,
|
|
3597
3577
|
FormsModule,
|
|
3598
3578
|
InputSearchModule,
|
|
3599
|
-
|
|
3579
|
+
LoaderComponent,
|
|
3600
3580
|
CheckboxModule,
|
|
3601
3581
|
PaginationModule] });
|
|
3602
3582
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: TableModule, decorators: [{
|
|
@@ -3606,7 +3586,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
3606
3586
|
CommonModule,
|
|
3607
3587
|
FormsModule,
|
|
3608
3588
|
InputSearchModule,
|
|
3609
|
-
|
|
3589
|
+
LoaderComponent,
|
|
3610
3590
|
CheckboxModule,
|
|
3611
3591
|
PaginationModule
|
|
3612
3592
|
],
|
|
@@ -4219,10 +4199,10 @@ class BlockComponent {
|
|
|
4219
4199
|
}
|
|
4220
4200
|
}
|
|
4221
4201
|
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 });
|
|
4222
|
-
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 });
|
|
4202
|
+
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 });
|
|
4223
4203
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: BlockComponent, decorators: [{
|
|
4224
4204
|
type: Component,
|
|
4225
|
-
args: [{ selector: 'wac-block', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-content></ng-content>" }]
|
|
4205
|
+
args: [{ selector: 'wac-block', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CommonModule], template: "<ng-content></ng-content>" }]
|
|
4226
4206
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { blockSeparators: [{
|
|
4227
4207
|
type: ContentChildren,
|
|
4228
4208
|
args: [BlockSeparatorComponent]
|
|
@@ -5996,7 +5976,6 @@ const components = [
|
|
|
5996
5976
|
InputWithSelectComponent,
|
|
5997
5977
|
PopinComponent,
|
|
5998
5978
|
FreePopinComponent,
|
|
5999
|
-
BlockComponent,
|
|
6000
5979
|
BlockTitleLegacyComponent,
|
|
6001
5980
|
WrapperComponent,
|
|
6002
5981
|
FiltersComponent,
|
|
@@ -6045,7 +6024,9 @@ const exportsFromModule = [
|
|
|
6045
6024
|
];
|
|
6046
6025
|
const standaloneComponents = [
|
|
6047
6026
|
TabComponent,
|
|
6048
|
-
SnackbarComponent
|
|
6027
|
+
SnackbarComponent,
|
|
6028
|
+
BlockComponent,
|
|
6029
|
+
LoaderComponent,
|
|
6049
6030
|
];
|
|
6050
6031
|
class SharedComponentsModule {
|
|
6051
6032
|
}
|
|
@@ -6082,7 +6063,6 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6082
6063
|
InputWithSelectComponent,
|
|
6083
6064
|
PopinComponent,
|
|
6084
6065
|
FreePopinComponent,
|
|
6085
|
-
BlockComponent,
|
|
6086
6066
|
BlockTitleLegacyComponent,
|
|
6087
6067
|
WrapperComponent,
|
|
6088
6068
|
FiltersComponent,
|
|
@@ -6125,7 +6105,6 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6125
6105
|
TooltipModule,
|
|
6126
6106
|
CheckboxModule,
|
|
6127
6107
|
InputModule,
|
|
6128
|
-
LoaderModule,
|
|
6129
6108
|
ProgressBarModule,
|
|
6130
6109
|
PerfectScrollbarModule,
|
|
6131
6110
|
AlertPopupModule,
|
|
@@ -6135,7 +6114,9 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6135
6114
|
NgScrollbarReachedModule,
|
|
6136
6115
|
TreeModule,
|
|
6137
6116
|
ExpansionModule, TabComponent,
|
|
6138
|
-
SnackbarComponent
|
|
6117
|
+
SnackbarComponent,
|
|
6118
|
+
BlockComponent,
|
|
6119
|
+
LoaderComponent], exports: [TagComponent,
|
|
6139
6120
|
ButtonComponent,
|
|
6140
6121
|
InfoComponent,
|
|
6141
6122
|
SettingsComponent,
|
|
@@ -6167,7 +6148,6 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6167
6148
|
InputWithSelectComponent,
|
|
6168
6149
|
PopinComponent,
|
|
6169
6150
|
FreePopinComponent,
|
|
6170
|
-
BlockComponent,
|
|
6171
6151
|
BlockTitleLegacyComponent,
|
|
6172
6152
|
WrapperComponent,
|
|
6173
6153
|
FiltersComponent,
|
|
@@ -6209,7 +6189,9 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6209
6189
|
LoaderComponent,
|
|
6210
6190
|
ProgressBarComponent,
|
|
6211
6191
|
TreeComponent, ExpansionPanelComponent, ExpansionPanelHeaderComponent, AccordionComponent, ExpansionPanelDirective, ExpansionPanelHeaderDirective, TabComponent,
|
|
6212
|
-
SnackbarComponent
|
|
6192
|
+
SnackbarComponent,
|
|
6193
|
+
BlockComponent,
|
|
6194
|
+
LoaderComponent] });
|
|
6213
6195
|
SharedComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: SharedComponentsModule, imports: [CommonModule,
|
|
6214
6196
|
FormsModule,
|
|
6215
6197
|
NwbAllModule,
|
|
@@ -6226,7 +6208,6 @@ SharedComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0",
|
|
|
6226
6208
|
TooltipModule,
|
|
6227
6209
|
CheckboxModule,
|
|
6228
6210
|
InputModule,
|
|
6229
|
-
LoaderModule,
|
|
6230
6211
|
ProgressBarModule,
|
|
6231
6212
|
PerfectScrollbarModule,
|
|
6232
6213
|
AlertPopupModule,
|
|
@@ -6256,7 +6237,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
6256
6237
|
TooltipModule,
|
|
6257
6238
|
CheckboxModule,
|
|
6258
6239
|
InputModule,
|
|
6259
|
-
LoaderModule,
|
|
6260
6240
|
ProgressBarModule,
|
|
6261
6241
|
PerfectScrollbarModule,
|
|
6262
6242
|
AlertPopupModule,
|
|
@@ -6444,5 +6424,5 @@ const switchInOut = trigger('switchInOut', [
|
|
|
6444
6424
|
* Generated bundle index. Do not edit.
|
|
6445
6425
|
*/
|
|
6446
6426
|
|
|
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,
|
|
6427
|
+
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 };
|
|
6448
6428
|
//# sourceMappingURL=wizishop-angular-components.mjs.map
|