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

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 (56) hide show
  1. package/Button/index.js +1 -0
  2. package/Button/index.js.map +2 -2
  3. package/LinkBase/index.js +1 -0
  4. package/LinkBase/index.js.map +2 -2
  5. package/Table/index.d.ts +9 -0
  6. package/Table/index.js +4 -1
  7. package/Table/index.js.map +2 -2
  8. package/TableDataCell/index.d.ts +13 -0
  9. package/TableDataCell/index.js +10 -1
  10. package/TableDataCell/index.js.map +2 -2
  11. package/WarningText/index.d.ts +7 -0
  12. package/WarningText/index.js +10 -2
  13. package/WarningText/index.js.map +2 -2
  14. package/cjs/Button/index.js +1 -0
  15. package/cjs/Button/index.js.map +2 -2
  16. package/cjs/LinkBase/index.js +1 -0
  17. package/cjs/LinkBase/index.js.map +2 -2
  18. package/cjs/Table/index.js +4 -1
  19. package/cjs/Table/index.js.map +2 -2
  20. package/cjs/TableDataCell/index.js +10 -1
  21. package/cjs/TableDataCell/index.js.map +2 -2
  22. package/cjs/WarningText/index.js +10 -2
  23. package/cjs/WarningText/index.js.map +2 -2
  24. package/cjs/index.js +0 -2
  25. package/cjs/index.js.map +2 -2
  26. package/cjs/lazy/index.js +0 -1
  27. package/cjs/lazy.js.map +2 -2
  28. package/cjs/registry/index.js +4 -6
  29. package/cjs/registry.js.map +2 -2
  30. package/index.d.ts +0 -1
  31. package/index.js +1 -2
  32. package/index.js.map +2 -2
  33. package/lazy/index.js +0 -1
  34. package/package.json +3 -3
  35. package/registry/index.js +4 -6
  36. package/src/Button/index.tsx +1 -0
  37. package/src/LinkBase/index.tsx +1 -0
  38. package/src/Table/index.tsx +12 -0
  39. package/src/TableDataCell/__snapshots__/index.test.tsx.snap +2 -2
  40. package/src/TableDataCell/index.tsx +23 -1
  41. package/src/WarningText/__snapshots__/index.test.tsx.snap +26 -0
  42. package/src/WarningText/index.test.tsx +5 -0
  43. package/src/WarningText/index.tsx +17 -2
  44. package/src/index.ts +0 -1
  45. package/src/lazy.js +0 -1
  46. package/src/registry.js +4 -6
  47. package/AutoCompleteInputTypeahead/index.d.ts +0 -11
  48. package/AutoCompleteInputTypeahead/index.js +0 -25
  49. package/AutoCompleteInputTypeahead/index.js.map +0 -7
  50. package/AutoCompleteInputTypeahead/index.test.d.ts +0 -1
  51. package/AutoCompleteInputTypeahead/package.json +0 -6
  52. package/cjs/AutoCompleteInputTypeahead/index.js +0 -58
  53. package/cjs/AutoCompleteInputTypeahead/index.js.map +0 -7
  54. package/src/AutoCompleteInputTypeahead/__snapshots__/index.test.tsx.snap +0 -16
  55. package/src/AutoCompleteInputTypeahead/index.test.tsx +0 -8
  56. package/src/AutoCompleteInputTypeahead/index.tsx +0 -32
