@pega/cosmos-react-work 8.0.1 → 8.1.0

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 (41) hide show
  1. package/lib/components/ArticleList/ArticleList.types.d.ts.map +1 -1
  2. package/lib/components/ArticleList/RelatedQuestions.d.ts.map +1 -1
  3. package/lib/components/CaseHierarchy/CaseHierarchy.d.ts +1 -1
  4. package/lib/components/CaseHierarchy/CaseHierarchy.d.ts.map +1 -1
  5. package/lib/components/CaseHierarchy/CaseHierarchy.js +1 -1
  6. package/lib/components/CaseHierarchy/CaseHierarchy.js.map +1 -1
  7. package/lib/components/CaseHierarchy/CaseHierarchy.styles.d.ts.map +1 -1
  8. package/lib/components/CaseHierarchy/CaseHierarchy.styles.js +9 -1
  9. package/lib/components/CaseHierarchy/CaseHierarchy.styles.js.map +1 -1
  10. package/lib/components/CaseHierarchy/CaseHierarchy.test-ids.d.ts +1 -1
  11. package/lib/components/CaseHierarchy/CaseHierarchy.test-ids.d.ts.map +1 -1
  12. package/lib/components/CaseHierarchy/CaseHierarchy.test-ids.js +2 -1
  13. package/lib/components/CaseHierarchy/CaseHierarchy.test-ids.js.map +1 -1
  14. package/lib/components/CaseView/CaseHeader/Summary.d.ts.map +1 -1
  15. package/lib/components/CaseView/CaseView.styles.d.ts.map +1 -1
  16. package/lib/components/CaseView/CaseView.styles.js +1 -1
  17. package/lib/components/CaseView/CaseView.styles.js.map +1 -1
  18. package/lib/components/ConfigurableLayout/LayoutCell.d.ts.map +1 -1
  19. package/lib/components/ConfigurableLayout/useTrackWrappedRegions.d.ts.map +1 -1
  20. package/lib/components/GenAICoach/GenAICoach.d.ts.map +1 -1
  21. package/lib/components/GenAICoach/GenAICoach.js +46 -46
  22. package/lib/components/GenAICoach/GenAICoach.js.map +1 -1
  23. package/lib/components/GenAICoach/GenAICoach.styles.d.ts +1 -0
  24. package/lib/components/GenAICoach/GenAICoach.styles.d.ts.map +1 -1
  25. package/lib/components/GenAICoach/GenAICoach.styles.js +3 -2
  26. package/lib/components/GenAICoach/GenAICoach.styles.js.map +1 -1
  27. package/lib/components/GenAICoach/GenAICoach.utils.d.ts.map +1 -1
  28. package/lib/components/HierarchicalAssignments/AssignmentDetail.d.ts.map +1 -1
  29. package/lib/components/HierarchicalAssignments/AssignmentNode.d.ts.map +1 -1
  30. package/lib/components/HierarchicalAssignments/Assignments.styles.d.ts.map +1 -1
  31. package/lib/components/HierarchicalAssignments/HierarchicalAssignments.types.d.ts +1 -1
  32. package/lib/components/HierarchicalAssignments/HierarchicalAssignments.types.d.ts.map +1 -1
  33. package/lib/components/HierarchicalAssignments/HierarchicalAssignments.types.js.map +1 -1
  34. package/lib/components/HierarchicalAssignments/helpers.d.ts.map +1 -1
  35. package/lib/components/HierarchicalAssignments/nodeItems/AssignmentItem.d.ts.map +1 -1
  36. package/lib/components/HierarchicalAssignments/nodeItems/useNodeFocus.d.ts.map +1 -1
  37. package/lib/components/SearchResults/ActiveFilter.d.ts.map +1 -1
  38. package/lib/components/SearchResults/Filter.d.ts.map +1 -1
  39. package/lib/components/SearchResults/SearchResult.d.ts.map +1 -1
  40. package/lib/components/Stakeholders/StakeholderForm.d.ts.map +1 -1
  41. package/package.json +4 -9
