@galaxy-ds/core 1.1.24 → 1.1.28

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.
@@ -5,4 +5,6 @@ export interface ChipProps {
5
5
  onDelete?: (e: any) => void;
6
6
  transparent?: boolean;
7
7
  rounded?: boolean;
8
+ disabled?: boolean;
9
+ clickable?: boolean;
8
10
  }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { HeaderToolbarProps } from './HeaderToolbarProps.types';
3
+ declare const HeaderToolbar: React.FC<HeaderToolbarProps>;
4
+ export default HeaderToolbar;
@@ -0,0 +1,5 @@
1
+ export interface HeaderToolbarProps {
2
+ title?: string;
3
+ left?: React.ReactNode;
4
+ right?: React.ReactNode;
5
+ }
@@ -0,0 +1,2 @@
1
+ import { SvgIconProps } from '@material-ui/core/SvgIcon';
2
+ export default function NewAppointmentIcon(props: SvgIconProps): JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ToolbarButtonProps } from './ToolbarButtonProps.types';
3
+ declare const ToolbarButton: React.FC<ToolbarButtonProps>;
4
+ export default ToolbarButton;
@@ -0,0 +1,5 @@
1
+ export interface ToolbarButtonProps {
2
+ label?: string;
3
+ icon?: React.ReactNode;
4
+ onClick?: (e: any) => void;
5
+ }
package/dist/index.d.ts CHANGED
@@ -72,6 +72,8 @@ import Typography from "./Typography/Typography";
72
72
  export * from "./Typography/Typography.types";
73
73
  import TwoColumnLayout from "./TwoColumnLayout/TwoColumnLayout";
74
74
  export * from "./TwoColumnLayout/TwoColumnLayout.types";
75
+ import ToolbarButton from "./ToolbarButton/ToolbarButton";
76
+ export * from "./ToolbarButton/ToolbarButtonProps.types";
75
77
  import List from "./List/List";
76
78
  export * from "./List/List.types";
77
79
  import Radio from "./Radio/Radio";
@@ -88,6 +90,8 @@ import Divider from "./Divider/Divider";
88
90
  export * from "./Divider/Divider.types";
89
91
  import Dialog from "./Dialog/Dialog";
90
92
  export * from "./Dialog/Dialog.types";
93
+ import HeaderToolbar from "./HeaderToolbar/HeaderToolbar";
94
+ export * from "./HeaderToolbar/HeaderToolbarProps.types";
91
95
  import Loader from "./Loader/Loader";
92
96
  export * from "./Loader/Loader.types";
93
97
  import Grid from "./Grid/Grid";
@@ -148,6 +152,7 @@ import ButtonFilterIcon from "./Icons/ButtonFilter";
148
152
  import ChevronDownIcon from "./Icons/ChevronDown";
149
153
  import InsertLinkIcon from "./Icons/InsertLink";
150
154
  import MoreVerticalIcon from './Icons/MoreVerticalIcon';
155
+ import NewAppoinmentIcon from "./Icons/NewAppointment";
151
156
  import SearchIcon from "./Icons/Search";
152
157
  import ButtonCaretIcon from "./Icons/ButtonCaret";
153
158
  import SelectFilterEmptyIcon from "./Icons/SelectFilterEmpty";
@@ -171,4 +176,4 @@ import AccountingIcon from './Icons/AccountingIcon';
171
176
  import ReportingIcon from './Icons/ReportingIcon';
172
177
  import WarningIcon from './Icons/Dialog/Warning';
173
178
  import InfoCircleIcon from './Icons/Dialog/InfoCircle';
