@polyv/lottery-ui-launch 2.5.0-rc-20260205.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.cjs.js +831 -0
- package/index.es.d.ts +38 -0
- package/index.es.js +28288 -0
- package/index.umd.js +831 -0
- package/package.json +7 -0
package/index.es.d.ts
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ComponentOptionsMixin } from 'vue';
|
|
2
|
+
import { DefineComponent } from 'vue';
|
|
3
|
+
import { ExtractPropTypes } from 'vue';
|
|
4
|
+
import { default as LotteryDialog } from './entrance/lottery-dialog/lottery-dialog.vue';
|
|
5
|
+
import { useLotteryGlobalProvide } from '@polyv/lottery-ui-shared';
|
|
6
|
+
|
|
7
|
+
export declare const ChoiceLotteryActivity: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, Readonly<ExtractPropTypes< {}>>, {}>;
|
|
8
|
+
|
|
9
|
+
export { LotteryDialog }
|
|
10
|
+
|
|
11
|
+
export declare const LotteryForm: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, Readonly<ExtractPropTypes< {}>>, {}>;
|
|
12
|
+
|
|
13
|
+
export declare const LotteryList: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, Readonly<ExtractPropTypes< {}>>, {}>;
|
|
14
|
+
|
|
15
|
+
export declare const LotteryWinners: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, Readonly<ExtractPropTypes< {}>>, {}>;
|
|
16
|
+
|
|
17
|
+
export declare const uiLotteryLaunchEvents: {
|
|
18
|
+
readonly ChooseLotteryActivity: "ui-lottery-launch.ChooseLotteryActivity";
|
|
19
|
+
readonly ResetLotteryForm: "ui-lottery-launch.ResetLotteryForm";
|
|
20
|
+
readonly RefreshLotteryList: "ui-lottery-launch.RefreshLotteryList";
|
|
21
|
+
readonly SetAnswerRecord: "ui-lottery-launch.SetAnswerRecord";
|
|
22
|
+
readonly OpenLotteryWinners: "ui-lottery-launch.OpenLotteryWinners";
|
|
23
|
+
readonly OpenAnswerLotteryQuestionnaireChoice: "ui-lottery-launch.OpenAnswerLotteryQuestionnaireChoice";
|
|
24
|
+
readonly SetAnswerLotteryQuestionnaire: "ui-lottery-launch.SetAnswerLotteryQuestionnaire";
|
|
25
|
+
readonly OpenQuestionnaireChoice: "ui-lottery-launch.OpenQuestionnaireChoice";
|
|
26
|
+
readonly SetQuestionnaire: "ui-lottery-launch.SetQuestionnaire";
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export { useLotteryGlobalProvide }
|
|
30
|
+
|
|
31
|
+
export { }
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
declare module "@polyv/lottery-ui-shared" {
|
|
35
|
+
interface LotteryProvideData {
|
|
36
|
+
getLaunchConfig?: () => LotteryLaunchConfig;
|
|
37
|
+
}
|
|
38
|
+
}
|