@wizishop/angular-components 0.0.186 → 0.0.187
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/angular-components.scss +555 -520
- package/bundles/wizishop-angular-components.umd.js +18 -1
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/shared-components.module.js +4 -2
- package/esm2015/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.js +14 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/wizishop-angular-components.js +16 -2
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/wizishop-angular-components-0.0.187.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.186.tgz +0 -0
|
@@ -4527,6 +4527,21 @@
|
|
|
4527
4527
|
translateAction: [{ type: i0.Output }]
|
|
4528
4528
|
};
|
|
4529
4529
|
|
|
4530
|
+
var WrapperMultipleBlockComponent = /** @class */ (function () {
|
|
4531
|
+
function WrapperMultipleBlockComponent() {
|
|
4532
|
+
}
|
|
4533
|
+
WrapperMultipleBlockComponent.prototype.ngOnInit = function () {
|
|
4534
|
+
};
|
|
4535
|
+
return WrapperMultipleBlockComponent;
|
|
4536
|
+
}());
|
|
4537
|
+
WrapperMultipleBlockComponent.decorators = [
|
|
4538
|
+
{ type: i0.Component, args: [{
|
|
4539
|
+
selector: 'wac-wrapper-multiple-block',
|
|
4540
|
+
template: "<div class=\"wac-wrapper-multiple-block\">\n <div class=\"wac-wrapper-multiple-block__sidebar\">\n <ng-content select=\"[sidebar]\"></ng-content>\n </div>\n <div class=\"wac-wrapper-multiple-block__content\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n"
|
|
4541
|
+
},] }
|
|
4542
|
+
];
|
|
4543
|
+
WrapperMultipleBlockComponent.ctorParameters = function () { return []; };
|
|
4544
|
+
|
|
4530
4545
|
var components = [
|
|
4531
4546
|
TagComponent,
|
|
4532
4547
|
TabComponent,
|
|
@@ -4576,7 +4591,8 @@
|
|
|
4576
4591
|
BlockWithCheckboxComponent,
|
|
4577
4592
|
ConfirmDeleteComponent,
|
|
4578
4593
|
MosaicComponent,
|
|
4579
|
-
ContentWithButtonsComponent
|
|
4594
|
+
ContentWithButtonsComponent,
|
|
4595
|
+
WrapperMultipleBlockComponent
|
|
4580
4596
|
];
|
|
4581
4597
|
var exportsFromModule = [
|
|
4582
4598
|
PaginationComponent,
|
|
@@ -4751,6 +4767,7 @@
|
|
|
4751
4767
|
exports.WiziComponentsModule = WiziComponentsModule;
|
|
4752
4768
|
exports.WrapperBlocsComponent = WrapperBlocsComponent;
|
|
4753
4769
|
exports.WrapperComponent = WrapperComponent;
|
|
4770
|
+
exports.WrapperMultipleBlockComponent = WrapperMultipleBlockComponent;
|
|
4754
4771
|
exports.WrapperSidebarComponent = WrapperSidebarComponent;
|
|
4755
4772
|
exports.WzEditInPlaceComponent = WzEditInPlaceComponent;
|
|
4756
4773
|
exports.ZindexToggleDirective = ZindexToggleDirective;
|