@wizishop/angular-components 15.1.11 → 15.1.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/esm2020/lib/components/shared-components.module.mjs +7 -7
- package/esm2020/lib/components/snackbar/snackbar.component.mjs +4 -3
- package/fesm2015/wizishop-angular-components.mjs +8 -8
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +8 -8
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/shared-components.module.d.ts +52 -52
- package/lib/components/snackbar/snackbar.component.d.ts +1 -1
- package/package.json +1 -1
- package/wizishop-angular-components-15.1.12.tgz +0 -0
- package/wizishop-angular-components-15.1.11.tgz +0 -0
|
@@ -4330,7 +4330,7 @@ class SnackbarComponent {
|
|
|
4330
4330
|
}
|
|
4331
4331
|
}
|
|
4332
4332
|
SnackbarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: SnackbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4333
|
-
SnackbarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: SnackbarComponent, selector: "wac-snackbar", inputs: { message: "message", textButtonOk: "textButtonOk", textButtonKo: "textButtonKo", duration: "duration", color: "color", buttonColor: "buttonColor", visible: "visible" }, outputs: { visibleChange: "visibleChange", response: "response" }, ngImport: i0, template: "<div class=\"wac-snackbar\">\n <div [class]=\"'notification is-active ' + ((color) ? color : 'is-transparent')\"\n [@state]=\"visible ? 'active': 'inactive'\"\n >\n <div class=\"columns\">\n <div class=\"column notification--message\" [ngClass]=\"{'is-half': textButtonOk}\"\n [innerHTML]=\"message\">\n </div>\n <div class=\"column is-half\">\n <button [class]=\"'button ' + ((buttonColor) ? buttonColor : 'is-success')\"\n (click)=\"validate()\">{{textButtonOk}}\n </button>\n <button [class]=\"'button ' + ((buttonColor) ? buttonColor : 'is-success')\"\n (click)=\"refuse()\">{{textButtonKo}}\n </button>\n </div>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], animations: [
|
|
4333
|
+
SnackbarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: SnackbarComponent, isStandalone: true, selector: "wac-snackbar", inputs: { message: "message", textButtonOk: "textButtonOk", textButtonKo: "textButtonKo", duration: "duration", color: "color", buttonColor: "buttonColor", visible: "visible" }, outputs: { visibleChange: "visibleChange", response: "response" }, ngImport: i0, template: "<div class=\"wac-snackbar\">\n <div [class]=\"'notification is-active ' + ((color) ? color : 'is-transparent')\"\n [@state]=\"visible ? 'active': 'inactive'\"\n >\n <div class=\"columns\">\n <div class=\"column notification--message\" [ngClass]=\"{'is-half': textButtonOk}\"\n [innerHTML]=\"message\">\n </div>\n <div class=\"column is-half\">\n <button [class]=\"'button ' + ((buttonColor) ? buttonColor : 'is-success')\"\n (click)=\"validate()\">{{textButtonOk}}\n </button>\n <button [class]=\"'button ' + ((buttonColor) ? buttonColor : 'is-success')\"\n (click)=\"refuse()\">{{textButtonKo}}\n </button>\n </div>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], animations: [
|
|
4334
4334
|
trigger('state', [
|
|
4335
4335
|
state('void', style({
|
|
4336
4336
|
bottom: '-100px'
|
|
@@ -4361,7 +4361,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
4361
4361
|
transition('void => active', animate(300)),
|
|
4362
4362
|
transition('active => inactive', animate(300))
|
|
4363
4363
|
])
|
|
4364
|
-
], template: "<div class=\"wac-snackbar\">\n <div [class]=\"'notification is-active ' + ((color) ? color : 'is-transparent')\"\n [@state]=\"visible ? 'active': 'inactive'\"\n >\n <div class=\"columns\">\n <div class=\"column notification--message\" [ngClass]=\"{'is-half': textButtonOk}\"\n [innerHTML]=\"message\">\n </div>\n <div class=\"column is-half\">\n <button [class]=\"'button ' + ((buttonColor) ? buttonColor : 'is-success')\"\n (click)=\"validate()\">{{textButtonOk}}\n </button>\n <button [class]=\"'button ' + ((buttonColor) ? buttonColor : 'is-success')\"\n (click)=\"refuse()\">{{textButtonKo}}\n </button>\n </div>\n </div>\n </div>\n</div>\n" }]
|
|
4364
|
+
], standalone: true, imports: [CommonModule], template: "<div class=\"wac-snackbar\">\n <div [class]=\"'notification is-active ' + ((color) ? color : 'is-transparent')\"\n [@state]=\"visible ? 'active': 'inactive'\"\n >\n <div class=\"columns\">\n <div class=\"column notification--message\" [ngClass]=\"{'is-half': textButtonOk}\"\n [innerHTML]=\"message\">\n </div>\n <div class=\"column is-half\">\n <button [class]=\"'button ' + ((buttonColor) ? buttonColor : 'is-success')\"\n (click)=\"validate()\">{{textButtonOk}}\n </button>\n <button [class]=\"'button ' + ((buttonColor) ? buttonColor : 'is-success')\"\n (click)=\"refuse()\">{{textButtonKo}}\n </button>\n </div>\n </div>\n </div>\n</div>\n" }]
|
|
4365
4365
|
}], propDecorators: { message: [{
|
|
4366
4366
|
type: Input
|
|
4367
4367
|
}], textButtonOk: [{
|
|
@@ -6001,7 +6001,6 @@ const components = [
|
|
|
6001
6001
|
WrapperComponent,
|
|
6002
6002
|
FiltersComponent,
|
|
6003
6003
|
WrapperBlocsComponent,
|
|
6004
|
-
SnackbarComponent,
|
|
6005
6004
|
SearchComponent,
|
|
6006
6005
|
SelectedListComponent,
|
|
6007
6006
|
OptionalDisableContainerComponent,
|
|
@@ -6045,7 +6044,8 @@ const exportsFromModule = [
|
|
|
6045
6044
|
...ExpansionExport
|
|
6046
6045
|
];
|
|
6047
6046
|
const standaloneComponents = [
|
|
6048
|
-
TabComponent
|
|
6047
|
+
TabComponent,
|
|
6048
|
+
SnackbarComponent
|
|
6049
6049
|
];
|
|
6050
6050
|
class SharedComponentsModule {
|
|
6051
6051
|
}
|
|
@@ -6087,7 +6087,6 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6087
6087
|
WrapperComponent,
|
|
6088
6088
|
FiltersComponent,
|
|
6089
6089
|
WrapperBlocsComponent,
|
|
6090
|
-
SnackbarComponent,
|
|
6091
6090
|
SearchComponent,
|
|
6092
6091
|
SelectedListComponent,
|
|
6093
6092
|
OptionalDisableContainerComponent,
|
|
@@ -6135,7 +6134,8 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6135
6134
|
NgScrollbarModule,
|
|
6136
6135
|
NgScrollbarReachedModule,
|
|
6137
6136
|
TreeModule,
|
|
6138
|
-
ExpansionModule, TabComponent
|
|
6137
|
+
ExpansionModule, TabComponent,
|
|
6138
|
+
SnackbarComponent], exports: [TagComponent,
|
|
6139
6139
|
ButtonComponent,
|
|
6140
6140
|
InfoComponent,
|
|
6141
6141
|
SettingsComponent,
|
|
@@ -6172,7 +6172,6 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6172
6172
|
WrapperComponent,
|
|
6173
6173
|
FiltersComponent,
|
|
6174
6174
|
WrapperBlocsComponent,
|
|
6175
|
-
SnackbarComponent,
|
|
6176
6175
|
SearchComponent,
|
|
6177
6176
|
SelectedListComponent,
|
|
6178
6177
|
OptionalDisableContainerComponent,
|
|
@@ -6209,7 +6208,8 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
6209
6208
|
CheckboxComponent,
|
|
6210
6209
|
LoaderComponent,
|
|
6211
6210
|
ProgressBarComponent,
|
|
6212
|
-
TreeComponent, ExpansionPanelComponent, ExpansionPanelHeaderComponent, AccordionComponent, ExpansionPanelDirective, ExpansionPanelHeaderDirective, TabComponent
|
|
6211
|
+
TreeComponent, ExpansionPanelComponent, ExpansionPanelHeaderComponent, AccordionComponent, ExpansionPanelDirective, ExpansionPanelHeaderDirective, TabComponent,
|
|
6212
|
+
SnackbarComponent] });
|
|
6213
6213
|
SharedComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: SharedComponentsModule, imports: [CommonModule,
|
|
6214
6214
|
FormsModule,
|
|
6215
6215
|
NwbAllModule,
|