@digigov/react-core 2.0.0-a402a664 → 2.0.0-aa380ec7

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 (89) hide show
  1. package/AccordionSectionSummaryHeading/index.d.ts +1 -0
  2. package/AccordionSectionSummaryHeading/index.js +3 -2
  3. package/AccordionSectionSummaryHeading/index.js.map +2 -2
  4. package/BannerContainer/index.js +1 -1
  5. package/BannerContainer/index.js.map +2 -2
  6. package/{CircularProgress → CircularProgressBase}/index.d.ts +5 -5
  7. package/{CircularProgress → CircularProgressBase}/index.js +4 -4
  8. package/CircularProgressBase/index.js.map +7 -0
  9. package/{CircularProgress → CircularProgressBase}/package.json +1 -1
  10. package/DetailsContent/index.d.ts +1 -0
  11. package/DetailsContent/index.js +3 -2
  12. package/DetailsContent/index.js.map +2 -2
  13. package/Grid/index.d.ts +1 -7
  14. package/Grid/index.js.map +2 -2
  15. package/SummaryList/index.d.ts +10 -2
  16. package/SummaryList/index.js +10 -2
  17. package/SummaryList/index.js.map +2 -2
  18. package/SummaryListItem/index.js +1 -1
  19. package/SummaryListItem/index.js.map +2 -2
  20. package/SummaryListItemKey/index.d.ts +14 -0
  21. package/SummaryListItemKey/index.js +14 -2
  22. package/SummaryListItemKey/index.js.map +2 -2
  23. package/SummaryListItemValue/index.d.ts +14 -0
  24. package/SummaryListItemValue/index.js +11 -2
  25. package/SummaryListItemValue/index.js.map +2 -2
  26. package/TableDataCell/index.d.ts +9 -0
  27. package/TableDataCell/index.js +8 -1
  28. package/TableDataCell/index.js.map +2 -2
  29. package/cjs/AccordionSectionSummaryHeading/index.js +3 -2
  30. package/cjs/AccordionSectionSummaryHeading/index.js.map +2 -2
  31. package/cjs/BannerContainer/index.js +1 -1
  32. package/cjs/BannerContainer/index.js.map +2 -2
  33. package/cjs/{CircularProgress → CircularProgressBase}/index.js +8 -8
  34. package/cjs/CircularProgressBase/index.js.map +7 -0
  35. package/cjs/DetailsContent/index.js +3 -2
  36. package/cjs/DetailsContent/index.js.map +2 -2
  37. package/cjs/Grid/index.js.map +2 -2
  38. package/cjs/SummaryList/index.js +10 -2
  39. package/cjs/SummaryList/index.js.map +2 -2
  40. package/cjs/SummaryListItem/index.js +1 -1
  41. package/cjs/SummaryListItem/index.js.map +2 -2
  42. package/cjs/SummaryListItemKey/index.js +14 -2
  43. package/cjs/SummaryListItemKey/index.js.map +3 -3
  44. package/cjs/SummaryListItemValue/index.js +11 -2
  45. package/cjs/SummaryListItemValue/index.js.map +3 -3
  46. package/cjs/TableDataCell/index.js +8 -1
  47. package/cjs/TableDataCell/index.js.map +3 -3
  48. package/cjs/index.js +2 -2
  49. package/cjs/index.js.map +2 -2
  50. package/cjs/lazy/index.js +1 -1
  51. package/cjs/lazy.js.map +2 -2
  52. package/cjs/registry/index.js +4 -4
  53. package/cjs/registry.js.map +2 -2
  54. package/index.d.ts +1 -1
  55. package/index.js +2 -2
  56. package/index.js.map +1 -1
  57. package/lazy/index.js +1 -1
  58. package/package.json +3 -3
  59. package/registry/index.js +4 -4
  60. package/src/AccordionSectionSummaryHeading/index.tsx +9 -2
  61. package/src/BannerContainer/__snapshots__/index.test.tsx.snap +1 -1
  62. package/src/BannerContainer/index.tsx +1 -1
  63. package/src/{CircularProgress → CircularProgressBase}/__snapshots__/index.test.tsx.snap +6 -6
  64. package/src/CircularProgressBase/index.test.tsx +38 -0
  65. package/src/{CircularProgress → CircularProgressBase}/index.tsx +7 -7
  66. package/src/DetailsContent/index.tsx +11 -2
  67. package/src/Grid/index.tsx +1 -7
  68. package/src/SummaryList/__snapshots__/index.test.tsx.snap +36 -0
  69. package/src/SummaryList/index.test.tsx +15 -0
  70. package/src/SummaryList/index.tsx +20 -3
  71. package/src/SummaryListItem/index.tsx +1 -1
  72. package/src/SummaryListItemKey/__snapshots__/index.test.tsx.snap +70 -0
  73. package/src/SummaryListItemKey/index.test.tsx +29 -0
  74. package/src/SummaryListItemKey/index.tsx +29 -1
  75. package/src/SummaryListItemValue/__snapshots__/index.test.tsx.snap +34 -0
  76. package/src/SummaryListItemValue/index.test.tsx +14 -0
  77. package/src/SummaryListItemValue/index.tsx +30 -2
  78. package/src/TableDataCell/__snapshots__/index.test.tsx.snap +77 -0
  79. package/src/TableDataCell/index.test.tsx +42 -0
  80. package/src/TableDataCell/index.tsx +33 -0
  81. package/src/TableRow/__snapshots__/index.test.tsx.snap +1 -1
  82. package/src/TableRow/index.test.tsx +1 -1
  83. package/src/index.ts +1 -1
  84. package/src/lazy.js +1 -1
  85. package/src/registry.js +4 -4
  86. package/CircularProgress/index.js.map +0 -7
  87. package/cjs/CircularProgress/index.js.map +0 -7
  88. package/src/CircularProgress/index.test.tsx +0 -34
  89. /package/{CircularProgress → CircularProgressBase}/index.test.d.ts +0 -0
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/BannerContainer/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport { Base, BaseProps } from '@digigov/react-core/Base';\n\nexport interface BannerContainerProps extends BaseProps<'div'> {}\n\nexport const BannerContainer = React.forwardRef<\n HTMLDivElement,\n BannerContainerProps\n>(function BannerContainer({ className, children, ...props }, ref) {\n return (\n <Base\n as=\"div\"\n ref={ref}\n className={clsx(className, {\n 'ds-cookie-banner': true,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default BannerContainer;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAIzB,MAAM,kBAAkB,aAAAA,QAAM,WAGnC,SAASC,iBAAgB,EAAE,WAAW,UAAU,GAAG,MAAM,GAAG,KAAK;AACjE,SACE,6BAAAD,QAAA;AAAA,IAAC;AAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAE,SAAK,WAAW;AAAA,QACzB,oBAAoB;AAAA,MACtB,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,0BAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport { Base, BaseProps } from '@digigov/react-core/Base';\n\nexport interface BannerContainerProps extends BaseProps<'div'> {}\n\nexport const BannerContainer = React.forwardRef<\n HTMLDivElement,\n BannerContainerProps\n>(function BannerContainer({ className, children, ...props }, ref) {\n return (\n <Base\n as=\"div\"\n ref={ref}\n className={clsx(className, {\n 'ds-banner-container': true,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default BannerContainer;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAIzB,MAAM,kBAAkB,aAAAA,QAAM,WAGnC,SAASC,iBAAgB,EAAE,WAAW,UAAU,GAAG,MAAM,GAAG,KAAK;AACjE,SACE,6BAAAD,QAAA;AAAA,IAAC;AAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAE,SAAK,WAAW;AAAA,QACzB,uBAAuB;AAAA,MACzB,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,0BAAQ;",
6
6
  "names": ["React", "BannerContainer", "clsx"]
7
7
  }
@@ -25,16 +25,16 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
25
25
  mod
26
26
  ));
