@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.
- package/CHANGELOG.md +45 -2367
- package/lib/DecisionTreeContent/DecisionTreeContent.d.ts +2 -2
- package/lib/DecisionTreeContent/DecisionTreeContent.styled.d.ts +11483 -47
- package/lib/DecisionTreeContent/components/Condition.d.ts +2 -2
- package/lib/DecisionTreeContent/components/ContentTable.d.ts +2 -2
- package/lib/DecisionTreeContent/components/ExportedMeta.d.ts +3 -3
- package/lib/DecisionTreeContent/components/Link.d.ts +2 -2
- package/lib/DecisionTreeContent/components/Question.d.ts +2 -2
- package/lib/DecisionTreeContent/components/Solution.d.ts +2 -2
- package/lib/DecisionTreeContent/components/StepHeader.d.ts +2 -2
- package/lib/DecisionTreeContent/helpers.d.ts +4 -4
- package/lib/DecisionTreeContent/types.d.ts +1 -1
- package/lib/DecisionTreeDiagram/StaticTreeContainer.d.ts +2 -2
- package/lib/index.js +20383 -4
- package/package.json +21 -18
- package/lib/DecisionTreeContent/DecisionTreeContent.js +0 -84
- package/lib/DecisionTreeContent/DecisionTreeContent.styled.js +0 -225
- package/lib/DecisionTreeContent/components/Condition.js +0 -73
- package/lib/DecisionTreeContent/components/ContentTable.js +0 -26
- package/lib/DecisionTreeContent/components/ExportedMeta.js +0 -29
- package/lib/DecisionTreeContent/components/Link.js +0 -18
- package/lib/DecisionTreeContent/components/Question.js +0 -55
- package/lib/DecisionTreeContent/components/Solution.js +0 -20
- package/lib/DecisionTreeContent/components/StepHeader.js +0 -46
- package/lib/DecisionTreeContent/components/StepTypeIcon.js +0 -30
- package/lib/DecisionTreeContent/helpers.js +0 -56
- package/lib/DecisionTreeContent/renderDTContent.js +0 -12
- package/lib/DecisionTreeDiagram/StaticTreeContainer.js +0 -27
- package/lib/DecisionTreeDiagram/renderStaticDTDiagram.js +0 -26
- package/lib/_virtual/_commonjsHelpers.js +0 -4
- package/lib/_virtual/advancedFormat.js +0 -4
- package/lib/_virtual/client.js +0 -4
- package/lib/_virtual/dayjs.min.js +0 -4
- package/lib/_virtual/index.js +0 -4
- package/lib/_virtual/index2.js +0 -4
- package/lib/_virtual/localeData.js +0 -4
- package/lib/_virtual/localizedFormat.js +0 -4
- package/lib/_virtual/react-dom.development.js +0 -4
- package/lib/_virtual/react-dom.production.min.js +0 -4
- package/lib/_virtual/scheduler.development.js +0 -4
- package/lib/_virtual/scheduler.production.min.js +0 -4
- package/lib/i18next/index.js +0 -18
- package/lib/node_modules/@shelf/datetime/lib/getDateFormatTemplates.js +0 -15
- package/lib/node_modules/@shelf/datetime/lib/getDateWithCustomFormat.js +0 -10
- package/lib/node_modules/@shelf/datetime/lib/getTimeFormatTemplates.js +0 -17
- package/lib/node_modules/@shelf/datetime/lib/isDate.js +0 -4
- package/lib/node_modules/@shelf/datetime/node_modules/dayjs/dayjs.min.js +0 -295
- package/lib/node_modules/@shelf/datetime/node_modules/dayjs/plugin/advancedFormat.js +0 -54
- package/lib/node_modules/@shelf/datetime/node_modules/dayjs/plugin/localeData.js +0 -82
- package/lib/node_modules/@shelf/datetime/node_modules/dayjs/plugin/localizedFormat.js +0 -28
- package/lib/node_modules/react-dom/cjs/react-dom.development.js +0 -12880
- package/lib/node_modules/react-dom/cjs/react-dom.production.min.js +0 -5643
- package/lib/node_modules/react-dom/client.js +0 -28
- package/lib/node_modules/react-dom/index.js +0 -17
- package/lib/node_modules/scheduler/cjs/scheduler.development.js +0 -278
- package/lib/node_modules/scheduler/cjs/scheduler.production.min.js +0 -231
- package/lib/node_modules/scheduler/index.js +0 -12
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
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;
|