@opentiny/vue-dropdown-item 3.6.0-alpha.0 → 3.6.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.
package/lib/index.js CHANGED
@@ -110,6 +110,6 @@ DropdownItem.model = {
110
110
  DropdownItem.install = function (Vue) {
111
111
  Vue.component(DropdownItem.name, DropdownItem);
112
112
  };
113
- DropdownItem.version = '3.6.0-alpha.0';
113
+ DropdownItem.version = '3.6.0';
114
114
 
115
115
  export { DropdownItem as default };
package/lib/mobile.js CHANGED
@@ -43,7 +43,7 @@ var script = {
43
43
  TinyPopup: Popup,
44
44
  TinyButton: Button
45
45
  },
46
- emits: ['update:modelValue'],
46
+ emits: ['update:modelValue', 'open', 'opened', 'click', 'change', 'closed', 'close', 'reset', 'confirm', 'item-click'],
47
47
  setup: function setup$1(props, context) {
48
48
  return setup({
49
49
  props: props,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentiny/vue-dropdown-item",
3
- "version": "3.6.0-alpha.0",
3
+ "version": "3.6.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -9,11 +9,11 @@
9
9
  "build:ui3": "cross-env BUILD_TARGET=single NODE_ENV=production node ../../example/build/build-ui.js"
10
10
  },
11
11
  "dependencies": {
12
- "@opentiny/vue-common": "~3.6.0-alpha.0",
13
- "@opentiny/vue-icon": "~3.6.0-alpha.0",
12
+ "@opentiny/vue-common": "~3.6.0",
13
+ "@opentiny/vue-icon": "~3.6.0",
14
14
  "@opentiny/vue-renderless": "~3.6.0",
15
- "@opentiny/vue-popup": "~3.6.0-alpha.0",
16
- "@opentiny/vue-button": "~3.6.0-alpha.0",
15
+ "@opentiny/vue-popup": "~3.6.0",
16
+ "@opentiny/vue-button": "~3.6.0",
17
17
  "@opentiny/vue-theme": "~3.6.0",
18
18
  "@opentiny/vue-theme-mobile": "~3.6.0"
19
19
  },