@pega/react-sdk-overrides 0.23.11 → 0.23.12

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 (47) hide show
  1. package/lib/forms/DateTime/config-ext.json +9 -0
  2. package/lib/forms/Decimal/config-ext.json +9 -0
  3. package/lib/forms/Dropdown/config-ext.json +9 -0
  4. package/lib/forms/Email/config-ext.json +9 -0
  5. package/lib/forms/Integer/config-ext.json +9 -0
  6. package/lib/forms/Percentage/config-ext.json +9 -0
  7. package/lib/forms/RadioButtons/config-ext.json +9 -0
  8. package/lib/forms/SemanticLink/config-ext.json +8 -0
  9. package/lib/forms/TextArea/config-ext.json +9 -0
  10. package/lib/forms/TextContent/config-ext.json +8 -0
  11. package/lib/forms/TextInput/config-ext.json +9 -0
  12. package/lib/forms/Time/config-ext.json +9 -0
  13. package/lib/forms/URL/config-ext.json +9 -0
  14. package/lib/forms/UserReference/config-ext.json +8 -0
  15. package/lib/infra/Containers/FlowContainer/FlowContainer.tsx +1 -1
  16. package/lib/templates/CaseSummary/config-ext.json +9 -0
  17. package/lib/templates/CaseView/config-ext.json +9 -0
  18. package/lib/templates/DataReference/config-ext.json +9 -0
  19. package/lib/templates/DefaultForm/config-ext.json +9 -0
  20. package/lib/templates/Details/DetailsSubTabs/config-ext.json +9 -0
  21. package/lib/templates/Details/DetailsThreeColumn/config-ext.json +9 -0
  22. package/lib/templates/Details/DetailsTwoColumn/config-ext.json +9 -0
  23. package/lib/templates/ListPage/config-ext.json +8 -0
  24. package/lib/templates/ListView/config-ext.json +9 -0
  25. package/lib/templates/NarrowWide/NarrowWideDetails/config-ext.json +9 -0
  26. package/lib/templates/NarrowWide/NarrowWideForm/config-ext.json +9 -0
  27. package/lib/templates/NarrowWide/NarrowWidePage/config-ext.json +9 -0
  28. package/lib/templates/OneColumn/OneColumn/config-ext.json +9 -0
  29. package/lib/templates/OneColumn/OneColumnPage/config-ext.json +9 -0
  30. package/lib/templates/OneColumn/OneColumnTab/config-ext.json +9 -0
  31. package/lib/templates/SimpleTable/SimpleTable/config-ext.json +8 -0
  32. package/lib/templates/SubTabs/config-ext.json +9 -0
  33. package/lib/templates/TwoColumn/TwoColumn/config-ext.json +9 -0
  34. package/lib/templates/TwoColumn/TwoColumnPage/config-ext.json +9 -0
  35. package/lib/templates/TwoColumn/TwoColumnTab/config-ext.json +9 -0
  36. package/lib/templates/WideNarrow/WideNarrowDetails/config-ext.json +9 -0
  37. package/lib/templates/WideNarrow/WideNarrowForm/config-ext.json +9 -0
  38. package/lib/templates/WideNarrow/WideNarrowPage/config-ext.json +9 -0
  39. package/lib/widgets/AppAnnouncement/config-ext.json +9 -0
  40. package/lib/widgets/CaseHistory/config-ext.json +9 -0
  41. package/lib/widgets/FileUtility/FileUtility/config-ext.json +9 -0
  42. package/lib/widgets/Followers/config-ext.json +9 -0
  43. package/lib/widgets/ToDo/config-ext.json +9 -0
  44. package/package.json +1 -1
  45. /package/lib/{infra → widgets}/ToDo/ToDo.css +0 -0
  46. /package/lib/{infra → widgets}/ToDo/ToDo.tsx +0 -0
  47. /package/lib/{infra → widgets}/ToDo/index.tsx +0 -0
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "DateTime",
3
+ "label": "Date & time",
4
+ "description": "Date & time",
5
+ "type": "Field",
6
+ "subtype": "DateTime",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "Decimal",
3
+ "label": "Decimal",
4
+ "description": "Decimal",
5
+ "type": "Field",
6
+ "subtype": "Decimal",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "Dropdown",
3
+ "label": "Dropdown",
4
+ "description": "Picklist",
5
+ "type": "Field",
6
+ "subtype": "Picklist",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "Email",
3
+ "label": "Email",
4
+ "description": "Email",
5
+ "type": "Field",
6
+ "subtype": "Text-Email",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "Integer",
3
+ "label": "Integer",
4
+ "description": "Integer",
5
+ "type": "Field",
6
+ "subtype": "Integer",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "Percentage",
3
+ "label": "Percentage",
4
+ "description": "Percentage",
5
+ "type": "Field",
6
+ "subtype": "Decimal-Percentage",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "RadioButtons",
3
+ "label": "Radio buttons",
4
+ "description": "Picklist",
5
+ "type": "Field",
6
+ "subtype": "Picklist",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "SemanticLink",
3
+ "description": "SemanticLink",
4
+ "type": "Field",
5
+ "subtype": "ACTION",
6
+ "properties": [
7
+ ]
8
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "TextArea",
3
+ "label": "Text area",
4
+ "description": "Text (paragraph)",
5
+ "type": "Field",
6
+ "subtype": "Text-Paragraph",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "TextContent",
3
+ "description": "Text",
4
+ "type": "Field",
5
+ "subtype": "DATA_CAPTURE",
6
+ "properties": [
7
+ ]
8
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "TextInput",
3
+ "label": "Text input",
4
+ "description": "Text (single line)",
5
+ "type": "Field",
6
+ "subtype": "Text",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "Time",
3
+ "label": "Time only",
4
+ "description": "Time only",
5
+ "type": "Field",
6
+ "subtype": "TimeOfDay",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "URL",
3
+ "label": "URL",
4
+ "description": "URL",
5
+ "type": "Field",
6
+ "subtype": "Text-URL",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "UserReference",
3
+ "description": "User reference",
4
+ "type": "Field",
5
+ "subtype": "DATA_CAPTURE",
6
+ "properties": [
7
+ ]
8
+ }
@@ -8,7 +8,7 @@ import { Utils } from '@pega/react-sdk-components/lib/components/helpers/utils';
8
8
  import { Alert } from '@material-ui/lab';
