@opendesign-plus-test/components 0.0.1-rc.42 → 0.0.1-rc.45
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/chunk-OElCookieNotice.cjs.js +1 -1
- package/dist/chunk-OElCookieNotice.es.js +132 -112
- package/dist/components/OHeaderSearch.vue.d.ts +824 -506
- package/dist/components/OSourceCode.vue.d.ts +4 -6
- package/dist/components/activity/OActivityApproval.vue.d.ts +6 -10
- package/dist/components/activity/OActivityForm.vue.d.ts +3 -5
- package/dist/components/activity/OMyActivityCalendar.vue.d.ts +100 -46
- package/dist/components/activity/index.d.ts +56 -33
- package/dist/components/activity/types.d.ts +8 -1
- package/dist/components/events/config.d.ts +5 -18
- package/dist/components/events/types.d.ts +4 -1
- package/dist/components/header/OHeaderMobile.vue.d.ts +18 -11
- package/dist/components/header/components/HeaderNavMobile.vue.d.ts +4 -1
- package/dist/components/header/index.d.ts +12 -5
- package/dist/components/header/types.d.ts +4 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +8 -12
- package/dist/components/meeting/OMeetingForm.vue.d.ts +3 -5
- package/dist/components/meeting/OMeetingPlayback.vue.d.ts +45 -0
- package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +100 -46
- package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +817 -0
- package/dist/components/meeting/types.d.ts +82 -17
- package/dist/components/meeting/utils.d.ts +1 -1
- package/dist/components/search/OSearchInput.vue.d.ts +1003 -0
- package/dist/components/search/composables/useImageSearch.d.ts +48 -0
- package/dist/components/search/composables/useKeywordHighlight.d.ts +2 -0
- package/dist/components/search/composables/useSearchHistory.d.ts +14 -0
- package/dist/components/search/index.d.ts +590 -0
- package/dist/components/search/internal/HighlightText.vue.d.ts +9 -0
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +716 -0
- package/dist/components/search/internal/SearchPanel.vue.d.ts +100 -0
- package/dist/components/search/types.d.ts +20 -0
- package/dist/components.cjs.js +43 -43
- package/dist/components.css +1 -1
- package/dist/components.es.js +11681 -10636
- package/dist/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/assets/svg-icons/icon-delete-hover.svg +4 -0
- package/src/assets/svg-icons/icon-delete.svg +5 -1
- package/src/assets/svg-icons/icon-image-close.svg +4 -0
- package/src/assets/svg-icons/icon-image-upload.svg +3 -0
- package/src/assets/svg-icons/icon-image-zoomin.svg +3 -0
- package/src/assets/svg-icons/icon-refresh.svg +3 -0
- package/src/components/OBanner.vue +18 -18
- package/src/components/OCookieNotice.vue +21 -21
- package/src/components/OFooter.vue +18 -17
- package/src/components/OHeaderSearch.vue +402 -420
- package/src/components/OHeaderUser.vue +3 -2
- package/src/components/OSection.vue +4 -4
- package/src/components/OSourceCode.vue +8 -10
- package/src/components/activity/OActivityApproval.vue +32 -32
- package/src/components/activity/OActivityForm.vue +5 -5
- package/src/components/activity/OMyActivityCalendar.vue +66 -50
- package/src/components/activity/config.ts +1 -1
- package/src/components/activity/types.ts +8 -1
- package/src/components/common/ContentWrapper.vue +3 -3
- package/src/components/common/MoreText.vue +1 -1
- package/src/components/common/ThFilter.vue +7 -7
- package/src/components/element-plus/OElCookieNotice.vue +27 -27
- package/src/components/events/OEventsApply.vue +44 -44
- package/src/components/events/OEventsCalendar.vue +14 -14
- package/src/components/events/OEventsList.vue +53 -26
- package/src/components/events/config.ts +1 -1
- package/src/components/events/types.ts +4 -1
- package/src/components/header/OHeader.vue +2 -2
- package/src/components/header/OHeaderMobile.vue +8 -1
- package/src/components/header/components/HeaderContent.vue +67 -63
- package/src/components/header/components/HeaderNav.vue +4 -4
- package/src/components/header/components/HeaderNavMobile.vue +8 -5
- package/src/components/header/types.ts +4 -0
- package/src/components/meeting/OMeetingCalendar.vue +66 -54
- package/src/components/meeting/OMeetingForm.vue +70 -51
- package/src/components/meeting/OMeetingPlayback.vue +8 -8
- package/src/components/meeting/OMyMeetingCalendar.vue +56 -45
- package/src/components/meeting/OSigMeetingCalendar.vue +31 -28
- package/src/components/meeting/components/OMeetingCalendarList.vue +31 -26
- package/src/components/meeting/components/OMeetingCalendarSelector.vue +10 -6
- package/src/components/meeting/components/OMeetingDetail.vue +32 -18
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +12 -12
- package/src/components/meeting/components/OSigMeetingAside.vue +8 -9
- package/src/components/meeting/types.ts +88 -17
- package/src/components/search/OSearchInput.vue +463 -0
- package/src/components/search/composables/useImageSearch.ts +157 -0
- package/src/components/search/composables/useKeywordHighlight.ts +30 -0
- package/src/components/search/composables/useSearchHistory.ts +75 -0
- package/src/components/search/index.ts +23 -0
- package/src/components/search/internal/HighlightText.vue +37 -0
- package/src/components/search/internal/SearchImageInput.vue +488 -0
- package/src/components/search/internal/SearchPanel.vue +430 -0
- package/src/components/search/types.ts +25 -0
- package/src/draft/Banner.vue +6 -6
- package/src/draft/ButtonCards.vue +1 -1
- package/src/draft/Feature.vue +6 -6
- package/src/draft/Footer.vue +29 -22
- package/src/draft/HorizontalAnchor.vue +4 -4
- package/src/draft/ItemSwiper.vue +2 -2
- package/src/draft/Logo.vue +3 -3
- package/src/draft/LogoCard.vue +2 -2
- package/src/draft/MultiCard.vue +1 -1
- package/src/draft/MultiIconCard.vue +1 -1
- package/src/draft/OInfoCard.vue +4 -4
- package/src/draft/Section.vue +4 -4
- package/src/draft/SingleTabCard.vue +1 -1
- package/src/draft/SliderCard.vue +4 -3
- package/src/i18n/en.ts +10 -0
- package/src/i18n/zh.ts +10 -0
- package/src/index.ts +1 -0
- package/vite.config.ts +4 -3
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
interface CodeItemT {
|
|
2
2
|
label: string;
|
|
3
|
-
|
|
3
|
+
href: string;
|
|
4
4
|
icon?: string;
|
|
5
|
+
target?: string;
|
|
5
6
|
}
|
|
6
7
|
interface CodePropsT {
|
|
7
8
|
title?: string;
|
|
8
9
|
options?: CodeItemT[];
|
|
9
|
-
|
|
10
|
+
href?: string;
|
|
11
|
+
target?: string;
|
|
10
12
|
icon?: string;
|
|
11
13
|
justify?: string;
|
|
12
14
|
}
|
|
13
15
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<CodePropsT, {}, {}, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<CodePropsT> & Readonly<{}>, {
|
|
14
|
-
title: string;
|
|
15
|
-
options: CodeItemT[];
|
|
16
|
-
icon: string;
|
|
17
|
-
url: string;
|
|
18
16
|
justify: string;
|
|
19
17
|
}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
20
18
|
export default _default;
|
|
@@ -24,9 +24,7 @@ declare function __VLS_template(): {
|
|
|
24
24
|
readonly onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
25
25
|
readonly onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
26
26
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "hasRequired" | "layout">;
|
|
27
|
-
$attrs:
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
30
28
|
$refs: {
|
|
31
29
|
[x: string]: unknown;
|
|
32
30
|
};
|
|
@@ -125,11 +123,11 @@ declare function __VLS_template(): {
|
|
|
125
123
|
onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
|
|
126
124
|
onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
127
125
|
onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
128
|
-
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> &
|
|
126
|
+
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> & {
|
|
129
127
|
validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
|
|
130
128
|
resetFields: (filed?: string | string[]) => void;
|
|
131
129
|
clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
|
|
132
|
-
}
|
|
130
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
133
131
|
$slots: {
|
|
134
132
|
default?(_: {}): any;
|
|
135
133
|
};
|
|
@@ -157,9 +155,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
157
155
|
readonly onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
158
156
|
readonly onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
159
157
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "hasRequired" | "layout">;
|
|
160
|
-
$attrs:
|
|
161
|
-
[x: string]: unknown;
|
|
162
|
-
};
|
|
158
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
163
159
|
$refs: {
|
|
164
160
|
[x: string]: unknown;
|
|
165
161
|
};
|
|
@@ -258,11 +254,11 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
258
254
|
onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
|
|
259
255
|
onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
260
256
|
onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
261
|
-
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> &
|
|
257
|
+
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> & {
|
|
262
258
|
validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
|
|
263
259
|
resetFields: (filed?: string | string[]) => void;
|
|
264
260
|
clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
|
|
265
|
-
}
|
|
261
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
266
262
|
$slots: {
|
|
267
263
|
default?(_: {}): any;
|
|
268
264
|
};
|
|
@@ -26,9 +26,7 @@ declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineCom
|
|
|
26
26
|
readonly onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
27
27
|
readonly onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
28
28
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "hasRequired" | "layout">;
|
|
29
|
-
$attrs:
|
|
30
|
-
[x: string]: unknown;
|
|
31
|
-
};
|
|
29
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
32
30
|
$refs: {
|
|
33
31
|
[x: string]: unknown;
|
|
34
32
|
};
|
|
@@ -127,11 +125,11 @@ declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineCom
|
|
|
127
125
|
onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
|
|
128
126
|
onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
129
127
|
onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
130
|
-
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> &
|
|
128
|
+
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> & {
|
|
131
129
|
validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
|
|
132
130
|
resetFields: (filed?: string | string[]) => void;
|
|
133
131
|
clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
|
|
134
|
-
}
|
|
132
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
135
133
|
$slots: {
|
|
136
134
|
default?(_: {}): any;
|
|
137
135
|
};
|
|
@@ -20,9 +20,7 @@ declare function __VLS_template(): {
|
|
|
20
20
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined | undefined;
|
|
21
21
|
onInput?: ((value: Date) => any) | undefined | undefined;
|
|
22
22
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "controllerType">;
|
|
23
|
-
$attrs:
|
|
24
|
-
[x: string]: unknown;
|
|
25
|
-
};
|
|
23
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
26
24
|
$refs: {
|
|
27
25
|
[x: string]: unknown;
|
|
28
26
|
};
|
|
@@ -112,12 +110,12 @@ declare function __VLS_template(): {
|
|
|
112
110
|
}>> & {
|
|
113
111
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined;
|
|
114
112
|
onInput?: ((value: Date) => any) | undefined;
|
|
115
|
-
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> &
|
|
116
|
-
selectedDay:
|
|
113
|
+
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> & {
|
|
114
|
+
selectedDay: dayjs.Dayjs | undefined;
|
|
117
115
|
pickDay: (day: import('dayjs').Dayjs) => void;
|
|
118
116
|
selectDate: (type: import('element-plus').CalendarDateType) => void;
|
|
119
117
|
calculateValidatedDateRange: (startDayjs: import('dayjs').Dayjs, endDayjs: import('dayjs').Dayjs) => [import('dayjs').Dayjs, import('dayjs').Dayjs][];
|
|
120
|
-
}
|
|
118
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
121
119
|
$slots: {
|
|
122
120
|
header?: (props: {
|
|
123
121
|
date: string;
|
|
@@ -159,12 +157,19 @@ declare function __VLS_template(): {
|
|
|
159
157
|
readonly disabledY: boolean;
|
|
160
158
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
161
159
|
readonly autoUpdateOnScrollSize: boolean;
|
|
162
|
-
readonly wrapClass?: string |
|
|
163
|
-
|
|
160
|
+
readonly wrapClass?: string | {
|
|
161
|
+
[k: string]: boolean;
|
|
162
|
+
} | (string | {
|
|
163
|
+
[k: string]: boolean;
|
|
164
|
+
})[] | undefined;
|
|
165
|
+
readonly barClass?: string | {
|
|
166
|
+
[k: string]: boolean;
|
|
167
|
+
} | (string | {
|
|
168
|
+
[k: string]: boolean;
|
|
169
|
+
})[] | undefined;
|
|
170
|
+
readonly onScroll?: ((event: Event) => any) | undefined | undefined;
|
|
164
171
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize">;
|
|
165
|
-
$attrs:
|
|
166
|
-
[x: string]: unknown;
|
|
167
|
-
};
|
|
172
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
168
173
|
$refs: {
|
|
169
174
|
[x: string]: unknown;
|
|
170
175
|
} & {
|
|
@@ -176,15 +181,19 @@ declare function __VLS_template(): {
|
|
|
176
181
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
177
182
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
178
183
|
$host: Element | null;
|
|
179
|
-
$emit: (event:
|
|
184
|
+
$emit: (event: "scroll", event: Event) => void;
|
|
180
185
|
$el: HTMLDivElement;
|
|
181
186
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
182
187
|
wrapClass: {
|
|
183
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
188
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
189
|
+
[k: string]: boolean;
|
|
190
|
+
} | Array<{
|
|
191
|
+
[k: string]: boolean;
|
|
192
|
+
} | string>>;
|
|
184
193
|
};
|
|
185
194
|
disabledX: {
|
|
186
195
|
type: BooleanConstructor;
|
|
187
|
-
required:
|
|
196
|
+
required: false;
|
|
188
197
|
};
|
|
189
198
|
disabledY: {
|
|
190
199
|
type: BooleanConstructor;
|
|
@@ -205,12 +214,20 @@ declare function __VLS_template(): {
|
|
|
205
214
|
type: BooleanConstructor;
|
|
206
215
|
};
|
|
207
216
|
barClass: {
|
|
208
|
-
type:
|
|
217
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
218
|
+
[k: string]: boolean;
|
|
219
|
+
} | Array<{
|
|
220
|
+
[k: string]: boolean;
|
|
221
|
+
} | string>>;
|
|
209
222
|
};
|
|
210
|
-
}>> & Readonly<{
|
|
223
|
+
}>> & Readonly<{
|
|
224
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
225
|
+
}>, {
|
|
211
226
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
212
227
|
getContainerEl(): HTMLElement | null;
|
|
213
|
-
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
228
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
229
|
+
scroll: (event: Event) => any;
|
|
230
|
+
}, string, {
|
|
214
231
|
size: "medium" | "small";
|
|
215
232
|
duration: number;
|
|
216
233
|
disabledX: boolean;
|
|
@@ -246,11 +263,15 @@ declare function __VLS_template(): {
|
|
|
246
263
|
autoUpdateOnScrollSize: boolean;
|
|
247
264
|
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
248
265
|
wrapClass: {
|
|
249
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
266
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
267
|
+
[k: string]: boolean;
|
|
268
|
+
} | Array<{
|
|
269
|
+
[k: string]: boolean;
|
|
270
|
+
} | string>>;
|
|
250
271
|
};
|
|
251
272
|
disabledX: {
|
|
252
273
|
type: BooleanConstructor;
|
|
253
|
-
required:
|
|
274
|
+
required: false;
|
|
254
275
|
};
|
|
255
276
|
disabledY: {
|
|
256
277
|
type: BooleanConstructor;
|
|
@@ -271,12 +292,18 @@ declare function __VLS_template(): {
|
|
|
271
292
|
type: BooleanConstructor;
|
|
272
293
|
};
|
|
273
294
|
barClass: {
|
|
274
|
-
type:
|
|
295
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
296
|
+
[k: string]: boolean;
|
|
297
|
+
} | Array<{
|
|
298
|
+
[k: string]: boolean;
|
|
299
|
+
} | string>>;
|
|
275
300
|
};
|
|
276
|
-
}>> & Readonly<{
|
|
301
|
+
}>> & Readonly<{
|
|
302
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
303
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
277
304
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
278
|
-
getContainerEl()
|
|
279
|
-
}
|
|
305
|
+
getContainerEl: () => HTMLElement | null;
|
|
306
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
280
307
|
$slots: {
|
|
281
308
|
default?(_: {}): any;
|
|
282
309
|
thumb?(_: {}): any;
|
|
@@ -305,9 +332,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
305
332
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined | undefined;
|
|
306
333
|
onInput?: ((value: Date) => any) | undefined | undefined;
|
|
307
334
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "controllerType">;
|
|
308
|
-
$attrs:
|
|
309
|
-
[x: string]: unknown;
|
|
310
|
-
};
|
|
335
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
311
336
|
$refs: {
|
|
312
337
|
[x: string]: unknown;
|
|
313
338
|
};
|
|
@@ -397,12 +422,12 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
397
422
|
}>> & {
|
|
398
423
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined;
|
|
399
424
|
onInput?: ((value: Date) => any) | undefined;
|
|
400
|
-
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> &
|
|
401
|
-
selectedDay:
|
|
425
|
+
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> & {
|
|
426
|
+
selectedDay: dayjs.Dayjs | undefined;
|
|
402
427
|
pickDay: (day: import('dayjs').Dayjs) => void;
|
|
403
428
|
selectDate: (type: import('element-plus').CalendarDateType) => void;
|
|
404
429
|
calculateValidatedDateRange: (startDayjs: import('dayjs').Dayjs, endDayjs: import('dayjs').Dayjs) => [import('dayjs').Dayjs, import('dayjs').Dayjs][];
|
|
405
|
-
}
|
|
430
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
406
431
|
$slots: {
|
|
407
432
|
header?: (props: {
|
|
408
433
|
date: string;
|
|
@@ -444,12 +469,19 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
444
469
|
readonly disabledY: boolean;
|
|
445
470
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
446
471
|
readonly autoUpdateOnScrollSize: boolean;
|
|
447
|
-
readonly wrapClass?: string |
|
|
448
|
-
|
|
472
|
+
readonly wrapClass?: string | {
|
|
473
|
+
[k: string]: boolean;
|
|
474
|
+
} | (string | {
|
|
475
|
+
[k: string]: boolean;
|
|
476
|
+
})[] | undefined;
|
|
477
|
+
readonly barClass?: string | {
|
|
478
|
+
[k: string]: boolean;
|
|
479
|
+
} | (string | {
|
|
480
|
+
[k: string]: boolean;
|
|
481
|
+
})[] | undefined;
|
|
482
|
+
readonly onScroll?: ((event: Event) => any) | undefined | undefined;
|
|
449
483
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize">;
|
|
450
|
-
$attrs:
|
|
451
|
-
[x: string]: unknown;
|
|
452
|
-
};
|
|
484
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
453
485
|
$refs: {
|
|
454
486
|
[x: string]: unknown;
|
|
455
487
|
} & {
|
|
@@ -461,15 +493,19 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
461
493
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
462
494
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
463
495
|
$host: Element | null;
|
|
464
|
-
$emit: (event:
|
|
496
|
+
$emit: (event: "scroll", event: Event) => void;
|
|
465
497
|
$el: HTMLDivElement;
|
|
466
498
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
467
499
|
wrapClass: {
|
|
468
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
500
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
501
|
+
[k: string]: boolean;
|
|
502
|
+
} | Array<{
|
|
503
|
+
[k: string]: boolean;
|
|
504
|
+
} | string>>;
|
|
469
505
|
};
|
|
470
506
|
disabledX: {
|
|
471
507
|
type: BooleanConstructor;
|
|
472
|
-
required:
|
|
508
|
+
required: false;
|
|
473
509
|
};
|
|
474
510
|
disabledY: {
|
|
475
511
|
type: BooleanConstructor;
|
|
@@ -490,12 +526,20 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
490
526
|
type: BooleanConstructor;
|
|
491
527
|
};
|
|
492
528
|
barClass: {
|
|
493
|
-
type:
|
|
529
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
530
|
+
[k: string]: boolean;
|
|
531
|
+
} | Array<{
|
|
532
|
+
[k: string]: boolean;
|
|
533
|
+
} | string>>;
|
|
494
534
|
};
|
|
495
|
-
}>> & Readonly<{
|
|
535
|
+
}>> & Readonly<{
|
|
536
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
537
|
+
}>, {
|
|
496
538
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
497
539
|
getContainerEl(): HTMLElement | null;
|
|
498
|
-
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
540
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
541
|
+
scroll: (event: Event) => any;
|
|
542
|
+
}, string, {
|
|
499
543
|
size: "medium" | "small";
|
|
500
544
|
duration: number;
|
|
501
545
|
disabledX: boolean;
|
|
@@ -531,11 +575,15 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
531
575
|
autoUpdateOnScrollSize: boolean;
|
|
532
576
|
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
533
577
|
wrapClass: {
|
|
534
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
578
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
579
|
+
[k: string]: boolean;
|
|
580
|
+
} | Array<{
|
|
581
|
+
[k: string]: boolean;
|
|
582
|
+
} | string>>;
|
|
535
583
|
};
|
|
536
584
|
disabledX: {
|
|
537
585
|
type: BooleanConstructor;
|
|
538
|
-
required:
|
|
586
|
+
required: false;
|
|
539
587
|
};
|
|
540
588
|
disabledY: {
|
|
541
589
|
type: BooleanConstructor;
|
|
@@ -556,12 +604,18 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
556
604
|
type: BooleanConstructor;
|
|
557
605
|
};
|
|
558
606
|
barClass: {
|
|
559
|
-
type:
|
|
607
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
608
|
+
[k: string]: boolean;
|
|
609
|
+
} | Array<{
|
|
610
|
+
[k: string]: boolean;
|
|
611
|
+
} | string>>;
|
|
560
612
|
};
|
|
561
|
-
}>> & Readonly<{
|
|
613
|
+
}>> & Readonly<{
|
|
614
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
615
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
562
616
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
563
|
-
getContainerEl()
|
|
564
|
-
}
|
|
617
|
+
getContainerEl: () => HTMLElement | null;
|
|
618
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
565
619
|
$slots: {
|
|
566
620
|
default?(_: {}): any;
|
|
567
621
|
thumb?(_: {}): any;
|
|
@@ -27,9 +27,7 @@ declare const OActivityForm: {
|
|
|
27
27
|
readonly onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
28
28
|
readonly onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
29
29
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "hasRequired" | "layout">;
|
|
30
|
-
$attrs:
|
|
31
|
-
[x: string]: unknown;
|
|
32
|
-
};
|
|
30
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
33
31
|
$refs: {
|
|
34
32
|
[x: string]: unknown;
|
|
35
33
|
};
|
|
@@ -128,11 +126,11 @@ declare const OActivityForm: {
|
|
|
128
126
|
onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
|
|
129
127
|
onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
130
128
|
onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
131
|
-
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> &
|
|
129
|
+
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> & {
|
|
132
130
|
validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
|
|
133
131
|
resetFields: (filed?: string | string[]) => void;
|
|
134
132
|
clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
|
|
135
|
-
}
|
|
133
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
136
134
|
$slots: {
|
|
137
135
|
default?(_: {}): any;
|
|
138
136
|
};
|
|
@@ -184,9 +182,7 @@ declare const OActivityApproval: {
|
|
|
184
182
|
readonly onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
185
183
|
readonly onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined | undefined;
|
|
186
184
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "hasRequired" | "layout">;
|
|
187
|
-
$attrs:
|
|
188
|
-
[x: string]: unknown;
|
|
189
|
-
};
|
|
185
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
190
186
|
$refs: {
|
|
191
187
|
[x: string]: unknown;
|
|
192
188
|
};
|
|
@@ -285,11 +281,11 @@ declare const OActivityApproval: {
|
|
|
285
281
|
onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
|
|
286
282
|
onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
287
283
|
onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
|
|
288
|
-
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> &
|
|
284
|
+
}>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> & {
|
|
289
285
|
validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
|
|
290
286
|
resetFields: (filed?: string | string[]) => void;
|
|
291
287
|
clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
|
|
292
|
-
}
|
|
288
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
293
289
|
$slots: {
|
|
294
290
|
default?(_: {}): any;
|
|
295
291
|
};
|
|
@@ -332,9 +328,7 @@ declare const OMyActivityCalendar: {
|
|
|
332
328
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined | undefined;
|
|
333
329
|
onInput?: ((value: Date) => any) | undefined | undefined;
|
|
334
330
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "controllerType">;
|
|
335
|
-
$attrs:
|
|
336
|
-
[x: string]: unknown;
|
|
337
|
-
};
|
|
331
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
338
332
|
$refs: {
|
|
339
333
|
[x: string]: unknown;
|
|
340
334
|
};
|
|
@@ -424,12 +418,12 @@ declare const OMyActivityCalendar: {
|
|
|
424
418
|
}>> & {
|
|
425
419
|
"onUpdate:modelValue"?: ((value: Date) => any) | undefined;
|
|
426
420
|
onInput?: ((value: Date) => any) | undefined;
|
|
427
|
-
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> &
|
|
428
|
-
selectedDay: import('
|
|
421
|
+
}, "controllerType" | "selectedDay" | "pickDay" | "selectDate" | "calculateValidatedDateRange"> & {
|
|
422
|
+
selectedDay: import('dayjs').Dayjs | undefined;
|
|
429
423
|
pickDay: (day: import('dayjs').Dayjs) => void;
|
|
430
424
|
selectDate: (type: import('element-plus').CalendarDateType) => void;
|
|
431
425
|
calculateValidatedDateRange: (startDayjs: import('dayjs').Dayjs, endDayjs: import('dayjs').Dayjs) => [import('dayjs').Dayjs, import('dayjs').Dayjs][];
|
|
432
|
-
}
|
|
426
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
433
427
|
$slots: {
|
|
434
428
|
header?: (props: {
|
|
435
429
|
date: string;
|
|
@@ -471,12 +465,19 @@ declare const OMyActivityCalendar: {
|
|
|
471
465
|
readonly disabledY: boolean;
|
|
472
466
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
473
467
|
readonly autoUpdateOnScrollSize: boolean;
|
|
474
|
-
readonly wrapClass?: string |
|
|
475
|
-
|
|
468
|
+
readonly wrapClass?: string | {
|
|
469
|
+
[k: string]: boolean;
|
|
470
|
+
} | (string | {
|
|
471
|
+
[k: string]: boolean;
|
|
472
|
+
})[] | undefined;
|
|
473
|
+
readonly barClass?: string | {
|
|
474
|
+
[k: string]: boolean;
|
|
475
|
+
} | (string | {
|
|
476
|
+
[k: string]: boolean;
|
|
477
|
+
})[] | undefined;
|
|
478
|
+
readonly onScroll?: ((event: Event) => any) | undefined | undefined;
|
|
476
479
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize">;
|
|
477
|
-
$attrs:
|
|
478
|
-
[x: string]: unknown;
|
|
479
|
-
};
|
|
480
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
480
481
|
$refs: {
|
|
481
482
|
[x: string]: unknown;
|
|
482
483
|
} & {
|
|
@@ -488,15 +489,19 @@ declare const OMyActivityCalendar: {
|
|
|
488
489
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
489
490
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
490
491
|
$host: Element | null;
|
|
491
|
-
$emit: (event:
|
|
492
|
+
$emit: (event: "scroll", event: Event) => void;
|
|
492
493
|
$el: HTMLDivElement;
|
|
493
494
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
494
495
|
wrapClass: {
|
|
495
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
496
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
497
|
+
[k: string]: boolean;
|
|
498
|
+
} | Array<{
|
|
499
|
+
[k: string]: boolean;
|
|
500
|
+
} | string>>;
|
|
496
501
|
};
|
|
497
502
|
disabledX: {
|
|
498
503
|
type: BooleanConstructor;
|
|
499
|
-
required:
|
|
504
|
+
required: false;
|
|
500
505
|
};
|
|
501
506
|
disabledY: {
|
|
502
507
|
type: BooleanConstructor;
|
|
@@ -517,12 +522,20 @@ declare const OMyActivityCalendar: {
|
|
|
517
522
|
type: BooleanConstructor;
|
|
518
523
|
};
|
|
519
524
|
barClass: {
|
|
520
|
-
type:
|
|
525
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
526
|
+
[k: string]: boolean;
|
|
527
|
+
} | Array<{
|
|
528
|
+
[k: string]: boolean;
|
|
529
|
+
} | string>>;
|
|
521
530
|
};
|
|
522
|
-
}>> & Readonly<{
|
|
531
|
+
}>> & Readonly<{
|
|
532
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
533
|
+
}>, {
|
|
523
534
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
524
535
|
getContainerEl(): HTMLElement | null;
|
|
525
|
-
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
536
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
537
|
+
scroll: (event: Event) => any;
|
|
538
|
+
}, string, {
|
|
526
539
|
size: "medium" | "small";
|
|
527
540
|
duration: number;
|
|
528
541
|
disabledX: boolean;
|
|
@@ -558,11 +571,15 @@ declare const OMyActivityCalendar: {
|
|
|
558
571
|
autoUpdateOnScrollSize: boolean;
|
|
559
572
|
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
560
573
|
wrapClass: {
|
|
561
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
574
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
575
|
+
[k: string]: boolean;
|
|
576
|
+
} | Array<{
|
|
577
|
+
[k: string]: boolean;
|
|
578
|
+
} | string>>;
|
|
562
579
|
};
|
|
563
580
|
disabledX: {
|
|
564
581
|
type: BooleanConstructor;
|
|
565
|
-
required:
|
|
582
|
+
required: false;
|
|
566
583
|
};
|
|
567
584
|
disabledY: {
|
|
568
585
|
type: BooleanConstructor;
|
|
@@ -583,12 +600,18 @@ declare const OMyActivityCalendar: {
|
|
|
583
600
|
type: BooleanConstructor;
|
|
584
601
|
};
|
|
585
602
|
barClass: {
|
|
586
|
-
type:
|
|
603
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
604
|
+
[k: string]: boolean;
|
|
605
|
+
} | Array<{
|
|
606
|
+
[k: string]: boolean;
|
|
607
|
+
} | string>>;
|
|
587
608
|
};
|
|
588
|
-
}>> & Readonly<{
|
|
609
|
+
}>> & Readonly<{
|
|
610
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
611
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
589
612
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
590
|
-
getContainerEl()
|
|
591
|
-
}
|
|
613
|
+
getContainerEl: () => HTMLElement | null;
|
|
614
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
592
615
|
$slots: {
|
|
593
616
|
default?(_: {}): any;
|
|
594
617
|
thumb?(_: {}): any;
|
|
@@ -13,10 +13,11 @@ export interface ParamsItemT {
|
|
|
13
13
|
end: string;
|
|
14
14
|
schedules?: string;
|
|
15
15
|
is_publish: string;
|
|
16
|
-
update_activity_id?: string;
|
|
16
|
+
update_activity_id?: string | number;
|
|
17
17
|
email_list?: string;
|
|
18
18
|
organizer?: string;
|
|
19
19
|
approver: string;
|
|
20
|
+
status?: number;
|
|
20
21
|
}
|
|
21
22
|
export interface ActivityFormPropsT {
|
|
22
23
|
data?: ParamsItemT;
|
|
@@ -46,12 +47,18 @@ export interface ActivityItemT {
|
|
|
46
47
|
live_address: string;
|
|
47
48
|
register_end_date: string;
|
|
48
49
|
register_url: string;
|
|
50
|
+
content_url: string;
|
|
49
51
|
start: string;
|
|
50
52
|
status: number;
|
|
51
53
|
synopsis: string;
|
|
52
54
|
title: string;
|
|
53
55
|
update_activity_id: number;
|
|
54
56
|
user: string;
|
|
57
|
+
sponsor: string;
|
|
58
|
+
create_time: string;
|
|
59
|
+
isExpired?: number;
|
|
60
|
+
sub_id?: string;
|
|
61
|
+
dateRange?: string;
|
|
55
62
|
}
|
|
56
63
|
export interface ReviewParamsT {
|
|
57
64
|
page: number;
|
|
@@ -5,23 +5,10 @@ export declare const EVENTS_COLOR_MAP: {
|
|
|
5
5
|
release: string;
|
|
6
6
|
};
|
|
7
7
|
export declare const EVENTS_ICON_MAP: {
|
|
8
|
-
events:
|
|
9
|
-
competition:
|
|
10
|
-
release:
|
|
11
|
-
summit:
|
|
12
|
-
};
|
|
13
|
-
export declare const CITY_MAP: {
|
|
14
|
-
上海: string;
|
|
15
|
-
北京: string;
|
|
16
|
-
南京: string;
|
|
17
|
-
天津: string;
|
|
18
|
-
成都: string;
|
|
19
|
-
无锡: string;
|
|
20
|
-
杭州: string;
|
|
21
|
-
深圳: string[];
|
|
22
|
-
苏州: string;
|
|
23
|
-
西安: string;
|
|
24
|
-
郑州: string;
|
|
25
|
-
武汉: string;
|
|
8
|
+
events: string;
|
|
9
|
+
competition: string;
|
|
10
|
+
release: string;
|
|
11
|
+
summit: string;
|
|
26
12
|
};
|
|
13
|
+
export declare const CITY_MAP: Record<string, string | string[]>;
|
|
27
14
|
export declare const DEFAULT_COVER = "https://infrastructure-website.osinfra.cn/picture/city/default-cover.jpg";
|