bkui-vue 0.0.2-beta.117 → 0.0.2-beta.119
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.cjs.js +30 -30
- package/dist/index.esm.js +6506 -6466
- package/dist/index.umd.js +30 -30
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/date-picker/date-picker.d.ts +2 -0
- package/lib/date-picker/index.d.ts +6 -0
- package/lib/date-picker/index.js +60 -8
- package/lib/date-picker/time-picker.d.ts +2 -0
- package/lib/input/index.js +10 -5
- package/lib/select/index.d.ts +12 -0
- package/lib/select/index.js +38 -6
- package/lib/select/select.css +3 -0
- package/lib/select/select.d.ts +4 -0
- package/lib/select/select.less +3 -0
- package/lib/select/select.variable.css +3 -0
- package/lib/select/selectTagInput.d.ts +2 -0
- package/lib/steps/steps.css +8 -2
- package/lib/steps/steps.less +13 -2
- package/lib/steps/steps.variable.css +8 -2
- package/lib/time-picker/index.d.ts +6 -0
- package/package.json +1 -1
@@ -292,6 +292,7 @@ declare const BkTimePicker: {
|
|
292
292
|
handleBlur: (e: any) => void;
|
293
293
|
handleKeydown: (e: KeyboardEvent) => void;
|
294
294
|
handleInputChange: (e: any) => void;
|
295
|
+
handleInputInput: (e: any) => void;
|
295
296
|
handleClear: () => void;
|
296
297
|
handleTransferClick: () => void;
|
297
298
|
onPick: (_dates: any, visible: boolean, type: any, shortcut: any) => void;
|
@@ -316,6 +317,7 @@ declare const BkTimePicker: {
|
|
316
317
|
timeEnterMode: import("vue").Ref<boolean>;
|
317
318
|
shortcut: import("vue").Ref<any>;
|
318
319
|
onSelectionModeChange: import("vue").Ref<(_type: any) => import("../../date-picker/src/interface").SelectionModeType>;
|
320
|
+
tmpValue: import("vue").Ref<any>;
|
319
321
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change")[], string, {
|
320
322
|
type: import("../../date-picker/src/interface").PickerTypeType;
|
321
323
|
width: number;
|
@@ -558,6 +560,7 @@ declare const BkTimePicker: {
|
|
558
560
|
handleBlur: (e: any) => void;
|
559
561
|
handleKeydown: (e: KeyboardEvent) => void;
|
560
562
|
handleInputChange: (e: any) => void;
|
563
|
+
handleInputInput: (e: any) => void;
|
561
564
|
handleClear: () => void;
|
562
565
|
handleTransferClick: () => void;
|
563
566
|
onPick: (_dates: any, visible: boolean, type: any, shortcut: any) => void;
|
@@ -582,6 +585,7 @@ declare const BkTimePicker: {
|
|
582
585
|
timeEnterMode: import("vue").Ref<boolean>;
|
583
586
|
shortcut: import("vue").Ref<any>;
|
584
587
|
onSelectionModeChange: import("vue").Ref<(_type: any) => import("../../date-picker/src/interface").SelectionModeType>;
|
588
|
+
tmpValue: import("vue").Ref<any>;
|
585
589
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
586
590
|
__isFragment?: never;
|
587
591
|
__isTeleport?: never;
|
@@ -767,6 +771,7 @@ declare const BkTimePicker: {
|
|
767
771
|
handleBlur: (e: any) => void;
|
768
772
|
handleKeydown: (e: KeyboardEvent) => void;
|
769
773
|
handleInputChange: (e: any) => void;
|
774
|
+
handleInputInput: (e: any) => void;
|
770
775
|
handleClear: () => void;
|
771
776
|
handleTransferClick: () => void;
|
772
777
|
onPick: (_dates: any, visible: boolean, type: any, shortcut: any) => void;
|
@@ -791,6 +796,7 @@ declare const BkTimePicker: {
|
|
791
796
|
timeEnterMode: import("vue").Ref<boolean>;
|
792
797
|
shortcut: import("vue").Ref<any>;
|
793
798
|
onSelectionModeChange: import("vue").Ref<(_type: any) => import("../../date-picker/src/interface").SelectionModeType>;
|
799
|
+
tmpValue: import("vue").Ref<any>;
|
794
800
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change")[], "change" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change", {
|
795
801
|
type: import("../../date-picker/src/interface").PickerTypeType;
|
796
802
|
width: number;
|