sd-render 1.2.6 → 1.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/field-docs.html +3340 -1547
- package/package.json +1 -1
- package/{sd-lib-BG0UjdFl.js → sd-lib-BI2bK3bT.js} +5529 -3962
- package/{sd-render-DwCKOhLI.js → sd-render-JboRjeDb.js} +2059 -1522
- package/sd-render.es.js +52 -49
- package/sd-render.style.css +1 -1
- package/types/src/components/form-render/SdFormRender.vue.d.ts +0 -3
- package/types/src/components/form-render/form-field/date-input.vue.d.ts +98 -102
- package/types/src/components/form-render/form-field/date-panel-input.vue.d.ts +611 -0
- package/types/src/components/form-render/form-field/date-range-input.vue.d.ts +98 -102
- package/types/src/components/form-render/form-field/multiple-date.vue.d.ts +98 -102
- package/types/src/components/form-render/form-field/otp-input.vue.d.ts +373 -0
- package/types/src/components/form-render/form-field/smart-card-ui.vue.d.ts +534 -0
- package/types/src/components/form-render/form-field/tree-ui.vue.d.ts +983 -0
- package/types/src/components/input3/eltiptap/widget/ExtensionViews/ImageView.vue.d.ts +59 -64
- package/types/src/components/input3/eltiptap/widget/ExtensionViews/TaskItemView.vue.d.ts +68 -70
- package/types/src/components/input3/eltiptap/widget/MenuCommands/AddYoutubeCommandButton.vue.d.ts +232 -218
- package/types/src/components/input3/eltiptap/widget/MenuCommands/ColorPopover.vue.d.ts +163 -151
- package/types/src/components/input3/eltiptap/widget/MenuCommands/CommandButton.vue.d.ts +76 -76
- package/types/src/components/input3/eltiptap/widget/MenuCommands/FontFamilyDropdown.vue.d.ts +455 -580
- package/types/src/components/input3/eltiptap/widget/MenuCommands/FontSizeDropdown.vue.d.ts +453 -576
- package/types/src/components/input3/eltiptap/widget/MenuCommands/HeadingDropdown.vue.d.ts +453 -576
- package/types/src/components/input3/eltiptap/widget/MenuCommands/HighlightPopover.vue.d.ts +163 -151
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Image/EditImageCommandButton.vue.d.ts +165 -149
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Image/ImageDisplayCommandButton.vue.d.ts +59 -64
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Image/InsertImageCommandButton.vue.d.ts +98 -103
- package/types/src/components/input3/eltiptap/widget/MenuCommands/LineHeightDropdown.vue.d.ts +453 -576
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Link/AddLinkCommandButton.vue.d.ts +232 -218
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Link/EditLinkCommandButton.vue.d.ts +232 -218
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Link/UploadFileCommandButton.vue.d.ts +232 -218
- package/types/src/components/input3/eltiptap/widget/MenuCommands/TablePopover/CreateTablePopover.vue.d.ts +59 -64
- package/types/src/components/input3/eltiptap/widget/MenuCommands/TablePopover/index.vue.d.ts +59 -64
- package/types/src/components/sdlib.d.ts +3 -0
- package/types/src/components/sdwidget/SdCascaderForm.vue.d.ts +1 -1
- package/types/src/components/sdwidget/SdCrudForm.vue.d.ts +0 -4
- package/types/src/components/sdwidget/SdCrudGrid.vue.d.ts +27 -2
- package/types/src/components/sdwidget/SdCrudPopupForm.vue.d.ts +27 -5
- package/types/src/components/sdwidget/SdCrudSelect.vue.d.ts +2 -2
- package/types/src/components/sdwidget/SdCrudSelectSubForm.vue.d.ts +12 -3
- package/types/src/components/sdwidget/SdCrudTree.vue.d.ts +615 -0
- package/types/src/components/sdwidget/SdDatePickerBE.vue.d.ts +196 -204
- package/types/src/components/sdwidget/SdDatePickerPanelBE.vue.d.ts +379 -0
- package/types/src/components/sdwidget/SdFormSchema.vue.d.ts +2 -2
- package/types/src/components/sdwidget/SdFormSchemaForm.vue.d.ts +2 -2
- package/types/src/components/sdwidget/SdGallery.vue.d.ts +20 -20
- package/types/src/components/sdwidget/SdGridColumnBy.vue.d.ts +105 -4
- package/types/src/components/sdwidget/SdGridColumnDate.vue.d.ts +84 -3
- package/types/src/components/sdwidget/SdGridColumnDynamic.vue.d.ts +257 -10
- package/types/src/components/sdwidget/SdGridSortHeader.vue.d.ts +52 -0
- package/types/src/components/sdwidget/SdSelectPathData.vue.d.ts +1 -1
- package/types/src/components/sdwidget/SdSelectRemoteList.vue.d.ts +11 -2
- package/types/src/components/sdwidget/SdSmartCard.vue.d.ts +268 -0
- package/types/src/components/sdwidget/SdUiMenu.vue.d.ts +1 -1
|
@@ -64,20 +64,20 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
64
64
|
default: string;
|
|
65
65
|
};
|
|
66
66
|
}>> & Readonly<{}>, {
|
|
67
|
-
placement: "left" | "right" | "top" | "
|
|
67
|
+
placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end";
|
|
68
68
|
isActive: boolean;
|
|
69
69
|
command: Function;
|
|
70
70
|
readonly: boolean;
|
|
71
71
|
}, {}, {
|
|
72
|
-
ElTooltip: import('element-plus/es/utils/
|
|
72
|
+
ElTooltip: import('element-plus/es/utils/vue/typescript.mjs').SFCWithInstall<{
|
|
73
73
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('element-plus').UseTooltipProps> & Readonly<{
|
|
74
|
-
|
|
74
|
+
onHide?: ((...args: any[]) => any) | undefined;
|
|
75
|
+
onShow?: ((...args: any[]) => any) | undefined;
|
|
76
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
75
77
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
76
78
|
"onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
77
79
|
"onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
78
|
-
|
|
79
|
-
onHide?: ((...args: any[]) => any) | undefined;
|
|
80
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
80
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
81
81
|
}>, {
|
|
82
82
|
popperRef: import('vue').Ref<import('element-plus').PopperInstance | undefined, import('element-plus').PopperInstance | undefined>;
|
|
83
83
|
contentRef: import('vue').Ref<import('element-plus').TooltipContentInstance | undefined, import('element-plus').TooltipContentInstance | undefined>;
|
|
@@ -87,39 +87,39 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
87
87
|
onClose: (event?: Event, delay?: number) => void;
|
|
88
88
|
hide: (event?: Event) => void;
|
|
89
89
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
90
|
-
|
|
90
|
+
hide: (...args: any[]) => void;
|
|
91
|
+
show: (...args: any[]) => void;
|
|
92
|
+
open: (...args: any[]) => void;
|
|
91
93
|
"update:visible": (...args: any[]) => void;
|
|
92
94
|
"before-show": (...args: any[]) => void;
|
|
93
95
|
"before-hide": (...args: any[]) => void;
|
|
94
|
-
|
|
95
|
-
hide: (...args: any[]) => void;
|
|
96
|
-
open: (...args: any[]) => void;
|
|
96
|
+
close: (...args: any[]) => void;
|
|
97
97
|
}, import('vue').PublicProps, {
|
|
98
|
-
effect: import('element-plus').PopperEffect;
|
|
99
|
-
placement: import('element-plus').Placement;
|
|
100
|
-
popperStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
101
|
-
teleported: boolean;
|
|
102
|
-
visible: boolean | null;
|
|
103
98
|
style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
99
|
+
role: "dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree";
|
|
100
|
+
visible: boolean | null;
|
|
101
|
+
content: string;
|
|
102
|
+
offset: number;
|
|
103
|
+
showAfter: number;
|
|
104
|
+
hideAfter: number;
|
|
105
|
+
autoClose: number;
|
|
106
|
+
boundariesPadding: number;
|
|
107
|
+
gpuAcceleration: boolean;
|
|
108
|
+
placement: import('element-plus').Placement;
|
|
109
|
+
popperOptions: Partial<import('element-plus').Options>;
|
|
110
|
+
strategy: "fixed" | "absolute";
|
|
111
|
+
arrowOffset: number;
|
|
112
|
+
effect: import('element-plus').PopperEffect;
|
|
104
113
|
enterable: boolean;
|
|
114
|
+
popperStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
115
|
+
stopPopperMouseEvent: boolean;
|
|
116
|
+
loop: boolean;
|
|
105
117
|
pure: boolean;
|
|
106
118
|
focusOnShow: boolean;
|
|
107
119
|
trapping: boolean;
|
|
108
|
-
stopPopperMouseEvent: boolean;
|
|
109
120
|
virtualTriggering: boolean;
|
|
110
|
-
|
|
111
|
-
boundariesPadding: number;
|
|
112
|
-
gpuAcceleration: boolean;
|
|
113
|
-
offset: number;
|
|
114
|
-
popperOptions: Partial<import('element-plus').Options>;
|
|
115
|
-
strategy: "absolute" | "fixed";
|
|
116
|
-
arrowOffset: number;
|
|
121
|
+
teleported: boolean;
|
|
117
122
|
showArrow: boolean;
|
|
118
|
-
role: "dialog" | "menu" | "grid" | "group" | "tooltip" | "listbox" | "navigation" | "tree";
|
|
119
|
-
content: string;
|
|
120
|
-
showAfter: number;
|
|
121
|
-
hideAfter: number;
|
|
122
|
-
autoClose: number;
|
|
123
123
|
trigger: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').TooltipTriggerType>;
|
|
124
124
|
triggerKeys: string[];
|
|
125
125
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -130,13 +130,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
130
130
|
M: {};
|
|
131
131
|
Defaults: {};
|
|
132
132
|
}, Readonly<import('element-plus').UseTooltipProps> & Readonly<{
|
|
133
|
-
|
|
133
|
+
onHide?: ((...args: any[]) => any) | undefined;
|
|
134
|
+
onShow?: ((...args: any[]) => any) | undefined;
|
|
135
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
134
136
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
135
137
|
"onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
136
138
|
"onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
137
|
-
|
|
138
|
-
onHide?: ((...args: any[]) => any) | undefined;
|
|
139
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
139
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
140
140
|
}>, {
|
|
141
141
|
popperRef: import('vue').Ref<import('element-plus').PopperInstance | undefined, import('element-plus').PopperInstance | undefined>;
|
|
142
142
|
contentRef: import('vue').Ref<import('element-plus').TooltipContentInstance | undefined, import('element-plus').TooltipContentInstance | undefined>;
|
|
@@ -146,31 +146,31 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
146
146
|
onClose: (event?: Event, delay?: number) => void;
|
|
147
147
|
hide: (event?: Event) => void;
|
|
148
148
|
}, {}, {}, {}, {
|
|
149
|
-
effect: import('element-plus').PopperEffect;
|
|
150
|
-
placement: import('element-plus').Placement;
|
|
151
|
-
popperStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
152
|
-
teleported: boolean;
|
|
153
|
-
visible: boolean | null;
|
|
154
149
|
style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
150
|
+
role: "dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree";
|
|
151
|
+
visible: boolean | null;
|
|
152
|
+
content: string;
|
|
153
|
+
offset: number;
|
|
154
|
+
showAfter: number;
|
|
155
|
+
hideAfter: number;
|
|
156
|
+
autoClose: number;
|
|
157
|
+
boundariesPadding: number;
|
|
158
|
+
gpuAcceleration: boolean;
|
|
159
|
+
placement: import('element-plus').Placement;
|
|
160
|
+
popperOptions: Partial<import('element-plus').Options>;
|
|
161
|
+
strategy: "fixed" | "absolute";
|
|
162
|
+
arrowOffset: number;
|
|
163
|
+
effect: import('element-plus').PopperEffect;
|
|
155
164
|
enterable: boolean;
|
|
165
|
+
popperStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
166
|
+
stopPopperMouseEvent: boolean;
|
|
167
|
+
loop: boolean;
|
|
156
168
|
pure: boolean;
|
|
157
169
|
focusOnShow: boolean;
|
|
158
170
|
trapping: boolean;
|
|
159
|
-
stopPopperMouseEvent: boolean;
|
|
160
171
|
virtualTriggering: boolean;
|
|
161
|
-
|
|
162
|
-
boundariesPadding: number;
|
|
163
|
-
gpuAcceleration: boolean;
|
|
164
|
-
offset: number;
|
|
165
|
-
popperOptions: Partial<import('element-plus').Options>;
|
|
166
|
-
strategy: "absolute" | "fixed";
|
|
167
|
-
arrowOffset: number;
|
|
172
|
+
teleported: boolean;
|
|
168
173
|
showArrow: boolean;
|
|
169
|
-
role: "dialog" | "menu" | "grid" | "group" | "tooltip" | "listbox" | "navigation" | "tree";
|
|
170
|
-
content: string;
|
|
171
|
-
showAfter: number;
|
|
172
|
-
hideAfter: number;
|
|
173
|
-
autoClose: number;
|
|
174
174
|
trigger: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').TooltipTriggerType>;
|
|
175
175
|
triggerKeys: string[];
|
|
176
176
|
}>;
|
|
@@ -178,13 +178,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
178
178
|
__isTeleport?: never;
|
|
179
179
|
__isSuspense?: never;
|
|
180
180
|
} & import('vue').ComponentOptionsBase<Readonly<import('element-plus').UseTooltipProps> & Readonly<{
|
|
181
|
-
|
|
181
|
+
onHide?: ((...args: any[]) => any) | undefined;
|
|
182
|
+
onShow?: ((...args: any[]) => any) | undefined;
|
|
183
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
182
184
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
183
185
|
"onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
184
186
|
"onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
185
|
-
|
|
186
|
-
onHide?: ((...args: any[]) => any) | undefined;
|
|
187
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
187
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
188
188
|
}>, {
|
|
189
189
|
popperRef: import('vue').Ref<import('element-plus').PopperInstance | undefined, import('element-plus').PopperInstance | undefined>;
|
|
190
190
|
contentRef: import('vue').Ref<import('element-plus').TooltipContentInstance | undefined, import('element-plus').TooltipContentInstance | undefined>;
|
|
@@ -194,39 +194,39 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
194
194
|
onClose: (event?: Event, delay?: number) => void;
|
|
195
195
|
hide: (event?: Event) => void;
|
|
196
196
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
197
|
-
|
|
197
|
+
hide: (...args: any[]) => void;
|
|
198
|
+
show: (...args: any[]) => void;
|
|
199
|
+
open: (...args: any[]) => void;
|
|
198
200
|
"update:visible": (...args: any[]) => void;
|
|
199
201
|
"before-show": (...args: any[]) => void;
|
|
200
202
|
"before-hide": (...args: any[]) => void;
|
|
201
|
-
|
|
202
|
-
hide: (...args: any[]) => void;
|
|
203
|
-
open: (...args: any[]) => void;
|
|
203
|
+
close: (...args: any[]) => void;
|
|
204
204
|
}, string, {
|
|
205
|
-
effect: import('element-plus').PopperEffect;
|
|
206
|
-
placement: import('element-plus').Placement;
|
|
207
|
-
popperStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
208
|
-
teleported: boolean;
|
|
209
|
-
visible: boolean | null;
|
|
210
205
|
style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
206
|
+
role: "dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree";
|
|
207
|
+
visible: boolean | null;
|
|
208
|
+
content: string;
|
|
209
|
+
offset: number;
|
|
210
|
+
showAfter: number;
|
|
211
|
+
hideAfter: number;
|
|
212
|
+
autoClose: number;
|
|
213
|
+
boundariesPadding: number;
|
|
214
|
+
gpuAcceleration: boolean;
|
|
215
|
+
placement: import('element-plus').Placement;
|
|
216
|
+
popperOptions: Partial<import('element-plus').Options>;
|
|
217
|
+
strategy: "fixed" | "absolute";
|
|
218
|
+
arrowOffset: number;
|
|
219
|
+
effect: import('element-plus').PopperEffect;
|
|
211
220
|
enterable: boolean;
|
|
221
|
+
popperStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
222
|
+
stopPopperMouseEvent: boolean;
|
|
223
|
+
loop: boolean;
|
|
212
224
|
pure: boolean;
|
|
213
225
|
focusOnShow: boolean;
|
|
214
226
|
trapping: boolean;
|
|
215
|
-
stopPopperMouseEvent: boolean;
|
|
216
227
|
virtualTriggering: boolean;
|
|
217
|
-
|
|
218
|
-
boundariesPadding: number;
|
|
219
|
-
gpuAcceleration: boolean;
|
|
220
|
-
offset: number;
|
|
221
|
-
popperOptions: Partial<import('element-plus').Options>;
|
|
222
|
-
strategy: "absolute" | "fixed";
|
|
223
|
-
arrowOffset: number;
|
|
228
|
+
teleported: boolean;
|
|
224
229
|
showArrow: boolean;
|
|
225
|
-
role: "dialog" | "menu" | "grid" | "group" | "tooltip" | "listbox" | "navigation" | "tree";
|
|
226
|
-
content: string;
|
|
227
|
-
showAfter: number;
|
|
228
|
-
hideAfter: number;
|
|
229
|
-
autoClose: number;
|
|
230
230
|
trigger: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').TooltipTriggerType>;
|
|
231
231
|
triggerKeys: string[];
|
|
232
232
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|