command-center-v3-common 0.0.15 → 0.0.17
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/command-center-v3-common.js +328 -316
- package/dist/command-center-v3-common.umd.cjs +2 -2
- package/dist/index.d.ts +48 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
import { ComponentOptionsMixin } from 'vue';
|
2
2
|
import { DefineComponent } from 'vue';
|
3
|
-
import { default as HyDataTimeShortcuts } from './common/data-time-shortcuts/index.vue';
|
4
3
|
import { PropType as PropType_2 } from 'vue';
|
5
4
|
import { PublicProps } from 'vue';
|
6
5
|
|
7
6
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
8
7
|
|
8
|
+
declare type __VLS_NonUndefinedable_10<T> = T extends undefined ? never : T;
|
9
|
+
|
9
10
|
declare type __VLS_NonUndefinedable_2<T> = T extends undefined ? never : T;
|
10
11
|
|
11
12
|
declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
|
@@ -26,6 +27,10 @@ declare type __VLS_Prettify<T> = {
|
|
26
27
|
[K in keyof T]: T[K];
|
27
28
|
} & {};
|
28
29
|
|
30
|
+
declare type __VLS_Prettify_10<T> = {
|
31
|
+
[K in keyof T]: T[K];
|
32
|
+
} & {};
|
33
|
+
|
29
34
|
declare type __VLS_Prettify_2<T> = {
|
30
35
|
[K in keyof T]: T[K];
|
31
36
|
} & {};
|
@@ -67,6 +72,15 @@ declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
67
72
|
};
|
68
73
|
};
|
69
74
|
|
75
|
+
declare type __VLS_TypePropsToRuntimeProps_10<T> = {
|
76
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
77
|
+
type: PropType_2<__VLS_NonUndefinedable_10<T[K]>>;
|
78
|
+
} : {
|
79
|
+
type: PropType_2<T[K]>;
|
80
|
+
required: true;
|
81
|
+
};
|
82
|
+
};
|
83
|
+
|
70
84
|
declare type __VLS_TypePropsToRuntimeProps_2<T> = {
|
71
85
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
72
86
|
type: PropType_2<__VLS_NonUndefinedable_2<T[K]>>;
|
@@ -145,6 +159,12 @@ declare type __VLS_WithDefaults<P, D> = {
|
|
145
159
|
}> : P[K];
|
146
160
|
};
|
147
161
|
|
162
|
+
declare type __VLS_WithDefaults_10<P, D> = {
|
163
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_10<P[K] & {
|
164
|
+
default: D[K];
|
165
|
+
}> : P[K];
|
166
|
+
};
|
167
|
+
|
148
168
|
declare type __VLS_WithDefaults_2<P, D> = {
|
149
169
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_2<P[K] & {
|
150
170
|
default: D[K];
|
@@ -729,7 +749,20 @@ height: string;
|
|
729
749
|
content?(_: {}): any;
|
730
750
|
}>;
|
731
751
|
|
732
|
-
export
|
752
|
+
export declare const HyDataTimeShortcuts: DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_10<Props_5>, {
|
753
|
+
optionList: () => any[];
|
754
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
755
|
+
change: (params: RequestParams) => void;
|
756
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_10<Props_5>, {
|
757
|
+
optionList: () => any[];
|
758
|
+
}>>> & {
|
759
|
+
onChange?: (params: RequestParams) => any;
|
760
|
+
}, {
|
761
|
+
optionList: {
|
762
|
+
label: string;
|
763
|
+
value: number;
|
764
|
+
}[];
|
765
|
+
}, {}>;
|
733
766
|
|
734
767
|
export declare const HyImageViewer: DefineComponent< {}, {
|
735
768
|
onShowViewer: typeof onShowViewer;
|
@@ -1139,6 +1172,19 @@ declare interface Props_4 {
|
|
1139
1172
|
menuTitle: string;
|
1140
1173
|
}
|
1141
1174
|
|
1175
|
+
declare interface Props_5 {
|
1176
|
+
optionList: {
|
1177
|
+
label: string;
|
1178
|
+
value: number;
|
1179
|
+
}[];
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
declare interface RequestParams {
|
1183
|
+
regDtm: string[];
|
1184
|
+
queryStartDtm: string;
|
1185
|
+
queryEndDtm: string;
|
1186
|
+
}
|
1187
|
+
|
1142
1188
|
declare interface RoundButton {
|
1143
1189
|
[key: string]: any;
|
1144
1190
|
name: string;
|