174
- export { AccordionPanel, AccordionDetails, AccordionSummary, Drawer, DrawerMenu, AppBar, AttachmentIcon, Accordion, ActivityLog, Autocomplete, Avatar, AvatarsGroup, Box, Button, Checkbox, Chip, Card, CssBaseline, createFilterOptions, Dropdown, Divider, EmptyState, FormContainer, FormBody, FormGroup, FooterActions, FormHeader, Grid, IconButton, Input, InputLabel, Loader, List, ListItem, ListItemAvatar, ListItemHoverContent, ListItemText, ListItemIcon, ListSubheader, BottomListButton, Menu, MenuItem, MenuContext, MenuHeader, MenuItemSystem, Radio, SidebarLayout, Switch, Tab, Tabs, TabListItem, Toolbar, Tooltip, DatePicker, DateRangePicker, Dialog, TwoColumnLayout, Typography, Tag, Table, TableContainer, TableHead, TableBody, TableCell, TableRow, TableFooter, TableCellIcon, DocTypeEmailDraft, AccessIcon, UsersIcon, RevokeAccessIcon, AssignCurvedIcon, AvatarBusinessIcon, AvatarCompanyIcon, AvatarGovernmentIcon, AvatarPeopleIcon, AvatarPersonIcon, AvatarTrustIcon, ButtonFilterIcon, ChevronDownIcon, InsertLinkIcon, SearchIcon, LoaderIcon, ButtonCaretIcon, SelectFilterEmptyIcon, SelectFilterFilledIcon, CalendarIcon, MoreVerticalIcon, CrossIcon, TickIcon, ResponseIcon, PoweredByLawconnectLogo, LawconnectIcon, EmailSentIcon, UserLinkIcon, UserLockIcon, DocTypeEmailSent, DocTypeEmailRecieved, PreviewIcon, LeapLogo, HomeIcon, AccountingIcon, ReportingIcon, WarningIcon, InfoCircleIcon };
179
+ export { AccordionPanel, AccordionDetails, AccordionSummary, Drawer, DrawerMenu, AppBar, AttachmentIcon, Accordion, ActivityLog, Autocomplete, Avatar, AvatarsGroup, Box, Button, Checkbox, Chip, Card, CssBaseline, createFilterOptions, Dropdown, Divider, EmptyState, FormContainer, FormBody, FormGroup, FooterActions, FormHeader, Grid, HeaderToolbar, IconButton, Input, InputLabel, Loader, List, ListItem, ListItemAvatar, ListItemHoverContent, ListItemText, ListItemIcon, ListSubheader, BottomListButton, Menu, MenuItem, MenuContext, MenuHeader, MenuItemSystem, Radio, SidebarLayout, Switch, Tab, Tabs, TabListItem, Toolbar, ToolbarButton, Tooltip, DatePicker, DateRangePicker, Dialog, TwoColumnLayout, Typography, Tag, Table, TableContainer, TableHead, TableBody, TableCell, TableRow, TableFooter, TableCellIcon, DocTypeEmailDraft, AccessIcon, UsersIcon, RevokeAccessIcon, AssignCurvedIcon, AvatarBusinessIcon, AvatarCompanyIcon, AvatarGovernmentIcon, AvatarPeopleIcon, AvatarPersonIcon, AvatarTrustIcon, ButtonFilterIcon, ChevronDownIcon, InsertLinkIcon, SearchIcon, LoaderIcon, ButtonCaretIcon, SelectFilterEmptyIcon, SelectFilterFilledIcon, CalendarIcon, MoreVerticalIcon, CrossIcon, TickIcon, ResponseIcon, PoweredByLawconnectLogo, LawconnectIcon, EmailSentIcon, UserLinkIcon, UserLockIcon, DocTypeEmailSent, DocTypeEmailRecieved, PreviewIcon, LeapLogo, HomeIcon, AccountingIcon, ReportingIcon, WarningIcon, InfoCircleIcon, NewAppoinmentIcon };
package/dist/index.esm.js CHANGED
@@ -13406,7 +13406,7 @@ process.env.NODE_ENV !== "production" ? Button$1.propTypes = {
13406
13406
  */
13407
13407
  variant: propTypes.oneOf(['contained', 'outlined', 'text'])
13408
13408
  } : void 0;
