@cgboiler/biz-basic 1.0.36 → 1.0.37
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/es/index.d.ts
CHANGED
package/es/index.js
CHANGED
|
@@ -155,9 +155,11 @@ var stdin_default = defineComponent({
|
|
|
155
155
|
if (tagEl) {
|
|
156
156
|
const id = tagEl.getAttribute("data-id") || "";
|
|
157
157
|
const label = tagEl.getAttribute("data-label") || tagEl.textContent || "";
|
|
158
|
+
const hashTag = tagEl.getAttribute("data-hash-tag") || "#";
|
|
158
159
|
emit("hashTag-clicked", {
|
|
159
160
|
hashTagId: id,
|
|
160
|
-
name: label
|
|
161
|
+
name: label,
|
|
162
|
+
type: hashTag
|
|
161
163
|
});
|
|
162
164
|
event.stopPropagation();
|
|
163
165
|
event.preventDefault();
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -36,7 +36,7 @@ __export(stdin_exports, {
|
|
|
36
36
|
module.exports = __toCommonJS(stdin_exports);
|
|
37
37
|
var import_rich_text_editor = __toESM(require("./rich-text-editor"));
|
|
38
38
|
__reExport(stdin_exports, require("./rich-text-editor"), module.exports);
|
|
39
|
-
const version = "1.0.
|
|
39
|
+
const version = "1.0.36";
|
|
40
40
|
function install(app) {
|
|
41
41
|
const components = [
|
|
42
42
|
import_rich_text_editor.default
|
|
@@ -187,9 +187,11 @@ var stdin_default = (0, import_vue2.defineComponent)({
|
|
|
187
187
|
if (tagEl) {
|
|
188
188
|
const id = tagEl.getAttribute("data-id") || "";
|
|
189
189
|
const label = tagEl.getAttribute("data-label") || tagEl.textContent || "";
|
|
190
|
+
const hashTag = tagEl.getAttribute("data-hash-tag") || "#";
|
|
190
191
|
emit("hashTag-clicked", {
|
|
191
192
|
hashTagId: id,
|
|
192
|
-
name: label
|
|
193
|
+
name: label,
|
|
194
|
+
type: hashTag
|
|
193
195
|
});
|
|
194
196
|
event.stopPropagation();
|
|
195
197
|
event.preventDefault();
|