@shelf/global-renderer 1.0.1-beta.2 → 1.0.1

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 (57) hide show
  1. package/CHANGELOG.md +45 -2367
  2. package/lib/DecisionTreeContent/DecisionTreeContent.d.ts +2 -2
  3. package/lib/DecisionTreeContent/DecisionTreeContent.styled.d.ts +11483 -47
  4. package/lib/DecisionTreeContent/components/Condition.d.ts +2 -2
  5. package/lib/DecisionTreeContent/components/ContentTable.d.ts +2 -2
  6. package/lib/DecisionTreeContent/components/ExportedMeta.d.ts +3 -3
  7. package/lib/DecisionTreeContent/components/Link.d.ts +2 -2
  8. package/lib/DecisionTreeContent/components/Question.d.ts +2 -2
  9. package/lib/DecisionTreeContent/components/Solution.d.ts +2 -2
  10. package/lib/DecisionTreeContent/components/StepHeader.d.ts +2 -2
  11. package/lib/DecisionTreeContent/helpers.d.ts +4 -4
  12. package/lib/DecisionTreeContent/types.d.ts +1 -1
  13. package/lib/DecisionTreeDiagram/StaticTreeContainer.d.ts +2 -2
  14. package/lib/index.js +20383 -4
  15. package/package.json +21 -18
  16. package/lib/DecisionTreeContent/DecisionTreeContent.js +0 -84
  17. package/lib/DecisionTreeContent/DecisionTreeContent.styled.js +0 -225
  18. package/lib/DecisionTreeContent/components/Condition.js +0 -73
  19. package/lib/DecisionTreeContent/components/ContentTable.js +0 -26
  20. package/lib/DecisionTreeContent/components/ExportedMeta.js +0 -29
  21. package/lib/DecisionTreeContent/components/Link.js +0 -18
  22. package/lib/DecisionTreeContent/components/Question.js +0 -55
  23. package/lib/DecisionTreeContent/components/Solution.js +0 -20
  24. package/lib/DecisionTreeContent/components/StepHeader.js +0 -46
  25. package/lib/DecisionTreeContent/components/StepTypeIcon.js +0 -30
  26. package/lib/DecisionTreeContent/helpers.js +0 -56
  27. package/lib/DecisionTreeContent/renderDTContent.js +0 -12
  28. package/lib/DecisionTreeDiagram/StaticTreeContainer.js +0 -27
  29. package/lib/DecisionTreeDiagram/renderStaticDTDiagram.js +0 -26
  30. package/lib/_virtual/_commonjsHelpers.js +0 -4
  31. package/lib/_virtual/advancedFormat.js +0 -4
  32. package/lib/_virtual/client.js +0 -4
  33. package/lib/_virtual/dayjs.min.js +0 -4
  34. package/lib/_virtual/index.js +0 -4
  35. package/lib/_virtual/index2.js +0 -4
  36. package/lib/_virtual/localeData.js +0 -4
  37. package/lib/_virtual/localizedFormat.js +0 -4
  38. package/lib/_virtual/react-dom.development.js +0 -4
  39. package/lib/_virtual/react-dom.production.min.js +0 -4
  40. package/lib/_virtual/scheduler.development.js +0 -4
  41. package/lib/_virtual/scheduler.production.min.js +0 -4
  42. package/lib/i18next/index.js +0 -18
  43. package/lib/node_modules/@shelf/datetime/lib/getDateFormatTemplates.js +0 -15
  44. package/lib/node_modules/@shelf/datetime/lib/getDateWithCustomFormat.js +0 -10
  45. package/lib/node_modules/@shelf/datetime/lib/getTimeFormatTemplates.js +0 -17
  46. package/lib/node_modules/@shelf/datetime/lib/isDate.js +0 -4
  47. package/lib/node_modules/@shelf/datetime/node_modules/dayjs/dayjs.min.js +0 -295
  48. package/lib/node_modules/@shelf/datetime/node_modules/dayjs/plugin/advancedFormat.js +0 -54
  49. package/lib/node_modules/@shelf/datetime/node_modules/dayjs/plugin/localeData.js +0 -82
  50. package/lib/node_modules/@shelf/datetime/node_modules/dayjs/plugin/localizedFormat.js +0 -28
  51. package/lib/node_modules/react-dom/cjs/react-dom.development.js +0 -12880
  52. package/lib/node_modules/react-dom/cjs/react-dom.production.min.js +0 -5643
  53. package/lib/node_modules/react-dom/client.js +0 -28
  54. package/lib/node_modules/react-dom/index.js +0 -17
  55. package/lib/node_modules/scheduler/cjs/scheduler.development.js +0 -278
  56. package/lib/node_modules/scheduler/cjs/scheduler.production.min.js +0 -231
  57. package/lib/node_modules/scheduler/index.js +0 -12
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  import { RenderDTContentData } from './types';
3
- declare const DecisionTreeContent: ({ title, description, tree, exportedBy, exportedAt, createdBy, fields, variables, }: RenderDTContentData) => JSX.Element;
3
+ declare const DecisionTreeContent: ({ title, description, tree, exportedBy, exportedAt, createdBy, fields, variables, }: RenderDTContentData) => React.JSX.Element;
4
4
  export default DecisionTreeContent;