@a2simcode/ui 0.0.56 → 0.0.58

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.
Files changed (39) hide show
  1. package/dist/components/autocomplete/index.d.ts +6 -6
  2. package/dist/components/autocomplete/src/autocomplete.vue.d.ts +2 -2
  3. package/dist/components/button-select/index.d.ts +3 -3
  4. package/dist/components/button-select/src/button-select.vue.d.ts +1 -1
  5. package/dist/components/cascader-select/index.d.ts +3 -3
  6. package/dist/components/cascader-select/src/cascader-select.vue.d.ts +1 -1
  7. package/dist/components/checkbox/index.d.ts +3 -3
  8. package/dist/components/checkbox/src/checkbox.vue.d.ts +1 -1
  9. package/dist/components/comp/index.d.ts +3 -3
  10. package/dist/components/comp/src/comp.vue.d.ts +1 -1
  11. package/dist/components/editor/index.d.ts +3 -3
  12. package/dist/components/editor/src/editor.vue.d.ts +1 -1
  13. package/dist/components/form/index.d.ts +3 -3
  14. package/dist/components/form/src/form.vue.d.ts +1 -1
  15. package/dist/components/form-item/index.d.ts +3 -3
  16. package/dist/components/form-item/src/form-item.vue.d.ts +1 -1
  17. package/dist/components/input-layer/index.d.ts +6 -6
  18. package/dist/components/input-layer/src/input-layer.vue.d.ts +2 -2
  19. package/dist/components/input-tag/index.d.ts +3 -3
  20. package/dist/components/input-tag/src/input-tag.vue.d.ts +1 -1
  21. package/dist/components/radio/index.d.ts +6 -6
  22. package/dist/components/radio/src/radio.vue.d.ts +2 -2
  23. package/dist/components/select/index.d.ts +3 -3
  24. package/dist/components/select/src/select.vue.d.ts +1 -1
  25. package/dist/components/tree/index.d.ts +3 -3
  26. package/dist/components/tree/src/tree.vue.d.ts +1 -1
  27. package/dist/components/tree-select/index.d.ts +9 -9
  28. package/dist/components/tree-select/src/tree-select.vue.d.ts +3 -3
  29. package/dist/simcode-ui.es.js +5372 -5266
  30. package/dist/simcode-ui.umd.js +2 -2
  31. package/dist/stats.html +1 -1
  32. package/docs/components/meta/input-cards.ts +1 -1
  33. package/docs/components/meta/number.ts +1 -1
  34. package/docs/components/meta/panel.ts +88 -19
  35. package/docs/components/meta/table.ts +5 -0
  36. package/docs/components/meta/tree-select.ts +1 -1
  37. package/docs/components/table.md +16 -0
  38. package/docs/examples/table/tag.vue +43 -0
  39. package/package.json +1 -1
