@feedmepos/mf-transaction 0.0.6-beta → 0.0.8-beta
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/{app-DvTXMdAl.js → app-CFcSf1rQ.js} +49825 -44990
- package/dist/app.js +1 -1
- package/dist/apps/mf-transaction/src/api/transaction/index.d.ts +5 -3
- package/dist/apps/mf-transaction/src/router/shared.d.ts +0 -1
- package/dist/apps/mf-transaction/src/views/receipt/receipt.d.ts +5 -5
- package/dist/apps/mf-transaction/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index.es-Yqc0W6vL.js → index.es-BtLt3lQ5.js} +651 -651
- package/dist/packages/shared/src/components/dialog/ConfirmActionDialog.vue.d.ts +30 -0
- package/dist/packages/shared/src/components/info/TextChip.vue.d.ts +15 -0
- package/dist/packages/shared/src/components/layout/FormColumn.vue.d.ts +21 -0
- package/dist/packages/shared/src/components/layout/FormItem.vue.d.ts +21 -0
- package/dist/packages/shared/src/components/layout/FormRow.vue.d.ts +9 -0
- package/dist/packages/shared/src/components/layout/FormSection.vue.d.ts +24 -0
- package/dist/packages/shared/src/components/layout/FullScreenForm.vue.d.ts +16 -1
- package/dist/packages/shared/src/components/layout/FullWrapper.vue.d.ts +9 -0
- package/dist/packages/shared/src/components/layout/Indent.vue.d.ts +9 -0
- package/dist/packages/shared/src/components/menu/BottomSheetMenuItem.vue.d.ts +1 -0
- package/dist/packages/shared/src/components/menu/ResponsiveContextMenu.vue.d.ts +22 -0
- package/dist/packages/shared/src/composable/elementPosition.d.ts +17 -0
- package/dist/packages/shared/src/composable/filterSelector.d.ts +1 -1
- package/dist/packages/shared/src/helpers/iteration.d.ts +1 -0
- package/dist/packages/shared/src/helpers/object.d.ts +1 -1
- package/dist/packages/shared/src/types/types.d.ts +5 -0
- package/package.json +4 -4
- package/dist/apps/mf-transaction/src/components/AppForm.vue.d.ts +0 -41
- package/dist/apps/mf-transaction/src/components/CheckboxInput.vue.d.ts +0 -140
- package/dist/apps/mf-transaction/src/components/FilterDialog.vue.d.ts +0 -13
- package/dist/apps/mf-transaction/src/views/online/OnlineTransaction.vue.d.ts +0 -2
- package/dist/apps/mf-transaction/src/views/online/PaymentTable.vue.d.ts +0 -121
- package/dist/apps/mf-transaction/src/views/online/SettlementTable.vue.d.ts +0 -66
- package/dist/apps/mf-transaction/src/views/online/detail/FmSettlement.vue.d.ts +0 -32
- package/dist/apps/mf-transaction/src/views/online/detail/RmsSettlement.vue.d.ts +0 -22
- package/dist/apps/mf-transaction/src/views/online/detail/SettlementDetail.vue.d.ts +0 -5
- package/dist/apps/mf-transaction/src/views/online/settlement.d.ts +0 -52
- package/dist/style.css +0 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
description: string;
|
|
3
|
+
value: string;
|
|
4
|
+
message: string;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
7
|
+
message: string;
|
|
8
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
9
|
+
message: string;
|
|
10
|
+
}>>> & Readonly<{}>, {
|
|
11
|
+
message: string;
|
|
12
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
15
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
16
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
17
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
18
|
+
} : {
|
|
19
|
+
type: import('vue').PropType<T[K]>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
type __VLS_WithDefaults<P, D> = {
|
|
24
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
25
|
+
default: D[K];
|
|
26
|
+
}> : P[K];
|
|
27
|
+
};
|
|
28
|
+
type __VLS_Prettify<T> = {
|
|
29
|
+
[K in keyof T]: T[K];
|
|
30
|
+
} & {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
label: string;
|
|
3
|
+
variant: "neutral" | "primary" | "secondary" | "success" | "warning" | "error";
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
export default _default;
|
|
7
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
8
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
9
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
10
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
11
|
+
} : {
|
|
12
|
+
type: import('vue').PropType<T[K]>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
shrinkable?: boolean;
|
|
3
|
+
}
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
}>;
|
|
7
|
+
export default _default;
|
|
8
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
9
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
10
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
11
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
12
|
+
} : {
|
|
13
|
+
type: import('vue').PropType<T[K]>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
label?: string;
|
|
3
|
+
}
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
}>;
|
|
7
|
+
export default _default;
|
|
8
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
9
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
10
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
11
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
12
|
+
} : {
|
|
13
|
+
type: import('vue').PropType<T[K]>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
}>;
|
|
4
|
+
export default _default;
|
|
5
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
+
new (): {
|
|
7
|
+
$slots: S;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
title?: string;
|
|
3
|
+
subTitle?: string;
|
|
4
|
+
shrinkable?: boolean;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
7
|
+
"append-title"?(_: {}): any;
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
}>;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
12
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
13
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
14
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
15
|
+
} : {
|
|
16
|
+
type: import('vue').PropType<T[K]>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -8,8 +8,15 @@ interface FullScreenFormProps {
|
|
|
8
8
|
label: string;
|
|
9
9
|
click?: () => void;
|
|
10
10
|
}[];
|
|
11
|
+
zIndex?: number;
|
|
11
12
|
}
|
|
12
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<
|
|
13
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FullScreenFormProps>, {
|
|
14
|
+
zIndex: number;
|
|
15
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FullScreenFormProps>, {
|
|
16
|
+
zIndex: number;
|
|
17
|
+
}>>> & Readonly<{}>, {
|
|
18
|
+
zIndex: number;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
13
20
|
"append-title"?(_: {}): any;
|
|
14
21
|
default?(_: {}): any;
|
|
15
22
|
}>;
|
|
@@ -23,6 +30,14 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
23
30
|
required: true;
|
|
24
31
|
};
|
|
25
32
|
};
|
|
33
|
+
type __VLS_WithDefaults<P, D> = {
|
|
34
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
35
|
+
default: D[K];
|
|
36
|
+
}> : P[K];
|
|
37
|
+
};
|
|
38
|
+
type __VLS_Prettify<T> = {
|
|
39
|
+
[K in keyof T]: T[K];
|
|
40
|
+
} & {};
|
|
26
41
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
42
|
new (): {
|
|
28
43
|
$slots: S;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
}>;
|
|
4
|
+
export default _default;
|
|
5
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
+
new (): {
|
|
7
|
+
$slots: S;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
}>;
|
|
4
|
+
export default _default;
|
|
5
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
+
new (): {
|
|
7
|
+
$slots: S;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
@@ -2,6 +2,7 @@ interface BottomSheetMenuItemProps {
|
|
|
2
2
|
label: string;
|
|
3
3
|
icon?: string;
|
|
4
4
|
disabled?: boolean;
|
|
5
|
+
itemClass?: string;
|
|
5
6
|
}
|
|
6
7
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<BottomSheetMenuItemProps>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<BottomSheetMenuItemProps>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7
8
|
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
interface ContextMenuItem {
|
|
2
|
+
icon?: string;
|
|
3
|
+
label: string;
|
|
4
|
+
subLabel?: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
itemClass?: string;
|
|
7
|
+
onClick: () => void;
|
|
8
|
+
}
|
|
9
|
+
interface Props {
|
|
10
|
+
items: ContextMenuItem[];
|
|
11
|
+
}
|
|
12
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
15
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
16
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
17
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
18
|
+
} : {
|
|
19
|
+
type: import('vue').PropType<T[K]>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { type Ref } from "vue";
|
|
2
|
+
export declare function useElementPosition(el: Ref<HTMLElement | null>): Ref<{
|
|
3
|
+
top: number;
|
|
4
|
+
bottom: number;
|
|
5
|
+
left: number;
|
|
6
|
+
right: number;
|
|
7
|
+
}, {
|
|
8
|
+
top: number;
|
|
9
|
+
bottom: number;
|
|
10
|
+
left: number;
|
|
11
|
+
right: number;
|
|
12
|
+
} | {
|
|
13
|
+
top: number;
|
|
14
|
+
bottom: number;
|
|
15
|
+
left: number;
|
|
16
|
+
right: number;
|
|
17
|
+
}>;
|
|
@@ -2,7 +2,7 @@ import { type Ref } from "vue";
|
|
|
2
2
|
interface Option<T> {
|
|
3
3
|
value: T;
|
|
4
4
|
}
|
|
5
|
-
export declare function useFilterSelector<T>(options: Ref<Option<T>[]>, model: Ref<T[] | undefined>): {
|
|
5
|
+
export declare function useFilterSelector<T>(options: Ref<Option<T>[]>, model: Ref<T[] | undefined | null>): {
|
|
6
6
|
allCleared: Ref<boolean, boolean>;
|
|
7
7
|
allSelected: import("vue").ComputedRef<boolean>;
|
|
8
8
|
indeterminate: import("vue").ComputedRef<boolean>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feedmepos/mf-transaction",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8-beta",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"purge:prod": "curl https://purge.jsdelivr.net/npm/@feedmepos/mf-team@latest/dist/app.js"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@feedmepos/ui-library": "^1.2.
|
|
41
|
-
"@feedmepos/core": "^2.
|
|
40
|
+
"@feedmepos/ui-library": "^1.2.50",
|
|
41
|
+
"@feedmepos/core": "^2.12.10",
|
|
42
42
|
"@feedmepos/core-dart": "^0.2.6",
|
|
43
43
|
"@feedmepos/mf-common": "workspace:^",
|
|
44
|
-
"@feedmepos/print": "file:../../core-
|
|
44
|
+
"@feedmepos/print": "file:../../core-legacy-0.1.tar.gz",
|
|
45
45
|
"@feedmepos/payment-model": "0.0.12",
|
|
46
46
|
"@vitejs/plugin-vue-jsx": "^4.0.0",
|
|
47
47
|
"axios": "^1.6.2",
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
title: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: undefined;
|
|
5
|
-
};
|
|
6
|
-
required: {
|
|
7
|
-
type: (BooleanConstructor | StringConstructor)[];
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
inline: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
title: {
|
|
16
|
-
type: StringConstructor;
|
|
17
|
-
default: undefined;
|
|
18
|
-
};
|
|
19
|
-
required: {
|
|
20
|
-
type: (BooleanConstructor | StringConstructor)[];
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
23
|
-
inline: {
|
|
24
|
-
type: BooleanConstructor;
|
|
25
|
-
default: boolean;
|
|
26
|
-
};
|
|
27
|
-
}>> & Readonly<{}>, {
|
|
28
|
-
required: string | boolean;
|
|
29
|
-
title: string;
|
|
30
|
-
inline: boolean;
|
|
31
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
32
|
-
top?(_: {}): any;
|
|
33
|
-
"title-right"?(_: {}): any;
|
|
34
|
-
default?(_: {}): any;
|
|
35
|
-
}>;
|
|
36
|
-
export default _default;
|
|
37
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
|
-
new (): {
|
|
39
|
-
$slots: S;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
@@ -1,140 +0,0 @@
|
|
|
1
|
-
import { type PropType } from "vue";
|
|
2
|
-
export interface CheckboxOption {
|
|
3
|
-
key?: string;
|
|
4
|
-
label: string;
|
|
5
|
-
value: any;
|
|
6
|
-
disable?: boolean;
|
|
7
|
-
suffix?: {
|
|
8
|
-
text: string;
|
|
9
|
-
class: string;
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13
|
-
options: {
|
|
14
|
-
type: PropType<CheckboxOption[]>;
|
|
15
|
-
required: true;
|
|
16
|
-
};
|
|
17
|
-
title: {
|
|
18
|
-
type: StringConstructor;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
modelValue: {
|
|
22
|
-
type: PropType<unknown[]>;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
|
-
showAllToggle: {
|
|
26
|
-
type: (BooleanConstructor | StringConstructor)[];
|
|
27
|
-
default: boolean;
|
|
28
|
-
};
|
|
29
|
-
disable: {
|
|
30
|
-
type: BooleanConstructor;
|
|
31
|
-
default: boolean;
|
|
32
|
-
};
|
|
33
|
-
min: {
|
|
34
|
-
type: NumberConstructor;
|
|
35
|
-
default: number;
|
|
36
|
-
};
|
|
37
|
-
max: {
|
|
38
|
-
type: NumberConstructor;
|
|
39
|
-
default: undefined;
|
|
40
|
-
};
|
|
41
|
-
showIntermediate: {
|
|
42
|
-
type: BooleanConstructor;
|
|
43
|
-
default: boolean;
|
|
44
|
-
};
|
|
45
|
-
gutter: {
|
|
46
|
-
type: NumberConstructor;
|
|
47
|
-
default: undefined;
|
|
48
|
-
};
|
|
49
|
-
falsyShowSlot: {
|
|
50
|
-
type: BooleanConstructor;
|
|
51
|
-
default: boolean;
|
|
52
|
-
};
|
|
53
|
-
bottomSlotIndent: {
|
|
54
|
-
type: StringConstructor;
|
|
55
|
-
default: string;
|
|
56
|
-
};
|
|
57
|
-
alignCenter: {
|
|
58
|
-
type: BooleanConstructor;
|
|
59
|
-
default: boolean;
|
|
60
|
-
};
|
|
61
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
62
|
-
"update:model-value": (value: any[]) => void;
|
|
63
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
|
-
options: {
|
|
65
|
-
type: PropType<CheckboxOption[]>;
|
|
66
|
-
required: true;
|
|
67
|
-
};
|
|
68
|
-
title: {
|
|
69
|
-
type: StringConstructor;
|
|
70
|
-
required: true;
|
|
71
|
-
};
|
|
72
|
-
modelValue: {
|
|
73
|
-
type: PropType<unknown[]>;
|
|
74
|
-
required: true;
|
|
75
|
-
};
|
|
76
|
-
showAllToggle: {
|
|
77
|
-
type: (BooleanConstructor | StringConstructor)[];
|
|
78
|
-
default: boolean;
|
|
79
|
-
};
|
|
80
|
-
disable: {
|
|
81
|
-
type: BooleanConstructor;
|
|
82
|
-
default: boolean;
|
|
83
|
-
};
|
|
84
|
-
min: {
|
|
85
|
-
type: NumberConstructor;
|
|
86
|
-
default: number;
|
|
87
|
-
};
|
|
88
|
-
max: {
|
|
89
|
-
type: NumberConstructor;
|
|
90
|
-
default: undefined;
|
|
91
|
-
};
|
|
92
|
-
showIntermediate: {
|
|
93
|
-
type: BooleanConstructor;
|
|
94
|
-
default: boolean;
|
|
95
|
-
};
|
|
96
|
-
gutter: {
|
|
97
|
-
type: NumberConstructor;
|
|
98
|
-
default: undefined;
|
|
99
|
-
};
|
|
100
|
-
falsyShowSlot: {
|
|
101
|
-
type: BooleanConstructor;
|
|
102
|
-
default: boolean;
|
|
103
|
-
};
|
|
104
|
-
bottomSlotIndent: {
|
|
105
|
-
type: StringConstructor;
|
|
106
|
-
default: string;
|
|
107
|
-
};
|
|
108
|
-
alignCenter: {
|
|
109
|
-
type: BooleanConstructor;
|
|
110
|
-
default: boolean;
|
|
111
|
-
};
|
|
112
|
-
}>> & Readonly<{
|
|
113
|
-
"onUpdate:model-value"?: ((value: any[]) => any) | undefined;
|
|
114
|
-
}>, {
|
|
115
|
-
max: number;
|
|
116
|
-
min: number;
|
|
117
|
-
showAllToggle: string | boolean;
|
|
118
|
-
disable: boolean;
|
|
119
|
-
showIntermediate: boolean;
|
|
120
|
-
gutter: number;
|
|
121
|
-
falsyShowSlot: boolean;
|
|
122
|
-
bottomSlotIndent: string;
|
|
123
|
-
alignCenter: boolean;
|
|
124
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Partial<Record<`checkbox-${any}-end`, (_: {
|
|
125
|
-
option: CheckboxOption;
|
|
126
|
-
value: boolean;
|
|
127
|
-
disable: boolean | undefined;
|
|
128
|
-
}) => any>> & Partial<Record<`checkbox-${any}-bottom`, (_: {
|
|
129
|
-
option: CheckboxOption;
|
|
130
|
-
disable: boolean | undefined;
|
|
131
|
-
value: boolean;
|
|
132
|
-
}) => any>> & {
|
|
133
|
-
top?(_: {}): any;
|
|
134
|
-
}>;
|
|
135
|
-
export default _default;
|
|
136
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
137
|
-
new (): {
|
|
138
|
-
$slots: S;
|
|
139
|
-
};
|
|
140
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { type PropType } from "vue";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
-
selectedRestaurants: {
|
|
4
|
-
type: PropType<string[]>;
|
|
5
|
-
required: true;
|
|
6
|
-
};
|
|
7
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
-
selectedRestaurants: {
|
|
9
|
-
type: PropType<string[]>;
|
|
10
|
-
required: true;
|
|
11
|
-
};
|
|
12
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
import { type PropType } from "vue";
|
|
2
|
-
import type { FmPayment } from "@/views/online/settlement";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
-
data: {
|
|
5
|
-
type: PropType<FmPayment[]>;
|
|
6
|
-
required: true;
|
|
7
|
-
};
|
|
8
|
-
searchKey: {
|
|
9
|
-
type: StringConstructor;
|
|
10
|
-
required: false;
|
|
11
|
-
default: string;
|
|
12
|
-
};
|
|
13
|
-
loading: {
|
|
14
|
-
type: BooleanConstructor;
|
|
15
|
-
required: true;
|
|
16
|
-
};
|
|
17
|
-
paginable: {
|
|
18
|
-
type: BooleanConstructor;
|
|
19
|
-
default: boolean;
|
|
20
|
-
};
|
|
21
|
-
actions: {
|
|
22
|
-
type: PropType<(payment: FmPayment) => any>;
|
|
23
|
-
default: undefined;
|
|
24
|
-
};
|
|
25
|
-
rows: {
|
|
26
|
-
type: NumberConstructor;
|
|
27
|
-
default: number;
|
|
28
|
-
};
|
|
29
|
-
showOrderId: {
|
|
30
|
-
type: BooleanConstructor;
|
|
31
|
-
default: boolean;
|
|
32
|
-
};
|
|
33
|
-
showSequenceNumber: {
|
|
34
|
-
type: BooleanConstructor;
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
37
|
-
showPayout: {
|
|
38
|
-
type: BooleanConstructor;
|
|
39
|
-
default: boolean;
|
|
40
|
-
};
|
|
41
|
-
showStore: {
|
|
42
|
-
type: BooleanConstructor;
|
|
43
|
-
default: boolean;
|
|
44
|
-
};
|
|
45
|
-
showEvent: {
|
|
46
|
-
type: BooleanConstructor;
|
|
47
|
-
default: boolean;
|
|
48
|
-
};
|
|
49
|
-
noShrink: {
|
|
50
|
-
type: BooleanConstructor;
|
|
51
|
-
default: boolean;
|
|
52
|
-
};
|
|
53
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
54
|
-
"row-click": (payment: FmPayment) => void;
|
|
55
|
-
paginate: () => void;
|
|
56
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
57
|
-
data: {
|
|
58
|
-
type: PropType<FmPayment[]>;
|
|
59
|
-
required: true;
|
|
60
|
-
};
|
|
61
|
-
searchKey: {
|
|
62
|
-
type: StringConstructor;
|
|
63
|
-
required: false;
|
|
64
|
-
default: string;
|
|
65
|
-
};
|
|
66
|
-
loading: {
|
|
67
|
-
type: BooleanConstructor;
|
|
68
|
-
required: true;
|
|
69
|
-
};
|
|
70
|
-
paginable: {
|
|
71
|
-
type: BooleanConstructor;
|
|
72
|
-
default: boolean;
|
|
73
|
-
};
|
|
74
|
-
actions: {
|
|
75
|
-
type: PropType<(payment: FmPayment) => any>;
|
|
76
|
-
default: undefined;
|
|
77
|
-
};
|
|
78
|
-
rows: {
|
|
79
|
-
type: NumberConstructor;
|
|
80
|
-
default: number;
|
|
81
|
-
};
|
|
82
|
-
showOrderId: {
|
|
83
|
-
type: BooleanConstructor;
|
|
84
|
-
default: boolean;
|
|
85
|
-
};
|
|
86
|
-
showSequenceNumber: {
|
|
87
|
-
type: BooleanConstructor;
|
|
88
|
-
default: boolean;
|
|
89
|
-
};
|
|
90
|
-
showPayout: {
|
|
91
|
-
type: BooleanConstructor;
|
|
92
|
-
default: boolean;
|
|
93
|
-
};
|
|
94
|
-
showStore: {
|
|
95
|
-
type: BooleanConstructor;
|
|
96
|
-
default: boolean;
|
|
97
|
-
};
|
|
98
|
-
showEvent: {
|
|
99
|
-
type: BooleanConstructor;
|
|
100
|
-
default: boolean;
|
|
101
|
-
};
|
|
102
|
-
noShrink: {
|
|
103
|
-
type: BooleanConstructor;
|
|
104
|
-
default: boolean;
|
|
105
|
-
};
|
|
106
|
-
}>> & Readonly<{
|
|
107
|
-
"onRow-click"?: ((payment: FmPayment) => any) | undefined;
|
|
108
|
-
onPaginate?: (() => any) | undefined;
|
|
109
|
-
}>, {
|
|
110
|
-
actions: (payment: FmPayment) => any;
|
|
111
|
-
searchKey: string;
|
|
112
|
-
paginable: boolean;
|
|
113
|
-
rows: number;
|
|
114
|
-
showOrderId: boolean;
|
|
115
|
-
showSequenceNumber: boolean;
|
|
116
|
-
showPayout: boolean;
|
|
117
|
-
showStore: boolean;
|
|
118
|
-
showEvent: boolean;
|
|
119
|
-
noShrink: boolean;
|
|
120
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
121
|
-
export default _default;
|