package/Button/index.js CHANGED
@@ -22,6 +22,7 @@ const Button = React.forwardRef(
22
22
  className: clsx(className, {
23
23
  "ds-link": variant === "link",
24
24
  "ds-link-warning": variant === "link" && color === "warning",
25
+ "ds-link--disabled": variant === "link" && disabled,
25
26
  "ds-btn": variant === "button",
26
27
  "ds-btn--dense": dense,
27
28
  "ds-btn-primary": variant === "button" && color === "primary",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/Button/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface ButtonProps extends BaseProps<'button'> {\n /**\n * color is optional.\n * 'primary' color is used for the main call to action on a page.\n * 'secondary' color is used for secondary calls to action on a page.\n * 'warning' color is used to make users think carefully before they use them.\n * The default value is 'primary'.\n * @value 'primary'\n * @value 'secondary'\n * @value 'warning'\n * @default 'primary'\n */\n color?: 'primary' | 'secondary' | 'warning';\n /**\n * variant is optional.\n * @value 'link'\n * @value 'button'\n * @default 'button'\n */\n variant?: 'link' | 'button';\n /**\n * dense is optional.\n * @value true Button will be dense.\n * @value false\n * @default false\n */\n dense?: boolean;\n}\n/**\n * Use the Button component to help users carry out an action.\n */\nexport const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(\n function Button(\n {\n color = 'primary',\n variant = 'button',\n dense,\n disabled,\n printHidden = true,\n className,\n children,\n ...props\n },\n ref\n ) {\n return (\n <Base\n as=\"button\"\n disabled={disabled}\n printHidden={printHidden}\n ref={ref}\n className={clsx(className, {\n 'ds-link': variant === 'link',\n 'ds-link-warning': variant === 'link' && color === 'warning',\n 'ds-btn': variant === 'button',\n 'ds-btn--dense': dense,\n 'ds-btn-primary': variant === 'button' && color === 'primary',\n 'ds-btn-secondary': variant === 'button' && color === 'secondary',\n 'ds-btn-warning': variant === 'button' && color === 'warning',\n 'ds-btn--disabled': variant === 'button' && disabled,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default Button;\n"],
5
- "mappings": "AAAA,OAAO,WAAW;AAClB,OAAO,UAAU;AACjB,OAAO,UAAyB;AAiCzB,MAAM,SAAS,MAAM;AAAA,EAC1B,SAASA,QACP;AAAA,IACE,QAAQ;AAAA,IACR,UAAU;AAAA,IACV;AAAA,IACA;AAAA,IACA,cAAc;AAAA,IACd;AAAA,IACA;AAAA,IACA,GAAG;AAAA,EACL,GACA,KACA;AACA,WACE;AAAA,MAAC;AAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA;AAAA,QACA;AAAA,QACA,WAAW,KAAK,WAAW;AAAA,UACzB,WAAW,YAAY;AAAA,UACvB,mBAAmB,YAAY,UAAU,UAAU;AAAA,UACnD,UAAU,YAAY;AAAA,UACtB,iBAAiB;AAAA,UACjB,kBAAkB,YAAY,YAAY,UAAU;AAAA,UACpD,oBAAoB,YAAY,YAAY,UAAU;AAAA,UACtD,kBAAkB,YAAY,YAAY,UAAU;AAAA,UACpD,oBAAoB,YAAY,YAAY;AAAA,QAC9C,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,iBAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface ButtonProps extends BaseProps<'button'> {\n /**\n * color is optional.\n * 'primary' color is used for the main call to action on a page.\n * 'secondary' color is used for secondary calls to action on a page.\n * 'warning' color is used to make users think carefully before they use them.\n * The default value is 'primary'.\n * @value 'primary'\n * @value 'secondary'\n * @value 'warning'\n * @default 'primary'\n */\n color?: 'primary' | 'secondary' | 'warning';\n /**\n * variant is optional.\n * @value 'link'\n * @value 'button'\n * @default 'button'\n */\n variant?: 'link' | 'button';\n /**\n * dense is optional.\n * @value true Button will be dense.\n * @value false\n * @default false\n */\n dense?: boolean;\n}\n/**\n * Use the Button component to help users carry out an action.\n */\nexport const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(\n function Button(\n {\n color = 'primary',\n variant = 'button',\n dense,\n disabled,\n printHidden = true,\n className,\n children,\n ...props\n },\n ref\n ) {\n return (\n <Base\n as=\"button\"\n disabled={disabled}\n printHidden={printHidden}\n ref={ref}\n className={clsx(className, {\n 'ds-link': variant === 'link',\n 'ds-link-warning': variant === 'link' && color === 'warning',\n 'ds-link--disabled': variant === 'link' && disabled,\n 'ds-btn': variant === 'button',\n 'ds-btn--dense': dense,\n 'ds-btn-primary': variant === 'button' && color === 'primary',\n 'ds-btn-secondary': variant === 'button' && color === 'secondary',\n 'ds-btn-warning': variant === 'button' && color === 'warning',\n 'ds-btn--disabled': variant === 'button' && disabled,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default Button;\n"],
5
+ "mappings": "AAAA,OAAO,WAAW;AAClB,OAAO,UAAU;AACjB,OAAO,UAAyB;AAiCzB,MAAM,SAAS,MAAM;AAAA,EAC1B,SAASA,QACP;AAAA,IACE,QAAQ;AAAA,IACR,UAAU;AAAA,IACV;AAAA,IACA;AAAA,IACA,cAAc;AAAA,IACd;AAAA,IACA;AAAA,IACA,GAAG;AAAA,EACL,GACA,KACA;AACA,WACE;AAAA,MAAC;AAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA;AAAA,QACA;AAAA,QACA,WAAW,KAAK,WAAW;AAAA,UACzB,WAAW,YAAY;AAAA,UACvB,mBAAmB,YAAY,UAAU,UAAU;AAAA,UACnD,qBAAqB,YAAY,UAAU;AAAA,UAC3C,UAAU,YAAY;AAAA,UACtB,iBAAiB;AAAA,UACjB,kBAAkB,YAAY,YAAY,UAAU;AAAA,UACpD,oBAAoB,YAAY,YAAY,UAAU;AAAA,UACtD,kBAAkB,YAAY,YAAY,UAAU;AAAA,UACpD,oBAAoB,YAAY,YAAY;AAAA,QAC9C,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,iBAAQ;",
6
6
  "names": ["Button"]
7
7
  }
package/LinkBase/index.js CHANGED
@@ -12,6 +12,7 @@ const LinkBase = React.forwardRef(
12
12
  "ds-link": defaultStyle,
13
13
  "ds-link--no-underline": !underline
14
14
  }),
15
+ ...props.as && { defaultStyle, underline },
15
16
  ...props
16
17
  },
17
18
  children
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/LinkBase/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface LinkBaseProps extends BaseProps<'a'> {\n /**\n * underline is optional. The default value is 'true'.\n * Make it 'false' only if the context tells the user that the text is a link, even without the underline.\n * @value true\n * @value false\n */\n underline?: boolean;\n /**\n * defaultStyle is optional. The default value is 'true'.\n * Make it 'false' only if you need to use a link with different style, and the default style clashes over with your\n * custom styles. For example, BreadcrumbsListItem is a link but it has a different styling.\n * @value true\n * @value false\n */\n defaultStyle?: boolean;\n}\n/**\n * This component defines a hyperlink, which is used to link from one page to another.\n */\nexport const LinkBase = React.forwardRef<HTMLAnchorElement, LinkBaseProps>(\n function LinkBase(\n { underline = true, defaultStyle = true, className, children, ...props },\n ref\n ) {\n return (\n <Base\n as=\"a\"\n ref={ref}\n className={clsx(className, {\n 'ds-link': defaultStyle,\n 'ds-link--no-underline': !underline,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default LinkBase;\n"],
5
- "mappings": "AAAA,OAAO,WAAW;AAClB,OAAO,UAAU;AACjB,OAAO,UAAyB;AAsBzB,MAAM,WAAW,MAAM;AAAA,EAC5B,SAASA,UACP,EAAE,YAAY,MAAM,eAAe,MAAM,WAAW,UAAU,GAAG,MAAM,GACvE,KACA;AACA,WACE;AAAA,MAAC;AAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA,WAAW,KAAK,WAAW;AAAA,UACzB,WAAW;AAAA,UACX,yBAAyB,CAAC;AAAA,QAC5B,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,mBAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface LinkBaseProps extends BaseProps<'a'> {\n /**\n * underline is optional. The default value is 'true'.\n * Make it 'false' only if the context tells the user that the text is a link, even without the underline.\n * @value true\n * @value false\n */\n underline?: boolean;\n /**\n * defaultStyle is optional. The default value is 'true'.\n * Make it 'false' only if you need to use a link with different style, and the default style clashes over with your\n * custom styles. For example, BreadcrumbsListItem is a link but it has a different styling.\n * @value true\n * @value false\n */\n defaultStyle?: boolean;\n}\n/**\n * This component defines a hyperlink, which is used to link from one page to another.\n */\nexport const LinkBase = React.forwardRef<HTMLAnchorElement, LinkBaseProps>(\n function LinkBase(\n { underline = true, defaultStyle = true, className, children, ...props },\n ref\n ) {\n return (\n <Base\n as=\"a\"\n ref={ref}\n className={clsx(className, {\n 'ds-link': defaultStyle,\n 'ds-link--no-underline': !underline,\n })}\n {...(props.as && { defaultStyle: defaultStyle, underline: underline })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default LinkBase;\n"],
5
+ "mappings": "AAAA,OAAO,WAAW;AAClB,OAAO,UAAU;AACjB,OAAO,UAAyB;AAsBzB,MAAM,WAAW,MAAM;AAAA,EAC5B,SAASA,UACP,EAAE,YAAY,MAAM,eAAe,MAAM,WAAW,UAAU,GAAG,MAAM,GACvE,KACA;AACA,WACE;AAAA,MAAC;AAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA,WAAW,KAAK,WAAW;AAAA,UACzB,WAAW;AAAA,UACX,yBAAyB,CAAC;AAAA,QAC5B,CAAC;AAAA,QACA,GAAI,MAAM,MAAM,EAAE,cAA4B,UAAqB;AAAA,QACnE,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,mBAAQ;",
6
6
  "names": ["LinkBase"]
7
7
  }
package/Table/index.d.ts CHANGED
@@ -45,6 +45,15 @@ export interface TableProps extends BaseProps<'table'> {
45
45
  * @default 'default'
46
46
  */
47
47
  variant?: 'zebra' | 'default';
48
+ /**
49
+ * verticalAlign is optional.
50
+ * The verticalAlign property sets vertical alignment of the table-cells.
51
+ * @value 'top'
52
+ * @value 'middle'
53
+ * @value 'bottom'
54
+ * @default 'middle'
55
+ */
56
+ verticalAlign?: 'top' | 'middle' | 'bottom';
48
57
  }
49
58
  /**
50
59
  * Table component is used to wrap the sub components of a table
package/Table/index.js CHANGED
@@ -8,6 +8,7 @@ const Table = React.forwardRef(
8
8
  dense = false,
9
9
  verticalBorders = false,
10
10
  stacked = "never",
11
+ verticalAlign = "middle",
11
12
  className,
12
13
  children,
13
14
  ...props
@@ -26,7 +27,9 @@ const Table = React.forwardRef(
26
27
  "ds-table--light": headerVariant === "light",
27
28
  "ds-table--dense": dense,
28
29
  "ds-table--zebra": variant === "zebra",
29
- "ds-table--vertical-lines": verticalBorders
30
+ "ds-table--vertical-lines": verticalBorders,
31
+ "ds-table--align-top": verticalAlign === "top",
32
+ "ds-table--align-bottom": verticalAlign === "bottom"
30
33
  }),
31
34
  ...props
32
35
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/Table/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface TableProps extends BaseProps<'table'> {\n /**\n * headerVariant is optional.\n * The `headerVariant` prop is used to either give blue background color to th tags\n * or a light grey background.\n * Default value is undefined which results to an opaque background color.\n * @value 'dark'\n * @value 'light'\n */\n headerVariant?: 'dark' | 'light';\n /**\n * dense is optional.\n * The dense prop is used to make font size smaller and give\n * extra padding.\n * @value true\n * @value false\n * @default false\n */\n dense?: boolean;\n /**\n * verticalBorders is optional.\n * The verticalBorders prop gives extra vertical lines to the table.\n * @value true\n * @value false\n * @default false\n */\n verticalBorders?: boolean;\n /**\n * stacked is optional.\n * The stacked prop gives responsiveness to the table. If used, make sure to add \"data-label\" to TableDataCell components.\n * Default value is never.\n * @value 'always'\n * @value 'sm'\n * @value 'md'\n * @value 'never'\n * @default 'never'\n */\n stacked?: 'always' | 'sm' | 'md' | 'never';\n /**\n * variant is optional.\n * @value 'default'\n * @value 'zebra' is used to make zebra table lines. If you have 'zebra' variant, color prop to TableRow component adds nothing.\n * @default 'default'\n */\n variant?: 'zebra' | 'default';\n}\n/**\n * Table component is used to wrap the sub components of a table\n */\nexport const Table = React.forwardRef<HTMLTableElement, TableProps>(\n function Table(\n {\n headerVariant,\n variant,\n dense = false,\n verticalBorders = false,\n stacked = 'never',\n className,\n children,\n ...props\n },\n ref\n ) {\n return (\n <Base\n as=\"table\"\n ref={ref}\n className={clsx(className, {\n 'ds-table': true,\n 'ds-table--stacked-always': stacked === 'always',\n 'ds-table--stacked-sm': stacked === 'sm',\n 'ds-table--stacked-md': stacked == 'md',\n 'ds-table--dark': headerVariant === 'dark',\n 'ds-table--light': headerVariant === 'light',\n 'ds-table--dense': dense,\n 'ds-table--zebra': variant === 'zebra',\n 'ds-table--vertical-lines': verticalBorders,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default Table;\n"],
5
- "mappings": "AAAA,OAAO,WAAW;AAClB,OAAO,UAAU;AACjB,OAAO,UAAyB;AAmDzB,MAAM,QAAQ,MAAM;AAAA,EACzB,SAASA,OACP;AAAA,IACE;AAAA,IACA;AAAA,IACA,QAAQ;AAAA,IACR,kBAAkB;AAAA,IAClB,UAAU;AAAA,IACV;AAAA,IACA;AAAA,IACA,GAAG;AAAA,EACL,GACA,KACA;AACA,WACE;AAAA,MAAC;AAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA,WAAW,KAAK,WAAW;AAAA,UACzB,YAAY;AAAA,UACZ,4BAA4B,YAAY;AAAA,UACxC,wBAAwB,YAAY;AAAA,UACpC,wBAAwB,WAAW;AAAA,UACnC,kBAAkB,kBAAkB;AAAA,UACpC,mBAAmB,kBAAkB;AAAA,UACrC,mBAAmB;AAAA,UACnB,mBAAmB,YAAY;AAAA,UAC/B,4BAA4B;AAAA,QAC9B,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,gBAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface TableProps extends BaseProps<'table'> {\n /**\n * headerVariant is optional.\n * The `headerVariant` prop is used to either give blue background color to th tags\n * or a light grey background.\n * Default value is undefined which results to an opaque background color.\n * @value 'dark'\n * @value 'light'\n */\n headerVariant?: 'dark' | 'light';\n /**\n * dense is optional.\n * The dense prop is used to make font size smaller and give\n * extra padding.\n * @value true\n * @value false\n * @default false\n */\n dense?: boolean;\n /**\n * verticalBorders is optional.\n * The verticalBorders prop gives extra vertical lines to the table.\n * @value true\n * @value false\n * @default false\n */\n verticalBorders?: boolean;\n /**\n * stacked is optional.\n * The stacked prop gives responsiveness to the table. If used, make sure to add \"data-label\" to TableDataCell components.\n * Default value is never.\n * @value 'always'\n * @value 'sm'\n * @value 'md'\n * @value 'never'\n * @default 'never'\n */\n stacked?: 'always' | 'sm' | 'md' | 'never';\n /**\n * variant is optional.\n * @value 'default'\n * @value 'zebra' is used to make zebra table lines. If you have 'zebra' variant, color prop to TableRow component adds nothing.\n * @default 'default'\n */\n variant?: 'zebra' | 'default';\n /**\n * verticalAlign is optional.\n * The verticalAlign property sets vertical alignment of the table-cells.\n * @value 'top'\n * @value 'middle'\n * @value 'bottom'\n * @default 'middle'\n */\n verticalAlign?: 'top' | 'middle' | 'bottom';\n}\n/**\n * Table component is used to wrap the sub components of a table\n */\nexport const Table = React.forwardRef<HTMLTableElement, TableProps>(\n function Table(\n {\n headerVariant,\n variant,\n dense = false,\n verticalBorders = false,\n stacked = 'never',\n verticalAlign = 'middle',\n className,\n children,\n ...props\n },\n ref\n ) {\n return (\n <Base\n as=\"table\"\n ref={ref}\n className={clsx(className, {\n 'ds-table': true,\n 'ds-table--stacked-always': stacked === 'always',\n 'ds-table--stacked-sm': stacked === 'sm',\n 'ds-table--stacked-md': stacked == 'md',\n 'ds-table--dark': headerVariant === 'dark',\n 'ds-table--light': headerVariant === 'light',\n 'ds-table--dense': dense,\n 'ds-table--zebra': variant === 'zebra',\n 'ds-table--vertical-lines': verticalBorders,\n 'ds-table--align-top': verticalAlign === 'top',\n 'ds-table--align-bottom': verticalAlign === 'bottom',\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default Table;\n"],
5
+ "mappings": "AAAA,OAAO,WAAW;AAClB,OAAO,UAAU;AACjB,OAAO,UAAyB;AA4DzB,MAAM,QAAQ,MAAM;AAAA,EACzB,SAASA,OACP;AAAA,IACE;AAAA,IACA;AAAA,IACA,QAAQ;AAAA,IACR,kBAAkB;AAAA,IAClB,UAAU;AAAA,IACV,gBAAgB;AAAA,IAChB;AAAA,IACA;AAAA,IACA,GAAG;AAAA,EACL,GACA,KACA;AACA,WACE;AAAA,MAAC;AAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA,WAAW,KAAK,WAAW;AAAA,UACzB,YAAY;AAAA,UACZ,4BAA4B,YAAY;AAAA,UACxC,wBAAwB,YAAY;AAAA,UACpC,wBAAwB,WAAW;AAAA,UACnC,kBAAkB,kBAAkB;AAAA,UACpC,mBAAmB,kBAAkB;AAAA,UACrC,mBAAmB;AAAA,UACnB,mBAAmB,YAAY;AAAA,UAC/B,4BAA4B;AAAA,UAC5B,uBAAuB,kBAAkB;AAAA,UACzC,0BAA0B,kBAAkB;AAAA,QAC9C,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,gBAAQ;",
6
6
  "names": ["Table"]
7
7
  }
