@vipl520/dk-ui 1.0.50 → 1.0.52
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.css +1 -1
- package/dist/index.js +2 -2
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.min.mjs +1 -1
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/web-types.json +1 -1
- package/es/color-input/src/color-input.vue2.mjs +1 -0
- package/es/color-input/src/color-input.vue2.mjs.map +1 -1
- package/es/style-box-input/style/index.scss +1 -1
- package/es/style-input/src/style-input.vue2.mjs +0 -1
- package/es/style-input/src/style-input.vue2.mjs.map +1 -1
- package/es/tiny-editor/src/tiny-editor.vue2.mjs +1 -1
- package/es/tiny-editor/src/tiny-editor.vue2.mjs.map +1 -1
- package/es/uni-icon/style/index.css +1 -1
- package/es/uni-icon/style/index.scss +1 -2
- package/es/uni-icon/style/uniicons.css +1 -1
- package/es/uni-icon/style/uniicons.scss +166 -166
- package/lib/color-input/src/color-input.vue2.js +1 -0
- package/lib/color-input/src/color-input.vue2.js.map +1 -1
- package/lib/style-box-input/style/index.scss +1 -1
- package/lib/style-input/src/style-input.vue2.js +0 -1
- package/lib/style-input/src/style-input.vue2.js.map +1 -1
- package/lib/tiny-editor/src/tiny-editor.vue2.js +1 -1
- package/lib/tiny-editor/src/tiny-editor.vue2.js.map +1 -1
- package/lib/uni-icon/style/index.css +1 -1
- package/lib/uni-icon/style/index.scss +1 -2
- package/lib/uni-icon/style/uniicons.css +1 -1
- package/lib/uni-icon/style/uniicons.scss +166 -166
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -1455,7 +1455,7 @@ var _sfc_main$1b = /* @__PURE__ */ defineComponent({
|
|
1455
1455
|
images_upload_handler: handleImageUpload,
|
1456
1456
|
initialContent: "Loading editor..."
|
1457
1457
|
});
|
1458
|
-
const tinymceSrc = ref("https://
|
1458
|
+
const tinymceSrc = ref("https://unpkg.com/dk-tinymce@latest/tinymce.min.js");
|
1459
1459
|
const attachmentRef = ref();
|
1460
1460
|
const editorRef = ref();
|
1461
1461
|
const showDialog = computed(() => {
|
@@ -1765,6 +1765,7 @@ var _sfc_main$19 = /* @__PURE__ */ defineComponent({
|
|
1765
1765
|
createVNode(_component_el_color_picker, {
|
1766
1766
|
modelValue: data.value,
|
1767
1767
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => data.value = $event),
|
1768
|
+
teleported: false,
|
1768
1769
|
"show-alpha": _ctx.showAlpha,
|
1769
1770
|
"color-format": _ctx.colorFormat
|
1770
1771
|
}, null, 8, ["modelValue", "show-alpha", "color-format"])
|
@@ -4902,7 +4903,6 @@ var _sfc_main$S = /* @__PURE__ */ defineComponent({
|
|
4902
4903
|
const _components = ref([]);
|
4903
4904
|
const init = () => {
|
4904
4905
|
_components.value = props.components.filter((item) => {
|
4905
|
-
console.log("item.name", item.name);
|
4906
4906
|
return !props.hideComponents.includes(item.name);
|
4907
4907
|
});
|
4908
4908
|
const obj = {};
|
package/dist/web-types.json
CHANGED
@@ -45,6 +45,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
45
45
|
createVNode(_component_el_color_picker, {
|
46
46
|
modelValue: data.value,
|
47
47
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => data.value = $event),
|
48
|
+
teleported: false,
|
48
49
|
"show-alpha": _ctx.showAlpha,
|
49
50
|
"color-format": _ctx.colorFormat
|
50
51
|
}, null, 8, ["modelValue", "show-alpha", "color-format"])
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"color-input.vue2.mjs","sources":["../../../src/color-input/src/color-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkColorInput',\n});\n</script>\n<template>\n <div style=\"display: flex\" class=\"dk-color-input\">\n <el-input
|
1
|
+
{"version":3,"file":"color-input.vue2.mjs","sources":["../../../src/color-input/src/color-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkColorInput',\n});\n</script>\n<template>\n <div style=\"display: flex\" class=\"dk-color-input\">\n <el-input v-model=\"data\" :placeholder=\"placeholder\" clearable style=\"width: 100%\" />\n <el-color-picker v-model=\"data\" :teleported=\"false\" :show-alpha=\"showAlpha\" :color-format=\"colorFormat\" />\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref, watch } from 'vue'\nimport { createNamespace } from '@vipl520/utils'\nimport { colorInputProps } from './props'\n\nconst [_, bem] = createNamespace('color-input')\n\n\n\nconst props = defineProps(colorInputProps)\n\nconst data = ref(props.modelValue || '')\n\nconst emit = defineEmits(['input', 'update:modelValue', 'change'])\nwatch(\n () => props.modelValue,\n (val) => {\n data.value = val\n }\n)\nwatch(\n () => data.value,\n (val) => {\n emit('change', val)\n emit('update:modelValue', val)\n emit('input', val)\n }\n)\n</script>\n"],"names":["__MACROS_defineComponent"],"mappings":";;;;;;;;AAEA,MAA6B,cAAAA,eAAyB,CAAA;AAAA,EACpD,IAAM,EAAA,cAAA;AACR,CAAC,CAAA,CAAA;;;;;;;AAcD,IAAA,MAAM,CAAC,CAAA,EAAG,GAAG,CAAA,GAAI,gBAAgB,aAAa,CAAA,CAAA;AAM9C,IAAA,MAAM,IAAO,GAAA,GAAA,CAAI,KAAM,CAAA,UAAA,IAAc,EAAE,CAAA,CAAA;AAGvC,IAAA,KAAA;AAAA,MACE,MAAM,KAAM,CAAA,UAAA;AAAA,MACZ,CAAC,GAAQ,KAAA;AACP,QAAA,IAAA,CAAK,KAAQ,GAAA,GAAA,CAAA;AAAA,OACf;AAAA,KACF,CAAA;AACA,IAAA,KAAA;AAAA,MACE,MAAM,IAAK,CAAA,KAAA;AAAA,MACX,CAAC,GAAQ,KAAA;AACP,QAAA,IAAA,CAAK,UAAU,GAAG,CAAA,CAAA;AAClB,QAAA,IAAA,CAAK,qBAAqB,GAAG,CAAA,CAAA;AAC7B,QAAA,IAAA,CAAK,SAAS,GAAG,CAAA,CAAA;AAAA,OACnB;AAAA,KACF,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
@@ -32,7 +32,6 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
32
32
|
const _components = ref([]);
|
33
33
|
const init = () => {
|
34
34
|
_components.value = props.components.filter((item) => {
|
35
|
-
console.log("item.name", item.name);
|
36
35
|
return !props.hideComponents.includes(item.name);
|
37
36
|
});
|
38
37
|
const obj = {};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"style-input.vue2.mjs","sources":["../../../src/style-input/src/style-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkStyleInput',\n});\n</script>\n<template>\n <div class=\"dk-style-input\">\n <div v-if=\"!loading\" class=\"p-5px\">\n <el-collapse v-if=\"!props.isDrawer\" v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n <div v-else>\n <el-button type=\"primary\" plain style=\"width: 100%\" @click=\"drawer = true\">{{ props.drawerText }}</el-button>\n <el-drawer v-model=\"drawer\" v-bind=\"props.drawerProps\">\n <el-collapse v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n </el-drawer>\n </div>\n </div>\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { styleInputProps } from './props'\nimport { onMounted, ref, watch } from 'vue'\n\n\nconst props = defineProps(styleInputProps)\nconst drawer = ref(false)\nconst activeNames = ref([0])\nconst values: any = ref({})\nconst loading = ref(true)\n\nconst emit = defineEmits(['update:modelValue'])\nconst onChange = () => {\n const obj: any = {}\n Object.keys(values.value).forEach((key) => {\n Object.keys(values.value[key]).forEach((k) => {\n obj[k] = values.value[key][k]\n })\n })\n emit('update:modelValue', obj)\n}\n\nconst _components: any = ref([])\nconst init = () => {\n _components.value = props.components.filter((item: any) => {\n
|
1
|
+
{"version":3,"file":"style-input.vue2.mjs","sources":["../../../src/style-input/src/style-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkStyleInput',\n});\n</script>\n<template>\n <div class=\"dk-style-input\">\n <div v-if=\"!loading\" class=\"p-5px\">\n <el-collapse v-if=\"!props.isDrawer\" v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n <div v-else>\n <el-button type=\"primary\" plain style=\"width: 100%\" @click=\"drawer = true\">{{ props.drawerText }}</el-button>\n <el-drawer v-model=\"drawer\" v-bind=\"props.drawerProps\">\n <el-collapse v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n </el-drawer>\n </div>\n </div>\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { styleInputProps } from './props'\nimport { onMounted, ref, watch } from 'vue'\n\n\nconst props = defineProps(styleInputProps)\nconst drawer = ref(false)\nconst activeNames = ref([0])\nconst values: any = ref({})\nconst loading = ref(true)\n\nconst emit = defineEmits(['update:modelValue'])\nconst onChange = () => {\n const obj: any = {}\n Object.keys(values.value).forEach((key) => {\n Object.keys(values.value[key]).forEach((k) => {\n obj[k] = values.value[key][k]\n })\n })\n emit('update:modelValue', obj)\n}\n\nconst _components: any = ref([])\nconst init = () => {\n _components.value = props.components.filter((item: any) => {\n return !props.hideComponents.includes(item.name)\n })\n const obj: any = {}\n _components.value.forEach((item: any) => {\n const params = item.params\n const paramsObj: any = {}\n Object.keys(params).forEach((key) => {\n const param = params[key]\n if (props.modelValue[param]) {\n paramsObj[param] = props.modelValue[param]\n }\n })\n obj[item.name] = paramsObj\n })\n values.value = obj\n loading.value = false\n}\n\nwatch(\n () => props.modelValue,\n () => {\n init()\n },\n {\n deep: true,\n }\n)\n\nonMounted(() => {\n init()\n})\n</script>\n"],"names":["__MACROS_defineComponent"],"mappings":";;;;;;;;;AAEA,MAA6B,cAAAA,eAAyB,CAAA;AAAA,EACpD,IAAM,EAAA,cAAA;AACR,CAAC,CAAA,CAAA;;;;;;;AAgDD,IAAM,MAAA,MAAA,GAAS,IAAI,KAAK,CAAA,CAAA;AACxB,IAAA,MAAM,WAAc,GAAA,GAAA,CAAI,CAAC,CAAC,CAAC,CAAA,CAAA;AAC3B,IAAM,MAAA,MAAA,GAAc,GAAI,CAAA,EAAE,CAAA,CAAA;AAC1B,IAAM,MAAA,OAAA,GAAU,IAAI,IAAI,CAAA,CAAA;AAGxB,IAAA,MAAM,WAAW,MAAM;AACrB,MAAA,MAAM,MAAW,EAAC,CAAA;AAClB,MAAA,MAAA,CAAO,KAAK,MAAO,CAAA,KAAK,CAAE,CAAA,OAAA,CAAQ,CAAC,GAAQ,KAAA;AACzC,QAAO,MAAA,CAAA,IAAA,CAAK,OAAO,KAAM,CAAA,GAAG,CAAC,CAAE,CAAA,OAAA,CAAQ,CAAC,CAAM,KAAA;AAC5C,UAAA,GAAA,CAAI,CAAC,CAAI,GAAA,MAAA,CAAO,KAAM,CAAA,GAAG,EAAE,CAAC,CAAA,CAAA;AAAA,SAC7B,CAAA,CAAA;AAAA,OACF,CAAA,CAAA;AACD,MAAA,IAAA,CAAK,qBAAqB,GAAG,CAAA,CAAA;AAAA,KAC/B,CAAA;AAEA,IAAM,MAAA,WAAA,GAAmB,GAAI,CAAA,EAAE,CAAA,CAAA;AAC/B,IAAA,MAAM,OAAO,MAAM;AACjB,MAAA,WAAA,CAAY,KAAQ,GAAA,KAAA,CAAM,UAAW,CAAA,MAAA,CAAO,CAAC,IAAc,KAAA;AACzD,QAAA,OAAO,CAAC,KAAA,CAAM,cAAe,CAAA,QAAA,CAAS,KAAK,IAAI,CAAA,CAAA;AAAA,OAChD,CAAA,CAAA;AACD,MAAA,MAAM,MAAW,EAAC,CAAA;AAClB,MAAY,WAAA,CAAA,KAAA,CAAM,OAAQ,CAAA,CAAC,IAAc,KAAA;AACvC,QAAA,MAAM,SAAS,IAAK,CAAA,MAAA,CAAA;AACpB,QAAA,MAAM,YAAiB,EAAC,CAAA;AACxB,QAAA,MAAA,CAAO,IAAK,CAAA,MAAM,CAAE,CAAA,OAAA,CAAQ,CAAC,GAAQ,KAAA;AACnC,UAAM,MAAA,KAAA,GAAQ,OAAO,GAAG,CAAA,CAAA;AACxB,UAAI,IAAA,KAAA,CAAM,UAAW,CAAA,KAAK,CAAG,EAAA;AAC3B,YAAA,SAAA,CAAU,KAAK,CAAA,GAAI,KAAM,CAAA,UAAA,CAAW,KAAK,CAAA,CAAA;AAAA,WAC3C;AAAA,SACD,CAAA,CAAA;AACD,QAAI,GAAA,CAAA,IAAA,CAAK,IAAI,CAAI,GAAA,SAAA,CAAA;AAAA,OAClB,CAAA,CAAA;AACD,MAAA,MAAA,CAAO,KAAQ,GAAA,GAAA,CAAA;AACf,MAAA,OAAA,CAAQ,KAAQ,GAAA,KAAA,CAAA;AAAA,KAClB,CAAA;AAEA,IAAA,KAAA;AAAA,MACE,MAAM,KAAM,CAAA,UAAA;AAAA,MACZ,MAAM;AACJ,QAAK,IAAA,EAAA,CAAA;AAAA,OACP;AAAA,MACA;AAAA,QACE,IAAM,EAAA,IAAA;AAAA,OACR;AAAA,KACF,CAAA;AAEA,IAAA,SAAA,CAAU,MAAM;AACd,MAAK,IAAA,EAAA,CAAA;AAAA,KACN,CAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
@@ -37,7 +37,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
37
37
|
images_upload_handler: handleImageUpload,
|
38
38
|
initialContent: "Loading editor..."
|
39
39
|
});
|
40
|
-
const tinymceSrc = ref("https://
|
40
|
+
const tinymceSrc = ref("https://unpkg.com/dk-tinymce@latest/tinymce.min.js");
|
41
41
|
const attachmentRef = ref();
|
42
42
|
const editorRef = ref();
|
43
43
|
const showDialog = computed(() => {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"tiny-editor.vue2.mjs","sources":["../../../src/tiny-editor/src/tiny-editor.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkTinyEditor',\n});\n</script>\n<template>\n <div ref=\"el\" class=\"dk-tiny-editor\">\n <div v-if=\"showDialog\">\n <Editor ref=\"editorRef\" v-model=\"content\" :init=\"init\" :tinymce-script-src=\"tinymceSrc\" @dblclick=\"ondblclick\" />\n </div>\n <div v-else>\n <el-button type=\"primary\" plain style=\"width: 100%\" @click=\"showEditor = true\">{{ props.buttonText }}</el-button>\n <dk-dialog v-model=\"showEditor\" title=\"编辑\" width=\"900px\" :z-index=\"1298\">\n <Editor\n ref=\"editorRef\"\n v-model=\"content\"\n :init=\"init\"\n :tinymce-script-src=\"tinymceSrc\"\n @dblclick=\"ondblclick\"\n />\n <template #footer>\n <div class=\"text-center\">\n <el-button type=\"primary\" style=\"width: 200px\" @click=\"showEditor = false\">确定</el-button>\n </div>\n </template>\n </dk-dialog>\n </div>\n <dk-attachment-dialog ref=\"attachmentRef\" :type=\"1\" @confirm=\"onSubmit\" />\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport config from './config'\nimport Editor from '@tinymce/tinymce-vue'\nimport { nextTick, onMounted, ref, watch, computed } from 'vue'\nimport { UploadAttachment } from '../../api'\nimport { tinyEditorProps } from './props'\nimport { useElementSize } from '@vueuse/core'\nconst el: any = ref(null)\nconst { width } = useElementSize(el) // 当前组件宽度\n\n\nconst props = defineProps(tinyEditorProps)\nconst content = ref(props.modelValue)\nconst showEditor = ref(false)\n// 上传的地址\nconst handleImageUpload = (blobInfo: any, progress: any) =>\n new Promise((resolve, reject) => {\n UploadAttachment(blobInfo.blob())\n .then((res) => {\n progress(100)\n resolve(res.data.url)\n })\n .catch((err) => {\n reject(err)\n })\n })\n\nconst init = ref({\n ...config,\n height: props.height,\n content_css: props.document ? 'document' : '',\n images_upload_handler: handleImageUpload,\n initialContent: 'Loading editor...',\n})\n\nconst tinymceSrc = ref('https://
|
1
|
+
{"version":3,"file":"tiny-editor.vue2.mjs","sources":["../../../src/tiny-editor/src/tiny-editor.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkTinyEditor',\n});\n</script>\n<template>\n <div ref=\"el\" class=\"dk-tiny-editor\">\n <div v-if=\"showDialog\">\n <Editor ref=\"editorRef\" v-model=\"content\" :init=\"init\" :tinymce-script-src=\"tinymceSrc\" @dblclick=\"ondblclick\" />\n </div>\n <div v-else>\n <el-button type=\"primary\" plain style=\"width: 100%\" @click=\"showEditor = true\">{{ props.buttonText }}</el-button>\n <dk-dialog v-model=\"showEditor\" title=\"编辑\" width=\"900px\" :z-index=\"1298\">\n <Editor\n ref=\"editorRef\"\n v-model=\"content\"\n :init=\"init\"\n :tinymce-script-src=\"tinymceSrc\"\n @dblclick=\"ondblclick\"\n />\n <template #footer>\n <div class=\"text-center\">\n <el-button type=\"primary\" style=\"width: 200px\" @click=\"showEditor = false\">确定</el-button>\n </div>\n </template>\n </dk-dialog>\n </div>\n <dk-attachment-dialog ref=\"attachmentRef\" :type=\"1\" @confirm=\"onSubmit\" />\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport config from './config'\nimport Editor from '@tinymce/tinymce-vue'\nimport { nextTick, onMounted, ref, watch, computed } from 'vue'\nimport { UploadAttachment } from '../../api'\nimport { tinyEditorProps } from './props'\nimport { useElementSize } from '@vueuse/core'\nconst el: any = ref(null)\nconst { width } = useElementSize(el) // 当前组件宽度\n\n\nconst props = defineProps(tinyEditorProps)\nconst content = ref(props.modelValue)\nconst showEditor = ref(false)\n// 上传的地址\nconst handleImageUpload = (blobInfo: any, progress: any) =>\n new Promise((resolve, reject) => {\n UploadAttachment(blobInfo.blob())\n .then((res) => {\n progress(100)\n resolve(res.data.url)\n })\n .catch((err) => {\n reject(err)\n })\n })\n\nconst init = ref({\n ...config,\n height: props.height,\n content_css: props.document ? 'document' : '',\n images_upload_handler: handleImageUpload,\n initialContent: 'Loading editor...',\n})\n\nconst tinymceSrc = ref('https://unpkg.com/dk-tinymce@latest/tinymce.min.js')\nconst attachmentRef = ref()\nconst editorRef = ref()\nconst emit = defineEmits(['input', 'update:modelValue', 'change'])\n\nconst showDialog = computed(() => {\n return width.value >= props.showDialogWidth\n})\n\nwatch(\n () => props.modelValue,\n (newValue) => {\n content.value = newValue\n }\n)\n\nwatch(\n () => content.value,\n (newValue) => {\n emit('update:modelValue', newValue)\n emit('input', newValue)\n emit('change', newValue)\n }\n)\n\nonMounted(() => {\n nextTick(() => {\n initShowImage()\n })\n})\n\nwatch(\n () => editorRef.value,\n () => {\n if (editorRef.value?.getEditor()) {\n editorRef.value.getEditor().on('showImage', () => {\n attachmentRef.value.open()\n })\n }\n }\n)\n\nconst initShowImage = () => {\n if (!editorRef.value?.getEditor()) {\n setTimeout(() => {\n initShowImage()\n }, 1000)\n } else {\n editorRef.value.getEditor().on('showImage', () => {\n attachmentRef.value.open()\n })\n }\n}\n\nconst onSubmit = (chooseFileList: any) => {\n const editor = editorRef.value.getEditor()\n let html = ''\n chooseFileList.forEach((item: any) => {\n html += '<img src=\"' + item.url + '\" alt=\"\" width=\"100%\">'\n })\n editor.insertContent(html)\n}\n\nconst ondblclick = (editor: any) => {\n console.log(editor)\n}\n</script>\n"],"names":["__MACROS_defineComponent","init","config"],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
.uniui-cart-filled
|
1
|
+
.uniui-cart-filled::before{content:"\e6d0"}.uniui-gift-filled::before{content:"\e6c4"}.uniui-color::before{content:"\e6cf"}.uniui-wallet::before{content:"\e6b1"}.uniui-settings-filled::before{content:"\e6ce"}.uniui-auth-filled::before{content:"\e6cc"}.uniui-shop-filled::before{content:"\e6cd"}.uniui-staff-filled::before{content:"\e6cb"}.uniui-vip-filled::before{content:"\e6c6"}.uniui-plus-filled::before{content:"\e6c7"}.uniui-folder-add-filled::before{content:"\e6c8"}.uniui-color-filled::before{content:"\e6c9"}.uniui-tune-filled::before{content:"\e6ca"}.uniui-calendar-filled::before{content:"\e6c0"}.uniui-notification-filled::before{content:"\e6c1"}.uniui-wallet-filled::before{content:"\e6c2"}.uniui-medal-filled::before{content:"\e6c3"}.uniui-fire-filled::before{content:"\e6c5"}.uniui-refreshempty::before{content:"\e6bf"}.uniui-location-filled::before{content:"\e6af"}.uniui-person-filled::before{content:"\e69d"}.uniui-personadd-filled::before{content:"\e698"}.uniui-arrowthinleft::before{content:"\e6d2"}.uniui-arrowthinup::before{content:"\e6d3"}.uniui-arrowthindown::before{content:"\e6d4"}.uniui-back::before{content:"\e6b9"}.uniui-forward::before{content:"\e6ba"}.uniui-arrow-right::before{content:"\e6bb"}.uniui-arrow-left::before{content:"\e6bc"}.uniui-arrow-up::before{content:"\e6bd"}.uniui-arrow-down::before{content:"\e6be"}.uniui-arrowthinright::before{content:"\e6d1"}.uniui-down::before{content:"\e6b8"}.uniui-bottom::before{content:"\e6b8"}.uniui-arrowright::before{content:"\e6d5"}.uniui-right::before{content:"\e6b5"}.uniui-up::before{content:"\e6b6"}.uniui-top::before{content:"\e6b6"}.uniui-left::before{content:"\e6b7"}.uniui-arrowup::before{content:"\e6d6"}.uniui-eye::before{content:"\e651"}.uniui-eye-filled::before{content:"\e66a"}.uniui-eye-slash::before{content:"\e6b3"}.uniui-eye-slash-filled::before{content:"\e6b4"}.uniui-info-filled::before{content:"\e649"}.uniui-reload::before{content:"\e6b2"}.uniui-micoff-filled::before{content:"\e6b0"}.uniui-map-pin-ellipse::before{content:"\e6ac"}.uniui-map-pin::before{content:"\e6ad"}.uniui-location::before{content:"\e6ae"}.uniui-starhalf::before{content:"\e683"}.uniui-star::before{content:"\e688"}.uniui-star-filled::before{content:"\e68f"}.uniui-calendar::before{content:"\e6a0"}.uniui-fire::before{content:"\e6a1"}.uniui-medal::before{content:"\e6a2"}.uniui-font::before{content:"\e6a3"}.uniui-gift::before{content:"\e6a4"}.uniui-link::before{content:"\e6a5"}.uniui-notification::before{content:"\e6a6"}.uniui-staff::before{content:"\e6a7"}.uniui-vip::before{content:"\e6a8"}.uniui-folder-add::before{content:"\e6a9"}.uniui-tune::before{content:"\e6aa"}.uniui-auth::before{content:"\e6ab"}.uniui-person::before{content:"\e699"}.uniui-email-filled::before{content:"\e69a"}.uniui-phone-filled::before{content:"\e69b"}.uniui-phone::before{content:"\e69c"}.uniui-email::before{content:"\e69e"}.uniui-personadd::before{content:"\e69f"}.uniui-chatboxes-filled::before{content:"\e692"}.uniui-contact::before{content:"\e693"}.uniui-chatbubble-filled::before{content:"\e694"}.uniui-contact-filled::before{content:"\e695"}.uniui-chatboxes::before{content:"\e696"}.uniui-chatbubble::before{content:"\e697"}.uniui-upload-filled::before{content:"\e68e"}.uniui-upload::before{content:"\e690"}.uniui-weixin::before{content:"\e691"}.uniui-compose::before{content:"\e67f"}.uniui-qq::before{content:"\e680"}.uniui-download-filled::before{content:"\e681"}.uniui-pyq::before{content:"\e682"}.uniui-sound::before{content:"\e684"}.uniui-trash-filled::before{content:"\e685"}.uniui-sound-filled::before{content:"\e686"}.uniui-trash::before{content:"\e687"}.uniui-videocam-filled::before{content:"\e689"}.uniui-spinner-cycle::before{content:"\e68a"}.uniui-weibo::before{content:"\e68b"}.uniui-videocam::before{content:"\e68c"}.uniui-download::before{content:"\e68d"}.uniui-help::before{content:"\e679"}.uniui-navigate-filled::before{content:"\e67a"}.uniui-plusempty::before{content:"\e67b"}.uniui-smallcircle::before{content:"\e67c"}.uniui-minus-filled::before{content:"\e67d"}.uniui-micoff::before{content:"\e67e"}.uniui-closeempty::before{content:"\e66c"}.uniui-clear::before{content:"\e66d"}.uniui-navigate::before{content:"\e66e"}.uniui-minus::before{content:"\e66f"}.uniui-image::before{content:"\e670"}.uniui-mic::before{content:"\e671"}.uniui-paperplane::before{content:"\e672"}.uniui-close::before{content:"\e673"}.uniui-help-filled::before{content:"\e674"}.uniui-paperplane-filled::before{content:"\e675"}.uniui-plus::before{content:"\e676"}.uniui-mic-filled::before{content:"\e677"}.uniui-image-filled::before{content:"\e678"}.uniui-locked-filled::before{content:"\e668"}.uniui-info::before{content:"\e669"}.uniui-locked::before{content:"\e66b"}.uniui-camera-filled::before{content:"\e658"}.uniui-chat-filled::before{content:"\e659"}.uniui-camera::before{content:"\e65a"}.uniui-circle::before{content:"\e65b"}.uniui-checkmarkempty::before{content:"\e65c"}.uniui-chat::before{content:"\e65d"}.uniui-circle-filled::before{content:"\e65e"}.uniui-flag::before{content:"\e65f"}.uniui-flag-filled::before{content:"\e660"}.uniui-gear-filled::before{content:"\e661"}.uniui-home::before{content:"\e662"}.uniui-home-filled::before{content:"\e663"}.uniui-gear::before{content:"\e664"}.uniui-smallcircle-filled::before{content:"\e665"}.uniui-map-filled::before{content:"\e666"}.uniui-map::before{content:"\e667"}.uniui-refresh-filled::before{content:"\e656"}.uniui-refresh::before{content:"\e657"}.uniui-cloud-upload::before{content:"\e645"}.uniui-cloud-download-filled::before{content:"\e646"}.uniui-cloud-download::before{content:"\e647"}.uniui-cloud-upload-filled::before{content:"\e648"}.uniui-redo::before{content:"\e64a"}.uniui-images-filled::before{content:"\e64b"}.uniui-undo-filled::before{content:"\e64c"}.uniui-more::before{content:"\e64d"}.uniui-more-filled::before{content:"\e64e"}.uniui-undo::before{content:"\e64f"}.uniui-images::before{content:"\e650"}.uniui-paperclip::before{content:"\e652"}.uniui-settings::before{content:"\e653"}.uniui-search::before{content:"\e654"}.uniui-redo-filled::before{content:"\e655"}.uniui-list::before{content:"\e644"}.uniui-mail-open-filled::before{content:"\e63a"}.uniui-hand-down-filled::before{content:"\e63c"}.uniui-hand-down::before{content:"\e63d"}.uniui-hand-up-filled::before{content:"\e63e"}.uniui-hand-up::before{content:"\e63f"}.uniui-heart-filled::before{content:"\e641"}.uniui-mail-open::before{content:"\e643"}.uniui-heart::before{content:"\e639"}.uniui-loop::before{content:"\e633"}.uniui-pulldown::before{content:"\e632"}.uniui-scan::before{content:"\e62a"}.uniui-bars::before{content:"\e627"}.uniui-checkbox::before{content:"\e62b"}.uniui-checkbox-filled::before{content:"\e62c"}.uniui-shop::before{content:"\e62f"}.uniui-headphones::before{content:"\e630"}.uniui-cart::before{content:"\e631"}@font-face{font-family:uniicons;src:url(https://registry.npmmirror.com/@vipl520/dk-ui/1.0.46/files/dist/uniicons.ttf)}.dk-uni-icon{font-family:uniicons;text-decoration:none;text-align:center;font-style:normal}
|
@@ -2,11 +2,10 @@
|
|
2
2
|
//@import url('../style/uniicons.css');
|
3
3
|
@import './uniicons.scss';
|
4
4
|
|
5
|
-
|
6
5
|
@font-face {
|
7
6
|
font-family: uniicons;
|
8
7
|
//src: url('./uniicons.ttf');
|
9
|
-
src:url(
|
8
|
+
src: url('https://registry.npmmirror.com/@vipl520/dk-ui/1.0.46/files/dist/uniicons.ttf');
|
10
9
|
}
|
11
10
|
|
12
11
|
.dk-uni-icon {
|
@@ -1 +1 @@
|
|
1
|
-
.uniui-cart-filled
|
1
|
+
.uniui-cart-filled::before{content:"\e6d0"}.uniui-gift-filled::before{content:"\e6c4"}.uniui-color::before{content:"\e6cf"}.uniui-wallet::before{content:"\e6b1"}.uniui-settings-filled::before{content:"\e6ce"}.uniui-auth-filled::before{content:"\e6cc"}.uniui-shop-filled::before{content:"\e6cd"}.uniui-staff-filled::before{content:"\e6cb"}.uniui-vip-filled::before{content:"\e6c6"}.uniui-plus-filled::before{content:"\e6c7"}.uniui-folder-add-filled::before{content:"\e6c8"}.uniui-color-filled::before{content:"\e6c9"}.uniui-tune-filled::before{content:"\e6ca"}.uniui-calendar-filled::before{content:"\e6c0"}.uniui-notification-filled::before{content:"\e6c1"}.uniui-wallet-filled::before{content:"\e6c2"}.uniui-medal-filled::before{content:"\e6c3"}.uniui-fire-filled::before{content:"\e6c5"}.uniui-refreshempty::before{content:"\e6bf"}.uniui-location-filled::before{content:"\e6af"}.uniui-person-filled::before{content:"\e69d"}.uniui-personadd-filled::before{content:"\e698"}.uniui-arrowthinleft::before{content:"\e6d2"}.uniui-arrowthinup::before{content:"\e6d3"}.uniui-arrowthindown::before{content:"\e6d4"}.uniui-back::before{content:"\e6b9"}.uniui-forward::before{content:"\e6ba"}.uniui-arrow-right::before{content:"\e6bb"}.uniui-arrow-left::before{content:"\e6bc"}.uniui-arrow-up::before{content:"\e6bd"}.uniui-arrow-down::before{content:"\e6be"}.uniui-arrowthinright::before{content:"\e6d1"}.uniui-down::before{content:"\e6b8"}.uniui-bottom::before{content:"\e6b8"}.uniui-arrowright::before{content:"\e6d5"}.uniui-right::before{content:"\e6b5"}.uniui-up::before{content:"\e6b6"}.uniui-top::before{content:"\e6b6"}.uniui-left::before{content:"\e6b7"}.uniui-arrowup::before{content:"\e6d6"}.uniui-eye::before{content:"\e651"}.uniui-eye-filled::before{content:"\e66a"}.uniui-eye-slash::before{content:"\e6b3"}.uniui-eye-slash-filled::before{content:"\e6b4"}.uniui-info-filled::before{content:"\e649"}.uniui-reload::before{content:"\e6b2"}.uniui-micoff-filled::before{content:"\e6b0"}.uniui-map-pin-ellipse::before{content:"\e6ac"}.uniui-map-pin::before{content:"\e6ad"}.uniui-location::before{content:"\e6ae"}.uniui-starhalf::before{content:"\e683"}.uniui-star::before{content:"\e688"}.uniui-star-filled::before{content:"\e68f"}.uniui-calendar::before{content:"\e6a0"}.uniui-fire::before{content:"\e6a1"}.uniui-medal::before{content:"\e6a2"}.uniui-font::before{content:"\e6a3"}.uniui-gift::before{content:"\e6a4"}.uniui-link::before{content:"\e6a5"}.uniui-notification::before{content:"\e6a6"}.uniui-staff::before{content:"\e6a7"}.uniui-vip::before{content:"\e6a8"}.uniui-folder-add::before{content:"\e6a9"}.uniui-tune::before{content:"\e6aa"}.uniui-auth::before{content:"\e6ab"}.uniui-person::before{content:"\e699"}.uniui-email-filled::before{content:"\e69a"}.uniui-phone-filled::before{content:"\e69b"}.uniui-phone::before{content:"\e69c"}.uniui-email::before{content:"\e69e"}.uniui-personadd::before{content:"\e69f"}.uniui-chatboxes-filled::before{content:"\e692"}.uniui-contact::before{content:"\e693"}.uniui-chatbubble-filled::before{content:"\e694"}.uniui-contact-filled::before{content:"\e695"}.uniui-chatboxes::before{content:"\e696"}.uniui-chatbubble::before{content:"\e697"}.uniui-upload-filled::before{content:"\e68e"}.uniui-upload::before{content:"\e690"}.uniui-weixin::before{content:"\e691"}.uniui-compose::before{content:"\e67f"}.uniui-qq::before{content:"\e680"}.uniui-download-filled::before{content:"\e681"}.uniui-pyq::before{content:"\e682"}.uniui-sound::before{content:"\e684"}.uniui-trash-filled::before{content:"\e685"}.uniui-sound-filled::before{content:"\e686"}.uniui-trash::before{content:"\e687"}.uniui-videocam-filled::before{content:"\e689"}.uniui-spinner-cycle::before{content:"\e68a"}.uniui-weibo::before{content:"\e68b"}.uniui-videocam::before{content:"\e68c"}.uniui-download::before{content:"\e68d"}.uniui-help::before{content:"\e679"}.uniui-navigate-filled::before{content:"\e67a"}.uniui-plusempty::before{content:"\e67b"}.uniui-smallcircle::before{content:"\e67c"}.uniui-minus-filled::before{content:"\e67d"}.uniui-micoff::before{content:"\e67e"}.uniui-closeempty::before{content:"\e66c"}.uniui-clear::before{content:"\e66d"}.uniui-navigate::before{content:"\e66e"}.uniui-minus::before{content:"\e66f"}.uniui-image::before{content:"\e670"}.uniui-mic::before{content:"\e671"}.uniui-paperplane::before{content:"\e672"}.uniui-close::before{content:"\e673"}.uniui-help-filled::before{content:"\e674"}.uniui-paperplane-filled::before{content:"\e675"}.uniui-plus::before{content:"\e676"}.uniui-mic-filled::before{content:"\e677"}.uniui-image-filled::before{content:"\e678"}.uniui-locked-filled::before{content:"\e668"}.uniui-info::before{content:"\e669"}.uniui-locked::before{content:"\e66b"}.uniui-camera-filled::before{content:"\e658"}.uniui-chat-filled::before{content:"\e659"}.uniui-camera::before{content:"\e65a"}.uniui-circle::before{content:"\e65b"}.uniui-checkmarkempty::before{content:"\e65c"}.uniui-chat::before{content:"\e65d"}.uniui-circle-filled::before{content:"\e65e"}.uniui-flag::before{content:"\e65f"}.uniui-flag-filled::before{content:"\e660"}.uniui-gear-filled::before{content:"\e661"}.uniui-home::before{content:"\e662"}.uniui-home-filled::before{content:"\e663"}.uniui-gear::before{content:"\e664"}.uniui-smallcircle-filled::before{content:"\e665"}.uniui-map-filled::before{content:"\e666"}.uniui-map::before{content:"\e667"}.uniui-refresh-filled::before{content:"\e656"}.uniui-refresh::before{content:"\e657"}.uniui-cloud-upload::before{content:"\e645"}.uniui-cloud-download-filled::before{content:"\e646"}.uniui-cloud-download::before{content:"\e647"}.uniui-cloud-upload-filled::before{content:"\e648"}.uniui-redo::before{content:"\e64a"}.uniui-images-filled::before{content:"\e64b"}.uniui-undo-filled::before{content:"\e64c"}.uniui-more::before{content:"\e64d"}.uniui-more-filled::before{content:"\e64e"}.uniui-undo::before{content:"\e64f"}.uniui-images::before{content:"\e650"}.uniui-paperclip::before{content:"\e652"}.uniui-settings::before{content:"\e653"}.uniui-search::before{content:"\e654"}.uniui-redo-filled::before{content:"\e655"}.uniui-list::before{content:"\e644"}.uniui-mail-open-filled::before{content:"\e63a"}.uniui-hand-down-filled::before{content:"\e63c"}.uniui-hand-down::before{content:"\e63d"}.uniui-hand-up-filled::before{content:"\e63e"}.uniui-hand-up::before{content:"\e63f"}.uniui-heart-filled::before{content:"\e641"}.uniui-mail-open::before{content:"\e643"}.uniui-heart::before{content:"\e639"}.uniui-loop::before{content:"\e633"}.uniui-pulldown::before{content:"\e632"}.uniui-scan::before{content:"\e62a"}.uniui-bars::before{content:"\e627"}.uniui-checkbox::before{content:"\e62b"}.uniui-checkbox-filled::before{content:"\e62c"}.uniui-shop::before{content:"\e62f"}.uniui-headphones::before{content:"\e630"}.uniui-cart::before{content:"\e631"}
|