@@ -16,14 +16,14 @@ declare const JAutocomplete: {
16
16
  change: (value: string) => any;
17
17
  }, import('vue').PublicProps, {
18
18
  disabled: boolean;
19
+ options: import('..').AutocompleteOption[];
20
+ valueKey: string;
19
21
  placeholder: string;
20
22
  clearable: boolean;
21
23
  readonly: boolean;
22
24
  autoFocus: boolean;
23
- options: import('..').AutocompleteOption[];
24
25
  teleported: boolean;
25
26
  placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
26
- valueKey: string;
27
27
  debounce: number;
28
28
  triggerOnFocus: boolean;
29
29
  selectWhenUnmatched: boolean;
@@ -51,14 +51,14 @@ declare const JAutocomplete: {
51
51
  blur: () => void;
52
52
  }, {}, {}, {}, {
53
53
  disabled: boolean;
54
+ options: import('..').AutocompleteOption[];
55
+ valueKey: string;
54
56
  placeholder: string;
55
57
  clearable: boolean;
56
58
  readonly: boolean;
57
59
  autoFocus: boolean;
58
- options: import('..').AutocompleteOption[];
59
60
  teleported: boolean;
60
61
  placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
61
- valueKey: string;
62
62
  debounce: number;
63
63
  triggerOnFocus: boolean;
64
64
  selectWhenUnmatched: boolean;
@@ -87,14 +87,14 @@ declare const JAutocomplete: {
87
87
  change: (value: string) => any;
88
88
  }, string, {
89
89
  disabled: boolean;
90
+ options: import('..').AutocompleteOption[];
91
+ valueKey: string;
90
92
  placeholder: string;
91
93
  clearable: boolean;
92
94
  readonly: boolean;
93
95
  autoFocus: boolean;
94
- options: import('..').AutocompleteOption[];
95
96
  teleported: boolean;
96
97
  placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
97
- valueKey: string;
98
98
  debounce: number;
99
99
  triggerOnFocus: boolean;
100
100
  selectWhenUnmatched: boolean;
@@ -85,14 +85,14 @@ declare const __VLS_component: import('vue').DefineComponent<AutocompleteProps,
85
85
  onChange?: ((value: string) => any) | undefined;
86
86
  }>, {
87
87
  disabled: boolean;
88
+ options: Option[];
89
+ valueKey: string;
88
90
  placeholder: string;
89
91
  clearable: boolean;
90
92
  readonly: boolean;
91
93
  autoFocus: boolean;
92
- options: Option[];
93
94
  teleported: boolean;
94
95
  placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end";
95
- valueKey: string;
96
96
  debounce: number;
97
97
  triggerOnFocus: boolean;
98
98
  selectWhenUnmatched: boolean;
@@ -13,8 +13,8 @@ declare const JButtonSelect: {
13
13
  }) => any;
14
14
  }, import('vue').PublicProps, {
15
15
  label: string;
16
- modelValue: string;
17
16
  options: import('..').ButtonSelectOption[];
17
+ modelValue: string;
18
18
  popoverWidth: number;
19
19
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
20
20
  P: {};
@@ -31,8 +31,8 @@ declare const JButtonSelect: {
31
31
  }) => any) | undefined;
32
32
  }>, {}, {}, {}, {}, {
33
33
  label: string;
34
- modelValue: string;
35
34
  options: import('..').ButtonSelectOption[];
35
+ modelValue: string;
36
36
  popoverWidth: number;
37
37
  }>;
38
38
  __isFragment?: never;
@@ -52,8 +52,8 @@ declare const JButtonSelect: {
52
52
  }) => any;
53
53
  }, string, {
54
54
  label: string;
55
- modelValue: string;
56
55
  options: import('..').ButtonSelectOption[];
56
+ modelValue: string;
57
57
  popoverWidth: number;
58
58
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
59
59
  install: (app: import('vue').App) => void;
@@ -28,8 +28,8 @@ declare const _default: import('vue').DefineComponent<ButtonSelectProps, {}, {},
28
28
  }) => any) | undefined;
