@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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const ZdTabItemProps: {
|
|
2
|
-
|
|
3
|
-
type:
|
|
2
|
+
value: {
|
|
3
|
+
type: StringConstructor[];
|
|
4
4
|
};
|
|
5
5
|
lazyLoad: {
|
|
6
6
|
type: BooleanConstructor[];
|
|
@@ -92,8 +92,8 @@ export declare const ZdTabItemProps: {
|
|
|
92
92
|
};
|
|
93
93
|
};
|
|
94
94
|
declare const tabItemComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
95
|
-
|
|
96
|
-
type:
|
|
95
|
+
value: {
|
|
96
|
+
type: StringConstructor[];
|
|
97
97
|
};
|
|
98
98
|
lazyLoad: {
|
|
99
99
|
type: BooleanConstructor[];
|
|
@@ -184,8 +184,8 @@ declare const tabItemComponent: import("vue").DefineComponent<import("vue").Extr
|
|
|
184
184
|
type: StringConstructor;
|
|
185
185
|
};
|
|
186
186
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
187
|
-
|
|
188
|
-
type:
|
|
187
|
+
value: {
|
|
188
|
+
type: StringConstructor[];
|
|
189
189
|
};
|
|
190
190
|
lazyLoad: {
|
|
191
191
|
type: BooleanConstructor[];
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
export declare const ZdTabItemProps: {
|
|
2
|
+
index: {
|
|
3
|
+
type: NumberConstructor[];
|
|
4
|
+
};
|
|
5
|
+
lazyLoad: {
|
|
6
|
+
type: BooleanConstructor[];
|
|
7
|
+
};
|
|
8
|
+
children: {
|
|
9
|
+
type: (StringConstructor | {
|
|
10
|
+
(arrayLength: number): import("@zeedhi/common").IComponentRender[];
|
|
11
|
+
(...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
|
|
12
|
+
new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
|
|
13
|
+
new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
|
|
14
|
+
isArray(arg: any): arg is any[];
|
|
15
|
+
readonly prototype: any[];
|
|
16
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
17
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
18
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
19
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
20
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
21
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
22
|
+
})[];
|
|
23
|
+
default(): never[];
|
|
24
|
+
};
|
|
25
|
+
component: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
};
|
|
28
|
+
allowDuplicate: {
|
|
29
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
autofocus: {
|
|
33
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
cssClass: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
cssStyle: {
|
|
41
|
+
type: (StringConstructor | (() => import("vue").StyleValue))[];
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
dark: {
|
|
45
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
directives: {
|
|
49
|
+
type: ObjectConstructor;
|
|
50
|
+
default(): {};
|
|
51
|
+
};
|
|
52
|
+
events: {
|
|
53
|
+
type: ObjectConstructor;
|
|
54
|
+
default(): {};
|
|
55
|
+
};
|
|
56
|
+
instanceObject: {
|
|
57
|
+
type: ObjectConstructor;
|
|
58
|
+
};
|
|
59
|
+
isVisible: {
|
|
60
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
keyMap: {
|
|
64
|
+
type: ObjectConstructor;
|
|
65
|
+
default(): {};
|
|
66
|
+
};
|
|
67
|
+
light: {
|
|
68
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
69
|
+
default: boolean;
|
|
70
|
+
};
|
|
71
|
+
name: {
|
|
72
|
+
type: StringConstructor;
|
|
73
|
+
required: true;
|
|
74
|
+
};
|
|
75
|
+
parent: {
|
|
76
|
+
type: ObjectConstructor;
|
|
77
|
+
};
|
|
78
|
+
tabStop: {
|
|
79
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
82
|
+
theme: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
declare const tabItemComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
87
|
+
index: {
|
|
88
|
+
type: NumberConstructor[];
|
|
89
|
+
};
|
|
90
|
+
lazyLoad: {
|
|
91
|
+
type: BooleanConstructor[];
|
|
92
|
+
};
|
|
93
|
+
children: {
|
|
94
|
+
type: (StringConstructor | {
|
|
95
|
+
(arrayLength: number): import("@zeedhi/common").IComponentRender[];
|
|
96
|
+
(...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
|
|
97
|
+
new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
|
|
98
|
+
new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
|
|
99
|
+
isArray(arg: any): arg is any[];
|
|
100
|
+
readonly prototype: any[];
|
|
101
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
102
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
103
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
104
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
105
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
106
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
107
|
+
})[];
|
|
108
|
+
default(): never[];
|
|
109
|
+
};
|
|
110
|
+
component: {
|
|
111
|
+
type: StringConstructor;
|
|
112
|
+
};
|
|
113
|
+
allowDuplicate: {
|
|
114
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
115
|
+
default: boolean;
|
|
116
|
+
};
|
|
117
|
+
autofocus: {
|
|
118
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
119
|
+
default: boolean;
|
|
120
|
+
};
|
|
121
|
+
cssClass: {
|
|
122
|
+
type: StringConstructor;
|
|
123
|
+
default: string;
|
|
124
|
+
};
|
|
125
|
+
cssStyle: {
|
|
126
|
+
type: (StringConstructor | (() => import("vue").StyleValue))[];
|
|
127
|
+
default: string;
|
|
128
|
+
};
|
|
129
|
+
dark: {
|
|
130
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
131
|
+
default: boolean;
|
|
132
|
+
};
|
|
133
|
+
directives: {
|
|
134
|
+
type: ObjectConstructor;
|
|
135
|
+
default(): {};
|
|
136
|
+
};
|
|
137
|
+
events: {
|
|
138
|
+
type: ObjectConstructor;
|
|
139
|
+
default(): {};
|
|
140
|
+
};
|
|
141
|
+
instanceObject: {
|
|
142
|
+
type: ObjectConstructor;
|
|
143
|
+
};
|
|
144
|
+
isVisible: {
|
|
145
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
146
|
+
default: boolean;
|
|
147
|
+
};
|
|
148
|
+
keyMap: {
|
|
149
|
+
type: ObjectConstructor;
|
|
150
|
+
default(): {};
|
|
151
|
+
};
|
|
152
|
+
light: {
|
|
153
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
154
|
+
default: boolean;
|
|
155
|
+
};
|
|
156
|
+
name: {
|
|
157
|
+
type: StringConstructor;
|
|
158
|
+
required: true;
|
|
159
|
+
};
|
|
160
|
+
parent: {
|
|
161
|
+
type: ObjectConstructor;
|
|
162
|
+
};
|
|
163
|
+
tabStop: {
|
|
164
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
165
|
+
default: boolean;
|
|
166
|
+
};
|
|
167
|
+
theme: {
|
|
168
|
+
type: StringConstructor;
|
|
169
|
+
};
|
|
170
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
171
|
+
index: {
|
|
172
|
+
type: NumberConstructor[];
|
|
173
|
+
};
|
|
174
|
+
lazyLoad: {
|
|
175
|
+
type: BooleanConstructor[];
|
|
176
|
+
};
|
|
177
|
+
children: {
|
|
178
|
+
type: (StringConstructor | {
|
|
179
|
+
(arrayLength: number): import("@zeedhi/common").IComponentRender[];
|
|
180
|
+
(...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
|
|
181
|
+
new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
|
|
182
|
+
new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
|
|
183
|
+
isArray(arg: any): arg is any[];
|
|
184
|
+
readonly prototype: any[];
|
|
185
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
186
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
187
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
188
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
189
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
190
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
191
|
+
})[];
|
|
192
|
+
default(): never[];
|
|
193
|
+
};
|
|
194
|
+
component: {
|
|
195
|
+
type: StringConstructor;
|
|
196
|
+
};
|
|
197
|
+
allowDuplicate: {
|
|
198
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
199
|
+
default: boolean;
|
|
200
|
+
};
|
|
201
|
+
autofocus: {
|
|
202
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
203
|
+
default: boolean;
|
|
204
|
+
};
|
|
205
|
+
cssClass: {
|
|
206
|
+
type: StringConstructor;
|
|
207
|
+
default: string;
|
|
208
|
+
};
|
|
209
|
+
cssStyle: {
|
|
210
|
+
type: (StringConstructor | (() => import("vue").StyleValue))[];
|
|
211
|
+
default: string;
|
|
212
|
+
};
|
|
213
|
+
dark: {
|
|
214
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
215
|
+
default: boolean;
|
|
216
|
+
};
|
|
217
|
+
directives: {
|
|
218
|
+
type: ObjectConstructor;
|
|
219
|
+
default(): {};
|
|
220
|
+
};
|
|
221
|
+
events: {
|
|
222
|
+
type: ObjectConstructor;
|
|
223
|
+
default(): {};
|
|
224
|
+
};
|
|
225
|
+
instanceObject: {
|
|
226
|
+
type: ObjectConstructor;
|
|
227
|
+
};
|
|
228
|
+
isVisible: {
|
|
229
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
230
|
+
default: boolean;
|
|
231
|
+
};
|
|
232
|
+
keyMap: {
|
|
233
|
+
type: ObjectConstructor;
|
|
234
|
+
default(): {};
|
|
235
|
+
};
|
|
236
|
+
light: {
|
|
237
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
238
|
+
default: boolean;
|
|
239
|
+
};
|
|
240
|
+
name: {
|
|
241
|
+
type: StringConstructor;
|
|
242
|
+
required: true;
|
|
243
|
+
};
|
|
244
|
+
parent: {
|
|
245
|
+
type: ObjectConstructor;
|
|
246
|
+
};
|
|
247
|
+
tabStop: {
|
|
248
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
249
|
+
default: boolean;
|
|
250
|
+
};
|
|
251
|
+
theme: {
|
|
252
|
+
type: StringConstructor;
|
|
253
|
+
};
|
|
254
|
+
}>> & Readonly<{}>, {
|
|
255
|
+
allowDuplicate: string | boolean;
|
|
256
|
+
autofocus: string | boolean;
|
|
257
|
+
children: string | import("@zeedhi/common").IComponentRender[];
|
|
258
|
+
cssClass: string;
|
|
259
|
+
cssStyle: import("vue").StyleValue;
|
|
260
|
+
dark: string | boolean;
|
|
261
|
+
directives: Record<string, any>;
|
|
262
|
+
events: Record<string, any>;
|
|
263
|
+
isVisible: string | boolean;
|
|
264
|
+
keyMap: Record<string, any>;
|
|
265
|
+
light: string | boolean;
|
|
266
|
+
tabStop: string | boolean;
|
|
267
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
268
|
+
export default tabItemComponent;
|
|
@@ -35,6 +35,10 @@ export declare const ZdTabsProps: {
|
|
|
35
35
|
max: {
|
|
36
36
|
type: (NumberConstructor | StringConstructor)[];
|
|
37
37
|
};
|
|
38
|
+
sortable: {
|
|
39
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
38
42
|
fillHeight: {
|
|
39
43
|
type: (BooleanConstructor | StringConstructor)[];
|
|
40
44
|
default: boolean;
|
|
@@ -176,6 +180,10 @@ declare const tabsComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
176
180
|
max: {
|
|
177
181
|
type: (NumberConstructor | StringConstructor)[];
|
|
178
182
|
};
|
|
183
|
+
sortable: {
|
|
184
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
185
|
+
default: boolean;
|
|
186
|
+
};
|
|
179
187
|
fillHeight: {
|
|
180
188
|
type: (BooleanConstructor | StringConstructor)[];
|
|
181
189
|
default: boolean;
|
|
@@ -941,6 +949,9 @@ declare const tabsComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
941
949
|
mouseover: (event?: Event, element?: any) => void;
|
|
942
950
|
};
|
|
943
951
|
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
|
|
952
|
+
dragOverIndex: import("vue").Ref<number, number>;
|
|
953
|
+
density: import("vue").ComputedRef<"default" | "compact">;
|
|
954
|
+
activeTabName: import("vue").WritableComputedRef<string | undefined, string | undefined>;
|
|
944
955
|
click: (event: Event) => void;
|
|
945
956
|
focus: (event: Event) => void;
|
|
946
957
|
blur: (event: Event) => void;
|
|
@@ -949,7 +960,10 @@ declare const tabsComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
949
960
|
clickTab: (event: Event, index: number) => void;
|
|
950
961
|
keydown: (event: Event, index: number) => void;
|
|
951
962
|
change: () => void;
|
|
952
|
-
|
|
963
|
+
handleDragOver: (event: DragEvent) => void;
|
|
964
|
+
handleDrop: (event: DragEvent) => void;
|
|
965
|
+
handleDragEnter: (event: DragEvent) => void;
|
|
966
|
+
handleDragLeave: (event: DragEvent) => void;
|
|
953
967
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
954
968
|
activeTab: {
|
|
955
969
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -987,6 +1001,10 @@ declare const tabsComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
987
1001
|
max: {
|
|
988
1002
|
type: (NumberConstructor | StringConstructor)[];
|
|
989
1003
|
};
|
|
1004
|
+
sortable: {
|
|
1005
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
1006
|
+
default: boolean;
|
|
1007
|
+
};
|
|
990
1008
|
fillHeight: {
|
|
991
1009
|
type: (BooleanConstructor | StringConstructor)[];
|
|
992
1010
|
default: boolean;
|
|
@@ -1106,6 +1124,7 @@ declare const tabsComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1106
1124
|
density: string;
|
|
1107
1125
|
minHeight: string | number;
|
|
1108
1126
|
maxHeight: string | number;
|
|
1127
|
+
sortable: string | boolean;
|
|
1109
1128
|
direction: string;
|
|
1110
1129
|
activeTab: string | number;
|
|
1111
1130
|
tabs: unknown[];
|