@halo-dev/components 0.0.0-alpha.9 → 1.1.0

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.
@@ -40,7 +40,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
40
40
  cmState: import("vue").ShallowRef<EditorState>;
41
41
  cmView: import("vue").ShallowRef<EditorView>;
42
42
  createCmEditor: () => void;
43
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
43
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
44
44
  modelValue: {
45
45
  type: StringConstructor;
46
46
  required: false;
@@ -62,8 +62,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
62
62
  default: () => any[];
63
63
  };
64
64
  }>> & {
65
- onChange?: (...args: any[]) => any;
66
65
  "onUpdate:modelValue"?: (...args: any[]) => any;
66
+ onChange?: (...args: any[]) => any;
67
67
  }, {
68
68
  height: string;
69
69
  modelValue: string;
@@ -24,8 +24,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
24
24
  emit: (event: "click") => void;
25
25
  wrapperStyles: import("vue").ComputedRef<{
26
26
  width: string;
27
+ maxWidth: string;
27
28
  } | {
28
29
  width?: undefined;
30
+ maxWidth?: undefined;
29
31
  }>;
30
32
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
31
33
  title: {
@@ -11,15 +11,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
11
11
  (event: "change", value: boolean): void;
12
12
  };
13
13
  handleChange: () => void;
14
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
15
15
  modelValue: {
16
16
  type: BooleanConstructor;
17
17
  required: false;
18
18
  default: boolean;
19
19
  };
20
20
  }>> & {
21
- onChange?: (...args: any[]) => any;
22
21
  "onUpdate:modelValue"?: (...args: any[]) => any;
22
+ onChange?: (...args: any[]) => any;
23
23
  }, {
24
24
  modelValue: boolean;
25
25
  }>;
@@ -73,10 +73,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
73
73
  "onUpdate:activeId"?: (...args: any[]) => any;
74
74
  }, {
75
75
  type: any;
76
- labelKey: string;
77
76
  direction: any;
78
77
  activeId: string | number;
79
78
  items: unknown[];
80
79
  idKey: string;
80
+ labelKey: string;
81
81
  }>;
82
82
  export default _sfc_main;
@@ -115,11 +115,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
115
115
  "onUpdate:activeId"?: (...args: any[]) => any;
116
116
  }, {
117
117
  type: any;
118
- labelKey: string;
119
118
  direction: any;
120
119
  activeId: string | number;
121
120
  items: unknown[];
122
121
  idKey: string;
122
+ labelKey: string;
123
123
  }>;
124
124
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:activeId")[], "change" | "update:activeId", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
125
125
  activeId: {
@@ -152,9 +152,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
152
152
  "onUpdate:activeId"?: (...args: any[]) => any;
153
153
  }, {
154
154
  type: any;
155
- labelKey: string;
156
155
  direction: any;
157
156
  activeId: string | number;
158
157
  idKey: string;
158
+ labelKey: string;
159
159
  }>;
160
160
  export default _sfc_main;
@@ -2,17 +2,12 @@ export * from "./components/avatar";
2
2
  export * from "./components/alert";
3
3
  export * from "./components/button";
4
4
  export * from "./components/card";
5
- export * from "./components/checkbox";
6
5
  export * from "./components/header";
7
- export * from "./components/input";
8
6
  export * from "./components/menu";
9
7
  export * from "./components/modal";
10
- export * from "./components/radio";
11
- export * from "./components/select";
12
8
  export * from "./components/space";
13
9
  export * from "./components/tabs";
14
10
  export * from "./components/tag";
15
- export * from "./components/textarea";
16
11
  export * from "./components/switch";
17
12
  export * from "./components/dialog";
18
13
  export * from "./components/pagination";