27
27
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
28
- var CircularProgress_exports = {};
29
- __export(CircularProgress_exports, {
30
- CircularProgress: () => CircularProgress,
31
- default: () => CircularProgress_default
28
+ var CircularProgressBase_exports = {};
29
+ __export(CircularProgressBase_exports, {
30
+ CircularProgressBase: () => CircularProgressBase,
31
+ default: () => CircularProgressBase_default
32
32
  });
33
- module.exports = __toCommonJS(CircularProgress_exports);
33
+ module.exports = __toCommonJS(CircularProgressBase_exports);
34
34
  var import_react = __toESM(require("react"));
35
35
  var import_clsx = __toESM(require("clsx"));
36
36
  var import_Base = __toESM(require("@digigov/react-core/Base"));
37
- const CircularProgress = import_react.default.forwardRef(function CircularProgress2({ color = "primary", size = "md", className, ...props }, ref) {
37
+ const CircularProgressBase = import_react.default.forwardRef(function CircularProgress({ color = "primary", size = "md", className, ...props }, ref) {
38
38
  return /* @__PURE__ */ import_react.default.createElement(
39
39
  import_Base.default,
40
40
  {
@@ -68,9 +68,9 @@ const CircularProgress = import_react.default.forwardRef(function CircularProgre
68
68
  )
69
69
  );
70
70
  });
71
- var CircularProgress_default = CircularProgress;
71
+ var CircularProgressBase_default = CircularProgressBase;
72
72
  // Annotate the CommonJS export names for ESM import in node:
73
73
  0 && (module.exports = {
74
- CircularProgress
74
+ CircularProgressBase
75
75
  });
76
76
  //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/CircularProgressBase/index.tsx"],
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface CircularProgressBaseProps extends BaseProps<'svg'> {\n /**\n * color prop is optional.\n * color prop is used to change the color of the loader.\n * @value 'primary' is the default color.\n * @value 'secondary' recommended for dark backgrounds.\n * @default 'primary'\n */\n color?: 'primary' | 'secondary';\n /**\n * size prop is optional.\n * size prop is used to change the size of the loader.\n * @value 'sm'\n * @value 'md'\n * @value 'lg'\n * @default 'md'\n */\n size?: 'sm' | 'md' | 'lg';\n}\n/**\n * Use CircularProgressBase component as an animated loader.\n * CircularProgressBase can be used inside LoaderContainer component.\n */\nexport const CircularProgressBase = React.forwardRef<\n SVGElement,\n CircularProgressBaseProps\n>(function CircularProgress(\n { color = 'primary', size = 'md', className, ...props },\n ref\n) {\n return (\n <Base\n as=\"svg\"\n ref={ref}\n className={clsx(className, {\n 'ds-circular-progress': true,\n 'ds-circular-progress--secondary': color === 'secondary',\n 'ds-circular-progress--sm': size === 'sm',\n 'ds-circular-progress--md': size === 'md',\n 'ds-circular-progress--lg': size === 'lg',\n })}\n focusable=\"false\"\n viewBox=\"0 0 200 200\"\n aria-hidden=\"true\"\n {...props}\n >\n <path\n className=\"ds-circular-progress__circle ds-circular-progress__circle--1\"\n d=\"M26,99.551C26,55.478,60.246,27.5,99.85,27.5S174,55.478,174,99.551,139.455,172.5,99.85,172.5C60.273,172.473,26,143.6,26,99.551Z\"\n />\n <path\n className=\"ds-circular-progress__circle ds-circular-progress__circle--2\"\n d=\"M26,99.551C26,55.478,60.246,27.5,99.85,27.5S174,55.478,174,99.551,139.455,172.5,99.85,172.5C60.273,172.473,26,143.6,26,99.551Z\"\n />\n </Base>\n );\n});\n\nexport default CircularProgressBase;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAyBzB,MAAM,uBAAuB,aAAAA,QAAM,WAGxC,SAAS,iBACT,EAAE,QAAQ,WAAW,OAAO,MAAM,WAAW,GAAG,MAAM,GACtD,KACA;AACA,SACE,6BAAAA,QAAA;AAAA,IAAC,YAAAC;AAAA,IAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,wBAAwB;AAAA,QACxB,mCAAmC,UAAU;AAAA,QAC7C,4BAA4B,SAAS;AAAA,QACrC,4BAA4B,SAAS;AAAA,QACrC,4BAA4B,SAAS;AAAA,MACvC,CAAC;AAAA,MACD,WAAU;AAAA,MACV,SAAQ;AAAA,MACR,eAAY;AAAA,MACX,GAAG;AAAA;AAAA,IAEJ,6BAAAF,QAAA;AAAA,MAAC;AAAA;AAAA,QACC,WAAU;AAAA,QACV,GAAE;AAAA;AAAA,IACJ;AAAA,IACA,6BAAAA,QAAA;AAAA,MAAC;AAAA;AAAA,QACC,WAAU;AAAA,QACV,GAAE;AAAA;AAAA,IACJ;AAAA,EACF;AAEJ,CAAC;AAED,IAAO,+BAAQ;",
6
+ "names": ["React", "Base", "clsx"]
7
+ }
@@ -34,14 +34,15 @@ module.exports = __toCommonJS(DetailsContent_exports);
34
34
  var import_react = __toESM(require("react"));
35
35
  var import_clsx = __toESM(require("clsx"));
36
36
  var import_Base = __toESM(require("@digigov/react-core/Base"));
37
- const DetailsContent = import_react.default.forwardRef(function DetailsContent2({ className, children, ...props }, ref) {
37
+ const DetailsContent = import_react.default.forwardRef(function DetailsContent2({ color, className, children, ...props }, ref) {
38
38
  return /* @__PURE__ */ import_react.default.createElement(
39
39
  import_Base.default,
40
40
  {
41
41
  as: "div",
42
42
  ref,
43
43
  className: (0, import_clsx.default)(className, {
44
- "ds-details__content": true
44
+ "ds-details__content": true,
45
+ "ds-details__content--secondary": color === "secondary"
45
46
  }),
46
47
  ...props
47
48
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/DetailsContent/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface DetailsContentProps extends BaseProps<'div'> {}\n/**\n *DetailsContent component wraps the content text.\n *It is used inside Details component as children\n */\nexport const DetailsContent = React.forwardRef<\n HTMLDivElement,\n DetailsContentProps\n>(function DetailsContent({ className, children, ...props }, ref) {\n return (\n <Base\n as=\"div\"\n ref={ref}\n className={clsx(className, {\n 'ds-details__content': true,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default DetailsContent;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAOzB,MAAM,iBAAiB,aAAAA,QAAM,WAGlC,SAASC,gBAAe,EAAE,WAAW,UAAU,GAAG,MAAM,GAAG,KAAK;AAChE,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,uBAAuB;AAAA,MACzB,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,yBAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface DetailsContentProps extends BaseProps<'div'> {\n /*\n ** color is optional. Default value is 'primary'.\n * @value 'primary'\n * @value 'secondary'\n * @default 'primary'\n * */\n color?: 'primary' | 'secondary';\n}\n/**\n *DetailsContent component wraps the content text.\n *It is used inside Details component as children\n */\nexport const DetailsContent = React.forwardRef<\n HTMLDivElement,\n DetailsContentProps\n>(function DetailsContent({ color, className, children, ...props }, ref) {\n return (\n <Base\n as=\"div\"\n ref={ref}\n className={clsx(className, {\n 'ds-details__content': true,\n 'ds-details__content--secondary': color === 'secondary',\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default DetailsContent;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAezB,MAAM,iBAAiB,aAAAA,QAAM,WAGlC,SAASC,gBAAe,EAAE,OAAO,WAAW,UAAU,GAAG,MAAM,GAAG,KAAK;AACvE,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,uBAAuB;AAAA,QACvB,kCAAkC,UAAU;AAAA,MAC9C,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,yBAAQ;",
6
6
  "names": ["React", "DetailsContent", "Base", "clsx"]
7
7
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/Grid/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\ntype GridValues = 'auto' | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;\ntype SpacingValues = 1 | 2 | 3 | 4 | 5 | 6 | 8 | 10 | 11 | 12;\ninterface SpacingMediaValues {\n xs?: SpacingValues;\n sm?: SpacingValues;\n md?: SpacingValues;\n lg?: SpacingValues;\n xl?: SpacingValues;\n}\nexport interface GridProps extends BaseProps<'div' | 'aside' | 'main'> {\n /**\n * If true, the component will have the flex container behavior. You should be wrapping items with a container.\n * @value true\n * @value false\n * @default false\n */\n container?: boolean;\n /**\n * @value true\n * @value false\n * @default true\n */\n item?: boolean;\n /**\n * @value true\n * @value false\n */\n inline?: boolean;\n /**\n * Defines the space between the type item components. It can only be used on a type container component.\n * @value 1\n * @value 2\n * @value 4\n * @value 6\n * @value 8\n * @value 10\n * @value 12\n * @value object\n * @default undefined\n */\n spacing?: SpacingValues | SpacingMediaValues;\n\n /**\n * If a number, it sets the number of columns the grid item uses.\n * It can't be greater than the total number of columns of the container (12).\n * If 'auto', the grid item's width matches its content.\n * If it's not set, the prop is ignored.\n * The value is applied for all the screen sizes with the lowest priority.\n */\n xs?: GridValues;\n /**\n * If a number, it sets the number of columns the grid item uses.\n * It can't be greater than the total number of columns of the container (12).\n * If 'auto', the grid item's width matches its content.\n * If it's not set, the prop is ignored.\n * The value is applied for the sm breakpoint and wider screens if not overridden.\n */\n sm?: GridValues;\n /**\n * If a number, it sets the number of columns the grid item uses.\n * It can't be greater than the total number of columns of the container (12).\n * If 'auto', the grid item's width matches its content.\n * If it's not set, the prop is ignored.\n * The value is applied for the md breakpoint and wider screens if not overridden.\n */\n md?: GridValues;\n /**\n * If a number, it sets the number of columns the grid item uses.\n * It can't be greater than the total number of columns of the container (12).\n * If 'auto', the grid item's width matches its content.\n * If it's not set, the prop is ignored.\n * The value is applied for the lg breakpoint and wider screens if not overridden.\n */\n lg?: GridValues;\n /**\n * If a number, it sets the number of columns the grid item uses.\n * It can't be greater than the total number of columns of the container (12).\n * If 'auto', the grid item's width matches its content.\n * If it's not set, the prop is ignored.\n * The value is applied for the xl breakpoint and wider screens.\n */\n xl?: GridValues;\n}\n/**\n * Grid is used to arrange other components in complex grid configurations of rows and columns.\n */\nexport const Grid = React.forwardRef<HTMLElement, GridProps>(function Grid(\n {\n className,\n children,\n container = false,\n item = true,\n spacing,\n inline,\n xs,\n sm,\n md,\n lg,\n xl,\n as,\n ...props\n },\n ref\n) {\n return (\n <Base\n as={as || 'div'}\n ref={ref}\n className={clsx(className, {\n 'ds-grid': container,\n 'ds-grid-item': item,\n 'ds-grid-inline': container && inline,\n [`ds-gap-${spacing}`]: container && typeof spacing === 'number',\n [`ds-gap-xs-${(spacing as SpacingMediaValues)?.xs}`]:\n container && (spacing as SpacingMediaValues)?.xs !== undefined,\n [`ds-gap-sm-${(spacing as SpacingMediaValues)?.sm}`]:\n container && (spacing as SpacingMediaValues)?.sm !== undefined,\n [`ds-gap-md-${(spacing as SpacingMediaValues)?.md}`]:\n container && (spacing as SpacingMediaValues)?.md !== undefined,\n [`ds-gap-lg-${(spacing as SpacingMediaValues)?.lg}`]:\n container && (spacing as SpacingMediaValues)?.lg !== undefined,\n [`ds-gap-xl-${(spacing as SpacingMediaValues)?.xl}`]:\n container && (spacing as SpacingMediaValues)?.xl !== undefined,\n [`xs:ds-grid__col-span-${xs}`]: item && xs !== undefined,\n [`sm:ds-grid__col-span-${sm}`]: item && sm !== undefined,\n [`md:ds-grid__col-span-${md}`]: item && md !== undefined,\n [`lg:ds-grid__col-span-${lg}`]: item && lg !== undefined,\n [`xl:ds-grid__col-span-${xl}`]: item && xl !== undefined,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default Grid;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAwFzB,MAAM,OAAO,aAAAA,QAAM,WAAmC,SAASC,MACpE;AAAA,EACE;AAAA,EACA;AAAA,EACA,YAAY;AAAA,EACZ,OAAO;AAAA,EACP;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA,GAAG;AACL,GACA,KACA;AACA,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAI,MAAM;AAAA,MACV;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,WAAW;AAAA,QACX,gBAAgB;AAAA,QAChB,kBAAkB,aAAa;AAAA,QAC/B,CAAC,UAAU,OAAO,EAAE,GAAG,aAAa,OAAO,YAAY;AAAA,QACvD,CAAC,aAAc,SAAgC,EAAE,EAAE,GACjD,aAAc,SAAgC,OAAO;AAAA,QACvD,CAAC,aAAc,SAAgC,EAAE,EAAE,GACjD,aAAc,SAAgC,OAAO;AAAA,QACvD,CAAC,aAAc,SAAgC,EAAE,EAAE,GACjD,aAAc,SAAgC,OAAO;AAAA,QACvD,CAAC,aAAc,SAAgC,EAAE,EAAE,GACjD,aAAc,SAAgC,OAAO;AAAA,QACvD,CAAC,aAAc,SAAgC,EAAE,EAAE,GACjD,aAAc,SAAgC,OAAO;AAAA,QACvD,CAAC,wBAAwB,EAAE,EAAE,GAAG,QAAQ,OAAO;AAAA,QAC/C,CAAC,wBAAwB,EAAE,EAAE,GAAG,QAAQ,OAAO;AAAA,QAC/C,CAAC,wBAAwB,EAAE,EAAE,GAAG,QAAQ,OAAO;AAAA,QAC/C,CAAC,wBAAwB,EAAE,EAAE,GAAG,QAAQ,OAAO;AAAA,QAC/C,CAAC,wBAAwB,EAAE,EAAE,GAAG,QAAQ,OAAO;AAAA,MACjD,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,eAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\ntype GridValues = 'auto' | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;\ntype SpacingValues = 1 | 2 | 3 | 4 | 5 | 6 | 8 | 10 | 11 | 12;\ninterface SpacingMediaValues {\n xs?: SpacingValues;\n sm?: SpacingValues;\n md?: SpacingValues;\n lg?: SpacingValues;\n xl?: SpacingValues;\n}\nexport interface GridProps extends BaseProps<'div' | 'aside' | 'main'> {\n /**\n * If true, the component will have the flex container behavior. You should be wrapping items with a container.\n * @value true\n * @value false\n * @default false\n */\n container?: boolean;\n /**\n * @value true\n * @value false\n * @default true\n */\n item?: boolean;\n /**\n * @value true\n * @value false\n */\n inline?: boolean;\n /**\n * Defines the space between the type item components. It can only be used on a type container component.\n * @value 1 - 12\n * @value object\n * @default undefined\n */\n spacing?: SpacingValues | SpacingMediaValues;\n\n /**\n * If a number, it sets the number of columns the grid item uses.\n * It can't be greater than the total number of columns of the container (12).\n * If 'auto', the grid item's width matches its content.\n * If it's not set, the prop is ignored.\n * The value is applied for all the screen sizes with the lowest priority.\n */\n xs?: GridValues;\n /**\n * If a number, it sets the number of columns the grid item uses.\n * It can't be greater than the total number of columns of the container (12).\n * If 'auto', the grid item's width matches its content.\n * If it's not set, the prop is ignored.\n * The value is applied for the sm breakpoint and wider screens if not overridden.\n */\n sm?: GridValues;\n /**\n * If a number, it sets the number of columns the grid item uses.\n * It can't be greater than the total number of columns of the container (12).\n * If 'auto', the grid item's width matches its content.\n * If it's not set, the prop is ignored.\n * The value is applied for the md breakpoint and wider screens if not overridden.\n */\n md?: GridValues;\n /**\n * If a number, it sets the number of columns the grid item uses.\n * It can't be greater than the total number of columns of the container (12).\n * If 'auto', the grid item's width matches its content.\n * If it's not set, the prop is ignored.\n * The value is applied for the lg breakpoint and wider screens if not overridden.\n */\n lg?: GridValues;\n /**\n * If a number, it sets the number of columns the grid item uses.\n * It can't be greater than the total number of columns of the container (12).\n * If 'auto', the grid item's width matches its content.\n * If it's not set, the prop is ignored.\n * The value is applied for the xl breakpoint and wider screens.\n */\n xl?: GridValues;\n}\n/**\n * Grid is used to arrange other components in complex grid configurations of rows and columns.\n */\nexport const Grid = React.forwardRef<HTMLElement, GridProps>(function Grid(\n {\n className,\n children,\n container = false,\n item = true,\n spacing,\n inline,\n xs,\n sm,\n md,\n lg,\n xl,\n as,\n ...props\n },\n ref\n) {\n return (\n <Base\n as={as || 'div'}\n ref={ref}\n className={clsx(className, {\n 'ds-grid': container,\n 'ds-grid-item': item,\n 'ds-grid-inline': container && inline,\n [`ds-gap-${spacing}`]: container && typeof spacing === 'number',\n [`ds-gap-xs-${(spacing as SpacingMediaValues)?.xs}`]:\n container && (spacing as SpacingMediaValues)?.xs !== undefined,\n [`ds-gap-sm-${(spacing as SpacingMediaValues)?.sm}`]:\n container && (spacing as SpacingMediaValues)?.sm !== undefined,\n [`ds-gap-md-${(spacing as SpacingMediaValues)?.md}`]:\n container && (spacing as SpacingMediaValues)?.md !== undefined,\n [`ds-gap-lg-${(spacing as SpacingMediaValues)?.lg}`]:\n container && (spacing as SpacingMediaValues)?.lg !== undefined,\n [`ds-gap-xl-${(spacing as SpacingMediaValues)?.xl}`]:\n container && (spacing as SpacingMediaValues)?.xl !== undefined,\n [`xs:ds-grid__col-span-${xs}`]: item && xs !== undefined,\n [`sm:ds-grid__col-span-${sm}`]: item && sm !== undefined,\n [`md:ds-grid__col-span-${md}`]: item && md !== undefined,\n [`lg:ds-grid__col-span-${lg}`]: item && lg !== undefined,\n [`xl:ds-grid__col-span-${xl}`]: item && xl !== undefined,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default Grid;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAkFzB,MAAM,OAAO,aAAAA,QAAM,WAAmC,SAASC,MACpE;AAAA,EACE;AAAA,EACA;AAAA,EACA,YAAY;AAAA,EACZ,OAAO;AAAA,EACP;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA,GAAG;AACL,GACA,KACA;AACA,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAI,MAAM;AAAA,MACV;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,WAAW;AAAA,QACX,gBAAgB;AAAA,QAChB,kBAAkB,aAAa;AAAA,QAC/B,CAAC,UAAU,OAAO,EAAE,GAAG,aAAa,OAAO,YAAY;AAAA,QACvD,CAAC,aAAc,SAAgC,EAAE,EAAE,GACjD,aAAc,SAAgC,OAAO;AAAA,QACvD,CAAC,aAAc,SAAgC,EAAE,EAAE,GACjD,aAAc,SAAgC,OAAO;AAAA,QACvD,CAAC,aAAc,SAAgC,EAAE,EAAE,GACjD,aAAc,SAAgC,OAAO;AAAA,QACvD,CAAC,aAAc,SAAgC,EAAE,EAAE,GACjD,aAAc,SAAgC,OAAO;AAAA,QACvD,CAAC,aAAc,SAAgC,EAAE,EAAE,GACjD,aAAc,SAAgC,OAAO;AAAA,QACvD,CAAC,wBAAwB,EAAE,EAAE,GAAG,QAAQ,OAAO;AAAA,QAC/C,CAAC,wBAAwB,EAAE,EAAE,GAAG,QAAQ,OAAO;AAAA,QAC/C,CAAC,wBAAwB,EAAE,EAAE,GAAG,QAAQ,OAAO;AAAA,QAC/C,CAAC,wBAAwB,EAAE,EAAE,GAAG,QAAQ,OAAO;AAAA,QAC/C,CAAC,wBAAwB,EAAE,EAAE,GAAG,QAAQ,OAAO;AAAA,MACjD,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,eAAQ;",
6
6
  "names": ["React", "Grid", "Base", "clsx"]
7
7
  }
@@ -35,7 +35,14 @@ var import_react = __toESM(require("react"));
35
35
  var import_clsx = __toESM(require("clsx"));
36
36
  var import_Base = __toESM(require("@digigov/react-core/Base"));
37
37
  const SummaryList = import_react.default.forwardRef(
38
- function SummaryList2({ className, noLastBorder = false, border = true, children, ...props }, ref) {
38
+ function SummaryList2({
39
+ border = true,
40
+ noLastBorder = false,
41
+ error = false,
42
+ className,
43
+ children,
44
+ ...props
45
+ }, ref) {
39
46
  return /* @__PURE__ */ import_react.default.createElement(
40
47
  import_Base.default,
41
48
  {
@@ -44,7 +51,8 @@ const SummaryList = import_react.default.forwardRef(
44
51
  className: (0, import_clsx.default)(className, {
45
52
  "ds-summary-list": true,
46
53
  "ds-summary-list--no-border": !border,
47
- "ds-summary-list--no-last-border": noLastBorder
54
+ "ds-summary-list--no-last-border": noLastBorder,
55
+ "ds-summary-list--error": error === true
48
56
  }),
49
57
  ...props
50
58
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/SummaryList/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface SummaryListProps extends BaseProps<'dl'> {\n /**\n * border is optional.\n * By default, SummaryList has borders. You can remove borders by using border prop.\n * By default is true\n * @value true\n * @value false\n * @default true\n */\n border?: boolean;\n /**\n * noLastBorder is optional.\n * By default, SummaryList has borders. You can remove last border by using noLastBorder prop.\n * By default is true\n * @value true\n * @value false\n * @default false\n */\n noLastBorder?: boolean;\n}\n/**\n * SummaryList used as a table with summary information.\n * It must contain a list of SummaryListItem components.\n */\nexport const SummaryList = React.forwardRef<HTMLDListElement, SummaryListProps>(\n function SummaryList(\n { className, noLastBorder = false, border = true, children, ...props },\n ref\n ) {\n return (\n <Base\n as=\"dl\"\n ref={ref}\n className={clsx(className, {\n 'ds-summary-list': true,\n 'ds-summary-list--no-border': !border,\n 'ds-summary-list--no-last-border': noLastBorder,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default SummaryList;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AA0BzB,MAAM,cAAc,aAAAA,QAAM;AAAA,EAC/B,SAASC,aACP,EAAE,WAAW,eAAe,OAAO,SAAS,MAAM,UAAU,GAAG,MAAM,GACrE,KACA;AACA,WACE,6BAAAD,QAAA;AAAA,MAAC,YAAAE;AAAA,MAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA,eAAW,YAAAC,SAAK,WAAW;AAAA,UACzB,mBAAmB;AAAA,UACnB,8BAA8B,CAAC;AAAA,UAC/B,mCAAmC;AAAA,QACrC,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,sBAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface SummaryListProps extends BaseProps<'dl'> {\n /**\n * border is optional.\n * By default, SummaryList has borders. You can remove borders by using border prop.\n * By default is true.\n * @value true\n * @value false\n * @default true\n */\n border?: boolean;\n /**\n * noLastBorder is optional.\n * By default, SummaryList has borders. You can remove last border by using noLastBorder prop.\n * By default is false.\n * @value true\n * @value false\n * @default false\n */\n noLastBorder?: boolean;\n\n /**\n * error is optional.\n * If true, the SummaryList will be styled to indicate an error state.\n * @value true\n * @value false\n * @default false\n */\n error?: boolean;\n}\n/**\n * SummaryList used as a table with summary information.\n * It must contain a list of SummaryListItem components.\n */\nexport const SummaryList = React.forwardRef<HTMLDListElement, SummaryListProps>(\n function SummaryList(\n {\n border = true,\n noLastBorder = false,\n error = false,\n className,\n children,\n ...props\n },\n ref\n ) {\n return (\n <Base\n as=\"dl\"\n ref={ref}\n className={clsx(className, {\n 'ds-summary-list': true,\n 'ds-summary-list--no-border': !border,\n 'ds-summary-list--no-last-border': noLastBorder,\n 'ds-summary-list--error': error === true,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default SummaryList;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAmCzB,MAAM,cAAc,aAAAA,QAAM;AAAA,EAC/B,SAASC,aACP;AAAA,IACE,SAAS;AAAA,IACT,eAAe;AAAA,IACf,QAAQ;AAAA,IACR;AAAA,IACA;AAAA,IACA,GAAG;AAAA,EACL,GACA,KACA;AACA,WACE,6BAAAD,QAAA;AAAA,MAAC,YAAAE;AAAA,MAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA,eAAW,YAAAC,SAAK,WAAW;AAAA,UACzB,mBAAmB;AAAA,UACnB,8BAA8B,CAAC;AAAA,UAC/B,mCAAmC;AAAA,UACnC,0BAA0B,UAAU;AAAA,QACtC,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,sBAAQ;",
6
6
  "names": ["React", "SummaryList", "Base", "clsx"]
7
7
  }
@@ -34,7 +34,7 @@ module.exports = __toCommonJS(SummaryListItem_exports);
34
34
  var import_react = __toESM(require("react"));
35
35
  var import_clsx = __toESM(require("clsx"));
36
36
  var import_Base = __toESM(require("@digigov/react-core/Base"));
37
- const SummaryListItem = import_react.default.forwardRef(function SummaryListItem2({ className, children, border = true, ...props }, ref) {
37
+ const SummaryListItem = import_react.default.forwardRef(function SummaryListItem2({ border = true, className, children, ...props }, ref) {
38
38
  return /* @__PURE__ */ import_react.default.createElement(
39
39
  import_Base.default,
40
40
  {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/SummaryListItem/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface SummaryListItemProps extends BaseProps<'div'> {\n /**\n * border is optional.\n * By default, SummaryListItem has borders. You can remove borders by using border prop.\n * By default is true\n ** @value true\n * @value false\n * @default true\n */\n border?: boolean;\n}\n/**\n * SummaryListItem must be inside SummaryList component. Each SummaryListItem is a row in the SummaryList table.\n * This component must contain SummaryListItemKey, SummaryListItemValue and SummaryListItemAction, in that order.\n */\nexport const SummaryListItem = React.forwardRef<\n HTMLDivElement,\n SummaryListItemProps\n>(function SummaryListItem(\n { className, children, border = true, ...props },\n ref\n) {\n return (\n <Base\n as=\"div\"\n ref={ref}\n className={clsx(className, {\n 'ds-summary-list__row': true,\n 'ds-summary-list__row--no-border': !border,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default SummaryListItem;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAiBzB,MAAM,kBAAkB,aAAAA,QAAM,WAGnC,SAASC,iBACT,EAAE,WAAW,UAAU,SAAS,MAAM,GAAG,MAAM,GAC/C,KACA;AACA,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,wBAAwB;AAAA,QACxB,mCAAmC,CAAC;AAAA,MACtC,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,0BAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface SummaryListItemProps extends BaseProps<'div'> {\n /**\n * border is optional.\n * By default, SummaryListItem has borders. You can remove borders by using border prop.\n * By default is true\n ** @value true\n * @value false\n * @default true\n */\n border?: boolean;\n}\n/**\n * SummaryListItem must be inside SummaryList component. Each SummaryListItem is a row in the SummaryList table.\n * This component must contain SummaryListItemKey, SummaryListItemValue and SummaryListItemAction, in that order.\n */\nexport const SummaryListItem = React.forwardRef<\n HTMLDivElement,\n SummaryListItemProps\n>(function SummaryListItem(\n { border = true, className, children, ...props },\n ref\n) {\n return (\n <Base\n as=\"div\"\n ref={ref}\n className={clsx(className, {\n 'ds-summary-list__row': true,\n 'ds-summary-list__row--no-border': !border,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default SummaryListItem;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAiBzB,MAAM,kBAAkB,aAAAA,QAAM,WAGnC,SAASC,iBACT,EAAE,SAAS,MAAM,WAAW,UAAU,GAAG,MAAM,GAC/C,KACA;AACA,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,wBAAwB;AAAA,QACxB,mCAAmC,CAAC;AAAA,MACtC,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,0BAAQ;",
6
6
  "names": ["React", "SummaryListItem", "Base", "clsx"]
7
7
  }
@@ -34,7 +34,17 @@ module.exports = __toCommonJS(SummaryListItemKey_exports);
34
34
  var import_react = __toESM(require("react"));
35
35
  var import_clsx = __toESM(require("clsx"));
36
36
  var import_Base = __toESM(require("@digigov/react-core/Base"));
37
- const SummaryListItemKey = import_react.default.forwardRef(function SummaryListItemKey2({ sm = 3, md, lg, className, children, ...props }, ref) {
37
+ var import_VisuallyHidden = __toESM(require("@digigov/react-core/VisuallyHidden"));
38
+ const SummaryListItemKey = import_react.default.forwardRef(function SummaryListItemKey2({
39
+ sm = 3,
40
+ md,
41
+ lg,
42
+ error,
43
+ errorAssistiveText = "\u039B\u03B1\u03BD\u03B8\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF",
44
+ className,
45
+ children,
46
+ ...props
47
+ }, ref) {
38
48
  return /* @__PURE__ */ import_react.default.createElement(
39
49
  import_Base.default,
40
50
  {
@@ -44,10 +54,12 @@ const SummaryListItemKey = import_react.default.forwardRef(function SummaryListI
44
54
  "ds-summary-list__key": true,
45
55
  [`ds-summary-list__key--sm-${sm}`]: sm !== void 0,
46
56
  [`ds-summary-list__key--md-${md}`]: md !== void 0,
47
- [`ds-summary-list__key--lg-${lg}`]: lg !== void 0
57
+ [`ds-summary-list__key--lg-${lg}`]: lg !== void 0,
58
+ "ds-summary-list__key--error": error === true
48
59
  }),
49
60
  ...props
50
61
  },
62
+ error === true && /* @__PURE__ */ import_react.default.createElement(import_VisuallyHidden.default, null, errorAssistiveText),
51
63
  children
52
64
  );
53
65
  });
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/SummaryListItemKey/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface SummaryListItemKeyProps extends BaseProps<'dt'> {\n /**\n * sm shows the width of the key column for small screens.\n * @default 3\n */\n sm?: WidthValues;\n /**\n * md shows the width of the key column for medium screens.\n */\n md?: WidthValues;\n /**\n * lg shows the width of the key column for large screens.\n */\n lg?: WidthValues;\n}\n\nexport type WidthValues = 3 | 4 | 5 | 6 | 7 | 8 | 9;\n/**\n * SummaryListItemKey is used within the SummaryListItem component.\n * In this column we place the key information for the row (ex. \"Name\", \"Address\", etc).\n */\nexport const SummaryListItemKey = React.forwardRef<\n HTMLElement,\n SummaryListItemKeyProps\n>(function SummaryListItemKey(\n { sm = 3, md, lg, className, children, ...props },\n ref\n) {\n return (\n <Base\n as=\"dt\"\n ref={ref}\n className={clsx(className, {\n 'ds-summary-list__key': true,\n [`ds-summary-list__key--sm-${sm}`]: sm !== undefined,\n [`ds-summary-list__key--md-${md}`]: md !== undefined,\n [`ds-summary-list__key--lg-${lg}`]: lg !== undefined,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default SummaryListItemKey;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAuBzB,MAAM,qBAAqB,aAAAA,QAAM,WAGtC,SAASC,oBACT,EAAE,KAAK,GAAG,IAAI,IAAI,WAAW,UAAU,GAAG,MAAM,GAChD,KACA;AACA,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,wBAAwB;AAAA,QACxB,CAAC,4BAA4B,EAAE,EAAE,GAAG,OAAO;AAAA,QAC3C,CAAC,4BAA4B,EAAE,EAAE,GAAG,OAAO;AAAA,QAC3C,CAAC,4BAA4B,EAAE,EAAE,GAAG,OAAO;AAAA,MAC7C,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,6BAAQ;",
6
- "names": ["React", "SummaryListItemKey", "Base", "clsx"]
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\nimport VisuallyHidden from '@digigov/react-core/VisuallyHidden';\n\nexport interface SummaryListItemKeyProps extends BaseProps<'dt'> {\n /**\n * sm shows the width of the key column for small screens.\n * @default 3\n */\n sm?: WidthValues;\n /**\n * md shows the width of the key column for medium screens.\n */\n md?: WidthValues;\n /**\n * lg shows the width of the key column for large screens.\n */\n lg?: WidthValues;\n\n /**\n * error is optional.\n * Use error prop to highlight the SummaryListItemKey when there is an error in the corresponding field.\n * @value true\n * @value false\n * @default false\n */\n\n error?: boolean;\n /**\n * errorAssistiveText is optional.\n * Default value is \"\u039B\u03B1\u03BD\u03B8\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF\".\n * errorAssistiveText is used to provide a textual warning for assistive technologies like screen readers.\n */\n errorAssistiveText?: string;\n}\n\nexport type WidthValues = 3 | 4 | 5 | 6 | 7 | 8 | 9;\n/**\n * SummaryListItemKey is used within the SummaryListItem component.\n * In this column we place the key information for the row (ex. \"Name\", \"Address\", etc).\n */\nexport const SummaryListItemKey = React.forwardRef<\n HTMLElement,\n SummaryListItemKeyProps\n>(function SummaryListItemKey(\n {\n sm = 3,\n md,\n lg,\n error,\n errorAssistiveText = '\u039B\u03B1\u03BD\u03B8\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF',\n className,\n children,\n ...props\n },\n ref\n) {\n return (\n <Base\n as=\"dt\"\n ref={ref}\n className={clsx(className, {\n 'ds-summary-list__key': true,\n [`ds-summary-list__key--sm-${sm}`]: sm !== undefined,\n [`ds-summary-list__key--md-${md}`]: md !== undefined,\n [`ds-summary-list__key--lg-${lg}`]: lg !== undefined,\n 'ds-summary-list__key--error': error === true,\n })}\n {...props}\n >\n {error === true && <VisuallyHidden>{errorAssistiveText}</VisuallyHidden>}\n {children}\n </Base>\n );\n});\n\nexport default SummaryListItemKey;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAChC,4BAA2B;AAuCpB,MAAM,qBAAqB,aAAAA,QAAM,WAGtC,SAASC,oBACT;AAAA,EACE,KAAK;AAAA,EACL;AAAA,EACA;AAAA,EACA;AAAA,EACA,qBAAqB;AAAA,EACrB;AAAA,EACA;AAAA,EACA,GAAG;AACL,GACA,KACA;AACA,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,wBAAwB;AAAA,QACxB,CAAC,4BAA4B,EAAE,EAAE,GAAG,OAAO;AAAA,QAC3C,CAAC,4BAA4B,EAAE,EAAE,GAAG,OAAO;AAAA,QAC3C,CAAC,4BAA4B,EAAE,EAAE,GAAG,OAAO;AAAA,QAC3C,+BAA+B,UAAU;AAAA,MAC3C,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH,UAAU,QAAQ,6BAAAH,QAAA,cAAC,sBAAAI,SAAA,MAAgB,kBAAmB;AAAA,IACtD;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,6BAAQ;",
6
+ "names": ["React", "SummaryListItemKey", "Base", "clsx", "VisuallyHidden"]
7
7
  }
@@ -34,17 +34,26 @@ module.exports = __toCommonJS(SummaryListItemValue_exports);
34
34
  var import_react = __toESM(require("react"));
35
35
  var import_clsx = __toESM(require("clsx"));
36
36
  var import_Base = __toESM(require("@digigov/react-core/Base"));
37
- const SummaryListItemValue = import_react.default.forwardRef(function SummaryListItemValue2({ className, children, ...props }, ref) {
37
+ var import_VisuallyHidden = __toESM(require("@digigov/react-core/VisuallyHidden"));
38
+ const SummaryListItemValue = import_react.default.forwardRef(function SummaryListItemValue2({
39
+ error,
40
+ errorAssistiveText = "\u039B\u03B1\u03BD\u03B8\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF",
41
+ className,
42
+ children,
43
+ ...props
44
+ }, ref) {
38
45
  return /* @__PURE__ */ import_react.default.createElement(
39
46
  import_Base.default,
40
47
  {
41
48
  as: "dd",
42
49
  ref,
43
50
  className: (0, import_clsx.default)(className, {
44
- "ds-summary-list__value": true
51
+ "ds-summary-list__value": true,
52
+ "ds-summary-list__value--error": error === true
45
53
  }),
46
54
  ...props
47
55
  },
56
+ error === true && /* @__PURE__ */ import_react.default.createElement(import_VisuallyHidden.default, null, errorAssistiveText),
48
57
  children
49
58
  );
50
59
  });
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/SummaryListItemValue/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface SummaryListItemValueProps extends BaseProps<'dd'> {}\n/**\n * Details for the SummaryListItemValue.\n */\nexport const SummaryListItemValue = React.forwardRef<\n HTMLElement,\n SummaryListItemValueProps\n>(function SummaryListItemValue({ className, children, ...props }, ref) {\n return (\n <Base\n as=\"dd\"\n ref={ref}\n className={clsx(className, {\n 'ds-summary-list__value': true,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default SummaryListItemValue;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAMzB,MAAM,uBAAuB,aAAAA,QAAM,WAGxC,SAASC,sBAAqB,EAAE,WAAW,UAAU,GAAG,MAAM,GAAG,KAAK;AACtE,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,0BAA0B;AAAA,MAC5B,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,+BAAQ;",
6
- "names": ["React", "SummaryListItemValue", "Base", "clsx"]
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\nimport VisuallyHidden from '@digigov/react-core/VisuallyHidden';\n\nexport interface SummaryListItemValueProps extends BaseProps<'dd'> {\n /**\n * error is optional.\n * Use error prop to highlight the SummaryListItemKey when there is an error in the corresponding field.\n * @value true\n * @value false\n * @default false\n */\n\n error?: boolean;\n /**\n * errorAssistiveText is optional.\n * Default value is \"\u039B\u03B1\u03BD\u03B8\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF\".\n * errorAssistiveText is used to provide a textual warning for assistive technologies like screen readers.\n */\n errorAssistiveText?: string;\n}\n/**\n * Details for the SummaryListItemValue.\n */\nexport const SummaryListItemValue = React.forwardRef<\n HTMLElement,\n SummaryListItemValueProps\n>(function SummaryListItemValue(\n {\n error,\n errorAssistiveText = '\u039B\u03B1\u03BD\u03B8\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF',\n className,\n children,\n ...props\n },\n ref\n) {\n return (\n <Base\n as=\"dd\"\n ref={ref}\n className={clsx(className, {\n 'ds-summary-list__value': true,\n 'ds-summary-list__value--error': error === true,\n })}\n {...props}\n >\n {error === true && <VisuallyHidden>{errorAssistiveText}</VisuallyHidden>}\n {children}\n </Base>\n );\n});\n\nexport default SummaryListItemValue;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAChC,4BAA2B;AAsBpB,MAAM,uBAAuB,aAAAA,QAAM,WAGxC,SAASC,sBACT;AAAA,EACE;AAAA,EACA,qBAAqB;AAAA,EACrB;AAAA,EACA;AAAA,EACA,GAAG;AACL,GACA,KACA;AACA,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,0BAA0B;AAAA,QAC1B,iCAAiC,UAAU;AAAA,MAC7C,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH,UAAU,QAAQ,6BAAAH,QAAA,cAAC,sBAAAI,SAAA,MAAgB,kBAAmB;AAAA,IACtD;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,+BAAQ;",
6
+ "names": ["React", "SummaryListItemValue", "Base", "clsx", "VisuallyHidden"]
7
7
  }
@@ -34,14 +34,18 @@ module.exports = __toCommonJS(TableDataCell_exports);
34
34
  var import_react = __toESM(require("react"));
35
35
  var import_clsx = __toESM(require("clsx"));
36
36
  var import_Base = __toESM(require("@digigov/react-core/Base"));
37
+ var import_VisuallyHidden = __toESM(require("@digigov/react-core/VisuallyHidden"));
37
38
  const TableDataCell = import_react.default.forwardRef(function TableDataCell2({
38
39
  dataType = "text",
39
40
  variant = "border",
40
41
  wordBreak = "none",
42
+ highlight,
43
+ highlightAssistiveText,
41
44
  className,
42
45
  children,
43
46
  ...props
44
47
  }, ref) {
48
+ const calculatedHighlightAssistiveText = highlightAssistiveText || (highlight === "warning" ? "\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE" : highlight === "error" ? "\u039B\u03B1\u03BD\u03B8\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF" : void 0);
45
49
  return /* @__PURE__ */ import_react.default.createElement(
46
50
  import_Base.default,
47
51
  {
@@ -51,10 +55,13 @@ const TableDataCell = import_react.default.forwardRef(function TableDataCell2({
51
55
  "ds-table__cell": true,
52
56
  "ds-table__cell--border": variant === "border",
53
57
  "ds-table__cell--break-all": wordBreak === "break-all",
54
- "ds-table__cell--numeric": dataType === "numeric"
58
+ "ds-table__cell--numeric": dataType === "numeric",
59
+ "ds-table__cell--warning": highlight === "warning",
60
+ "ds-table__cell--error": highlight === "error"
55
61
  }),
56
62
  ...props
57
63
  },
64
+ calculatedHighlightAssistiveText && /* @__PURE__ */ import_react.default.createElement(import_VisuallyHidden.default, null, calculatedHighlightAssistiveText),
58
65
  children
59
66
  );
60
67
  });
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/TableDataCell/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n// import PhaseBannerTag from '@digigov/react-core/PhaseBannerTag';\n\nexport interface TableDataCellProps extends BaseProps<'td'> {\n /**\n * dataType is optional.\n * Use numeric value when comparing columns of numbers, align the numbers to the right in table cells\n * Default value is text which aligns texts to the center\n * @value 'text'\n * @value 'numeric'\n * @default 'text'\n */\n dataType?: 'text' | 'numeric';\n /**\n * variant is optional.\n * Use this prop to control the bottom border of the table-cell.\n * @value 'border'\n * @value 'none'\n * @default 'border'\n */\n variant?: 'border' | 'none';\n /**\n * wordBreak is optional.\n * Use this prop to control the word break of the table-cell contents.\n */\n wordBreak?: 'break-all' | 'none';\n}\n/**\n * Use TableDataCell inside the Table component to fill the data of a cell in a table.\n */\nexport const TableDataCell = React.forwardRef<\n HTMLTableCellElement,\n TableDataCellProps\n>(function TableDataCell(\n {\n dataType = 'text',\n variant = 'border',\n wordBreak = 'none',\n className,\n children,\n ...props\n },\n ref\n) {\n return (\n <Base\n as=\"td\"\n ref={ref}\n className={clsx(className, {\n 'ds-table__cell': true,\n 'ds-table__cell--border': variant === 'border',\n 'ds-table__cell--break-all': wordBreak === 'break-all',\n 'ds-table__cell--numeric': dataType === 'numeric',\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default TableDataCell;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AA8BzB,MAAM,gBAAgB,aAAAA,QAAM,WAGjC,SAASC,eACT;AAAA,EACE,WAAW;AAAA,EACX,UAAU;AAAA,EACV,YAAY;AAAA,EACZ;AAAA,EACA;AAAA,EACA,GAAG;AACL,GACA,KACA;AACA,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,kBAAkB;AAAA,QAClB,0BAA0B,YAAY;AAAA,QACtC,6BAA6B,cAAc;AAAA,QAC3C,2BAA2B,aAAa;AAAA,MAC1C,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,wBAAQ;",
6
- "names": ["React", "TableDataCell", "Base", "clsx"]
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\nimport VisuallyHidden from '@digigov/react-core/VisuallyHidden';\n// import PhaseBannerTag from '@digigov/react-core/PhaseBannerTag';\n\nexport interface TableDataCellProps extends BaseProps<'td'> {\n /**\n * dataType is optional.\n * Use numeric value when comparing columns of numbers, align the numbers to the right in table cells\n * Default value is text which aligns texts to the center\n * @value 'text'\n * @value 'numeric'\n * @default 'text'\n */\n dataType?: 'text' | 'numeric';\n /**\n * variant is optional.\n * Use this prop to control the bottom border of the table-cell.\n * @value 'border'\n * @value 'none'\n * @default 'border'\n */\n variant?: 'border' | 'none';\n /**\n * wordBreak is optional.\n * Use this prop to control the word break of the table-cell contents.\n */\n wordBreak?: 'break-all' | 'none';\n\n /**\n * highlight is optional.\n * Add the highlight prop to add a highlight line on the left of the row.\n * @value 'warning' warning highlight line\n * @value 'error' error highlight line\n * @default undefined\n */\n highlight?: 'warning' | 'error';\n\n /*\n * highlightAssistiveText is optional.\n * Use this prop to add assistive text for screen readers when the highlight prop is used.\n * This text will be visually hidden.\n * @default undefined\n */\n highlightAssistiveText?: string;\n}\n/**\n * Use TableDataCell inside the Table component to fill the data of a cell in a table.\n */\nexport const TableDataCell = React.forwardRef<\n HTMLTableCellElement,\n TableDataCellProps\n>(function TableDataCell(\n {\n dataType = 'text',\n variant = 'border',\n wordBreak = 'none',\n highlight,\n highlightAssistiveText,\n className,\n children,\n ...props\n },\n ref\n) {\n const calculatedHighlightAssistiveText =\n highlightAssistiveText ||\n (highlight === 'warning'\n ? '\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE'\n : highlight === 'error'\n ? '\u039B\u03B1\u03BD\u03B8\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF'\n : undefined);\n\n return (\n <Base\n as=\"td\"\n ref={ref}\n className={clsx(className, {\n 'ds-table__cell': true,\n 'ds-table__cell--border': variant === 'border',\n 'ds-table__cell--break-all': wordBreak === 'break-all',\n 'ds-table__cell--numeric': dataType === 'numeric',\n 'ds-table__cell--warning': highlight === 'warning',\n 'ds-table__cell--error': highlight === 'error',\n })}\n {...props}\n >\n {calculatedHighlightAssistiveText && (\n <VisuallyHidden>{calculatedHighlightAssistiveText}</VisuallyHidden>\n )}\n {children}\n </Base>\n );\n});\n\nexport default TableDataCell;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAChC,4BAA2B;AA+CpB,MAAM,gBAAgB,aAAAA,QAAM,WAGjC,SAASC,eACT;AAAA,EACE,WAAW;AAAA,EACX,UAAU;AAAA,EACV,YAAY;AAAA,EACZ;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA,GAAG;AACL,GACA,KACA;AACA,QAAM,mCACJ,2BACC,cAAc,YACX,+CACA,cAAc,UACZ,gGACA;AAER,SACE,6BAAAD,QAAA;AAAA,IAAC,YAAAE;AAAA,IAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,eAAW,YAAAC,SAAK,WAAW;AAAA,QACzB,kBAAkB;AAAA,QAClB,0BAA0B,YAAY;AAAA,QACtC,6BAA6B,cAAc;AAAA,QAC3C,2BAA2B,aAAa;AAAA,QACxC,2BAA2B,cAAc;AAAA,QACzC,yBAAyB,cAAc;AAAA,MACzC,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH,oCACC,6BAAAH,QAAA,cAAC,sBAAAI,SAAA,MAAgB,gCAAiC;AAAA,IAEnD;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,wBAAQ;",
6
+ "names": ["React", "TableDataCell", "Base", "clsx", "VisuallyHidden"]
7
7
  }
package/cjs/index.js CHANGED
@@ -206,7 +206,7 @@ __reExport(src_exports, require("@digigov/react-core/PaginationList"), module.ex
206
206
  __reExport(src_exports, require("@digigov/react-core/PaginationListItem"), module.exports);
207
207
  __reExport(src_exports, require("@digigov/react-core/PaginationLabelContainer"), module.exports);
208
208
  __reExport(src_exports, require("@digigov/react-core/LoaderContainer"), module.exports);
209
- __reExport(src_exports, require("@digigov/react-core/CircularProgress"), module.exports);
209
+ __reExport(src_exports, require("@digigov/react-core/CircularProgressBase"), module.exports);
210
210
  __reExport(src_exports, require("@digigov/react-core/FullPageBackground"), module.exports);
211
211
  __reExport(src_exports, require("@digigov/react-core/StepNavCircleNumber"), module.exports);
212
212
  __reExport(src_exports, require("@digigov/react-core/StepNav"), module.exports);
@@ -426,7 +426,7 @@ __reExport(src_exports, require("@digigov/react-core/WarningTextAssistive"), mod
426
426
  ...require("@digigov/react-core/PaginationListItem"),
427
427
  ...require("@digigov/react-core/PaginationLabelContainer"),
428
428
  ...require("@digigov/react-core/LoaderContainer"),
429
- ...require("@digigov/react-core/CircularProgress"),
429
+ ...require("@digigov/react-core/CircularProgressBase"),
430
430
  ...require("@digigov/react-core/FullPageBackground"),
431
431
  ...require("@digigov/react-core/StepNavCircleNumber"),
432
432
  ...require("@digigov/react-core/StepNav"),
package/cjs/index.js.map CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts"],
4
- "sourcesContent": ["export * from '@digigov/react-core/Accordion';\nexport * from '@digigov/react-core/AccordionControls';\nexport * from '@digigov/react-core/AccordionSection';\nexport * from '@digigov/react-core/AccordionSectionContent';\nexport * from '@digigov/react-core/AccordionSectionSummary';\nexport * from '@digigov/react-core/AccordionSectionSummaryHeading';\nexport * from '@digigov/react-core/Aside';\nexport * from '@digigov/react-core/BackLinkBase';\nexport * from '@digigov/react-core/Blockquote';\nexport * from '@digigov/react-core/Bottom';\nexport * from '@digigov/react-core/Breadcrumbs';\nexport * from '@digigov/react-core/BreadcrumbsList';\nexport * from '@digigov/react-core/BreadcrumbsListItemWrapper';\nexport * from '@digigov/react-core/Button';\nexport * from '@digigov/react-core/ButtonGroup';\nexport * from '@digigov/react-core/ButtonLinkBase';\nexport * from '@digigov/react-core/CallToActionBase';\nexport * from '@digigov/react-core/Card';\nexport * from '@digigov/react-core/CardAction';\nexport * from '@digigov/react-core/CardHeading';\nexport * from '@digigov/react-core/CardContent';\nexport * from '@digigov/react-core/Checkbox';\nexport * from '@digigov/react-core/CheckboxConditional';\nexport * from '@digigov/react-core/CheckboxItem';\nexport * from '@digigov/react-core/CheckboxItemInput';\nexport * from '@digigov/react-core/ChoiceDividerText';\nexport * from '@digigov/react-core/Code';\nexport * from '@digigov/react-core/CodeBlockContainer';\nexport * from '@digigov/react-core/CodeBlockHeader';\nexport * from '@digigov/react-core/CodeBlockContent';\nexport * from '@digigov/react-core/Panel';\nexport * from '@digigov/react-core/PanelBody';\nexport * from '@digigov/react-core/PanelBody';\nexport * from '@digigov/react-core/Container';\nexport * from '@digigov/react-core/CopyrightContainer';\nexport * from '@digigov/react-core/DateInputContainer';\nexport * from '@digigov/react-core/DateInputItem';\nexport * from '@digigov/react-core/Details';\nexport * from '@digigov/react-core/DetailsContent';\nexport * from '@digigov/react-core/DetailsSummary';\nexport * from '@digigov/react-core/ErrorMessage';\nexport * from '@digigov/react-core/ErrorSummary';\nexport * from '@digigov/react-core/Fieldset';\nexport * from '@digigov/react-core/FieldsetLegend';\nexport * from '@digigov/react-core/FileUpload';\nexport * from '@digigov/react-core/Footer';\nexport * from '@digigov/react-core/FooterContainer';\nexport * from '@digigov/react-core/FooterContent';\nexport * from '@digigov/react-core/FooterContentLogos';\nexport * from '@digigov/react-core/FooterHeading';\nexport * from '@digigov/react-core/FooterImage';\nexport * from '@digigov/react-core/FooterLinkBase';\nexport * from '@digigov/react-core/FooterList';\nexport * from '@digigov/react-core/FooterListItem';\nexport * from '@digigov/react-core/FooterInfo';\nexport * from '@digigov/react-core/FooterInfoSection';\nexport * from '@digigov/react-core/FooterNavigation';\nexport * from '@digigov/react-core/FooterNavigationSection';\nexport * from '@digigov/react-core/FieldContainer';\nexport * from '@digigov/react-core/GovGRLogoBase';\nexport * from '@digigov/react-core/Grid';\nexport * from '@digigov/react-core/Header';\nexport * from '@digigov/react-core/HeaderContent';\nexport * from '@digigov/react-core/HeaderLogoBase';\nexport * from '@digigov/react-core/HeaderSecondaryLogoBase';\nexport * from '@digigov/react-core/HeaderSection';\nexport * from '@digigov/react-core/HeaderTitleBase';\nexport * from '@digigov/react-core/Heading';\nexport * from '@digigov/react-core/HeadingCaption';\nexport * from '@digigov/react-core/HellenicRepublicLogo';\nexport * from '@digigov/react-core/Hidden';\nexport * from '@digigov/react-core/Hint';\nexport * from '@digigov/react-core/LabelContainer';\nexport * from '@digigov/react-core/LabelTitle';\nexport * from '@digigov/react-core/Layout';\nexport * from '@digigov/react-core/LinkBase';\nexport * from '@digigov/react-core/List';\nexport * from '@digigov/react-core/ListItem';\nexport * from '@digigov/react-core/Main';\nexport * from '@digigov/react-core/Masthead';\nexport * from '@digigov/react-core/MastheadBody';\nexport * from '@digigov/react-core/Nav';\nexport * from '@digigov/react-core/NavList';\nexport * from '@digigov/react-core/NavListItemActionBase';\nexport * from '@digigov/react-core/NavListItemBadge';\nexport * from '@digigov/react-core/NavListItemActionContainer';\nexport * from '@digigov/react-core/NavListItemLinkBase';\nexport * from '@digigov/react-core/NavListItemButton';\nexport * from '@digigov/react-core/NavMenuContainer';\nexport * from '@digigov/react-core/NavMenuContent';\nexport * from '@digigov/react-core/NavMenuContentListBase';\nexport * from '@digigov/react-core/NavMenuContentListItem';\nexport * from '@digigov/react-core/NavMenuTitle';\nexport * from '@digigov/react-core/NormalText';\nexport * from '@digigov/react-core/NotificationBannerContainer';\nexport * from '@digigov/react-core/NotificationBannerContent';\nexport * from '@digigov/react-core/NotificationBannerHeader';\nexport * from '@digigov/react-core/NotificationBannerHeading';\nexport * from '@digigov/react-core/NotificationBannerLink';\nexport * from '@digigov/react-core/Section';\nexport * from '@digigov/react-core/PageTitleContainer';\nexport * from '@digigov/react-core/PageTitleCaption';\nexport * from '@digigov/react-core/PageTitleHeading';\nexport * from '@digigov/react-core/Paragraph';\nexport * from '@digigov/react-core/PhaseBannerHeaderContainer';\nexport * from '@digigov/react-core/PhaseBanner';\nexport * from '@digigov/react-core/PhaseBannerTag';\nexport * from '@digigov/react-core/PhaseBannerText';\nexport * from '@digigov/react-core/RadioContainer';\nexport * from '@digigov/react-core/RadioItem';\nexport * from '@digigov/react-core/RadioConditional';\nexport * from '@digigov/react-core/SectionBreak';\nexport * from '@digigov/react-core/SelectContainer';\nexport * from '@digigov/react-core/SelectOption';\nexport * from '@digigov/react-core/SingleCharacterInputs';\nexport * from '@digigov/react-core/SingleCharacterInput';\nexport * from '@digigov/react-core/SkipLink';\nexport * from '@digigov/react-core/Stack';\nexport * from '@digigov/react-core/SummaryList';\nexport * from '@digigov/react-core/SummaryListItem';\nexport * from '@digigov/react-core/SummaryListItemAction';\nexport * from '@digigov/react-core/SummaryListItemKey';\nexport * from '@digigov/react-core/SummaryListItemValue';\nexport * from '@digigov/react-core/ImageLogo';\nexport * from '@digigov/react-core/ImageLogoSet';\nexport * from '@digigov/react-core/Table';\nexport * from '@digigov/react-core/TableBody';\nexport * from '@digigov/react-core/TableCaption';\nexport * from '@digigov/react-core/TableContainer';\nexport * from '@digigov/react-core/TableDataCell';\nexport * from '@digigov/react-core/TableNoDataRow';\nexport * from '@digigov/react-core/TableHead';\nexport * from '@digigov/react-core/TableHeadCell';\nexport * from '@digigov/react-core/TableRow';\nexport * from '@digigov/react-core/TableSortIconContainer';\nexport * from '@digigov/react-core/Tabs';\nexport * from '@digigov/react-core/TabsHeading';\nexport * from '@digigov/react-core/TabsList';\nexport * from '@digigov/react-core/TabsListItemBase';\nexport * from '@digigov/react-core/TabsPanelBase';\nexport * from '@digigov/react-core/TextArea';\nexport * from '@digigov/react-core/TextInput';\nexport * from '@digigov/react-core/Typography';\nexport * from '@digigov/react-core/Top';\nexport * from '@digigov/react-core/Base';\nexport * from '@digigov/react-core/VisuallyHidden';\nexport * from '@digigov/react-core/WarningText';\nexport * from '@digigov/react-core/AdminAside';\nexport * from '@digigov/react-core/AdminContainer';\nexport * from '@digigov/react-core/AdminLayout';\nexport * from '@digigov/react-core/AdminMain';\nexport * from '@digigov/react-core/AdminTopSection';\nexport * from '@digigov/react-core/AutoCompleteInputBase';\nexport * from '@digigov/react-core/AutoCompleteResultList';\nexport * from '@digigov/react-core/AutoCompleteResultListItem';\nexport * from '@digigov/react-core/AutoCompleteContainer';\nexport * from '@digigov/react-core/AutoCompleteMultipleInputContainer';\nexport * from '@digigov/react-core/AutoCompleteMultipleInput';\nexport * from '@digigov/react-core/Chip';\nexport * from '@digigov/react-core/ChipHeading';\nexport * from '@digigov/react-core/ChipContainer';\nexport * from '@digigov/react-core/ChipKeyValue';\nexport * from '@digigov/react-core/CopyToClipboardMessage';\nexport * from '@digigov/react-core/CopyToClipboardContainer';\nexport * from '@digigov/react-core/DropdownBase';\nexport * from '@digigov/react-core/DropdownButton';\nexport * from '@digigov/react-core/DropdownContent';\nexport * from '@digigov/react-core/FillableText';\nexport * from '@digigov/react-core/Drawer';\nexport * from '@digigov/react-core/DrawerHeading';\nexport * from '@digigov/react-core/FilterContent';\nexport * from '@digigov/react-core/FilterHeadingContainer';\nexport * from '@digigov/react-core/FilterOptionsSection';\nexport * from '@digigov/react-core/FilterContainer';\nexport * from '@digigov/react-core/FilterSelectedHeading';\nexport * from '@digigov/react-core/FilterSelectedSection';\nexport * from '@digigov/react-core/SearchButton';\nexport * from '@digigov/react-core/SearchContainer';\nexport * from '@digigov/react-core/ResultsHeading';\nexport * from '@digigov/react-core/ResultsHeadingActions';\nexport * from '@digigov/react-core/ResultsActionBar';\nexport * from '@digigov/react-core/AdminHeader';\nexport * from '@digigov/react-core/AdminHeaderContent';\nexport * from '@digigov/react-core/ModalContainer';\nexport * from '@digigov/react-core/ModalHeading';\nexport * from '@digigov/react-core/ModalContent';\nexport * from '@digigov/react-core/ModalAction';\nexport * from '@digigov/react-core/Pagination';\nexport * from '@digigov/react-core/PaginationList';\nexport * from '@digigov/react-core/PaginationListItem';\nexport * from '@digigov/react-core/PaginationLabelContainer';\nexport * from '@digigov/react-core/LoaderContainer';\nexport * from '@digigov/react-core/CircularProgress';\nexport * from '@digigov/react-core/FullPageBackground';\nexport * from '@digigov/react-core/StepNavCircleNumber';\nexport * from '@digigov/react-core/StepNav';\nexport * from '@digigov/react-core/StepNavAccordion';\nexport * from '@digigov/react-core/StepNavAccordionContent';\nexport * from '@digigov/react-core/StepNavAccordionSummary';\nexport * from '@digigov/react-core/StepNavAccordionSummaryHeading';\nexport * from '@digigov/react-core/StepNavAccordionHeadingTitle';\nexport * from '@digigov/react-core/StepNavAccordionHeadingText';\nexport * from '@digigov/react-core/StepNavControls';\nexport * from '@digigov/react-core/StepNavList';\nexport * from '@digigov/react-core/StepNavListItem';\nexport * from '@digigov/react-core/TableLoaderBackground';\nexport * from '@digigov/react-core/LabeledText';\nexport * from '@digigov/react-core/Timeline';\nexport * from '@digigov/react-core/TimelineActions';\nexport * from '@digigov/react-core/TimelineContent';\nexport * from '@digigov/react-core/TimelineHeading';\nexport * from '@digigov/react-core/TimelineItem';\nexport * from '@digigov/react-core/TaskList';\nexport * from '@digigov/react-core/TaskListItem';\nexport * from '@digigov/react-core/TaskListItemContent';\nexport * from '@digigov/react-core/TaskListItemHeading';\nexport * from '@digigov/react-core/TaskListItemTag';\nexport * from '@digigov/react-core/WarningTextAssistive';\n"],
5
- "mappings": "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",
4
+ "sourcesContent": ["export * from '@digigov/react-core/Accordion';\nexport * from '@digigov/react-core/AccordionControls';\nexport * from '@digigov/react-core/AccordionSection';\nexport * from '@digigov/react-core/AccordionSectionContent';\nexport * from '@digigov/react-core/AccordionSectionSummary';\nexport * from '@digigov/react-core/AccordionSectionSummaryHeading';\nexport * from '@digigov/react-core/Aside';\nexport * from '@digigov/react-core/BackLinkBase';\nexport * from '@digigov/react-core/Blockquote';\nexport * from '@digigov/react-core/Bottom';\nexport * from '@digigov/react-core/Breadcrumbs';\nexport * from '@digigov/react-core/BreadcrumbsList';\nexport * from '@digigov/react-core/BreadcrumbsListItemWrapper';\nexport * from '@digigov/react-core/Button';\nexport * from '@digigov/react-core/ButtonGroup';\nexport * from '@digigov/react-core/ButtonLinkBase';\nexport * from '@digigov/react-core/CallToActionBase';\nexport * from '@digigov/react-core/Card';\nexport * from '@digigov/react-core/CardAction';\nexport * from '@digigov/react-core/CardHeading';\nexport * from '@digigov/react-core/CardContent';\nexport * from '@digigov/react-core/Checkbox';\nexport * from '@digigov/react-core/CheckboxConditional';\nexport * from '@digigov/react-core/CheckboxItem';\nexport * from '@digigov/react-core/CheckboxItemInput';\nexport * from '@digigov/react-core/ChoiceDividerText';\nexport * from '@digigov/react-core/Code';\nexport * from '@digigov/react-core/CodeBlockContainer';\nexport * from '@digigov/react-core/CodeBlockHeader';\nexport * from '@digigov/react-core/CodeBlockContent';\nexport * from '@digigov/react-core/Panel';\nexport * from '@digigov/react-core/PanelBody';\nexport * from '@digigov/react-core/PanelBody';\nexport * from '@digigov/react-core/Container';\nexport * from '@digigov/react-core/CopyrightContainer';\nexport * from '@digigov/react-core/DateInputContainer';\nexport * from '@digigov/react-core/DateInputItem';\nexport * from '@digigov/react-core/Details';\nexport * from '@digigov/react-core/DetailsContent';\nexport * from '@digigov/react-core/DetailsSummary';\nexport * from '@digigov/react-core/ErrorMessage';\nexport * from '@digigov/react-core/ErrorSummary';\nexport * from '@digigov/react-core/Fieldset';\nexport * from '@digigov/react-core/FieldsetLegend';\nexport * from '@digigov/react-core/FileUpload';\nexport * from '@digigov/react-core/Footer';\nexport * from '@digigov/react-core/FooterContainer';\nexport * from '@digigov/react-core/FooterContent';\nexport * from '@digigov/react-core/FooterContentLogos';\nexport * from '@digigov/react-core/FooterHeading';\nexport * from '@digigov/react-core/FooterImage';\nexport * from '@digigov/react-core/FooterLinkBase';\nexport * from '@digigov/react-core/FooterList';\nexport * from '@digigov/react-core/FooterListItem';\nexport * from '@digigov/react-core/FooterInfo';\nexport * from '@digigov/react-core/FooterInfoSection';\nexport * from '@digigov/react-core/FooterNavigation';\nexport * from '@digigov/react-core/FooterNavigationSection';\nexport * from '@digigov/react-core/FieldContainer';\nexport * from '@digigov/react-core/GovGRLogoBase';\nexport * from '@digigov/react-core/Grid';\nexport * from '@digigov/react-core/Header';\nexport * from '@digigov/react-core/HeaderContent';\nexport * from '@digigov/react-core/HeaderLogoBase';\nexport * from '@digigov/react-core/HeaderSecondaryLogoBase';\nexport * from '@digigov/react-core/HeaderSection';\nexport * from '@digigov/react-core/HeaderTitleBase';\nexport * from '@digigov/react-core/Heading';\nexport * from '@digigov/react-core/HeadingCaption';\nexport * from '@digigov/react-core/HellenicRepublicLogo';\nexport * from '@digigov/react-core/Hidden';\nexport * from '@digigov/react-core/Hint';\nexport * from '@digigov/react-core/LabelContainer';\nexport * from '@digigov/react-core/LabelTitle';\nexport * from '@digigov/react-core/Layout';\nexport * from '@digigov/react-core/LinkBase';\nexport * from '@digigov/react-core/List';\nexport * from '@digigov/react-core/ListItem';\nexport * from '@digigov/react-core/Main';\nexport * from '@digigov/react-core/Masthead';\nexport * from '@digigov/react-core/MastheadBody';\nexport * from '@digigov/react-core/Nav';\nexport * from '@digigov/react-core/NavList';\nexport * from '@digigov/react-core/NavListItemActionBase';\nexport * from '@digigov/react-core/NavListItemBadge';\nexport * from '@digigov/react-core/NavListItemActionContainer';\nexport * from '@digigov/react-core/NavListItemLinkBase';\nexport * from '@digigov/react-core/NavListItemButton';\nexport * from '@digigov/react-core/NavMenuContainer';\nexport * from '@digigov/react-core/NavMenuContent';\nexport * from '@digigov/react-core/NavMenuContentListBase';\nexport * from '@digigov/react-core/NavMenuContentListItem';\nexport * from '@digigov/react-core/NavMenuTitle';\nexport * from '@digigov/react-core/NormalText';\nexport * from '@digigov/react-core/NotificationBannerContainer';\nexport * from '@digigov/react-core/NotificationBannerContent';\nexport * from '@digigov/react-core/NotificationBannerHeader';\nexport * from '@digigov/react-core/NotificationBannerHeading';\nexport * from '@digigov/react-core/NotificationBannerLink';\nexport * from '@digigov/react-core/Section';\nexport * from '@digigov/react-core/PageTitleContainer';\nexport * from '@digigov/react-core/PageTitleCaption';\nexport * from '@digigov/react-core/PageTitleHeading';\nexport * from '@digigov/react-core/Paragraph';\nexport * from '@digigov/react-core/PhaseBannerHeaderContainer';\nexport * from '@digigov/react-core/PhaseBanner';\nexport * from '@digigov/react-core/PhaseBannerTag';\nexport * from '@digigov/react-core/PhaseBannerText';\nexport * from '@digigov/react-core/RadioContainer';\nexport * from '@digigov/react-core/RadioItem';\nexport * from '@digigov/react-core/RadioConditional';\nexport * from '@digigov/react-core/SectionBreak';\nexport * from '@digigov/react-core/SelectContainer';\nexport * from '@digigov/react-core/SelectOption';\nexport * from '@digigov/react-core/SingleCharacterInputs';\nexport * from '@digigov/react-core/SingleCharacterInput';\nexport * from '@digigov/react-core/SkipLink';\nexport * from '@digigov/react-core/Stack';\nexport * from '@digigov/react-core/SummaryList';\nexport * from '@digigov/react-core/SummaryListItem';\nexport * from '@digigov/react-core/SummaryListItemAction';\nexport * from '@digigov/react-core/SummaryListItemKey';\nexport * from '@digigov/react-core/SummaryListItemValue';\nexport * from '@digigov/react-core/ImageLogo';\nexport * from '@digigov/react-core/ImageLogoSet';\nexport * from '@digigov/react-core/Table';\nexport * from '@digigov/react-core/TableBody';\nexport * from '@digigov/react-core/TableCaption';\nexport * from '@digigov/react-core/TableContainer';\nexport * from '@digigov/react-core/TableDataCell';\nexport * from '@digigov/react-core/TableNoDataRow';\nexport * from '@digigov/react-core/TableHead';\nexport * from '@digigov/react-core/TableHeadCell';\nexport * from '@digigov/react-core/TableRow';\nexport * from '@digigov/react-core/TableSortIconContainer';\nexport * from '@digigov/react-core/Tabs';\nexport * from '@digigov/react-core/TabsHeading';\nexport * from '@digigov/react-core/TabsList';\nexport * from '@digigov/react-core/TabsListItemBase';\nexport * from '@digigov/react-core/TabsPanelBase';\nexport * from '@digigov/react-core/TextArea';\nexport * from '@digigov/react-core/TextInput';\nexport * from '@digigov/react-core/Typography';\nexport * from '@digigov/react-core/Top';\nexport * from '@digigov/react-core/Base';\nexport * from '@digigov/react-core/VisuallyHidden';\nexport * from '@digigov/react-core/WarningText';\nexport * from '@digigov/react-core/AdminAside';\nexport * from '@digigov/react-core/AdminContainer';\nexport * from '@digigov/react-core/AdminLayout';\nexport * from '@digigov/react-core/AdminMain';\nexport * from '@digigov/react-core/AdminTopSection';\nexport * from '@digigov/react-core/AutoCompleteInputBase';\nexport * from '@digigov/react-core/AutoCompleteResultList';\nexport * from '@digigov/react-core/AutoCompleteResultListItem';\nexport * from '@digigov/react-core/AutoCompleteContainer';\nexport * from '@digigov/react-core/AutoCompleteMultipleInputContainer';\nexport * from '@digigov/react-core/AutoCompleteMultipleInput';\nexport * from '@digigov/react-core/Chip';\nexport * from '@digigov/react-core/ChipHeading';\nexport * from '@digigov/react-core/ChipContainer';\nexport * from '@digigov/react-core/ChipKeyValue';\nexport * from '@digigov/react-core/CopyToClipboardMessage';\nexport * from '@digigov/react-core/CopyToClipboardContainer';\nexport * from '@digigov/react-core/DropdownBase';\nexport * from '@digigov/react-core/DropdownButton';\nexport * from '@digigov/react-core/DropdownContent';\nexport * from '@digigov/react-core/FillableText';\nexport * from '@digigov/react-core/Drawer';\nexport * from '@digigov/react-core/DrawerHeading';\nexport * from '@digigov/react-core/FilterContent';\nexport * from '@digigov/react-core/FilterHeadingContainer';\nexport * from '@digigov/react-core/FilterOptionsSection';\nexport * from '@digigov/react-core/FilterContainer';\nexport * from '@digigov/react-core/FilterSelectedHeading';\nexport * from '@digigov/react-core/FilterSelectedSection';\nexport * from '@digigov/react-core/SearchButton';\nexport * from '@digigov/react-core/SearchContainer';\nexport * from '@digigov/react-core/ResultsHeading';\nexport * from '@digigov/react-core/ResultsHeadingActions';\nexport * from '@digigov/react-core/ResultsActionBar';\nexport * from '@digigov/react-core/AdminHeader';\nexport * from '@digigov/react-core/AdminHeaderContent';\nexport * from '@digigov/react-core/ModalContainer';\nexport * from '@digigov/react-core/ModalHeading';\nexport * from '@digigov/react-core/ModalContent';\nexport * from '@digigov/react-core/ModalAction';\nexport * from '@digigov/react-core/Pagination';\nexport * from '@digigov/react-core/PaginationList';\nexport * from '@digigov/react-core/PaginationListItem';\nexport * from '@digigov/react-core/PaginationLabelContainer';\nexport * from '@digigov/react-core/LoaderContainer';\nexport * from '@digigov/react-core/CircularProgressBase';\nexport * from '@digigov/react-core/FullPageBackground';\nexport * from '@digigov/react-core/StepNavCircleNumber';\nexport * from '@digigov/react-core/StepNav';\nexport * from '@digigov/react-core/StepNavAccordion';\nexport * from '@digigov/react-core/StepNavAccordionContent';\nexport * from '@digigov/react-core/StepNavAccordionSummary';\nexport * from '@digigov/react-core/StepNavAccordionSummaryHeading';\nexport * from '@digigov/react-core/StepNavAccordionHeadingTitle';\nexport * from '@digigov/react-core/StepNavAccordionHeadingText';\nexport * from '@digigov/react-core/StepNavControls';\nexport * from '@digigov/react-core/StepNavList';\nexport * from '@digigov/react-core/StepNavListItem';\nexport * from '@digigov/react-core/TableLoaderBackground';\nexport * from '@digigov/react-core/LabeledText';\nexport * from '@digigov/react-core/Timeline';\nexport * from '@digigov/react-core/TimelineActions';\nexport * from '@digigov/react-core/TimelineContent';\nexport * from '@digigov/react-core/TimelineHeading';\nexport * from '@digigov/react-core/TimelineItem';\nexport * from '@digigov/react-core/TaskList';\nexport * from '@digigov/react-core/TaskListItem';\nexport * from '@digigov/react-core/TaskListItemContent';\nexport * from '@digigov/react-core/TaskListItemHeading';\nexport * from '@digigov/react-core/TaskListItemTag';\nexport * from '@digigov/react-core/WarningTextAssistive';\n"],
5
+ "mappings": "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",
6
6
  "names": []
7
7
  }
package/cjs/lazy/index.js CHANGED
@@ -223,7 +223,7 @@ var lazy_default = {
223
223
  "PaginationListItem": (0, import_react.lazy)(() => import("@digigov/react-core/PaginationListItem").then((module2) => ({ default: module2["PaginationListItem"] }))),
224
224
  "PaginationLabelContainer": (0, import_react.lazy)(() => import("@digigov/react-core/PaginationLabelContainer").then((module2) => ({ default: module2["PaginationLabelContainer"] }))),
225
225
  "LoaderContainer": (0, import_react.lazy)(() => import("@digigov/react-core/LoaderContainer").then((module2) => ({ default: module2["LoaderContainer"] }))),
226
- "CircularProgress": (0, import_react.lazy)(() => import("@digigov/react-core/CircularProgress").then((module2) => ({ default: module2["CircularProgress"] }))),
226
+ "CircularProgressBase": (0, import_react.lazy)(() => import("@digigov/react-core/CircularProgressBase").then((module2) => ({ default: module2["CircularProgressBase"] }))),
227
227
  "FullPageBackground": (0, import_react.lazy)(() => import("@digigov/react-core/FullPageBackground").then((module2) => ({ default: module2["FullPageBackground"] }))),
228
228
  "StepNavCircleNumber": (0, import_react.lazy)(() => import("@digigov/react-core/StepNavCircleNumber").then((module2) => ({ default: module2["StepNavCircleNumber"] }))),
229
229
  "StepNav": (0, import_react.lazy)(() => import("@digigov/react-core/StepNav").then((module2) => ({ default: module2["StepNav"] }))),