@galaxy-ds/core 2.1.9 → 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 +188 -58
- 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/index.esm.js +51 -9
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +58 -8
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -914,7 +914,6 @@ var autocompleteOverrides$1 = {
|
|
|
914
914
|
marginBottom: 0,
|
|
915
915
|
},
|
|
916
916
|
endAdornment: {
|
|
917
|
-
top: 'calc(50% - 12px)',
|
|
918
917
|
marginLeft: 0,
|
|
919
918
|
},
|
|
920
919
|
popper: {
|
|
@@ -1319,6 +1318,9 @@ var inputBaseOverrides$1 = {
|
|
|
1319
1318
|
},
|
|
1320
1319
|
'&.Mui-error': {
|
|
1321
1320
|
borderColor: theme.palette.error.main,
|
|
1321
|
+
'&.Mui-focused': {
|
|
1322
|
+
outline: "1px solid ".concat(theme.palette.error.main),
|
|
1323
|
+
},
|
|
1322
1324
|
},
|
|
1323
1325
|
'&.Mui-disabled': {
|
|
1324
1326
|
backgroundColor: theme.palette.grey[100], // TODO: to match with design
|
|
@@ -1377,7 +1379,7 @@ var inputBaseOverrides$1 = {
|
|
|
1377
1379
|
},
|
|
1378
1380
|
adornedStart: {
|
|
1379
1381
|
'& svg:first-of-type': {
|
|
1380
|
-
marginLeft:
|
|
1382
|
+
marginLeft: 3,
|
|
1381
1383
|
},
|
|
1382
1384
|
},
|
|
1383
1385
|
input: {
|
|
@@ -2511,7 +2513,7 @@ var autocompleteOverrides = {
|
|
|
2511
2513
|
marginBottom: 0,
|
|
2512
2514
|
},
|
|
2513
2515
|
endAdornment: {
|
|
2514
|
-
top: 'calc(50% -
|
|
2516
|
+
top: 'calc(50% - 2px)',
|
|
2515
2517
|
marginLeft: 0,
|
|
2516
2518
|
},
|
|
2517
2519
|
popper: {
|
|
@@ -2919,6 +2921,11 @@ var inputBaseOverrides = {
|
|
|
2919
2921
|
transition: 'border-color .15s ease-in-out, box-shadow .15s ease-in-out',
|
|
2920
2922
|
'&.Mui-error': {
|
|
2921
2923
|
borderColor: theme.palette.error.main,
|
|
2924
|
+
'&.Mui-focused': {
|
|
2925
|
+
borderColor: theme.palette.error.main,
|
|
2926
|
+
boxShadow: 'none',
|
|
2927
|
+
outline: "1px solid ".concat(theme.palette.error.main),
|
|
2928
|
+
},
|
|
2922
2929
|
},
|
|
2923
2930
|
'&.Mui-disabled': {
|
|
2924
2931
|
opacity: 0.5, // TODO: to match with design
|
|
@@ -2958,6 +2965,7 @@ var inputBaseOverrides = {
|
|
|
2958
2965
|
height: 'auto',
|
|
2959
2966
|
'.customLargeSize &': {
|
|
2960
2967
|
maxHeight: 34,
|
|
2968
|
+
padding: '8px 32px 8px 18px',
|
|
2961
2969
|
},
|
|
2962
2970
|
'.MuiAutocomplete-root [class*="MuiInputBase-root"] .MuiAutocomplete-input&': {
|
|
2963
2971
|
padding: '2px 4px',
|
|
@@ -3816,6 +3824,14 @@ function CaretUp12Icon(props) {
|
|
|
3816
3824
|
return (jsxRuntime.jsx(SvgIcon, __assign({}, props, { children: jsxRuntime.jsx("svg", { width: "12", height: "12", viewBox: "0 0 12 12", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.25 7.99887L2.75 7.99887L6 4.5L9.25 7.99887Z", fill: "currentColor" }) }) })));
|
|
3817
3825
|
}
|
|
3818
3826
|
|
|
3827
|
+
function ChevronCircleRight20Icon(props) {
|
|
3828
|
+
return (jsxRuntime.jsx("svg", __assign({ width: "20", height: "20", viewBox: "0 0 20 20", fill: "none" }, props, { children: jsxRuntime.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" }) })));
|
|
3829
|
+
}
|
|
3830
|
+
|
|
3831
|
+
function ChevronCircleRight24Icon(props) {
|
|
3832
|
+
return (jsxRuntime.jsx("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none" }, props, { children: jsxRuntime.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" }) })));
|
|
3833
|
+
}
|
|
3834
|
+
|
|
3819
3835
|
function ChevronLeftIcon(props) {
|
|
3820
3836
|
return (jsxRuntime.jsx(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: jsxRuntime.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" }) })));
|
|
3821
3837
|
}
|
|
@@ -3864,6 +3880,22 @@ function HomeIcon(props) {
|
|
|
3864
3880
|
return (jsxRuntime.jsx(SvgIcon, __assign({}, props, { viewBox: "0 0 20 20", children: jsxRuntime.jsx("path", { d: "M8.2 18v-5.647h3.6V18h4.5v-7.53H19L10 2l-9 8.47h2.7V18h4.5z", fill: "currentColor" }) })));
|
|
3865
3881
|
}
|
|
3866
3882
|
|
|
3883
|
+
function Info11Icon(props) {
|
|
3884
|
+
return (jsxRuntime.jsx("svg", __assign({ width: "11", height: "11", viewBox: "0 0 11 11" }, props, { children: jsxRuntime.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" }) })));
|
|
3885
|
+
}
|
|
3886
|
+
|
|
3887
|
+
function Info13Icon(props) {
|
|
3888
|
+
return (jsxRuntime.jsx("svg", __assign({ width: "13", height: "13", viewBox: "0 0 13 13" }, props, { children: jsxRuntime.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" }) })));
|
|
3889
|
+
}
|
|
3890
|
+
|
|
3891
|
+
function Info15Icon(props) {
|
|
3892
|
+
return (jsxRuntime.jsx("svg", __assign({ width: "15", height: "15", viewBox: "0 0 15 15" }, props, { children: jsxRuntime.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" }) })));
|
|
3893
|
+
}
|
|
3894
|
+
|
|
3895
|
+
function Info20Icon(props) {
|
|
3896
|
+
return (jsxRuntime.jsx(SvgIcon, __assign({}, props, { children: jsxRuntime.jsx("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: jsxRuntime.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" }) }) })));
|
|
3897
|
+
}
|
|
3898
|
+
|
|
3867
3899
|
function InsertLinkIcon(props) {
|
|
3868
3900
|
return (jsxRuntime.jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsxRuntime.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" }), jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 3h5v1H2v9h4v1H1V3z", fill: "#1E365E" })] })));
|
|
3869
3901
|
}
|
|
@@ -3952,6 +3984,10 @@ function Bylawyers16Icon(props) {
|
|
|
3952
3984
|
return (jsxRuntime.jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsxRuntime.jsx("path", { d: "M4 1H14V4H4V1Z", fill: "white" }), jsxRuntime.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" }), jsxRuntime.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" }), jsxRuntime.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" }), jsxRuntime.jsx("path", { d: "M10.3151 9.12405L8.88159 7.67774L11.0319 5.02614L12.9433 6.95456L10.3151 9.12405Z", fill: "#F69139" }), jsxRuntime.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" })] })));
|
|
3953
3985
|
}
|
|
3954
3986
|
|
|
3987
|
+
function ChevronCircleRight16Icon(props) {
|
|
3988
|
+
return (jsxRuntime.jsx("svg", __assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props, { children: jsxRuntime.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" }) })));
|
|
3989
|
+
}
|
|
3990
|
+
|
|
3955
3991
|
function Clause16Icon(props) {
|
|
3956
3992
|
return (jsxRuntime.jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsxRuntime.jsx("path", { d: "M4 1H14V4H4V1Z", fill: "white" }), jsxRuntime.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" }), jsxRuntime.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" }), jsxRuntime.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" }), jsxRuntime.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" })] })));
|
|
3957
3993
|
}
|
|
@@ -4048,6 +4084,10 @@ function VoiceMemo16Icon(props) {
|
|
|
4048
4084
|
return (jsxRuntime.jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsxRuntime.jsxs("g", { clipPath: "url(#clip0_1050_1821)", children: [jsxRuntime.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" }), jsxRuntime.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" })] }), jsxRuntime.jsx("defs", { children: jsxRuntime.jsx("clipPath", { id: "clip0_1050_1821", children: jsxRuntime.jsx("rect", { width: "16", height: "16", fill: "white" }) }) })] })));
|
|
4049
4085
|
}
|
|
4050
4086
|
|
|
4087
|
+
function WindowsSettings16Icon(props) {
|
|
4088
|
+
return (jsxRuntime.jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsxRuntime.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" }), jsxRuntime.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" })] })));
|
|
4089
|
+
}
|
|
4090
|
+
|
|
4051
4091
|
function Zyphta16Icon(props) {
|
|
4052
4092
|
return (jsxRuntime.jsxs(SvgIcon, __assign({}, props, { viewBox: "0 0 16 16", children: [jsxRuntime.jsxs("g", { clipPath: "url(#clip0_165_2861)", children: [jsxRuntime.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" }), jsxRuntime.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" }), jsxRuntime.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" }), jsxRuntime.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" }), jsxRuntime.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" }), jsxRuntime.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" }), jsxRuntime.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" })] }), jsxRuntime.jsx("defs", { children: jsxRuntime.jsx("clipPath", { id: "clip0_165_2861", children: jsxRuntime.jsx("rect", { width: "16", height: "16", fill: "white", transform: "matrix(1 0 0 -1 0 16)" }) }) })] })));
|
|
4053
4093
|
}
|
|
@@ -4109,8 +4149,10 @@ function NewEntryRibbonIcons() {
|
|
|
4109
4149
|
}
|
|
4110
4150
|
|
|
4111
4151
|
var AccordionSummary = function (props) {
|
|
4112
|
-
var bgColor = props.bgColor, rest = __rest(props, ["bgColor"]);
|
|
4113
|
-
return (jsxRuntime.jsx(material.AccordionSummary, __assign({ expandIcon: jsxRuntime.jsx(Icon, { name: ChevronDownIcon }), sx: { backgroundColor: bgColor
|
|
4152
|
+
var bgColor = props.bgColor, isStartAdornment = props.isStartAdornment, sx = props.sx, rest = __rest(props, ["bgColor", "isStartAdornment", "sx"]);
|
|
4153
|
+
return (jsxRuntime.jsx(material.AccordionSummary, __assign({ expandIcon: jsxRuntime.jsx(Icon, { name: ChevronDownIcon }), sx: __assign({ backgroundColor: bgColor, flexDirection: isStartAdornment ? 'row-reverse' : 'row', '& .MuiAccordionSummary-content': {
|
|
4154
|
+
marginLeft: isStartAdornment ? '10px' : '0',
|
|
4155
|
+
} }, sx) }, rest, { children: props.children })));
|
|
4114
4156
|
};
|
|
4115
4157
|
|
|
4116
4158
|
function ActivityTypeDefault(props) {
|
|
@@ -5210,8 +5252,8 @@ styles$1.styled(MuiTypography)(function (_a) {
|
|
|
5210
5252
|
});
|
|
5211
5253
|
|
|
5212
5254
|
var Autocomplete = function (_a) {
|
|
5213
|
-
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"]);
|
|
5214
|
-
var
|
|
5255
|
+
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"]);
|
|
5256
|
+
var _d = React.useState(placeholder), inputPlaceholder = _d[0], setInputPlaceholder = _d[1];
|
|
5215
5257
|
var root = React.useRef(null);
|
|
5216
5258
|
var onKeyDownHandler = function (event) {
|
|
5217
5259
|
var inputRootEl = (root === null || root === void 0 ? void 0 : root.current) &&
|
|
@@ -5229,7 +5271,7 @@ var Autocomplete = function (_a) {
|
|
|
5229
5271
|
var CustomPaper = function (props) {
|
|
5230
5272
|
return (jsxRuntime.jsx(StyledPaper, __assign({ bottomButtonHeight: bottomButtonHeight }, props, { children: jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [props.children, actionLabel && (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx(MuiDivider, {}), jsxRuntime.jsx(material.ListItemButton, { dense: true, onMouseDown: actionClick, children: jsxRuntime.jsx(StyledListContent, { children: jsxRuntime.jsx(Typography, { variant: platform === 'desktop' ? 'body1' : 'body2', align: "center", children: actionLabel }) }) })] }))] }) })));
|
|
5231
5273
|
};
|
|
5232
|
-
return (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [label && jsxRuntime.jsx(InputLabel, { children: label }), jsxRuntime.jsx(MuiAutocomplete, __assign({ disableClearable:
|
|
5274
|
+
return (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [label && jsxRuntime.jsx(InputLabel, { children: label }), jsxRuntime.jsx(MuiAutocomplete, __assign({ disableClearable: disableClearable, renderInput: renderInput
|
|
5233
5275
|
? renderInput
|
|
5234
5276
|
: function (params) { return (jsxRuntime.jsx(TextField, __assign({}, params, { inputProps: __assign(__assign({}, params.inputProps), { autoComplete: 'off' }), placeholder: inputPlaceholder, className: "customLargeSize" }))); }, PaperComponent: CustomPaper, onChange: function (event, value, reason) {
|
|
5235
5277
|
value && value.length > 0
|
|
@@ -45605,6 +45647,9 @@ exports.CaretDown12Icon = CaretDown12Icon;
|
|
|
45605
45647
|
exports.CaretIcon = CaretIcon;
|
|
45606
45648
|
exports.CaretUp12Icon = CaretUp12Icon;
|
|
45607
45649
|
exports.Checkbox = Checkbox;
|
|
45650
|
+
exports.ChevronCircleRight16Icon = ChevronCircleRight16Icon;
|
|
45651
|
+
exports.ChevronCircleRight20Icon = ChevronCircleRight20Icon;
|
|
45652
|
+
exports.ChevronCircleRight24Icon = ChevronCircleRight24Icon;
|
|
45608
45653
|
exports.ChevronDownIcon = ChevronDownIcon;
|
|
45609
45654
|
exports.ChevronLeftIcon = ChevronLeftIcon;
|
|
45610
45655
|
exports.ChevronRightIcon = ChevronRightIcon;
|
|
@@ -45716,6 +45761,10 @@ exports.HyperLink16Icon = HyperLink16Icon;
|
|
|
45716
45761
|
exports.Icon = Icon;
|
|
45717
45762
|
exports.IconButton = IconButton;
|
|
45718
45763
|
exports.ImageUpload = ImageUpload;
|
|
45764
|
+
exports.Info11Icon = Info11Icon;
|
|
45765
|
+
exports.Info13Icon = Info13Icon;
|
|
45766
|
+
exports.Info15Icon = Info15Icon;
|
|
45767
|
+
exports.Info20Icon = Info20Icon;
|
|
45719
45768
|
exports.Input = Input;
|
|
45720
45769
|
exports.InputLabel = InputLabel;
|
|
45721
45770
|
exports.InsertLinkIcon = InsertLinkIcon;
|
|
@@ -45819,6 +45868,7 @@ exports.UsersIcon = UsersIcon;
|
|
|
45819
45868
|
exports.Video16Icon = Video16Icon;
|
|
45820
45869
|
exports.VideoCall16Icon = VideoCall16Icon;
|
|
45821
45870
|
exports.VoiceMemo16Icon = VoiceMemo16Icon;
|
|
45871
|
+
exports.WindowsSettings16Icon = WindowsSettings16Icon;
|
|
45822
45872
|
exports.Zyphta16Icon = Zyphta16Icon;
|
|
45823
45873
|
exports.createFilterOptions = createFilterOptions;
|
|
45824
45874
|
exports.iconsPath = iconsPath;
|