@galaxy-ds/core 2.1.8 → 2.1.10
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.
- package/dist/AccordionPanel/AccordionPanel.stories.d.ts +296 -0
- package/dist/AccordionSummary/AccordionSummary.stories.d.ts +602 -14
- package/dist/AccordionSummary/AccordionSummary.types.d.ts +1 -0
- package/dist/Alert/Alert.d.ts +3 -0
- package/dist/Alert/Alert.stories.d.ts +1523 -0
- package/dist/Alert/Alert.styled.d.ts +7 -0
- package/dist/Alert/Alert.types.d.ts +12 -0
- package/dist/Autocomplete/Autocomplete.stories.d.ts +359 -0
- package/dist/FormBody/FormBody.stories.d.ts +11 -0
- package/dist/FormGroup/FormGroup.stories.d.ts +6 -0
- package/dist/Icons/gui/icons.d.ts +102 -0
- package/dist/Icons/gui-icons.stories.d.ts +1020 -0
- package/dist/Icons/leap/ChevronCircleRight16.d.ts +2 -0
- package/dist/Icons/leap/ChevronCircleRight20.d.ts +2 -0
- package/dist/Icons/leap/ChevronCircleRight24.d.ts +2 -0
- package/dist/Icons/leap/Info11.d.ts +2 -0
- package/dist/Icons/leap/Info13.d.ts +2 -0
- package/dist/Icons/leap/Info15.d.ts +2 -0
- package/dist/Icons/leap/Info20.d.ts +2 -0
- package/dist/Icons/leap/WindowsSettings16.d.ts +2 -0
- package/dist/Icons/leap/icons.d.ts +9 -1
- package/dist/Icons/leap/index.d.ts +8 -0
- package/dist/Input/Input.stories.d.ts +192 -55
- package/dist/Input/support/InlineUtilityExamples.d.ts +1 -0
- package/dist/Input/support/InlineUtilityWebExamples.d.ts +1 -0
- package/dist/Input/support/InputUtilityChildrenExamples.d.ts +3 -0
- package/dist/Input/support/InputUtilityChildrenWebExamples.d.ts +3 -0
- package/dist/Input/support/InputUtilityExample.d.ts +11 -0
- package/dist/Input/support/InputUtilityWebExample.d.ts +11 -0
- package/dist/InputLabel/InputLabel.stories.d.ts +11 -0
- package/dist/StickyLayout/StickyLayout.stories.d.ts +6 -0
- package/dist/Switch/Switch.stories.d.ts +1 -0
- package/dist/TextEditor/TextEditor.types.d.ts +1 -0
- package/dist/TextEditor/extensions/TabIndent/TabIndent.d.ts +3 -0
- package/dist/TextEditor/extensions/TabIndent/index.d.ts +1 -0
- package/dist/TextEditor/extensions/index.d.ts +1 -0
- package/dist/index.esm.js +105 -12
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +112 -11
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
type InputUtilityButtonProps = {
|
|
3
|
+
leftChildren?: React.ReactNode;
|
|
4
|
+
rightChildren?: React.ReactNode;
|
|
5
|
+
label?: string;
|
|
6
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
7
|
+
value?: string;
|
|
8
|
+
width?: number;
|
|
9
|
+
};
|
|
10
|
+
export declare const InputUtilityWebExample: ({ label, onChange, value, leftChildren, rightChildren, width, }: InputUtilityButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -25,3 +25,14 @@ export declare const Default: {
|
|
|
25
25
|
};
|
|
26
26
|
render: () => import("react/jsx-runtime").JSX.Element;
|
|
27
27
|
};
|
|
28
|
+
export declare const LabelWithInfo: {
|
|
29
|
+
args: {};
|
|
30
|
+
parameters: {
|
|
31
|
+
docs: {
|
|
32
|
+
source: {
|
|
33
|
+
code: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
render: () => import("react/jsx-runtime").JSX.Element;
|
|
38
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TabIndent } from './TabIndent';
|
package/dist/index.esm.js
CHANGED
|
@@ -912,7 +912,6 @@ var autocompleteOverrides$1 = {
|
|
|
912
912
|
marginBottom: 0,
|
|
913
913
|
},
|
|
914
914
|
endAdornment: {
|
|
915
|
-
top: 'calc(50% - 12px)',
|
|
916
915
|
marginLeft: 0,
|
|
917
916
|
},
|
|
918
917
|
popper: {
|
|
@@ -1317,6 +1316,9 @@ var inputBaseOverrides$1 = {
|
|
|
1317
1316
|
},
|
|
1318
1317
|
'&.Mui-error': {
|
|
1319
1318
|
borderColor: theme.palette.error.main,
|
|
1319
|
+
'&.Mui-focused': {
|
|
1320
|
+
outline: "1px solid ".concat(theme.palette.error.main),
|
|
1321
|
+
},
|
|
1320
1322
|
},
|
|
1321
1323
|
'&.Mui-disabled': {
|
|
1322
1324
|
backgroundColor: theme.palette.grey[100], // TODO: to match with design
|
|
@@ -1375,7 +1377,7 @@ var inputBaseOverrides$1 = {
|
|
|
1375
1377
|
},
|
|
1376
1378
|
adornedStart: {
|
|
1377
1379
|
'& svg:first-of-type': {
|
|
1378
|
-
marginLeft:
|
|
1380
|
+
marginLeft: 3,
|
|
1379
1381
|
},
|
|
1380
1382
|
},
|
|
1381
1383
|
input: {
|
|
@@ -2509,7 +2511,7 @@ var autocompleteOverrides = {
|
|
|
2509
2511
|
marginBottom: 0,
|
|
2510
2512
|
},
|
|
2511
2513
|
endAdornment: {
|
|
2512
|
-
top: 'calc(50% -
|
|
2514
|
+
top: 'calc(50% - 2px)',
|
|
2513
2515
|
marginLeft: 0,
|
|
2514
2516
|
},
|
|
2515
2517
|
popper: {
|
|
@@ -2917,6 +2919,11 @@ var inputBaseOverrides = {
|
|
|
2917
2919
|
transition: 'border-color .15s ease-in-out, box-shadow .15s ease-in-out',
|
|
2918
2920
|
'&.Mui-error': {
|
|
2919
2921
|
borderColor: theme.palette.error.main,
|
|
2922
|
+
'&.Mui-focused': {
|
|
2923
|
+
borderColor: theme.palette.error.main,
|
|
2924
|
+
boxShadow: 'none',
|
|
2925
|
+
outline: "1px solid ".concat(theme.palette.error.main),
|
|
2926
|
+
},
|
|
2920
2927
|
},
|
|
2921
2928
|
'&.Mui-disabled': {
|
|
2922
2929
|
opacity: 0.5, // TODO: to match with design
|
|
@@ -2956,6 +2963,7 @@ var inputBaseOverrides = {
|
|
|
2956
2963
|
height: 'auto',
|
|
2957
2964
|
'.customLargeSize &': {
|
|
2958
2965
|
maxHeight: 34,
|
|
2966
|
+
padding: '8px 32px 8px 18px',
|
|
2959
2967
|
},
|
|
2960
2968
|
'.MuiAutocomplete-root [class*="MuiInputBase-root"] .MuiAutocomplete-input&': {
|
|
2961
2969
|
padding: '2px 4px',
|
|
@@ -3814,6 +3822,14 @@ function CaretUp12Icon(props) {
|
|
|
3814
3822
|
return (jsx(SvgIcon, __assign({}, props, { children: jsx("svg", { width: "12", height: "12", viewBox: "0 0 12 12", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.25 7.99887L2.75 7.99887L6 4.5L9.25 7.99887Z", fill: "currentColor" }) }) })));
|
|
3815
3823
|
}
|
|
3816
3824
|
|
|
3825
|
+
function ChevronCircleRight20Icon(props) {
|
|
3826
|
+
return (jsx("svg", __assign({ width: "20", height: "20", viewBox: "0 0 20 20", fill: "none" }, props, { children: jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.0001 16.375C6.47925 16.375 3.62506 13.5208 3.62506 10C3.62506 6.47919 6.47925 3.625 10.0001 3.625C13.5209 3.625 16.3751 6.47919 16.3751 10C16.3751 13.5208 13.5209 16.375 10.0001 16.375ZM2.62506 10C2.62506 14.0731 5.92696 17.375 10.0001 17.375C14.0732 17.375 17.3751 14.0731 17.3751 10C17.3751 5.9269 14.0732 2.625 10.0001 2.625C5.92696 2.625 2.62506 5.9269 2.62506 10ZM8.39651 12.7714C8.20125 12.9667 8.20125 13.2833 8.39651 13.4786C8.59177 13.6738 8.90835 13.6738 9.10361 13.4786L12.2286 10.3536C12.4239 10.1583 12.4239 9.84171 12.2286 9.64645L9.10361 6.52145C8.90835 6.32619 8.59177 6.32619 8.39651 6.52145C8.20125 6.71671 8.20125 7.03329 8.39651 7.22855L11.168 10L8.39651 12.7714Z", fill: "#1E365E" }) })));
|
|
3827
|
+
}
|
|
3828
|
+
|
|
3829
|
+
function ChevronCircleRight24Icon(props) {
|
|
3830
|
+
return (jsx("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none" }, props, { children: jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 19.75C7.71979 19.75 4.25 16.2802 4.25 12C4.25 7.71979 7.71979 4.25 12 4.25C16.2802 4.25 19.75 7.71979 19.75 12C19.75 16.2802 16.2802 19.75 12 19.75ZM3.25 12C3.25 16.8325 7.16751 20.75 12 20.75C16.8325 20.75 20.75 16.8325 20.75 12C20.75 7.16751 16.8325 3.25 12 3.25C7.16751 3.25 3.25 7.16751 3.25 12ZM10.1464 15.3964C9.95118 15.5917 9.95118 15.9083 10.1464 16.1036C10.3417 16.2988 10.6583 16.2988 10.8536 16.1036L14.6036 12.3536C14.7988 12.1583 14.7988 11.8417 14.6036 11.6464L10.8536 7.89645C10.6583 7.70118 10.3417 7.70118 10.1464 7.89645C9.95118 8.09171 9.95118 8.40829 10.1464 8.60355L13.5429 12L10.1464 15.3964Z", fill: "#1E365E" }) })));
|
|
3831
|
+
}
|
|
3832
|
+
|
|
3817
3833
|
function ChevronLeftIcon(props) {
|
|
3818
3834
|
return (jsx(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.91782 3.6263L10.5822 4.3737L6.5026 8L10.5822 11.6263L9.91782 12.3737L4.9974 8L9.91782 3.6263Z" }) })));
|
|
3819
3835
|
}
|
|
@@ -3862,6 +3878,22 @@ function HomeIcon(props) {
|
|
|
3862
3878
|
return (jsx(SvgIcon, __assign({}, props, { viewBox: "0 0 20 20", children: jsx("path", { d: "M8.2 18v-5.647h3.6V18h4.5v-7.53H19L10 2l-9 8.47h2.7V18h4.5z", fill: "currentColor" }) })));
|
|
3863
3879
|
}
|
|
3864
3880
|
|
|
3881
|
+
function Info11Icon(props) {
|
|
3882
|
+
return (jsx("svg", __assign({ width: "11", height: "11", viewBox: "0 0 11 11" }, props, { children: jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.5 10C7.98528 10 10 7.98528 10 5.5C10 3.01472 7.98528 1 5.5 1C3.01472 1 1 3.01472 1 5.5C1 7.98528 3.01472 10 5.5 10ZM6.125 3C6.125 3.34518 5.84518 3.625 5.5 3.625C5.15482 3.625 4.875 3.34518 4.875 3C4.875 2.65482 5.15482 2.375 5.5 2.375C5.84518 2.375 6.125 2.65482 6.125 3ZM5.49988 4.625C5.77602 4.625 5.99988 4.84886 5.99988 5.125V8.125C5.99988 8.40114 5.77602 8.625 5.49988 8.625C5.22374 8.625 4.99988 8.40114 4.99988 8.125L4.99988 5.125C4.99988 4.84886 5.22374 4.625 5.49988 4.625Z", fill: "#1E365E" }) })));
|
|
3883
|
+
}
|
|
3884
|
+
|
|
3885
|
+
function Info13Icon(props) {
|
|
3886
|
+
return (jsx("svg", __assign({ width: "13", height: "13", viewBox: "0 0 13 13" }, props, { children: jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.5 12C9.53757 12 12 9.53757 12 6.5C12 3.46243 9.53757 1 6.5 1C3.46243 1 1 3.46243 1 6.5C1 9.53757 3.46243 12 6.5 12ZM7.125 3.5C7.125 3.84518 6.84518 4.125 6.5 4.125C6.15482 4.125 5.875 3.84518 5.875 3.5C5.875 3.15482 6.15482 2.875 6.5 2.875C6.84518 2.875 7.125 3.15482 7.125 3.5ZM6.49988 5.125C6.77602 5.125 6.99988 5.34886 6.99988 5.625V9.625C6.99988 9.90114 6.77602 10.125 6.49988 10.125C6.22374 10.125 5.99988 9.90114 5.99988 9.625V5.625C5.99988 5.34886 6.22374 5.125 6.49988 5.125Z", fill: "#1E365E" }) })));
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
function Info15Icon(props) {
|
|
3890
|
+
return (jsx("svg", __assign({ width: "15", height: "15", viewBox: "0 0 15 15" }, props, { children: jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.5 14C11.0899 14 14 11.0899 14 7.5C14 3.91015 11.0899 1 7.5 1C3.91015 1 1 3.91015 1 7.5C1 11.0899 3.91015 14 7.5 14ZM8.12499 4.76893C8.12499 5.1141 7.84517 5.39393 7.49999 5.39393C7.15481 5.39393 6.87499 5.1141 6.87499 4.76893C6.87499 4.42375 7.15481 4.14393 7.49999 4.14393C7.84517 4.14393 8.12499 4.42375 8.12499 4.76893ZM7.49987 6.39393C7.77601 6.39393 7.99987 6.61778 7.99987 6.89393V10.8939C7.99987 11.1701 7.77601 11.3939 7.49987 11.3939C7.22373 11.3939 6.99987 11.1701 6.99987 10.8939V6.89393C6.99987 6.61778 7.22373 6.39393 7.49987 6.39393Z", fill: "#1E365E" }) })));
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
function Info20Icon(props) {
|
|
3894
|
+
return (jsx(SvgIcon, __assign({}, props, { children: jsx("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: jsx("path", { d: "M18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18C14.4183 18 18 14.4183 18 10ZM9.50806 8.91012C9.55039 8.67687 9.75454 8.49999 10 8.49999C10.2455 8.49999 10.4496 8.67687 10.4919 8.91012L10.5 8.99999V13.5021L10.4919 13.592C10.4496 13.8253 10.2455 14.0021 10 14.0021C9.75454 14.0021 9.55039 13.8253 9.50806 13.592L9.5 13.5021V8.99999L9.50806 8.91012ZM9.25 6.74999C9.25 6.33578 9.58579 5.99999 10 5.99999C10.4142 5.99999 10.75 6.33578 10.75 6.74999C10.75 7.16421 10.4142 7.49999 10 7.49999C9.58579 7.49999 9.25 7.16421 9.25 6.74999Z", fill: "currentColor" }) }) })));
|
|
3895
|
+
}
|
|
3896
|
+
|
|
3865
3897
|
function InsertLinkIcon(props) {
|
|
3866
3898
|
return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.646 13.354l-4.5-4.5a.5.5 0 010-.708l4.5-4.5.708.708L6.707 8H14v1H6.707l3.647 3.646-.708.707z", fill: "#1E365E" }), jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 3h5v1H2v9h4v1H1V3z", fill: "#1E365E" })] })));
|
|
3867
3899
|
}
|
|
@@ -3950,6 +3982,10 @@ function Bylawyers16Icon(props) {
|
|
|
3950
3982
|
return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsx("path", { d: "M4 1H14V4H4V1Z", fill: "white" }), jsx("path", { d: "M3.5 13.5L3.5 1.97187C3.5 3.24685 4.18541 3.475 5.15809 3.475L12.5 3.475C13.6046 3.475 14.5 4.37043 14.5 5.475L14.5 13.5C14.5 14.6046 13.6046 15.5 12.5 15.5L5.5 15.5C4.39543 15.5 3.5 14.6046 3.5 13.5Z", fill: "white" }), jsx("path", { d: "M3.5 1.97187L3.5 13.5C3.5 14.6046 4.39543 15.5 5.5 15.5L12.5 15.5C13.6046 15.5 14.5 14.6046 14.5 13.5L14.5 5.475C14.5 4.37043 13.6046 3.475 12.5 3.475L5.15809 3.475C4.18541 3.475 3.5 3.24685 3.5 1.97187ZM3.5 1.97187C3.5 0.696902 4.16728 0.5 5.15809 0.5L14.5 0.5", stroke: "#979593", strokeLinecap: "round", strokeLinejoin: "round", fill: "white" }), jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 2C5 1.72386 5.22386 1.5 5.5 1.5H13.5C13.7761 1.5 14 1.72386 14 2C14 2.27614 13.7761 2.5 13.5 2.5H5.5C5.22386 2.5 5 2.27614 5 2Z", fill: "#979593" }), jsx("path", { d: "M10.3151 9.12405L8.88159 7.67774L11.0319 5.02614L12.9433 6.95456L10.3151 9.12405Z", fill: "#F69139" }), jsx("path", { d: "M8.14246 8.42417L6.15368 8.7433L5.03125 12.7513L6.96167 10.8188C6.9304 10.7524 6.9129 10.6781 6.9129 10.5997C6.9129 10.3173 7.13982 10.0883 7.41974 10.0883C7.69966 10.0883 7.92657 10.3173 7.92657 10.5997C7.92657 10.8821 7.69966 11.111 7.41974 11.111C7.34097 11.111 7.2664 11.0929 7.19991 11.0606L5.26253 13L9.32022 11.938L9.59797 9.89264L10.0989 9.38729L8.64335 7.91882L8.14246 8.42417Z", fill: "black" })] })));
|
|
3951
3983
|
}
|
|
3952
3984
|
|
|
3985
|
+
function ChevronCircleRight16Icon(props) {
|
|
3986
|
+
return (jsx("svg", __assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props, { children: jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8 13C5.23858 13 3 10.7614 3 8C3 5.23858 5.23858 3 8 3C10.7614 3 13 5.23858 13 8C13 10.7614 10.7614 13 8 13ZM2 8C2 11.3137 4.68629 14 8 14C11.3137 14 14 11.3137 14 8C14 4.68629 11.3137 2 8 2C4.68629 2 2 4.68629 2 8ZM6.64645 10.1464C6.45118 10.3417 6.45118 10.6583 6.64645 10.8536C6.84171 11.0488 7.15829 11.0488 7.35355 10.8536L9.85355 8.35355C9.94732 8.25979 10 8.13261 10 8C10 7.86739 9.94732 7.74022 9.85355 7.64645L7.35355 5.14645C7.15829 4.95118 6.84171 4.95118 6.64645 5.14645C6.45118 5.34171 6.45118 5.65829 6.64645 5.85355L8.79289 8L6.64645 10.1464Z", fill: "#1E365E" }) })));
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3953
3989
|
function Clause16Icon(props) {
|
|
3954
3990
|
return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsx("path", { d: "M4 1H14V4H4V1Z", fill: "white" }), jsx("path", { d: "M3.5 13.5L3.5 1.97187C3.5 3.24685 4.18541 3.475 5.15809 3.475L12.5 3.475C13.6046 3.475 14.5 4.37043 14.5 5.475L14.5 13.5C14.5 14.6046 13.6046 15.5 12.5 15.5L5.5 15.5C4.39543 15.5 3.5 14.6046 3.5 13.5Z", fill: "white" }), jsx("path", { d: "M3.5 1.97187L3.5 13.5C3.5 14.6046 4.39543 15.5 5.5 15.5L12.5 15.5C13.6046 15.5 14.5 14.6046 14.5 13.5L14.5 5.475C14.5 4.37043 13.6046 3.475 12.5 3.475L5.15809 3.475C4.18541 3.475 3.5 3.24685 3.5 1.97187ZM3.5 1.97187C3.5 0.696902 4.16728 0.5 5.15809 0.5L14.5 0.5", stroke: "#979593", strokeLinecap: "round", strokeLinejoin: "round", fill: "white" }), jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 2C5 1.72386 5.22386 1.5 5.5 1.5H13.5C13.7761 1.5 14 1.72386 14 2C14 2.27614 13.7761 2.5 13.5 2.5H5.5C5.22386 2.5 5 2.27614 5 2Z", fill: "#979593" }), jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.5 7C5.22386 7 5 7.22386 5 7.5C5 7.77614 5.22386 8 5.5 8H12.5C12.7761 8 13 7.77614 13 7.5C13 7.22386 12.7761 7 12.5 7H5.5ZM5.5 9C5.22386 9 5 9.22386 5 9.5C5 9.77614 5.22386 10 5.5 10L12.5 10C12.7761 10 13 9.77614 13 9.5C13 9.22386 12.7761 9 12.5 9L5.5 9Z", fill: "#41A5EE" })] })));
|
|
3955
3991
|
}
|
|
@@ -4046,6 +4082,10 @@ function VoiceMemo16Icon(props) {
|
|
|
4046
4082
|
return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsxs("g", { clipPath: "url(#clip0_1050_1821)", children: [jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8 10.7102C6.61947 10.7097 5.50045 9.48897 5.5 7.98298V3.43737C5.50045 1.93138 6.61947 0.710662 8 0.710175C9.38053 0.710662 10.4996 1.93138 10.5 3.43737V7.98298C10.5005 9.50121 9.33205 10.7106 8 10.7102Z", fill: "white", stroke: "#979593", strokeLinecap: "round", strokeLinejoin: "round" }), jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.24953 8C2.24953 7.72386 2.02567 7.5 1.74953 7.5C1.47338 7.5 1.24953 7.72386 1.24953 8C1.24953 11.5158 4.01172 14.3839 7.50032 14.6358V16C7.50032 16.2761 7.72418 16.5 8.00032 16.5C8.27646 16.5 8.50032 16.2761 8.50032 16V14.6358C11.9886 14.3836 14.7505 11.5156 14.7505 8C14.7505 7.72386 14.5266 7.5 14.2505 7.5C13.9743 7.5 13.7505 7.72386 13.7505 8C13.7505 11.1152 11.1833 13.6538 8 13.6538C4.81672 13.6538 2.24953 11.1152 2.24953 8Z", fill: "#979593" })] }), jsx("defs", { children: jsx("clipPath", { id: "clip0_1050_1821", children: jsx("rect", { width: "16", height: "16", fill: "white" }) }) })] })));
|
|
4047
4083
|
}
|
|
4048
4084
|
|
|
4085
|
+
function WindowsSettings16Icon(props) {
|
|
4086
|
+
return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsx("path", { fill: "none", d: "M8.00812 1.50012C8.49743 1.50576 8.98484 1.5623 9.46246 1.66881C9.67095 1.71531 9.82688 1.88913 9.85054 2.10143L9.96401 3.11933C10.0154 3.5867 10.41 3.94068 10.8804 3.94118C11.0069 3.94137 11.1319 3.91504 11.2488 3.86334L12.1825 3.45316C12.3767 3.36785 12.6036 3.41436 12.7486 3.5692C13.4234 4.28988 13.926 5.15422 14.2185 6.09718C14.2815 6.30051 14.2089 6.52148 14.0376 6.64779L13.2099 7.25785C12.9738 7.43131 12.8344 7.70679 12.8344 7.99976C12.8344 8.29273 12.9738 8.5682 13.2104 8.74205L14.0388 9.35232C14.2102 9.47861 14.2829 9.69961 14.2198 9.90298C13.9274 10.8458 13.4251 11.7101 12.7507 12.4309C12.6059 12.5857 12.3792 12.6323 12.185 12.5472L11.2474 12.1365C10.9792 12.0191 10.6712 12.0363 10.4177 12.1828C10.1642 12.3293 9.99551 12.5876 9.9633 12.8786L9.85058 13.8964C9.82734 14.1063 9.67477 14.2789 9.46935 14.3278C8.50372 14.5575 7.49765 14.5575 6.53202 14.3278C6.3266 14.2789 6.17403 14.1063 6.15079 13.8964L6.03824 12.8801C6.00518 12.5896 5.83623 12.3321 5.58295 12.1861C5.32967 12.0401 5.02214 12.023 4.7548 12.1397L3.81705 12.5506C3.62281 12.6357 3.39602 12.589 3.25119 12.4341C2.57642 11.7124 2.07413 10.8471 1.78213 9.90332C1.71924 9.70003 1.79191 9.4792 1.96323 9.35299L2.79212 8.74233C3.02821 8.56887 3.16765 8.29339 3.16765 8.00043C3.16765 7.70746 3.02821 7.43198 2.79181 7.25829L1.96344 6.64869C1.79186 6.52242 1.71913 6.30131 1.78224 6.09784C2.07475 5.15489 2.5773 4.29055 3.25208 3.56987C3.39706 3.41503 3.62396 3.36852 3.81816 3.45383L4.75175 3.86394C5.02037 3.98183 5.3292 3.96402 5.58385 3.81525C5.83739 3.66818 6.00619 3.4096 6.03878 3.11855L6.15216 2.10143C6.17584 1.88902 6.33191 1.71515 6.54054 1.66875C7.01872 1.5624 7.50663 1.50589 8.00812 1.50012Z", stroke: "#1E365E" }), jsx("path", { fill: "none", d: "M9.99984 8.00012C9.99984 9.10469 9.10441 10.0001 7.99984 10.0001C6.89527 10.0001 5.99984 9.10469 5.99984 8.00012C5.99984 6.89555 6.89527 6.00012 7.99984 6.00012C9.10441 6.00012 9.99984 6.89555 9.99984 8.00012Z", stroke: "#1E365E" })] })));
|
|
4087
|
+
}
|
|
4088
|
+
|
|
4049
4089
|
function Zyphta16Icon(props) {
|
|
4050
4090
|
return (jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsxs("g", { clipPath: "url(#clip0_165_2861)", children: [jsx("path", { d: "M11.6432 1.00086L4.81032 1.00086C4.81032 1.00086 4.67769 0.985647 4.58521 1.08287C4.49274 1.18009 4.50155 1.2633 4.50155 1.33985L4.50155 14.4797C4.50155 14.7525 4.48255 14.8146 4.57502 14.9118C4.6675 15.0091 4.75681 14.9982 4.99467 14.9982L14.0068 14.9982C14.1376 14.9982 14.3182 15.0188 14.4107 14.9216C14.5031 14.8244 14.4999 14.6172 14.4999 14.4797L14.4999 3.9592C14.4999 3.82172 14.4479 3.68988 14.3554 3.59268L11.9919 1.15276C11.8994 1.05553 11.774 1.00089 11.6432 1.00086Z", fill: "white" }), jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.0296 0.000864316C11.0198 0.000290348 11.0099 -6.56541e-07 10.9999 -6.55671e-07C10.99 -6.548e-07 10.9801 0.000290351 10.9703 0.000864321L4.8369 0.000864857C4.81993 0.000233884 4.80141 -0.000104073 4.78152 2.83704e-05C4.72074 0.000433151 4.64072 0.00526107 4.54896 0.0223922C4.36985 0.0558296 4.09548 0.146802 3.86067 0.393666C3.69304 0.569893 3.58196 0.777547 3.53208 1.00425C3.49285 1.18258 3.50158 1.37019 3.50158 1.33985L3.50158 14.4797C3.50158 14.5198 3.50122 14.5455 3.50083 14.574C3.50057 14.5933 3.50028 14.614 3.50008 14.6413C3.49974 14.6878 3.4992 14.7763 3.50965 14.8711C3.52155 14.9791 3.54947 15.1187 3.62034 15.2687C3.69018 15.4166 3.77851 15.5254 3.85048 15.601C3.93808 15.6931 4.05109 15.7862 4.19605 15.8593C4.33939 15.9316 4.47498 15.9645 4.58378 15.9807C4.68419 15.9955 4.77497 15.9976 4.8303 15.9983C4.86366 15.9987 4.9103 15.9985 4.94873 15.9983L4.99469 15.9982L14.0068 15.9982C14.0232 15.9982 14.0273 15.9983 14.0341 15.9985C14.0426 15.9988 14.0553 15.9993 14.1007 15.9998C14.1499 16.0004 14.229 16.0003 14.3183 15.9918C14.4687 15.9774 14.8373 15.924 15.1353 15.6108C15.4088 15.3232 15.4641 14.9774 15.4813 14.8472C15.5008 14.7004 15.5002 14.5549 15.5 14.4943L15.5 14.4797L15.4999 3.959C15.4999 3.57201 15.3541 3.19143 15.08 2.90334L12.7125 0.459413C12.4371 0.172104 12.054 0.000956435 11.6435 0.000864262L11.0296 0.000864316ZM10.4999 1.00086L4.81035 1.00086C4.81035 1.00086 4.67771 0.985647 4.58524 1.08287C4.50011 1.17237 4.50082 1.24999 4.50146 1.32147L4.50158 1.33985L4.50158 14.4797C4.50158 14.5241 4.50108 14.5629 4.50063 14.5971C4.49834 14.7736 4.49761 14.8304 4.57505 14.9118C4.65856 14.9996 4.73949 14.9993 4.92957 14.9984L4.99469 14.9982L14.0068 14.9982C14.0257 14.9982 14.0457 14.9986 14.0662 14.999C14.1879 15.0017 14.3316 15.0048 14.4107 14.9216C14.5002 14.8275 14.5001 14.6304 14.5 14.4932L14.4999 5.99814C14.4856 5.99937 14.4711 6 14.4565 6L11.6562 6C11.3046 6 10.9453 5.87848 10.7578 5.67969C10.4999 5.40633 10.4999 5.07485 10.4999 4.68765L10.4999 1.00086ZM14.4999 5.00186L14.4999 3.9592C14.4999 3.82172 14.448 3.68988 14.3555 3.59268L11.9919 1.15276C11.8994 1.05553 11.774 1.00089 11.6433 1.00086L11.4999 1.00086L11.4999 4.54273C11.4999 4.73437 11.5303 4.81853 11.6093 4.90234C11.6874 4.98516 11.7617 5 11.9028 5L14.4565 5C14.4711 5 14.4856 5.00063 14.4999 5.00186Z", fill: "#979593" }), jsx("path", { d: "M8.41522 12.5C8.41522 12.2239 8.63908 12 8.91522 12L12.9999 12C13.276 12 13.4999 12.2239 13.4999 12.5C13.4999 12.7761 13.276 13 12.9999 13L8.91522 13C8.63908 13 8.41522 12.7761 8.41522 12.5Z", fill: "#C8C6C4" }), jsx("path", { d: "M8.41522 10.5C8.41522 10.2239 8.63908 10 8.91522 10L12.9999 10C13.276 10 13.4999 10.2239 13.4999 10.5C13.4999 10.7761 13.276 11 12.9999 11L8.91522 11C8.63908 11 8.41522 10.7761 8.41522 10.5Z", fill: "#C8C6C4" }), jsx("path", { d: "M8.91522 8C8.63908 8 8.41522 8.22386 8.41522 8.5C8.41522 8.77614 8.63908 9 8.91522 9L12.9999 9C13.276 9 13.4999 8.77614 13.4999 8.5C13.4999 8.22386 13.276 8 12.9999 8L8.91522 8Z", fill: "#C8C6C4" }), jsx("path", { d: "M1.22721 14L7.77263 14C7.96551 14 8.1505 13.9233 8.28689 13.7869C8.42328 13.6506 8.4999 13.4656 8.4999 13.2727L8.4999 6.72727C8.4999 6.53438 8.42328 6.3494 8.28689 6.21301C8.1505 6.07662 7.96551 6 7.77263 6L1.22721 6C1.03432 6 0.849341 6.07662 0.712951 6.21301C0.576562 6.3494 0.499939 6.53439 0.499939 6.72727L0.49994 13.2727C0.49994 13.4656 0.576562 13.6506 0.712952 13.7869C0.849341 13.9233 1.03432 14 1.22721 14Z", fill: "#263E60" }), jsx("path", { d: "M6.83319 10.1998L6.80342 10.2391C6.54492 10.1475 6.14375 10.0673 5.87167 9.97101C5.8629 10.0396 5.85149 10.0991 5.84817 10.159C5.80417 10.9512 5.80662 12.0738 5.75953 12.8658L5.75953 13.0016L4.79444 13.0016C4.8392 13.0016 4.61812 13.0016 4.61812 13.0016C4.5893 12.92 4.57009 12.8411 4.54495 12.7747C4.33428 12.2184 4.09382 11.3796 3.7316 10.8977C3.67443 10.8216 3.67832 10.7726 3.72904 10.6993C3.94926 10.3809 4.24401 9.99539 4.37422 9.63007C4.41731 9.50917 4.38165 9.45887 4.28039 9.39608C4.02913 9.2402 3.80955 9.08718 3.57118 8.91307C3.43417 8.81302 3.23447 8.64761 3.20751 8.48296C3.17644 8.29289 3.0586 7.85351 3.05974 7.66153C3.0609 7.46569 3.0066 7.30309 2.85928 7.17309C2.71092 7.04219 2.50156 6.81994 2.35895 6.69799C2.45198 6.70695 2.6785 6.78368 2.78874 6.79335C3.30687 6.8387 3.76066 6.86281 4.28039 6.79335C4.58994 6.75196 4.96728 6.68694 5.27932 6.69799C5.87689 6.71919 6.2883 7.10504 6.39355 7.628C6.41886 7.75369 6.52194 8.12973 6.52404 8.25818C6.52816 8.50869 6.51703 8.75947 6.52234 9.00995C6.52692 9.22596 6.54205 9.44194 6.55898 9.65744C6.57569 9.86996 6.63809 10.0651 6.83319 10.1998Z", fill: "white" })] }), jsx("defs", { children: jsx("clipPath", { id: "clip0_165_2861", children: jsx("rect", { width: "16", height: "16", fill: "white", transform: "matrix(1 0 0 -1 0 16)" }) }) })] })));
|
|
4051
4091
|
}
|
|
@@ -4107,8 +4147,10 @@ function NewEntryRibbonIcons() {
|
|
|
4107
4147
|
}
|
|
4108
4148
|
|
|
4109
4149
|
var AccordionSummary = function (props) {
|
|
4110
|
-
var bgColor = props.bgColor, rest = __rest(props, ["bgColor"]);
|
|
4111
|
-
return (jsx(AccordionSummary$1, __assign({ expandIcon: jsx(Icon, { name: ChevronDownIcon }), sx: { backgroundColor: bgColor
|
|
4150
|
+
var bgColor = props.bgColor, isStartAdornment = props.isStartAdornment, sx = props.sx, rest = __rest(props, ["bgColor", "isStartAdornment", "sx"]);
|
|
4151
|
+
return (jsx(AccordionSummary$1, __assign({ expandIcon: jsx(Icon, { name: ChevronDownIcon }), sx: __assign({ backgroundColor: bgColor, flexDirection: isStartAdornment ? 'row-reverse' : 'row', '& .MuiAccordionSummary-content': {
|
|
4152
|
+
marginLeft: isStartAdornment ? '10px' : '0',
|
|
4153
|
+
} }, sx) }, rest, { children: props.children })));
|
|
4112
4154
|
};
|
|
4113
4155
|
|
|
4114
4156
|
function ActivityTypeDefault(props) {
|
|
@@ -5208,8 +5250,8 @@ styled(MuiTypography)(function (_a) {
|
|
|
5208
5250
|
});
|
|
5209
5251
|
|
|
5210
5252
|
var Autocomplete = function (_a) {
|
|
5211
|
-
var label = _a.label, placeholder = _a.placeholder, _b = _a.platform, platform = _b === void 0 ? 'desktop' : _b, actionLabel = _a.actionLabel, actionClick = _a.actionClick, onChange = _a.onChange, bottomButtonHeight = _a.bottomButtonHeight, renderInput = _a.renderInput, rest = __rest(_a, ["label", "placeholder", "platform", "actionLabel", "actionClick", "onChange", "bottomButtonHeight", "renderInput"]);
|
|
5212
|
-
var
|
|
5253
|
+
var label = _a.label, placeholder = _a.placeholder, _b = _a.platform, platform = _b === void 0 ? 'desktop' : _b, actionLabel = _a.actionLabel, actionClick = _a.actionClick, onChange = _a.onChange, bottomButtonHeight = _a.bottomButtonHeight, renderInput = _a.renderInput, _c = _a.disableClearable, disableClearable = _c === void 0 ? true : _c, rest = __rest(_a, ["label", "placeholder", "platform", "actionLabel", "actionClick", "onChange", "bottomButtonHeight", "renderInput", "disableClearable"]);
|
|
5254
|
+
var _d = useState(placeholder), inputPlaceholder = _d[0], setInputPlaceholder = _d[1];
|
|
5213
5255
|
var root = useRef(null);
|
|
5214
5256
|
var onKeyDownHandler = function (event) {
|
|
5215
5257
|
var inputRootEl = (root === null || root === void 0 ? void 0 : root.current) &&
|
|
@@ -5227,7 +5269,7 @@ var Autocomplete = function (_a) {
|
|
|
5227
5269
|
var CustomPaper = function (props) {
|
|
5228
5270
|
return (jsx(StyledPaper, __assign({ bottomButtonHeight: bottomButtonHeight }, props, { children: jsxs(Fragment$1, { children: [props.children, actionLabel && (jsxs(Fragment$1, { children: [jsx(MuiDivider, {}), jsx(ListItemButton, { dense: true, onMouseDown: actionClick, children: jsx(StyledListContent, { children: jsx(Typography, { variant: platform === 'desktop' ? 'body1' : 'body2', align: "center", children: actionLabel }) }) })] }))] }) })));
|
|
5229
5271
|
};
|
|
5230
|
-
return (jsxs(Fragment$1, { children: [label && jsx(InputLabel, { children: label }), jsx(MuiAutocomplete, __assign({ disableClearable:
|
|
5272
|
+
return (jsxs(Fragment$1, { children: [label && jsx(InputLabel, { children: label }), jsx(MuiAutocomplete, __assign({ disableClearable: disableClearable, renderInput: renderInput
|
|
5231
5273
|
? renderInput
|
|
5232
5274
|
: function (params) { return (jsx(TextField, __assign({}, params, { inputProps: __assign(__assign({}, params.inputProps), { autoComplete: 'off' }), placeholder: inputPlaceholder, className: "customLargeSize" }))); }, PaperComponent: CustomPaper, onChange: function (event, value, reason) {
|
|
5233
5275
|
value && value.length > 0
|
|
@@ -40878,10 +40920,61 @@ var ExtensionPlaceholders = Node.create({
|
|
|
40878
40920
|
},
|
|
40879
40921
|
});
|
|
40880
40922
|
|
|
40923
|
+
var TAB_CHAR = '\u0009';
|
|
40924
|
+
var TabIndent = Extension.create({
|
|
40925
|
+
name: 'tabIndent',
|
|
40926
|
+
addKeyboardShortcuts: function () {
|
|
40927
|
+
return {
|
|
40928
|
+
Tab: function (_a) {
|
|
40929
|
+
var editor = _a.editor;
|
|
40930
|
+
var selection = editor.state.selection;
|
|
40931
|
+
var $from = selection.$from;
|
|
40932
|
+
if (editor.isActive('listItem') && $from.parentOffset === 0) {
|
|
40933
|
+
var sinkResult = editor.chain().sinkListItem('listItem').run();
|
|
40934
|
+
if (sinkResult) {
|
|
40935
|
+
return true;
|
|
40936
|
+
}
|
|
40937
|
+
}
|
|
40938
|
+
editor
|
|
40939
|
+
.chain()
|
|
40940
|
+
.command(function (_a) {
|
|
40941
|
+
var tr = _a.tr;
|
|
40942
|
+
tr.insertText(TAB_CHAR);
|
|
40943
|
+
return true;
|
|
40944
|
+
})
|
|
40945
|
+
.run();
|
|
40946
|
+
return true;
|
|
40947
|
+
},
|
|
40948
|
+
'Shift-Tab': function (_a) {
|
|
40949
|
+
var editor = _a.editor;
|
|
40950
|
+
var _b = editor.state, selection = _b.selection, doc = _b.doc;
|
|
40951
|
+
var $from = selection.$from;
|
|
40952
|
+
var pos = $from.pos;
|
|
40953
|
+
if (editor.isActive('listItem') && $from.parentOffset === 0) {
|
|
40954
|
+
return editor.chain().liftListItem('listItem').run();
|
|
40955
|
+
}
|
|
40956
|
+
if (doc.textBetween(pos - 1, pos) === TAB_CHAR) {
|
|
40957
|
+
editor
|
|
40958
|
+
.chain()
|
|
40959
|
+
.command(function (_a) {
|
|
40960
|
+
var tr = _a.tr;
|
|
40961
|
+
tr.delete(pos - 1, pos);
|
|
40962
|
+
return true;
|
|
40963
|
+
})
|
|
40964
|
+
.run();
|
|
40965
|
+
return true;
|
|
40966
|
+
}
|
|
40967
|
+
return true;
|
|
40968
|
+
},
|
|
40969
|
+
};
|
|
40970
|
+
},
|
|
40971
|
+
});
|
|
40972
|
+
|
|
40881
40973
|
var index = /*#__PURE__*/Object.freeze({
|
|
40882
40974
|
__proto__: null,
|
|
40883
40975
|
ExtensionPlaceholders: ExtensionPlaceholders,
|
|
40884
|
-
Placeholder: Placeholder
|
|
40976
|
+
Placeholder: Placeholder,
|
|
40977
|
+
TabIndent: TabIndent
|
|
40885
40978
|
});
|
|
40886
40979
|
|
|
40887
40980
|
var useEditor = function () {
|
|
@@ -45418,9 +45511,9 @@ var TextEditorContainer = styled$1('div')(function (_a) {
|
|
|
45418
45511
|
|
|
45419
45512
|
var TextEditor = function (props) {
|
|
45420
45513
|
var _a, _b, _c, _d;
|
|
45421
|
-
var extensions = __spreadArray([
|
|
45514
|
+
var extensions = __spreadArray(__spreadArray([
|
|
45422
45515
|
StarterKit.configure(__assign({ blockquote: false, bold: false, bulletList: false, code: false, codeBlock: false, dropcursor: {}, hardBreak: false, heading: false, horizontalRule: false, italic: false, listItem: false, orderedList: false, strike: false }, ((_a = props.formatting) !== null && _a !== void 0 ? _a : {})))
|
|
45423
|
-
], ((_b = props.extensions) !== null && _b !== void 0 ? _b : []), true);
|
|
45516
|
+
], (props.disableTabIndent ? [] : [TabIndent]), true), ((_b = props.extensions) !== null && _b !== void 0 ? _b : []), true);
|
|
45424
45517
|
var editor = useEditor$1({
|
|
45425
45518
|
extensions: extensions,
|
|
45426
45519
|
content: props.initialContent,
|
|
@@ -45502,5 +45595,5 @@ function PoweredByLawconnectLogo(props) {
|
|
|
45502
45595
|
// Themes
|
|
45503
45596
|
var iconsPath = '../Icons/lawconnect/';
|
|
45504
45597
|
|
|
45505
|
-
export { AccessIcon, Accordion, AccordionDetails, AccordionPanel, AccordionSummary, AccountingIcon, ActivityDefault16Icon, ActivityLog, ActivityTypeDefault, ActivityTypeDefault16, ActivityTypePhoneCall, ActivityTypePhoneCall16, ActivityTypeScannedDoc, ActivityTypeScannedDoc16, ActivityTypeVideoCall, ActivityTypeVideoCall16, AppBar, Appointment16Icon, AssignCurvedIcon, AttachmentIcon, AutoTimer24Icon, AutoTimerFilled24Icon, AutoTimerIconDarkTheme, AutoTimerIconLightTheme, Autocomplete, Avatar, AvatarBusinessIcon, AvatarCompanyIcon, AvatarGovernmentIcon, AvatarGroup, AvatarPeopleIcon, AvatarPersonIcon, AvatarTrustIcon, BlankLetter16Icon, BottomListButton, Box, Breadcrumbs, Browse2Icon, BrowseIcon, Button, ButtonCaretIcon, ButtonFilterIcon, Bylawyers16Icon as BylawyersIcon, CalendarIcon, CalendarRibbonIcon, Card, CaretDown12Icon, CaretIcon, CaretUp12Icon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, Chip, Clause16Icon, CoinEuroIcon$1 as CoinEuroIcon, CoinIcon, CoinPoundIcon, CostRecoveryExceeded16Icon, Cross16Icon, CrossIcon, CssBaseline, CoinEuroIcon as CurrencyEuroIcon, CurrencyIcon, CurrencyPoundIcon, DatePicker, DateRangePicker, DeleteRibbonIcon, Dialog, Divider, DocTypeAppointment$1 as DocTypeAppointment, DocTypeAppointment16, DocTypeAppointmentCriticalDate, DocTypeAppointmentCriticalDate16, DocTypeAudio, DocTypeAudio16, DocTypeEmailDraft$3 as DocTypeClausePrecedent, DocTypeClausePrecedent16, DocTypeAppointment as DocTypeComment, DocTypeComment16, DocTypeCriticalDate, DocTypeCriticalDate16, DocTypeDeadline, DocTypeDeadline16, DocTypeDefault, DocTypeDefault16, DocTypeEmail, DocTypeEmail16, DocTypeEmailDraft$2 as DocTypeEmailDraft, DocTypeEmailDraft16, DocTypeEmailDraft$1 as DocTypeEmailReceived, DocTypeEmailRecieved16 as DocTypeEmailReceived16, DocTypeEmailRecieved, DocTypeEmailSent, DocTypeEmailSent16, DocTypeExcel, DocTypeExcel16, DocTypeExcel16Shortcut, DocTypeFax, DocTypeFax16, DocTypeFileNote, DocTypeFileNote16, DocTypeFolder, DocTypeFolder16, DocTypeImage, DocTypeImage16, DocTypeInfotrack, DocTypeInfotrack16, DocTypeInvoiceRequest, DocTypeInvoiceRequest16, DocTypeInvoiceRequests, DocTypeInvoiceRequests16, DocTypeLetter, DocTypeLetter16, DocTypeMemo, DocTypeMemo16, DocTypePdf, DocTypePdf16, DocTypePowerpoint, DocTypePowerpoint16, DocTypeSMS, DocTypeSMS16, DocTypeScannedDoc16, DocTypeEmailDraft as DocTypeSignatureDeclined, DocTypeSignatureDeclined16, DocTypeSignaturePending, DocTypeSignaturePending16, DocTypeSignatureRequest, DocTypeSignatureRequest16, DocTypeSignatureSigned, DocTypeSignatureSigned16, DocTypeTasks, DocTypeTasks16, DocTypeTrust, DocTypeTrust16, DocTypeVideo, DocTypeVideo16, DocTypeWord, DocTypeWord16, DocTypeWord16Shortcut, DocTypeZip, DocTypeZip16, Drawer, DrawerMenu, Dropdown, EmailSentIcon, EmptyState, Fax16Icon, FeeEntry16Icon, FooterActions, FormBody, FormContainer, FormGroup, FormHeader, Grid, HeaderToolbar, HomeIcon, HyperLink16Icon, Icon, IconButton, ImageUpload, Input, InputLabel, InsertLinkIcon, LawconnectIcon, LeapLegsLogo, LeapLogo, List, ListItem$1 as ListItem, ListItemAvatar, ListItemHoverContent, ListItemIcon, ListItemText, ListSubheader, Loader, LoaderIcon$1 as LoaderIcon, ManualEntry24Icon, ManualEntryFilled24Icon, ManualEntryIconDarkTheme, ManualEntryIconLightTheme, MatterFolderRibbonIcon, Memo16Icon, Menu, MenuHeader, MenuIcon, MenuItem, Modal, ModalActions, ModalContent, ModalTitle, MoreVerticalIcon, NewAppointmentIcon, NewEntryRibbonIcons as NewEntryRibbonIcon, Pagination, PhoneCall16Icon, Popover, PowerIcon, PoweredByLawconnectLogo, PrecedentNotification16Icon, PreviewIcon, ProgressBar, Radio, RadioGroup, ReportingIcon, ResponseIcon, RevokeAccessIcon, RibbonButton, RibbonButtonGroup, ScannedDoc16Icon, SearchIcon, SelectFilterEmptyIcon, SelectFilterFilledIcon, SelectFilterIcon, SharedFolder16Icon, SidebarLayout, Sms16Icon, SpinnerIcon$1 as SpinnerIcon, StartTimerDarkTheme16, StartTimerLightTheme16, StepNavigation, StopTimerDarkTheme16, StopTimerLightTheme16, SvgCheckboxChecked, SvgCheckboxIndeterminate, SvgCheckboxUncontrolled, SvgFormSearch, SvgNewAppointment, SvgRadioChecked, SvgRadioDefault, Switch, Tab, TabListItem, Table, TableBody, TableCell, TableCellIcon, TableContainer, TableFooter, TableHead, TableRow, Tabs, Tag, TaxInvoice162Icon, TaxInvoice16Icon, TextEditor, ThemeProvider, TickIcon, TimeEntry16Icon, TimedEntry16Icon, Timer24Icon, TimerFilled24Icon, Toolbar, ToolbarButton, Tooltip, TrustStatement16Icon, TwoColumnLayout, Typography, UnkwownType16Icon as UnknownType16Icon, UserLinkIcon, UserLockIcon, UsersIcon, Video16Icon, VideoCall16Icon, VoiceMemo16Icon, Zyphta16Icon, createFilterOptions, iconsPath, index as textEditorExtensions, theme$3 as themeDesktop, theme$1 as themeWeb, useEditor };
|
|
45598
|
+
export { AccessIcon, Accordion, AccordionDetails, AccordionPanel, AccordionSummary, AccountingIcon, ActivityDefault16Icon, ActivityLog, ActivityTypeDefault, ActivityTypeDefault16, ActivityTypePhoneCall, ActivityTypePhoneCall16, ActivityTypeScannedDoc, ActivityTypeScannedDoc16, ActivityTypeVideoCall, ActivityTypeVideoCall16, AppBar, Appointment16Icon, AssignCurvedIcon, AttachmentIcon, AutoTimer24Icon, AutoTimerFilled24Icon, AutoTimerIconDarkTheme, AutoTimerIconLightTheme, Autocomplete, Avatar, AvatarBusinessIcon, AvatarCompanyIcon, AvatarGovernmentIcon, AvatarGroup, AvatarPeopleIcon, AvatarPersonIcon, AvatarTrustIcon, BlankLetter16Icon, BottomListButton, Box, Breadcrumbs, Browse2Icon, BrowseIcon, Button, ButtonCaretIcon, ButtonFilterIcon, Bylawyers16Icon as BylawyersIcon, CalendarIcon, CalendarRibbonIcon, Card, CaretDown12Icon, CaretIcon, CaretUp12Icon, Checkbox, ChevronCircleRight16Icon, ChevronCircleRight20Icon, ChevronCircleRight24Icon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, Chip, Clause16Icon, CoinEuroIcon$1 as CoinEuroIcon, CoinIcon, CoinPoundIcon, CostRecoveryExceeded16Icon, Cross16Icon, CrossIcon, CssBaseline, CoinEuroIcon as CurrencyEuroIcon, CurrencyIcon, CurrencyPoundIcon, DatePicker, DateRangePicker, DeleteRibbonIcon, Dialog, Divider, DocTypeAppointment$1 as DocTypeAppointment, DocTypeAppointment16, DocTypeAppointmentCriticalDate, DocTypeAppointmentCriticalDate16, DocTypeAudio, DocTypeAudio16, DocTypeEmailDraft$3 as DocTypeClausePrecedent, DocTypeClausePrecedent16, DocTypeAppointment as DocTypeComment, DocTypeComment16, DocTypeCriticalDate, DocTypeCriticalDate16, DocTypeDeadline, DocTypeDeadline16, DocTypeDefault, DocTypeDefault16, DocTypeEmail, DocTypeEmail16, DocTypeEmailDraft$2 as DocTypeEmailDraft, DocTypeEmailDraft16, DocTypeEmailDraft$1 as DocTypeEmailReceived, DocTypeEmailRecieved16 as DocTypeEmailReceived16, DocTypeEmailRecieved, DocTypeEmailSent, DocTypeEmailSent16, DocTypeExcel, DocTypeExcel16, DocTypeExcel16Shortcut, DocTypeFax, DocTypeFax16, DocTypeFileNote, DocTypeFileNote16, DocTypeFolder, DocTypeFolder16, DocTypeImage, DocTypeImage16, DocTypeInfotrack, DocTypeInfotrack16, DocTypeInvoiceRequest, DocTypeInvoiceRequest16, DocTypeInvoiceRequests, DocTypeInvoiceRequests16, DocTypeLetter, DocTypeLetter16, DocTypeMemo, DocTypeMemo16, DocTypePdf, DocTypePdf16, DocTypePowerpoint, DocTypePowerpoint16, DocTypeSMS, DocTypeSMS16, DocTypeScannedDoc16, DocTypeEmailDraft as DocTypeSignatureDeclined, DocTypeSignatureDeclined16, DocTypeSignaturePending, DocTypeSignaturePending16, DocTypeSignatureRequest, DocTypeSignatureRequest16, DocTypeSignatureSigned, DocTypeSignatureSigned16, DocTypeTasks, DocTypeTasks16, DocTypeTrust, DocTypeTrust16, DocTypeVideo, DocTypeVideo16, DocTypeWord, DocTypeWord16, DocTypeWord16Shortcut, DocTypeZip, DocTypeZip16, Drawer, DrawerMenu, Dropdown, EmailSentIcon, EmptyState, Fax16Icon, FeeEntry16Icon, FooterActions, FormBody, FormContainer, FormGroup, FormHeader, Grid, HeaderToolbar, HomeIcon, HyperLink16Icon, Icon, IconButton, ImageUpload, Info11Icon, Info13Icon, Info15Icon, Info20Icon, Input, InputLabel, InsertLinkIcon, LawconnectIcon, LeapLegsLogo, LeapLogo, List, ListItem$1 as ListItem, ListItemAvatar, ListItemHoverContent, ListItemIcon, ListItemText, ListSubheader, Loader, LoaderIcon$1 as LoaderIcon, ManualEntry24Icon, ManualEntryFilled24Icon, ManualEntryIconDarkTheme, ManualEntryIconLightTheme, MatterFolderRibbonIcon, Memo16Icon, Menu, MenuHeader, MenuIcon, MenuItem, Modal, ModalActions, ModalContent, ModalTitle, MoreVerticalIcon, NewAppointmentIcon, NewEntryRibbonIcons as NewEntryRibbonIcon, Pagination, PhoneCall16Icon, Popover, PowerIcon, PoweredByLawconnectLogo, PrecedentNotification16Icon, PreviewIcon, ProgressBar, Radio, RadioGroup, ReportingIcon, ResponseIcon, RevokeAccessIcon, RibbonButton, RibbonButtonGroup, ScannedDoc16Icon, SearchIcon, SelectFilterEmptyIcon, SelectFilterFilledIcon, SelectFilterIcon, SharedFolder16Icon, SidebarLayout, Sms16Icon, SpinnerIcon$1 as SpinnerIcon, StartTimerDarkTheme16, StartTimerLightTheme16, StepNavigation, StopTimerDarkTheme16, StopTimerLightTheme16, SvgCheckboxChecked, SvgCheckboxIndeterminate, SvgCheckboxUncontrolled, SvgFormSearch, SvgNewAppointment, SvgRadioChecked, SvgRadioDefault, Switch, Tab, TabListItem, Table, TableBody, TableCell, TableCellIcon, TableContainer, TableFooter, TableHead, TableRow, Tabs, Tag, TaxInvoice162Icon, TaxInvoice16Icon, TextEditor, ThemeProvider, TickIcon, TimeEntry16Icon, TimedEntry16Icon, Timer24Icon, TimerFilled24Icon, Toolbar, ToolbarButton, Tooltip, TrustStatement16Icon, TwoColumnLayout, Typography, UnkwownType16Icon as UnknownType16Icon, UserLinkIcon, UserLockIcon, UsersIcon, Video16Icon, VideoCall16Icon, VoiceMemo16Icon, WindowsSettings16Icon, Zyphta16Icon, createFilterOptions, iconsPath, index as textEditorExtensions, theme$3 as themeDesktop, theme$1 as themeWeb, useEditor };
|
|
45506
45599
|
//# sourceMappingURL=index.esm.js.map
|