@cgboiler/biz-basic 1.0.68 → 1.0.70

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.
Files changed (69) hide show
  1. package/es/index.d.ts +1 -1
  2. package/es/index.js +1 -1
  3. package/es/rich-text-editor/RichTextEditor.js +3 -0
  4. package/es/rich-text-editor/index.css +1 -1
  5. package/es/rich-text-editor/index.less +10 -2
  6. package/es/rich-text-editor/menu-system/components/_atomic.css +2 -0
  7. package/es/rich-text-editor/menu-system/components/table-dropdown-menu.js +14 -14
  8. package/es/rich-text-editor/menu-system/components/text-color-button.d.ts +70 -0
  9. package/es/rich-text-editor/menu-system/components/text-color-button.js +128 -0
  10. package/es/rich-text-editor/menu-system/components/text-color-popover.d.ts +32 -0
  11. package/es/rich-text-editor/menu-system/components/text-color-popover.js +127 -0
  12. package/es/rich-text-editor/menu-system/hooks/use-text-color.d.ts +45 -0
  13. package/es/rich-text-editor/menu-system/hooks/use-text-color.js +152 -0
  14. package/es/rich-text-editor/menu-system/icons/index.d.ts +13 -0
  15. package/es/rich-text-editor/menu-system/icons/index.js +22 -0
  16. package/es/rich-text-editor/menu-system/styles/button-group.css +1 -1
  17. package/es/rich-text-editor/menu-system/styles/button.css +1 -1
  18. package/es/rich-text-editor/menu-system/styles/card.css +1 -1
  19. package/es/rich-text-editor/menu-system/styles/color-highlight-button.css +1 -1
  20. package/es/rich-text-editor/menu-system/styles/color-highlight-popover.css +1 -1
  21. package/es/rich-text-editor/menu-system/styles/dropdown-menu.css +1 -1
  22. package/es/rich-text-editor/menu-system/styles/image-upload-node.css +1 -1
  23. package/es/rich-text-editor/menu-system/styles/input.css +1 -1
  24. package/es/rich-text-editor/menu-system/styles/link-popover.css +1 -1
  25. package/es/rich-text-editor/menu-system/styles/separator.css +1 -1
  26. package/es/rich-text-editor/menu-system/styles/simple-editor.css +1 -1
  27. package/es/rich-text-editor/menu-system/styles/text-color-button.css +1 -0
  28. package/es/rich-text-editor/menu-system/styles/text-color-button.less +63 -0
  29. package/es/rich-text-editor/menu-system/styles/text-color-popover.css +1 -0
  30. package/es/rich-text-editor/menu-system/styles/text-color-popover.less +125 -0
  31. package/es/rich-text-editor/menu-system/styles/toolbar.css +1 -1
  32. package/es/rich-text-editor/menu-system/styles/variables.css +1 -1
  33. package/es/rich-text-editor/menu-system/styles/variables.less +4 -2
  34. package/es/rich-text-editor/useExtensions.js +1 -1
  35. package/lib/index.d.ts +1 -1
  36. package/lib/index.js +1 -1
  37. package/lib/rich-text-editor/RichTextEditor.js +3 -0
  38. package/lib/rich-text-editor/index.css +1 -1
  39. package/lib/rich-text-editor/index.less +10 -2
  40. package/lib/rich-text-editor/menu-system/components/_atomic.css +2 -0
  41. package/lib/rich-text-editor/menu-system/components/table-dropdown-menu.js +14 -14
  42. package/lib/rich-text-editor/menu-system/components/text-color-button.d.ts +70 -0
  43. package/lib/rich-text-editor/menu-system/components/text-color-button.js +145 -0
  44. package/lib/rich-text-editor/menu-system/components/text-color-popover.d.ts +32 -0
  45. package/lib/rich-text-editor/menu-system/components/text-color-popover.js +146 -0
  46. package/lib/rich-text-editor/menu-system/hooks/use-text-color.d.ts +45 -0
  47. package/lib/rich-text-editor/menu-system/hooks/use-text-color.js +171 -0
  48. package/lib/rich-text-editor/menu-system/icons/index.d.ts +13 -0
  49. package/lib/rich-text-editor/menu-system/icons/index.js +22 -0
  50. package/lib/rich-text-editor/menu-system/styles/button-group.css +1 -1
  51. package/lib/rich-text-editor/menu-system/styles/button.css +1 -1
  52. package/lib/rich-text-editor/menu-system/styles/card.css +1 -1
  53. package/lib/rich-text-editor/menu-system/styles/color-highlight-button.css +1 -1
  54. package/lib/rich-text-editor/menu-system/styles/color-highlight-popover.css +1 -1
  55. package/lib/rich-text-editor/menu-system/styles/dropdown-menu.css +1 -1
  56. package/lib/rich-text-editor/menu-system/styles/image-upload-node.css +1 -1
  57. package/lib/rich-text-editor/menu-system/styles/input.css +1 -1
  58. package/lib/rich-text-editor/menu-system/styles/link-popover.css +1 -1
  59. package/lib/rich-text-editor/menu-system/styles/separator.css +1 -1
  60. package/lib/rich-text-editor/menu-system/styles/simple-editor.css +1 -1
  61. package/lib/rich-text-editor/menu-system/styles/text-color-button.css +1 -0
  62. package/lib/rich-text-editor/menu-system/styles/text-color-button.less +63 -0
  63. package/lib/rich-text-editor/menu-system/styles/text-color-popover.css +1 -0
  64. package/lib/rich-text-editor/menu-system/styles/text-color-popover.less +125 -0
  65. package/lib/rich-text-editor/menu-system/styles/toolbar.css +1 -1
  66. package/lib/rich-text-editor/menu-system/styles/variables.css +1 -1
  67. package/lib/rich-text-editor/menu-system/styles/variables.less +4 -2
  68. package/lib/rich-text-editor/useExtensions.js +1 -1
  69. package/package.json +1 -1
@@ -82,7 +82,7 @@ function useExtensions({ props, emit }) {
82
82
  import_extension_image.default,
83
83
  // 表格
84
84
  import_extension_table.TableKit.configure({
85
- table: { resizable: true }
85
+ table: { resizable: true, allowTableNodeSelection: true }
86
86
  }),
87
87
  // 其他内置扩展
88
88
  import_extension_underline.default,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cgboiler/biz-basic",
3
- "version": "1.0.68",
3
+ "version": "1.0.70",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",