keevo-components 1.8.463 → 1.8.465
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/components/tree-table/tree-table.config.mjs +1 -1
- package/esm2022/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.mjs +7 -4
- package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +6 -4
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/api/components/tree-table/tree-table.config.d.ts +2 -0
- package/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -24,6 +24,8 @@ interface ActionsPaiItem {
|
|
|
24
24
|
severity?: 'primary' | 'secondary' | 'tertiary';
|
|
25
25
|
visible?: ValueOrFn<boolean | undefined>;
|
|
26
26
|
command: (event: MouseEvent) => void;
|
|
27
|
+
tooltip?: ValueOrFn<string | undefined>;
|
|
28
|
+
disabled?: ValueOrFn<boolean | undefined>;
|
|
27
29
|
icon: string;
|
|
28
30
|
}
|
|
29
31
|
export {};
|
package/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.d.ts
CHANGED
|
@@ -7,10 +7,11 @@ export declare class KvInputTextCheckboxComponent extends BaseComponentInput<str
|
|
|
7
7
|
readonly checkBoxEmit: EventEmitter<boolean>;
|
|
8
8
|
tooltipCheckbox: string;
|
|
9
9
|
disabledCheckbox: boolean;
|
|
10
|
+
mask: string;
|
|
10
11
|
private _checkBoxValue;
|
|
11
12
|
set checkBoxValueInput(value: boolean);
|
|
12
13
|
set checkBoxValue(value: boolean);
|
|
13
14
|
get checkBoxValue(): boolean;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvInputTextCheckboxComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTextCheckboxComponent, "kv-input-text-checkbox", never, { "tooltipCheckbox": { "alias": "tooltipCheckbox"; "required": false; }; "disabledCheckbox": { "alias": "disabledCheckbox"; "required": false; }; "checkBoxValueInput": { "alias": "checkBoxValueInput"; "required": false; }; }, { "checkBoxEmit": "checkBoxEmit"; }, never, never, false, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTextCheckboxComponent, "kv-input-text-checkbox", never, { "tooltipCheckbox": { "alias": "tooltipCheckbox"; "required": false; }; "disabledCheckbox": { "alias": "disabledCheckbox"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "checkBoxValueInput": { "alias": "checkBoxValueInput"; "required": false; }; }, { "checkBoxEmit": "checkBoxEmit"; }, never, never, false, never>;
|
|
16
17
|
}
|