bkui-vue 2.0.1-beta.104 → 2.0.1-beta.105
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 +31 -31
- package/dist/index.esm.js +7458 -7452
- package/dist/index.umd.js +31 -31
- package/lib/date-picker/index.js +10 -2
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/lib/date-picker/index.js
CHANGED
@@ -4367,7 +4367,8 @@ function date_picker_objectSpread(e) { for (var r = 1; r < arguments.length; r++
|
|
4367
4367
|
slots: Object,
|
4368
4368
|
setup: function setup(props, _ref) {
|
4369
4369
|
var slots = _ref.slots,
|
4370
|
-
emit = _ref.emit
|
4370
|
+
emit = _ref.emit,
|
4371
|
+
expose = _ref.expose;
|
4371
4372
|
var formItem = (0,shared_namespaceObject.useFormItem)();
|
4372
4373
|
var isRange = props.type.includes('range');
|
4373
4374
|
var teleportTo = (0,external_vue_namespaceObject.ref)((0,shared_namespaceObject.getFullscreenRoot)());
|
@@ -4877,6 +4878,9 @@ function date_picker_objectSpread(e) { for (var r = 1; r < arguments.length; r++
|
|
4877
4878
|
var onPickFirst = function onPickFirst(val, type) {
|
4878
4879
|
emit('pick-first', val, type);
|
4879
4880
|
};
|
4881
|
+
expose({
|
4882
|
+
focus: handleIconClick
|
4883
|
+
});
|
4880
4884
|
return date_picker_objectSpread(date_picker_objectSpread({}, (0,external_vue_namespaceObject.toRefs)(state)), {}, {
|
4881
4885
|
panel: panel,
|
4882
4886
|
publicStringValue: publicStringValue,
|
@@ -5092,7 +5096,8 @@ function time_picker_objectSpread(e) { for (var r = 1; r < arguments.length; r++
|
|
5092
5096
|
slots: Object,
|
5093
5097
|
setup: function setup(props, _ref) {
|
5094
5098
|
var slots = _ref.slots,
|
5095
|
-
emit = _ref.emit
|
5099
|
+
emit = _ref.emit,
|
5100
|
+
expose = _ref.expose;
|
5096
5101
|
var _usePrefix = (0,config_provider_namespaceObject.usePrefix)(),
|
5097
5102
|
resolveClassName = _usePrefix.resolveClassName;
|
5098
5103
|
var teleportTo = (0,external_vue_namespaceObject.ref)((0,shared_namespaceObject.getFullscreenRoot)());
|
@@ -5593,6 +5598,9 @@ function time_picker_objectSpread(e) { for (var r = 1; r < arguments.length; r++
|
|
5593
5598
|
emit('shortcut-change', state.shortcut, shortcutIndex);
|
5594
5599
|
};
|
5595
5600
|
var triggerRef = (0,external_vue_namespaceObject.ref)(null);
|
5601
|
+
expose({
|
5602
|
+
focus: handleIconClick
|
5603
|
+
});
|
5596
5604
|
return time_picker_objectSpread(time_picker_objectSpread({}, (0,external_vue_namespaceObject.toRefs)(state)), {}, {
|
5597
5605
|
panel: panel,
|
5598
5606
|
publicStringValue: publicStringValue,
|
package/lib/index.js
CHANGED