@farris/ui-vue 1.0.0-beta.2 → 1.0.0-beta.4
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/accordion/index.esm.js +93 -0
- package/accordion/index.umd.js +1 -0
- package/accordion/package.json +8 -0
- package/accordion/style.css +1 -0
- package/avatar/index.esm.js +94 -0
- package/avatar/index.umd.js +1 -0
- package/avatar/package.json +8 -0
- package/avatar/style.css +1 -0
- package/button/index.esm.js +206 -0
- package/button/index.umd.js +1 -0
- package/button/package.json +8 -0
- package/button-edit/index.esm.js +300 -0
- package/button-edit/index.umd.js +1 -0
- package/button-edit/package.json +8 -0
- package/checkbox/index.esm.js +97 -0
- package/checkbox/index.umd.js +1 -0
- package/checkbox/package.json +8 -0
- package/combo-list/index.esm.js +457 -0
- package/combo-list/index.umd.js +1 -0
- package/combo-list/package.json +8 -0
- package/data-grid/index.esm.js +1535 -0
- package/data-grid/index.umd.js +1 -0
- package/data-grid/package.json +8 -0
- package/data-grid/style.css +1 -0
- package/date-picker/index.esm.js +1479 -0
- package/date-picker/index.umd.js +1 -0
- package/date-picker/package.json +8 -0
- package/date-picker/style.css +1 -0
- package/{src/index.esm.js → farris.all.esm.js} +1 -2
- package/farris.all.umd.js +1 -0
- package/list-view/index.esm.js +144 -0
- package/list-view/index.umd.js +1 -0
- package/list-view/package.json +8 -0
- package/list-view/style.css +1 -0
- package/message-box/index.esm.js +499 -0
- package/message-box/index.umd.js +1 -0
- package/message-box/package.json +8 -0
- package/modal/index.esm.js +165 -0
- package/modal/index.umd.js +1 -0
- package/modal/package.json +8 -0
- package/notify/index.esm.js +187 -0
- package/notify/index.umd.js +1 -0
- package/notify/package.json +8 -0
- package/notify/style.css +1 -0
- package/package.json +6 -5
- package/pagination/index.esm.js +334 -0
- package/pagination/index.umd.js +1 -0
- package/pagination/package.json +8 -0
- package/pagination/style.css +1 -0
- package/popover/index.esm.js +83 -0
- package/popover/index.umd.js +1 -0
- package/popover/package.json +8 -0
- package/popover/style.css +1 -0
- package/radio-group/index.esm.js +79 -0
- package/radio-group/index.umd.js +1 -0
- package/radio-group/package.json +8 -0
- package/section/index.esm.js +70 -0
- package/section/index.umd.js +1 -0
- package/section/package.json +8 -0
- package/switch/index.esm.js +78 -0
- package/switch/index.umd.js +1 -0
- package/switch/package.json +8 -0
- package/tabs/index.esm.js +385 -0
- package/tabs/index.umd.js +1 -0
- package/tabs/package.json +8 -0
- package/tabs/style.css +1 -0
- package/text/index.esm.js +33 -0
- package/text/index.umd.js +1 -0
- package/text/package.json +8 -0
- package/tooltip/index.esm.js +195 -0
- package/tooltip/index.umd.js +1 -0
- package/tooltip/package.json +8 -0
- package/tooltip/style.css +1 -0
- package/types/accordion/index.d.ts +25 -0
- package/types/accordion/src/accordion.component.d.ts +70 -0
- package/types/accordion/src/accordion.props.d.ts +50 -0
- package/types/accordion/src/components/accordion-item.component.d.ts +38 -0
- package/types/accordion/src/components/accordion-item.props.d.ts +34 -0
- package/types/avatar/index.d.ts +23 -0
- package/types/avatar/src/avatar.component.d.ts +109 -0
- package/types/avatar/src/avatar.props.d.ts +96 -0
- package/types/avatar/src/composition/types.d.ts +31 -0
- package/types/avatar/src/composition/use-image.d.ts +19 -0
- package/types/button/index.d.ts +24 -0
- package/types/button/src/button-group.component.d.ts +106 -0
- package/types/button/src/button-group.props.d.ts +106 -0
- package/types/button/src/button.component.d.ts +34 -0
- package/types/button/src/button.props.d.ts +47 -0
- package/types/button/src/composition/types-group.d.ts +24 -0
- package/types/button/src/composition/types.d.ts +24 -0
- package/types/button/src/composition/use-button-group.d.ts +19 -0
- package/types/button/src/composition/use-button.d.ts +19 -0
- package/types/button-edit/index.d.ts +23 -0
- package/types/button-edit/src/button-edit.props.d.ts +135 -0
- package/types/button-edit/src/composition/types.d.ts +118 -0
- package/types/button-edit/src/composition/use-button.d.ts +19 -0
- package/types/button-edit/src/composition/use-clear.d.ts +19 -0
- package/types/button-edit/src/composition/use-text-box.d.ts +19 -0
- package/types/checkbox/index.d.ts +23 -0
- package/types/checkbox/src/checkbox-group.component.d.ts +148 -0
- package/types/checkbox/src/checkbox-group.props.d.ts +123 -0
- package/types/checkbox/src/composition/types.d.ts +46 -0
- package/types/checkbox/src/composition/use-checkbox-group.d.ts +19 -0
- package/types/combo-list/index.d.ts +25 -0
- package/types/combo-list/src/combo-list.props.d.ts +290 -0
- package/types/combo-list/src/components/option.component.d.ts +39 -0
- package/types/combo-list/src/components/options.component.d.ts +10 -0
- package/types/combo-list/src/composition/index.d.ts +18 -0
- package/types/combo-list/src/composition/use-combo-list.d.ts +30 -0
- package/types/combo-list/src/composition/use-option.d.ts +19 -0
- package/types/combo-list/src/composition/use-options.d.ts +2 -0
- package/types/combo-list/src/composition/use-panel.d.ts +8 -0
- package/types/combo-list/src/const.d.ts +40 -0
- package/types/combo-list/src/types.d.ts +186 -0
- package/types/data-grid/index.d.ts +23 -0
- package/types/data-grid/src/components/data/data-area.component.d.ts +21 -0
- package/types/data-grid/src/components/editors/date-picker.component.d.ts +2 -0
- package/types/data-grid/src/components/editors/text-area-editor.component.d.ts +2 -0
- package/types/data-grid/src/components/editors/text-editor.component.d.ts +17 -0
- package/types/data-grid/src/components/header/data-grid-header.component.d.ts +22 -0
- package/types/data-grid/src/components/pagination/data-grid-pagination.component.d.ts +5 -0
- package/types/data-grid/src/components/scrollbar/horizontal-scrollbar.component.d.ts +21 -0
- package/types/data-grid/src/components/scrollbar/vertical-scrollbar.component.d.ts +21 -0
- package/types/data-grid/src/components/sidebar/data-grid-sidebar.component.d.ts +21 -0
- package/types/data-grid/src/components/summary/data-grid-summary.component.d.ts +5 -0
- package/types/data-grid/src/composition/types.d.ts +175 -0
- package/types/data-grid/src/composition/use-column.d.ts +17 -0
- package/types/data-grid/src/composition/use-data-view.d.ts +19 -0
- package/types/data-grid/src/composition/use-edit.d.ts +18 -0
- package/types/data-grid/src/composition/use-fit-column.d.ts +20 -0
- package/types/data-grid/src/composition/use-group-column.d.ts +22 -0
- package/types/data-grid/src/composition/use-group-data.d.ts +3 -0
- package/types/data-grid/src/composition/use-positon-style.d.ts +20 -0
- package/types/data-grid/src/composition/use-resize.d.ts +20 -0
- package/types/data-grid/src/composition/use-row.d.ts +3 -0
- package/types/data-grid/src/composition/use-sidebar.d.ts +3 -0
- package/types/data-grid/src/composition/use-virtual-scroll.d.ts +20 -0
- package/types/data-grid/src/composition/use-visual-data.d.ts +19 -0
- package/types/data-grid/src/data-grid.component.d.ts +278 -0
- package/types/data-grid/src/data-grid.props.d.ts +650 -0
- package/types/date-picker/index.d.ts +28 -0
- package/types/date-picker/src/components/calendar/calendar.component.d.ts +166 -0
- package/types/date-picker/src/components/calendar/calendar.props.d.ts +94 -0
- package/types/date-picker/src/components/calendar-navbar/calendar-navbar.component.d.ts +138 -0
- package/types/date-picker/src/components/calendar-navbar/calendar-navbar.props.d.ts +81 -0
- package/types/date-picker/src/components/date-picker-container/date-picker-container.component.d.ts +626 -0
- package/types/date-picker/src/components/date-picker-container/date-picker-container.props.d.ts +306 -0
- package/types/date-picker/src/components/month/month.component.d.ts +86 -0
- package/types/date-picker/src/components/month/month.props.d.ts +57 -0
- package/types/date-picker/src/components/year/year.component.d.ts +86 -0
- package/types/date-picker/src/components/year/year.props.d.ts +57 -0
- package/types/date-picker/src/composition/types.d.ts +102 -0
- package/types/date-picker/src/composition/use-calendar.d.ts +2 -0
- package/types/date-picker/src/composition/use-compare.d.ts +2 -0
- package/types/date-picker/src/composition/use-date.d.ts +2 -0
- package/types/date-picker/src/composition/use-disable-date.d.ts +18 -0
- package/types/date-picker/src/composition/use-disable-month.d.ts +2 -0
- package/types/date-picker/src/composition/use-event.d.ts +45 -0
- package/types/date-picker/src/composition/use-mark.d.ts +2 -0
- package/types/date-picker/src/composition/use-month.d.ts +2 -0
- package/types/date-picker/src/composition/use-number.d.ts +2 -0
- package/types/date-picker/src/composition/use-year.d.ts +2 -0
- package/types/date-picker/src/date-picker.props.d.ts +168 -0
- package/types/date-picker/src/types/calendar.d.ts +30 -0
- package/types/date-picker/src/types/common.d.ts +42 -0
- package/types/date-picker/src/types/date-model.d.ts +38 -0
- package/types/date-picker/src/types/month.d.ts +48 -0
- package/types/date-picker/src/types/year.d.ts +24 -0
- package/types/index.d.ts +20 -0
- package/types/list-view/index.d.ts +23 -0
- package/types/list-view/src/components/list-view-checkbox.component.d.ts +32 -0
- package/types/list-view/src/components/list-view-checkbox.props.d.ts +31 -0
- package/types/list-view/src/list-view.props.d.ts +44 -0
- package/types/message-box/index.d.ts +24 -0
- package/types/message-box/src/composition/types.d.ts +18 -0
- package/types/message-box/src/composition/use-copy.d.ts +18 -0
- package/types/message-box/src/message-box.component.d.ts +72 -0
- package/types/message-box/src/message-box.props.d.ts +52 -0
- package/types/modal/index.d.ts +23 -0
- package/types/modal/src/modal.component.d.ts +104 -0
- package/types/modal/src/modal.props.d.ts +72 -0
- package/types/notify/index.d.ts +26 -0
- package/types/notify/src/components/toast.component.d.ts +21 -0
- package/types/notify/src/components/toast.props.d.ts +27 -0
- package/types/notify/src/notify.props.d.ts +99 -0
- package/types/number-range/index.d.ts +23 -0
- package/types/number-range/src/composition/types.d.ts +52 -0
- package/types/number-range/src/composition/use-data.d.ts +19 -0
- package/types/number-range/src/composition/use-util.d.ts +19 -0
- package/types/number-range/src/number-range.component.d.ts +247 -0
- package/types/number-range/src/number-range.props.d.ts +216 -0
- package/types/number-spinner/index.d.ts +23 -0
- package/types/number-spinner/src/composition/types.d.ts +52 -0
- package/types/number-spinner/src/composition/use-data.d.ts +19 -0
- package/types/number-spinner/src/composition/use-util.d.ts +19 -0
- package/types/number-spinner/src/number-spinner.component.d.ts +202 -0
- package/types/number-spinner/src/number-spinner.props.d.ts +181 -0
- package/types/overlay/src/overlay.component.d.ts +20 -0
- package/types/overlay/src/overlay.props.d.ts +26 -0
- package/types/pagination/index.d.ts +23 -0
- package/types/pagination/src/components/buttons/goto-buttons.component.d.ts +19 -0
- package/types/pagination/src/components/buttons/next-buttons.component.d.ts +20 -0
- package/types/pagination/src/components/buttons/previous-buttons.component.d.ts +20 -0
- package/types/pagination/src/components/pages/page-info.component.d.ts +19 -0
- package/types/pagination/src/components/pages/page-list.component.d.ts +19 -0
- package/types/pagination/src/components/pages/page-number.component.d.ts +20 -0
- package/types/pagination/src/composition/types.d.ts +24 -0
- package/types/pagination/src/composition/use-pages.d.ts +18 -0
- package/types/pagination/src/pagination.components.d.ts +41 -0
- package/types/pagination/src/pagination.props.d.ts +36 -0
- package/types/popover/index.d.ts +24 -0
- package/types/popover/src/popover.component.d.ts +26 -0
- package/types/popover/src/popover.directive.d.ts +5 -0
- package/types/popover/src/popover.props.d.ts +30 -0
- package/types/radio-group/index.d.ts +23 -0
- package/types/radio-group/src/composition/change-radio.d.ts +19 -0
- package/types/radio-group/src/composition/types.d.ts +42 -0
- package/types/radio-group/src/radio-group.component.d.ts +91 -0
- package/types/radio-group/src/radio-group.props.d.ts +87 -0
- package/types/section/index.d.ts +23 -0
- package/types/section/src/section.component.d.ts +187 -0
- package/types/section/src/section.props.d.ts +117 -0
- package/types/switch/index.d.ts +23 -0
- package/types/switch/src/switch.component.d.ts +66 -0
- package/types/switch/src/switch.props.d.ts +52 -0
- package/types/tabs/index.d.ts +25 -0
- package/types/tabs/src/components/tab-page.component.d.ts +101 -0
- package/types/tabs/src/components/tab-page.props.d.ts +63 -0
- package/types/tabs/src/composition/types.d.ts +35 -0
- package/types/tabs/src/composition/use-tabs.d.ts +18 -0
- package/types/tabs/src/tabs.component.d.ts +149 -0
- package/types/tabs/src/tabs.props.d.ts +86 -0
- package/types/text/index.d.ts +23 -0
- package/types/text/src/text.component.d.ts +14 -0
- package/types/text/src/text.props.d.ts +26 -0
- package/types/tooltip/index.d.ts +24 -0
- package/types/tooltip/src/composition/types.d.ts +45 -0
- package/types/tooltip/src/composition/use-adjust-placement.d.ts +20 -0
- package/types/tooltip/src/composition/use-adjust-position.d.ts +6 -0
- package/types/tooltip/src/composition/use-calculate-position.d.ts +21 -0
- package/types/tooltip/src/composition/use-relative.d.ts +19 -0
- package/types/tooltip/src/composition/use-tooltip-position.d.ts +22 -0
- package/types/tooltip/src/tooltip.component.d.ts +56 -0
- package/types/tooltip/src/tooltip.props.d.ts +45 -0
- package/src/index.umd.js +0 -1
- /package/{src/style.css → style.css} +0 -0
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
|
17
|
+
import { Options, Placement, Remote, ViewType } from './types';
|
|
18
|
+
/**
|
|
19
|
+
* 下拉列表属性
|
|
20
|
+
*/
|
|
21
|
+
export declare const comboListProps: {
|
|
22
|
+
/**
|
|
23
|
+
* 组件标识
|
|
24
|
+
*/
|
|
25
|
+
id: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* 可选,是否可编辑
|
|
30
|
+
* 默认`false`
|
|
31
|
+
*/
|
|
32
|
+
editable: {
|
|
33
|
+
default: boolean;
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* 可选,是否禁用
|
|
38
|
+
* 默认为`false`
|
|
39
|
+
*/
|
|
40
|
+
disabled: {
|
|
41
|
+
default: boolean;
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* 可选,是否只读
|
|
46
|
+
* 默认为`false`
|
|
47
|
+
*/
|
|
48
|
+
readonly: {
|
|
49
|
+
default: boolean;
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* 最大输入长度
|
|
54
|
+
*/
|
|
55
|
+
maxLength: {
|
|
56
|
+
type: NumberConstructor;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* 占位符
|
|
60
|
+
*/
|
|
61
|
+
placeholder: {
|
|
62
|
+
type: StringConstructor;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* 可选,强制显示占位符
|
|
66
|
+
* 默认`false`
|
|
67
|
+
*/
|
|
68
|
+
forcePlaceholder: {
|
|
69
|
+
default: boolean;
|
|
70
|
+
type: BooleanConstructor;
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* 可选,是否启用清空
|
|
74
|
+
* 默认启用
|
|
75
|
+
*/
|
|
76
|
+
enableClear: {
|
|
77
|
+
default: boolean;
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* 可选,鼠标悬停时是否显示控件值
|
|
82
|
+
* 默认显示
|
|
83
|
+
*/
|
|
84
|
+
enableTitle: {
|
|
85
|
+
default: boolean;
|
|
86
|
+
type: BooleanConstructor;
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* 可选,下拉列表值展示方式
|
|
90
|
+
* 支持text | tag,即文本或标签,默认为`ViewType.Text`,即文本方式`text`
|
|
91
|
+
*/
|
|
92
|
+
viewType: {
|
|
93
|
+
default: ViewType;
|
|
94
|
+
type: PropType<ViewType>;
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* 可选,字段映射
|
|
98
|
+
*/
|
|
99
|
+
mapFields: {
|
|
100
|
+
type: ObjectConstructor;
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* 下拉数据源
|
|
104
|
+
*/
|
|
105
|
+
data: {
|
|
106
|
+
type: PropType<Options>;
|
|
107
|
+
};
|
|
108
|
+
/**
|
|
109
|
+
* 可选,数据源id字段
|
|
110
|
+
* 默认为`id`
|
|
111
|
+
*/
|
|
112
|
+
idField: {
|
|
113
|
+
default: string;
|
|
114
|
+
type: StringConstructor;
|
|
115
|
+
};
|
|
116
|
+
/**
|
|
117
|
+
* 可选,数据源值字段
|
|
118
|
+
* 默认为`id`
|
|
119
|
+
*/
|
|
120
|
+
valueField: {
|
|
121
|
+
default: string;
|
|
122
|
+
type: StringConstructor;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* 可选,数据源显示字段
|
|
126
|
+
* 默认为`label`
|
|
127
|
+
*/
|
|
128
|
+
textField: {
|
|
129
|
+
default: string;
|
|
130
|
+
type: StringConstructor;
|
|
131
|
+
};
|
|
132
|
+
/**
|
|
133
|
+
* 可选,是否支持多选
|
|
134
|
+
* 默认`false`
|
|
135
|
+
*/
|
|
136
|
+
multiSelect: {
|
|
137
|
+
default: boolean;
|
|
138
|
+
type: BooleanConstructor;
|
|
139
|
+
};
|
|
140
|
+
/**
|
|
141
|
+
* 远端数据源信息
|
|
142
|
+
*/
|
|
143
|
+
remote: {
|
|
144
|
+
default: null;
|
|
145
|
+
type: PropType<Remote>;
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* 可选,最大高度
|
|
149
|
+
* 默认`350`
|
|
150
|
+
*/
|
|
151
|
+
maxHeight: {
|
|
152
|
+
default: number;
|
|
153
|
+
type: NumberConstructor;
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* 可选,是否支持远端过滤
|
|
157
|
+
* 默认`false`
|
|
158
|
+
*/
|
|
159
|
+
remoteSearch: {
|
|
160
|
+
default: boolean;
|
|
161
|
+
type: BooleanConstructor;
|
|
162
|
+
};
|
|
163
|
+
/**
|
|
164
|
+
* 可选,清空值时隐藏面板
|
|
165
|
+
* 默认`true`
|
|
166
|
+
*/
|
|
167
|
+
hidePanelOnClear: {
|
|
168
|
+
default: boolean;
|
|
169
|
+
type: BooleanConstructor;
|
|
170
|
+
};
|
|
171
|
+
/**
|
|
172
|
+
* 可选,分隔符
|
|
173
|
+
* 默认`,`
|
|
174
|
+
*/
|
|
175
|
+
separator: {
|
|
176
|
+
default: string;
|
|
177
|
+
type: StringConstructor;
|
|
178
|
+
};
|
|
179
|
+
/**
|
|
180
|
+
* 可选,展示文本
|
|
181
|
+
* 默认为空字符串
|
|
182
|
+
*/
|
|
183
|
+
displayText: {
|
|
184
|
+
type: StringConstructor;
|
|
185
|
+
default: string;
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* 绑定值
|
|
189
|
+
*/
|
|
190
|
+
modelValue: {
|
|
191
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
192
|
+
};
|
|
193
|
+
/**
|
|
194
|
+
* 可选,下拉图标
|
|
195
|
+
* 默认为'<span class="f-icon f-icon-arrow-60-down"></span>'
|
|
196
|
+
*/
|
|
197
|
+
dropDownIcon: {
|
|
198
|
+
type: StringConstructor;
|
|
199
|
+
default: string;
|
|
200
|
+
};
|
|
201
|
+
/**
|
|
202
|
+
* tabIndex
|
|
203
|
+
*/
|
|
204
|
+
tabIndex: {
|
|
205
|
+
type: NumberConstructor;
|
|
206
|
+
default: number;
|
|
207
|
+
};
|
|
208
|
+
/**
|
|
209
|
+
* 可选,启用搜索
|
|
210
|
+
* 默认为`false`
|
|
211
|
+
*/
|
|
212
|
+
enableSearch: {
|
|
213
|
+
type: BooleanConstructor;
|
|
214
|
+
default: boolean;
|
|
215
|
+
};
|
|
216
|
+
/**
|
|
217
|
+
* 可选,下拉面板展示位置
|
|
218
|
+
* 默认为`auto`
|
|
219
|
+
*/
|
|
220
|
+
placement: {
|
|
221
|
+
type: PropType<Placement>;
|
|
222
|
+
default: Placement;
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
export type ComboListProps = ExtractPropTypes<typeof comboListProps>;
|
|
226
|
+
/**
|
|
227
|
+
* option 属性
|
|
228
|
+
*/
|
|
229
|
+
export declare const optionProps: {
|
|
230
|
+
/**
|
|
231
|
+
* 必须,值
|
|
232
|
+
*/
|
|
233
|
+
value: {
|
|
234
|
+
required: boolean;
|
|
235
|
+
type: PropType<string | number>;
|
|
236
|
+
};
|
|
237
|
+
/**
|
|
238
|
+
* 必须,名称
|
|
239
|
+
*/
|
|
240
|
+
name: {
|
|
241
|
+
required: boolean;
|
|
242
|
+
type: PropType<string | number>;
|
|
243
|
+
};
|
|
244
|
+
/**
|
|
245
|
+
* 可选,是否禁用
|
|
246
|
+
* 默认`false`
|
|
247
|
+
*/
|
|
248
|
+
disabled: {
|
|
249
|
+
default: boolean;
|
|
250
|
+
type: BooleanConstructor;
|
|
251
|
+
};
|
|
252
|
+
/**
|
|
253
|
+
* 是否已经勾选
|
|
254
|
+
*/
|
|
255
|
+
checked: {
|
|
256
|
+
default: boolean;
|
|
257
|
+
type: BooleanConstructor;
|
|
258
|
+
};
|
|
259
|
+
};
|
|
260
|
+
export type OptionProps = ExtractPropTypes<typeof optionProps>;
|
|
261
|
+
/**
|
|
262
|
+
* panel 属性
|
|
263
|
+
*/
|
|
264
|
+
export declare const panelProps: {
|
|
265
|
+
/**
|
|
266
|
+
* 下拉面板是否可见
|
|
267
|
+
*/
|
|
268
|
+
isPanelVisible: {
|
|
269
|
+
type: BooleanConstructor;
|
|
270
|
+
default: boolean;
|
|
271
|
+
};
|
|
272
|
+
/**
|
|
273
|
+
* 可选,下拉列表展示位置
|
|
274
|
+
* 默认为`bottom`
|
|
275
|
+
*/
|
|
276
|
+
position: {
|
|
277
|
+
type: PropType<Placement>;
|
|
278
|
+
default: Placement;
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
export type PanelProps = ExtractPropTypes<typeof panelProps>;
|
|
282
|
+
/**
|
|
283
|
+
* options 属性
|
|
284
|
+
*/
|
|
285
|
+
export declare const optionsProps: {
|
|
286
|
+
options: {
|
|
287
|
+
type: PropType<Options>;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
export type OptionsProps = ExtractPropTypes<typeof optionsProps>;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
value: {
|
|
3
|
+
required: boolean;
|
|
4
|
+
type: import("vue").PropType<string | number>;
|
|
5
|
+
};
|
|
6
|
+
name: {
|
|
7
|
+
required: boolean;
|
|
8
|
+
type: import("vue").PropType<string | number>;
|
|
9
|
+
};
|
|
10
|
+
disabled: {
|
|
11
|
+
default: boolean;
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
};
|
|
14
|
+
checked: {
|
|
15
|
+
default: boolean;
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
};
|
|
18
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, never, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
value: {
|
|
20
|
+
required: boolean;
|
|
21
|
+
type: import("vue").PropType<string | number>;
|
|
22
|
+
};
|
|
23
|
+
name: {
|
|
24
|
+
required: boolean;
|
|
25
|
+
type: import("vue").PropType<string | number>;
|
|
26
|
+
};
|
|
27
|
+
disabled: {
|
|
28
|
+
default: boolean;
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
};
|
|
31
|
+
checked: {
|
|
32
|
+
default: boolean;
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
};
|
|
35
|
+
}>>, {
|
|
36
|
+
disabled: boolean;
|
|
37
|
+
checked: boolean;
|
|
38
|
+
}>;
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
options: {
|
|
3
|
+
type: import("vue").PropType<import("../types").Options>;
|
|
4
|
+
};
|
|
5
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, never, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
options: {
|
|
7
|
+
type: import("vue").PropType<import("../types").Options>;
|
|
8
|
+
};
|
|
9
|
+
}>>, {}>;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export * from './use-option';
|
|
17
|
+
export * from './use-combo-list';
|
|
18
|
+
export * from './use-panel';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SetupContext } from 'vue';
|
|
17
|
+
import { ComboListProps } from '../combo-list.props';
|
|
18
|
+
import { Option, UseComboListEventOptions, UseComboListEvent } from '../types';
|
|
19
|
+
export declare function useComboList(props: ComboListProps, context: SetupContext): {
|
|
20
|
+
displayText: import("vue").Ref<string | undefined>;
|
|
21
|
+
modelValue: import("vue").Ref<string | number | undefined>;
|
|
22
|
+
isPanelVisible: import("vue").Ref<boolean>;
|
|
23
|
+
dataSource: import("vue").Ref<any>;
|
|
24
|
+
onValueChange: (item: Option) => void;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* 下拉列表事件处理钩子
|
|
28
|
+
* @param options 上下文
|
|
29
|
+
*/
|
|
30
|
+
export declare function useComboListEvent(options: UseComboListEventOptions): UseComboListEvent;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SetupContext } from 'vue';
|
|
17
|
+
import { UseOption } from '../types';
|
|
18
|
+
import { OptionProps } from '../combo-list.props';
|
|
19
|
+
export declare function useOption(props: OptionProps, context: SetupContext): UseOption;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { UsePanelEventOptions, UsePanelEvent, UsePanelOptions, UsePanel } from '../types';
|
|
2
|
+
export declare function usePanel(options: UsePanelOptions): UsePanel;
|
|
3
|
+
/**
|
|
4
|
+
* 下拉列表事件处理钩子
|
|
5
|
+
* @param options 上下文
|
|
6
|
+
*/
|
|
7
|
+
export declare function usePanelEvent(options: UsePanelEventOptions): UsePanelEvent;
|
|
8
|
+
export declare function debounce(task: (...args: any) => any, timeout?: number): (...args: any) => void;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { InjectionKey } from 'vue';
|
|
17
|
+
import { ComboListContext, ComboListPanelContext } from './types';
|
|
18
|
+
export declare const groupIcon = "<span class=\"f-icon f-icon-arrow-60-down\"></span>";
|
|
19
|
+
/**
|
|
20
|
+
* combo list injector token
|
|
21
|
+
*/
|
|
22
|
+
export declare const COMBO_LIST_TOKEN: InjectionKey<Readonly<ComboListContext>>;
|
|
23
|
+
/**
|
|
24
|
+
* combo-list panel injector token
|
|
25
|
+
*/
|
|
26
|
+
export declare const COMBO_LIST_PANEL_TOKEN: InjectionKey<Readonly<ComboListPanelContext>>;
|
|
27
|
+
/**
|
|
28
|
+
* combo-list component events
|
|
29
|
+
*/
|
|
30
|
+
export declare const enum EVENTS {
|
|
31
|
+
clear = "clear",
|
|
32
|
+
update = "update:modelValue"
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* panel component events
|
|
36
|
+
*/
|
|
37
|
+
export declare const enum PANEL_EVENTS {
|
|
38
|
+
panelShow = "panelShow",
|
|
39
|
+
panelHidden = "panelHidden"
|
|
40
|
+
}
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { ComputedRef, Ref, SetupContext, Slot } from 'vue';
|
|
17
|
+
import { ComboListProps, PanelProps } from './combo-list.props';
|
|
18
|
+
export type ModelValue = number | string | undefined | Array<number | string | undefined>;
|
|
19
|
+
/**
|
|
20
|
+
* 数据展现方式
|
|
21
|
+
*/
|
|
22
|
+
export declare enum ViewType {
|
|
23
|
+
Text = "text",
|
|
24
|
+
Tag = "tag"
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* 展示位置
|
|
28
|
+
*/
|
|
29
|
+
export declare const enum Placement {
|
|
30
|
+
/**
|
|
31
|
+
* 在控件的上方展示
|
|
32
|
+
*/
|
|
33
|
+
top = "top",
|
|
34
|
+
/**
|
|
35
|
+
* 在控件底部展示
|
|
36
|
+
*/
|
|
37
|
+
bottom = "bottom",
|
|
38
|
+
/**
|
|
39
|
+
* 根据控件的位置自动确认展示位置
|
|
40
|
+
*/
|
|
41
|
+
auto = "auto"
|
|
42
|
+
}
|
|
43
|
+
export interface UseOption {
|
|
44
|
+
name: ComputedRef<string | number | undefined>;
|
|
45
|
+
/**
|
|
46
|
+
* 下拉列表行样式
|
|
47
|
+
*/
|
|
48
|
+
rowStyle: ComputedRef<any>;
|
|
49
|
+
onOptionClick: ($event: Event) => void;
|
|
50
|
+
optionClass: ComputedRef<object>;
|
|
51
|
+
multiSelect: ComputedRef<boolean>;
|
|
52
|
+
isChecked: ComputedRef<boolean>;
|
|
53
|
+
defaultOptionSlot: any;
|
|
54
|
+
}
|
|
55
|
+
export interface Option {
|
|
56
|
+
disabled: boolean;
|
|
57
|
+
[prop: string]: any;
|
|
58
|
+
}
|
|
59
|
+
export type Options = Array<Option>;
|
|
60
|
+
export interface ComboListContext {
|
|
61
|
+
readonly isPanelVisible: boolean;
|
|
62
|
+
readonly comboListProps: ComboListProps;
|
|
63
|
+
readonly comboListRef: Ref<any>;
|
|
64
|
+
readonly modelValue: string | number | undefined;
|
|
65
|
+
dataSource: Ref<Options>;
|
|
66
|
+
readonly defaultOptionSlot: Slot | undefined;
|
|
67
|
+
readonly [prop: string]: any;
|
|
68
|
+
}
|
|
69
|
+
export interface ComboListPanelContext {
|
|
70
|
+
readonly onPanelItemClick: (event: any) => void;
|
|
71
|
+
readonly data: Options;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* combo-list事件钩子参数约定
|
|
75
|
+
*/
|
|
76
|
+
export interface UseComboListEventOptions {
|
|
77
|
+
/**
|
|
78
|
+
* is combo-list panel visible(opend)
|
|
79
|
+
*/
|
|
80
|
+
isPanelVisible: Ref<boolean | unknown>;
|
|
81
|
+
/**
|
|
82
|
+
* combo-list props
|
|
83
|
+
*/
|
|
84
|
+
props: ComboListProps;
|
|
85
|
+
/**
|
|
86
|
+
* setup context
|
|
87
|
+
*/
|
|
88
|
+
context: SetupContext;
|
|
89
|
+
/**
|
|
90
|
+
* modelvalue
|
|
91
|
+
*/
|
|
92
|
+
modelValue: Ref<string | number | undefined>;
|
|
93
|
+
}
|
|
94
|
+
export interface UseComboListEvent {
|
|
95
|
+
/**
|
|
96
|
+
* clear event handler
|
|
97
|
+
*/
|
|
98
|
+
onClear: ($event: Event) => void;
|
|
99
|
+
/**
|
|
100
|
+
* button click event handler
|
|
101
|
+
*/
|
|
102
|
+
onButtonClick: ($event: any) => void;
|
|
103
|
+
/**
|
|
104
|
+
* button click event handler
|
|
105
|
+
*/
|
|
106
|
+
onPanelHidden: ($event: any) => void;
|
|
107
|
+
/**
|
|
108
|
+
* text box click event handler
|
|
109
|
+
* @param $event
|
|
110
|
+
* @returns
|
|
111
|
+
*/
|
|
112
|
+
onClick: ($event: any) => void;
|
|
113
|
+
}
|
|
114
|
+
export interface UsePanelOptions {
|
|
115
|
+
panelRef: Ref<any>;
|
|
116
|
+
/**
|
|
117
|
+
* combo-list props
|
|
118
|
+
*/
|
|
119
|
+
props: PanelProps;
|
|
120
|
+
/**
|
|
121
|
+
* is combo-list panel visible(opend)
|
|
122
|
+
*/
|
|
123
|
+
isPanelVisible: Ref<boolean>;
|
|
124
|
+
/**
|
|
125
|
+
* setup context
|
|
126
|
+
*/
|
|
127
|
+
context: SetupContext;
|
|
128
|
+
}
|
|
129
|
+
export interface UsePanel {
|
|
130
|
+
/**
|
|
131
|
+
* panel class
|
|
132
|
+
*/
|
|
133
|
+
panelClass: ComputedRef<object>;
|
|
134
|
+
/**
|
|
135
|
+
* panel styles
|
|
136
|
+
*/
|
|
137
|
+
panelStyle: ComputedRef<any>;
|
|
138
|
+
/**
|
|
139
|
+
* panel card styles
|
|
140
|
+
*/
|
|
141
|
+
cardStyle: ComputedRef<any>;
|
|
142
|
+
enableSearch: ComputedRef<boolean>;
|
|
143
|
+
keyword: Ref<string>;
|
|
144
|
+
items: Ref<any>;
|
|
145
|
+
}
|
|
146
|
+
export interface UsePanelEventOptions {
|
|
147
|
+
/**
|
|
148
|
+
* is combo-list panel visible(opend)
|
|
149
|
+
*/
|
|
150
|
+
isPanelVisible: Ref<boolean>;
|
|
151
|
+
panelRef: Ref<any>;
|
|
152
|
+
/**
|
|
153
|
+
* setup context
|
|
154
|
+
*/
|
|
155
|
+
context: SetupContext;
|
|
156
|
+
}
|
|
157
|
+
export interface UsePanelEvent {
|
|
158
|
+
onPanelContainerClick: ($event: any) => void;
|
|
159
|
+
onPanelItemClick: ($event: any) => void;
|
|
160
|
+
onSearchClick: ($event: any) => void;
|
|
161
|
+
onPanelClick: ($event: any) => void;
|
|
162
|
+
}
|
|
163
|
+
export interface UseOptions {
|
|
164
|
+
idField: string | undefined;
|
|
165
|
+
valueField: string | undefined;
|
|
166
|
+
textField: string | undefined;
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* position
|
|
170
|
+
*/
|
|
171
|
+
export interface Position {
|
|
172
|
+
top: number;
|
|
173
|
+
left: number;
|
|
174
|
+
width: number;
|
|
175
|
+
height: number;
|
|
176
|
+
bottom: number;
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* remote info
|
|
180
|
+
*/
|
|
181
|
+
export interface Remote {
|
|
182
|
+
url: string;
|
|
183
|
+
method?: 'GET' | 'POST' | 'PUT';
|
|
184
|
+
headers?: any;
|
|
185
|
+
body?: any;
|
|
186
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { App } from 'vue';
|
|
17
|
+
import FDataGrid from './src/data-grid.component';
|
|
18
|
+
export * from './src/data-grid.props';
|
|
19
|
+
export { FDataGrid };
|
|
20
|
+
declare const _default: {
|
|
21
|
+
install(app: App): void;
|
|
22
|
+
};
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { Ref } from 'vue';
|
|
17
|
+
import { UseCellPosition, UseColumn, UseEdit, UseGroupData, UseRow, UseVirtualScroll, UseVisualData, VisualData } from '../../composition/types';
|
|
18
|
+
import { DataGridProps } from '../../data-grid.props';
|
|
19
|
+
export default function (props: DataGridProps, primaryGridContentRef: Ref<any>, useCellPositionComposition: UseCellPosition, useColumnComposition: UseColumn, useEditComposition: UseEdit, useGroupDataComposition: UseGroupData, useRowComposition: UseRow, useVisualDataComposition: UseVisualData, useVirtualScrollComposition: UseVirtualScroll, visibleDatas: Ref<VisualData[]>): {
|
|
20
|
+
renderDataArea: () => JSX.Element[];
|
|
21
|
+
};
|