@opentiny/vue-dropdown-item 2.11.1 → 2.12.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
@@ -112,7 +112,7 @@ var DropdownItem = defineComponent({
112
112
  });
113
113
  }
114
114
  });
115
- var version = "2.11.1";
115
+ var version = "2.12.0";
116
116
  DropdownItem.model = {
117
117
  prop: "modelValue",
118
118
  event: "update:modelValue"
package/lib/pc.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { defineComponent, $prefix, props, setup as _setup } from "@opentiny/vue-common";
2
2
  import { renderless, api } from "@opentiny/vue-renderless/dropdown-item/vue";
3
3
  import { iconDeltaLeft } from "@opentiny/vue-icon";
4
- import TinyTooltip from "@opentiny/vue-tooltip";
4
+ import Tooltip from "@opentiny/vue-tooltip";
5
5
  import "@opentiny/vue-theme/dropdown-item/index.css";
6
6
  function normalizeComponent(scriptExports, render, staticRenderFns, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
7
7
  var options = typeof scriptExports === "function" ? scriptExports.options : scriptExports;
@@ -64,7 +64,7 @@ var __vue2_script = defineComponent({
64
64
  props: [].concat(props, ["disabled", "divided", "icon", "itemData", "title", "titleClass", "options", "type", "label", "appendToBody", "textField", "selected", "selectedField", "multiStage", "currentIndex", "tip", "tipPosition"]),
65
65
  components: {
66
66
  IconDeltaLeft: iconDeltaLeft(),
67
- TinyTooltip
67
+ TinyTooltip: Tooltip
68
68
  },
69
69
  setup: function setup(props2, context) {
70
70
  return _setup({
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@opentiny/vue-dropdown-item",
3
- "version": "2.11.1",
3
+ "version": "2.12.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib/index.js",
7
7
  "sideEffects": false,
8
8
  "type": "module",
9
9
  "dependencies": {
10
- "@opentiny/vue-common": "~2.11.0",
11
- "@opentiny/vue-icon": "~2.11.0",
12
- "@opentiny/vue-renderless": "~3.11.0",
13
- "@opentiny/vue-popup": "~2.11.0",
14
- "@opentiny/vue-button": "~2.11.0",
15
- "@opentiny/vue-tooltip": "~2.11.0"
10
+ "@opentiny/vue-common": "~2.12.0",
11
+ "@opentiny/vue-icon": "~2.12.0",
12
+ "@opentiny/vue-renderless": "~3.12.0",
13
+ "@opentiny/vue-popup": "~2.12.0",
14
+ "@opentiny/vue-button": "~2.12.0",
15
+ "@opentiny/vue-tooltip": "~2.12.0"
16
16
  },
17
17
  "license": "MIT",
18
18
  "types": "index.d.ts",