keevo-components 2.0.254 → 2.0.256
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-inputs/kv-chips/kv-chips.component.mjs +57 -0
- package/esm2022/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.mjs +3 -3
- package/esm2022/lib/components/kv-instruction-page/components/cards-instruction/kv-cards-instruction.component.mjs +3 -3
- package/esm2022/lib/components/kv-instruction-page/kv-instruction-page.component.mjs +3 -3
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/keevo-components.mjs +62 -7
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-inputs/kv-chips/kv-chips.component.d.ts +16 -0
- package/lib/components/kv-instruction-page/components/cards-instruction/kv-cards-instruction.component.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -7049,11 +7049,11 @@ class KvSelectButtonsComponent {
|
|
|
7049
7049
|
return style;
|
|
7050
7050
|
}
|
|
7051
7051
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvSelectButtonsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7052
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: KvSelectButtonsComponent, selector: "kv-select-buttons", inputs: { options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null }, selection: { classPropertyName: "selection", publicName: "selection", isSignal: true, isRequired: false, transformFunction: null }, defaultValue: { classPropertyName: "defaultValue", publicName: "defaultValue", isSignal: false, isRequired: false, transformFunction: null } }, outputs: { selection: "selectionChange", selectChange: "selectChange" }, host: { listeners: { "window:resize": "onResize()" } }, viewQueries: [{ propertyName: "optionRefs", predicate: ["optRef"], descendants: true, read: ElementRef }], ngImport: i0, template: "<div class=\"flex flex-1 flex-row justify-content-start\">\r\n <div class=\"container\">\r\n <div class=\"highlight\" [ngStyle]=\"style()\"></div>\r\n\r\n <div class=\"inner flex gap-1\">\r\n @for(option of options(); track option.value;) {\r\n <div \r\n class=\"option\" \r\n (click)=\"select(option)\"\r\n [attr.active]=\"selection() === option.value\"\r\n #optRef\r\n >\r\n @if(option.icon){\r\n <span class=\"icon material-symbols-outlined\">\r\n {{ option.icon }}\r\n </span>\r\n }\r\n\r\n {{ option.label }}\r\n\r\n @if(option.counter){\r\n <div class=\"counter\" [attr.active]=\"selection() === option.value\">\r\n {{ option.counter }}\r\n </div>\r\n }\r\n \r\n </div>\r\n }\r\n </div>\r\n </div>\r\n</div
|
|
7052
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: KvSelectButtonsComponent, selector: "kv-select-buttons", inputs: { options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null }, selection: { classPropertyName: "selection", publicName: "selection", isSignal: true, isRequired: false, transformFunction: null }, defaultValue: { classPropertyName: "defaultValue", publicName: "defaultValue", isSignal: false, isRequired: false, transformFunction: null } }, outputs: { selection: "selectionChange", selectChange: "selectChange" }, host: { listeners: { "window:resize": "onResize()" } }, viewQueries: [{ propertyName: "optionRefs", predicate: ["optRef"], descendants: true, read: ElementRef }], ngImport: i0, template: "<div class=\"flex flex-1 flex-row justify-content-start\">\r\n <div class=\"container\">\r\n <div class=\"highlight\" [ngStyle]=\"style()\"></div>\r\n\r\n <div class=\"inner flex gap-1\">\r\n @for(option of options(); track option.value;) {\r\n <div \r\n class=\"option\" \r\n (click)=\"select(option)\"\r\n [attr.active]=\"selection() === option.value\"\r\n #optRef\r\n >\r\n <span class=\"flex flex-row align-items-center\">\r\n @if(option.icon){\r\n <span class=\"icon material-symbols-outlined\">\r\n {{ option.icon }}\r\n </span>\r\n }\r\n\r\n {{ option.label }}\r\n\r\n </span>\r\n\r\n @if(option.counter){\r\n <div class=\"counter\" [attr.active]=\"selection() === option.value\">\r\n {{ option.counter }}\r\n </div>\r\n }\r\n \r\n </div>\r\n }\r\n </div>\r\n </div>\r\n</div>", styles: [".container{display:inline-flex;position:relative;align-items:center;background:#f1f5f9;border-radius:.5rem;padding:4px;height:2.5rem;box-sizing:border-box}.container .inner{display:flex;position:relative;z-index:1;width:100%}.container .highlight{position:absolute;z-index:0;background:#fff;border-radius:6px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;left:0;top:4px;bottom:4px;transition:transform .25s cubic-bezier(.2,0,0,1),width .25s cubic-bezier(.2,0,0,1)}.option{flex:1;display:flex;align-items:center;justify-content:center;padding:0 12px;font-size:.875rem;font-weight:500;color:#64748b;white-space:nowrap;cursor:pointer;-webkit-user-select:none;user-select:none;transition:color .2s;position:relative;z-index:1;gap:.5rem}.option:hover{color:#444f5f}.option[active=true]{color:#0f172a;font-weight:600}.option[active=true] .icon{color:#0ea5e9}.icon{font-size:1.1rem;margin-right:6px;display:flex}.counter{height:1.125rem;min-width:1.125rem;padding:0 4px;display:flex;align-items:center;justify-content:center;line-height:1;border-radius:99px;font-size:.75rem;font-weight:700;color:#fff;background:#64748b;transition:background .2s;font-size:.625rem!important}.option[active=true] .counter{background:#0a3a78}\n"], dependencies: [{ kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
7053
7053
|
}
|
|
7054
7054
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvSelectButtonsComponent, decorators: [{
|
|
7055
7055
|
type: Component,
|
|
7056
|
-
args: [{ selector: 'kv-select-buttons', standalone: false, template: "<div class=\"flex flex-1 flex-row justify-content-start\">\r\n <div class=\"container\">\r\n <div class=\"highlight\" [ngStyle]=\"style()\"></div>\r\n\r\n <div class=\"inner flex gap-1\">\r\n @for(option of options(); track option.value;) {\r\n <div \r\n class=\"option\" \r\n (click)=\"select(option)\"\r\n [attr.active]=\"selection() === option.value\"\r\n #optRef\r\n >\r\n @if(option.icon){\r\n <span class=\"icon material-symbols-outlined\">\r\n {{ option.icon }}\r\n </span>\r\n }\r\n\r\n {{ option.label }}\r\n\r\n @if(option.counter){\r\n <div class=\"counter\" [attr.active]=\"selection() === option.value\">\r\n {{ option.counter }}\r\n </div>\r\n }\r\n \r\n </div>\r\n }\r\n </div>\r\n </div>\r\n</div
|
|
7056
|
+
args: [{ selector: 'kv-select-buttons', standalone: false, template: "<div class=\"flex flex-1 flex-row justify-content-start\">\r\n <div class=\"container\">\r\n <div class=\"highlight\" [ngStyle]=\"style()\"></div>\r\n\r\n <div class=\"inner flex gap-1\">\r\n @for(option of options(); track option.value;) {\r\n <div \r\n class=\"option\" \r\n (click)=\"select(option)\"\r\n [attr.active]=\"selection() === option.value\"\r\n #optRef\r\n >\r\n <span class=\"flex flex-row align-items-center\">\r\n @if(option.icon){\r\n <span class=\"icon material-symbols-outlined\">\r\n {{ option.icon }}\r\n </span>\r\n }\r\n\r\n {{ option.label }}\r\n\r\n </span>\r\n\r\n @if(option.counter){\r\n <div class=\"counter\" [attr.active]=\"selection() === option.value\">\r\n {{ option.counter }}\r\n </div>\r\n }\r\n \r\n </div>\r\n }\r\n </div>\r\n </div>\r\n</div>", styles: [".container{display:inline-flex;position:relative;align-items:center;background:#f1f5f9;border-radius:.5rem;padding:4px;height:2.5rem;box-sizing:border-box}.container .inner{display:flex;position:relative;z-index:1;width:100%}.container .highlight{position:absolute;z-index:0;background:#fff;border-radius:6px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;left:0;top:4px;bottom:4px;transition:transform .25s cubic-bezier(.2,0,0,1),width .25s cubic-bezier(.2,0,0,1)}.option{flex:1;display:flex;align-items:center;justify-content:center;padding:0 12px;font-size:.875rem;font-weight:500;color:#64748b;white-space:nowrap;cursor:pointer;-webkit-user-select:none;user-select:none;transition:color .2s;position:relative;z-index:1;gap:.5rem}.option:hover{color:#444f5f}.option[active=true]{color:#0f172a;font-weight:600}.option[active=true] .icon{color:#0ea5e9}.icon{font-size:1.1rem;margin-right:6px;display:flex}.counter{height:1.125rem;min-width:1.125rem;padding:0 4px;display:flex;align-items:center;justify-content:center;line-height:1;border-radius:99px;font-size:.75rem;font-weight:700;color:#fff;background:#64748b;transition:background .2s;font-size:.625rem!important}.option[active=true] .counter{background:#0a3a78}\n"] }]
|
|
7057
7057
|
}], ctorParameters: () => [], propDecorators: { defaultValue: [{
|
|
7058
7058
|
type: Input
|
|
7059
7059
|
}], selectChange: [{
|
|
@@ -14504,11 +14504,11 @@ class KvCardsInstructionComponent {
|
|
|
14504
14504
|
this.blackCard = input();
|
|
14505
14505
|
}
|
|
14506
14506
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvCardsInstructionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
14507
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: KvCardsInstructionComponent, isStandalone: true, selector: "kv-cards-instruction", inputs: { whiteCard: { classPropertyName: "whiteCard", publicName: "whiteCard", isSignal: true, isRequired: false, transformFunction: null }, blackCard: { classPropertyName: "blackCard", publicName: "blackCard", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"w-full h-full flex flex-column gap-2\">\r\n @if (whiteCard()) {\r\n <div\r\n class=\"bg-white border-1 border-gray-300 border-round-lg p-3 min-h-0 flex flex-column gap-4\"\r\n [style.height.%]=\"whiteCard()?.height\"\r\n >\r\n <div class=\"flex flex-row align-items-center gap-2\">\r\n @if(whiteCard()?.icon) {\r\n <span class=\"material-symbols-outlined text-xl\"> {{ whiteCard()?.icon }}</span>\r\n }\r\n <span class=\"font-semibold\">{{ whiteCard()?.title }}</span>\r\n </div>\r\n\r\n <div class=\"h-full max-h-full overflow-y-auto text-xs\">\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (blackCard()) {\r\n <div\r\n class=\"bg-gray-900 text-
|
|
14507
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: KvCardsInstructionComponent, isStandalone: true, selector: "kv-cards-instruction", inputs: { whiteCard: { classPropertyName: "whiteCard", publicName: "whiteCard", isSignal: true, isRequired: false, transformFunction: null }, blackCard: { classPropertyName: "blackCard", publicName: "blackCard", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"w-full h-full flex flex-column gap-2\">\r\n @if (whiteCard()) {\r\n <div\r\n class=\"bg-white border-1 border-gray-300 border-round-lg p-3 min-h-0 flex flex-column gap-4\"\r\n [style.height.%]=\"whiteCard()?.height\"\r\n >\r\n <div class=\"flex flex-row align-items-center gap-2\">\r\n @if(whiteCard()?.icon) {\r\n <span class=\"material-symbols-outlined font-semibold text-xl text-{{whiteCard()?.color || 'blue'}}-600\"> {{ whiteCard()?.icon }}</span>\r\n }\r\n <span class=\"font-semibold text-sm\">{{ whiteCard()?.title }}</span>\r\n </div>\r\n\r\n <div class=\"h-full max-h-full overflow-y-auto text-xs\">\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (blackCard()) {\r\n <div\r\n class=\"bg-gray-900 text-gray-200 border-round-lg p-3 min-h-0 flex flex-column gap-4\"\r\n [style.height.%]=\"blackCard()?.height\"\r\n >\r\n <div class=\"flex flex-row align-items-center gap-2\">\r\n @if(blackCard()?.icon) {\r\n <span class=\"material-symbols-outlined font-semibold text-xl\"> {{ blackCard()?.icon }}</span>\r\n }\r\n <span class=\"font-semibold text-sm\">{{ blackCard()?.title }}</span>\r\n </div>\r\n\r\n <div class=\"h-full max-h-full overflow-y-auto text-xs\">\r\n <ng-content select=\"[black-card-content]\"></ng-content>\r\n </div>\r\n </div>\r\n }\r\n</div>\r\n", styles: [""] }); }
|
|
14508
14508
|
}
|
|
14509
14509
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvCardsInstructionComponent, decorators: [{
|
|
14510
14510
|
type: Component,
|
|
14511
|
-
args: [{ selector: 'kv-cards-instruction', standalone: true, imports: [], template: "<div class=\"w-full h-full flex flex-column gap-2\">\r\n @if (whiteCard()) {\r\n <div\r\n class=\"bg-white border-1 border-gray-300 border-round-lg p-3 min-h-0 flex flex-column gap-4\"\r\n [style.height.%]=\"whiteCard()?.height\"\r\n >\r\n <div class=\"flex flex-row align-items-center gap-2\">\r\n @if(whiteCard()?.icon) {\r\n <span class=\"material-symbols-outlined text-xl\"> {{ whiteCard()?.icon }}</span>\r\n }\r\n <span class=\"font-semibold\">{{ whiteCard()?.title }}</span>\r\n </div>\r\n\r\n <div class=\"h-full max-h-full overflow-y-auto text-xs\">\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (blackCard()) {\r\n <div\r\n class=\"bg-gray-900 text-
|
|
14511
|
+
args: [{ selector: 'kv-cards-instruction', standalone: true, imports: [], template: "<div class=\"w-full h-full flex flex-column gap-2\">\r\n @if (whiteCard()) {\r\n <div\r\n class=\"bg-white border-1 border-gray-300 border-round-lg p-3 min-h-0 flex flex-column gap-4\"\r\n [style.height.%]=\"whiteCard()?.height\"\r\n >\r\n <div class=\"flex flex-row align-items-center gap-2\">\r\n @if(whiteCard()?.icon) {\r\n <span class=\"material-symbols-outlined font-semibold text-xl text-{{whiteCard()?.color || 'blue'}}-600\"> {{ whiteCard()?.icon }}</span>\r\n }\r\n <span class=\"font-semibold text-sm\">{{ whiteCard()?.title }}</span>\r\n </div>\r\n\r\n <div class=\"h-full max-h-full overflow-y-auto text-xs\">\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (blackCard()) {\r\n <div\r\n class=\"bg-gray-900 text-gray-200 border-round-lg p-3 min-h-0 flex flex-column gap-4\"\r\n [style.height.%]=\"blackCard()?.height\"\r\n >\r\n <div class=\"flex flex-row align-items-center gap-2\">\r\n @if(blackCard()?.icon) {\r\n <span class=\"material-symbols-outlined font-semibold text-xl\"> {{ blackCard()?.icon }}</span>\r\n }\r\n <span class=\"font-semibold text-sm\">{{ blackCard()?.title }}</span>\r\n </div>\r\n\r\n <div class=\"h-full max-h-full overflow-y-auto text-xs\">\r\n <ng-content select=\"[black-card-content]\"></ng-content>\r\n </div>\r\n </div>\r\n }\r\n</div>\r\n" }]
|
|
14512
14512
|
}] });
|
|
14513
14513
|
|
|
14514
14514
|
class KvInstructionPageComponent {
|
|
@@ -14525,11 +14525,66 @@ class KvInstructionPageComponent {
|
|
|
14525
14525
|
this.verIntrucoes = false;
|
|
14526
14526
|
}
|
|
14527
14527
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvInstructionPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
14528
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: KvInstructionPageComponent, isStandalone: true, selector: "kv-instruction-page", inputs: { actions: { classPropertyName: "actions", publicName: "actions", isSignal: true, isRequired: false, transformFunction: null }, camposObrigatorios: { classPropertyName: "camposObrigatorios", publicName: "camposObrigatorios", isSignal: true, isRequired: false, transformFunction: null }, whiteCard: { classPropertyName: "whiteCard", publicName: "whiteCard", isSignal: true, isRequired: false, transformFunction: null }, blackCard: { classPropertyName: "blackCard", publicName: "blackCard", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"h-full flex flex-column overflow-hidden\">\r\n <div class=\"flex-1 min-h-0 flex flex-row p-2 gap-2\">\r\n <div\r\n class=\"h-full max-h-full overflow-y-auto w-12 lg:{{\r\n sizeContent()\r\n }} relative\"\r\n >\r\n @if (this.whiteCard() || this.blackCard()) {\r\n <kv-button\r\n [severity]=\"'secondary'\"\r\n [type]=\"'text'\"\r\n [size]=\"'large'\"\r\n [icon]=\"'quick_reference'\"\r\n class=\"block lg:hidden absolute top-0 right-0 pt-1 pr-1\"\r\n (onClick)=\"verIntrucoes = true\"\r\n >\r\n </kv-button>\r\n }\r\n\r\n <ng-content select=\"[main-content]\"></ng-content>\r\n </div>\r\n\r\n <div\r\n class=\"hidden lg:block w-3 h-full\"\r\n [class.none]=\"!whiteCard() && !blackCard()\"\r\n >\r\n <kv-cards-instruction\r\n [whiteCard]=\"whiteCard()\"\r\n [blackCard]=\"blackCard()\"\r\n >\r\n <div white-card-content class=\"h-full\">\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n <div black-card-content class=\"h-full\">\r\n <ng-content select=\"[black-card-content]\"></ng-content>\r\n </div>\r\n </kv-cards-instruction>\r\n </div>\r\n </div>\r\n\r\n @if (actions().length > 0) {\r\n <div\r\n class=\"flex-initial flex-none flex flex-row justify-content-{{\r\n camposObrigatorios() ? 'between' : 'end'\r\n }} align-items-center p-2\"\r\n >\r\n @if (camposObrigatorios()) {\r\n <span class=\"text-xs text-red-500\">* Preenchimento obrigat\u00F3rio</span>\r\n }\r\n\r\n <div class=\"flex flex-row justify-content-end gap-2\">\r\n @for (action of actions().slice().reverse(); track action.index) {\r\n <kv-button\r\n [label]=\"action.label || ''\"\r\n [severity]=\"action.severity || 'tertiary'\"\r\n [disabled]=\"action.disabled || false\"\r\n [type]=\"action.type\"\r\n [size]=\"action.size || 'small'\"\r\n [icon]=\"action.icon || ''\"\r\n [iconPosition]=\"action.iconPosition || 'left'\"\r\n [items]=\"action.items || []\"\r\n [popup]=\"action.popup || false\"\r\n [popupIcon]=\"action.popupIcon || false\"\r\n [fullWidth]=\"action.fullWidth || false\"\r\n (onClick)=\"action?.command($event)\"\r\n ></kv-button>\r\n }\r\n </div>\r\n </div>\r\n }\r\n</div>\r\n\r\n<p-sidebar\r\n [(visible)]=\"verIntrucoes\"\r\n position=\"right\"\r\n appendTo=\"body\"\r\n [showCloseIcon]=\"true\"\r\n styleClass=\"w-30rem\"\r\n>\r\n <kv-cards-instruction [whiteCard]=\"whiteCard()\" [blackCard]=\"blackCard()\">\r\n <div white-card-content>\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n <div black-card-content>\r\n <ng-content select=\"[black-card-content]\"></ng-content>\r\n </div>\r\n </kv-cards-instruction>\r\n</p-sidebar>\r\n", styles: [""], dependencies: [{ kind: "ngmodule", type: KvButtonModule }, { kind: "component", type: KvButtonComponent, selector: "kv-button", inputs: ["fullWidth", "type", "loading", "severity", "size", "icon", "iconPosition", "label", "disabled", "items", "popup", "popupIcon"], outputs: ["iconChange", "onClick"] }, { kind: "ngmodule", type: DividerModule }, { kind: "component", type: KvCardsInstructionComponent, selector: "kv-cards-instruction", inputs: ["whiteCard", "blackCard"] }, { kind: "ngmodule", type: SidebarModule }, { kind: "component", type: i10$1.Sidebar, selector: "p-sidebar", inputs: ["appendTo", "blockScroll", "style", "styleClass", "ariaCloseLabel", "autoZIndex", "baseZIndex", "modal", "dismissible", "showCloseIcon", "closeOnEscape", "transitionOptions", "visible", "position", "fullScreen"], outputs: ["onShow", "onHide", "visibleChange"] }] }); }
|
|
14528
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: KvInstructionPageComponent, isStandalone: true, selector: "kv-instruction-page", inputs: { actions: { classPropertyName: "actions", publicName: "actions", isSignal: true, isRequired: false, transformFunction: null }, camposObrigatorios: { classPropertyName: "camposObrigatorios", publicName: "camposObrigatorios", isSignal: true, isRequired: false, transformFunction: null }, whiteCard: { classPropertyName: "whiteCard", publicName: "whiteCard", isSignal: true, isRequired: false, transformFunction: null }, blackCard: { classPropertyName: "blackCard", publicName: "blackCard", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"h-full flex flex-column overflow-hidden\">\r\n <div class=\"flex-1 min-h-0 flex flex-row p-2 gap-2\">\r\n <div\r\n class=\"h-full max-h-full overflow-y-auto w-12 lg:{{\r\n sizeContent()\r\n }} relative\"\r\n >\r\n @if (this.whiteCard() || this.blackCard()) {\r\n <kv-button\r\n [severity]=\"'secondary'\"\r\n [type]=\"'text'\"\r\n [size]=\"'large'\"\r\n [icon]=\"'quick_reference'\"\r\n class=\"block lg:hidden absolute top-0 right-0 pt-1 pr-1\"\r\n (onClick)=\"verIntrucoes = true\"\r\n >\r\n </kv-button>\r\n }\r\n\r\n <ng-content select=\"[main-content]\"></ng-content>\r\n </div>\r\n\r\n <div\r\n class=\"hidden lg:block w-3 h-full\"\r\n [class.none]=\"!whiteCard() && !blackCard()\"\r\n >\r\n <kv-cards-instruction\r\n [whiteCard]=\"whiteCard()\"\r\n [blackCard]=\"blackCard()\"\r\n >\r\n <div white-card-content class=\"h-full\">\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n <div black-card-content class=\"h-full\">\r\n <ng-content select=\"[black-card-content]\"></ng-content>\r\n </div>\r\n </kv-cards-instruction>\r\n </div>\r\n </div>\r\n\r\n @if (actions().length > 0) {\r\n <div\r\n class=\"flex-initial flex-none flex flex-row justify-content-{{\r\n camposObrigatorios() ? 'between' : 'end'\r\n }} align-items-center p-2\"\r\n >\r\n @if (camposObrigatorios()) {\r\n <span class=\"text-xs text-red-500 font-semibold\">* Preenchimento obrigat\u00F3rio</span>\r\n }\r\n\r\n <div class=\"flex flex-row justify-content-end gap-2\">\r\n @for (action of actions().slice().reverse(); track action.index) {\r\n <kv-button\r\n [label]=\"action.label || ''\"\r\n [severity]=\"action.severity || 'tertiary'\"\r\n [disabled]=\"action.disabled || false\"\r\n [type]=\"action.type\"\r\n [size]=\"action.size || 'small'\"\r\n [icon]=\"action.icon || ''\"\r\n [iconPosition]=\"action.iconPosition || 'left'\"\r\n [items]=\"action.items || []\"\r\n [popup]=\"action.popup || false\"\r\n [popupIcon]=\"action.popupIcon || false\"\r\n [fullWidth]=\"action.fullWidth || false\"\r\n (onClick)=\"action?.command($event)\"\r\n ></kv-button>\r\n }\r\n </div>\r\n </div>\r\n }\r\n</div>\r\n\r\n<p-sidebar\r\n [(visible)]=\"verIntrucoes\"\r\n position=\"right\"\r\n appendTo=\"body\"\r\n [showCloseIcon]=\"true\"\r\n styleClass=\"w-30rem\"\r\n>\r\n <kv-cards-instruction [whiteCard]=\"whiteCard()\" [blackCard]=\"blackCard()\">\r\n <div white-card-content>\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n <div black-card-content>\r\n <ng-content select=\"[black-card-content]\"></ng-content>\r\n </div>\r\n </kv-cards-instruction>\r\n</p-sidebar>\r\n", styles: [""], dependencies: [{ kind: "ngmodule", type: KvButtonModule }, { kind: "component", type: KvButtonComponent, selector: "kv-button", inputs: ["fullWidth", "type", "loading", "severity", "size", "icon", "iconPosition", "label", "disabled", "items", "popup", "popupIcon"], outputs: ["iconChange", "onClick"] }, { kind: "ngmodule", type: DividerModule }, { kind: "component", type: KvCardsInstructionComponent, selector: "kv-cards-instruction", inputs: ["whiteCard", "blackCard"] }, { kind: "ngmodule", type: SidebarModule }, { kind: "component", type: i10$1.Sidebar, selector: "p-sidebar", inputs: ["appendTo", "blockScroll", "style", "styleClass", "ariaCloseLabel", "autoZIndex", "baseZIndex", "modal", "dismissible", "showCloseIcon", "closeOnEscape", "transitionOptions", "visible", "position", "fullScreen"], outputs: ["onShow", "onHide", "visibleChange"] }] }); }
|
|
14529
14529
|
}
|
|
14530
14530
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvInstructionPageComponent, decorators: [{
|
|
14531
14531
|
type: Component,
|
|
14532
|
-
args: [{ selector: 'kv-instruction-page', standalone: true, imports: [KvButtonModule, DividerModule, KvCardsInstructionComponent, SidebarModule], template: "<div class=\"h-full flex flex-column overflow-hidden\">\r\n <div class=\"flex-1 min-h-0 flex flex-row p-2 gap-2\">\r\n <div\r\n class=\"h-full max-h-full overflow-y-auto w-12 lg:{{\r\n sizeContent()\r\n }} relative\"\r\n >\r\n @if (this.whiteCard() || this.blackCard()) {\r\n <kv-button\r\n [severity]=\"'secondary'\"\r\n [type]=\"'text'\"\r\n [size]=\"'large'\"\r\n [icon]=\"'quick_reference'\"\r\n class=\"block lg:hidden absolute top-0 right-0 pt-1 pr-1\"\r\n (onClick)=\"verIntrucoes = true\"\r\n >\r\n </kv-button>\r\n }\r\n\r\n <ng-content select=\"[main-content]\"></ng-content>\r\n </div>\r\n\r\n <div\r\n class=\"hidden lg:block w-3 h-full\"\r\n [class.none]=\"!whiteCard() && !blackCard()\"\r\n >\r\n <kv-cards-instruction\r\n [whiteCard]=\"whiteCard()\"\r\n [blackCard]=\"blackCard()\"\r\n >\r\n <div white-card-content class=\"h-full\">\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n <div black-card-content class=\"h-full\">\r\n <ng-content select=\"[black-card-content]\"></ng-content>\r\n </div>\r\n </kv-cards-instruction>\r\n </div>\r\n </div>\r\n\r\n @if (actions().length > 0) {\r\n <div\r\n class=\"flex-initial flex-none flex flex-row justify-content-{{\r\n camposObrigatorios() ? 'between' : 'end'\r\n }} align-items-center p-2\"\r\n >\r\n @if (camposObrigatorios()) {\r\n <span class=\"text-xs text-red-500\">* Preenchimento obrigat\u00F3rio</span>\r\n }\r\n\r\n <div class=\"flex flex-row justify-content-end gap-2\">\r\n @for (action of actions().slice().reverse(); track action.index) {\r\n <kv-button\r\n [label]=\"action.label || ''\"\r\n [severity]=\"action.severity || 'tertiary'\"\r\n [disabled]=\"action.disabled || false\"\r\n [type]=\"action.type\"\r\n [size]=\"action.size || 'small'\"\r\n [icon]=\"action.icon || ''\"\r\n [iconPosition]=\"action.iconPosition || 'left'\"\r\n [items]=\"action.items || []\"\r\n [popup]=\"action.popup || false\"\r\n [popupIcon]=\"action.popupIcon || false\"\r\n [fullWidth]=\"action.fullWidth || false\"\r\n (onClick)=\"action?.command($event)\"\r\n ></kv-button>\r\n }\r\n </div>\r\n </div>\r\n }\r\n</div>\r\n\r\n<p-sidebar\r\n [(visible)]=\"verIntrucoes\"\r\n position=\"right\"\r\n appendTo=\"body\"\r\n [showCloseIcon]=\"true\"\r\n styleClass=\"w-30rem\"\r\n>\r\n <kv-cards-instruction [whiteCard]=\"whiteCard()\" [blackCard]=\"blackCard()\">\r\n <div white-card-content>\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n <div black-card-content>\r\n <ng-content select=\"[black-card-content]\"></ng-content>\r\n </div>\r\n </kv-cards-instruction>\r\n</p-sidebar>\r\n" }]
|
|
14532
|
+
args: [{ selector: 'kv-instruction-page', standalone: true, imports: [KvButtonModule, DividerModule, KvCardsInstructionComponent, SidebarModule], template: "<div class=\"h-full flex flex-column overflow-hidden\">\r\n <div class=\"flex-1 min-h-0 flex flex-row p-2 gap-2\">\r\n <div\r\n class=\"h-full max-h-full overflow-y-auto w-12 lg:{{\r\n sizeContent()\r\n }} relative\"\r\n >\r\n @if (this.whiteCard() || this.blackCard()) {\r\n <kv-button\r\n [severity]=\"'secondary'\"\r\n [type]=\"'text'\"\r\n [size]=\"'large'\"\r\n [icon]=\"'quick_reference'\"\r\n class=\"block lg:hidden absolute top-0 right-0 pt-1 pr-1\"\r\n (onClick)=\"verIntrucoes = true\"\r\n >\r\n </kv-button>\r\n }\r\n\r\n <ng-content select=\"[main-content]\"></ng-content>\r\n </div>\r\n\r\n <div\r\n class=\"hidden lg:block w-3 h-full\"\r\n [class.none]=\"!whiteCard() && !blackCard()\"\r\n >\r\n <kv-cards-instruction\r\n [whiteCard]=\"whiteCard()\"\r\n [blackCard]=\"blackCard()\"\r\n >\r\n <div white-card-content class=\"h-full\">\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n <div black-card-content class=\"h-full\">\r\n <ng-content select=\"[black-card-content]\"></ng-content>\r\n </div>\r\n </kv-cards-instruction>\r\n </div>\r\n </div>\r\n\r\n @if (actions().length > 0) {\r\n <div\r\n class=\"flex-initial flex-none flex flex-row justify-content-{{\r\n camposObrigatorios() ? 'between' : 'end'\r\n }} align-items-center p-2\"\r\n >\r\n @if (camposObrigatorios()) {\r\n <span class=\"text-xs text-red-500 font-semibold\">* Preenchimento obrigat\u00F3rio</span>\r\n }\r\n\r\n <div class=\"flex flex-row justify-content-end gap-2\">\r\n @for (action of actions().slice().reverse(); track action.index) {\r\n <kv-button\r\n [label]=\"action.label || ''\"\r\n [severity]=\"action.severity || 'tertiary'\"\r\n [disabled]=\"action.disabled || false\"\r\n [type]=\"action.type\"\r\n [size]=\"action.size || 'small'\"\r\n [icon]=\"action.icon || ''\"\r\n [iconPosition]=\"action.iconPosition || 'left'\"\r\n [items]=\"action.items || []\"\r\n [popup]=\"action.popup || false\"\r\n [popupIcon]=\"action.popupIcon || false\"\r\n [fullWidth]=\"action.fullWidth || false\"\r\n (onClick)=\"action?.command($event)\"\r\n ></kv-button>\r\n }\r\n </div>\r\n </div>\r\n }\r\n</div>\r\n\r\n<p-sidebar\r\n [(visible)]=\"verIntrucoes\"\r\n position=\"right\"\r\n appendTo=\"body\"\r\n [showCloseIcon]=\"true\"\r\n styleClass=\"w-30rem\"\r\n>\r\n <kv-cards-instruction [whiteCard]=\"whiteCard()\" [blackCard]=\"blackCard()\">\r\n <div white-card-content>\r\n <ng-content select=\"[white-card-content]\"></ng-content>\r\n </div>\r\n <div black-card-content>\r\n <ng-content select=\"[black-card-content]\"></ng-content>\r\n </div>\r\n </kv-cards-instruction>\r\n</p-sidebar>\r\n" }]
|
|
14533
|
+
}] });
|
|
14534
|
+
|
|
14535
|
+
class KvChipsComponent {
|
|
14536
|
+
constructor() {
|
|
14537
|
+
// Recebe as opções (ex: [{label: 'Por filial', value: 1}, ...])
|
|
14538
|
+
this.options = input.required();
|
|
14539
|
+
// Define se aceita múltiplos ou apenas um (padrão: false/single)
|
|
14540
|
+
this.multiple = input(false);
|
|
14541
|
+
// O valor selecionado (pode ser único ou array)
|
|
14542
|
+
// Usamos 'model' para two-way binding fácil [(selection)]="valor"
|
|
14543
|
+
this.selection = model(null);
|
|
14544
|
+
// Evento opcional de mudança
|
|
14545
|
+
this.selectionChange = output();
|
|
14546
|
+
}
|
|
14547
|
+
toggle(option) {
|
|
14548
|
+
const isMulti = this.multiple();
|
|
14549
|
+
const current = this.selection();
|
|
14550
|
+
const value = option.value;
|
|
14551
|
+
if (isMulti) {
|
|
14552
|
+
// Lógica para Múltipla Seleção (Array)
|
|
14553
|
+
let newValue = Array.isArray(current) ? [...current] : [];
|
|
14554
|
+
if (newValue.includes(value)) {
|
|
14555
|
+
newValue = newValue.filter(v => v !== value); // Remove
|
|
14556
|
+
}
|
|
14557
|
+
else {
|
|
14558
|
+
newValue.push(value); // Adiciona
|
|
14559
|
+
}
|
|
14560
|
+
this.updateSelection(newValue);
|
|
14561
|
+
}
|
|
14562
|
+
else {
|
|
14563
|
+
// Lógica para Seleção Única (Valor simples)
|
|
14564
|
+
// Se clicar no mesmo, não faz nada (ou poderia desmarcar, depende da regra)
|
|
14565
|
+
if (current !== value) {
|
|
14566
|
+
this.updateSelection(value);
|
|
14567
|
+
}
|
|
14568
|
+
}
|
|
14569
|
+
}
|
|
14570
|
+
// Verifica se está ativo para aplicar a classe CSS
|
|
14571
|
+
isActive(option) {
|
|
14572
|
+
const current = this.selection();
|
|
14573
|
+
if (this.multiple()) {
|
|
14574
|
+
return Array.isArray(current) && current.includes(option.value);
|
|
14575
|
+
}
|
|
14576
|
+
return current === option.value;
|
|
14577
|
+
}
|
|
14578
|
+
updateSelection(val) {
|
|
14579
|
+
this.selection.set(val);
|
|
14580
|
+
this.selectionChange.emit(val);
|
|
14581
|
+
}
|
|
14582
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvChipsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
14583
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.8", type: KvChipsComponent, isStandalone: true, selector: "kv-chips", inputs: { options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: true, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, selection: { classPropertyName: "selection", publicName: "selection", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selection: "selectionChange", selectionChange: "selectionChange" }, ngImport: i0, template: "<div class=\"chip-container\">\r\n @for (option of options(); track option.value) {\r\n <button\r\n type=\"button\"\r\n class=\"chip\"\r\n [class.selected]=\"isActive(option)\"\r\n (click)=\"toggle(option)\"\r\n >\r\n {{ option.label }}\r\n </button>\r\n }\r\n</div>\r\n", styles: [".chip-container{display:flex;flex-wrap:wrap;gap:.75rem;align-items:center}.chip{all:unset;box-sizing:border-box;display:inline-flex;align-items:center;justify-content:center;padding:.25rem 1rem;background-color:#f8fafc;border:1px solid #cbd5e1;border-radius:999px;color:#64748b;font-family:inherit;font-size:.875rem;font-weight:500;white-space:nowrap;cursor:pointer;transition:all .2s ease-in-out;-webkit-user-select:none;user-select:none}.chip:hover{border-color:#abbbce;color:#4f5b6d}.chip.selected{background-color:#e0f2fe;border-color:#0ea5e9;color:#0b83b9}.chip:focus-visible{outline:2px solid #0ea5e9;outline-offset:2px}\n"] }); }
|
|
14584
|
+
}
|
|
14585
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvChipsComponent, decorators: [{
|
|
14586
|
+
type: Component,
|
|
14587
|
+
args: [{ selector: 'kv-chips', standalone: true, imports: [], template: "<div class=\"chip-container\">\r\n @for (option of options(); track option.value) {\r\n <button\r\n type=\"button\"\r\n class=\"chip\"\r\n [class.selected]=\"isActive(option)\"\r\n (click)=\"toggle(option)\"\r\n >\r\n {{ option.label }}\r\n </button>\r\n }\r\n</div>\r\n", styles: [".chip-container{display:flex;flex-wrap:wrap;gap:.75rem;align-items:center}.chip{all:unset;box-sizing:border-box;display:inline-flex;align-items:center;justify-content:center;padding:.25rem 1rem;background-color:#f8fafc;border:1px solid #cbd5e1;border-radius:999px;color:#64748b;font-family:inherit;font-size:.875rem;font-weight:500;white-space:nowrap;cursor:pointer;transition:all .2s ease-in-out;-webkit-user-select:none;user-select:none}.chip:hover{border-color:#abbbce;color:#4f5b6d}.chip.selected{background-color:#e0f2fe;border-color:#0ea5e9;color:#0b83b9}.chip:focus-visible{outline:2px solid #0ea5e9;outline-offset:2px}\n"] }]
|
|
14533
14588
|
}] });
|
|
14534
14589
|
|
|
14535
14590
|
/*
|
|
@@ -14543,5 +14598,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImpor
|
|
|
14543
14598
|
* Generated bundle index. Do not edit.
|
|
14544
14599
|
*/
|
|
14545
14600
|
|
|
14546
|
-
export { BaseApiService, BaseChartComponent, BaseComponent, BaseComponentButton, BaseComponentCrud, BaseComponentCrudForm, BaseComponentCrudList, BaseComponentDropDown, BaseComponentDropDownExternal, BaseComponentInput, BaseComponentMultiSelect, BasecomponentTable, BreadcrumbsService, CDN_URLS, CUSTOM_FONTS, CapitalizePipe, ChatService, ComponentProviders, ComponentService, CpfCnpjPipe, DEBOUNCE_TIME, DEFAULT_KV_EDITOR_CONFIG, DEFAULT_QUILL_CONFIG, DocsService, DragDirective, DynamicInputDirective, ERROR_MESSAGES, EnumUtils, FONT_SIZES, FormService, ImageCutterService, ImagensService, KeevoComponentsModule, KeevoValidators, KvAvatarComponent, KvAvatarModule, KvButtonComponent, KvButtonModule, KvButtonPersonalizeComponent, KvButtonPopupComponent, KvButtonSecondaryComponent, KvButtonSuccessComponent, KvButtonsModule, KvCardMessageComponent, KvCardSelectionComponent, KvCardSelectionModule, KvCardsInstructionComponent, KvCarouselComponent, KvCarouselModule, KvChartComponent, KvChartModule, KvCheckComponent, KvConfirmationModalComponent, KvConfirmationModalModule, KvContentViewerComponent, KvContentViewerModule, KvDetailedListComponent, KvDropdownComponent, KvEditorComponent, KvEditorMentionService, KvEditorPdfService, KvEditorQuillService, KvEditorRelatorioService, KvErrorComponent, KvFileUploadComponent, KvFileUploadModule, KvFileViewerComponent, KvFileViewerModule, KvFileViewerNovoComponent, KvFileViewerNovoModule, KvFilterCardComponent, KvFilterCardModule, KvFilterCardsComponent, KvFilterCardsModule, KvFilterFieldsetComponent, KvFilterFieldsetModule, KvGIconComponent, KvGIconModule, KvHomeCardComponent, KvHomeCardModule, KvIconComponent, KvIconModule, KvImageUploadComponent, KvImageUploadModule, KvInputCalendarComponent, KvInputMaskComponent, KvInputNumberAddonComponent, KvInputNumberComponent, KvInputPasswordComponent, KvInputTextAddonComponent, KvInputTextCheckboxComponent, KvInputTextComponent, KvInputTextareaComponent, KvInputTimeComponent, KvInputsModule, KvInstructionPageComponent, KvKanbanComponent, KvLayoutComponent, KvLayoutModule, KvLoaderComponent, KvLoaderModule, KvLoaderService, KvLoginComponent, KvLoginModule, KvModalComponent, KvModalModule, KvMultiSelectComponent, KvOrgchartComponent, KvOrgchartModule, KvPageFormComponent, KvPageFormModule, KvPageStepperComponent, KvPageStepperodule, KvPickListComponent, KvPickListModule, KvProgressBarAlternativeComponent, KvProgressBarAlternativeModule, KvProgressBarModule, KvRadioGroupComponent, KvReportComponent, KvReportModule, KvSelectButtonComponent, KvSelectButtonsComponent, KvStackedBarChartComponent, KvStepperComponent, KvStepperModule, KvStepsComponent, KvSwitchComponent, KvTableComponent, KvTableDraggableComponent, KvTableDraggableModule, KvTableEditComponent, KvTableEditModule, KvTableExpandableComponent, KvTableExpandableModule, KvTableModule, KvTableViewerComponent, KvTagComponent, KvTagModule, KvTagsComponent, KvTagsModule, KvTimelineComponent, KvTreeEnvironmentComponent, KvTreeMultiSelectComponent, KvTreeViewComponent, KvTreetableComponent, KvTreetableModule, KvWidgetCardComponent, KvWorkspaceModule, KvtreeViewModule, MaskPipe, NoArvoreComponent, NotificationService, ObjectService, OrgChartService, PDF_STYLES, PeriodosChart, PipesModule, PrimeNgModule, ProgressBarComponent, TIMEOUTS, TablePaginate, TelefonePipe, TemplateDirective, TranslatePrimeng, WorkspaceComponent, getOrExecute, kvErrorModule, loading, mapToMenuItem, mapaSeverityColors };
|
|
14601
|
+
export { BaseApiService, BaseChartComponent, BaseComponent, BaseComponentButton, BaseComponentCrud, BaseComponentCrudForm, BaseComponentCrudList, BaseComponentDropDown, BaseComponentDropDownExternal, BaseComponentInput, BaseComponentMultiSelect, BasecomponentTable, BreadcrumbsService, CDN_URLS, CUSTOM_FONTS, CapitalizePipe, ChatService, ComponentProviders, ComponentService, CpfCnpjPipe, DEBOUNCE_TIME, DEFAULT_KV_EDITOR_CONFIG, DEFAULT_QUILL_CONFIG, DocsService, DragDirective, DynamicInputDirective, ERROR_MESSAGES, EnumUtils, FONT_SIZES, FormService, ImageCutterService, ImagensService, KeevoComponentsModule, KeevoValidators, KvAvatarComponent, KvAvatarModule, KvButtonComponent, KvButtonModule, KvButtonPersonalizeComponent, KvButtonPopupComponent, KvButtonSecondaryComponent, KvButtonSuccessComponent, KvButtonsModule, KvCardMessageComponent, KvCardSelectionComponent, KvCardSelectionModule, KvCardsInstructionComponent, KvCarouselComponent, KvCarouselModule, KvChartComponent, KvChartModule, KvCheckComponent, KvChipsComponent, KvConfirmationModalComponent, KvConfirmationModalModule, KvContentViewerComponent, KvContentViewerModule, KvDetailedListComponent, KvDropdownComponent, KvEditorComponent, KvEditorMentionService, KvEditorPdfService, KvEditorQuillService, KvEditorRelatorioService, KvErrorComponent, KvFileUploadComponent, KvFileUploadModule, KvFileViewerComponent, KvFileViewerModule, KvFileViewerNovoComponent, KvFileViewerNovoModule, KvFilterCardComponent, KvFilterCardModule, KvFilterCardsComponent, KvFilterCardsModule, KvFilterFieldsetComponent, KvFilterFieldsetModule, KvGIconComponent, KvGIconModule, KvHomeCardComponent, KvHomeCardModule, KvIconComponent, KvIconModule, KvImageUploadComponent, KvImageUploadModule, KvInputCalendarComponent, KvInputMaskComponent, KvInputNumberAddonComponent, KvInputNumberComponent, KvInputPasswordComponent, KvInputTextAddonComponent, KvInputTextCheckboxComponent, KvInputTextComponent, KvInputTextareaComponent, KvInputTimeComponent, KvInputsModule, KvInstructionPageComponent, KvKanbanComponent, KvLayoutComponent, KvLayoutModule, KvLoaderComponent, KvLoaderModule, KvLoaderService, KvLoginComponent, KvLoginModule, KvModalComponent, KvModalModule, KvMultiSelectComponent, KvOrgchartComponent, KvOrgchartModule, KvPageFormComponent, KvPageFormModule, KvPageStepperComponent, KvPageStepperodule, KvPickListComponent, KvPickListModule, KvProgressBarAlternativeComponent, KvProgressBarAlternativeModule, KvProgressBarModule, KvRadioGroupComponent, KvReportComponent, KvReportModule, KvSelectButtonComponent, KvSelectButtonsComponent, KvStackedBarChartComponent, KvStepperComponent, KvStepperModule, KvStepsComponent, KvSwitchComponent, KvTableComponent, KvTableDraggableComponent, KvTableDraggableModule, KvTableEditComponent, KvTableEditModule, KvTableExpandableComponent, KvTableExpandableModule, KvTableModule, KvTableViewerComponent, KvTagComponent, KvTagModule, KvTagsComponent, KvTagsModule, KvTimelineComponent, KvTreeEnvironmentComponent, KvTreeMultiSelectComponent, KvTreeViewComponent, KvTreetableComponent, KvTreetableModule, KvWidgetCardComponent, KvWorkspaceModule, KvtreeViewModule, MaskPipe, NoArvoreComponent, NotificationService, ObjectService, OrgChartService, PDF_STYLES, PeriodosChart, PipesModule, PrimeNgModule, ProgressBarComponent, TIMEOUTS, TablePaginate, TelefonePipe, TemplateDirective, TranslatePrimeng, WorkspaceComponent, getOrExecute, kvErrorModule, loading, mapToMenuItem, mapaSeverityColors };
|
|
14547
14602
|
//# sourceMappingURL=keevo-components.mjs.map
|