@polyv/lucky-bag-ui-launch 2.5.0-rc-20260604.1

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/index.es.d.ts ADDED
@@ -0,0 +1,68 @@
1
+ import { ComponentOptionsMixin } from 'vue';
2
+ import { DefineComponent } from 'vue';
3
+ import { ExtractPropTypes } from 'vue';
4
+ import { LuckyBagPkgType } from '@polyv/lucky-bag-ui-shared';
5
+ import { default as LuckyBagPopup } from './entrance/lucky-bag-popup/lucky-bag-popup.vue';
6
+ import { default as LuckyBagWinners } from './entrance/lucky-bag-winners/lucky-bag-winners.vue';
7
+ import { default as MobileLuckyBagPopup } from './entrance/mobile-lucky-bag-popup/mobile-lucky-bag-popup.vue';
8
+ import { useLuckyBagGlobalProvide } from '@polyv/lucky-bag-ui-shared';
9
+ import { useWebviewPopupProvide } from '@polyv/ui-shared';
10
+ import { ValidatorFunction } from 'vue-types/dist/types';
11
+ import { VueTypeValidableDef } from 'vue-types';
12
+ import { WebviewPopupProvideOptions } from '@polyv/ui-shared';
13
+
14
+ export declare const LuckyBagData: DefineComponent< {}, {
15
+ refreshList: () => void;
16
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
17
+ "view-winners": (arg: LuckyBagPkgType.LuckyBagDataRecord) => void;
18
+ "export-data-list": (arg: LuckyBagPkgType.LuckyBagDataRecordQuery) => void;
19
+ "download-data-result": (arg: LuckyBagPkgType.LuckyBagDataRecord) => void;
20
+ }, string, Readonly<ExtractPropTypes< {}>>, {}>;
21
+
22
+ export declare const LuckyBagForm: DefineComponent< {}, {
23
+ openCreate: () => void;
24
+ openEdit: (activityId: number | string) => Promise<void>;
25
+ openCopy: (activityId: number | string) => Promise<void>;
26
+ openPreview: (activityId: number | string) => Promise<void>;
27
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
28
+ cancel: (arg?: void | undefined) => void;
29
+ "save-success": (arg?: void | undefined) => void;
30
+ }, string, Readonly<ExtractPropTypes< {}>>, {}>;
31
+
32
+ export declare const LuckyBagList: DefineComponent< {
33
+ showViewData: VueTypeValidableDef<boolean, ValidatorFunction<boolean>> & {
34
+ default: boolean;
35
+ } & {
36
+ default: boolean;
37
+ };
38
+ }, {
39
+ refreshList: () => void;
40
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
41
+ edit: (arg: LuckyBagPkgType.LuckyBagListItem) => void;
42
+ view: (arg: LuckyBagPkgType.LuckyBagListItem) => void;
43
+ copy: (arg: LuckyBagPkgType.LuckyBagListItem) => void;
44
+ create: (arg?: void | undefined) => void;
45
+ "view-data": (arg?: void | undefined) => void;
46
+ }, string, Readonly<ExtractPropTypes< {
47
+ showViewData: VueTypeValidableDef<boolean, ValidatorFunction<boolean>> & {
48
+ default: boolean;
49
+ } & {
50
+ default: boolean;
51
+ };
52
+ }>>, {
53
+ showViewData: boolean;
54
+ }>;
55
+
56
+ export { LuckyBagPopup }
57
+
58
+ export { LuckyBagWinners }
59
+
60
+ export { MobileLuckyBagPopup }
61
+
62
+ export { useLuckyBagGlobalProvide }
63
+
64
+ export { useWebviewPopupProvide }
65
+
66
+ export { WebviewPopupProvideOptions }
67
+
68
+ export { }