keevo-components 2.0.284 → 2.0.286
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/api/base-components/base-component-dropdown.mjs +3 -7
- package/esm2022/lib/components/kv-avatar/kv-avatar.component.mjs +2 -2
- package/esm2022/lib/components/kv-button/kv-button.component.mjs +3 -3
- package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +2 -2
- package/esm2022/lib/components/kv-chart/kv-chart.component.mjs +2 -2
- package/esm2022/lib/components/kv-icon/kv-icon.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-check/kv-check.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +5 -10
- package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-quill.service.mjs +12 -16
- package/esm2022/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-input-number/kv-input-number.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-input-number-addon/kv-input-number-addon.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-input-password/kv-input-password.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-input-text/kv-input-text.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-input-text-addon/kv-input-text-addon.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-input-time/kv-input-time.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-inputs.module.mjs +4 -8
- package/esm2022/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-switch/kv-switch.component.mjs +2 -2
- package/esm2022/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.mjs +2 -2
- package/esm2022/lib/components/kv-instruction-page/kv-instruction-page.component.mjs +3 -3
- package/esm2022/lib/components/kv-layout/layout/kv-layout.component.mjs +2 -2
- package/esm2022/lib/components/kv-page-stepper/kv-page-stepper.component.mjs +2 -2
- package/esm2022/lib/components/kv-pick-list/kv-pick-list.component.mjs +2 -2
- package/esm2022/lib/components/kv-stepper/kv-stepper.component.mjs +2 -2
- package/esm2022/lib/components/kv-table/kv-table.component.mjs +2 -2
- package/esm2022/lib/components/kv-widget-card/kv-widget-card.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +75 -90
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +1 -1
- package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +1 -3
- package/lib/components/kv-inputs/kv-editor/services/kv-editor-quill.service.d.ts +0 -1
- package/lib/components/kv-inputs/kv-inputs.module.d.ts +1 -2
- package/lib/components/kv-table-viewer/kv-table-viewer.component.d.ts +1 -1
- package/lib/components/kv-tag/kv-tag.component.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/components/keevo-components-styles.scss +0 -3
|
@@ -8,7 +8,7 @@ export declare class KvButtonPopupComponent extends BaseComponentButton {
|
|
|
8
8
|
items: MenuItem[];
|
|
9
9
|
classBtn: string;
|
|
10
10
|
size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
|
|
11
|
-
type: import("@angular/core").InputSignal<"
|
|
11
|
+
type: import("@angular/core").InputSignal<"text" | "normal" | "outline">;
|
|
12
12
|
icon: string;
|
|
13
13
|
constructor();
|
|
14
14
|
handleShow(): void;
|
|
@@ -36,7 +36,7 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
|
|
|
36
36
|
private editorReadyPromise;
|
|
37
37
|
quill: Quill;
|
|
38
38
|
htmlDoEditor: string;
|
|
39
|
-
quillDelta:
|
|
39
|
+
quillDelta: typeof import("quill-delta").default;
|
|
40
40
|
htmlEspelho: import("@angular/core").WritableSignal<string>;
|
|
41
41
|
previewContent: import("@angular/core").WritableSignal<SafeHtml>;
|
|
42
42
|
initLoadComplete: import("@angular/core").WritableSignal<boolean>;
|
|
@@ -44,8 +44,6 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
|
|
|
44
44
|
editorToolbarHeight: import("@angular/core").WritableSignal<string>;
|
|
45
45
|
filteredVariables: import("@angular/core").WritableSignal<KvEditorVariavel[]>;
|
|
46
46
|
clearedTemplate: import("@angular/core").WritableSignal<boolean>;
|
|
47
|
-
isFullscreen: import("@angular/core").WritableSignal<boolean>;
|
|
48
|
-
toggleFullscreen(): void;
|
|
49
47
|
enablePreviewMode: import("@angular/core").InputSignal<boolean>;
|
|
50
48
|
showVariableValuesInPreview: import("@angular/core").InputSignal<boolean>;
|
|
51
49
|
showVariableValueFirst: import("@angular/core").InputSignal<boolean>;
|
|
@@ -31,9 +31,8 @@ import * as i29 from "primeng/progressspinner";
|
|
|
31
31
|
import * as i30 from "ngx-loading";
|
|
32
32
|
import * as i31 from "primeng/toast";
|
|
33
33
|
import * as i32 from "primeng/progressbar";
|
|
34
|
-
import * as i33 from "primeng/button";
|
|
35
34
|
export declare class KvInputsModule {
|
|
36
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvInputsModule, never>;
|
|
37
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvInputsModule, [typeof i1.KvCheckComponent, typeof i2.KvDropdownComponent, typeof i3.KvEditorComponent, typeof i4.KvInputCalendarComponent, typeof i5.KvInputMaskComponent, typeof i6.KvInputNumberComponent, typeof i7.KvInputPasswordComponent, typeof i8.KvInputTextareaComponent, typeof i9.KvInputTextCheckboxComponent, typeof i10.KvInputTextComponent, typeof i11.KvInputTimeComponent, typeof i12.KvMultiSelectComponent, typeof i13.KvRadioGroupComponent, typeof i14.KvSwitchComponent, typeof i15.KvSelectButtonComponent, typeof i16.KvSelectButtonsComponent, typeof i17.KvTreeMultiSelectComponent, typeof i18.KvInputTextAddonComponent, typeof i19.KvInputNumberAddonComponent], [typeof i20.CommonModule, typeof i21.FormsModule, typeof i22.kvErrorModule, typeof i23.KvLabelModule, typeof i24.PrimeNgModule, typeof i21.ReactiveFormsModule, typeof i25.SelectButtonModule, typeof i26.TimesCircleIcon, typeof i27.KvButtonModule, typeof i28.KvTagsModule, typeof i29.ProgressSpinnerModule, typeof i30.NgxLoadingModule, typeof i31.ToastModule, typeof i32.ProgressBarModule
|
|
36
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvInputsModule, [typeof i1.KvCheckComponent, typeof i2.KvDropdownComponent, typeof i3.KvEditorComponent, typeof i4.KvInputCalendarComponent, typeof i5.KvInputMaskComponent, typeof i6.KvInputNumberComponent, typeof i7.KvInputPasswordComponent, typeof i8.KvInputTextareaComponent, typeof i9.KvInputTextCheckboxComponent, typeof i10.KvInputTextComponent, typeof i11.KvInputTimeComponent, typeof i12.KvMultiSelectComponent, typeof i13.KvRadioGroupComponent, typeof i14.KvSwitchComponent, typeof i15.KvSelectButtonComponent, typeof i16.KvSelectButtonsComponent, typeof i17.KvTreeMultiSelectComponent, typeof i18.KvInputTextAddonComponent, typeof i19.KvInputNumberAddonComponent], [typeof i20.CommonModule, typeof i21.FormsModule, typeof i22.kvErrorModule, typeof i23.KvLabelModule, typeof i24.PrimeNgModule, typeof i21.ReactiveFormsModule, typeof i25.SelectButtonModule, typeof i26.TimesCircleIcon, typeof i27.KvButtonModule, typeof i28.KvTagsModule, typeof i29.ProgressSpinnerModule, typeof i30.NgxLoadingModule, typeof i31.ToastModule, typeof i32.ProgressBarModule], [typeof i1.KvCheckComponent, typeof i2.KvDropdownComponent, typeof i3.KvEditorComponent, typeof i4.KvInputCalendarComponent, typeof i5.KvInputMaskComponent, typeof i6.KvInputNumberComponent, typeof i7.KvInputPasswordComponent, typeof i8.KvInputTextareaComponent, typeof i9.KvInputTextCheckboxComponent, typeof i10.KvInputTextComponent, typeof i11.KvInputTimeComponent, typeof i12.KvMultiSelectComponent, typeof i13.KvRadioGroupComponent, typeof i14.KvSwitchComponent, typeof i15.KvSelectButtonComponent, typeof i16.KvSelectButtonsComponent, typeof i17.KvTreeMultiSelectComponent, typeof i18.KvInputTextAddonComponent, typeof i19.KvInputNumberAddonComponent]>;
|
|
38
37
|
static ɵinj: i0.ɵɵInjectorDeclaration<KvInputsModule>;
|
|
39
38
|
}
|
|
@@ -32,7 +32,7 @@ export declare class KvTableViewerComponent implements OnDestroy {
|
|
|
32
32
|
elementRef: ElementRef<any>;
|
|
33
33
|
renderer: Renderer2;
|
|
34
34
|
columns: import("@angular/core").InputSignal<ColumnTableViewer[]>;
|
|
35
|
-
actionsRow: import("@angular/core").InputSignal<
|
|
35
|
+
actionsRow: import("@angular/core").InputSignal<[] | MenuItem[]>;
|
|
36
36
|
actionsHeader: import("@angular/core").InputSignal<MenuItem[] | undefined>;
|
|
37
37
|
actionsLote: import("@angular/core").InputSignal<MenuItem[] | undefined>;
|
|
38
38
|
data: import("@angular/core").InputSignal<any[]>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class KvTagComponent {
|
|
3
|
-
severity: import("@angular/core").InputSignal<"
|
|
3
|
+
severity: import("@angular/core").InputSignal<"warn" | "info" | "success" | "danger" | "system" | "contrast">;
|
|
4
4
|
border: import("@angular/core").InputSignal<boolean>;
|
|
5
5
|
color: import("@angular/core").InputSignal<string | null>;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTagComponent, never>;
|
package/package.json
CHANGED
|
@@ -7,9 +7,6 @@ $font-family-keevo: "Inter", "Inter var", sans-serif;
|
|
|
7
7
|
// Importar outras fontes
|
|
8
8
|
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
|
|
9
9
|
|
|
10
|
-
// Importar estilos do Quill
|
|
11
|
-
@import "quill/dist/quill.snow";
|
|
12
|
-
|
|
13
10
|
::ng-deep :root {
|
|
14
11
|
--kv-color-system: 10,58,120;
|
|
15
12
|
--kv-color-system-cta: 76, 175, 80;
|