@nocobase/plugin-gantt 2.1.0-beta.37 → 2.1.0-beta.38

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 (146) hide show
  1. package/client-v2.d.ts +2 -0
  2. package/client-v2.js +3 -0
  3. package/dist/client/index.js +1 -1
  4. package/dist/client-v2/143.1a8cf1cd5ce17b64.js +10 -0
  5. package/dist/client-v2/416.b7bb09162520e448.js +10 -0
  6. package/dist/client-v2/617.de3dc437887f3f07.js +10 -0
  7. package/dist/client-v2/872.e640aca77c79d895.js +10 -0
  8. package/dist/client-v2/index.d.ts +10 -0
  9. package/dist/client-v2/index.js +10 -0
  10. package/dist/client-v2/locale.d.ts +78 -0
  11. package/dist/client-v2/models/GanttBlockModel.d.ts +98 -0
  12. package/dist/client-v2/models/GanttBlockModel.helpers.d.ts +31 -0
  13. package/dist/client-v2/models/GanttBlockModel.settings.d.ts +9 -0
  14. package/dist/client-v2/models/actions/GanttActionModels.d.ts +33 -0
  15. package/dist/client-v2/models/actions/GanttPopupModels.d.ts +26 -0
  16. package/dist/client-v2/models/components/GanttBlock.d.ts +13 -0
  17. package/dist/client-v2/models/components/GanttBlock.helpers.d.ts +22 -0
  18. package/dist/client-v2/models/components/GanttBlock.styles.d.ts +22 -0
  19. package/dist/client-v2/models/components/GanttBlock.tree.d.ts +46 -0
  20. package/dist/client-v2/models/components/getLabelFormatValue.d.ts +11 -0
  21. package/dist/client-v2/models/index.d.ts +11 -0
  22. package/dist/client-v2/plugin.d.ts +13 -0
  23. package/dist/externalVersion.js +7 -6
  24. package/dist/locale/de-DE.json +2 -0
  25. package/dist/locale/en-US.json +25 -1
  26. package/dist/locale/es-ES.json +2 -0
  27. package/dist/locale/fr-FR.json +2 -0
  28. package/dist/locale/hu-HU.json +2 -0
  29. package/dist/locale/id-ID.json +2 -0
  30. package/dist/locale/it-IT.json +2 -0
  31. package/dist/locale/ja-JP.json +2 -0
  32. package/dist/locale/ko-KR.json +2 -0
  33. package/dist/locale/nl-NL.json +2 -0
  34. package/dist/locale/pt-BR.json +2 -0
  35. package/dist/locale/ru-RU.json +2 -0
  36. package/dist/locale/tr-TR.json +2 -0
  37. package/dist/locale/uk-UA.json +2 -0
  38. package/dist/locale/vi-VN.json +2 -0
  39. package/dist/locale/zh-CN.json +25 -1
  40. package/dist/locale/zh-TW.json +4 -0
  41. package/dist/node_modules/@ctrl/tinycolor/LICENSE +7 -0
  42. package/dist/node_modules/@ctrl/tinycolor/dist/bundles/tinycolor.umd.min.js +2 -0
  43. package/dist/node_modules/@ctrl/tinycolor/dist/conversion.d.ts +61 -0
  44. package/dist/node_modules/@ctrl/tinycolor/dist/conversion.js +250 -0
  45. package/dist/node_modules/@ctrl/tinycolor/dist/css-color-names.d.ts +4 -0
  46. package/dist/node_modules/@ctrl/tinycolor/dist/css-color-names.js +157 -0
  47. package/dist/node_modules/@ctrl/tinycolor/dist/format-input.d.ts +37 -0
  48. package/dist/node_modules/@ctrl/tinycolor/dist/format-input.js +189 -0
  49. package/dist/node_modules/@ctrl/tinycolor/dist/from-ratio.d.ts +14 -0
  50. package/dist/node_modules/@ctrl/tinycolor/dist/from-ratio.js +30 -0
  51. package/dist/node_modules/@ctrl/tinycolor/dist/index.d.ts +207 -0
  52. package/dist/node_modules/@ctrl/tinycolor/dist/index.js +512 -0
  53. package/dist/node_modules/@ctrl/tinycolor/dist/interfaces.d.ts +46 -0
  54. package/dist/node_modules/@ctrl/tinycolor/dist/interfaces.js +2 -0
  55. package/dist/node_modules/@ctrl/tinycolor/dist/module/conversion.js +235 -0
  56. package/dist/node_modules/@ctrl/tinycolor/dist/module/css-color-names.js +154 -0
  57. package/dist/node_modules/@ctrl/tinycolor/dist/module/format-input.js +183 -0
  58. package/dist/node_modules/@ctrl/tinycolor/dist/module/from-ratio.js +25 -0
  59. package/dist/node_modules/@ctrl/tinycolor/dist/module/index.js +508 -0
  60. package/dist/node_modules/@ctrl/tinycolor/dist/module/interfaces.js +1 -0
  61. package/dist/node_modules/@ctrl/tinycolor/dist/module/public_api.js +12 -0
  62. package/dist/node_modules/@ctrl/tinycolor/dist/module/random.js +278 -0
  63. package/dist/node_modules/@ctrl/tinycolor/dist/module/readability.js +80 -0
  64. package/dist/node_modules/@ctrl/tinycolor/dist/module/to-ms-filter.js +16 -0
  65. package/dist/node_modules/@ctrl/tinycolor/dist/module/umd_api.js +20 -0
  66. package/dist/node_modules/@ctrl/tinycolor/dist/module/util.js +82 -0
  67. package/dist/node_modules/@ctrl/tinycolor/dist/public_api.d.ts +11 -0
  68. package/dist/node_modules/@ctrl/tinycolor/dist/public_api.js +1 -0
  69. package/dist/node_modules/@ctrl/tinycolor/dist/random.d.ts +24 -0
  70. package/dist/node_modules/@ctrl/tinycolor/dist/random.js +282 -0
  71. package/dist/node_modules/@ctrl/tinycolor/dist/readability.d.ts +46 -0
  72. package/dist/node_modules/@ctrl/tinycolor/dist/readability.js +86 -0
  73. package/dist/node_modules/@ctrl/tinycolor/dist/to-ms-filter.d.ts +5 -0
  74. package/dist/node_modules/@ctrl/tinycolor/dist/to-ms-filter.js +20 -0
  75. package/dist/node_modules/@ctrl/tinycolor/dist/umd_api.d.ts +23 -0
  76. package/dist/node_modules/@ctrl/tinycolor/dist/umd_api.js +22 -0
  77. package/dist/node_modules/@ctrl/tinycolor/dist/util.d.ts +36 -0
  78. package/dist/node_modules/@ctrl/tinycolor/dist/util.js +92 -0
  79. package/dist/node_modules/@ctrl/tinycolor/package.json +1 -0
  80. package/dist/shared/components/calendar/calendar.d.ts +22 -0
  81. package/dist/shared/components/calendar/calendar.js +417 -0
  82. package/dist/shared/components/calendar/style.d.ts +14 -0
  83. package/dist/shared/components/calendar/style.js +79 -0
  84. package/dist/shared/components/calendar/top-part-of-calendar.d.ts +19 -0
  85. package/dist/shared/components/calendar/top-part-of-calendar.js +57 -0
  86. package/dist/shared/components/gantt/style.d.ts +14 -0
  87. package/dist/shared/components/gantt/style.js +74 -0
  88. package/dist/shared/components/gantt/task-gantt-content.d.ts +35 -0
  89. package/dist/shared/components/gantt/task-gantt-content.js +337 -0
  90. package/dist/shared/components/gantt/task-gantt.d.ts +24 -0
  91. package/dist/shared/components/gantt/task-gantt.js +128 -0
  92. package/dist/shared/components/grid/grid-body.d.ts +21 -0
  93. package/dist/shared/components/grid/grid-body.js +114 -0
  94. package/dist/shared/components/grid/grid.d.ts +12 -0
  95. package/dist/shared/components/grid/grid.js +50 -0
  96. package/dist/shared/components/grid/style.d.ts +14 -0
  97. package/dist/shared/components/grid/style.js +54 -0
  98. package/dist/shared/components/other/arrow.d.ts +20 -0
  99. package/dist/shared/components/other/arrow.js +90 -0
  100. package/dist/shared/components/other/horizontal-scroll.d.ts +16 -0
  101. package/dist/shared/components/other/horizontal-scroll.js +64 -0
  102. package/dist/shared/components/other/style.d.ts +16 -0
  103. package/dist/shared/components/other/style.js +125 -0
  104. package/dist/shared/components/other/tooltip.d.ts +36 -0
  105. package/dist/shared/components/other/tooltip.js +137 -0
  106. package/dist/shared/components/other/vertical-scroll.d.ts +17 -0
  107. package/dist/shared/components/other/vertical-scroll.js +74 -0
  108. package/dist/shared/components/task-item/bar/bar-date-handle.d.ts +19 -0
  109. package/dist/shared/components/task-item/bar/bar-date-handle.js +62 -0
  110. package/dist/shared/components/task-item/bar/bar-display.d.ts +29 -0
  111. package/dist/shared/components/task-item/bar/bar-display.js +98 -0
  112. package/dist/shared/components/task-item/bar/bar-progress-handle.d.ts +15 -0
  113. package/dist/shared/components/task-item/bar/bar-progress-handle.js +49 -0
  114. package/dist/shared/components/task-item/bar/bar-small.d.ts +11 -0
  115. package/dist/shared/components/task-item/bar/bar-small.js +85 -0
  116. package/dist/shared/components/task-item/bar/bar.d.ts +11 -0
  117. package/dist/shared/components/task-item/bar/bar.js +113 -0
  118. package/dist/shared/components/task-item/bar/style.d.ts +10 -0
  119. package/dist/shared/components/task-item/bar/style.js +58 -0
  120. package/dist/shared/components/task-item/milestone/milestone.d.ts +11 -0
  121. package/dist/shared/components/task-item/milestone/milestone.js +72 -0
  122. package/dist/shared/components/task-item/milestone/style.d.ts +10 -0
  123. package/dist/shared/components/task-item/milestone/style.js +45 -0
  124. package/dist/shared/components/task-item/project/project.d.ts +11 -0
  125. package/dist/shared/components/task-item/project/project.js +77 -0
  126. package/dist/shared/components/task-item/project/style.d.ts +11 -0
  127. package/dist/shared/components/task-item/project/style.js +51 -0
  128. package/dist/shared/components/task-item/style.d.ts +12 -0
  129. package/dist/shared/components/task-item/style.js +74 -0
  130. package/dist/shared/components/task-item/task-item.d.ts +23 -0
  131. package/dist/shared/components/task-item/task-item.js +132 -0
  132. package/dist/shared/helpers/bar-helper.d.ts +22 -0
  133. package/dist/shared/helpers/bar-helper.js +415 -0
  134. package/dist/shared/helpers/date-helper.d.ts +27 -0
  135. package/dist/shared/helpers/date-helper.js +231 -0
  136. package/dist/shared/helpers/other-helper.d.ts +17 -0
  137. package/dist/shared/helpers/other-helper.js +97 -0
  138. package/dist/shared/types/bar-task.d.ts +30 -0
  139. package/dist/shared/types/bar-task.js +24 -0
  140. package/dist/shared/types/date-setup.d.ts +13 -0
  141. package/dist/shared/types/date-setup.js +24 -0
  142. package/dist/shared/types/gantt-task-actions.d.ts +16 -0
  143. package/dist/shared/types/gantt-task-actions.js +24 -0
  144. package/dist/shared/types/public-types.d.ts +145 -0
  145. package/dist/shared/types/public-types.js +46 -0
  146. package/package.json +2 -2
package/client-v2.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './dist/client-v2';
2
+ export { default } from './dist/client-v2';
package/client-v2.js ADDED
@@ -0,0 +1,3 @@
1
+ 'use strict';
2
+
3
+ module.exports = require('./dist/client-v2/index.js');