@cgboiler/biz-basic 1.0.67 → 1.0.69

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 (61) 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 +445 -436
  6. package/es/rich-text-editor/lib/utils.d.ts +123 -0
  7. package/es/rich-text-editor/lib/utils.js +244 -0
  8. package/es/rich-text-editor/menu-system/components/_atomic.css +2 -0
  9. package/es/rich-text-editor/menu-system/components/table-dropdown-menu.d.ts +25 -0
  10. package/es/rich-text-editor/menu-system/components/table-dropdown-menu.js +167 -0
  11. package/es/rich-text-editor/menu-system/icons/index.d.ts +13 -0
  12. package/es/rich-text-editor/menu-system/icons/index.js +26 -0
  13. package/es/rich-text-editor/menu-system/styles/animations.less +91 -91
  14. package/es/rich-text-editor/menu-system/styles/button-colors.less +142 -142
  15. package/es/rich-text-editor/menu-system/styles/button-group.less +23 -23
  16. package/es/rich-text-editor/menu-system/styles/button.less +322 -322
  17. package/es/rich-text-editor/menu-system/styles/card.less +78 -78
  18. package/es/rich-text-editor/menu-system/styles/color-highlight-button.less +57 -57
  19. package/es/rich-text-editor/menu-system/styles/color-highlight-popover.less +51 -51
  20. package/es/rich-text-editor/menu-system/styles/dropdown-menu.less +40 -40
  21. package/es/rich-text-editor/menu-system/styles/image-upload-node.less +240 -240
  22. package/es/rich-text-editor/menu-system/styles/input.less +53 -53
  23. package/es/rich-text-editor/menu-system/styles/link-popover.less +32 -32
  24. package/es/rich-text-editor/menu-system/styles/separator.less +26 -26
  25. package/es/rich-text-editor/menu-system/styles/simple-editor.less +39 -39
  26. package/es/rich-text-editor/menu-system/styles/toolbar.less +87 -87
  27. package/es/rich-text-editor/menu-system/styles/variables.less +294 -294
  28. package/es/rich-text-editor/useExtensions.js +1 -1
  29. package/es/vue-sfc-shim.d.ts +6 -6
  30. package/es/vue-tsx-shim.d.ts +24 -24
  31. package/lib/index.d.ts +1 -1
  32. package/lib/index.js +1 -1
  33. package/lib/rich-text-editor/RichTextEditor.js +3 -0
  34. package/lib/rich-text-editor/index.css +1 -1
  35. package/lib/rich-text-editor/index.less +445 -436
  36. package/lib/rich-text-editor/lib/utils.d.ts +123 -0
  37. package/lib/rich-text-editor/lib/utils.js +263 -0
  38. package/lib/rich-text-editor/menu-system/components/_atomic.css +2 -0
  39. package/lib/rich-text-editor/menu-system/components/table-dropdown-menu.d.ts +25 -0
  40. package/lib/rich-text-editor/menu-system/components/table-dropdown-menu.js +186 -0
  41. package/lib/rich-text-editor/menu-system/icons/index.d.ts +13 -0
  42. package/lib/rich-text-editor/menu-system/icons/index.js +26 -0
  43. package/lib/rich-text-editor/menu-system/styles/animations.less +91 -91
  44. package/lib/rich-text-editor/menu-system/styles/button-colors.less +142 -142
  45. package/lib/rich-text-editor/menu-system/styles/button-group.less +23 -23
  46. package/lib/rich-text-editor/menu-system/styles/button.less +322 -322
  47. package/lib/rich-text-editor/menu-system/styles/card.less +78 -78
  48. package/lib/rich-text-editor/menu-system/styles/color-highlight-button.less +57 -57
  49. package/lib/rich-text-editor/menu-system/styles/color-highlight-popover.less +51 -51
  50. package/lib/rich-text-editor/menu-system/styles/dropdown-menu.less +40 -40
  51. package/lib/rich-text-editor/menu-system/styles/image-upload-node.less +240 -240
  52. package/lib/rich-text-editor/menu-system/styles/input.less +53 -53
  53. package/lib/rich-text-editor/menu-system/styles/link-popover.less +32 -32
  54. package/lib/rich-text-editor/menu-system/styles/separator.less +26 -26
  55. package/lib/rich-text-editor/menu-system/styles/simple-editor.less +39 -39
  56. package/lib/rich-text-editor/menu-system/styles/toolbar.less +87 -87
  57. package/lib/rich-text-editor/menu-system/styles/variables.less +294 -294
  58. package/lib/rich-text-editor/useExtensions.js +1 -1
  59. package/lib/vue-sfc-shim.d.ts +6 -6
  60. package/lib/vue-tsx-shim.d.ts +24 -24
  61. package/package.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cgboiler/biz-basic",
3
- "version": "1.0.67",
3
+ "version": "1.0.69",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",