@rws-aoa/react-library 8.0.0 → 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,42 @@
1
+ import { SxProps } from '@mui/material';
2
+ import { JSX } from 'react';
3
+ export interface AoaListItem {
4
+ /**
5
+ * Data-qa tag to apply to the list item
6
+ */
7
+ readonly dataQa?: string;
8
+ /**
9
+ * Key of the list item
10
+ */
11
+ readonly key: string;
12
+ /**
13
+ * Value of the list item
14
+ */
15
+ readonly value: JSX.Element | string;
16
+ }
17
+ export interface AoaListProps {
18
+ /**
19
+ * Data-qa tag to apply to the list
20
+ */
21
+ readonly 'data-qa'?: string;
22
+ /**
23
+ * Key-value pairs to show as a list
24
+ */
25
+ readonly listItems: AoaListItem[];
26
+ /**
27
+ * Any additional CSSProperties to pass to the component
28
+ */
29
+ readonly sx?: SxProps;
30
+ }
31
+ /**
32
+ * Creates a key-value list using pre-defined Rijkswaterstaat styling
33
+ *
34
+ * @example
35
+ * ```jsx
36
+ *
37
+ * <AoaList listItems={[{ key: 'Name', value: 'John Connor' }]} />
38
+ *
39
+ * ```
40
+ */
41
+ export declare function AoaList({ listItems, 'data-qa': dataQa, sx }: AoaListProps): import("react/jsx-runtime").JSX.Element;
42
+ //# sourceMappingURL=List.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"List.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/list/List.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAsE,KAAK,OAAO,EAAE,MAAM,eAAe,CAAC;AAEjH,OAAO,EAAY,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AAG3C,MAAM,WAAW,WAAW;IAC1B;;OAEG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,GAAG,CAAC,OAAO,GAAG,MAAM,CAAC;CACtC;AAED,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,SAAS,EAAE,WAAW,EAAE,CAAC;IAClC;;OAEG;IACH,QAAQ,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC;CACvB;AAED;;;;;;;;;GASG;AACH,wBAAgB,OAAO,CAAC,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,YAAY,2CAsCzE"}
@@ -0,0 +1,38 @@
1
+ import { jsxs as m, jsx as a } from "react/jsx-runtime";
2
+ import { Grid as d, List as i, ListItem as c, ListItemText as u, listItemClasses as f } from "@mui/material";
3
+ import { l as g } from "../../../chunks/lodash.DPVO3Hgf.js";
4
+ import { Fragment as s } from "react";
5
+ import { FontNormalSxProps as x } from "../../../_constants.js";
6
+ function k({
7
+ listItems: o,
8
+ "data-qa": l,
9
+ sx: p
10
+ }) {
11
+ function e(r, t) {
12
+ const n = t === "key";
13
+ return /* @__PURE__ */ a(c, { sx: {
14
+ [`&.${f.root}`]: {
15
+ padding: "0 10px 0 0",
16
+ span: {
17
+ fontSize: "1rem",
18
+ lineHeight: "1.43rem"
19
+ }
20
+ }
21
+ }, children: /* @__PURE__ */ a(u, { "data-qa": n ? null : r.dataQa, primary: r[t], sx: {
22
+ span: {
23
+ fontWeight: n ? "bold" : "normal"
24
+ },
25
+ wrap: n ? "nowrap" : "normal"
26
+ } }) });
27
+ }
28
+ return /* @__PURE__ */ m(d, { container: !0, "data-qa": l ?? null, direction: "row", spacing: 1, sx: g.merge({
29
+ flexWrap: "nowrap"
30
+ }, p, x), children: [
31
+ /* @__PURE__ */ a(i, { children: o.map((r, t) => /* @__PURE__ */ a(s, { children: e(r, "key") }, r.key.toString() + t)) }),
32
+ /* @__PURE__ */ a(i, { children: o.map((r, t) => /* @__PURE__ */ a(s, { children: e(r, "value") }, typeof r.value == "string" ? r.value.toString() + t : t)) })
33
+ ] });
34
+ }
35
+ export {
36
+ k as AoaList
37
+ };
38
+ //# sourceMappingURL=List.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"List.js","sources":["../../../../src/components/atoms/list/List.tsx"],"sourcesContent":["import { Grid, List, listItemClasses, ListItemText, ListItem as MUIListItem, type SxProps } from '@mui/material';\nimport { merge } from 'lodash';\nimport { Fragment, type JSX } from 'react';\nimport { FontNormalSxProps } from '../../../_constants';\n\nexport interface AoaListItem {\n /**\n * Data-qa tag to apply to the list item\n */\n readonly dataQa?: string;\n /**\n * Key of the list item\n */\n readonly key: string;\n /**\n * Value of the list item\n */\n readonly value: JSX.Element | string;\n}\n\nexport interface AoaListProps {\n /**\n * Data-qa tag to apply to the list\n */\n readonly 'data-qa'?: string;\n /**\n * Key-value pairs to show as a list\n */\n readonly listItems: AoaListItem[];\n /**\n * Any additional CSSProperties to pass to the component\n */\n readonly sx?: SxProps;\n}\n\n/**\n * Creates a key-value list using pre-defined Rijkswaterstaat styling\n *\n * @example\n * ```jsx\n *\n * <AoaList listItems={[{ key: 'Name', value: 'John Connor' }]} />\n *\n * ```\n */\nexport function AoaList({ listItems, 'data-qa': dataQa, sx }: AoaListProps) {\n function getListItem(item: AoaListItem, type: 'key' | 'value') {\n const isKey = type === 'key';\n return (\n <MUIListItem\n sx={{\n [`&.${listItemClasses.root}`]: {\n padding: `0 10px 0 0`,\n span: {\n fontSize: '1rem',\n lineHeight: '1.43rem'\n }\n }\n }}\n >\n <ListItemText\n data-qa={isKey ? null : item.dataQa}\n primary={item[type]}\n sx={{ span: { fontWeight: isKey ? 'bold' : 'normal' }, wrap: isKey ? 'nowrap' : 'normal' }}\n />\n </MUIListItem>\n );\n }\n\n return (\n <Grid container data-qa={dataQa ?? null} direction='row' spacing={1} sx={merge({ flexWrap: 'nowrap' }, sx, FontNormalSxProps)}>\n <List>\n {listItems.map((item, index) => {\n return <Fragment key={item.key.toString() + index}>{getListItem(item, 'key')}</Fragment>;\n })}\n </List>\n <List>\n {listItems.map((item, index) => {\n return <Fragment key={typeof item.value === 'string' ? item.value.toString() + index : index}>{getListItem(item, 'value')}</Fragment>;\n })}\n </List>\n </Grid>\n );\n}\n"],"names":["AoaList","listItems","dataQa","sx","getListItem","item","type","isKey","jsx","MUIListItem","listItemClasses","root","padding","span","fontSize","lineHeight","ListItemText","fontWeight","wrap","jsxs","Grid","merge","flexWrap","FontNormalSxProps","List","map","index","Fragment","key","toString","value"],"mappings":";;;;;AA6CO,SAASA,EAAQ;AAAA,EAAEC,WAAAA;AAAAA,EAAW,WAAWC;AAAAA,EAAQC,IAAAA;AAAiB,GAAG;AAC1E,WAASC,EAAYC,GAAmBC,GAAuB;AAC7D,UAAMC,IAAQD,MAAS;AACvB,WACE,gBAAAE,EAACC,KACC,IAAI;AAAA,MACF,CAAC,KAAKC,EAAgBC,IAAI,EAAE,GAAG;AAAA,QAC7BC,SAAS;AAAA,QACTC,MAAM;AAAA,UACJC,UAAU;AAAA,UACVC,YAAY;AAAA,QAAA;AAAA,MACd;AAAA,IACF,GAGF,UAAA,gBAAAP,EAACQ,GAAA,EACC,WAAST,IAAQ,OAAOF,EAAKH,QAC7B,SAASG,EAAKC,CAAI,GAClB,IAAI;AAAA,MAAEO,MAAM;AAAA,QAAEI,YAAYV,IAAQ,SAAS;AAAA,MAAA;AAAA,MAAYW,MAAMX,IAAQ,WAAW;AAAA,IAAA,GAAW,EAAA,CAE/F;AAAA,EAEJ;AAEA,SACE,gBAAAY,EAACC,GAAA,EAAK,WAAS,IAAC,WAASlB,KAAU,MAAM,WAAU,OAAM,SAAS,GAAG,IAAImB,EAAAA,MAAM;AAAA,IAAEC,UAAU;AAAA,EAAA,GAAYnB,GAAIoB,CAAiB,GAC1H,UAAA;AAAA,IAAA,gBAAAf,EAACgB,GAAA,EACEvB,UAAAA,EAAUwB,IAAI,CAACpB,GAAMqB,MACb,gBAAAlB,EAACmB,GAAA,EAA4CvB,UAAAA,EAAYC,GAAM,KAAK,KAArDA,EAAKuB,IAAIC,SAAAA,IAAaH,CAAiC,CAC9E,EAAA,CACH;AAAA,sBACCF,GAAA,EACEvB,UAAAA,EAAUwB,IAAI,CAACpB,GAAMqB,MACb,gBAAAlB,EAACmB,GAAA,EAAuFvB,UAAAA,EAAYC,GAAM,OAAO,EAAA,GAAlG,OAAOA,EAAKyB,SAAU,WAAWzB,EAAKyB,MAAMD,SAAAA,IAAaH,IAAQA,CAAmC,CAC3H,EAAA,CACH;AAAA,EAAA,GACF;AAEJ;"}
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@ export type { AoaSetting } from './components/atoms/_menu/user-menu/UserMenu';
3
3
  export { AoaButton, type AoaButtonProps } from './components/atoms/button/Button';
