@zeedhi/vuetify 3.2.0 → 3.3.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/zd-vuetify.css +25 -2
- package/dist/zd-vuetify.min.css +2 -2
- package/dist/zd-vuetify.min.js +12 -12
- package/dist/zd-vuetify.mjs +346 -123
- package/package.json +3 -3
- package/src/components/zd-component/ZdComponent.ts +15 -13
- package/src/components/zd-tabs/ZdTab.ts +40 -6
- package/src/components/zd-tabs/ZdTab.vue +16 -3
- package/src/components/zd-tabs/ZdTabItem.ts +2 -2
- package/src/components/zd-tabs/ZdTabItem.vue +1 -1
- package/src/components/zd-tabs/ZdTabs.ts +96 -2
- package/src/components/zd-tabs/ZdTabs.vue +46 -17
- package/types/components/tek-grid/TekGrid.d.ts +7258 -0
- package/types/components/tek-grid/TekGrid.ts.d.ts +7258 -0
- package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +129 -0
- package/types/components/tek-grid/column-filter/TekGridColumnFilter.ts.d.ts +129 -0
- package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +225 -0
- package/types/components/tek-grid/column-header/TekGridHeaderRow.ts.d.ts +225 -0
- package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +2432 -0
- package/types/components/tek-grid/columns-button/TekGridColumnsButton.ts.d.ts +2432 -0
- package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +65 -0
- package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +9 -0
- package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +2920 -0
- package/types/components/tek-grid/filter-button/TekGridFilterButton.ts.d.ts +2920 -0
- package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +32 -0
- package/types/components/tek-grid/indentation/TekGridIndentation.ts.d.ts +32 -0
- package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +1892 -0
- package/types/components/tek-grid/layout-options/TekGridLayoutOptions.ts.d.ts +1892 -0
- package/types/components/tek-grid/row/TekGridFooterRow.d.ts +90 -0
- package/types/components/tek-grid/row/TekGridFooterRow.ts.d.ts +90 -0
- package/types/components/tek-grid/row/TekGridGroupRow.d.ts +87 -0
- package/types/components/tek-grid/row/TekGridGroupRow.ts.d.ts +87 -0
- package/types/components/tooltip-overflow/ZdTooltipOverflow.ts.d.ts +50 -0
- package/types/components/zd-activator-wrapper/ZdActivatorWrapper.ts.d.ts +25 -0
- package/types/components/zd-alert/ZdAlert.ts.d.ts +884 -0
- package/types/components/zd-badge/ZdBadge.ts.d.ts +624 -0
- package/types/components/zd-breadcrumbs/ZdBreadcrumbs.ts.d.ts +697 -0
- package/types/components/zd-button/ZdButton.ts.d.ts +1158 -0
- package/types/components/zd-button-group/ZdButtonGroup.ts.d.ts +785 -0
- package/types/components/zd-card/ZdCard.ts.d.ts +1028 -0
- package/types/components/zd-carousel/ZdCarousel.ts.d.ts +2007 -0
- package/types/components/zd-checkbox/ZdCheckbox.ts.d.ts +642 -0
- package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.ts.d.ts +2010 -0
- package/types/components/zd-chip/ZdChip.ts.d.ts +1256 -0
- package/types/components/zd-code-viewer/ZdCodeViewer.ts.d.ts +791 -0
- package/types/components/zd-col/ZdCol.ts.d.ts +741 -0
- package/types/components/zd-collapse-card/ZdCollapseCard.ts.d.ts +1583 -0
- package/types/components/zd-container/ZdContainer.ts.d.ts +722 -0
- package/types/components/zd-currency/ZdCurrency.ts.d.ts +2024 -0
- package/types/components/zd-date-input/ZdDateInput.ts.d.ts +960 -0
- package/types/components/zd-dialog/ZdDialog.ts.d.ts +262 -0
- package/types/components/zd-divider/ZdDivider.ts.d.ts +623 -0
- package/types/components/zd-dropdown/ZdDropdown.ts.d.ts +836 -0
- package/types/components/zd-footer/ZdFooter.ts.d.ts +1262 -0
- package/types/components/zd-form/ZdForm.ts.d.ts +118 -0
- package/types/components/zd-frame/ZdFrame.ts.d.ts +138 -0
- package/types/components/zd-frame-page/ZdFramePage.ts.d.ts +805 -0
- package/types/components/zd-grid/ZdGrid.ts.d.ts +7304 -0
- package/types/components/zd-grid/cell/ZdGridAction.ts.d.ts +14 -0
- package/types/components/zd-grid/cell/ZdGridCell.ts.d.ts +68 -0
- package/types/components/zd-grid/cell/ZdGridCellContent.ts.d.ts +58 -0
- package/types/components/zd-grid/cell/ZdGridCheckbox.ts.d.ts +53 -0
- package/types/components/zd-grid/column-header/ZdGridColumnHeader.ts.d.ts +112 -0
- package/types/components/zd-grid/column-header/ZdGridHeaderIcon.ts.d.ts +46 -0
- package/types/components/zd-grid/column-header/ZdGridHeaderRow.ts.d.ts +165 -0
- package/types/components/zd-grid/column-header/ZdGridSort.ts.d.ts +47 -0
- package/types/components/zd-grid/footer/ZdGridFooter.ts.d.ts +2087 -0
- package/types/components/zd-grid/helper/ZdGridHelper.ts.d.ts +16 -0
- package/types/components/zd-grid/row/TableRow.ts.d.ts +34 -0
- package/types/components/zd-grid/row/ZdGridRow.ts.d.ts +105 -0
- package/types/components/zd-grid/toolbar/ZdGridToolbar.ts.d.ts +2086 -0
- package/types/components/zd-grid-editable/ZdGridEditable.ts.d.ts +8663 -0
- package/types/components/zd-grid-editable/cell/ZdGridEditableCell.ts.d.ts +637 -0
- package/types/components/zd-grid-editable/row/ZdGridEditableRow.ts.d.ts +126 -0
- package/types/components/zd-header/ZdHeader.ts.d.ts +1320 -0
- package/types/components/zd-icon/ZdIcon.ts.d.ts +383 -0
- package/types/components/zd-image/ZdImage.ts.d.ts +753 -0
- package/types/components/zd-increment/ZdIncrement.ts.d.ts +2069 -0
- package/types/components/zd-iterable/ZdIterableNoData.ts.d.ts +2089 -0
- package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.ts.d.ts +1645 -0
- package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.ts.d.ts +1081 -0
- package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.ts.d.ts +2763 -0
- package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.ts.d.ts +1627 -0
- package/types/components/zd-iterable/zd-search/ZdSearch.ts.d.ts +766 -0
- package/types/components/zd-iterable-component-render/ZdIterableComponentRender.ts.d.ts +2484 -0
- package/types/components/zd-layout/ZdLayout.ts.d.ts +647 -0
- package/types/components/zd-list/ZdList.ts.d.ts +1140 -0
- package/types/components/zd-list/ZdListGroup.ts.d.ts +1332 -0
- package/types/components/zd-list/ZdListItem.ts.d.ts +848 -0
- package/types/components/zd-loading/ZdLoading.ts.d.ts +350 -0
- package/types/components/zd-login/ZdLogin.ts.d.ts +1072 -0
- package/types/components/zd-login/ZdLoginButton.ts.d.ts +1910 -0
- package/types/components/zd-main/ZdMain.ts.d.ts +619 -0
- package/types/components/zd-master-detail/ZdMasterDetail.ts.d.ts +684 -0
- package/types/components/zd-menu/ZdMenu.ts.d.ts +4484 -0
- package/types/components/zd-menu/ZdMenuButton.ts.d.ts +1142 -0
- package/types/components/zd-menu/ZdMenuGroup.ts.d.ts +6286 -0
- package/types/components/zd-menu/ZdMenuLink.ts.d.ts +10437 -0
- package/types/components/zd-menu/ZdMenuSeparator.ts.d.ts +600 -0
- package/types/components/zd-modal/ZdModal.ts.d.ts +10 -0
- package/types/components/zd-modal/ZdModalCloseButton.ts.d.ts +1137 -0
- package/types/components/zd-month/ZdMonth.ts.d.ts +2217 -0
- package/types/components/zd-number-input/ZdNumberInput.ts.d.ts +2021 -0
- package/types/components/zd-password/ZdPassword.ts.d.ts +2014 -0
- package/types/components/zd-progress/ZdProgress.ts.d.ts +859 -0
- package/types/components/zd-radio/ZdRadio.ts.d.ts +682 -0
- package/types/components/zd-row/ZdRow.ts.d.ts +734 -0
- package/types/components/zd-select/ZdSelect.ts.d.ts +313 -0
- package/types/components/zd-select-multiple/ZdSelectMultiple.ts.d.ts +333 -0
- package/types/components/zd-svg-map/ZdSvgMap.ts.d.ts +414 -0
- package/types/components/zd-switch/ZdSwitch.ts.d.ts +1918 -0
- package/types/components/zd-table/ZdTable.ts.d.ts +1092 -0
- package/types/components/zd-tabs/ZdTab.d.ts +4 -10
- package/types/components/zd-tabs/ZdTab.ts.d.ts +674 -0
- package/types/components/zd-tabs/ZdTabItem.d.ts +6 -6
- package/types/components/zd-tabs/ZdTabItem.ts.d.ts +268 -0
- package/types/components/zd-tabs/ZdTabs.d.ts +20 -1
- package/types/components/zd-tabs/ZdTabs.ts.d.ts +929 -0
- package/types/components/zd-tag/ZdTag.ts.d.ts +613 -0
- package/types/components/zd-text/ZdText.ts.d.ts +670 -0
- package/types/components/zd-text-input/ZdTextInput.ts.d.ts +746 -0
- package/types/components/zd-textarea/ZdTextarea.ts.d.ts +877 -0
- package/types/components/zd-time/ZdTime.ts.d.ts +2224 -0
- package/types/components/zd-tooltip/ZdTooltip.ts.d.ts +781 -0
- package/types/components/zd-tree/ZdTree.ts.d.ts +1878 -0
- package/types/components/zd-tree/ZdTreeAfterTitle.ts.d.ts +26 -0
- package/types/components/zd-tree/ZdTreeCheckbox.ts.d.ts +74 -0
- package/types/components/zd-tree-grid/ZdTreeGrid.ts.d.ts +4178 -0
- package/types/components/zd-tree-grid/cell/ZdTreeGridCell.ts.d.ts +92 -0
- package/types/components/zd-tree-grid/row/ZdTreeGridRow.ts.d.ts +124 -0
- package/types/composables/useTableLayout.d.ts +25 -0
- package/types/utils/isArrayOperation.d.ts +2 -0
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import { IFormComponent } from '@zeedhi/common';
|
|
2
|
+
export declare const ZdFormProps: {
|
|
3
|
+
align: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
};
|
|
6
|
+
justify: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
};
|
|
9
|
+
children: {
|
|
10
|
+
type: (StringConstructor | {
|
|
11
|
+
(arrayLength: number): IFormComponent[];
|
|
12
|
+
(...items: IFormComponent[]): IFormComponent[];
|
|
13
|
+
new (arrayLength: number): IFormComponent[];
|
|
14
|
+
new (...items: IFormComponent[]): IFormComponent[];
|
|
15
|
+
isArray(arg: any): arg is any[];
|
|
16
|
+
readonly prototype: any[];
|
|
17
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
18
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
19
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
20
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
21
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
22
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
23
|
+
})[];
|
|
24
|
+
default(): never[];
|
|
25
|
+
};
|
|
26
|
+
value: {
|
|
27
|
+
type: ObjectConstructor;
|
|
28
|
+
default(): {};
|
|
29
|
+
};
|
|
30
|
+
width: {
|
|
31
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
32
|
+
};
|
|
33
|
+
minWidth: {
|
|
34
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
maxWidth: {
|
|
38
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
fillHeight: {
|
|
42
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
height: {
|
|
46
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
47
|
+
};
|
|
48
|
+
minHeight: {
|
|
49
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
maxHeight: {
|
|
53
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
component: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
};
|
|
59
|
+
allowDuplicate: {
|
|
60
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
autofocus: {
|
|
64
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
65
|
+
default: boolean;
|
|
66
|
+
};
|
|
67
|
+
cssClass: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
cssStyle: {
|
|
72
|
+
type: (StringConstructor | (() => import("vue").StyleValue))[];
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
dark: {
|
|
76
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
79
|
+
directives: {
|
|
80
|
+
type: ObjectConstructor;
|
|
81
|
+
default(): {};
|
|
82
|
+
};
|
|
83
|
+
events: {
|
|
84
|
+
type: ObjectConstructor;
|
|
85
|
+
default(): {};
|
|
86
|
+
};
|
|
87
|
+
instanceObject: {
|
|
88
|
+
type: ObjectConstructor;
|
|
89
|
+
};
|
|
90
|
+
isVisible: {
|
|
91
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
92
|
+
default: boolean;
|
|
93
|
+
};
|
|
94
|
+
keyMap: {
|
|
95
|
+
type: ObjectConstructor;
|
|
96
|
+
default(): {};
|
|
97
|
+
};
|
|
98
|
+
light: {
|
|
99
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
100
|
+
default: boolean;
|
|
101
|
+
};
|
|
102
|
+
name: {
|
|
103
|
+
type: StringConstructor;
|
|
104
|
+
required: true;
|
|
105
|
+
};
|
|
106
|
+
parent: {
|
|
107
|
+
type: ObjectConstructor;
|
|
108
|
+
};
|
|
109
|
+
tabStop: {
|
|
110
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
111
|
+
default: boolean;
|
|
112
|
+
};
|
|
113
|
+
theme: {
|
|
114
|
+
type: StringConstructor;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
declare const formComponent: any;
|
|
118
|
+
export default formComponent;
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
export declare const ZdFrameProps: {
|
|
2
|
+
path: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
type: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
params: {
|
|
11
|
+
type: (StringConstructor | ObjectConstructor)[];
|
|
12
|
+
default: () => void;
|
|
13
|
+
};
|
|
14
|
+
local: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
override: {
|
|
19
|
+
type: ObjectConstructor;
|
|
20
|
+
default: () => {};
|
|
21
|
+
};
|
|
22
|
+
overrideNamedProps: {
|
|
23
|
+
type: ObjectConstructor;
|
|
24
|
+
default: () => {};
|
|
25
|
+
};
|
|
26
|
+
cache: {
|
|
27
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
JSONCache: {
|
|
31
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
cacheDuration: {
|
|
35
|
+
type: NumberConstructor;
|
|
36
|
+
default: number;
|
|
37
|
+
};
|
|
38
|
+
height: {
|
|
39
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
minHeight: {
|
|
43
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
maxHeight: {
|
|
47
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
width: {
|
|
51
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
minWidth: {
|
|
55
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
58
|
+
maxWidth: {
|
|
59
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
allowDuplicate: {
|
|
63
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
64
|
+
default: boolean;
|
|
65
|
+
};
|
|
66
|
+
autofocus: {
|
|
67
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
children: {
|
|
71
|
+
type: (StringConstructor | {
|
|
72
|
+
(arrayLength: number): import("@zeedhi/common").IComponent[];
|
|
73
|
+
(...items: import("@zeedhi/common").IComponent[]): import("@zeedhi/common").IComponent[];
|
|
74
|
+
new (arrayLength: number): import("@zeedhi/common").IComponent[];
|
|
75
|
+
new (...items: import("@zeedhi/common").IComponent[]): import("@zeedhi/common").IComponent[];
|
|
76
|
+
isArray(arg: any): arg is any[];
|
|
77
|
+
readonly prototype: any[];
|
|
78
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
79
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
80
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
81
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
82
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
83
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
84
|
+
})[];
|
|
85
|
+
default(): never[];
|
|
86
|
+
};
|
|
87
|
+
cssClass: {
|
|
88
|
+
type: StringConstructor;
|
|
89
|
+
default: string;
|
|
90
|
+
};
|
|
91
|
+
cssStyle: {
|
|
92
|
+
type: (StringConstructor | (() => import("vue").StyleValue))[];
|
|
93
|
+
default: string;
|
|
94
|
+
};
|
|
95
|
+
dark: {
|
|
96
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
97
|
+
default: boolean;
|
|
98
|
+
};
|
|
99
|
+
directives: {
|
|
100
|
+
type: ObjectConstructor;
|
|
101
|
+
default(): {};
|
|
102
|
+
};
|
|
103
|
+
events: {
|
|
104
|
+
type: ObjectConstructor;
|
|
105
|
+
default(): {};
|
|
106
|
+
};
|
|
107
|
+
instanceObject: {
|
|
108
|
+
type: ObjectConstructor;
|
|
109
|
+
};
|
|
110
|
+
isVisible: {
|
|
111
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
112
|
+
default: boolean;
|
|
113
|
+
};
|
|
114
|
+
keyMap: {
|
|
115
|
+
type: ObjectConstructor;
|
|
116
|
+
default(): {};
|
|
117
|
+
};
|
|
118
|
+
light: {
|
|
119
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
120
|
+
default: boolean;
|
|
121
|
+
};
|
|
122
|
+
name: {
|
|
123
|
+
type: StringConstructor;
|
|
124
|
+
required: true;
|
|
125
|
+
};
|
|
126
|
+
parent: {
|
|
127
|
+
type: ObjectConstructor;
|
|
128
|
+
};
|
|
129
|
+
tabStop: {
|
|
130
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
131
|
+
default: boolean;
|
|
132
|
+
};
|
|
133
|
+
theme: {
|
|
134
|
+
type: StringConstructor;
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
declare const frameComponent: any;
|
|
138
|
+
export default frameComponent;
|