keevo-components 1.8.517 → 1.8.519
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/esm2022/lib/components/kv-icon/kv-icon.component.mjs +9 -26
- package/esm2022/lib/components/kv-icon/kv-icon.module.mjs +2 -8
- package/esm2022/lib/components/kv-layout/dropdown-master/dropdown-master.component.mjs +3 -3
- package/esm2022/lib/components/kv-layout/layout/kv-layout.component.mjs +9 -9
- package/esm2022/lib/components/kv-layout/top-icons/top-icons.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +21 -88072
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-button/kv-button.component.d.ts +1 -1
- package/lib/components/kv-icon/kv-icon.component.d.ts +2 -7
- package/lib/components/kv-table/kv-table.component.d.ts +1 -1
- package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
- package/package.json +1 -1
- package/esm2022/lib/api/services/tabler-icons.service.mjs +0 -88032
- package/lib/api/services/tabler-icons.service.d.ts +0 -8
|
@@ -9,10 +9,10 @@ export class TopIconsComponent {
|
|
|
9
9
|
this.topActions = input([]);
|
|
10
10
|
}
|
|
11
11
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: TopIconsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: TopIconsComponent, isStandalone: true, selector: "kv-top-icons", inputs: { topActions: { classPropertyName: "topActions", publicName: "topActions", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"top-icons-container\">\r\n @for (item of topActions(); track $index) {\r\n @if(item.visible){\r\n <kv-icon\r\n [name]=\"item.icon\"\r\n [numNotifications]=\"item.numNotifications||0\"\r\n [pTooltip]=\"item.tooltip\"\r\n [tooltipPosition]=\"'left'\"\r\n (onClick)=\"item.action($event)\"\r\n [img]=\"item.img\"\r\n [clickable]=\"true\"\r\n />\r\n }\r\n }\r\n</div>", styles: [".top-icons-container{display:flex;flex-direction:row;justify-content:flex-end;align-items:center;gap:.8rem}\n"], dependencies: [{ kind: "ngmodule", type: TooltipModule }, { kind: "directive", type: i1.Tooltip, selector: "[pTooltip]", inputs: ["tooltipPosition", "tooltipEvent", "appendTo", "positionStyle", "tooltipStyleClass", "tooltipZIndex", "escape", "showDelay", "hideDelay", "life", "positionTop", "positionLeft", "autoHide", "fitContent", "hideOnEscape", "pTooltip", "tooltipDisabled", "tooltipOptions"] }, { kind: "ngmodule", type: KvIconModule }, { kind: "component", type: i2.KvIconComponent, selector: "kv-icon", inputs: ["name", "
|
|
12
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: TopIconsComponent, isStandalone: true, selector: "kv-top-icons", inputs: { topActions: { classPropertyName: "topActions", publicName: "topActions", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"top-icons-container\">\r\n @for (item of topActions(); track $index) {\r\n @if(item.visible){\r\n <kv-icon\r\n [name]=\"item.icon\"\r\n [numNotifications]=\"item.numNotifications||0\"\r\n [pTooltip]=\"item.tooltip\"\r\n [tooltipPosition]=\"'left'\"\r\n (onClick)=\"item.action($event)\"\r\n [img]=\"item.img\"\r\n [clickable]=\"true\"\r\n />\r\n }\r\n }\r\n</div>", styles: [".top-icons-container{display:flex;flex-direction:row;justify-content:flex-end;align-items:center;gap:.8rem;color:rgb(var(--kv-color-text),.7)}\n"], dependencies: [{ kind: "ngmodule", type: TooltipModule }, { kind: "directive", type: i1.Tooltip, selector: "[pTooltip]", inputs: ["tooltipPosition", "tooltipEvent", "appendTo", "positionStyle", "tooltipStyleClass", "tooltipZIndex", "escape", "showDelay", "hideDelay", "life", "positionTop", "positionLeft", "autoHide", "fitContent", "hideOnEscape", "pTooltip", "tooltipDisabled", "tooltipOptions"] }, { kind: "ngmodule", type: KvIconModule }, { kind: "component", type: i2.KvIconComponent, selector: "kv-icon", inputs: ["name", "size", "numNotifications", "img", "clickable"], outputs: ["onClick"] }] }); }
|
|
13
13
|
}
|
|
14
14
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: TopIconsComponent, decorators: [{
|
|
15
15
|
type: Component,
|
|
16
|
-
args: [{ selector: 'kv-top-icons', standalone: true, imports: [TooltipModule, KvIconModule], template: "<div class=\"top-icons-container\">\r\n @for (item of topActions(); track $index) {\r\n @if(item.visible){\r\n <kv-icon\r\n [name]=\"item.icon\"\r\n [numNotifications]=\"item.numNotifications||0\"\r\n [pTooltip]=\"item.tooltip\"\r\n [tooltipPosition]=\"'left'\"\r\n (onClick)=\"item.action($event)\"\r\n [img]=\"item.img\"\r\n [clickable]=\"true\"\r\n />\r\n }\r\n }\r\n</div>", styles: [".top-icons-container{display:flex;flex-direction:row;justify-content:flex-end;align-items:center;gap:.8rem}\n"] }]
|
|
16
|
+
args: [{ selector: 'kv-top-icons', standalone: true, imports: [TooltipModule, KvIconModule], template: "<div class=\"top-icons-container\">\r\n @for (item of topActions(); track $index) {\r\n @if(item.visible){\r\n <kv-icon\r\n [name]=\"item.icon\"\r\n [numNotifications]=\"item.numNotifications||0\"\r\n [pTooltip]=\"item.tooltip\"\r\n [tooltipPosition]=\"'left'\"\r\n (onClick)=\"item.action($event)\"\r\n [img]=\"item.img\"\r\n [clickable]=\"true\"\r\n />\r\n }\r\n }\r\n</div>", styles: [".top-icons-container{display:flex;flex-direction:row;justify-content:flex-end;align-items:center;gap:.8rem;color:rgb(var(--kv-color-text),.7)}\n"] }]
|
|
17
17
|
}] });
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9wLWljb25zLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tlZXZvLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2t2LWxheW91dC90b3AtaWNvbnMvdG9wLWljb25zLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tlZXZvLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2t2LWxheW91dC90b3AtaWNvbnMvdG9wLWljb25zLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRWpELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUNoRCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sOEJBQThCLENBQUM7Ozs7QUFtQjVELE1BQU0sT0FBTyxpQkFBaUI7SUFQOUI7UUFTRSxlQUFVLEdBQUcsS0FBSyxDQUFvQixFQUFFLENBQUMsQ0FBQztLQUUzQzs4R0FKWSxpQkFBaUI7a0dBQWpCLGlCQUFpQiwyTkN0QjlCLDZnQkFjTSx5TURJTSxhQUFhLHFYQUFFLFlBQVk7OzJGQUkxQixpQkFBaUI7a0JBUDdCLFNBQVM7K0JBQ0UsY0FBYyxjQUNaLElBQUksV0FDUCxDQUFDLGFBQWEsRUFBRSxZQUFZLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIGlucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEt2SWNvbkNvbXBvbmVudCB9IGZyb20gXCIuLi8uLi9rdi1pY29uL2t2LWljb24uY29tcG9uZW50XCI7XHJcbmltcG9ydCB7IFRvb2x0aXBNb2R1bGUgfSBmcm9tICdwcmltZW5nL3Rvb2x0aXAnO1xyXG5pbXBvcnQgeyBLdkljb25Nb2R1bGUgfSBmcm9tICcuLi8uLi9rdi1pY29uL2t2LWljb24ubW9kdWxlJztcclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgVG9wQWN0aW9uc01vZGVsIHtcclxuICBpZDogbnVtYmVyO1xyXG4gIHZpc2libGU6IGJvb2xlYW47XHJcbiAgaWNvbj86IHN0cmluZztcclxuICB0b29sdGlwPzogc3RyaW5nO1xyXG4gIG51bU5vdGlmaWNhdGlvbnM/OiBudW1iZXI7XHJcbiAgaW1nPzogc3RyaW5nO1xyXG4gIGFjdGlvbjogKGU6YW55KSA9PiB2b2lkO1xyXG59XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2t2LXRvcC1pY29ucycsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbVG9vbHRpcE1vZHVsZSwgS3ZJY29uTW9kdWxlXSxcclxuICB0ZW1wbGF0ZVVybDogJy4vdG9wLWljb25zLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybDogJy4vdG9wLWljb25zLmNvbXBvbmVudC5zY3NzJ1xyXG59KVxyXG5leHBvcnQgY2xhc3MgVG9wSWNvbnNDb21wb25lbnQge1xyXG5cclxuICB0b3BBY3Rpb25zID0gaW5wdXQ8VG9wQWN0aW9uc01vZGVsW10+KFtdKTtcclxuXHJcbn1cclxuIiwiPGRpdiBjbGFzcz1cInRvcC1pY29ucy1jb250YWluZXJcIj5cclxuICAgIEBmb3IgKGl0ZW0gb2YgdG9wQWN0aW9ucygpOyB0cmFjayAkaW5kZXgpIHtcclxuICAgICAgICBAaWYoaXRlbS52aXNpYmxlKXtcclxuICAgICAgICAgICAgPGt2LWljb25cclxuICAgICAgICAgICAgICAgIFtuYW1lXT1cIml0ZW0uaWNvblwiXHJcbiAgICAgICAgICAgICAgICBbbnVtTm90aWZpY2F0aW9uc109XCJpdGVtLm51bU5vdGlmaWNhdGlvbnN8fDBcIlxyXG4gICAgICAgICAgICAgICAgW3BUb29sdGlwXT1cIml0ZW0udG9vbHRpcFwiXHJcbiAgICAgICAgICAgICAgICBbdG9vbHRpcFBvc2l0aW9uXT1cIidsZWZ0J1wiXHJcbiAgICAgICAgICAgICAgICAob25DbGljayk9XCJpdGVtLmFjdGlvbigkZXZlbnQpXCJcclxuICAgICAgICAgICAgICAgIFtpbWddPVwiaXRlbS5pbWdcIlxyXG4gICAgICAgICAgICAgICAgW2NsaWNrYWJsZV09XCJ0cnVlXCJcclxuICAgICAgICAgICAgLz5cclxuICAgICAgICB9XHJcbiAgICB9XHJcbjwvZGl2PiJdfQ==
|