@sankhyalabs/ezui 2.11.0 → 2.12.0
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/dist/cjs/ez-actions-button.cjs.entry.js +1 -1
- package/dist/cjs/ez-alert.cjs.entry.js +1 -1
- package/dist/cjs/ez-application.cjs.entry.js +1 -1
- package/dist/cjs/ez-breadcrumb.cjs.entry.js +1 -1
- package/dist/cjs/ez-button.cjs.entry.js +1 -1
- package/dist/cjs/ez-calendar.cjs.entry.js +1 -1
- package/dist/cjs/ez-card-item.cjs.entry.js +1 -1
- package/dist/cjs/ez-check.cjs.entry.js +1 -1
- package/dist/cjs/ez-chip.cjs.entry.js +1 -1
- package/dist/cjs/ez-collapsible-box.cjs.entry.js +1 -1
- package/dist/cjs/ez-combo-box.cjs.entry.js +1 -1
- package/dist/cjs/ez-date-input.cjs.entry.js +1 -1
- package/dist/cjs/ez-date-time-input.cjs.entry.js +1 -1
- package/dist/cjs/ez-dialog.cjs.entry.js +1 -1
- package/dist/cjs/ez-dropdown.cjs.entry.js +1 -1
- package/dist/cjs/ez-file-item.cjs.entry.js +1 -1
- package/dist/cjs/ez-filter-input.cjs.entry.js +1 -1
- package/dist/cjs/ez-form-view.cjs.entry.js +140 -0
- package/dist/cjs/ez-form.cjs.entry.js +228 -330
- package/dist/cjs/ez-grid.cjs.entry.js +1 -1
- package/dist/cjs/ez-icon.cjs.entry.js +1 -1
- package/dist/cjs/ez-list.cjs.entry.js +1 -1
- package/dist/cjs/ez-loading-bar.cjs.entry.js +1 -1
- package/dist/cjs/ez-modal-container.cjs.entry.js +1 -1
- package/dist/cjs/ez-modal.cjs.entry.js +1 -1
- package/dist/cjs/ez-number-input.cjs.entry.js +1 -1
- package/dist/cjs/ez-popover.cjs.entry.js +1 -1
- package/dist/cjs/ez-popup.cjs.entry.js +1 -1
- package/dist/cjs/ez-radio-button.cjs.entry.js +1 -1
- package/dist/cjs/ez-scroller.cjs.entry.js +1 -1
- package/dist/cjs/ez-search.cjs.entry.js +1 -1
- package/dist/cjs/ez-sidebar-button.cjs.entry.js +1 -1
- package/dist/cjs/ez-tabselector.cjs.entry.js +6 -3
- package/dist/cjs/ez-text-area.cjs.entry.js +1 -1
- package/dist/cjs/ez-text-edit.cjs.entry.js +1 -1
- package/dist/cjs/ez-text-input.cjs.entry.js +1 -1
- package/dist/cjs/ez-time-input.cjs.entry.js +1 -1
- package/dist/cjs/ez-toast.cjs.entry.js +1 -1
- package/dist/cjs/ez-tree.cjs.entry.js +109 -22
- package/dist/cjs/ez-upload.cjs.entry.js +1 -1
- package/dist/cjs/ez-view-stack.cjs.entry.js +1 -1
- package/dist/cjs/ezui.cjs.js +2 -2
- package/dist/cjs/{index-fb179d74.js → index-5e208fa5.js} +8 -0
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/ez-form/{structure/FormSheetMetadata.js → FormMetadata.js} +39 -54
- package/dist/collection/components/ez-form/ez-form.css +7 -1
- package/dist/collection/components/ez-form/ez-form.js +128 -19
- package/dist/collection/components/ez-form/interfaces/IDefaultConfig.js +1 -0
- package/dist/collection/components/ez-form/interfaces/IFieldConfig.js +1 -0
- package/dist/collection/components/ez-form/interfaces/IFormConfig.js +1 -0
- package/dist/collection/components/ez-form/interfaces/IFormSheetMetadata.js +1 -0
- package/dist/collection/components/ez-form/interfaces/IInvalidField.js +1 -0
- package/dist/collection/components/ez-form/interfaces/IRecordValidator.js +1 -0
- package/dist/collection/components/ez-form/interfaces/ITabConfig.js +1 -0
- package/dist/collection/components/ez-form/interfaces/IValidationResult.js +1 -0
- package/dist/collection/components/ez-form/interfaces/index.js +1 -0
- package/dist/collection/components/ez-form/store/form.slice.js +6 -2
- package/dist/collection/components/ez-form-view/ez-form-view.css +6 -0
- package/dist/collection/components/ez-form-view/ez-form-view.js +71 -0
- package/dist/collection/components/ez-form-view/fieldbuilder/FieldBuilder.js +26 -0
- package/dist/collection/components/{ez-form/fieldbuilder/tpl → ez-form-view/fieldbuilder/templates}/CheckBox.tpl.js +4 -4
- package/dist/collection/components/{ez-form/fieldbuilder/tpl → ez-form-view/fieldbuilder/templates}/ComboBox.tpl.js +2 -2
- package/dist/collection/components/{ez-form/fieldbuilder/tpl → ez-form-view/fieldbuilder/templates}/DateInput.tpl.js +1 -1
- package/dist/collection/components/{ez-form/fieldbuilder/tpl → ez-form-view/fieldbuilder/templates}/NumberInput.tpl.js +3 -3
- package/dist/collection/components/ez-form-view/interfaces/IFormViewField.js +1 -0
- package/dist/collection/components/ez-form-view/interfaces/index.js +1 -0
- package/dist/collection/components/ez-tabselector/ez-tabselector.js +5 -2
- package/dist/collection/components/ez-tree/ez-tree.css +8 -6
- package/dist/collection/components/ez-tree/ez-tree.js +89 -11
- package/dist/collection/components/ez-tree/subcomponents/DefaultTooltipResolver.js +3 -0
- package/dist/collection/components/ez-tree/subcomponents/TreeItem.js +4 -4
- package/dist/collection/components/ez-tree/subcomponents/index.js +1 -0
- package/dist/collection/components/ez-tree/types/Node.js +26 -4
- package/dist/collection/components/ez-tree/types/Tree.js +23 -2
- package/dist/custom-elements/index.d.ts +6 -0
- package/dist/custom-elements/index.js +478 -355
- package/dist/esm/ez-actions-button.entry.js +1 -1
- package/dist/esm/ez-alert.entry.js +1 -1
- package/dist/esm/ez-application.entry.js +1 -1
- package/dist/esm/ez-breadcrumb.entry.js +1 -1
- package/dist/esm/ez-button.entry.js +1 -1
- package/dist/esm/ez-calendar.entry.js +1 -1
- package/dist/esm/ez-card-item.entry.js +1 -1
- package/dist/esm/ez-check.entry.js +1 -1
- package/dist/esm/ez-chip.entry.js +1 -1
- package/dist/esm/ez-collapsible-box.entry.js +1 -1
- package/dist/esm/ez-combo-box.entry.js +1 -1
- package/dist/esm/ez-date-input.entry.js +1 -1
- package/dist/esm/ez-date-time-input.entry.js +1 -1
- package/dist/esm/ez-dialog.entry.js +1 -1
- package/dist/esm/ez-dropdown.entry.js +1 -1
- package/dist/esm/ez-file-item.entry.js +1 -1
- package/dist/esm/ez-filter-input.entry.js +1 -1
- package/dist/esm/ez-form-view.entry.js +136 -0
- package/dist/esm/ez-form.entry.js +229 -331
- package/dist/esm/ez-grid.entry.js +1 -1
- package/dist/esm/ez-icon.entry.js +1 -1
- package/dist/esm/ez-list.entry.js +1 -1
- package/dist/esm/ez-loading-bar.entry.js +1 -1
- package/dist/esm/ez-modal-container.entry.js +1 -1
- package/dist/esm/ez-modal.entry.js +1 -1
- package/dist/esm/ez-number-input.entry.js +1 -1
- package/dist/esm/ez-popover.entry.js +1 -1
- package/dist/esm/ez-popup.entry.js +1 -1
- package/dist/esm/ez-radio-button.entry.js +1 -1
- package/dist/esm/ez-scroller.entry.js +1 -1
- package/dist/esm/ez-search.entry.js +1 -1
- package/dist/esm/ez-sidebar-button.entry.js +1 -1
- package/dist/esm/ez-tabselector.entry.js +6 -3
- package/dist/esm/ez-text-area.entry.js +1 -1
- package/dist/esm/ez-text-edit.entry.js +1 -1
- package/dist/esm/ez-text-input.entry.js +1 -1
- package/dist/esm/ez-time-input.entry.js +1 -1
- package/dist/esm/ez-toast.entry.js +1 -1
- package/dist/esm/ez-tree.entry.js +109 -22
- package/dist/esm/ez-upload.entry.js +1 -1
- package/dist/esm/ez-view-stack.entry.js +1 -1
- package/dist/esm/ezui.js +2 -2
- package/dist/esm/{index-b77dcd0d.js → index-c5203f95.js} +8 -0
- package/dist/esm/loader.js +2 -2
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/{p-22f06920.entry.js → p-0c3f7bf2.entry.js} +1 -1
- package/dist/ezui/{p-46c3cd8e.entry.js → p-0cd0545d.entry.js} +1 -1
- package/dist/ezui/{p-e881ec6d.entry.js → p-1a27bb9f.entry.js} +1 -1
- package/dist/ezui/{p-e9b4b3bd.entry.js → p-1b94b9dc.entry.js} +1 -1
- package/dist/ezui/{p-42f85e36.entry.js → p-20c01161.entry.js} +1 -1
- package/dist/ezui/{p-6c43b275.entry.js → p-24717f87.entry.js} +1 -1
- package/dist/ezui/{p-52a18a6c.entry.js → p-3320768e.entry.js} +1 -1
- package/dist/ezui/{p-6cdfe0db.entry.js → p-36ed5c45.entry.js} +1 -1
- package/dist/ezui/{p-b5efd273.entry.js → p-3b2091dd.entry.js} +1 -1
- package/dist/ezui/{p-42376b77.entry.js → p-47bcc678.entry.js} +1 -1
- package/dist/ezui/{p-5e3079cb.entry.js → p-47ca5e09.entry.js} +1 -1
- package/dist/ezui/{p-6a53943d.entry.js → p-4c444816.entry.js} +1 -1
- package/dist/ezui/{p-fe1f0c92.entry.js → p-608d13e8.entry.js} +1 -1
- package/dist/ezui/{p-d04f3bb1.entry.js → p-626b8940.entry.js} +1 -1
- package/dist/ezui/{p-bdb5e325.entry.js → p-6630eca2.entry.js} +1 -1
- package/dist/ezui/{p-b7a8708e.entry.js → p-67b9a2cb.entry.js} +1 -1
- package/dist/ezui/{p-7e9ab877.entry.js → p-6dec5cfa.entry.js} +1 -1
- package/dist/ezui/{p-5d19cd0d.entry.js → p-6f9aba86.entry.js} +1 -1
- package/dist/ezui/p-7799666d.entry.js +1 -0
- package/dist/ezui/{p-6ccf5720.js → p-7b80df03.js} +1 -1
- package/dist/ezui/{p-87dd65ba.entry.js → p-7d42065a.entry.js} +1 -1
- package/dist/ezui/{p-f58201e8.entry.js → p-81897c04.entry.js} +1 -1
- package/dist/ezui/{p-74a3f9d8.entry.js → p-91f8c816.entry.js} +1 -1
- package/dist/ezui/p-97d2d2f6.entry.js +1 -0
- package/dist/ezui/{p-4b93860c.entry.js → p-98c448c9.entry.js} +1 -1
- package/dist/ezui/{p-f8f87959.entry.js → p-99aea44b.entry.js} +1 -1
- package/dist/ezui/p-a4b4645d.entry.js +1 -0
- package/dist/ezui/{p-e3743d12.entry.js → p-ab5eee38.entry.js} +1 -1
- package/dist/ezui/{p-7d8e693d.entry.js → p-ad7151e0.entry.js} +1 -1
- package/dist/ezui/{p-2686fa5b.entry.js → p-ad8b7412.entry.js} +1 -1
- package/dist/ezui/{p-ba7b2b8f.entry.js → p-b2e861cb.entry.js} +1 -1
- package/dist/ezui/{p-8c273b22.entry.js → p-b2efb22c.entry.js} +1 -1
- package/dist/ezui/{p-9171043f.entry.js → p-b5557d33.entry.js} +1 -1
- package/dist/ezui/p-ba03ac61.entry.js +1 -0
- package/dist/ezui/{p-a4405e80.entry.js → p-bc324ee8.entry.js} +1 -1
- package/dist/ezui/{p-07d07b75.entry.js → p-bd9792e2.entry.js} +1 -1
- package/dist/ezui/{p-21782390.entry.js → p-bf8a633d.entry.js} +1 -1
- package/dist/ezui/{p-620e71e2.entry.js → p-c071db26.entry.js} +1 -1
- package/dist/ezui/{p-b9d91679.entry.js → p-c3529df3.entry.js} +1 -1
- package/dist/ezui/{p-297d4378.entry.js → p-ca7435a6.entry.js} +1 -1
- package/dist/ezui/{p-e628c8bd.entry.js → p-e203c89f.entry.js} +1 -1
- package/dist/ezui/{p-a7380524.entry.js → p-fc97f773.entry.js} +1 -1
- package/dist/types/components/ez-form/DataBinder.d.ts +1 -1
- package/dist/types/components/ez-form/FormMetadata.d.ts +16 -0
- package/dist/types/components/ez-form/ez-form.d.ts +21 -43
- package/dist/types/components/ez-form/interfaces/IDefaultConfig.d.ts +5 -0
- package/dist/types/components/ez-form/interfaces/IFieldConfig.d.ts +13 -0
- package/dist/types/components/ez-form/interfaces/IFormConfig.d.ts +7 -0
- package/dist/types/components/ez-form/interfaces/IFormSheetMetadata.d.ts +9 -0
- package/dist/types/components/ez-form/interfaces/IInvalidField.d.ts +4 -0
- package/dist/types/components/ez-form/interfaces/IRecordValidator.d.ts +6 -0
- package/dist/types/components/ez-form/interfaces/ITabConfig.d.ts +5 -0
- package/dist/types/components/ez-form/interfaces/IValidationResult.d.ts +8 -0
- package/dist/types/components/ez-form/interfaces/index.d.ts +8 -0
- package/dist/types/components/ez-form/store/form.slice.d.ts +5 -3
- package/dist/types/components/ez-form-view/fieldbuilder/FieldBuilder.d.ts +2 -0
- package/dist/types/components/ez-form-view/fieldbuilder/templates/CheckBox.tpl.d.ts +3 -0
- package/dist/types/components/ez-form-view/fieldbuilder/templates/ComboBox.tpl.d.ts +2 -0
- package/dist/types/components/ez-form-view/fieldbuilder/templates/DateInput.tpl.d.ts +4 -0
- package/dist/types/components/ez-form-view/fieldbuilder/templates/FileInput.tpl.d.ts +2 -0
- package/dist/types/components/ez-form-view/fieldbuilder/templates/NumberInput.tpl.d.ts +3 -0
- package/dist/types/components/ez-form-view/fieldbuilder/templates/SearchInput.tpl.d.ts +2 -0
- package/dist/types/components/ez-form-view/fieldbuilder/templates/TextArea.tpl.d.ts +2 -0
- package/dist/types/components/ez-form-view/fieldbuilder/templates/TextInput.tpl.d.ts +2 -0
- package/dist/types/components/ez-form-view/interfaces/IFormViewField.d.ts +10 -0
- package/dist/types/components/ez-form-view/interfaces/index.d.ts +1 -0
- package/dist/types/components/ez-tree/ez-tree.d.ts +13 -0
- package/dist/types/components/ez-tree/interfaces/ITreeItem.d.ts +1 -0
- package/dist/types/components/ez-tree/subcomponents/DefaultTooltipResolver.d.ts +2 -0
- package/dist/types/components/ez-tree/subcomponents/TreeItem.d.ts +2 -0
- package/dist/types/components/ez-tree/subcomponents/index.d.ts +1 -0
- package/dist/types/components/ez-tree/types/Node.d.ts +1 -0
- package/dist/types/components/ez-tree/types/Tree.d.ts +1 -0
- package/dist/types/components.d.ts +65 -2
- package/package.json +1 -1
- package/react/components.d.ts +1 -0
- package/react/components.js +1 -0
- package/react/components.js.map +1 -1
- package/dist/collection/components/ez-form/fieldbuilder/FieldBuilder.js +0 -48
- package/dist/collection/components/ez-form/structure/FormItem.js +0 -11
- package/dist/collection/components/ez-form/structure/FormSheet.js +0 -6
- package/dist/ezui/p-98c78c29.entry.js +0 -1
- package/dist/ezui/p-99e07a6b.entry.js +0 -1
- package/dist/ezui/p-a928ea8d.entry.js +0 -1
- package/dist/types/components/ez-form/fieldbuilder/FieldBuilder.d.ts +0 -2
- package/dist/types/components/ez-form/fieldbuilder/tpl/CheckBox.tpl.d.ts +0 -3
- package/dist/types/components/ez-form/fieldbuilder/tpl/ComboBox.tpl.d.ts +0 -6
- package/dist/types/components/ez-form/fieldbuilder/tpl/DateInput.tpl.d.ts +0 -15
- package/dist/types/components/ez-form/fieldbuilder/tpl/FileInput.tpl.d.ts +0 -5
- package/dist/types/components/ez-form/fieldbuilder/tpl/NumberInput.tpl.d.ts +0 -7
- package/dist/types/components/ez-form/fieldbuilder/tpl/SearchInput.tpl.d.ts +0 -6
- package/dist/types/components/ez-form/fieldbuilder/tpl/TextArea.tpl.d.ts +0 -5
- package/dist/types/components/ez-form/fieldbuilder/tpl/TextInput.tpl.d.ts +0 -5
- package/dist/types/components/ez-form/structure/FormItem.d.ts +0 -9
- package/dist/types/components/ez-form/structure/FormSheet.d.ts +0 -10
- package/dist/types/components/ez-form/structure/FormSheetMetadata.d.ts +0 -35
- /package/dist/collection/components/{ez-form/fieldbuilder/tpl → ez-form-view/fieldbuilder/templates}/FileInput.tpl.js +0 -0
- /package/dist/collection/components/{ez-form/fieldbuilder/tpl → ez-form-view/fieldbuilder/templates}/SearchInput.tpl.js +0 -0
- /package/dist/collection/components/{ez-form/fieldbuilder/tpl → ez-form-view/fieldbuilder/templates}/TextArea.tpl.js +0 -0
- /package/dist/collection/components/{ez-form/fieldbuilder/tpl → ez-form-view/fieldbuilder/templates}/TextInput.tpl.js +0 -0
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { DUActionInterceptor, DataUnit, DataUnitAction } from "@sankhyalabs/core";
|
|
1
2
|
import { EventEmitter } from "../../stencil-public-runtime";
|
|
2
|
-
import {
|
|
3
|
+
import { IFormConfig, IRecordValidator } from "./interfaces";
|
|
3
4
|
import { Tab } from "../ez-tabselector/ez-tabselector";
|
|
5
|
+
import { ITreeItem } from "../ez-tree/interfaces/ITreeItem";
|
|
6
|
+
import { IFormViewField } from "../ez-form-view/interfaces";
|
|
4
7
|
export declare class EzForm implements DUActionInterceptor {
|
|
5
8
|
private _element;
|
|
6
9
|
private _store;
|
|
@@ -20,9 +23,21 @@ export declare class EzForm implements DUActionInterceptor {
|
|
|
20
23
|
*/
|
|
21
24
|
recordsValidator: IRecordValidator;
|
|
22
25
|
/**
|
|
23
|
-
|
|
24
|
-
|
|
26
|
+
* Evento disparado quando o formulário está disponível na DOM.
|
|
27
|
+
*/
|
|
25
28
|
ezReady: EventEmitter<void>;
|
|
29
|
+
/**
|
|
30
|
+
* Habilita o modo de organização com vários níveis.
|
|
31
|
+
*/
|
|
32
|
+
multiLevel: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Define um resolvedor de nível no modo `multiLevel`.
|
|
35
|
+
*/
|
|
36
|
+
levelResolver: (items: Array<ITreeItem>) => Array<ITreeItem>;
|
|
37
|
+
/**
|
|
38
|
+
* Define um construtor. Isso permite personalizar o conteúdo do formulário
|
|
39
|
+
*/
|
|
40
|
+
contentBuilder: (selectedTab: string, fields: Array<IFormViewField>) => HTMLElement | string;
|
|
26
41
|
/**
|
|
27
42
|
* Realiza validação no conteúdo de todos os campos.
|
|
28
43
|
*/
|
|
@@ -30,7 +45,10 @@ export declare class EzForm implements DUActionInterceptor {
|
|
|
30
45
|
observeConfig(): void;
|
|
31
46
|
private validateRequired;
|
|
32
47
|
private processValidationResult;
|
|
48
|
+
private resolveLevel;
|
|
49
|
+
private getMultiLevelContent;
|
|
33
50
|
private getDynamicContent;
|
|
51
|
+
private buildFormContent;
|
|
34
52
|
private processMetadata;
|
|
35
53
|
private isStatic;
|
|
36
54
|
private getFormattedValue;
|
|
@@ -42,43 +60,3 @@ export declare class EzForm implements DUActionInterceptor {
|
|
|
42
60
|
buildIdTabSelector(tabs: Array<Tab>): Array<Tab>;
|
|
43
61
|
render(): any;
|
|
44
62
|
}
|
|
45
|
-
export interface IFieldConfig {
|
|
46
|
-
name: string;
|
|
47
|
-
label?: string;
|
|
48
|
-
group?: string;
|
|
49
|
-
tab?: string | ITabConfig;
|
|
50
|
-
defaultValue?: IDefaultConfig;
|
|
51
|
-
visible?: boolean;
|
|
52
|
-
readOnly?: boolean;
|
|
53
|
-
required?: boolean;
|
|
54
|
-
cleanOnCopy?: boolean;
|
|
55
|
-
}
|
|
56
|
-
export interface IDefaultConfig {
|
|
57
|
-
type?: string;
|
|
58
|
-
value?: string;
|
|
59
|
-
formattedValue?: any;
|
|
60
|
-
}
|
|
61
|
-
export interface ITabConfig {
|
|
62
|
-
label: string;
|
|
63
|
-
visible?: boolean;
|
|
64
|
-
order?: number;
|
|
65
|
-
}
|
|
66
|
-
export interface IFormConfig {
|
|
67
|
-
tabs?: Array<ITabConfig>;
|
|
68
|
-
fields: Array<IFieldConfig>;
|
|
69
|
-
defaultConfiguration?: boolean;
|
|
70
|
-
}
|
|
71
|
-
export interface IRecordValidator {
|
|
72
|
-
validateRecord(form: EzForm, record: Record): IValidationResult;
|
|
73
|
-
}
|
|
74
|
-
export interface IValidationResult {
|
|
75
|
-
isValid: boolean;
|
|
76
|
-
invalidFields?: Array<IInvalidField>;
|
|
77
|
-
errorTitle?: string;
|
|
78
|
-
errorMessage?: string;
|
|
79
|
-
infoMessage?: string;
|
|
80
|
-
}
|
|
81
|
-
export interface IInvalidField {
|
|
82
|
-
name: string;
|
|
83
|
-
message: string;
|
|
84
|
-
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IDefaultConfig } from "./IDefaultConfig";
|
|
2
|
+
import { ITabConfig } from "./ITabConfig";
|
|
3
|
+
export interface IFieldConfig {
|
|
4
|
+
name: string;
|
|
5
|
+
label?: string;
|
|
6
|
+
group?: string;
|
|
7
|
+
tab?: string | ITabConfig;
|
|
8
|
+
defaultValue?: IDefaultConfig;
|
|
9
|
+
visible?: boolean;
|
|
10
|
+
readOnly?: boolean;
|
|
11
|
+
required?: boolean;
|
|
12
|
+
cleanOnCopy?: boolean;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IFormViewField } from "../../ez-form-view/interfaces/IFormViewField";
|
|
2
|
+
export interface IFormSheetMetadata {
|
|
3
|
+
name: string;
|
|
4
|
+
label: string;
|
|
5
|
+
fields: Array<IFormViewField>;
|
|
6
|
+
requiredFields: Array<string>;
|
|
7
|
+
cleanOnCopyFields: Array<string>;
|
|
8
|
+
defaultValues: any;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { IDefaultConfig } from "./IDefaultConfig";
|
|
2
|
+
export { IFieldConfig } from "./IFieldConfig";
|
|
3
|
+
export { IFormConfig } from "./IFormConfig";
|
|
4
|
+
export { IFormSheetMetadata } from "./IFormSheetMetadata";
|
|
5
|
+
export { IInvalidField } from "./IInvalidField";
|
|
6
|
+
export { IRecordValidator } from "./IRecordValidator";
|
|
7
|
+
export { ITabConfig } from "./ITabConfig";
|
|
8
|
+
export { IValidationResult } from "./IValidationResult";
|
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
import { FormMetadata
|
|
1
|
+
import { FormMetadata } from "../FormMetadata";
|
|
2
2
|
import { AnyAction } from "redux";
|
|
3
3
|
import { Tab } from "../../ez-tabselector/ez-tabselector";
|
|
4
|
+
import { IFormSheetMetadata } from "../interfaces";
|
|
4
5
|
export declare function formReducer(state: FormState, action: AnyAction): any;
|
|
5
6
|
export declare function loadMetadata(formMetadata: FormMetadata): AnyAction;
|
|
6
|
-
export declare function changeTab(currentSheet: Tab): {
|
|
7
|
+
export declare function changeTab(currentSheet: Tab | string): {
|
|
7
8
|
type: FormActions;
|
|
8
9
|
payload: string;
|
|
9
10
|
};
|
|
10
11
|
export declare function selectFormMetadata(state: FormState): FormMetadata;
|
|
11
|
-
export declare function
|
|
12
|
+
export declare function selectCurrentSheetId(state: FormState): string;
|
|
13
|
+
export declare function selectCurrentSheet(state: FormState): IFormSheetMetadata;
|
|
12
14
|
declare enum FormActions {
|
|
13
15
|
METADATA_LOADED = "FORM/METADATA_LOADED",
|
|
14
16
|
CHANGE_TAB = "FORM/CHANGE_TAB"
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { IFormViewField } from "../../interfaces/IFormViewField";
|
|
2
|
+
export declare const buildDate: ({ name, label, readOnly }: IFormViewField) => HTMLElement;
|
|
3
|
+
export declare const buildTime: ({ name, label, readOnly }: IFormViewField) => HTMLElement;
|
|
4
|
+
export declare const buildDateTime: ({ name, label, readOnly }: IFormViewField) => HTMLElement;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { IFormViewField } from "./IFormViewField";
|
|
@@ -5,6 +5,7 @@ export declare class EzTree {
|
|
|
5
5
|
private _tree;
|
|
6
6
|
private _visibleItems;
|
|
7
7
|
private _onItemClick;
|
|
8
|
+
private _onIconClick;
|
|
8
9
|
private _waintingForLoad;
|
|
9
10
|
/**
|
|
10
11
|
* Define os itens apresentados na árvore.
|
|
@@ -14,10 +15,18 @@ export declare class EzTree {
|
|
|
14
15
|
* Define o item selecionado na árvore.
|
|
15
16
|
*/
|
|
16
17
|
value: ITreeItem;
|
|
18
|
+
/**
|
|
19
|
+
* Forma alternativa para atribuir o item selecionado por seu ID.
|
|
20
|
+
*/
|
|
21
|
+
selectedId: string;
|
|
17
22
|
/**
|
|
18
23
|
* Define uma função que vai resolver o ícone daquele item. Retorna o nome do ícone da lib de icones do DS.
|
|
19
24
|
*/
|
|
20
25
|
iconResolver: (item: ITreeItem, expanded: boolean, level: number) => string;
|
|
26
|
+
/**
|
|
27
|
+
* Define uma função que vai resolver o `tooltip` ou `title` daquele item.
|
|
28
|
+
*/
|
|
29
|
+
tooltipResolver: (item: ITreeItem, enabled: boolean, level: number) => string;
|
|
21
30
|
/**
|
|
22
31
|
* Emitido quando um item é selecionado na árvore.
|
|
23
32
|
*/
|
|
@@ -60,7 +69,11 @@ export declare class EzTree {
|
|
|
60
69
|
private openClose;
|
|
61
70
|
private previousLevel;
|
|
62
71
|
private nextLevel;
|
|
72
|
+
private indexOf;
|
|
73
|
+
private selectNextItem;
|
|
63
74
|
private nextItem;
|
|
64
75
|
private previousItem;
|
|
76
|
+
connectedCallback(): void;
|
|
77
|
+
componentWillRender(): void;
|
|
65
78
|
render(): any;
|
|
66
79
|
}
|
|
@@ -5,7 +5,9 @@ interface TreeItemProps {
|
|
|
5
5
|
node: Node;
|
|
6
6
|
selectedId: string;
|
|
7
7
|
itemClick: (item: ITreeItem) => void;
|
|
8
|
+
iconClick: (item: ITreeItem) => void;
|
|
8
9
|
iconResolver: (item: ITreeItem, expanded: boolean, level: number) => string;
|
|
10
|
+
tooltipResolver: (item: ITreeItem, enabled: boolean, level: number) => string;
|
|
9
11
|
level?: number;
|
|
10
12
|
itemsList: Array<ITreeItem>;
|
|
11
13
|
}
|
|
@@ -9,6 +9,7 @@ export declare class Node {
|
|
|
9
9
|
private _childrenLoaded;
|
|
10
10
|
private _isLazyLoad;
|
|
11
11
|
constructor(tree: ITree, item?: ITreeItem, parent?: Node, isPlaceHolder?: boolean);
|
|
12
|
+
refresh(newItem: ITreeItem): void;
|
|
12
13
|
isDisabled(): boolean;
|
|
13
14
|
updateChildren(children: Array<ITreeItem>): void;
|
|
14
15
|
addChild(tree: ITree, item: ITreeItem): void;
|
|
@@ -9,6 +9,7 @@ export declare class Tree extends Node implements ITree {
|
|
|
9
9
|
setDisabled(id: string, value: boolean): void;
|
|
10
10
|
isNodeDisabled(id: string, defaultValue: boolean): boolean;
|
|
11
11
|
load(items: Array<ITreeItem>): void;
|
|
12
|
+
updateItem(item: ITreeItem): void;
|
|
12
13
|
open(path: string): Promise<void>;
|
|
13
14
|
walk(parent: Node, path: string, callback: (node: Node) => void, currentLevel?: number): Promise<void>;
|
|
14
15
|
loadChildren(node: Node): Promise<void>;
|
|
@@ -13,7 +13,10 @@ import { IOption, ISearchArgument } from "./components/ez-combo-box/ez-combo-box
|
|
|
13
13
|
import { DataUnit, Record, WaitingChange } from "@sankhyalabs/core";
|
|
14
14
|
import { DialogType } from "./components/ez-dialog/DialogType";
|
|
15
15
|
import { IDropdownItem, IDropdownSubAction } from "./components/ez-dropdown/structure/DropdownItem";
|
|
16
|
-
import { IFormConfig, IRecordValidator, IValidationResult } from "./components/ez-form/
|
|
16
|
+
import { IFormConfig, IRecordValidator, IValidationResult } from "./components/ez-form/interfaces";
|
|
17
|
+
import { ITreeItem } from "./components/ez-tree/interfaces/ITreeItem";
|
|
18
|
+
import { IFormViewField } from "./components/ez-form-view/interfaces";
|
|
19
|
+
import { IFormViewField as IFormViewField1 } from "./components/ez-form-view/interfaces/IFormViewField";
|
|
17
20
|
import { EzGridColumn, EzGridColumnConfig, EzGridColumStateEvent, IGridConfig, IStatusResolver } from "./components/ez-grid/controller/EzGridController";
|
|
18
21
|
import { ListGroup, ListItem } from "./components/ez-list/ez-list";
|
|
19
22
|
import { Radio } from "./components/ez-radio-button/ez-radio-button";
|
|
@@ -21,7 +24,6 @@ import { EzScrollDirection } from "./components/ez-scroller/EzScrollDirection";
|
|
|
21
24
|
import { IOption as IOption1, ISearchArgument as ISearchArgument1 } from "./components/ez-combo-box/ez-combo-box";
|
|
22
25
|
import { Tab } from "./components/ez-tabselector/ez-tabselector";
|
|
23
26
|
import { IStyled } from "./components/ez-text-edit/ez-text-edit";
|
|
24
|
-
import { ITreeItem } from "./components/ez-tree/interfaces/ITreeItem";
|
|
25
27
|
import { EzFile } from "./components/ez-upload/ez-upload";
|
|
26
28
|
export namespace Components {
|
|
27
29
|
interface EzActionsButton {
|
|
@@ -507,10 +509,22 @@ export namespace Components {
|
|
|
507
509
|
* Configuração do formulário.
|
|
508
510
|
*/
|
|
509
511
|
"config": IFormConfig;
|
|
512
|
+
/**
|
|
513
|
+
* Define um construtor. Isso permite personalizar o conteúdo do formulário
|
|
514
|
+
*/
|
|
515
|
+
"contentBuilder": (selectedTab: string, fields: Array<IFormViewField>) => HTMLElement | string;
|
|
510
516
|
/**
|
|
511
517
|
* Unidade de dados. Responsável pelo controle de edição de registros e informações pertinentes aos campos.
|
|
512
518
|
*/
|
|
513
519
|
"dataUnit": DataUnit;
|
|
520
|
+
/**
|
|
521
|
+
* Define um resolvedor de nível no modo `multiLevel`.
|
|
522
|
+
*/
|
|
523
|
+
"levelResolver": (items: Array<ITreeItem>) => Array<ITreeItem>;
|
|
524
|
+
/**
|
|
525
|
+
* Habilita o modo de organização com vários níveis.
|
|
526
|
+
*/
|
|
527
|
+
"multiLevel": boolean;
|
|
514
528
|
/**
|
|
515
529
|
* Define um validador responsável pela integridade dos registros.
|
|
516
530
|
*/
|
|
@@ -520,6 +534,12 @@ export namespace Components {
|
|
|
520
534
|
*/
|
|
521
535
|
"validate": () => Promise<void>;
|
|
522
536
|
}
|
|
537
|
+
interface EzFormView {
|
|
538
|
+
/**
|
|
539
|
+
* Define a lista de metadados usada para criar os campos de user interface.
|
|
540
|
+
*/
|
|
541
|
+
"fields": Array<IFormViewField>;
|
|
542
|
+
}
|
|
523
543
|
interface EzGrid {
|
|
524
544
|
/**
|
|
525
545
|
* Adiciona item de menu nas colunas.
|
|
@@ -1103,6 +1123,14 @@ export namespace Components {
|
|
|
1103
1123
|
* Efetua a seleção de um item.
|
|
1104
1124
|
*/
|
|
1105
1125
|
"selectItem": (id: string) => Promise<void>;
|
|
1126
|
+
/**
|
|
1127
|
+
* Forma alternativa para atribuir o item selecionado por seu ID.
|
|
1128
|
+
*/
|
|
1129
|
+
"selectedId": string;
|
|
1130
|
+
/**
|
|
1131
|
+
* Define uma função que vai resolver o `tooltip` ou `title` daquele item.
|
|
1132
|
+
*/
|
|
1133
|
+
"tooltipResolver": (item: ITreeItem, enabled: boolean, level: number) => string;
|
|
1106
1134
|
/**
|
|
1107
1135
|
* Define o item selecionado na árvore.
|
|
1108
1136
|
*/
|
|
@@ -1274,6 +1302,12 @@ declare global {
|
|
|
1274
1302
|
prototype: HTMLEzFormElement;
|
|
1275
1303
|
new (): HTMLEzFormElement;
|
|
1276
1304
|
};
|
|
1305
|
+
interface HTMLEzFormViewElement extends Components.EzFormView, HTMLStencilElement {
|
|
1306
|
+
}
|
|
1307
|
+
var HTMLEzFormViewElement: {
|
|
1308
|
+
prototype: HTMLEzFormViewElement;
|
|
1309
|
+
new (): HTMLEzFormViewElement;
|
|
1310
|
+
};
|
|
1277
1311
|
interface HTMLEzGridElement extends Components.EzGrid, HTMLStencilElement {
|
|
1278
1312
|
}
|
|
1279
1313
|
var HTMLEzGridElement: {
|
|
@@ -1425,6 +1459,7 @@ declare global {
|
|
|
1425
1459
|
"ez-file-item": HTMLEzFileItemElement;
|
|
1426
1460
|
"ez-filter-input": HTMLEzFilterInputElement;
|
|
1427
1461
|
"ez-form": HTMLEzFormElement;
|
|
1462
|
+
"ez-form-view": HTMLEzFormViewElement;
|
|
1428
1463
|
"ez-grid": HTMLEzGridElement;
|
|
1429
1464
|
"ez-icon": HTMLEzIconElement;
|
|
1430
1465
|
"ez-list": HTMLEzListElement;
|
|
@@ -1933,10 +1968,22 @@ declare namespace LocalJSX {
|
|
|
1933
1968
|
* Configuração do formulário.
|
|
1934
1969
|
*/
|
|
1935
1970
|
"config"?: IFormConfig;
|
|
1971
|
+
/**
|
|
1972
|
+
* Define um construtor. Isso permite personalizar o conteúdo do formulário
|
|
1973
|
+
*/
|
|
1974
|
+
"contentBuilder"?: (selectedTab: string, fields: Array<IFormViewField>) => HTMLElement | string;
|
|
1936
1975
|
/**
|
|
1937
1976
|
* Unidade de dados. Responsável pelo controle de edição de registros e informações pertinentes aos campos.
|
|
1938
1977
|
*/
|
|
1939
1978
|
"dataUnit"?: DataUnit;
|
|
1979
|
+
/**
|
|
1980
|
+
* Define um resolvedor de nível no modo `multiLevel`.
|
|
1981
|
+
*/
|
|
1982
|
+
"levelResolver"?: (items: Array<ITreeItem>) => Array<ITreeItem>;
|
|
1983
|
+
/**
|
|
1984
|
+
* Habilita o modo de organização com vários níveis.
|
|
1985
|
+
*/
|
|
1986
|
+
"multiLevel"?: boolean;
|
|
1940
1987
|
/**
|
|
1941
1988
|
* Evento disparado quando o formulário está disponível na DOM.
|
|
1942
1989
|
*/
|
|
@@ -1946,6 +1993,12 @@ declare namespace LocalJSX {
|
|
|
1946
1993
|
*/
|
|
1947
1994
|
"recordsValidator"?: IRecordValidator;
|
|
1948
1995
|
}
|
|
1996
|
+
interface EzFormView {
|
|
1997
|
+
/**
|
|
1998
|
+
* Define a lista de metadados usada para criar os campos de user interface.
|
|
1999
|
+
*/
|
|
2000
|
+
"fields"?: Array<IFormViewField>;
|
|
2001
|
+
}
|
|
1949
2002
|
interface EzGrid {
|
|
1950
2003
|
/**
|
|
1951
2004
|
* Configuração de exibição da grade.
|
|
@@ -2473,6 +2526,14 @@ declare namespace LocalJSX {
|
|
|
2473
2526
|
* Emitido quando um item é aberto na árvore.
|
|
2474
2527
|
*/
|
|
2475
2528
|
"onEzOpenItem"?: (event: CustomEvent<ITreeItem>) => void;
|
|
2529
|
+
/**
|
|
2530
|
+
* Forma alternativa para atribuir o item selecionado por seu ID.
|
|
2531
|
+
*/
|
|
2532
|
+
"selectedId"?: string;
|
|
2533
|
+
/**
|
|
2534
|
+
* Define uma função que vai resolver o `tooltip` ou `title` daquele item.
|
|
2535
|
+
*/
|
|
2536
|
+
"tooltipResolver"?: (item: ITreeItem, enabled: boolean, level: number) => string;
|
|
2476
2537
|
/**
|
|
2477
2538
|
* Define o item selecionado na árvore.
|
|
2478
2539
|
*/
|
|
@@ -2545,6 +2606,7 @@ declare namespace LocalJSX {
|
|
|
2545
2606
|
"ez-file-item": EzFileItem;
|
|
2546
2607
|
"ez-filter-input": EzFilterInput;
|
|
2547
2608
|
"ez-form": EzForm;
|
|
2609
|
+
"ez-form-view": EzFormView;
|
|
2548
2610
|
"ez-grid": EzGrid;
|
|
2549
2611
|
"ez-icon": EzIcon;
|
|
2550
2612
|
"ez-list": EzList;
|
|
@@ -2591,6 +2653,7 @@ declare module "@stencil/core" {
|
|
|
2591
2653
|
"ez-file-item": LocalJSX.EzFileItem & JSXBase.HTMLAttributes<HTMLEzFileItemElement>;
|
|
2592
2654
|
"ez-filter-input": LocalJSX.EzFilterInput & JSXBase.HTMLAttributes<HTMLEzFilterInputElement>;
|
|
2593
2655
|
"ez-form": LocalJSX.EzForm & JSXBase.HTMLAttributes<HTMLEzFormElement>;
|
|
2656
|
+
"ez-form-view": LocalJSX.EzFormView & JSXBase.HTMLAttributes<HTMLEzFormViewElement>;
|
|
2594
2657
|
"ez-grid": LocalJSX.EzGrid & JSXBase.HTMLAttributes<HTMLEzGridElement>;
|
|
2595
2658
|
"ez-icon": LocalJSX.EzIcon & JSXBase.HTMLAttributes<HTMLEzIconElement>;
|
|
2596
2659
|
"ez-list": LocalJSX.EzList & JSXBase.HTMLAttributes<HTMLEzListElement>;
|
package/package.json
CHANGED
package/react/components.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export declare const EzDropdown: import("react").ForwardRefExoticComponent<JSX.E
|
|
|
18
18
|
export declare const EzFileItem: import("react").ForwardRefExoticComponent<JSX.EzFileItem & Pick<import("react").HTMLAttributes<HTMLEzFileItemElement>, "dir" | "slot" | "title" | "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzFileItemElement>>;
|
|
19
19
|
export declare const EzFilterInput: import("react").ForwardRefExoticComponent<JSX.EzFilterInput & Pick<import("react").HTMLAttributes<HTMLEzFilterInputElement>, "dir" | "slot" | "title" | "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzFilterInputElement>>;
|
|
20
20
|
export declare const EzForm: import("react").ForwardRefExoticComponent<JSX.EzForm & Pick<import("react").HTMLAttributes<HTMLEzFormElement>, "dir" | "slot" | "title" | "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzFormElement>>;
|
|
21
|
+
export declare const EzFormView: import("react").ForwardRefExoticComponent<JSX.EzFormView & Pick<import("react").HTMLAttributes<HTMLEzFormViewElement>, "dir" | "slot" | "title" | "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzFormViewElement>>;
|
|
21
22
|
export declare const EzGrid: import("react").ForwardRefExoticComponent<JSX.EzGrid & Pick<import("react").HTMLAttributes<HTMLEzGridElement>, "dir" | "slot" | "title" | "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzGridElement>>;
|
|
22
23
|
export declare const EzIcon: import("react").ForwardRefExoticComponent<JSX.EzIcon & Pick<import("react").HTMLAttributes<HTMLEzIconElement>, "dir" | "slot" | "title" | "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzIconElement>>;
|
|
23
24
|
export declare const EzList: import("react").ForwardRefExoticComponent<JSX.EzList & Pick<import("react").HTMLAttributes<HTMLEzListElement>, "dir" | "slot" | "title" | "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzListElement>>;
|
package/react/components.js
CHANGED
|
@@ -20,6 +20,7 @@ export const EzDropdown = /*@__PURE__*/ createReactComponent('ez-dropdown');
|
|
|
20
20
|
export const EzFileItem = /*@__PURE__*/ createReactComponent('ez-file-item');
|
|
21
21
|
export const EzFilterInput = /*@__PURE__*/ createReactComponent('ez-filter-input');
|
|
22
22
|
export const EzForm = /*@__PURE__*/ createReactComponent('ez-form');
|
|
23
|
+
export const EzFormView = /*@__PURE__*/ createReactComponent('ez-form-view');
|
|
23
24
|
export const EzGrid = /*@__PURE__*/ createReactComponent('ez-grid');
|
|
24
25
|
export const EzIcon = /*@__PURE__*/ createReactComponent('ez-icon');
|
|
25
26
|
export const EzList = /*@__PURE__*/ createReactComponent('ez-list');
|