@partex/one-core 1.0.5 → 1.0.8

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.
@@ -5,6 +5,10 @@ declare const _default: DefineComponent<{
5
5
  type: PropType<boolean>;
6
6
  default: boolean;
7
7
  };
8
+ mainUrl: {
9
+ type: PropType<string>;
10
+ default: string;
11
+ };
8
12
  language: {
9
13
  type: PropType<boolean>;
10
14
  default: boolean;
@@ -69,7 +73,7 @@ declare const _default: DefineComponent<{
69
73
  platformName: string;
70
74
  platformType: string;
71
75
  platformUrl: string;
72
- platformMainUrl: string;
76
+ platformMainUrl?: string | undefined;
73
77
  };
74
78
  theme: Ref<boolean>;
75
79
  activeMenu: Ref<string>;
@@ -94,6 +98,10 @@ declare const _default: DefineComponent<{
94
98
  type: PropType<boolean>;
95
99
  default: boolean;
96
100
  };
101
+ mainUrl: {
102
+ type: PropType<string>;
103
+ default: string;
104
+ };
97
105
  language: {
98
106
  type: PropType<boolean>;
99
107
  default: boolean;
@@ -109,6 +117,7 @@ declare const _default: DefineComponent<{
109
117
  };
110
118
  }>>, {
111
119
  qiankun: boolean;
120
+ mainUrl: string;
112
121
  language: boolean;
113
122
  report: boolean;
114
123
  menuOptions: IHeaderMenu;
@@ -6,7 +6,7 @@ export declare const headerStore: {
6
6
  platformName: string;
7
7
  platformType: string;
8
8
  platformUrl: string;
9
- platformMainUrl: string;
9
+ platformMainUrl?: string | undefined;
10
10
  };
11
11
  export declare function fnShowDownload(val: boolean): void;
12
12
  export declare function fnSetInitLang(val: 'en-US' | 'zh-CN' | 'fr-FR'): void;
@@ -10,8 +10,13 @@ declare const _default: DefineComponent<{
10
10
  type: StringConstructor;
11
11
  default: string;
12
12
  };
13
+ disabled: {
14
+ required: false;
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
13
18
  clearable: {
14
- required: true;
19
+ required: false;
15
20
  type: BooleanConstructor;
16
21
  default: boolean;
17
22
  };
@@ -20,8 +25,6 @@ declare const _default: DefineComponent<{
20
25
  endTime: Ref<number | null>;
21
26
  updateStartValue: (value: number | null) => void;
22
27
  updateEndValue: (value: number | null) => void;
23
- isHourDisabled: (hour: number) => boolean;
24
- isMinuteDisabled: (minute: number, selectedHour: number | null) => boolean;
25
28
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "on-update:value"[], "on-update:value", PublicProps, Readonly<ExtractPropTypes<{
26
29
  value: {
27
30
  required: true;
@@ -33,15 +36,22 @@ declare const _default: DefineComponent<{
33
36
  type: StringConstructor;
34
37
  default: string;
35
38
  };
39
+ disabled: {
40
+ required: false;
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
36
44
  clearable: {
37
- required: true;
45
+ required: false;
38
46
  type: BooleanConstructor;
39
47
  default: boolean;
40
48
  };
41
49
  }>> & {
42
50
  "onOn-update:value"?: ((...args: any[]) => any) | undefined;
43
51
  }, {
52
+ disabled: boolean;
44
53
  value: unknown[];
54
+ clearable: boolean;
45
55
  format: string;
46
56
  }, {}>;
47
57
  export default _default;
@@ -4,6 +4,7 @@ interface Base {
4
4
  show?: boolean;
5
5
  clearable?: boolean;
6
6
  placeholder?: (() => string) | string;
7
+ disabled?: boolean;
7
8
  updateValue?: (value: [] | string | number | null, data: any) => void;
8
9
  }
9
10
  export interface Input extends Base {