@wizishop/angular-components 0.0.152 → 0.0.153
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 +2464 -2443
- package/bundles/wizishop-angular-components.umd.js +24 -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/token-check/token-check.component.js +21 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/wizishop-angular-components.js +23 -2
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/token-check/token-check.component.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/wizishop-angular-components-0.0.153.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.152.tgz +0 -0
|
@@ -4274,6 +4274,27 @@
|
|
|
4274
4274
|
click: [{ type: i0.Output }]
|
|
4275
4275
|
};
|
|
4276
4276
|
|
|
4277
|
+
var TokenCheckComponent = /** @class */ (function () {
|
|
4278
|
+
function TokenCheckComponent() {
|
|
4279
|
+
this.warning = false;
|
|
4280
|
+
}
|
|
4281
|
+
TokenCheckComponent.prototype.ngOnInit = function () {
|
|
4282
|
+
};
|
|
4283
|
+
return TokenCheckComponent;
|
|
4284
|
+
}());
|
|
4285
|
+
TokenCheckComponent.decorators = [
|
|
4286
|
+
{ type: i0.Component, args: [{
|
|
4287
|
+
selector: 'wac-token-check',
|
|
4288
|
+
template: "<div class=\"wac-token-check\">\n <span [innerHTML]=\"label\"></span> : <span [innerHTML]=\"value\" [ngClass]=\"{'warning': value > max}\"></span> / <strong [innerHTML]=\"max\"></strong>\n</div>\n"
|
|
4289
|
+
},] }
|
|
4290
|
+
];
|
|
4291
|
+
TokenCheckComponent.ctorParameters = function () { return []; };
|
|
4292
|
+
TokenCheckComponent.propDecorators = {
|
|
4293
|
+
label: [{ type: i0.Input }],
|
|
4294
|
+
value: [{ type: i0.Input }],
|
|
4295
|
+
max: [{ type: i0.Input }]
|
|
4296
|
+
};
|
|
4297
|
+
|
|
4277
4298
|
var components = [
|
|
4278
4299
|
TagComponent,
|
|
4279
4300
|
TabComponent,
|
|
@@ -4318,7 +4339,8 @@
|
|
|
4318
4339
|
SelectedListComponent,
|
|
4319
4340
|
WrapperSidebarComponent,
|
|
4320
4341
|
BreadcrumbsComponent,
|
|
4321
|
-
CardPriceComponent
|
|
4342
|
+
CardPriceComponent,
|
|
4343
|
+
TokenCheckComponent
|
|
4322
4344
|
];
|
|
4323
4345
|
var exportsFromModule = [
|
|
4324
4346
|
PaginationComponent,
|
|
@@ -4478,6 +4500,7 @@
|
|
|
4478
4500
|
exports.TagComponent = TagComponent;
|
|
4479
4501
|
exports.TextAreaComponent = TextAreaComponent;
|
|
4480
4502
|
exports.TextComponent = TextComponent;
|
|
4503
|
+
exports.TokenCheckComponent = TokenCheckComponent;
|
|
4481
4504
|
exports.TooltipComponent = TooltipComponent;
|
|
4482
4505
|
exports.TreeComponent = TreeComponent;
|
|
4483
4506
|
exports.TreeModule = TreeModule;
|