flame-plus 0.2.13 → 0.2.15

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "flame-plus",
3
3
  "type": "module",
4
- "version": "0.2.13",
4
+ "version": "0.2.15",
5
5
  "description": "基于 element-plus 的组件库",
6
6
  "main": "./flameDist/flame-plus.es.js",
7
7
  "module": "./flameDist/flame-plus.es.js",
@@ -20,6 +20,7 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@element-plus/icons-vue": "^2.1.0",
23
+ "@tinymce/tinymce-vue": "^5",
23
24
  "@vitejs/plugin-vue-jsx": "^3.0.1",
24
25
  "element-plus": "2.2.17",
25
26
  "flame-request": "^1.0.7",
package/scripts/gc.sh CHANGED
@@ -51,7 +51,7 @@ const props = defineProps(${INPUT_NAME}Props)
51
51
  EOF
52
52
 
53
53
  cat > $DIRNAME/src/$INPUT_NAME.ts <<EOF
54
- import { buildProps } from 'element-plus/es/utils'
54
+ import { buildProps } from 'element-plus/es/utils/index'
55
55
 
56
56
  import type { ExtractPropTypes } from 'vue'
57
57
  import type $NAME from './$INPUT_NAME.vue'
@@ -63,7 +63,7 @@ export type ${NAME}Instance = InstanceType<typeof $NAME>
63
63
  EOF
64
64
 
65
65
  cat <<EOF >"$DIRNAME/index.ts"
66
- import { withInstall } from 'element-plus/es/utils'
66
+ import { withInstall } from 'element-plus/es/utils/index'
67
67
  import $NAME from './src/$INPUT_NAME.vue'
68
68
 
69
69
  export const Flm$NAME = withInstall($NAME)