@wizishop/angular-components 0.0.176 → 0.0.177
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 +0 -8
- package/bundles/wizishop-angular-components.umd.js +1 -15
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +2 -2
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/block-with-checkbox/block-with-checkbox.component.js +2 -16
- package/fesm2015/wizishop-angular-components.js +1 -15
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/block-with-checkbox/block-with-checkbox.component.d.ts +0 -6
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.177.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.176.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -3747,14 +3747,6 @@ span.wac-tooltip {
|
|
|
3747
3747
|
width: 100%;
|
|
3748
3748
|
cursor: pointer;
|
|
3749
3749
|
}
|
|
3750
|
-
&__right {
|
|
3751
|
-
display: flex;
|
|
3752
|
-
align-items: center;
|
|
3753
|
-
width: auto;
|
|
3754
|
-
div {
|
|
3755
|
-
margin: 0 0 0 20px;
|
|
3756
|
-
}
|
|
3757
|
-
}
|
|
3758
3750
|
&:hover:not(.disabled), &:focus:not(.disabled) {
|
|
3759
3751
|
input + label {
|
|
3760
3752
|
&:before {
|
|
@@ -4327,10 +4327,6 @@
|
|
|
4327
4327
|
function BlockWithCheckboxComponent() {
|
|
4328
4328
|
this.selected = false;
|
|
4329
4329
|
this.disabled = false;
|
|
4330
|
-
this.iconCopy = 'fa-solid fa-paste';
|
|
4331
|
-
this.iconWorld = 'fa-light fa-globe';
|
|
4332
|
-
this.copyAction = new i0.EventEmitter();
|
|
4333
|
-
this.worldAction = new i0.EventEmitter();
|
|
4334
4330
|
this.checkboxAction = new i0.EventEmitter();
|
|
4335
4331
|
this.nameRadio = 'wacBlockCheckboxRadio';
|
|
4336
4332
|
this.isFirst = false;
|
|
@@ -4346,12 +4342,6 @@
|
|
|
4346
4342
|
this.isFirst = false;
|
|
4347
4343
|
}
|
|
4348
4344
|
};
|
|
4349
|
-
BlockWithCheckboxComponent.prototype.eventCopy = function () {
|
|
4350
|
-
this.copyAction.emit(true);
|
|
4351
|
-
};
|
|
4352
|
-
BlockWithCheckboxComponent.prototype.eventWorld = function () {
|
|
4353
|
-
this.worldAction.emit(true);
|
|
4354
|
-
};
|
|
4355
4345
|
BlockWithCheckboxComponent.prototype.removeFirstClass = function () {
|
|
4356
4346
|
if (typeof document.querySelectorAll('.firstWacRadioBLock')[0] !== typeof undefined) {
|
|
4357
4347
|
document.querySelectorAll('.firstWacRadioBLock')[0].classList.remove('firstWacRadioBLock');
|
|
@@ -4362,17 +4352,13 @@
|
|
|
4362
4352
|
BlockWithCheckboxComponent.decorators = [
|
|
4363
4353
|
{ type: i0.Component, args: [{
|
|
4364
4354
|
selector: 'wac-block-with-checkbox',
|
|
4365
|
-
template: "<div class=\"block-with-checkbox\" [ngClass]=\"{'selected': inputRadioA.checked || selected, 'firstWacRadioBLock': isFirst, 'disabled': disabled}\" [style.opacity]=\"opacity\" (mouseover)=\"removeFirstClass()\">\n <div class=\"block-with-checkbox__left\" (click)=\"inputRadioA.click()\">\n <div class=\"wac-radio-block\">\n <div class=\"wac-radio__row\">\n <input #inputRadioA [name]=\"nameRadio\" type=\"radio\" [checked]=\"selected\" [value]=\"selected\" (change)=\"eventSelected($event)\" [id]=\"randomLabelName\">\n <label [for]=\"randomLabelName\"></label>\n </div>\n </div>\n </div>\n <div class=\"block-with-checkbox__center\" (click)=\"inputRadioA.click()\">\n <ng-content></ng-content>\n </div>\n
|
|
4355
|
+
template: "<div class=\"block-with-checkbox\" [ngClass]=\"{'selected': inputRadioA.checked || selected, 'firstWacRadioBLock': isFirst, 'disabled': disabled}\" [style.opacity]=\"opacity\" (mouseover)=\"removeFirstClass()\">\n <div class=\"block-with-checkbox__left\" (click)=\"inputRadioA.click()\">\n <div class=\"wac-radio-block\">\n <div class=\"wac-radio__row\">\n <input #inputRadioA [name]=\"nameRadio\" type=\"radio\" [checked]=\"selected\" [value]=\"selected\" (change)=\"eventSelected($event)\" [id]=\"randomLabelName\">\n <label [for]=\"randomLabelName\"></label>\n </div>\n </div>\n </div>\n <div class=\"block-with-checkbox__center\" (click)=\"inputRadioA.click()\">\n <ng-content></ng-content>\n </div>\n</div>\n"
|
|
4366
4356
|
},] }
|
|
4367
4357
|
];
|
|
4368
4358
|
BlockWithCheckboxComponent.ctorParameters = function () { return []; };
|
|
4369
4359
|
BlockWithCheckboxComponent.propDecorators = {
|
|
4370
4360
|
selected: [{ type: i0.Input }],
|
|
4371
4361
|
disabled: [{ type: i0.Input }],
|
|
4372
|
-
iconCopy: [{ type: i0.Input }],
|
|
4373
|
-
iconWorld: [{ type: i0.Input }],
|
|
4374
|
-
copyAction: [{ type: i0.Output }],
|
|
4375
|
-
worldAction: [{ type: i0.Output }],
|
|
4376
4362
|
checkboxAction: [{ type: i0.Output }],
|
|
4377
4363
|
nameRadio: [{ type: i0.Input }],
|
|
4378
4364
|
isFirst: [{ type: i0.Input }],
|