@@ -10,6 +10,19 @@ export interface TableDataCellProps extends BaseProps<'td'> {
10
10
  * @default 'text'
11
11
  */
12
12
  dataType?: 'text' | 'numeric';
13
+ /**
14
+ * variant is optional.
15
+ * Use this prop to control the bottom border of the table-cell.
16
+ * @value 'border'
17
+ * @value 'none'
18
+ * @default 'border'
19
+ */
20
+ variant?: 'border' | 'none';
21
+ /**
22
+ * wordBreak is optional.
23
+ * Use this prop to control the word break of the table-cell contents.
24
+ */
25
+ wordBreak?: 'break-all' | 'none';
13
26
  }
14
27
  /**
15
28
  * Use TableDataCell inside the Table component to fill the data of a cell in a table.
@@ -1,7 +1,14 @@
1
1
  import React from "react";
2
2
  import clsx from "clsx";
3
3
  import Base from "@digigov/react-core/Base";
4
- const TableDataCell = React.forwardRef(function TableDataCell2({ dataType = "text", className, children, ...props }, ref) {
4
+ const TableDataCell = React.forwardRef(function TableDataCell2({
5
+ dataType = "text",
6
+ variant = "border",
7
+ wordBreak = "none",
8
+ className,
9
+ children,
10
+ ...props
11
+ }, ref) {
5
12
  return /* @__PURE__ */ React.createElement(
6
13
  Base,
7
14
  {
@@ -9,6 +16,8 @@ const TableDataCell = React.forwardRef(function TableDataCell2({ dataType = "tex
9
16
  ref,
10
17
  className: clsx(className, {
11
18
  "ds-table__cell": true,
19
+ "ds-table__cell--border": variant === "border",
20
+ "ds-table__cell--break-all": wordBreak === "break-all",
12
21
  "ds-table__cell--numeric": dataType === "numeric"
13
22
  }),
14
23
  ...props
@@ -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/**\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 { dataType = 'text', className, children, ...props },\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--numeric': dataType === 'numeric',\n })}\n {...props}\n >\n {children}\n </Base>\n );\n});\n\nexport default TableDataCell;\n"],
5
- "mappings": "AAAA,OAAO,WAAW;AAClB,OAAO,UAAU;AACjB,OAAO,UAAyB;AAiBzB,MAAM,gBAAgB,MAAM,WAGjC,SAASA,eACT,EAAE,WAAW,QAAQ,WAAW,UAAU,GAAG,MAAM,GACnD,KACA;AACA,SACE;AAAA,IAAC;AAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,WAAW,KAAK,WAAW;AAAA,QACzB,kBAAkB;AAAA,QAClB,2BAA2B,aAAa;AAAA,MAC1C,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,wBAAQ;",
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,OAAO,WAAW;AAClB,OAAO,UAAU;AACjB,OAAO,UAAyB;AA8BzB,MAAM,gBAAgB,MAAM,WAGjC,SAASA,eACT;AAAA,EACE,WAAW;AAAA,EACX,UAAU;AAAA,EACV,YAAY;AAAA,EACZ;AAAA,EACA;AAAA,EACA,GAAG;AACL,GACA,KACA;AACA,SACE;AAAA,IAAC;AAAA;AAAA,MACC,IAAG;AAAA,MACH;AAAA,MACA,WAAW,KAAK,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
6
  "names": ["TableDataCell"]
7
7
  }
@@ -14,6 +14,13 @@ export interface WarningTextProps extends BaseProps<'div'> {
14
14
  * @default false
15
15
  * */
16
16
  dense?: boolean;
17
+ /**
18
+ * strong is optional.
19
+ * @value true if you want to emphasize importance, conveying meaning to both sighted and screen readers.
20
+ * @value false WarningText will be a simple div element.
21
+ * @default true
22
+ * */
23
+ strong?: boolean;
17
24
  }
18
25
  /**
19
26
  * WarningText.
@@ -3,7 +3,15 @@ import clsx from "clsx";
3
3
  import Base from "@digigov/react-core/Base";
4
4
  import { WarningTextAssistive } from "@digigov/react-core/WarningTextAssistive";
5
5
  const WarningText = React.forwardRef(
6
- function WarningText2({ className, assistiveText = "\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE", dense, children, ...props }, ref) {
6
+ function WarningText2({
7
+ className,
8
+ strong = true,
9
+ assistiveText = "\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE",
10
+ dense,
11
+ children,
12
+ ...props
13
+ }, ref) {
14
+ const Component = strong ? "strong" : "div";
7
15
  return /* @__PURE__ */ React.createElement(
8
16
  Base,
9
17
  {
@@ -28,7 +36,7 @@ const WarningText = React.forwardRef(
28
36
  /* @__PURE__ */ React.createElement(
29
37
  Base,
30
38
  {
31
- as: "strong",
39
+ as: Component,
32
40
  className: clsx({
33
41
  "ds-warning-text__content": true
34
42
  })
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/WarningText/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\nimport { WarningTextAssistive } from '@digigov/react-core/WarningTextAssistive';\nexport interface WarningTextProps extends BaseProps<'div'> {\n /**\n * assistiveText is optional.\n * Default value is \"\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE\".\n * assistiveText is used to provide a textual warning for assistive technologies like screen readers.\n */\n assistiveText?: string;\n /**\n * dense is optional.\n * @value true WarningText will be dense.\n * @value false\n * @default false\n * */\n dense?: boolean;\n}\n/**\n * WarningText.\n * Use the WarningText component when you need to warn users about something important.\n * The component is used with a text inside it.\n */\nexport const WarningText = React.forwardRef<HTMLDivElement, WarningTextProps>(\n function WarningText(\n { className, assistiveText = '\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE', dense, children, ...props },\n ref\n ) {\n return (\n <Base\n as=\"div\"\n ref={ref}\n className={clsx(className, {\n 'ds-warning-text': true,\n 'ds-warning-text--dense': dense,\n })}\n {...props}\n >\n <Base\n as=\"div\"\n className={clsx({\n 'ds-warning-text__icon': true,\n })}\n >\n !\n </Base>\n\n <Base\n as=\"strong\"\n className={clsx({\n 'ds-warning-text__content': true,\n })}\n >\n <WarningTextAssistive>{assistiveText}</WarningTextAssistive>\n {children}\n </Base>\n </Base>\n );\n }\n);\n\nexport default WarningText;\n"],
5
- "mappings": "AAAA,OAAO,WAAW;AAClB,OAAO,UAAU;AACjB,OAAO,UAAyB;AAChC,SAAS,4BAA4B;AAqB9B,MAAM,cAAc,MAAM;AAAA,EAC/B,SAASA,aACP,EAAE,WAAW,gBAAgB,8CAAW,OAAO,UAAU,GAAG,MAAM,GAClE,KACA;AACA,WACE;AAAA,MAAC;AAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA,WAAW,KAAK,WAAW;AAAA,UACzB,mBAAmB;AAAA,UACnB,0BAA0B;AAAA,QAC5B,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEJ;AAAA,QAAC;AAAA;AAAA,UACC,IAAG;AAAA,UACH,WAAW,KAAK;AAAA,YACd,yBAAyB;AAAA,UAC3B,CAAC;AAAA;AAAA,QACF;AAAA,MAED;AAAA,MAEA;AAAA,QAAC;AAAA;AAAA,UACC,IAAG;AAAA,UACH,WAAW,KAAK;AAAA,YACd,4BAA4B;AAAA,UAC9B,CAAC;AAAA;AAAA,QAED,oCAAC,4BAAsB,aAAc;AAAA,QACpC;AAAA,MACH;AAAA,IACF;AAAA,EAEJ;AACF;AAEA,IAAO,sBAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\nimport { WarningTextAssistive } from '@digigov/react-core/WarningTextAssistive';\nexport interface WarningTextProps extends BaseProps<'div'> {\n /**\n * assistiveText is optional.\n * Default value is \"\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE\".\n * assistiveText is used to provide a textual warning for assistive technologies like screen readers.\n */\n assistiveText?: string;\n /**\n * dense is optional.\n * @value true WarningText will be dense.\n * @value false\n * @default false\n * */\n dense?: boolean;\n /**\n * strong is optional.\n * @value true if you want to emphasize importance, conveying meaning to both sighted and screen readers.\n * @value false WarningText will be a simple div element.\n * @default true\n * */\n strong?: boolean;\n}\n/**\n * WarningText.\n * Use the WarningText component when you need to warn users about something important.\n * The component is used with a text inside it.\n */\nexport const WarningText = React.forwardRef<HTMLDivElement, WarningTextProps>(\n function WarningText(\n {\n className,\n strong = true,\n assistiveText = '\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE',\n dense,\n children,\n ...props\n },\n ref\n ) {\n const Component = strong ? 'strong' : 'div';\n return (\n <Base\n as=\"div\"\n ref={ref}\n className={clsx(className, {\n 'ds-warning-text': true,\n 'ds-warning-text--dense': dense,\n })}\n {...props}\n >\n <Base\n as=\"div\"\n className={clsx({\n 'ds-warning-text__icon': true,\n })}\n >\n !\n </Base>\n\n <Base\n as={Component}\n className={clsx({\n 'ds-warning-text__content': true,\n })}\n >\n <WarningTextAssistive>{assistiveText}</WarningTextAssistive>\n {children}\n </Base>\n </Base>\n );\n }\n);\n\nexport default WarningText;\n"],
5
+ "mappings": "AAAA,OAAO,WAAW;AAClB,OAAO,UAAU;AACjB,OAAO,UAAyB;AAChC,SAAS,4BAA4B;AA4B9B,MAAM,cAAc,MAAM;AAAA,EAC/B,SAASA,aACP;AAAA,IACE;AAAA,IACA,SAAS;AAAA,IACT,gBAAgB;AAAA,IAChB;AAAA,IACA;AAAA,IACA,GAAG;AAAA,EACL,GACA,KACA;AACA,UAAM,YAAY,SAAS,WAAW;AACtC,WACE;AAAA,MAAC;AAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA,WAAW,KAAK,WAAW;AAAA,UACzB,mBAAmB;AAAA,UACnB,0BAA0B;AAAA,QAC5B,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEJ;AAAA,QAAC;AAAA;AAAA,UACC,IAAG;AAAA,UACH,WAAW,KAAK;AAAA,YACd,yBAAyB;AAAA,UAC3B,CAAC;AAAA;AAAA,QACF;AAAA,MAED;AAAA,MAEA;AAAA,QAAC;AAAA;AAAA,UACC,IAAI;AAAA,UACJ,WAAW,KAAK;AAAA,YACd,4BAA4B;AAAA,UAC9B,CAAC;AAAA;AAAA,QAED,oCAAC,4BAAsB,aAAc;AAAA,QACpC;AAAA,MACH;AAAA,IACF;AAAA,EAEJ;AACF;AAEA,IAAO,sBAAQ;",
6
6
  "names": ["WarningText"]
7
7
  }
@@ -55,6 +55,7 @@ const Button = import_react.default.forwardRef(
55
55
  className: (0, import_clsx.default)(className, {
56
56
  "ds-link": variant === "link",
57
57
  "ds-link-warning": variant === "link" && color === "warning",
58
+ "ds-link--disabled": variant === "link" && disabled,
58
59
  "ds-btn": variant === "button",
59
60
  "ds-btn--dense": dense,
60
61
  "ds-btn-primary": variant === "button" && color === "primary",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/Button/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface ButtonProps extends BaseProps<'button'> {\n /**\n * color is optional.\n * 'primary' color is used for the main call to action on a page.\n * 'secondary' color is used for secondary calls to action on a page.\n * 'warning' color is used to make users think carefully before they use them.\n * The default value is 'primary'.\n * @value 'primary'\n * @value 'secondary'\n * @value 'warning'\n * @default 'primary'\n */\n color?: 'primary' | 'secondary' | 'warning';\n /**\n * variant is optional.\n * @value 'link'\n * @value 'button'\n * @default 'button'\n */\n variant?: 'link' | 'button';\n /**\n * dense is optional.\n * @value true Button will be dense.\n * @value false\n * @default false\n */\n dense?: boolean;\n}\n/**\n * Use the Button component to help users carry out an action.\n */\nexport const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(\n function Button(\n {\n color = 'primary',\n variant = 'button',\n dense,\n disabled,\n printHidden = true,\n className,\n children,\n ...props\n },\n ref\n ) {\n return (\n <Base\n as=\"button\"\n disabled={disabled}\n printHidden={printHidden}\n ref={ref}\n className={clsx(className, {\n 'ds-link': variant === 'link',\n 'ds-link-warning': variant === 'link' && color === 'warning',\n 'ds-btn': variant === 'button',\n 'ds-btn--dense': dense,\n 'ds-btn-primary': variant === 'button' && color === 'primary',\n 'ds-btn-secondary': variant === 'button' && color === 'secondary',\n 'ds-btn-warning': variant === 'button' && color === 'warning',\n 'ds-btn--disabled': variant === 'button' && disabled,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default Button;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAiCzB,MAAM,SAAS,aAAAA,QAAM;AAAA,EAC1B,SAASC,QACP;AAAA,IACE,QAAQ;AAAA,IACR,UAAU;AAAA,IACV;AAAA,IACA;AAAA,IACA,cAAc;AAAA,IACd;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;AAAA,QACA;AAAA,QACA,eAAW,YAAAC,SAAK,WAAW;AAAA,UACzB,WAAW,YAAY;AAAA,UACvB,mBAAmB,YAAY,UAAU,UAAU;AAAA,UACnD,UAAU,YAAY;AAAA,UACtB,iBAAiB;AAAA,UACjB,kBAAkB,YAAY,YAAY,UAAU;AAAA,UACpD,oBAAoB,YAAY,YAAY,UAAU;AAAA,UACtD,kBAAkB,YAAY,YAAY,UAAU;AAAA,UACpD,oBAAoB,YAAY,YAAY;AAAA,QAC9C,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,iBAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface ButtonProps extends BaseProps<'button'> {\n /**\n * color is optional.\n * 'primary' color is used for the main call to action on a page.\n * 'secondary' color is used for secondary calls to action on a page.\n * 'warning' color is used to make users think carefully before they use them.\n * The default value is 'primary'.\n * @value 'primary'\n * @value 'secondary'\n * @value 'warning'\n * @default 'primary'\n */\n color?: 'primary' | 'secondary' | 'warning';\n /**\n * variant is optional.\n * @value 'link'\n * @value 'button'\n * @default 'button'\n */\n variant?: 'link' | 'button';\n /**\n * dense is optional.\n * @value true Button will be dense.\n * @value false\n * @default false\n */\n dense?: boolean;\n}\n/**\n * Use the Button component to help users carry out an action.\n */\nexport const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(\n function Button(\n {\n color = 'primary',\n variant = 'button',\n dense,\n disabled,\n printHidden = true,\n className,\n children,\n ...props\n },\n ref\n ) {\n return (\n <Base\n as=\"button\"\n disabled={disabled}\n printHidden={printHidden}\n ref={ref}\n className={clsx(className, {\n 'ds-link': variant === 'link',\n 'ds-link-warning': variant === 'link' && color === 'warning',\n 'ds-link--disabled': variant === 'link' && disabled,\n 'ds-btn': variant === 'button',\n 'ds-btn--dense': dense,\n 'ds-btn-primary': variant === 'button' && color === 'primary',\n 'ds-btn-secondary': variant === 'button' && color === 'secondary',\n 'ds-btn-warning': variant === 'button' && color === 'warning',\n 'ds-btn--disabled': variant === 'button' && disabled,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default Button;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAiCzB,MAAM,SAAS,aAAAA,QAAM;AAAA,EAC1B,SAASC,QACP;AAAA,IACE,QAAQ;AAAA,IACR,UAAU;AAAA,IACV;AAAA,IACA;AAAA,IACA,cAAc;AAAA,IACd;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;AAAA,QACA;AAAA,QACA,eAAW,YAAAC,SAAK,WAAW;AAAA,UACzB,WAAW,YAAY;AAAA,UACvB,mBAAmB,YAAY,UAAU,UAAU;AAAA,UACnD,qBAAqB,YAAY,UAAU;AAAA,UAC3C,UAAU,YAAY;AAAA,UACtB,iBAAiB;AAAA,UACjB,kBAAkB,YAAY,YAAY,UAAU;AAAA,UACpD,oBAAoB,YAAY,YAAY,UAAU;AAAA,UACtD,kBAAkB,YAAY,YAAY,UAAU;AAAA,UACpD,oBAAoB,YAAY,YAAY;AAAA,QAC9C,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,iBAAQ;",
6
6
  "names": ["React", "Button", "Base", "clsx"]
7
7
  }
@@ -45,6 +45,7 @@ const LinkBase = import_react.default.forwardRef(
45
45
  "ds-link": defaultStyle,
46
46
  "ds-link--no-underline": !underline
47
47
  }),
48
+ ...props.as && { defaultStyle, underline },
48
49
  ...props
49
50
  },
50
51
  children
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/LinkBase/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface LinkBaseProps extends BaseProps<'a'> {\n /**\n * underline is optional. The default value is 'true'.\n * Make it 'false' only if the context tells the user that the text is a link, even without the underline.\n * @value true\n * @value false\n */\n underline?: boolean;\n /**\n * defaultStyle is optional. The default value is 'true'.\n * Make it 'false' only if you need to use a link with different style, and the default style clashes over with your\n * custom styles. For example, BreadcrumbsListItem is a link but it has a different styling.\n * @value true\n * @value false\n */\n defaultStyle?: boolean;\n}\n/**\n * This component defines a hyperlink, which is used to link from one page to another.\n */\nexport const LinkBase = React.forwardRef<HTMLAnchorElement, LinkBaseProps>(\n function LinkBase(\n { underline = true, defaultStyle = true, className, children, ...props },\n ref\n ) {\n return (\n <Base\n as=\"a\"\n ref={ref}\n className={clsx(className, {\n 'ds-link': defaultStyle,\n 'ds-link--no-underline': !underline,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default LinkBase;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAsBzB,MAAM,WAAW,aAAAA,QAAM;AAAA,EAC5B,SAASC,UACP,EAAE,YAAY,MAAM,eAAe,MAAM,WAAW,UAAU,GAAG,MAAM,GACvE,KACA;AACA,WACE,6BAAAD,QAAA;AAAA,MAAC,YAAAE;AAAA,MAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA,eAAW,YAAAC,SAAK,WAAW;AAAA,UACzB,WAAW;AAAA,UACX,yBAAyB,CAAC;AAAA,QAC5B,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,mBAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface LinkBaseProps extends BaseProps<'a'> {\n /**\n * underline is optional. The default value is 'true'.\n * Make it 'false' only if the context tells the user that the text is a link, even without the underline.\n * @value true\n * @value false\n */\n underline?: boolean;\n /**\n * defaultStyle is optional. The default value is 'true'.\n * Make it 'false' only if you need to use a link with different style, and the default style clashes over with your\n * custom styles. For example, BreadcrumbsListItem is a link but it has a different styling.\n * @value true\n * @value false\n */\n defaultStyle?: boolean;\n}\n/**\n * This component defines a hyperlink, which is used to link from one page to another.\n */\nexport const LinkBase = React.forwardRef<HTMLAnchorElement, LinkBaseProps>(\n function LinkBase(\n { underline = true, defaultStyle = true, className, children, ...props },\n ref\n ) {\n return (\n <Base\n as=\"a\"\n ref={ref}\n className={clsx(className, {\n 'ds-link': defaultStyle,\n 'ds-link--no-underline': !underline,\n })}\n {...(props.as && { defaultStyle: defaultStyle, underline: underline })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default LinkBase;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAsBzB,MAAM,WAAW,aAAAA,QAAM;AAAA,EAC5B,SAASC,UACP,EAAE,YAAY,MAAM,eAAe,MAAM,WAAW,UAAU,GAAG,MAAM,GACvE,KACA;AACA,WACE,6BAAAD,QAAA;AAAA,MAAC,YAAAE;AAAA,MAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA,eAAW,YAAAC,SAAK,WAAW;AAAA,UACzB,WAAW;AAAA,UACX,yBAAyB,CAAC;AAAA,QAC5B,CAAC;AAAA,QACA,GAAI,MAAM,MAAM,EAAE,cAA4B,UAAqB;AAAA,QACnE,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,mBAAQ;",
6
6
  "names": ["React", "LinkBase", "Base", "clsx"]
7
7
  }
@@ -41,6 +41,7 @@ const Table = import_react.default.forwardRef(
41
41
  dense = false,
42
42
  verticalBorders = false,
43
43
  stacked = "never",
44
+ verticalAlign = "middle",
44
45
  className,
45
46
  children,
46
47
  ...props
@@ -59,7 +60,9 @@ const Table = import_react.default.forwardRef(
59
60
  "ds-table--light": headerVariant === "light",
60
61
  "ds-table--dense": dense,
61
62
  "ds-table--zebra": variant === "zebra",
62
- "ds-table--vertical-lines": verticalBorders
63
+ "ds-table--vertical-lines": verticalBorders,
64
+ "ds-table--align-top": verticalAlign === "top",
65
+ "ds-table--align-bottom": verticalAlign === "bottom"
63
66
  }),
64
67
  ...props
65
68
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/Table/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface TableProps extends BaseProps<'table'> {\n /**\n * headerVariant is optional.\n * The `headerVariant` prop is used to either give blue background color to th tags\n * or a light grey background.\n * Default value is undefined which results to an opaque background color.\n * @value 'dark'\n * @value 'light'\n */\n headerVariant?: 'dark' | 'light';\n /**\n * dense is optional.\n * The dense prop is used to make font size smaller and give\n * extra padding.\n * @value true\n * @value false\n * @default false\n */\n dense?: boolean;\n /**\n * verticalBorders is optional.\n * The verticalBorders prop gives extra vertical lines to the table.\n * @value true\n * @value false\n * @default false\n */\n verticalBorders?: boolean;\n /**\n * stacked is optional.\n * The stacked prop gives responsiveness to the table. If used, make sure to add \"data-label\" to TableDataCell components.\n * Default value is never.\n * @value 'always'\n * @value 'sm'\n * @value 'md'\n * @value 'never'\n * @default 'never'\n */\n stacked?: 'always' | 'sm' | 'md' | 'never';\n /**\n * variant is optional.\n * @value 'default'\n * @value 'zebra' is used to make zebra table lines. If you have 'zebra' variant, color prop to TableRow component adds nothing.\n * @default 'default'\n */\n variant?: 'zebra' | 'default';\n}\n/**\n * Table component is used to wrap the sub components of a table\n */\nexport const Table = React.forwardRef<HTMLTableElement, TableProps>(\n function Table(\n {\n headerVariant,\n variant,\n dense = false,\n verticalBorders = false,\n stacked = 'never',\n className,\n children,\n ...props\n },\n ref\n ) {\n return (\n <Base\n as=\"table\"\n ref={ref}\n className={clsx(className, {\n 'ds-table': true,\n 'ds-table--stacked-always': stacked === 'always',\n 'ds-table--stacked-sm': stacked === 'sm',\n 'ds-table--stacked-md': stacked == 'md',\n 'ds-table--dark': headerVariant === 'dark',\n 'ds-table--light': headerVariant === 'light',\n 'ds-table--dense': dense,\n 'ds-table--zebra': variant === 'zebra',\n 'ds-table--vertical-lines': verticalBorders,\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default Table;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAmDzB,MAAM,QAAQ,aAAAA,QAAM;AAAA,EACzB,SAASC,OACP;AAAA,IACE;AAAA,IACA;AAAA,IACA,QAAQ;AAAA,IACR,kBAAkB;AAAA,IAClB,UAAU;AAAA,IACV;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,YAAY;AAAA,UACZ,4BAA4B,YAAY;AAAA,UACxC,wBAAwB,YAAY;AAAA,UACpC,wBAAwB,WAAW;AAAA,UACnC,kBAAkB,kBAAkB;AAAA,UACpC,mBAAmB,kBAAkB;AAAA,UACrC,mBAAmB;AAAA,UACnB,mBAAmB,YAAY;AAAA,UAC/B,4BAA4B;AAAA,QAC9B,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,gBAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\n\nexport interface TableProps extends BaseProps<'table'> {\n /**\n * headerVariant is optional.\n * The `headerVariant` prop is used to either give blue background color to th tags\n * or a light grey background.\n * Default value is undefined which results to an opaque background color.\n * @value 'dark'\n * @value 'light'\n */\n headerVariant?: 'dark' | 'light';\n /**\n * dense is optional.\n * The dense prop is used to make font size smaller and give\n * extra padding.\n * @value true\n * @value false\n * @default false\n */\n dense?: boolean;\n /**\n * verticalBorders is optional.\n * The verticalBorders prop gives extra vertical lines to the table.\n * @value true\n * @value false\n * @default false\n */\n verticalBorders?: boolean;\n /**\n * stacked is optional.\n * The stacked prop gives responsiveness to the table. If used, make sure to add \"data-label\" to TableDataCell components.\n * Default value is never.\n * @value 'always'\n * @value 'sm'\n * @value 'md'\n * @value 'never'\n * @default 'never'\n */\n stacked?: 'always' | 'sm' | 'md' | 'never';\n /**\n * variant is optional.\n * @value 'default'\n * @value 'zebra' is used to make zebra table lines. If you have 'zebra' variant, color prop to TableRow component adds nothing.\n * @default 'default'\n */\n variant?: 'zebra' | 'default';\n /**\n * verticalAlign is optional.\n * The verticalAlign property sets vertical alignment of the table-cells.\n * @value 'top'\n * @value 'middle'\n * @value 'bottom'\n * @default 'middle'\n */\n verticalAlign?: 'top' | 'middle' | 'bottom';\n}\n/**\n * Table component is used to wrap the sub components of a table\n */\nexport const Table = React.forwardRef<HTMLTableElement, TableProps>(\n function Table(\n {\n headerVariant,\n variant,\n dense = false,\n verticalBorders = false,\n stacked = 'never',\n verticalAlign = 'middle',\n className,\n children,\n ...props\n },\n ref\n ) {\n return (\n <Base\n as=\"table\"\n ref={ref}\n className={clsx(className, {\n 'ds-table': true,\n 'ds-table--stacked-always': stacked === 'always',\n 'ds-table--stacked-sm': stacked === 'sm',\n 'ds-table--stacked-md': stacked == 'md',\n 'ds-table--dark': headerVariant === 'dark',\n 'ds-table--light': headerVariant === 'light',\n 'ds-table--dense': dense,\n 'ds-table--zebra': variant === 'zebra',\n 'ds-table--vertical-lines': verticalBorders,\n 'ds-table--align-top': verticalAlign === 'top',\n 'ds-table--align-bottom': verticalAlign === 'bottom',\n })}\n {...props}\n >\n {children}\n </Base>\n );\n }\n);\n\nexport default Table;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AA4DzB,MAAM,QAAQ,aAAAA,QAAM;AAAA,EACzB,SAASC,OACP;AAAA,IACE;AAAA,IACA;AAAA,IACA,QAAQ;AAAA,IACR,kBAAkB;AAAA,IAClB,UAAU;AAAA,IACV,gBAAgB;AAAA,IAChB;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,YAAY;AAAA,UACZ,4BAA4B,YAAY;AAAA,UACxC,wBAAwB,YAAY;AAAA,UACpC,wBAAwB,WAAW;AAAA,UACnC,kBAAkB,kBAAkB;AAAA,UACpC,mBAAmB,kBAAkB;AAAA,UACrC,mBAAmB;AAAA,UACnB,mBAAmB,YAAY;AAAA,UAC/B,4BAA4B;AAAA,UAC5B,uBAAuB,kBAAkB;AAAA,UACzC,0BAA0B,kBAAkB;AAAA,QAC9C,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEH;AAAA,IACH;AAAA,EAEJ;AACF;AAEA,IAAO,gBAAQ;",
6
6
  "names": ["React", "Table", "Base", "clsx"]
7
7
  }
@@ -34,7 +34,14 @@ 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
- const TableDataCell = import_react.default.forwardRef(function TableDataCell2({ dataType = "text", className, children, ...props }, ref) {
37
+ const TableDataCell = import_react.default.forwardRef(function TableDataCell2({
38
+ dataType = "text",
39
+ variant = "border",
40
+ wordBreak = "none",
41
+ className,
42
+ children,
43
+ ...props
44
+ }, ref) {
38
45
  return /* @__PURE__ */ import_react.default.createElement(
39
46
  import_Base.default,
40
47
  {
@@ -42,6 +49,8 @@ const TableDataCell = import_react.default.forwardRef(function TableDataCell2({
42
49
  ref,
43
50
  className: (0, import_clsx.default)(className, {
44
51
  "ds-table__cell": true,
52
+ "ds-table__cell--border": variant === "border",
53
+ "ds-table__cell--break-all": wordBreak === "break-all",
45
54
  "ds-table__cell--numeric": dataType === "numeric"
46
55
  }),
47
56
  ...props
@@ -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/**\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 { dataType = 'text', className, children, ...props },\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--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;AAiBzB,MAAM,gBAAgB,aAAAA,QAAM,WAGjC,SAASC,eACT,EAAE,WAAW,QAAQ,WAAW,UAAU,GAAG,MAAM,GACnD,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,2BAA2B,aAAa;AAAA,MAC1C,CAAC;AAAA,MACA,GAAG;AAAA;AAAA,IAEH;AAAA,EACH;AAEJ,CAAC;AAED,IAAO,wBAAQ;",
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
6
  "names": ["React", "TableDataCell", "Base", "clsx"]
7
7
  }
@@ -36,7 +36,15 @@ var import_clsx = __toESM(require("clsx"));
36
36
  var import_Base = __toESM(require("@digigov/react-core/Base"));
37
37
  var import_WarningTextAssistive = require("@digigov/react-core/WarningTextAssistive");
38
38
  const WarningText = import_react.default.forwardRef(
39
- function WarningText2({ className, assistiveText = "\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE", dense, children, ...props }, ref) {
39
+ function WarningText2({
40
+ className,
41
+ strong = true,
42
+ assistiveText = "\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE",
43
+ dense,
44
+ children,
45
+ ...props
46
+ }, ref) {
47
+ const Component = strong ? "strong" : "div";
40
48
  return /* @__PURE__ */ import_react.default.createElement(
41
49
  import_Base.default,
42
50
  {
@@ -61,7 +69,7 @@ const WarningText = import_react.default.forwardRef(
61
69
  /* @__PURE__ */ import_react.default.createElement(
62
70
  import_Base.default,
63
71
  {
64
- as: "strong",
72
+ as: Component,
65
73
  className: (0, import_clsx.default)({
66
74
  "ds-warning-text__content": true
67
75
  })
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/WarningText/index.tsx"],
4
- "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\nimport { WarningTextAssistive } from '@digigov/react-core/WarningTextAssistive';\nexport interface WarningTextProps extends BaseProps<'div'> {\n /**\n * assistiveText is optional.\n * Default value is \"\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE\".\n * assistiveText is used to provide a textual warning for assistive technologies like screen readers.\n */\n assistiveText?: string;\n /**\n * dense is optional.\n * @value true WarningText will be dense.\n * @value false\n * @default false\n * */\n dense?: boolean;\n}\n/**\n * WarningText.\n * Use the WarningText component when you need to warn users about something important.\n * The component is used with a text inside it.\n */\nexport const WarningText = React.forwardRef<HTMLDivElement, WarningTextProps>(\n function WarningText(\n { className, assistiveText = '\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE', dense, children, ...props },\n ref\n ) {\n return (\n <Base\n as=\"div\"\n ref={ref}\n className={clsx(className, {\n 'ds-warning-text': true,\n 'ds-warning-text--dense': dense,\n })}\n {...props}\n >\n <Base\n as=\"div\"\n className={clsx({\n 'ds-warning-text__icon': true,\n })}\n >\n !\n </Base>\n\n <Base\n as=\"strong\"\n className={clsx({\n 'ds-warning-text__content': true,\n })}\n >\n <WarningTextAssistive>{assistiveText}</WarningTextAssistive>\n {children}\n </Base>\n </Base>\n );\n }\n);\n\nexport default WarningText;\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAChC,kCAAqC;AAqB9B,MAAM,cAAc,aAAAA,QAAM;AAAA,EAC/B,SAASC,aACP,EAAE,WAAW,gBAAgB,8CAAW,OAAO,UAAU,GAAG,MAAM,GAClE,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,0BAA0B;AAAA,QAC5B,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEJ,6BAAAH,QAAA;AAAA,QAAC,YAAAE;AAAA,QAAA;AAAA,UACC,IAAG;AAAA,UACH,eAAW,YAAAC,SAAK;AAAA,YACd,yBAAyB;AAAA,UAC3B,CAAC;AAAA;AAAA,QACF;AAAA,MAED;AAAA,MAEA,6BAAAH,QAAA;AAAA,QAAC,YAAAE;AAAA,QAAA;AAAA,UACC,IAAG;AAAA,UACH,eAAW,YAAAC,SAAK;AAAA,YACd,4BAA4B;AAAA,UAC9B,CAAC;AAAA;AAAA,QAED,6BAAAH,QAAA,cAAC,wDAAsB,aAAc;AAAA,QACpC;AAAA,MACH;AAAA,IACF;AAAA,EAEJ;AACF;AAEA,IAAO,sBAAQ;",
4
+ "sourcesContent": ["import React from 'react';\nimport clsx from 'clsx';\nimport Base, { BaseProps } from '@digigov/react-core/Base';\nimport { WarningTextAssistive } from '@digigov/react-core/WarningTextAssistive';\nexport interface WarningTextProps extends BaseProps<'div'> {\n /**\n * assistiveText is optional.\n * Default value is \"\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE\".\n * assistiveText is used to provide a textual warning for assistive technologies like screen readers.\n */\n assistiveText?: string;\n /**\n * dense is optional.\n * @value true WarningText will be dense.\n * @value false\n * @default false\n * */\n dense?: boolean;\n /**\n * strong is optional.\n * @value true if you want to emphasize importance, conveying meaning to both sighted and screen readers.\n * @value false WarningText will be a simple div element.\n * @default true\n * */\n strong?: boolean;\n}\n/**\n * WarningText.\n * Use the WarningText component when you need to warn users about something important.\n * The component is used with a text inside it.\n */\nexport const WarningText = React.forwardRef<HTMLDivElement, WarningTextProps>(\n function WarningText(\n {\n className,\n strong = true,\n assistiveText = '\u03A0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE',\n dense,\n children,\n ...props\n },\n ref\n ) {\n const Component = strong ? 'strong' : 'div';\n return (\n <Base\n as=\"div\"\n ref={ref}\n className={clsx(className, {\n 'ds-warning-text': true,\n 'ds-warning-text--dense': dense,\n })}\n {...props}\n >\n <Base\n as=\"div\"\n className={clsx({\n 'ds-warning-text__icon': true,\n })}\n >\n !\n </Base>\n\n <Base\n as={Component}\n className={clsx({\n 'ds-warning-text__content': true,\n })}\n >\n <WarningTextAssistive>{assistiveText}</WarningTextAssistive>\n {children}\n </Base>\n </Base>\n );\n }\n);\n\nexport default WarningText;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkB;AAClB,kBAAiB;AACjB,kBAAgC;AAChC,kCAAqC;AA4B9B,MAAM,cAAc,aAAAA,QAAM;AAAA,EAC/B,SAASC,aACP;AAAA,IACE;AAAA,IACA,SAAS;AAAA,IACT,gBAAgB;AAAA,IAChB;AAAA,IACA;AAAA,IACA,GAAG;AAAA,EACL,GACA,KACA;AACA,UAAM,YAAY,SAAS,WAAW;AACtC,WACE,6BAAAD,QAAA;AAAA,MAAC,YAAAE;AAAA,MAAA;AAAA,QACC,IAAG;AAAA,QACH;AAAA,QACA,eAAW,YAAAC,SAAK,WAAW;AAAA,UACzB,mBAAmB;AAAA,UACnB,0BAA0B;AAAA,QAC5B,CAAC;AAAA,QACA,GAAG;AAAA;AAAA,MAEJ,6BAAAH,QAAA;AAAA,QAAC,YAAAE;AAAA,QAAA;AAAA,UACC,IAAG;AAAA,UACH,eAAW,YAAAC,SAAK;AAAA,YACd,yBAAyB;AAAA,UAC3B,CAAC;AAAA;AAAA,QACF;AAAA,MAED;AAAA,MAEA,6BAAAH,QAAA;AAAA,QAAC,YAAAE;AAAA,QAAA;AAAA,UACC,IAAI;AAAA,UACJ,eAAW,YAAAC,SAAK;AAAA,YACd,4BAA4B;AAAA,UAC9B,CAAC;AAAA;AAAA,QAED,6BAAAH,QAAA,cAAC,wDAAsB,aAAc;AAAA,QACpC;AAAA,MACH;AAAA,IACF;AAAA,EAEJ;AACF;AAEA,IAAO,sBAAQ;",
6
6
  "names": ["React", "WarningText", "Base", "clsx"]
7
7
  }
package/cjs/index.js CHANGED
@@ -167,7 +167,6 @@ __reExport(src_exports, require("@digigov/react-core/AdminLayout"), module.expor
167
167
  __reExport(src_exports, require("@digigov/react-core/AdminMain"), module.exports);
168
168
  __reExport(src_exports, require("@digigov/react-core/AdminTopSection"), module.exports);
169
169
  __reExport(src_exports, require("@digigov/react-core/AutoCompleteInputBase"), module.exports);
170
- __reExport(src_exports, require("@digigov/react-core/AutoCompleteInputTypeahead"), module.exports);
171
170
  __reExport(src_exports, require("@digigov/react-core/AutoCompleteResultList"), module.exports);
172
171
  __reExport(src_exports, require("@digigov/react-core/AutoCompleteResultListItem"), module.exports);
173
172
  __reExport(src_exports, require("@digigov/react-core/AutoCompleteContainer"), module.exports);
@@ -388,7 +387,6 @@ __reExport(src_exports, require("@digigov/react-core/WarningTextAssistive"), mod
388
387
  ...require("@digigov/react-core/AdminMain"),
389
388
  ...require("@digigov/react-core/AdminTopSection"),
390
389
  ...require("@digigov/react-core/AutoCompleteInputBase"),
391
- ...require("@digigov/react-core/AutoCompleteInputTypeahead"),
392
390
  ...require("@digigov/react-core/AutoCompleteResultList"),
393
391
  ...require("@digigov/react-core/AutoCompleteResultListItem"),
394
392
  ...require("@digigov/react-core/AutoCompleteContainer"),
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/AutoCompleteInputTypeahead';\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/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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",
6
6
  "names": []
7
7
  }
package/cjs/lazy/index.js CHANGED
@@ -184,7 +184,6 @@ var lazy_default = {
184
184
  "AdminMain": (0, import_react.lazy)(() => import("@digigov/react-core/AdminMain").then((module2) => ({ default: module2["AdminMain"] }))),
185
185
  "AdminTopSection": (0, import_react.lazy)(() => import("@digigov/react-core/AdminTopSection").then((module2) => ({ default: module2["AdminTopSection"] }))),
186
186
  "AutoCompleteInputBase": (0, import_react.lazy)(() => import("@digigov/react-core/AutoCompleteInputBase").then((module2) => ({ default: module2["AutoCompleteInputBase"] }))),
187
- "AutoCompleteInputTypeahead": (0, import_react.lazy)(() => import("@digigov/react-core/AutoCompleteInputTypeahead").then((module2) => ({ default: module2["AutoCompleteInputTypeahead"] }))),
188
187
  "AutoCompleteResultList": (0, import_react.lazy)(() => import("@digigov/react-core/AutoCompleteResultList").then((module2) => ({ default: module2["AutoCompleteResultList"] }))),
189
188
  "AutoCompleteResultListItem": (0, import_react.lazy)(() => import("@digigov/react-core/AutoCompleteResultListItem").then((module2) => ({ default: module2["AutoCompleteResultListItem"] }))),
190
189
  "AutoCompleteContainer": (0, import_react.lazy)(() => import("@digigov/react-core/AutoCompleteContainer").then((module2) => ({ default: module2["AutoCompleteContainer"] }))),