vue-devui 1.5.15-hotfix.2 → 1.5.15-hotfix.3

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/vue-devui.es.js CHANGED
@@ -26128,14 +26128,17 @@ var ToolbarItem = defineComponent({
26128
26128
  };
26129
26129
  return () => createVNode(Fragment, null, [config.type === "button" && createVNode(Tooltip, {
26130
26130
  "position": ["top", "bottom"],
26131
- "content": getTooltipContent(config.name, config.shortKey),
26132
26131
  "hide-after": 1e3
26133
26132
  }, {
26134
- default: () => [createVNode("span", {
26133
+ default: () => createVNode("span", {
26135
26134
  "class": "md-toolbar-item",
26136
26135
  "onClick": onToolbarItemClick,
26137
26136
  "innerHTML": config.id === "fullscreen" ? showFullscreen.value ? config.exitIcon : config.icon : config.icon
26138
- }, null)]
26137
+ }, null),
26138
+ content: () => createVNode("span", {
26139
+ "class": "md-toolbar-tip-content",
26140
+ "innerHTML": getTooltipContent(config.name, config.shortKey)
26141
+ }, null)
26139
26142
  }), config.type === "dropDown" && createVNode(Dropdown$1, {
26140
26143
  "position": ["bottom-start"],
26141
26144
  "align": "start"
@@ -26145,14 +26148,18 @@ var ToolbarItem = defineComponent({
26145
26148
  "content": getTooltipContent(config.name),
26146
26149
  "hide-after": 1e3
26147
26150
  }, {
26148
- default: () => [createVNode("span", {
26151
+ default: () => createVNode("span", {
26149
26152
  "class": "md-toolbar-item",
26150
26153
  "onClick": () => {
26151
26154
  var _a;
26152
26155
  return (_a = config.handler) == null ? void 0 : _a.call(config);
26153
26156
  },
26154
26157
  "innerHTML": config.icon
26155
- }, null)]
26158
+ }, null),
26159
+ content: () => createVNode("span", {
26160
+ "class": "md-toolbar-tip-content",
26161
+ "innerHTML": getTooltipContent(config.name)
26162
+ }, null)
26156
26163
  })]),
26157
26164
  menu: () => createVNode(Fragment, null, [config.component === "FontSize" && createVNode(FontSize, null, null), config.component === "FontColor" && createVNode(FontColor, null, null)])
26158
26165
  })]);
@@ -44063,7 +44070,7 @@ const installs = [
44063
44070
  VirtualListInstall
44064
44071
  ];
44065
44072
  var vueDevui = {
44066
- version: "1.5.15-hotfix.2",
44073
+ version: "1.5.15-hotfix.3",
44067
44074
  install(app) {
44068
44075
  installs.forEach((p) => app.use(p));
44069
44076
  }