@kengic/vue 0.6.5 → 0.6.6
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/index.css +1 -1
- package/dist/kengic-vue.js +2721 -2687
- package/dist/src/components/KgForm.Item/KgForm.Item.d.ts +1 -10
- package/dist/src/components/KgForm.Item/KgForm.Item.hooks.d.ts +5 -2
- package/dist/src/components/KgForm.Item/components/KgForm.Item.Checkbox.d.ts +0 -9
- package/dist/src/components/KgForm.Item/components/KgForm.Item.CheckboxGroup.d.ts +2 -13
- package/dist/src/components/KgForm.Item/components/KgForm.Item.Date.d.ts +0 -9
- package/dist/src/components/KgForm.Item/components/KgForm.Item.DateRange.d.ts +0 -9
- package/dist/src/components/KgForm.Item/components/KgForm.Item.Input.d.ts +0 -9
- package/dist/src/components/KgForm.Item/components/KgForm.Item.InputNumber.d.ts +0 -9
- package/dist/src/components/KgForm.Item/components/KgForm.Item.RadioGroup.d.ts +99 -0
- package/dist/src/components/KgForm.Item/components/KgForm.Item.Select.d.ts +2 -9
- package/dist/src/components/KgForm.Item/components/KgForm.Item.Select.hooks.d.ts +18 -2
- package/dist/src/components/KgForm.Item/components/KgForm.Item.Switch.d.ts +0 -9
- package/dist/src/components/KgForm.Item/components/KgForm.Item.TextArea.d.ts +96 -0
- package/dist/src/components/KgForm.Item/index.vm.d.ts +2 -8
- package/dist/src/components/KgTable/index.vm.d.ts +9 -2
- package/dist/src/components/KgVar/index.hooks.d.ts +8 -4
- package/dist/src/components/KgVar/index.store.d.ts +1 -1
- package/dist/src/consts/index.d.ts +6 -2
- package/package.json +1 -1
- package/dist/src/components/KgForm.Item/components/KgForm.Item.CheckboxGroup.hooks.d.ts +0 -5
@@ -29,13 +29,17 @@ export declare const enum KG_FORM_ITEM_TYPE {
|
|
29
29
|
INPUT = "INPUT",
|
30
30
|
/** 密码. */
|
31
31
|
INPUT_PASSWORD = "INPUT_PASSWORD",
|
32
|
-
/** 多行文本. */
|
33
|
-
INPUT_AREA = "INPUT_AREA",
|
34
32
|
/** 数字. */
|
35
33
|
INPUT_NUMBER = "INPUT_NUMBER",
|
34
|
+
/** 多行文本. */
|
35
|
+
TEXT_AREA = "TEXT_AREA",
|
36
|
+
/** 多选框. */
|
36
37
|
CHECKBOX = "CHECKBOX",
|
38
|
+
/** 多选框列表. */
|
37
39
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
40
|
+
/** 单选框列表. */
|
38
41
|
RADIO_GROUP = "RADIO_GROUP",
|
42
|
+
/** 开关. */
|
39
43
|
SWITCH = "SWITCH",
|
40
44
|
/** 下拉列表单选. */
|
41
45
|
SELECT = "SELECT",
|
package/package.json
CHANGED