4
4
  export { AoaIconButton, type AoaIconButtonProps } from './components/atoms/icon-button/IconButton';
5
5
  export { AoaInput, type AoaInputProps } from './components/atoms/input/Input';
6
+ export { AoaList, type AoaListProps, type AoaListItem } from './components/atoms/list/List';
6
7
  export { AoaLogo, type AoaLogoProps } from './components/atoms/logo/Logo';
7
8
  export { AoaNoPermission, type AoaNoPermissionProps } from './components/atoms/no-permission/NoPermission';
8
9
  export { AoaNotification, type AoaNotificationProps } from './components/atoms/notification/Notification';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,OAAO,EAAE,MAAM,6CAA6C,CAAC;AAC3E,YAAY,EAAE,UAAU,EAAE,MAAM,6CAA6C,CAAC;AAC9E,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAClF,OAAO,EAAE,aAAa,EAAE,KAAK,kBAAkB,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAC9E,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,eAAe,EAAE,KAAK,oBAAoB,EAAE,MAAM,+CAA+C,CAAC;AAC3G,OAAO,EAAE,eAAe,EAAE,KAAK,oBAAoB,EAAE,MAAM,8CAA8C,CAAC;AAC1G,OAAO,EAAE,gBAAgB,EAAE,KAAK,qBAAqB,EAAE,MAAM,iDAAiD,CAAC;AAC/G,OAAO,EAAE,WAAW,EAAE,KAAK,gBAAgB,EAAE,MAAM,wDAAwD,CAAC;AAC5G,OAAO,EAAE,cAAc,EAAE,KAAK,mBAAmB,EAAE,MAAM,+DAA+D,CAAC;AACzH,OAAO,EAAE,eAAe,EAAE,KAAK,oBAAoB,EAAE,MAAM,iEAAiE,CAAC;AAC7H,OAAO,EAAE,QAAQ,EAAE,KAAK,eAAe,EAAE,KAAK,YAAY,EAAE,KAAK,aAAa,EAAE,KAAK,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAClJ,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACtF,OAAO,EAAE,iBAAiB,EAAE,MAAM,oDAAoD,CAAC;AAGvF,OAAO,EAAE,aAAa,EAAE,KAAK,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AACvG,OAAO,EACL,eAAe,EACf,KAAK,eAAe,EACpB,KAAK,sBAAsB,EAC3B,KAAK,oBAAoB,EAC1B,MAAM,mDAAmD,CAAC;AAC3D,OAAO,EAAE,YAAY,EAAE,KAAK,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AACnG,OAAO,EAAE,YAAY,EAAE,KAAK,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AACnG,OAAO,EAAE,YAAY,EAAE,KAAK,kBAAkB,EAAE,KAAK,iBAAiB,EAAE,KAAK,eAAe,EAAE,MAAM,6CAA6C,CAAC;AAClJ,OAAO,EAAE,mBAAmB,EAAE,KAAK,wBAAwB,EAAE,MAAM,4DAA4D,CAAC;AAChI,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,KAAK,WAAW,EAAE,MAAM,oCAAoC,CAAC;AACpG,OAAO,EAAE,gBAAgB,EAAE,KAAK,qBAAqB,EAAE,MAAM,qDAAqD,CAAC;AACnH,OAAO,EAAE,eAAe,EAAE,KAAK,oBAAoB,EAAE,MAAM,mDAAmD,CAAC;AAG/G,OAAO,EAAE,cAAc,IAAI,kBAAkB,EAAE,KAAK,mBAAmB,IAAI,uBAAuB,EAAE,MAAM,iDAAiD,CAAC;AAG5J,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,aAAa,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,OAAO,EAAE,MAAM,6CAA6C,CAAC;AAC3E,YAAY,EAAE,UAAU,EAAE,MAAM,6CAA6C,CAAC;AAC9E,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAClF,OAAO,EAAE,aAAa,EAAE,KAAK,kBAAkB,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAC9E,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,KAAK,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC5F,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,eAAe,EAAE,KAAK,oBAAoB,EAAE,MAAM,+CAA+C,CAAC;AAC3G,OAAO,EAAE,eAAe,EAAE,KAAK,oBAAoB,EAAE,MAAM,8CAA8C,CAAC;AAC1G,OAAO,EAAE,gBAAgB,EAAE,KAAK,qBAAqB,EAAE,MAAM,iDAAiD,CAAC;AAC/G,OAAO,EAAE,WAAW,EAAE,KAAK,gBAAgB,EAAE,MAAM,wDAAwD,CAAC;AAC5G,OAAO,EAAE,cAAc,EAAE,KAAK,mBAAmB,EAAE,MAAM,+DAA+D,CAAC;AACzH,OAAO,EAAE,eAAe,EAAE,KAAK,oBAAoB,EAAE,MAAM,iEAAiE,CAAC;AAC7H,OAAO,EAAE,QAAQ,EAAE,KAAK,eAAe,EAAE,KAAK,YAAY,EAAE,KAAK,aAAa,EAAE,KAAK,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAClJ,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACtF,OAAO,EAAE,iBAAiB,EAAE,MAAM,oDAAoD,CAAC;AAGvF,OAAO,EAAE,aAAa,EAAE,KAAK,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AACvG,OAAO,EACL,eAAe,EACf,KAAK,eAAe,EACpB,KAAK,sBAAsB,EAC3B,KAAK,oBAAoB,EAC1B,MAAM,mDAAmD,CAAC;AAC3D,OAAO,EAAE,YAAY,EAAE,KAAK,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AACnG,OAAO,EAAE,YAAY,EAAE,KAAK,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AACnG,OAAO,EAAE,YAAY,EAAE,KAAK,kBAAkB,EAAE,KAAK,iBAAiB,EAAE,KAAK,eAAe,EAAE,MAAM,6CAA6C,CAAC;AAClJ,OAAO,EAAE,mBAAmB,EAAE,KAAK,wBAAwB,EAAE,MAAM,4DAA4D,CAAC;AAChI,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,KAAK,WAAW,EAAE,MAAM,oCAAoC,CAAC;AACpG,OAAO,EAAE,gBAAgB,EAAE,KAAK,qBAAqB,EAAE,MAAM,qDAAqD,CAAC;AACnH,OAAO,EAAE,eAAe,EAAE,KAAK,oBAAoB,EAAE,MAAM,mDAAmD,CAAC;AAG/G,OAAO,EAAE,cAAc,IAAI,kBAAkB,EAAE,KAAK,mBAAmB,IAAI,uBAAuB,EAAE,MAAM,iDAAiD,CAAC;AAG5J,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,aAAa,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC"}