@@ -1 +1 @@
1
- {"version":3,"file":"HierarchicalAssignments.types.js","sourceRoot":"","sources":["../../../src/components/HierarchicalAssignments/HierarchicalAssignments.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { MouseEvent, Ref } from 'react';\n\nimport type {\n LinkProps,\n NoChildrenProp,\n OmitStrict,\n StatusProps,\n TestIdProp\n} from '@pega/cosmos-react-core';\nimport type { TaskItemProps } from '@pega/cosmos-react-work';\n\nexport interface AssignmentProps {\n /** Unique Id of the assignment */\n id: string;\n /** Assignment name shown in Assignment's description */\n name: string;\n /** Process Name for the assignment. */\n processName?: string;\n /** Service Level Agreement for the assignment. */\n sla?: string;\n /** Number to defined the Urgency of assignment */\n urgency: number;\n /** Assignee's Id, passed on callback of onAssigneeClick */\n assigneeId: string;\n /** Assignee's Name of the assignment */\n assigneeName: string;\n /** Callback fired when click of Assignee Name to show Glimpse component */\n onAssigneeClick: (\n assigneeId: AssignmentProps['assigneeId'],\n e: MouseEvent<HTMLButtonElement>\n ) => void;\n /** Callback fired from the Go button */\n onOpen?: (id: AssignmentProps['id'], e: MouseEvent<HTMLButtonElement>) => void;\n}\n\nexport interface ItemsProps extends NoChildrenProp {\n /** An array of assignment details to be rendered as Assignment details */\n assignments?: AssignmentProps[];\n /** An array of child cases to be rendered as case details */\n childCases?: CaseListProps[];\n /** Callback on toggle of ExpandCollapseButton of each Case, with arguments current expanded state of toggler and case id */\n onToggleCollapsed?: (value: boolean, id: string) => void;\n}\nexport interface CaseListProps extends NoChildrenProp, ItemsProps {\n /** Name of the task group displayed in the list. */\n name: string;\n /** Unique Id of the childcase */\n id: string;\n /** status details for the case */\n status: {\n text: string;\n variant: StatusProps['variant'];\n };\n /** Meta details of link to navigate to the case */\n link: {\n onPreview: LinkProps['onPreview'];\n href: LinkProps['href'];\n target?: LinkProps['target'];\n onClick?: (\n e: MouseEvent<HTMLAnchorElement | HTMLButtonElement>,\n id: CaseListProps['id']\n ) => void;\n };\n}\n\nexport interface HierarchicalAssignmentProps\n extends OmitStrict<ItemsProps, 'onToggleCollapsed'>,\n TestIdProp {\n /**\n * Hierarchical Assignment widget's title\n * @default 'Assignment'\n */\n name?: string;\n /** Boolean refers to state of the progress in assignment widget */\n progress?: boolean;\n /** Task Content to be rendered on click of Go Action button */\n openItem?: TaskItemProps;\n /**\n * Boolean that refers the state of the ExpandButton.\n * @default false\n */\n collapsed?: boolean;\n /** Callback on toggle of Top level ExpandCollapseButton */\n onToggleCollapsed: (collapsed: boolean) => void;\n /** Ref placed on the element. */\n ref?: Ref<HTMLDivElement>;\n /** Boolean that refers the state of the Case expand */\n expandAllCases?: boolean;\n}\n"]}
1
+ {"version":3,"file":"HierarchicalAssignments.types.js","sourceRoot":"","sources":["../../../src/components/HierarchicalAssignments/HierarchicalAssignments.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { MouseEvent, Ref } from 'react';\n\nimport type {\n LinkProps,\n NoChildrenProp,\n OmitStrict,\n StatusProps,\n TestIdProp\n} from '@pega/cosmos-react-core';\n\nimport type { TaskItemProps } from '../Tasks';\n\nexport interface AssignmentProps {\n /** Unique Id of the assignment */\n id: string;\n /** Assignment name shown in Assignment's description */\n name: string;\n /** Process Name for the assignment. */\n processName?: string;\n /** Service Level Agreement for the assignment. */\n sla?: string;\n /** Number to defined the Urgency of assignment */\n urgency: number;\n /** Assignee's Id, passed on callback of onAssigneeClick */\n assigneeId: string;\n /** Assignee's Name of the assignment */\n assigneeName: string;\n /** Callback fired when click of Assignee Name to show Glimpse component */\n onAssigneeClick: (\n assigneeId: AssignmentProps['assigneeId'],\n e: MouseEvent<HTMLButtonElement>\n ) => void;\n /** Callback fired from the Go button */\n onOpen?: (id: AssignmentProps['id'], e: MouseEvent<HTMLButtonElement>) => void;\n}\n\nexport interface ItemsProps extends NoChildrenProp {\n /** An array of assignment details to be rendered as Assignment details */\n assignments?: AssignmentProps[];\n /** An array of child cases to be rendered as case details */\n childCases?: CaseListProps[];\n /** Callback on toggle of ExpandCollapseButton of each Case, with arguments current expanded state of toggler and case id */\n onToggleCollapsed?: (value: boolean, id: string) => void;\n}\nexport interface CaseListProps extends NoChildrenProp, ItemsProps {\n /** Name of the task group displayed in the list. */\n name: string;\n /** Unique Id of the childcase */\n id: string;\n /** status details for the case */\n status: {\n text: string;\n variant: StatusProps['variant'];\n };\n /** Meta details of link to navigate to the case */\n link: {\n onPreview: LinkProps['onPreview'];\n href: LinkProps['href'];\n target?: LinkProps['target'];\n onClick?: (\n e: MouseEvent<HTMLAnchorElement | HTMLButtonElement>,\n id: CaseListProps['id']\n ) => void;\n };\n}\n\nexport interface HierarchicalAssignmentProps\n extends OmitStrict<ItemsProps, 'onToggleCollapsed'>,\n TestIdProp {\n /**\n * Hierarchical Assignment widget's title\n * @default 'Assignment'\n */\n name?: string;\n /** Boolean refers to state of the progress in assignment widget */\n progress?: boolean;\n /** Task Content to be rendered on click of Go Action button */\n openItem?: TaskItemProps;\n /**\n * Boolean that refers the state of the ExpandButton.\n * @default false\n */\n collapsed?: boolean;\n /** Callback on toggle of Top level ExpandCollapseButton */\n onToggleCollapsed: (collapsed: boolean) => void;\n /** Ref placed on the element. */\n ref?: Ref<HTMLDivElement>;\n /** Boolean that refers the state of the Case expand */\n expandAllCases?: boolean;\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../src/components/HierarchicalAssignments/helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,OAAO,KAAK,EACV,eAAe,EACf,aAAa,EACb,2BAA2B,EAC5B,MAAM,iCAAiC,CAAC;AAEzC,MAAM,WAAW,eAAe;IAC9B,WAAW,CAAC,EAAE,eAAe,EAAE,CAAC;IAChC,UAAU,CAAC,EAAE,aAAa,EAAE,CAAC;CAC9B;AAED,KAAK,IAAI,GAAG,eAAe,GAAG,aAAa,GAAG,SAAS,CAAC;AACxD,eAAO,MAAM,YAAY,IAAI,CAAC;AAC9B,eAAO,MAAM,QAAQ,IAAI,CAAC;AAE1B,eAAO,MAAM,aAAa,UAAW,MAAM,WAA8B,CAAC;AAE1E,eAAO,MAAM,YAAY,eACX,eAAe,GAAG,aAAa,KAC1C,UAAU,IAAI,eAMhB,CAAC;AAEF,eAAO,MAAM,cAAc,iBAAkB,MAAM,EAAE,MAAM,MAAM,YAEhE,CAAC;AAEF,eAAO,MAAM,OAAO,UAAW,eAAe,MAAM,MAAM,SAyBzD,CAAC;AAEF,eAAO,MAAM,aAAa,UAAW,eAAe,MAAM,MAAM,eAAe,aAAa,SA2B3F,CAAC;AAEF,eAAO,MAAM,iBAAiB,UAAW,eAAe,MAAM,MAAM,YAAY,MAAM,EAAE,SAevF,CAAC;AAEF,eAAO,MAAM,wBAAwB,kBACpB,CAAC,eAAe,GAAG,aAAa,CAAC,EAAE,MAC9C,MAAM,WAGX,CAAC;AAEF,eAAO,MAAM,eAAe,UACnB,eAAe,MAClB,MAAM,KACT,eAAe,GAAG,aAuBpB,CAAC;AAEF,eAAO,MAAM,WAAW,gCACiB,eAAe,MAClD,MAAM,YACA,MAAM,EAAE,oCAUnB,CAAC;AAEF,eAAO,MAAM,cAAc,gCACc,eAAe,MAClD,MAAM,YACA,MAAM,EAAE,KACjB,IAuBF,CAAC;AAEF,eAAO,MAAM,eAAe,gCACa,eAAe,MAClD,MAAM,YACA,MAAM,EAAE,SAiCnB,CAAC;AAEF,eAAO,MAAM,mBAAmB,eAClB,SAAS,CAAC,gBAAgB,CAAC,aAC5B,SAAS,CAAC,aAAa,CAAC,SAkBpC,CAAC;AAEF,eAAO,MAAM,sBAAsB,gBACrB,2BAA2B,CAAC,YAAY,CAAC,KACpD,MAAM,EAWR,CAAC"}
1
+ {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../src/components/HierarchicalAssignments/helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,OAAO,KAAK,EACV,eAAe,EACf,aAAa,EACb,2BAA2B,EAC5B,MAAM,iCAAiC,CAAC;AAEzC,MAAM,WAAW,eAAe;IAC9B,WAAW,CAAC,EAAE,eAAe,EAAE,CAAC;IAChC,UAAU,CAAC,EAAE,aAAa,EAAE,CAAC;CAC9B;AAED,KAAK,IAAI,GAAG,eAAe,GAAG,aAAa,GAAG,SAAS,CAAC;AACxD,eAAO,MAAM,YAAY,IAAI,CAAC;AAC9B,eAAO,MAAM,QAAQ,IAAI,CAAC;AAE1B,eAAO,MAAM,aAAa,GAAI,OAAO,MAAM,WAA8B,CAAC;AAE1E,eAAO,MAAM,YAAY,GACvB,YAAY,eAAe,GAAG,aAAa,KAC1C,UAAU,IAAI,eAMhB,CAAC;AAEF,eAAO,MAAM,cAAc,GAAI,cAAc,MAAM,EAAE,EAAE,IAAI,MAAM,YAEhE,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,OAAO,eAAe,EAAE,IAAI,MAAM,SAyBzD,CAAC;AAEF,eAAO,MAAM,aAAa,GAAI,OAAO,eAAe,EAAE,IAAI,MAAM,EAAE,aAAa,aAAa,SA2B3F,CAAC;AAEF,eAAO,MAAM,iBAAiB,GAAI,OAAO,eAAe,EAAE,IAAI,MAAM,EAAE,UAAU,MAAM,EAAE,SAevF,CAAC;AAEF,eAAO,MAAM,wBAAwB,GACnC,eAAe,CAAC,eAAe,GAAG,aAAa,CAAC,EAAE,EAClD,IAAI,MAAM,WAGX,CAAC;AAEF,eAAO,MAAM,eAAe,GAC1B,OAAO,eAAe,EACtB,IAAI,MAAM,KACT,eAAe,GAAG,aAuBpB,CAAC;AAEF,eAAO,MAAM,WAAW,GACtB,6BAAuC,eAAe,EACtD,IAAI,MAAM,EACV,UAAU,MAAM,EAAE,oCAUnB,CAAC;AAEF,eAAO,MAAM,cAAc,GACzB,6BAAuC,eAAe,EACtD,IAAI,MAAM,EACV,UAAU,MAAM,EAAE,KACjB,IAuBF,CAAC;AAEF,eAAO,MAAM,eAAe,GAC1B,6BAAuC,eAAe,EACtD,IAAI,MAAM,EACV,UAAU,MAAM,EAAE,SAiCnB,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAC9B,YAAY,SAAS,CAAC,gBAAgB,CAAC,EACvC,WAAW,SAAS,CAAC,aAAa,CAAC,SAkBpC,CAAC;AAEF,eAAO,MAAM,sBAAsB,GACjC,aAAY,2BAA2B,CAAC,YAAY,CAAM,KACzD,MAAM,EAWR,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"AssignmentItem.d.ts","sourceRoot":"","sources":["../../../../src/components/HierarchicalAssignments/nodeItems/AssignmentItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAA6B,SAAS,EAAc,MAAM,OAAO,CAAC;AAgC9E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AAQxE,UAAU,mBAAoB,SAAQ,eAAe;IACnD,wCAAwC;IACxC,KAAK,EAAE,MAAM,CAAC;IACd,gEAAgE;IAChE,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,oEAAoE;IACpE,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAMD,eAAO,MAAM,aAAa,iBAAkB;IAAE,QAAQ,EAAE,SAAS,CAAA;CAAE,4CAOlE,CAAC;gJAeC,mBAAmB;;;AAuNtB,wBAAiE"}
1
+ {"version":3,"file":"AssignmentItem.d.ts","sourceRoot":"","sources":["../../../../src/components/HierarchicalAssignments/nodeItems/AssignmentItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAA6B,SAAS,EAAc,MAAM,OAAO,CAAC;AAgC9E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AAQxE,UAAU,mBAAoB,SAAQ,eAAe;IACnD,wCAAwC;IACxC,KAAK,EAAE,MAAM,CAAC;IACd,gEAAgE;IAChE,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,oEAAoE;IACpE,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAMD,eAAO,MAAM,aAAa,GAAI,cAAc;IAAE,QAAQ,EAAE,SAAS,CAAA;CAAE,4CAOlE,CAAC;gJAeC,mBAAmB;;;AAuNtB,wBAAiE"}
@@ -1 +1 @@
1
- {"version":3,"file":"useNodeFocus.d.ts","sourceRoot":"","sources":["../../../../src/components/HierarchicalAssignments/nodeItems/useNodeFocus.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAEzD,OAAO,EAAiB,KAAK,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAEzE,OAAO,KAAK,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AAGvF,KAAK,EAAE,GAAG,eAAe,CAAC,IAAI,CAAC,GAAG,aAAa,CAAC,IAAI,CAAC,CAAC;AAEtD,UAAU,cAAc;IACtB,UAAU,EAAE,SAAS,CAAC,aAAa,CAAC,CAAC;IACrC,EAAE,EAAE,EAAE,CAAC;IACP,WAAW,CAAC,EAAE,EAAE,CAAC;IACjB,aAAa,CAAC,EAAE,EAAE,CAAC;IACnB,UAAU,CAAC,EAAE,EAAE,CAAC;IAChB,SAAS,CAAC,EAAE,SAAS,CAAC,gBAAgB,CAAC,CAAC;IACxC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,cAAc,CAAC,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAC;CAC5C;AAED,QAAA,MAAM,YAAY,OACZ,cAAc,CAAC,IAAI,CAAC,cACZ,cAAc,CAAC,YAAY,CAAC,cAC5B,cAAc,CAAC,WAAW,CAAC,kFAOpC,UAAU,CAAC,cAAc,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,CAAC;;;;;;CAyCjE,CAAC;AAEF,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"useNodeFocus.d.ts","sourceRoot":"","sources":["../../../../src/components/HierarchicalAssignments/nodeItems/useNodeFocus.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAEzD,OAAO,EAAiB,KAAK,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAEzE,OAAO,KAAK,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AAGvF,KAAK,EAAE,GAAG,eAAe,CAAC,IAAI,CAAC,GAAG,aAAa,CAAC,IAAI,CAAC,CAAC;AAEtD,UAAU,cAAc;IACtB,UAAU,EAAE,SAAS,CAAC,aAAa,CAAC,CAAC;IACrC,EAAE,EAAE,EAAE,CAAC;IACP,WAAW,CAAC,EAAE,EAAE,CAAC;IACjB,aAAa,CAAC,EAAE,EAAE,CAAC;IACnB,UAAU,CAAC,EAAE,EAAE,CAAC;IAChB,SAAS,CAAC,EAAE,SAAS,CAAC,gBAAgB,CAAC,CAAC;IACxC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,cAAc,CAAC,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAC;CAC5C;AAED,QAAA,MAAM,YAAY,GAChB,IAAI,cAAc,CAAC,IAAI,CAAC,EACxB,YAAY,cAAc,CAAC,YAAY,CAAC,EACxC,YAAY,cAAc,CAAC,WAAW,CAAC,EACvC,gFAMG,UAAU,CAAC,cAAc,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,CAAM;;;;;;CAyCtE,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"ActiveFilter.d.ts","sourceRoot":"","sources":["../../../src/components/SearchResults/ActiveFilter.tsx"],"names":[],"mappings":"AAgBA,MAAM,WAAW,iBAAiB;IAChC,8BAA8B;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,iEAAiE;IACjE,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,kBAAkB,wGAkB9B,CAAC;AAIF,QAAA,MAAM,YAAY,uBAAwB,iBAAiB,4CAsB1D,CAAC;AAEF,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"ActiveFilter.d.ts","sourceRoot":"","sources":["../../../src/components/SearchResults/ActiveFilter.tsx"],"names":[],"mappings":"AAgBA,MAAM,WAAW,iBAAiB;IAChC,8BAA8B;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,iEAAiE;IACjE,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,kBAAkB,wGAkB9B,CAAC;AAIF,QAAA,MAAM,YAAY,GAAI,oBAAoB,iBAAiB,4CAsB1D,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Filter.d.ts","sourceRoot":"","sources":["../../../src/components/SearchResults/Filter.tsx"],"names":[],"mappings":"AAiBA,OAAO,KAAK,EAAE,WAAW,EAAE,kBAAkB,EAAyB,MAAM,uBAAuB,CAAC;AAKpG,UAAU,oBAAoB;IAC5B,cAAc,CAAC,EAAE,kBAAkB,CAAC,gBAAgB,CAAC,CAAC;IACtD,aAAa,CAAC,EAAE,kBAAkB,CAAC,eAAe,CAAC,CAAC;CACrD;AAED,QAAA,MAAM,MAAM,kEAMT,WAAW,GAAG,oBAAoB,KAAG,GAAG,CAAC,OAkF3C,CAAC;AAEF,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"Filter.d.ts","sourceRoot":"","sources":["../../../src/components/SearchResults/Filter.tsx"],"names":[],"mappings":"AAiBA,OAAO,KAAK,EAAE,WAAW,EAAE,kBAAkB,EAAyB,MAAM,uBAAuB,CAAC;AAKpG,UAAU,oBAAoB;IAC5B,cAAc,CAAC,EAAE,kBAAkB,CAAC,gBAAgB,CAAC,CAAC;IACtD,aAAa,CAAC,EAAE,kBAAkB,CAAC,eAAe,CAAC,CAAC;CACrD;AAED,QAAA,MAAM,MAAM,GAAI,+DAMb,WAAW,GAAG,oBAAoB,KAAG,GAAG,CAAC,OAkF3C,CAAC;AAEF,eAAe,MAAM,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"SearchResult.d.ts","sourceRoot":"","sources":["../../../src/components/SearchResults/SearchResult.tsx"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAyB/D,QAAA,MAAM,YAAY,mDAOf,iBAAiB,KAAG,GAAG,CAAC,OAe1B,CAAC;AAEF,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"SearchResult.d.ts","sourceRoot":"","sources":["../../../src/components/SearchResults/SearchResult.tsx"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAyB/D,QAAA,MAAM,YAAY,GAAI,gDAOnB,iBAAiB,KAAG,GAAG,CAAC,OAe1B,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"StakeholderForm.d.ts","sourceRoot":"","sources":["../../../src/components/Stakeholders/StakeholderForm.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAQ,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAEpE,UAAU,SACR,SAAQ,IAAI,CACV,iBAAiB,CAAC,MAAM,CAAC,EACzB,OAAO,GAAG,aAAa,GAAG,UAAU,GAAG,eAAe,GAAG,SAAS,CACnE;IACD,sBAAsB,EAAE,CAAC,gBAAgB,CAAC,EAAE,MAAM,GAAG,SAAS,KAAK,IAAI,CAAC;CACzE;qHASE,SAAS;AAPZ,wBA4FE"}
1
+ {"version":3,"file":"StakeholderForm.d.ts","sourceRoot":"","sources":["../../../src/components/Stakeholders/StakeholderForm.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAQ,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAEpE,UAAU,SACR,SAAQ,IAAI,CACV,iBAAiB,CAAC,MAAM,CAAC,EACzB,OAAO,GAAG,aAAa,GAAG,UAAU,GAAG,eAAe,GAAG,SAAS,CACnE;IACD,sBAAsB,EAAE,CAAC,gBAAgB,CAAC,EAAE,MAAM,GAAG,SAAS,KAAK,IAAI,CAAC;CACzE;yBAEe,4FAOb,SAAS;AAPZ,wBA4FE"}
package/package.json CHANGED
@@ -1,11 +1,6 @@
1
1
  {
2
2
  "name": "@pega/cosmos-react-work",
3
- "version": "8.0.1",
4
- "repository": {
5
- "type": "git",
6
- "url": "git+https://github.com/pegasystems/cosmos-react.git",
7
- "directory": "packages/cosmos-work"
8
- },
3
+ "version": "8.1.0",
9
4
  "license": "SEE LICENSE IN LICENSE",
10
5
  "author": "Pegasystems",
11
6
  "sideEffects": false,
@@ -19,8 +14,8 @@
19
14
  "build": "tsc -b tsconfig.build.json"
20
15
  },
21
16
  "dependencies": {
22
- "@pega/cosmos-react-core": "8.0.1",
23
- "@pega/cosmos-react-rte": "8.0.1",
17
+ "@pega/cosmos-react-core": "8.1.0",
18
+ "@pega/cosmos-react-rte": "8.1.0",
24
19
  "@types/react": "^17.0.62 || ^18.3.3",
25
20
  "@types/react-dom": "^17.0.20 || ^18.3.0",
26
21
  "@types/styled-components": "^5.1.26",
@@ -36,6 +31,6 @@
36
31
  "@testing-library/user-event": "^14.6.1",
37
32
  "@types/dompurify": "^3.0.5",
38
33
  "dompurify": "^3.1.6",
39
- "typescript": "~5.5.4"
34
+ "typescript": "~5.8.3"
40
35
  }
41
36
  }