keevo-components 1.8.468 → 1.8.470
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 +5 -3
- package/esm2022/lib/components/kv-carousel/kv-carousel.component.mjs +3 -2
- package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +28 -5
- package/fesm2022/keevo-components.mjs +33 -7
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/api/base-components/base-component-dropdown.d.ts +6 -1
- package/package.json +1 -1
- package/src/lib/components/kv-table/kv-table.component.scss +0 -8
|
@@ -11,6 +11,11 @@ export declare abstract class BaseComponentDropDown extends BaseComponentInput<a
|
|
|
11
11
|
options: any[];
|
|
12
12
|
optionLabel: string;
|
|
13
13
|
optionValue: string;
|
|
14
|
+
/**
|
|
15
|
+
* String que será utilizada para buscar a opção no método onSelectionChange
|
|
16
|
+
* @input
|
|
17
|
+
*/
|
|
18
|
+
nameForSelectionChange: string;
|
|
14
19
|
optionDisabled: string;
|
|
15
20
|
capitalize: boolean;
|
|
16
21
|
group: boolean;
|
|
@@ -48,5 +53,5 @@ export declare abstract class BaseComponentDropDown extends BaseComponentInput<a
|
|
|
48
53
|
transformCapitalize(value: string): string;
|
|
49
54
|
capitalizeOptions(options: any[]): any[];
|
|
50
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponentDropDown, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponentDropDown, "ng-component", never, { "filteredOptions": { "alias": "filteredOptions"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "optionDisabled": { "alias": "optionDisabled"; "required": false; }; "capitalize": { "alias": "capitalize"; "required": false; }; "group": { "alias": "group"; "required": false; }; "optionGroupLabel": { "alias": "optionGroupLabel"; "required": false; }; "optionGroupChildren": { "alias": "optionGroupChildren"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "widthField": { "alias": "widthField"; "required": false; }; }, { "onAddClick": "onAddClick"; "onClick": "onClick"; "onLoadCombo": "onLoadCombo"; "onSelectionChange": "onSelectionChange"; "onSelectionValue": "onSelectionValue"; "requestComplete": "requestComplete"; "onFilter": "onFilter"; }, never, never, false, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponentDropDown, "ng-component", never, { "filteredOptions": { "alias": "filteredOptions"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "nameForSelectionChange": { "alias": "nameForSelectionChange"; "required": false; }; "optionDisabled": { "alias": "optionDisabled"; "required": false; }; "capitalize": { "alias": "capitalize"; "required": false; }; "group": { "alias": "group"; "required": false; }; "optionGroupLabel": { "alias": "optionGroupLabel"; "required": false; }; "optionGroupChildren": { "alias": "optionGroupChildren"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "widthField": { "alias": "widthField"; "required": false; }; }, { "onAddClick": "onAddClick"; "onClick": "onClick"; "onLoadCombo": "onLoadCombo"; "onSelectionChange": "onSelectionChange"; "onSelectionValue": "onSelectionValue"; "requestComplete": "requestComplete"; "onFilter": "onFilter"; }, never, never, false, never>;
|
|
52
57
|
}
|
package/package.json
CHANGED
|
@@ -201,18 +201,10 @@ input {
|
|
|
201
201
|
display: inline-block;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
-
|
|
205
|
-
// class="px-2 py-4"
|
|
206
|
-
|
|
207
204
|
::ng-deep .p-menuitem-content {
|
|
208
205
|
padding: 0.25rem 0.5rem 0.25rem 0.5rem;
|
|
209
206
|
}
|
|
210
207
|
|
|
211
|
-
|
|
212
|
-
// ::ng-deep p-tieredmenusub .p-tieredmenu-root-list .p-menuitem.p-disabled {
|
|
213
|
-
// pointer-events: auto !important;
|
|
214
|
-
// }
|
|
215
|
-
|
|
216
208
|
::ng-deep .p-disabled * {
|
|
217
209
|
pointer-events: auto !important;
|
|
218
210
|
}
|