package/dist/index.js CHANGED
@@ -1,53 +1,55 @@
1
1
  import { AoaButton as a } from "./components/atoms/button/Button.js";
2
2
  import { AoaIconButton as e } from "./components/atoms/icon-button/IconButton.js";
3
3
  import { AoaInput as m } from "./components/atoms/input/Input.js";
4
- import { AoaLogo as x } from "./components/atoms/logo/Logo.js";
5
- import { AoaNoPermission as n } from "./components/atoms/no-permission/NoPermission.js";
6
- import { AoaNotification as s } from "./components/atoms/notification/Notification.js";
7
- import { AoaSectionHeader as d } from "./components/atoms/section-header/SectionHeader.js";
8
- import { AoaCheckbox as F } from "./components/atoms/selection-buttons/checkbox/Checkbox.js";
9
- import { AoaRadioButton as c } from "./components/atoms/selection-buttons/radio-button/RadioButton.js";
10
- import { AoaSwitchButton as b } from "./components/atoms/selection-buttons/switch-button/SwitchButton.js";
11
- import { AoaTable as T } from "./components/atoms/table/Table.js";
12
- import { AoaTooltip as w } from "./components/atoms/tooltip/Tooltip.js";
13
- import { AoaZeroWidthSpace as N } from "./components/atoms/zero-width-space/ZeroWidthSpace.js";
14
- import { A as E, a as I, b as P, c as k, d as v, u as z, e as D, f as H, w as L } from "./chunks/FieldError.5EPMwcGp.js";
15
- import { AoaFileDropzone as U } from "./components/molecules/file-dropzone/FileDropzone.js";
16
- import { AoaFileTable as Z } from "./components/molecules/file-table/FileTable.js";
17
- import { AoaModalCloseButton as q } from "./components/molecules/modal-close-button/ModalCloseButton.js";
18
- import { AoaModal as G } from "./components/molecules/modal/Modal.js";
19
- import { AoaNavigationBar as K } from "./components/molecules/navigation-bar/NavigationBar.js";
20
- import { AoaUploadButton as Q } from "./components/molecules/upload-button/UploadButton.js";
21
- import { AoaContentPage as X } from "./components/organisms/content-page/ContentPage.js";
4
+ import { AoaList as x } from "./components/atoms/list/List.js";
5
+ import { AoaLogo as n } from "./components/atoms/logo/Logo.js";
6
+ import { AoaNoPermission as s } from "./components/atoms/no-permission/NoPermission.js";
7
+ import { AoaNotification as d } from "./components/atoms/notification/Notification.js";
8
+ import { AoaSectionHeader as F } from "./components/atoms/section-header/SectionHeader.js";
9
+ import { AoaCheckbox as c } from "./components/atoms/selection-buttons/checkbox/Checkbox.js";
10
+ import { AoaRadioButton as b } from "./components/atoms/selection-buttons/radio-button/RadioButton.js";
11
+ import { AoaSwitchButton as T } from "./components/atoms/selection-buttons/switch-button/SwitchButton.js";
12
+ import { AoaTable as w } from "./components/atoms/table/Table.js";
13
+ import { AoaTooltip as N } from "./components/atoms/tooltip/Tooltip.js";
14
+ import { AoaZeroWidthSpace as E } from "./components/atoms/zero-width-space/ZeroWidthSpace.js";
15
+ import { A as L, a as P, b as k, c as v, d as z, u as D, e as H, f as R, w as U } from "./chunks/FieldError.5EPMwcGp.js";
16
+ import { AoaFileDropzone as Z } from "./components/molecules/file-dropzone/FileDropzone.js";
17
+ import { AoaFileTable as q } from "./components/molecules/file-table/FileTable.js";
18
+ import { AoaModalCloseButton as G } from "./components/molecules/modal-close-button/ModalCloseButton.js";
19
+ import { AoaModal as K } from "./components/molecules/modal/Modal.js";
20
+ import { AoaNavigationBar as Q } from "./components/molecules/navigation-bar/NavigationBar.js";
21
+ import { AoaUploadButton as X } from "./components/molecules/upload-button/UploadButton.js";
22
+ import { AoaContentPage as _ } from "./components/organisms/content-page/ContentPage.js";
22
23
  export {
23
24
  a as AoaButton,
24
- F as AoaCheckbox,
25
- X as AoaContentTemplate,
26
- E as AoaFieldError,
27
- U as AoaFileDropzone,
28
- Z as AoaFileTable,
29
- I as AoaFormError,
30
- P as AoaFormModal,
25
+ c as AoaCheckbox,
26
+ _ as AoaContentTemplate,
27
+ L as AoaFieldError,
28
+ Z as AoaFileDropzone,
29
+ q as AoaFileTable,
30
+ P as AoaFormError,
31
+ k as AoaFormModal,
31
32
  e as AoaIconButton,
32
33
  m as AoaInput,
33
- x as AoaLogo,
34
- G as AoaModal,
35
- q as AoaModalCloseButton,
36
- K as AoaNavigationBar,
37
- n as AoaNoPermission,
38
- s as AoaNotification,
39
- c as AoaRadioButton,
40
- d as AoaSectionHeader,
41
- b as AoaSwitchButton,
42
- T as AoaTable,
43
- w as AoaTooltip,
44
- Q as AoaUploadButton,
45
- N as AoaZeroWidthSpace,
46
- k as aoaFieldContext,
47
- v as aoaFormContext,
48
- z as useAoaAppForm,
49
- D as useAoaFieldContext,
50
- H as useAoaFormContext,
51
- L as withAoaForm
34
+ x as AoaList,
35
+ n as AoaLogo,
36
+ K as AoaModal,
37
+ G as AoaModalCloseButton,
38
+ Q as AoaNavigationBar,
39
+ s as AoaNoPermission,
40
+ d as AoaNotification,
41
+ b as AoaRadioButton,
42
+ F as AoaSectionHeader,
43
+ T as AoaSwitchButton,
44
+ w as AoaTable,
45
+ N as AoaTooltip,
46
+ X as AoaUploadButton,
47
+ E as AoaZeroWidthSpace,
48
+ v as aoaFieldContext,
49
+ z as aoaFormContext,
50
+ D as useAoaAppForm,
51
+ H as useAoaFieldContext,
52
+ R as useAoaFormContext,
53
+ U as withAoaForm
52
54
  };
53
55
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rws-aoa/react-library",
3
- "version": "8.0.0",
3
+ "version": "8.1.0",
4
4
  "description": "RWS AOA Design System",
5
5
  "author": "@rws-aoa",
6
6
  "license": "Apache-2.0",
@@ -154,6 +154,10 @@
154
154
  "types": "./dist/components/atoms/input/Input.d.ts",
155
155
  "default": "./dist/components/atoms/input/Input.js"
156
156
  },
157
+ "./list": {
158
+ "types": "./dist/components/atoms/list/List.d.ts",
159
+ "default": "./dist/components/atoms/list/List.js"
160
+ },
157
161
  "./logo": {
158
162
  "types": "./dist/components/atoms/logo/Logo.d.ts",
159
163
  "default": "./dist/components/atoms/logo/Logo.js"