13409
- var MuiButton = withStyles(styles$X, {
13409
+ var Button$2 = withStyles(styles$X, {
13410
13410
  name: 'MuiButton'
13411
13411
  })(Button$1);
13412
13412
 
@@ -33785,7 +33785,7 @@ var useStyles$p = makeStyles(function (theme) {
33785
33785
  var Button = function (props) {
33786
33786
  var classes = useStyles$p(props);
33787
33787
  var isLoading = props.isLoading, isDanger = props.isDanger, defaultProps = __rest(props, ["isLoading", "isDanger"]);
33788
- return (React__default.createElement(MuiButton, __assign({ disableElevation: true, disableRipple: true }, defaultProps, { onClick: defaultProps.onClick, ref: defaultProps.refprop, className: clsx(classes.root, isDanger ? ' gds-button--danger' : '') }), !isLoading ? defaultProps.children : React__default.createElement(CircularProgress$1, { size: 16, color: "inherit" })));
33788
+ return (React__default.createElement(Button$2, __assign({ disableElevation: true, disableRipple: true }, defaultProps, { onClick: defaultProps.onClick, ref: defaultProps.refprop, className: clsx(classes.root, isDanger ? ' gds-button--danger' : '') }), !isLoading ? defaultProps.children : React__default.createElement(CircularProgress$1, { size: 16, color: "inherit" })));
33789
33789
  };
33790
33790
 
33791
33791
  var Checkbox = function (_a) {
@@ -34444,6 +34444,14 @@ var TwoColumnLayout = function (_a) {
34444
34444
  TwoColumnLayout.Left = Left$1;
34445
34445
  TwoColumnLayout.Right = Right$1;
34446
34446
 
34447
+ var ToolbarButton = function (_a) {
34448
+ var label = _a.label, icon = _a.icon, props = __rest(_a, ["label", "icon"]);
34449
+ return (React__default.createElement(Button$2, __assign({}, props, { variant: 'outlined', className: 'gds-toolbar-button' }),
34450
+ icon,
34451
+ " ",
34452
+ label));
34453
+ };
34454
+
34447
34455
  // Generated with util/create-component.js
34448
34456
  var List = function (props) {
34449
34457
  return (React__default.createElement(MuiList, { component: props.component || "nav", "aria-labelledby": "nested-list-subheader", subheader: React__default.createElement(ListSubheader$2, { component: "div", id: "nested-list-subheader" }, props.subheader) }, props.children));
@@ -35365,6 +35373,17 @@ var Dialog = function (props) {
35365
35373
  React__default.createElement(DialogActions$1, null, children)))));
35366
35374
  };
35367
35375
 
35376
+ var HeaderToolbar = function (_a) {
35377
+ var title = _a.title, left = _a.left, right = _a.right; __rest(_a, ["title", "left", "right"]);
35378
+ return (React__default.createElement(Toolbar$2, { className: 'gds-header-toolbar' },
35379
+ React__default.createElement(Box$2, { display: 'flex', justifyContent: 'space-between', style: { width: '100%' } },
35380
+ React__default.createElement(Box$2, { display: 'flex', flexDirection: 'column', justifyContent: 'stretch' },
35381
+ title && React__default.createElement(Box$2, { className: 'gds-header-toolbar-title', mb: 3 },
35382
+ React__default.createElement(Typography, { variant: 'h1', color: 'primary' }, title)),
35383
+ left),
35384
+ React__default.createElement(Box$2, { className: 'gds-buttons-w-divider', borderLeft: "1px solid " + common.brand.utility.border }, right))));
35385
+ };
35386
+
35368
35387
  function LoaderIcon(props) {
35369
35388
  return (React__default.createElement(SvgIcon$1, __assign({}, props, { viewBox: "0 0 24 30" }),
35370
35389
  React__default.createElement("circle", { r: "3", transform: "translate(2 15)" },
@@ -45781,6 +45800,11 @@ var themeWeb = createTheme({
45781
45800
  borderColor: pallettes$1.brand.contextual.danger.dark,
45782
45801
  },
45783
45802
  },
45803
+ '&.gds-toolbar-button': {
45804
+ '& .MuiSvgIcon-root': {
45805
+ display: 'none',
45806
+ },
45807
+ },
45784
45808
  },
45785
45809
  contained: {
45786
45810
  backgroundColor: pallettes$1.brand.tertiary.main,
@@ -46220,14 +46244,14 @@ var themeWeb = createTheme({
46220
46244
  MuiCard: {
46221
46245
  root: {
46222
46246
  borderRadius: 6,
46223
- boxShadow: "inset 0 0 0 1px " + pallettes$1.brand.utility.border,
46247
+ border: "1px solid " + pallettes$1.brand.utility.border,
46224
46248
  backgroundColor: '#F6F6F6',
46225
46249
  transition: 'all 0.25s ease-in-out',
46226
46250
  "&:hover": {
46227
- boxShadow: "inset 0 0 0 1px " + pallettes$1.brand.primary.light,
46251
+ border: "1px solid " + pallettes$1.brand.primary.light,
46228
46252
  },
46229
46253
  '&.gds-card--active': {
46230
- boxShadow: "inset 0 0 0 1px " + pallettes$1.brand.secondary.dark,
46254
+ border: "1px solid " + pallettes$1.brand.secondary.dark,
46231
46255
  }
46232
46256
  },
46233
46257
  },
@@ -46722,6 +46746,25 @@ var themeWeb = createTheme({
46722
46746
  },
46723
46747
  },
46724
46748
  },
46749
+ MuiToolbar: {
46750
+ root: {
46751
+ '&.gds-header-toolbar': {
46752
+ backgroundColor: '#ececec',
46753
+ minHeight: 50,
46754
+ paddingLeft: 16,
46755
+ paddingRight: 16,
46756
+ '& .gds-header-toolbar-title': {
46757
+ display: 'none'
46758
+ },
46759
+ '& .gds-buttons-w-divider': {
46760
+ borderLeft: 'none',
46761
+ },
46762
+ '& .MuiInputBase-root, & .MuiButtonBase-root': {
46763
+ maxHeight: 32,
46764
+ },
46765
+ },
46766
+ },
46767
+ },
46725
46768
  MuiTooltip: {
46726
46769
  tooltip: {
46727
46770
  fontSize: typography$1.body2.fontSize,
@@ -46906,8 +46949,8 @@ var themeDesktop = createTheme({
46906
46949
  },
46907
46950
  MuiAccordionDetails: {
46908
46951
  root: {
46909
- padding: 0
46910
- }
46952
+ padding: 0,
46953
+ },
46911
46954
  },
46912
46955
  MuiAppBar: {
46913
46956
  root: {
@@ -47170,15 +47213,15 @@ var themeDesktop = createTheme({
47170
47213
  },
47171
47214
  MuiCard: {
47172
47215
  root: {
47173
- boxShadow: "inset 0 0 0 1px " + pallettes.brand.utility.border,
47216
+ border: "1px solid " + pallettes.brand.utility.border,
47174
47217
  backgroundColor: '#F6F6F6',
47175
47218
  transition: 'all 0.25s ease-in-out',
47176
- "&:hover": {
47177
- boxShadow: "inset 0 0 0 1px " + pallettes.brand.primary.light,
47219
+ '&:hover': {
47220
+ border: "1px solid " + pallettes.brand.primary.light,
47178
47221
  },
47179
47222
  '&.gds-card--active': {
47180
- boxShadow: "inset 0 0 0 1px " + pallettes.brand.secondary.dark,
47181
- }
47223
+ border: "1px solid " + pallettes.brand.secondary.dark,
47224
+ },
47182
47225
  },
47183
47226
  },
47184
47227
  MuiFormGroup: {
@@ -47233,6 +47276,21 @@ var themeDesktop = createTheme({
47233
47276
  borderColor: pallettes.brand.contextual.danger.dark,
47234
47277
  },
47235
47278
  },
47279
+ '&.gds-toolbar-button': {
47280
+ height: 'auto',
47281
+ maxWidth: 70,
47282
+ minWidth: 'unset',
47283
+ padding: 0,
47284
+ margin: '0 15px',
47285
+ border: 'none',
47286
+ backgroundColor: 'transparent',
47287
+ '& .MuiSvgIcon-root': {
47288
+ width: 32,
47289
+ height: 32,
47290
+ marginBottom: 6,
47291
+ },
47292
+ '& $label': __assign(__assign({ flexDirection: 'column', padding: '0 4px', whiteSpace: 'normal' }, typography.body2), { lineHeight: '1rem' }),
47293
+ },
47236
47294
  },
47237
47295
  contained: {
47238
47296
  backgroundColor: pallettes.brand.tertiary.main,
@@ -47827,7 +47885,14 @@ var themeDesktop = createTheme({
47827
47885
  borderBottom: 'none',
47828
47886
  },
47829
47887
  },
47830
- MuiToolbar: {},
47888
+ MuiToolbar: {
47889
+ root: {
47890
+ '&.gds-header-toolbar': {
47891
+ backgroundColor: common.grey[200],
47892
+ padding: 15,
47893
+ },
47894
+ },
47895
+ },
47831
47896
  MuiGrid: {
47832
47897
  root: {},
47833
47898
  container: {
@@ -47914,6 +47979,15 @@ function MoreVerticalIcon(props) {
47914
47979
  React__default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8 10.5C8.26314 10.5 8.49566 10.6008 8.69754 10.8025C8.89943 11.0041 9.00025 11.2366 9 11.5C8.99975 11.7634 8.89893 11.9959 8.69754 12.1975C8.49616 12.3992 8.26364 12.5 8 12.5C7.73636 12.5 7.50384 12.3992 7.30246 12.1975C7.10107 11.9959 7.00025 11.7634 7 11.5C6.99975 11.2366 7.10057 11.0041 7.30246 10.8025C7.50434 10.6008 7.73686 10.5 8 10.5ZM8 7C8.26314 7 8.49566 7.10082 8.69754 7.30246C8.89943 7.50409 9.00025 7.73661 9 8C8.99975 8.26339 8.89893 8.49591 8.69754 8.69754C8.49616 8.89918 8.26364 9 8 9C7.73636 9 7.50384 8.89918 7.30246 8.69754C7.10107 8.49591 7.00025 8.26339 7 8C6.99975 7.73661 7.10057 7.50409 7.30246 7.30246C7.50434 7.10082 7.73686 7 8 7ZM8 3.5C8.26314 3.5 8.49566 3.60082 8.69754 3.80246C8.89943 4.00409 9.00025 4.23661 9 4.5C8.99975 4.76339 8.89893 4.99591 8.69754 5.19754C8.49616 5.39918 8.26364 5.5 8 5.5C7.73636 5.5 7.50384 5.39918 7.30246 5.19754C7.10107 4.99591 7.00025 4.76339 7 4.5C6.99975 4.23661 7.10057 4.00409 7.30246 3.80246C7.50434 3.60082 7.73686 3.5 8 3.5Z" })));
47915
47980
  }
47916
47981
 
47982
+ function NewAppointmentIcon(props) {
47983
+ return (React__default.createElement(SvgIcon$1, __assign({ viewBox: "0 0 32 32" }, props),
47984
+ React__default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.0001 4C10.0001 3.72414 10.2242 3.5 10.5001 3.5C10.7759 3.5 11.0001 3.72414 11.0001 4V5.5V6C11.0001 6.27586 10.7759 6.5 10.5001 6.5C10.2242 6.5 10.0001 6.27586 10.0001 6V4ZM12.0001 5V4C12.0001 3.17186 11.3282 2.5 10.5001 2.5C9.67194 2.5 9.00008 3.17186 9.00008 4V5.02083H7.63653C5.63761 5.02083 4.021 6.64748 4.021 8.65V9.5V23.35C4.021 25.3525 5.63761 26.9792 7.63653 26.9792H16.5002C16.7648 26.9792 16.9793 26.7646 16.9793 26.5C16.9793 26.2354 16.7648 26.0208 16.5002 26.0208H7.63653C6.1708 26.0208 4.97933 24.8272 4.97933 23.35V9.97917H27.021V16.5C27.021 16.7646 27.2355 16.9792 27.5002 16.9792C27.7648 16.9792 27.9793 16.7646 27.9793 16.5V9.5V8.65C27.9793 6.64748 26.3627 5.02083 24.3638 5.02083H23.0001V4C23.0001 3.17186 22.3282 2.5 21.5001 2.5C20.6719 2.5 20.0001 3.17186 20.0001 4V5H12.0001ZM12.0001 6C12.0001 6.82814 11.3282 7.5 10.5001 7.5C9.67194 7.5 9.00008 6.82814 9.00008 6V5.97917H7.63653C6.1708 5.97917 4.97933 7.17282 4.97933 8.65V9.02083H27.021V8.65C27.021 7.17282 25.8295 5.97917 24.3638 5.97917H23.0001V6C23.0001 6.82814 22.3282 7.5 21.5001 7.5C20.6719 7.5 20.0001 6.82814 20.0001 6H12.0001ZM21.0001 5.5L21.0001 6C21.0001 6.27586 21.2242 6.5 21.5001 6.5C21.7759 6.5 22.0001 6.27586 22.0001 6V4C22.0001 3.72414 21.7759 3.5 21.5001 3.5C21.2242 3.5 21.0001 3.72414 21.0001 4L21.0001 5.5Z", fill: "#1E365E" }),
47985
+ React__default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.5 17C12.2241 17 12 17.2241 12 17.5C12 17.7759 12.2241 18 12.5 18C12.7759 18 13 17.7759 13 17.5C13 17.2241 12.7759 17 12.5 17ZM11 17.5C11 16.6719 11.6719 16 12.5 16C13.3281 16 14 16.6719 14 17.5C14 18.3281 13.3281 19 12.5 19C11.6719 19 11 18.3281 11 17.5Z", fill: "#32ABE2" }),
47986
+ React__default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M24.5 19C21.4622 19 19 21.4631 19 24.5C19 27.5379 21.4621 30 24.5 30C27.5369 30 30 27.5378 30 24.5C30 21.4631 27.5369 19 24.5 19ZM18 24.5C18 20.9109 20.9098 18 24.5 18C28.0891 18 31 20.9109 31 24.5C31 28.0902 28.0891 31 24.5 31C20.9099 31 18 28.0901 18 24.5Z", fill: "#3FAF2A" }),
47987
+ React__default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M21 24.5C21 24.2239 21.2239 24 21.5 24H27.5C27.7761 24 28 24.2239 28 24.5C28 24.7761 27.7761 25 27.5 25H21.5C21.2239 25 21 24.7761 21 24.5Z", fill: "#3FAF2A" }),
47988
+ React__default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M24.5 21C24.7761 21 25 21.2239 25 21.5V27.5C25 27.7761 24.7761 28 24.5 28C24.2239 28 24 27.7761 24 27.5V21.5C24 21.2239 24.2239 21 24.5 21Z", fill: "#3FAF2A" })));
47989
+ }
47990
+
47917
47991
  function CalendarIcon(props) {
47918
47992
  return (React__default.createElement(SvgIcon$1, __assign({}, props),
47919
47993
  React__default.createElement("rect", { x: "4.03812", y: "7.03696", width: "16", height: "12", fill: "white" }),
@@ -47981,5 +48055,5 @@ function ReportingIcon(props) {
47981
48055
  React__default.createElement("path", { fillRule: "evenodd", fill: "currentColor", d: "M84.032 23.49l-12.807-5.123a4 4 0 01-6.827-.627l-12.404 2.481a4 4 0 11-7.962-.731l-12.807-5.123A3.994 3.994 0 0128 16c-.9 0-1.731-.297-2.4-.8L11.65 26.36A4 4 0 1110.4 24.8l13.95-11.16a4 4 0 117.618-1.13l12.807 5.124a4 4 0 016.827.627l12.404-2.481a4 4 0 117.962.731l12.807 5.123a4 4 0 11-.743 1.857zM0 88v-8h96v8H0zm4-40h8v24H4V48zm20-16h8v40h-8V32zm20 8h8v32h-8V40zm20-4h8v36h-8V36zm20 8h8v28h-8V44z" })));
47982
48056
  }
47983
48057
 
47984
- export { AccessIcon, Accordion, AccordionDetails, AccordionPanel, AccordionSummary, AccountingIcon, ActivityLog, AppBar, AssignCurvedIcon, AttachmentIcon, Autocomplete, Avatar, AvatarBusinessIcon, AvatarCompanyIcon, AvatarGovernmentIcon, AvatarPeopleIcon, AvatarPersonIcon, AvatarTrustIcon, AvatarsGroup, BottomListButton, Box, Button, ButtonCaretIcon, ButtonFilterIcon, CalendarIcon, Card, Checkbox, ChevronDownIcon, Chip, CrossIcon, CssBaseline, DatePicker, DateRangePicker, Dialog, Divider, DocTypeEmailDraft$2 as DocTypeEmailDraft, DocTypeEmailRecieved, DocTypeEmailSent, Drawer, DrawerMenu, Dropdown, EmailSentIcon, EmptyState, FooterActions, FormBody, FormContainer, FormGroup, FormHeader, Grid, HomeIcon, IconButton, InfoCircleIcon, Input, InputLabel, InsertLinkIcon, LawconnectIcon, LeapLogo, List, ListItem, ListItemAvatar, ListItemHoverContent, ListItemIcon, ListItemText, ListSubheader, Loader, LoaderIcon, Menu, MenuContext, MenuHeader, MenuItem, MenuItemSystem, MoreVerticalIcon, PoweredByLawconnectLogo, PreviewIcon, Radio, ReportingIcon, ResponseIcon, RevokeAccessIcon, SearchIcon, SelectFilterEmptyIcon, SelectFilterFilledIcon, SidebarLayout, Switch, Tab, TabListItem, Table, TableBody, TableCell, TableCellIcon, TableContainer, TableFooter, TableHead, TableRow, Tabs, Tag, ThemeProvider, TickIcon, Toolbar, Tooltip, TwoColumnLayout, Typography, UserLinkIcon, UserLockIcon, UsersIcon, WarningIcon, baseline, createFilterOptions, themeDesktop, themeWeb };
48058
+ export { AccessIcon, Accordion, AccordionDetails, AccordionPanel, AccordionSummary, AccountingIcon, ActivityLog, AppBar, AssignCurvedIcon, AttachmentIcon, Autocomplete, Avatar, AvatarBusinessIcon, AvatarCompanyIcon, AvatarGovernmentIcon, AvatarPeopleIcon, AvatarPersonIcon, AvatarTrustIcon, AvatarsGroup, BottomListButton, Box, Button, ButtonCaretIcon, ButtonFilterIcon, CalendarIcon, Card, Checkbox, ChevronDownIcon, Chip, CrossIcon, CssBaseline, DatePicker, DateRangePicker, Dialog, Divider, DocTypeEmailDraft$2 as DocTypeEmailDraft, DocTypeEmailRecieved, DocTypeEmailSent, Drawer, DrawerMenu, Dropdown, EmailSentIcon, EmptyState, FooterActions, FormBody, FormContainer, FormGroup, FormHeader, Grid, HeaderToolbar, HomeIcon, IconButton, InfoCircleIcon, Input, InputLabel, InsertLinkIcon, LawconnectIcon, LeapLogo, List, ListItem, ListItemAvatar, ListItemHoverContent, ListItemIcon, ListItemText, ListSubheader, Loader, LoaderIcon, Menu, MenuContext, MenuHeader, MenuItem, MenuItemSystem, MoreVerticalIcon, NewAppointmentIcon as NewAppoinmentIcon, PoweredByLawconnectLogo, PreviewIcon, Radio, ReportingIcon, ResponseIcon, RevokeAccessIcon, SearchIcon, SelectFilterEmptyIcon, SelectFilterFilledIcon, SidebarLayout, Switch, Tab, TabListItem, Table, TableBody, TableCell, TableCellIcon, TableContainer, TableFooter, TableHead, TableRow, Tabs, Tag, ThemeProvider, TickIcon, Toolbar, ToolbarButton, Tooltip, TwoColumnLayout, Typography, UserLinkIcon, UserLockIcon, UsersIcon, WarningIcon, baseline, createFilterOptions, themeDesktop, themeWeb };
47985
48059
  //# sourceMappingURL=index.esm.js.map