9
9
 
10
10
  import Assignment from '@pega/react-sdk-components/lib/components/infra/Assignment';
11
- import ToDo from "@pega/react-sdk-components/lib/components/infra/ToDo";
11
+ import ToDo from "@pega/react-sdk-components/lib/components/widgets/ToDo";
12
12
 
13
13
  import createPConnectComponent from '@pega/react-sdk-components/lib/bridge/react_pconnect';
14
14
  import StoreContext from "@pega/react-sdk-components/lib/bridge/Context/StoreContext";
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "CaseSummary",
3
+ "label": "Summary data",
4
+ "description": "Case summary template",
5
+ "type": "Template",
6
+ "subtype": "SUMMARY",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "CaseView",
3
+ "label": "Object page",
4
+ "description": "Standard case page",
5
+ "type": "Template",
6
+ "subtype": "CASEVIEW",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "DataReference",
3
+ "description": "Data Reference Template",
4
+ "type": "Template",
5
+ "icon": "DataReference.svg",
6
+ "subtype": "DATAVIEW",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "DefaultForm",
3
+ "label": "Default form",
4
+ "description": "DefaultForm Template",
5
+ "type": "Template",
6
+ "subtype": "FORM",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "DetailsSubTabs",
3
+ "label": "Details (Sub tabs)",
4
+ "description": "Details (Sub tabs)",
5
+ "type": "Template",
6
+ "subtype": "DETAILS",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "DetailsThreeColumn",
3
+ "label": "Details (Three column)",
4
+ "description": "Details (Three column)",
5
+ "type": "Template",
6
+ "subtype": "DETAILS",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "DetailsTwoColumn",
3
+ "label": "Details (Two column)",
4
+ "description": "Details (Two column)",
5
+ "type": "Template",
6
+ "subtype": "DETAILS",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "ListPage",
3
+ "type": "Template",
4
+ "subtype": "PAGE",
5
+ "label": "List page",
6
+ "properties": [
7
+ ]
8
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "ListView",
3
+ "label": "Table",
4
+ "description": "Table Template",
5
+ "type": "Template",
6
+ "subtype": "LIST",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "NarrowWideDetails",
3
+ "label": "Details (Narrow-wide)",
4
+ "description": "Details (Narrow-wide) template",
5
+ "type": "Template",
6
+ "subtype": "DETAILS",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "NarrowWideForm",
3
+ "label": "Narrow-wide",
4
+ "description": "NarrowWide Template",
5
+ "type": "Template",
6
+ "subtype": "FORM",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "NarrowWidePage",
3
+ "label": "Narrow-wide",
4
+ "description": "Narrow-wide Page Template",
5
+ "type": "Template",
6
+ "subtype": "PAGE",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "OneColumn",
3
+ "label": "One column",
4
+ "description": "OneColumn Template",
5
+ "type": "Template",
6
+ "subtype": "FORM",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "OneColumnPage",
3
+ "label": "One column",
4
+ "description": "OneColumn Page Template",
5
+ "type": "Template",
6
+ "subtype": "PAGE",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "OneColumnTab",
3
+ "label": "One column",
4
+ "description": "One column",
5
+ "type": "Template",
6
+ "subtype": "TAB",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "SimpleTable",
3
+ "description": "Datatype List Template",
4
+ "type": "Template",
5
+ "subtype": "DATAVIEW",
6
+ "properties": [
7
+ ]
8
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "SubTabs",
3
+ "label": "Sub tabs",
4
+ "description": "Sub tabs view",
5
+ "type": "Template",
6
+ "subtype": "TAB",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "TwoColumn",
3
+ "label": "Two column",
4
+ "description": "TwoColumn Template",
5
+ "type": "Template",
6
+ "subtype": "FORM",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "TwoColumnPage",
3
+ "label": "Two column",
4
+ "description": "TwoColumn Page Template",
5
+ "type": "Template",
6
+ "subtype": "PAGE",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "TwoColumnTab",
3
+ "label": "Two column",
4
+ "description": "Two column",
5
+ "type": "Template",
6
+ "subtype": "TAB",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "WideNarrowDetails",
3
+ "label": "Details (Wide-narrow)",
4
+ "description": "Details (Wide-narrow) template",
5
+ "type": "Template",
6
+ "subtype": "DETAILS",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "WideNarrowForm",
3
+ "label": "Wide-narrow",
4
+ "description": "WideNarrow Template",
5
+ "type": "Template",
6
+ "subtype": "FORM",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "WideNarrowPage",
3
+ "label": "Wide-narrow",
4
+ "description": "Wide-narrow Page Template",
5
+ "type": "Template",
6
+ "subtype": "PAGE",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "AppAnnouncement",
3
+ "label": "App announcement",
4
+ "description": "App announcement widget",
5
+ "type": "Widget",
6
+ "subtype": "PAGE",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "CaseHistory",
3
+ "label": "Case history",
4
+ "description": "Case history widget",
5
+ "type": "Widget",
6
+ "subtype": "CASE",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "FileUtility",
3
+ "label": "Attachments",
4
+ "description": "Attachments",
5
+ "type": "Widget",
6
+ "subtype": "CASE",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "Followers",
3
+ "label": "Followers",
4
+ "description": "Followers",
5
+ "type": "Widget",
6
+ "subtype": "CASE",
7
+ "properties": [
8
+ ]
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "Todo",
3
+ "label": "Todo",
4
+ "description": "My worklist widget",
5
+ "type": "Widget",
6
+ "subtype": "PAGE",
7
+ "properties": [
8
+ ]
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pega/react-sdk-overrides",
3
- "version": "0.23.11",
3
+ "version": "0.23.12",
4
4
  "description": "React SDK - Code for overriding components",
5
5
  "_filesComment": "During packing, npm ignores everything NOT in the files list",
6
6
  "files": [
File without changes
File without changes
File without changes