29
29
  }>, {
30
30
  label: string;
31
- modelValue: string;
32
31
  options: ButtonSelectOption[];
32
+ modelValue: string;
33
33
  popoverWidth: number;
34
34
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
35
35
  export default _default;
@@ -17,11 +17,11 @@ declare const JCascaderSelect: {
17
17
  }, import('vue').PublicProps, {
18
18
  size: "large" | "default" | "small";
19
19
  disabled: boolean;
20
+ options: import('..').CascaderSelectOption[];
20
21
  placeholder: string;
21
22
  clearable: boolean;
22
23
  readonly: boolean;
23
24
  autoFocus: boolean;
24
- options: import('..').CascaderSelectOption[];
25
25
  multiple: boolean;
26
26
  collapseTags: boolean;
27
27
  filterable: boolean | object;
@@ -58,11 +58,11 @@ declare const JCascaderSelect: {
58
58
  }, {}, {}, {}, {
59
59
  size: "large" | "default" | "small";
60
60
  disabled: boolean;
61
+ options: import('..').CascaderSelectOption[];
61
62
  placeholder: string;
62
63
  clearable: boolean;
63
64
  readonly: boolean;
64
65
  autoFocus: boolean;
65
- options: import('..').CascaderSelectOption[];
66
66
  multiple: boolean;
67
67
  collapseTags: boolean;
68
68
  filterable: boolean | object;
@@ -100,11 +100,11 @@ declare const JCascaderSelect: {
100
100
  }, string, {
101
101
  size: "large" | "default" | "small";
102
102
  disabled: boolean;
103
+ options: import('..').CascaderSelectOption[];
103
104
  placeholder: string;
104
105
  clearable: boolean;
105
106
  readonly: boolean;
106
107
  autoFocus: boolean;
107
- options: import('..').CascaderSelectOption[];
108
108
  multiple: boolean;
109
109
  collapseTags: boolean;
110
110
  filterable: boolean | object;
@@ -73,11 +73,11 @@ declare const _default: import('vue').DefineComponent<CascaderSelectProps, {
73
73
  }>, {
74
74
  size: "large" | "default" | "small";
75
75
  disabled: boolean;
76
+ options: CascaderSelectOption[];
76
77
  placeholder: string;
77
78
  clearable: boolean;
78
79
  readonly: boolean;
79
80
  autoFocus: boolean;
80
- options: CascaderSelectOption[];
81
81
  multiple: boolean;
82
82
  collapseTags: boolean;
83
83
  filterable: boolean | object;
@@ -11,12 +11,12 @@ declare const JCheckbox: {
11
11
  type: "checkbox" | "button";
12
12
  label: string;
13
13
  disabled: boolean;
14
+ options: import('..').CheckboxOption[];
14
15
  modelValue: string[];
15
16
  readonly: boolean;
16
17
  max: number;
17
18
  min: number;
18
19
  validateEvent: boolean;
19
- options: import('..').CheckboxOption[];
20
20
  textColor: string;
21
21
  tag: string;
22
22
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
@@ -35,12 +35,12 @@ declare const JCheckbox: {
35
35
  type: "checkbox" | "button";
36
36
  label: string;
37
37
  disabled: boolean;
38
+ options: import('..').CheckboxOption[];
38
39
  modelValue: string[];
39
40
  readonly: boolean;
40
41
  max: number;
41
42
  min: number;
42
43
  validateEvent: boolean;
43
- options: import('..').CheckboxOption[];
44
44
  textColor: string;
45
45
  tag: string;
46
46
  }>;
@@ -59,12 +59,12 @@ declare const JCheckbox: {
59
59
  type: "checkbox" | "button";
60
60
  label: string;
61
61
  disabled: boolean;
62
+ options: import('..').CheckboxOption[];
62
63
  modelValue: string[];
63
64
  readonly: boolean;
64
65
  max: number;
65
66
  min: number;
66
67
  validateEvent: boolean;
67
- options: import('..').CheckboxOption[];
68
68
  textColor: string;
69
69
  tag: string;
70
70
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
@@ -43,12 +43,12 @@ declare const _default: import('vue').DefineComponent<CheckboxProps, {}, {}, {},
43
43
  type: "checkbox" | "button";
44
44
  label: string;
45
45
  disabled: boolean;
46
+ options: CheckboxOption[];
46
47
  modelValue: string[];
47
48
  readonly: boolean;
48
49
  max: number;
49
50
  min: number;
50
51
  validateEvent: boolean;
51
- options: CheckboxOption[];
52
52
  textColor: string;
53
53
  tag: string;
54
54
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -46,9 +46,9 @@ declare const JComp: {
46
46
  type: string;
47
47
  id: string;
48
48
  children: import('..').SchemaConfig[];
49
+ config: Record<string, any>;
49
50
  modelValue: string | number | boolean | any[] | Record<string, any>;
50
51
  getCompType: Function;
51
- config: Record<string, any>;
52
52
  getCompConfig: Function;
53
53
  row: Record<string, any>;
54
54
  isTableCell: boolean;
@@ -105,9 +105,9 @@ declare const JComp: {
105
105
  type: string;
106
106
  id: string;
107
107
  children: import('..').SchemaConfig[];
108
+ config: Record<string, any>;
108
109
  modelValue: string | number | boolean | any[] | Record<string, any>;
109
110
  getCompType: Function;
110
- config: Record<string, any>;
111
111
  getCompConfig: Function;
112
112
  row: Record<string, any>;
113
113
  isTableCell: boolean;
@@ -162,9 +162,9 @@ declare const JComp: {
162
162
  type: string;
163
163
  id: string;
164
164
  children: import('..').SchemaConfig[];
165
+ config: Record<string, any>;
165
166
  modelValue: string | number | boolean | any[] | Record<string, any>;
166
167
  getCompType: Function;
167
- config: Record<string, any>;
168
168
  getCompConfig: Function;
169
169
  row: Record<string, any>;
170
170
  isTableCell: boolean;
@@ -140,9 +140,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
140
140
  type: string;
141
141
  id: string;
142
142
  children: SchemaConfig[];
143
+ config: Record<string, any>;
143
144
  modelValue: string | number | boolean | any[] | Record<string, any>;
144
145
  getCompType: Function;
145
- config: Record<string, any>;
146
146
  getCompConfig: Function;
147
147
  row: Record<string, any>;
148
148
  isTableCell: boolean;
@@ -41,9 +41,9 @@ export declare const JEditorComp: {
41
41
  }, import('vue').PublicProps, {
42
42
  height: string | number;
43
43
  value: string;
44
+ options: Record<string, any>;
44
45
  placeholder: string;
45
46
  readonly: boolean;
46
- options: Record<string, any>;
47
47
  isUploadImg: boolean;
48
48
  apiUrl: string;
49
49
  token: string;
@@ -96,9 +96,9 @@ export declare const JEditorComp: {
96
96
  }>, {}, {}, {}, {}, {
97
97
  height: string | number;
98
98
  value: string;
99
+ options: Record<string, any>;
99
100
  placeholder: string;
100
101
  readonly: boolean;
101
- options: Record<string, any>;
102
102
  isUploadImg: boolean;
103
103
  apiUrl: string;
104
104
  token: string;
@@ -148,9 +148,9 @@ export declare const JEditorComp: {
148
148
  }, string, {
149
149
  height: string | number;
150
150
  value: string;
151
+ options: Record<string, any>;
151
152
  placeholder: string;
152
153
  readonly: boolean;
153
- options: Record<string, any>;
154
154
  isUploadImg: boolean;
155
155
  apiUrl: string;
156
156
  token: string;
@@ -73,9 +73,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
73
73
  }>, {
74
74
  height: string | number;
75
75
  value: string;
76
+ options: Record<string, any>;
76
77
  placeholder: string;
77
78
  readonly: boolean;
78
- options: Record<string, any>;
79
79
  isUploadImg: boolean;
80
80
  apiUrl: string;
81
81
  token: string;
@@ -49,7 +49,6 @@ export declare const JForm: {
49
49
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
50
50
  change: (...args: any[]) => void;
51
51
  }, import('vue').PublicProps, {
52
- readonly: boolean;
53
52
  config: {
54
53
  labelWidth: number;
55
54
  labelPosition: "left" | "right" | "top";
@@ -58,6 +57,7 @@ export declare const JForm: {
58
57
  span: number;
59
58
  codeInit: string;
60
59
  };
60
+ readonly: boolean;
61
61
  isAutoSize: boolean;
62
62
  schema: any[];
63
63
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
@@ -115,7 +115,6 @@ export declare const JForm: {
115
115
  getFormData: (useTable?: boolean) => Record<string, any>;
116
116
  setCompConfig: (id: string, config: Record<string, any>) => void;
117
117
  }, {}, {}, {}, {
118
- readonly: boolean;
119
118
  config: {
120
119
  labelWidth: number;
121
120
  labelPosition: "left" | "right" | "top";
@@ -124,6 +123,7 @@ export declare const JForm: {
124
123
  span: number;
125
124
  codeInit: string;
126
125
  };
126
+ readonly: boolean;
127
127
  isAutoSize: boolean;
128
128
  schema: any[];
129
129
  }>;
@@ -180,7 +180,6 @@ export declare const JForm: {
180
180
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
181
181
  change: (...args: any[]) => void;
182
182
  }, string, {
183
- readonly: boolean;
184
183
  config: {
185
184
  labelWidth: number;
186
185
  labelPosition: "left" | "right" | "top";
@@ -189,6 +188,7 @@ export declare const JForm: {
189
188
  span: number;
190
189
  codeInit: string;
191
190
  };
191
+ readonly: boolean;
192
192
  isAutoSize: boolean;
193
193
  schema: any[];
194
194
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
@@ -92,7 +92,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
92
92
  }>> & Readonly<{
93
93
  onChange?: ((...args: any[]) => any) | undefined;
94
94
  }>, {
95
- readonly: boolean;
96
95
  config: {
97
96
  labelWidth: number;
98
97
  labelPosition: "left" | "right" | "top";
@@ -101,6 +100,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
101
100
  span: number;
102
101
  codeInit: string;
103
102
  };
103
+ readonly: boolean;
104
104
  isAutoSize: boolean;
105
105
  schema: any[];
106
106
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -32,8 +32,8 @@ export declare const JFormItem: {
32
32
  type: string;
33
33
  id: string;
34
34
  children: import('..').SchemaConfig[];
35
- getCompType: Function;
36
35
  config: Record<string, any>;
36
+ getCompType: Function;
37
37
  getCompConfig: Function;
38
38
  isNotCol: boolean;
39
39
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
@@ -76,8 +76,8 @@ export declare const JFormItem: {
76
76
  type: string;
77
77
  id: string;
78
78
  children: import('..').SchemaConfig[];
79
- getCompType: Function;
80
79
  config: Record<string, any>;
80
+ getCompType: Function;
81
81
  getCompConfig: Function;
82
82
  isNotCol: boolean;
83
83
  }>;
@@ -117,8 +117,8 @@ export declare const JFormItem: {
117
117
  type: string;
118
118
  id: string;
119
119
  children: import('..').SchemaConfig[];
120
- getCompType: Function;
121
120
  config: Record<string, any>;
121
+ getCompType: Function;
122
122
  getCompConfig: Function;
123
123
  isNotCol: boolean;
124
124
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
@@ -98,8 +98,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
98
98
  type: string;
99
99
  id: string;
100
100
  children: SchemaConfig[];
101
- getCompType: Function;
102
101
  config: Record<string, any>;
102
+ getCompType: Function;
103
103
  getCompConfig: Function;
104
104
  isNotCol: boolean;
105
105
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -17,18 +17,18 @@ export declare const JInputLayer: {
17
17
  height: number;
18
18
  mode: string;
19
19
  width: number;
20
+ valueKey: string;
21
+ labelKey: string;
20
22
  buttons: any[];
21
23
  modelValue: string;
22
24
  placeholder: string;
23
25
  clearable: boolean;
24
26
  readonly: boolean;
25
- valueKey: string;
26
27
  columns: any[];
27
28
  isTree: boolean;
28
29
  isPage: boolean;
29
30
  onlyButton: boolean;
30
31
  defaultExpandAll: boolean;
31
- labelKey: string;
32
32
  pidKey: string;
33
33
  isMultiSelect: boolean;
34
34
  searchInputList: any[];
@@ -675,18 +675,18 @@ export declare const JInputLayer: {
675
675
  height: number;
676
676
  mode: string;
677
677
  width: number;
678
+ valueKey: string;
679
+ labelKey: string;
678
680
  buttons: any[];
679
681
  modelValue: string;
680
682
  placeholder: string;
681
683
  clearable: boolean;
682
684
  readonly: boolean;
683
- valueKey: string;
684
685
  columns: any[];
685
686
  isTree: boolean;
686
687
  isPage: boolean;
687
688
  onlyButton: boolean;
688
689
  defaultExpandAll: boolean;
689
- labelKey: string;
690
690
  pidKey: string;
691
691
  isMultiSelect: boolean;
692
692
  searchInputList: any[];
@@ -713,18 +713,18 @@ export declare const JInputLayer: {
713
713
  height: number;
714
714
  mode: string;
715
715
  width: number;
716
+ valueKey: string;
717
+ labelKey: string;
716
718
  buttons: any[];
717
719
  modelValue: string;
718
720
  placeholder: string;
719
721
  clearable: boolean;
720
722
  readonly: boolean;
721
- valueKey: string;
722
723
  columns: any[];
723
724
  isTree: boolean;
724
725
  isPage: boolean;
725
726
  onlyButton: boolean;
726
727
  defaultExpandAll: boolean;
727
- labelKey: string;
728
728
  pidKey: string;
729
729
  isMultiSelect: boolean;
730
730
  searchInputList: any[];
@@ -76,18 +76,18 @@ declare const _default: import('vue').DefineComponent<InputLayerProps, {}, {}, {
76
76
  height: number;
77
77
  mode: string;
78
78
  width: number;
79
+ valueKey: string;
80
+ labelKey: string;
79
81
  buttons: any[];
80
82
  modelValue: string;
81
83
  placeholder: string;
82
84
  clearable: boolean;
83
85
  readonly: boolean;
84
- valueKey: string;
85
86
  columns: any[];
86
87
  isTree: boolean;
87
88
  isPage: boolean;
88
89
  onlyButton: boolean;
89
90
  defaultExpandAll: boolean;
90
- labelKey: string;
91
91
  pidKey: string;
92
92
  isMultiSelect: boolean;
93
93
  searchInputList: any[];
@@ -15,10 +15,10 @@ export declare const JInputTag: {
15
15
  }) => any;
16
16
  }, import('vue').PublicProps, {
17
17
  size: "small" | "default" | "large";
18
+ options: any[];
18
19
  modelValue: string;
19
20
  placeholder: string;
20
21
  readonly: boolean;
21
- options: any[];
22
22
  colors: any[];
23
23
  isStyleLoop: boolean;
24
24
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
@@ -37,10 +37,10 @@ export declare const JInputTag: {
37
37
  }) => any) | undefined;
38
38
  }>, {}, {}, {}, {}, {
39
39
  size: "small" | "default" | "large";
40
+ options: any[];
40
41
  modelValue: string;
41
42
  placeholder: string;
42
43
  readonly: boolean;
43
- options: any[];
44
44
  colors: any[];
45
45
  isStyleLoop: boolean;
46
46
  }>;
@@ -63,10 +63,10 @@ export declare const JInputTag: {
63
63
  }) => any;
64
64
  }, string, {
65
65
  size: "small" | "default" | "large";
66
+ options: any[];
66
67
  modelValue: string;
67
68
  placeholder: string;
68
69
  readonly: boolean;
69
- options: any[];
70
70
  colors: any[];
71
71
  isStyleLoop: boolean;
72
72
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
@@ -30,10 +30,10 @@ declare const _default: import('vue').DefineComponent<InputTagProps, {}, {}, {},
30
30
  }) => any) | undefined;
31
31
  }>, {
32
32
  size: "small" | "default" | "large";
33
+ options: any[];
33
34
  modelValue: string;
34
35
  placeholder: string;
35
36
  readonly: boolean;
36
- options: any[];
37
37
  colors: any[];
38
38
  isStyleLoop: boolean;
39
39
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -35,13 +35,13 @@ declare const JRadio: {
35
35
  "update:modelValue": (...args: any[]) => void;
36
36
  }, import('vue').PublicProps, {
37
37
  size: "small" | "default" | "large";
38
- modelValue: string | number;
39
- readonly: boolean;
40
38
  options: {
41
39
  label: string;
42
40
  value: string;
43
41
  color?: string;
44
42
  }[];
43
+ modelValue: string | number;
44
+ readonly: boolean;
45
45
  isButton: boolean;
46
46
  isColor: boolean;
47
47
  colors: string[];
@@ -86,13 +86,13 @@ declare const JRadio: {
86
86
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
87
87
  }>, {}, {}, {}, {}, {
88
88
  size: "small" | "default" | "large";
89
- modelValue: string | number;
90
- readonly: boolean;
91
89
  options: {
92
90
  label: string;
93
91
  value: string;
94
92
  color?: string;
95
93
  }[];
94
+ modelValue: string | number;
95
+ readonly: boolean;
96
96
  isButton: boolean;
97
97
  isColor: boolean;
98
98
  colors: string[];
@@ -136,13 +136,13 @@ declare const JRadio: {
136
136
  "update:modelValue": (...args: any[]) => void;
137
137
  }, string, {
138
138
  size: "small" | "default" | "large";
139
- modelValue: string | number;
140
- readonly: boolean;
141
139
  options: {
142
140
  label: string;
143
141
  value: string;
144
142
  color?: string;
145
143
  }[];
144
+ modelValue: string | number;
145
+ readonly: boolean;
146
146
  isButton: boolean;
147
147
  isColor: boolean;
148
148
  colors: string[];
@@ -109,13 +109,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
109
109
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
110
110
  }>, {
111
111
  size: "small" | "default" | "large";
112
- modelValue: string | number;
113
- readonly: boolean;
114
112
  options: {
115
113
  label: string;
116
114
  value: string;
117
115
  color?: string;
118
116
  }[];
117
+ modelValue: string | number;
118
+ readonly: boolean;
119
119
  isButton: boolean;
120
120
  isColor: boolean;
121
121
  colors: string[];
@@ -8,11 +8,11 @@ declare const JSelect: {
8
8
  }, import('vue').PublicProps, {
9
9
  size: "large" | "default" | "small";
10
10
  disabled: boolean;
11
+ options: import('..').SelectOption[];
11
12
  placeholder: string;
12
13
  clearable: boolean;
13
14
  readonly: boolean;
14
15
  autoFocus: boolean;
15
- options: import('..').SelectOption[];
16
16
  teleported: boolean;
17
17
  noBorder: boolean;
18
18
  multiple: boolean;
@@ -40,11 +40,11 @@ declare const JSelect: {
40
40
  }>, {}, {}, {}, {}, {
41
41
  size: "large" | "default" | "small";
42
42
  disabled: boolean;
43
+ options: import('..').SelectOption[];
43
44
  placeholder: string;
44
45
  clearable: boolean;
45
46
  readonly: boolean;
46
47
  autoFocus: boolean;
47
- options: import('..').SelectOption[];
48
48
  teleported: boolean;
49
49
  noBorder: boolean;
50
50
  multiple: boolean;
@@ -70,11 +70,11 @@ declare const JSelect: {
70
70
  }, string, {
71
71
  size: "large" | "default" | "small";
72
72
  disabled: boolean;
73
+ options: import('..').SelectOption[];
73
74
  placeholder: string;
74
75
  clearable: boolean;
75
76
  readonly: boolean;
76
77
  autoFocus: boolean;
77
- options: import('..').SelectOption[];
78
78
  teleported: boolean;
79
79
  noBorder: boolean;
80
80
  multiple: boolean;
@@ -57,11 +57,11 @@ declare const _default: import('vue').DefineComponent<SelectProps, {}, {}, {}, {
57
57
  }>, {
58
58
  size: "large" | "default" | "small";
59
59
  disabled: boolean;
60
+ options: SelectOption[];
60
61
  placeholder: string;
61
62
  clearable: boolean;
62
63
  readonly: boolean;
63
64
  autoFocus: boolean;
64
- options: SelectOption[];
65
65
  teleported: boolean;
66
66
  noBorder: boolean;
67
67
  multiple: boolean;