mtxuilib 0.1.250 → 0.1.253
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/i18n/i18n.d.ts +14 -0
- package/dist/i18n/i18n.js +36 -0
- package/dist/icons/Auth0.d.ts +1 -0
- package/dist/icons/Auth0.js +4 -0
- package/dist/icons/Cognito.d.ts +1 -0
- package/dist/icons/Cognito.js +4 -0
- package/dist/icons/Descope.d.ts +1 -0
- package/dist/icons/Descope.js +4 -0
- package/dist/icons/Gitlab.d.ts +1 -0
- package/dist/icons/Gitlab.js +4 -0
- package/dist/icons/Image.d.ts +3 -0
- package/dist/icons/Image.js +8 -0
- package/dist/icons/Okta.d.ts +1 -0
- package/dist/icons/Okta.js +4 -0
- package/dist/icons/attachment.d.ts +3 -0
- package/dist/icons/attachment.js +12 -0
- package/dist/icons/copy.d.ts +3 -0
- package/dist/icons/copy.js +12 -0
- package/dist/icons/microphone.d.ts +3 -0
- package/dist/icons/microphone.js +12 -0
- package/dist/icons/minimize.d.ts +3 -0
- package/dist/icons/minimize.js +12 -0
- package/dist/icons/pencil.d.ts +3 -0
- package/dist/icons/pencil.js +6 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/lib/utils.js +20 -0
- package/package.json +11 -11
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TOptions } from 'i18next';
|
|
2
|
+
export declare function i18nSetupLocalization(): void;
|
|
3
|
+
type TranslatorProps = {
|
|
4
|
+
path: string | string[];
|
|
5
|
+
suffix?: string;
|
|
6
|
+
options?: TOptions;
|
|
7
|
+
};
|
|
8
|
+
export declare const Translator: ({ path, options, suffix }: TranslatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const useTranslation: () => {
|
|
10
|
+
t: (path: string | string[], options?: TOptions) => string;
|
|
11
|
+
ready: boolean;
|
|
12
|
+
i18n: import("i18next").i18n;
|
|
13
|
+
};
|
|
14
|
+
export default Translator;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Skeleton } from '@mui/material';
|
|
3
|
+
import { useTranslation as usei18nextTranslation } from 'react-i18next';
|
|
4
|
+
import i18n from 'i18next';
|
|
5
|
+
import { initReactI18next } from 'react-i18next';
|
|
6
|
+
const i18nConfig = {
|
|
7
|
+
fallbackLng: 'en-US',
|
|
8
|
+
defaultNS: 'translation'
|
|
9
|
+
};
|
|
10
|
+
export function i18nSetupLocalization() {
|
|
11
|
+
i18n
|
|
12
|
+
.use(initReactI18next)
|
|
13
|
+
.init(i18nConfig)
|
|
14
|
+
.catch((err) => console.error('[i18n] Failed to setup localization.', err));
|
|
15
|
+
}
|
|
16
|
+
export const Translator = ({ path, options, suffix }) => {
|
|
17
|
+
const { t, i18n } = usei18nextTranslation();
|
|
18
|
+
if (!i18n.exists(path, options)) {
|
|
19
|
+
return _jsx(Skeleton, { variant: "text", width: 20 });
|
|
20
|
+
}
|
|
21
|
+
return (_jsxs("span", { children: [t(path, options), suffix] }));
|
|
22
|
+
};
|
|
23
|
+
export const useTranslation = () => {
|
|
24
|
+
const { t, ready, i18n } = usei18nextTranslation();
|
|
25
|
+
return {
|
|
26
|
+
t: (path, options) => {
|
|
27
|
+
if (!i18n.exists(path, options)) {
|
|
28
|
+
return "...";
|
|
29
|
+
}
|
|
30
|
+
return t(path, options);
|
|
31
|
+
},
|
|
32
|
+
ready,
|
|
33
|
+
i18n,
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export default Translator;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Auth0: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
export const Auth0 = () => {
|
|
3
|
+
return (_jsx("svg", { width: "24", height: "24", viewBox: "0 0 256 287", style: { fill: 'inherit' }, xmlns: "http://www.w3.org/2000/svg", preserveAspectRatio: "xMinYMin meet", children: _jsx("path", { d: "M203.24 231.531l-28.73-88.434 75.208-54.64h-92.966L128.019.025l-.009-.024h92.98l28.74 88.446.002-.002.024-.013c16.69 51.31-.5 109.67-46.516 143.098zm-150.45 0l-.023.017 75.228 54.655 75.245-54.67-75.221-54.656-75.228 54.654zM6.295 88.434c-17.57 54.088 2.825 111.4 46.481 143.108l.007-.028 28.735-88.429-75.192-54.63h92.944L128.004.024 128.01 0H35.025L6.294 88.434z" }) }));
|
|
4
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Cognito: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export const Cognito = () => {
|
|
3
|
+
return (_jsxs("svg", { width: "24", height: "24", viewBox: "0 0 256 299", xmlns: "http://www.w3.org/2000/svg", preserveAspectRatio: "xMidYMid", children: [_jsx("path", { d: "M208.752 58.061l25.771-6.636.192.283.651 155.607-.843.846-5.31.227-20.159-3.138-.302-.794V58.061M59.705 218.971l.095.007 68.027 19.767.173.133.296.236-.096 59.232-.2.252-68.295-33.178v-46.449", fill: "#7A3E65" }), _jsx("path", { d: "M208.752 204.456l-80.64 19.312-40.488-9.773-27.919 4.976L128 238.878l105.405-28.537 1.118-2.18-25.771-3.705", fill: "#CFB2C1" }), _jsx("path", { d: "M196.295 79.626l-.657-.749-66.904-19.44-.734.283-.672-.343L22.052 89.734l-.575.703.845.463 24.075 3.53.851-.289 80.64-19.311 40.488 9.773 27.919-4.977", fill: "#512843" }), _jsx("path", { d: "M47.248 240.537l-25.771 6.221-.045-.149-1.015-155.026 1.06-1.146 25.771 3.704v146.396", fill: "#C17B9E" }), _jsx("path", { d: "M82.04 180.403l45.96 5.391.345-.515.187-71.887-.532-.589-45.96 5.392v62.208", fill: "#7A3E65" }), _jsx("path", { d: "M173.96 180.403L128 185.794v-72.991l45.96 5.392v62.208M196.295 79.626L128 59.72V0l68.295 33.177v46.449", fill: "#C17B9E" }), _jsx("path", { d: "M128 0L0 61.793v175.011l21.477 9.954V90.437L128 59.72V0", fill: "#7A3E65" }), _jsx("path", { d: "M234.523 51.425v156.736L128 238.878v59.72l128-61.794V61.793l-21.477-10.368", fill: "#C17B9E" })] }));
|
|
4
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Descope: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export const Descope = () => {
|
|
3
|
+
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", version: "1.1", viewBox: "0 0 196 216", xmlSpace: "preserve", children: [_jsx("path", { fill: "#0198B8", d: "M66.841 183.009c.049 4.355.097 8.71-.27 13.485-11.818-6.767-23.167-14.04-34.66-21.077-3.023-1.85-6.494-2.968-9.759-4.421-1.994-5.399-3.99-10.797-5.564-16.59 2.378.369 4.526.837 6.264 1.947 12.42 7.933 24.72 16.054 37.157 23.961 2.028 1.29 4.543 1.816 6.832 2.695z", opacity: "1" }), _jsx("path", { fill: "#0BE5DA", d: "M56.298 102c.85-.912 1.624-2.505 2.565-2.611 3.038-.343 6.137-.139 9.679.29 1.212 1.44 1.753 2.758 2.736 3.396 17.255 11.216 34.541 22.386 51.898 33.444 1.855 1.182 4.195 1.604 6.31 2.38-.19 1.28.077 3.15-.662 3.723-1.792 1.39-4.052 2.174-6.483 2.884-1.164-1.446-1.731-2.93-2.809-3.643-7.175-4.742-14.43-9.367-21.72-13.934-4.877-3.057-9.855-5.954-14.788-8.923-1.091-.413-2.182-.827-3.71-1.653-7.963-5.393-15.49-10.373-23.016-15.353z", opacity: "1" }), _jsx("path", { fill: "#13E5D1", d: "M129.377 138.545c-2.006-.422-4.346-.844-6.201-2.026-17.357-11.058-34.643-22.228-51.898-33.444-.983-.638-1.524-1.957-2.285-3.3 3.358-.406 6.73-.473 10.563-.1 1.243 1.615 1.78 3.14 2.856 3.903 3.597 2.547 7.509 4.656 11.063 7.256 2.387 1.748 4.374 4.043 6.254 6.143-.431.113-.606.145-.713.247-.096.092-.118.261-.172.397l5.186 1.336c1.656.136 3.312.279 4.968.406 7.268.557 12.628 3.671 15.482 10.766 1.153 2.866 3.167 5.386 4.897 8.416z", opacity: "1" }), _jsx("path", { fill: "#07E4E3", d: "M82.727 119.17a257.804 257.804 0 0115.086 8.759c7.29 4.567 14.544 9.192 21.719 13.934 1.078.713 1.645 2.197 2.45 3.691-2.826 1.962-5.652 3.557-9.194 5.557-2.288-4.191-4.438-7.98-6.446-11.841-3.98-7.655-7.928-7.877-13.248-.74-5.877-3.234-11.26-6.38-16.642-9.524 1.993-3.225 3.986-6.449 6.275-9.837z", opacity: "1" }), _jsx("path", { fill: "#57DB45", d: "M180.423 56.014c.762 2.732 1.524 5.464 1.853 8.58-1.646-.019-3-.2-4.05-.863-9.341-5.915-18.569-12.013-27.954-17.857-6.12-3.811-12.448-7.29-18.682-10.92-.078-2.364-.156-4.729.227-7.511 11.469 6.52 22.417 13.556 33.511 20.353 4.879 2.989 10.054 5.493 15.095 8.218z", opacity: "1" }), _jsx("path", { fill: "#06A3BE", d: "M66.914 182.573c-2.362-.443-4.877-.97-6.905-2.259-12.437-7.907-24.737-16.028-37.157-23.96-1.738-1.11-3.886-1.58-6.217-2.344-.464-.472-.555-.944-.662-2.2.014-2.802.045-4.819.445-6.821 4.9 2.647 9.35 5.428 13.983 7.865 3.738 1.966 7.696 3.516 11.557 5.25 5.502 9.625 13.99 15.097 25.029 17.64 0 2.146 0 4.27-.073 6.83z", opacity: "1" }), _jsx("path", { fill: "#088FB2", d: "M22.181 171.339c3.236 1.11 6.707 2.227 9.73 4.078 11.493 7.036 22.842 14.31 34.591 21.536.346 1.483.346 2.924.346 4.552-19.021-2.271-32.731-12.099-42.868-27.5-.534-.811-1.177-1.55-1.799-2.666z", opacity: "1" }), _jsx("path", { fill: "#5CDB3C", d: "M180.408 55.677c-5.026-2.388-10.201-4.892-15.08-7.881-11.094-6.797-22.042-13.833-33.376-20.778-.418-2.055-.51-4.103-.145-6.568 1.673.084 3 .414 4.09 1.112 10.474 6.71 20.862 13.554 31.389 20.18 2.318 1.459 5.084 2.206 7.644 3.281 1.821 3.44 3.642 6.878 5.478 10.654z", opacity: "1" }), _jsx("path", { fill: "#59DD55", d: "M131.458 35.376c6.366 3.207 12.693 6.687 18.814 10.498 9.385 5.844 18.613 11.942 27.954 17.857 1.05.664 2.404.844 3.974 1.244.501 2.046.646 4.098.38 6.545-7.279-3.892-14.065-8.316-21.058-12.385-2.192-1.275-4.942-1.59-7.436-2.346-5.384-3.857-10.328-8.777-16.286-11.25-5.178-2.148-7.703-4.195-6.342-10.163z", opacity: "1" }), _jsx("path", { fill: "#01E3E3", d: "M15.447 90.994c-.065-4.355-.131-8.71.255-13.521 2.615.575 4.824 1.524 6.932 2.657 5.425 2.916 10.805 5.913 16.203 8.878.046 4.358.092 8.716-.295 13.527-3.835-1.435-7.207-3.382-10.647-5.197-4.118-2.173-8.296-4.234-12.448-6.344z", opacity: "1" }), _jsx("path", { fill: "#22E3B4", d: "M100.982 92.49c-5.371.802-10.758 1.513-16.107 2.443-2.781.484-4.543-.264-5.988-2.802-3.166-5.56-6.618-10.957-10.33-17.038 2.094-1.064 3.92-1.994 6.137-2.627 1.35 1.37 2.138 2.71 3.302 3.476 6.054 3.99 12.27 7.737 18.282 11.79 1.813 1.222 3.15 3.153 4.704 4.759z", opacity: "1" }), _jsx("path", { fill: "#66DB3A", d: "M174.883 44.68c-2.513-.732-5.279-1.48-7.597-2.938-10.527-6.626-20.915-13.47-31.39-20.18-1.09-.698-2.416-1.028-3.964-1.533-1.176-3.157-.493-4.067 3.096-3.379 17.434 3.343 30.305 13.045 39.855 28.03z", opacity: "1" }), _jsx("path", { fill: "#07E4E3", d: "M173.516 175.205c-2.971 3.499-5.943 6.998-9.27 10.29-4.452-3.19-8.447-6.328-12.682-9.1-2.676-1.75-5.71-2.954-8.585-4.403 3.165-2.552 6.33-5.105 10.158-7.814 2.674.924 4.708 1.962 6.688 3.095 4.578 2.62 9.13 5.285 13.691 7.932z", opacity: "1" }), _jsx("path", { fill: "#19E3BC", d: "M128.157 117.563c-5.08.066-10.162.133-15.708-.24-1.486-1.621-2.32-3.067-3.56-3.937-4.746-3.333-9.7-6.372-14.403-9.762-1.448-1.044-2.341-2.857-3.488-4.318 5.015-.057 10.03-.114 15.524.242 1.13 1.272 1.615 2.373 2.46 2.95 4.987 3.41 10.154 6.566 15.047 10.101 1.69 1.22 2.77 3.285 4.128 4.964z", opacity: "1" }), _jsx("path", { fill: "#26E2A8", d: "M101.374 92.561c-1.947-1.676-3.283-3.607-5.096-4.83-6.011-4.052-12.228-7.798-18.282-11.789-1.164-.767-1.951-2.106-2.947-3.525 2.391-1.668 4.817-2.992 7.748-4.059 2.898 1.398 5.29 2.537 7.683 3.677 1.158 2.159 2.405 4.276 3.453 6.487 1.481 3.128 3.688 4.935 8.075 4.528 3.838 2.53 6.91 5.09 9.981 7.649-3.408.644-6.815 1.289-10.615 1.862z", opacity: "1" }), _jsx("path", { fill: "#52DD5A", d: "M154.217 57.132c2.363.412 5.113.728 7.305 2.003 6.993 4.069 13.78 8.493 20.991 12.823.386 3.074.426 6.106.057 9.544-8.285-4.232-16.162-8.87-24.038-13.508a10797.74 10797.74 0 01-4.315-10.862z", opacity: "1" }), _jsx("path", { fill: "#00CFD8", d: "M16.05 144.975c-.032 2.016-.063 4.033-.11 6.474-.266-1.494-.726-3.41-.731-5.328-.036-15.064.016-30.13.484-45.645 2.058.335 3.731 1.02 5.277 1.925 5.976 3.495 11.912 7.06 17.863 10.6.047 2.703.095 5.406-.273 8.51-7.515-3.888-14.615-8.178-22.472-12.926 0 3.858 0 6.64-.026 9.87-.011 3.147.004 5.844-.011 8.991-.014 3.152.002 5.853-.008 9.004-.015 3.14-.004 5.833.006 8.525z", opacity: "1" }), _jsx("path", { fill: "#22E2AA", d: "M112.026 99.266c3.355-.08 6.71-.16 10.58.153 7.661 4.795 14.808 9.196 21.955 13.596v4.757c-3.706 0-7.16 0-11.087-.418-1.152-1.264-1.678-2.334-2.536-2.918-5.006-3.407-10.197-6.553-15.088-10.114-1.635-1.19-2.57-3.343-3.824-5.056z", opacity: "1" }), _jsx("path", { fill: "#0BE5DA", d: "M38.909 88.559c-5.47-2.516-10.85-5.513-16.275-8.429-2.108-1.133-4.317-2.082-6.836-3.111-.392-3.025-.428-6.053-.01-9.536 2.605.583 4.8 1.543 6.903 2.674 5.414 2.913 10.786 5.902 16.176 8.86.038 3.03.076 6.062.042 9.542z", opacity: "1" }), _jsx("path", { fill: "#04D9DF", d: "M142.637 172.105c3.216 1.336 6.251 2.54 8.927 4.29 4.235 2.772 8.23 5.91 12.376 9.23-1.94 2.225-3.928 4.112-6.416 5.68-2.805-2.126-5.087-3.967-7.423-5.736-4.688-3.55-9.406-7.062-14.111-10.59 2.101-.92 4.203-1.841 6.647-2.874z", opacity: "1" }), _jsx("path", { fill: "#07E4E3", d: "M56.216 102.46c7.609 4.52 15.135 9.5 22.722 14.795-7.345.314-14.751.314-22.804.314 0-4.869 0-9.758.082-15.108z", opacity: "1" }), _jsx("path", { fill: "#00D9DE", d: "M38.904 112.552c-6.022-3.09-11.958-6.656-17.934-10.151-1.546-.904-3.22-1.59-5.178-2.382-.41-2.718-.475-5.43-.443-8.582 4.25 1.667 8.428 3.728 12.546 5.9 3.44 1.816 6.812 3.763 10.576 5.658.41 3.04.456 6.074.433 9.557z", opacity: "1" }), _jsx("path", { fill: "#02ABC3", d: "M16.418 144.989c-.38-2.706-.39-5.398-.012-8.534 2.24.512 4.135 1.395 5.936 2.439 5.769 3.34 11.503 6.74 17.25 10.117.75 2.772 1.498 5.544 2.306 8.705-3.801-1.346-7.759-2.896-11.497-4.862-4.633-2.437-9.084-5.218-13.983-7.865z", opacity: "1" }), _jsx("path", { fill: "#14E4C7", d: "M90.544 99.234c1.6 1.533 2.494 3.346 3.942 4.39 4.703 3.39 9.657 6.43 14.404 9.762 1.239.87 2.073 2.316 3.106 3.838-2.395.419-4.804.497-7.903.314-1.82-.378-2.949-.495-4.078-.611-2.166-2.05-4.153-4.345-6.54-6.093-3.554-2.6-7.466-4.71-11.063-7.256-1.077-.763-1.613-2.288-2.409-3.804 3.355-.43 6.722-.521 10.541-.54z", opacity: "1" }), _jsx("path", { fill: "#00BDCD", d: "M16.08 126.997c-.014-2.698-.029-5.395.343-8.539 2.267.537 4.164 1.488 6.024 2.508 5.47 2.998 10.925 6.023 16.386 9.038.048 3.032.096 6.064-.268 9.501-7.769-3.9-15.127-8.204-22.484-12.508z", opacity: "1" }), _jsx("path", { fill: "#14E4C7", d: "M39.985 66.998c-.326 2.73-.653 5.46-1.395 8.557-1.717-.33-3.022-1.016-4.317-1.721-6.023-3.282-12.043-6.569-18.064-9.854.57-2.436 1.14-4.873 2.25-7.643a29.74 29.74 0 017.06 2.707c4.853 2.594 9.648 5.296 14.466 7.954z", opacity: "1" }), _jsx("path", { fill: "#02B4C8", d: "M16.05 127.446c7.388 3.855 14.746 8.16 22.445 12.509.642 2.778.942 5.511 1.17 8.65-5.82-2.971-11.554-6.371-17.323-9.711-1.801-1.044-3.695-1.927-5.91-2.888-.379-2.707-.395-5.408-.381-8.56z", opacity: "1" }), _jsx("path", { fill: "#00C6D3", d: "M38.904 129.564c-5.532-2.575-10.987-5.6-16.457-8.598a74.807 74.807 0 00-5.998-2.956c-.36-2.785-.36-5.567-.36-9.425 7.856 4.748 14.956 9.038 22.4 13.372.391 2.418.439 4.792.415 7.607z", opacity: "1" }), _jsx("path", { fill: "#19E3BC", d: "M159.333 145.996c0-2.371 0-4.742.456-7.537 2.769.814 5.081 2.052 7.395 3.286 5.17 2.758 10.34 5.513 15.511 8.27-.218 2.093-.435 4.186-1.201 6.632-2.487-.413-4.517-1.009-6.349-1.978-5.313-2.81-10.547-5.771-15.812-8.673z", opacity: "1" }), _jsx("path", { fill: "#36E087", d: "M43.012 25.04c1.452-.952 2.904-1.903 4.846-2.6 6.652 4.024 12.816 7.791 18.98 11.558-.346 3.21-.692 6.42-1.446 9.266-1.63-1.61-2.685-3.108-4.105-4.06-4.952-3.319-10.12-6.323-15.008-9.73-1.426-.994-2.196-2.93-3.267-4.434z", opacity: "1" }), _jsx("path", { fill: "#22E2AA", d: "M182.848 137.005c.043 2.042.085 4.084-.298 6.554-5.814-2.777-11.152-6.073-16.617-9.141-1.954-1.097-4.217-1.646-6.338-2.445-.083-2.362-.166-4.724.204-7.511 1.925.273 3.46.865 4.857 1.688 6.086 3.582 12.132 7.23 18.192 10.855z", opacity: "1" }), _jsx("path", { fill: "#10D2DA", d: "M135.591 174.997c5.104 3.51 9.822 7.021 14.51 10.572 2.336 1.769 4.618 3.61 7.07 5.788-1.752 1.637-3.65 2.903-5.878 3.865-6.792-4.604-13.253-8.903-19.714-13.201-.304-3.114-1.881-6.883 4.012-7.024z", opacity: "1" }), _jsx("path", { fill: "#2EE29A", d: "M182.85 123.001c.044 2.044.088 4.087-.298 6.559-2.865-.817-5.323-2.023-7.734-3.316-5.092-2.732-10.158-5.51-15.235-8.268-.083-2.367-.165-4.733.205-7.523 1.196-.108 1.986.128 2.677.533 6.804 3.99 13.593 8.006 20.386 12.015z", opacity: "1" }), _jsx("path", { fill: "#34E192", d: "M42.672 25.09c1.41 1.454 2.181 3.39 3.607 4.384 4.889 3.407 10.056 6.411 15.008 9.73 1.42.952 2.475 2.45 3.713 4.031a22.66 22.66 0 01-6.684 2.299c-1.223-1.3-1.863-2.572-2.894-3.245-6.364-4.15-12.816-8.163-19.239-12.223 2.05-1.641 4.1-3.283 6.489-4.975z", opacity: "1" }), _jsx("path", { fill: "#2EE29A", d: "M35.89 30.195a473.368 473.368 0 0119.532 12.094c1.031.673 1.67 1.946 2.525 3.284-1.092.995-2.22 1.647-4.042 2.354a312.328 312.328 0 01-19.87-11.69c-.703-.449-.679-2.038-.991-3.097.85-.94 1.7-1.878 2.845-2.945z", opacity: "1" }), _jsx("path", { fill: "#3CDF74", d: "M182.838 95.002c.044 2.044.087 4.087-.3 6.558-3.87-1.491-7.28-3.461-10.755-5.314-4.021-2.144-8.098-4.185-12.151-6.27-.091-2.039-.182-4.078.203-6.542a33.016 33.016 0 018.01 3.094c5.042 2.744 10 5.64 14.993 8.474z", opacity: "1" }), _jsx("path", { fill: "#38DF7C", d: "M159.495 90.398c4.19 1.663 8.267 3.704 12.288 5.848 3.474 1.853 6.886 3.823 10.687 5.747.41 2.048.456 4.09.076 6.562-3.872-1.488-7.29-3.459-10.77-5.313-4.032-2.148-8.117-4.193-12.179-6.283-.08-2.046-.159-4.092-.102-6.56z", opacity: "1" }), _jsx("path", { fill: "#04D9DF", d: "M76.254 129.3c5.58 2.85 10.963 5.996 16.54 9.41-.633 2.14-1.462 4.01-2.936 6.076-6.049-3.127-11.451-6.45-16.854-9.775a537.765 537.765 0 013.25-5.712z", opacity: "1" }), _jsx("path", { fill: "#44DE6C", d: "M182.906 94.568c-5.06-2.4-10.019-5.296-15.06-8.04-2.43-1.322-5.018-2.355-7.879-3.514-.47-2.047-.597-4.1-.263-6.583 3.218.886 6.032 2.098 8.72 3.542 4.845 2.602 9.615 5.343 14.416 8.026.045 2.045.09 4.09.066 6.57z", opacity: "1" }), _jsx("path", { fill: "#34E192", d: "M182.917 122.567c-6.86-3.575-13.648-7.592-20.452-11.581-.691-.405-1.48-.641-2.552-.96-.413-1.73-.498-3.454-.111-5.598 3.012.683 5.653 1.602 8.073 2.927 5.055 2.769 9.993 5.751 14.98 8.646.043 2.044.086 4.088.062 6.566z", opacity: "1" }), _jsx("path", { fill: "#0BE5DA", d: "M173.79 175.063c-4.836-2.505-9.387-5.17-13.965-7.79a75.774 75.774 0 00-6.388-3.251 24.082 24.082 0 013.526-6.486c6.92 4.175 13.374 8.288 19.829 12.401-.91 1.662-1.818 3.323-3.001 5.126z", opacity: "1" }), _jsx("path", { fill: "#00C6D3", d: "M131.465 182.46c6.575 3.86 13.036 8.158 19.505 12.8-2.413 1.401-4.832 2.458-7.663 3.16-4.167-2.713-7.922-5.073-11.677-7.433-.093-2.696-.186-5.393-.165-8.528z", opacity: "1" }), _jsx("path", { fill: "#14E4C7", d: "M159.236 146.383c5.362 2.515 10.596 5.475 15.909 8.286 1.832.97 3.862 1.565 6.17 2.331-.242 2.213-.853 4.426-2.005 6.782-4.846-2.523-9.07-5.332-13.486-7.796-2.34-1.306-5.014-2.011-7.537-2.988.284-2.076.568-4.152.949-6.615z", opacity: "1" }), _jsx("path", { fill: "#48DD63", d: "M182.907 87.574c-4.868-2.258-9.638-5-14.482-7.601-2.69-1.444-5.503-2.656-8.62-3.972-.713-2.409-1.067-4.818-1.347-7.617 7.95 4.248 15.827 8.886 24.044 13.568.385 1.761.428 3.479.405 5.622z", opacity: "1" }), _jsx("path", { fill: "#3BE189", d: "M182.921 115.566c-5.053-2.46-9.99-5.442-15.046-8.21-2.42-1.326-5.061-2.245-7.952-3.343-.431-2.064-.513-4.132-.46-6.628 4.196 1.664 8.281 3.71 12.312 5.857 3.48 1.854 6.899 3.825 10.708 5.747.41 2.05.457 4.096.438 6.577z", opacity: "1" }), _jsx("path", { fill: "#22E2AA", d: "M47.885 52.757c-.817.965-1.634 1.931-3.08 3.02-7.014-4.162-13.399-8.447-19.784-12.732.813-1.245 1.626-2.49 3.083-3.849 4.956 2.48 9.387 4.9 13.535 7.734 2.324 1.588 4.18 3.862 6.246 5.827z", opacity: "1" }), _jsx("path", { fill: "#19E3BC", d: "M40.25 66.76c-5.083-2.42-9.878-5.122-14.731-7.716-2.112-1.129-4.343-2.034-6.888-3.041.25-1.793.87-3.585 2.047-5.683 2.473.551 4.455 1.287 6.292 2.287 5.016 2.732 9.972 5.576 14.952 8.376-.47 1.846-.939 3.692-1.673 5.776z", opacity: "1" }), _jsx("path", { fill: "#22E3B4", d: "M42.186 60.792c-5.244-2.609-10.2-5.453-15.216-8.185-1.837-1-3.819-1.736-6.082-2.585.951-2.219 2.25-4.445 3.84-6.824 6.678 4.132 13.063 8.417 19.794 12.73-.46 1.576-1.266 3.124-2.336 4.864zM159.464 132.392c2.252.38 4.515.929 6.469 2.026 5.465 3.068 10.803 6.364 16.552 9.575.379 1.73.397 3.455.313 5.601-5.273-2.336-10.444-5.091-15.614-7.849-2.314-1.234-4.626-2.472-7.27-3.712-.414-1.743-.497-3.483-.45-5.641z", opacity: "1" }), _jsx("path", { fill: "#2CE2A4", d: "M159.455 118.395c5.205 2.34 10.271 5.117 15.363 7.849a115.926 115.926 0 007.67 3.75c.408 2.051.453 4.097.429 6.578-6.13-3.191-12.175-6.84-18.26-10.422-1.399-.823-2.933-1.415-4.735-2.115-.418-1.742-.506-3.481-.467-5.64z", opacity: "1" }), _jsx("path", { fill: "#34E192", d: "M107.005 77c.83-1.862 1.66-3.724 3.114-5.754 6.028 3.442 11.431 7.05 16.835 10.66-.85 1.562-1.7 3.124-3.171 4.838-6.008-3.147-11.393-6.445-16.778-9.743z", opacity: "1" }), _jsx("path", { fill: "#13E5D1", d: "M158.124 153.32c2.686.655 5.36 1.36 7.7 2.666 4.416 2.464 8.64 5.273 13.304 8.085-.331 1.922-1.024 3.697-2.027 5.67-6.764-3.917-13.219-8.03-19.872-12.406.112-1.406.422-2.55.895-4.015z", opacity: "1" }), _jsx("path", { fill: "#10D2DA", d: "M72.707 135.176c5.7 3.16 11.102 6.483 16.876 9.808-.464 1.924-1.298 3.846-2.388 6.357l-18.676-9.997c1.469-2.266 2.68-4.134 4.188-6.168z", opacity: "1" }), _jsx("path", { fill: "#40E28D", d: "M127.235 81.727c-5.685-3.43-11.088-7.04-16.845-10.681.36-1.67 1.074-3.307 2.092-5.642l18.892 9.704c-1.531 2.556-2.695 4.498-4.14 6.619z", opacity: "1" }), _jsx("path", { fill: "#32E29F", d: "M106.734 77.187c5.656 3.112 11.04 6.41 16.77 9.736-2.041 4.98-6.953 2.77-11.099 3.845-3.487-2.629-6.559-5.188-9.995-7.75 1.108-1.883 2.581-3.764 4.324-5.83z", opacity: "1" }), _jsx("path", { fill: "#26E2A8", d: "M144.662 112.586c-7.248-3.971-14.395-8.372-21.603-13.101 3.302-.374 6.663-.42 10.541-.073 4.004 2.466 7.492 4.54 10.98 6.613.06 2.044.121 4.088.082 6.561z", opacity: "1" }), _jsx("path", { fill: "#2CE2A4", d: "M48.197 52.661c-2.379-1.87-4.234-4.143-6.558-5.731-4.148-2.835-8.579-5.255-13.244-7.882 1.117-1.9 2.587-3.768 4.353-5.772.608.923.584 2.512 1.287 2.96 6.318 4.029 12.765 7.857 19.54 11.745-1.446 1.528-3.256 3.057-5.378 4.68z", opacity: "1" }), _jsx("path", { fill: "#38DF7C", d: "M66.904 33.565c-6.23-3.334-12.394-7.101-18.71-11.163a27.463 27.463 0 017.47-3.006c3.998 2.755 7.584 5.18 11.17 7.604.045 2.043.09 4.087.07 6.565z", opacity: "1" }), _jsx("path", { fill: "#00BDCD", d: "M131.497 191.427c3.888 1.92 7.643 4.28 11.448 6.969-3.55 1.412-7.15 2.496-11.582 3.83 0-3.906 0-7.133.134-10.8z", opacity: "1" }), _jsx("path", { fill: "#32E6BE", d: "M111.61 99.179c1.67 1.8 2.605 3.952 4.24 5.143 4.89 3.56 10.082 6.707 15.088 10.114.858.584 1.384 1.654 2.086 2.837-1.387.386-2.797.437-4.537.388-1.688-1.777-2.768-3.841-4.458-5.062-4.893-3.535-10.06-6.69-15.047-10.1-.845-.578-1.33-1.68-2-2.884 1.392-.404 2.802-.464 4.628-.436z", opacity: "1" }), _jsx("path", { fill: "#3CDF74", d: "M66.901 26.546c-3.653-1.97-7.239-4.395-10.86-7.165 3.35-1.367 6.735-2.387 10.928-3.65 0 3.915 0 7.138-.068 10.815z", opacity: "1" }), _jsx("path", { fill: "#23E0D5", d: "M16.109 64.287c6.121 2.978 12.14 6.265 18.164 9.547 1.295.705 2.6 1.392 4.249 2.12.395.793.442 1.553.417 2.688-5.462-2.583-10.834-5.572-16.248-8.485-2.103-1.131-4.298-2.09-6.798-3.113-.193-.806-.039-1.628.216-2.757z", opacity: "1" }), _jsx("path", { fill: "#32E29F", d: "M144.68 105.59c-3.588-1.639-7.076-3.712-10.626-6.115 3.355-.33 6.772-.33 10.726-.33 0 2.18 0 4.094-.1 6.444zM90.45 71.705c-2.363-.81-4.755-1.95-7.3-3.396.974-1.133 2.102-1.96 3.466-2.96 1.41 2.235 2.607 4.13 3.834 6.356z", opacity: "1" }), _jsx("path", { fill: "#32E6BE", d: "M99.73 116.977c1.414.066 2.543.183 3.91.537.249.441.26.644.33 1.145-1.669-.147-3.397-.593-5.126-1.038.054-.136.076-.305.172-.397.107-.102.282-.134.713-.247z", opacity: "1" })] }));
|
|
4
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Gitlab: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export const Gitlab = () => {
|
|
3
|
+
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 380 380", width: "24", height: "24", children: [_jsx("path", { fill: "#e24329", d: "M282.83,170.73l-.27-.69-26.14-68.22a6.81,6.81,0,0,0-2.69-3.24,7,7,0,0,0-8,.43,7,7,0,0,0-2.32,3.52l-17.65,54H154.29l-17.65-54A6.86,6.86,0,0,0,134.32,99a7,7,0,0,0-8-.43,6.87,6.87,0,0,0-2.69,3.24L97.44,170l-.26.69a48.54,48.54,0,0,0,16.1,56.1l.09.07.24.17,39.82,29.82,19.7,14.91,12,9.06a8.07,8.07,0,0,0,9.76,0l12-9.06,19.7-14.91,40.06-30,.1-.08A48.56,48.56,0,0,0,282.83,170.73Z" }), _jsx("path", { fill: "#fc6d26", d: "M282.83,170.73l-.27-.69a88.3,88.3,0,0,0-35.15,15.8L190,229.25c19.55,14.79,36.57,27.64,36.57,27.64l40.06-30,.1-.08A48.56,48.56,0,0,0,282.83,170.73Z" }), _jsx("path", { fill: "#fca326", d: "M153.43,256.89l19.7,14.91,12,9.06a8.07,8.07,0,0,0,9.76,0l12-9.06,19.7-14.91S209.55,244,190,229.25C170.45,244,153.43,256.89,153.43,256.89Z" }), _jsx("path", { fill: "#fc6d26", d: "M132.58,185.84A88.19,88.19,0,0,0,97.44,170l-.26.69a48.54,48.54,0,0,0,16.1,56.1l.09.07.24.17,39.82,29.82s17-12.85,36.57-27.64Z" })] }));
|
|
4
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
const ImageIcon = (props) => {
|
|
4
|
+
return (_jsxs(SvgIcon, { ...props, style: {
|
|
5
|
+
fill: 'currentColor'
|
|
6
|
+
}, viewBox: "0 0 24 24", children: [_jsx("path", { d: "M12.588 11.646a1.5 1.5 0 1 1-2.97.418 1.5 1.5 0 0 1 2.97-.418Z" }), _jsx("path", { fillRule: "evenodd", d: "M11.297 1.03c-1.732-.232-3.403.918-3.66 2.674L7.04 7.759l-3.33.468a3.148 3.148 0 0 0-2.68 3.555l1.197 8.508a3.148 3.148 0 0 0 3.555 2.68l8.508-1.197a3.148 3.148 0 0 0 2.68-3.555l-.2-1.42 1.285.172c1.732.233 3.403-.918 3.661-2.674l1.251-8.508c.26-1.766-1.03-3.329-2.769-3.562L11.297 1.03Zm5.183 13.71 1.842.248c.727.097 1.328-.389 1.415-.983l1.252-8.508c.085-.582-.338-1.192-1.057-1.289l-8.901-1.196c-.727-.097-1.329.389-1.416.983l-.51 3.474 3.113-.438a3.148 3.148 0 0 1 3.555 2.68l.707 5.03Zm-2.687-4.752a1.148 1.148 0 0 0-1.297-.977l-8.508 1.196a1.148 1.148 0 0 0-.977 1.297l.619 4.4 1.068-1.063a3.148 3.148 0 0 1 4.115-.283l6.08 4.582c.09-.195.128-.416.096-.644l-1.196-8.508Zm-1.109 9.991L7.61 16.155a1.148 1.148 0 0 0-1.5.103L3.978 18.38l.23 1.632a1.148 1.148 0 0 0 1.296.977l7.18-1.01Z", clipRule: "evenodd" })] }));
|
|
7
|
+
};
|
|
8
|
+
export default ImageIcon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Okta: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
export const Okta = () => {
|
|
3
|
+
return (_jsx("svg", { version: "1.2", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1594 1595", width: "24", height: "24", style: { fill: 'inherit' }, children: _jsx("path", { fillRule: "evenodd", d: "m877 11.5l-32.8 403.8c-15.5-1.8-31-2.7-46.9-2.7-19.9 0-39.4 1.3-58.5 4.4l-18.6-195.6c-0.4-6.2 4.5-11.6 10.7-11.6h33.2l-16-197.8c-0.4-6.2 4.5-11.6 10.2-11.6h108.5c6.2 0 11.1 5.4 10.2 11.1zm-166.1 410.4c-35 8-68.2 20.8-98.8 37.6l-84.6-177.5c-2.6-5.3 0-11.9 5.8-14.2l31.4-11.5-82.8-180.6c-2.6-5.3 0-11.9 5.8-14.2l101.9-37.2c5.7-2.2 11.9 1.4 13.7 7.1 0.4 0 107.6 390.5 107.6 390.5zm-357.4-278l234.3 330.2c-29.7 19.5-56.7 42.5-79.7 69.1l-140.5-138.1c-4.4-4.4-3.9-11.5 0.5-15.5l25.7-21.3-139.6-141.2c-4.4-4.4-3.9-11.5 0.9-15.5l82.9-69.5c4.8-4 11.5-3.1 15 1.8zm136.9 421.4c-21.3 27.9-38.5 58.9-51.4 92.1l-178.9-81.9c-5.8-2.2-8-9.3-4.9-14.6l16.8-28.8-179.8-85c-5.3-2.6-7.5-9.3-4.4-14.6l54-93.8c3.1-5.3 10.2-7.1 15.1-3.6zm-466 24.8c0.9-6.2 7.1-9.7 12.8-8.4l392 102.3c-10.2 33.2-15.9 68.2-16.8 104.5l-196.2-16c-6.2-0.4-10.7-6.2-9.3-12.4l5.7-32.7-198-18.6c-6.2-0.5-10.1-6.2-9.3-12.4l18.6-106.7zm-15 264.7l403.5-37.2c1.8 35.9 8.9 70.9 19.9 103.6l-189.5 52.3c-5.8 1.3-12-2.2-12.9-8.4l-5.7-32.8-192.3 50c-5.7 1.4-11.9-2.2-12.8-8.4l-19.1-106.7c-0.9-6.2 3.1-11.9 9.3-12.4zm63.4 280.7c-3.1-5.3-0.9-11.9 4.4-14.6l365.9-173.5c13.7 32.7 32.3 63.3 54.4 90.7l-160.3 114.2c-4.9 3.6-12 2.2-15.1-3.1l-16.8-29.2-163.4 112.9c-4.9 3.5-12 1.8-15.1-3.5 0 0-54.5-93.9-54-93.9zm525.7-9.3l-111.6 162c-3.5 5.4-10.6 6.2-15.5 2.3l-25.7-21.7-115.1 162c-3.6 4.9-10.2 5.8-15.1 1.8l-83.3-69.5c-4.8-4-5.3-11.1-0.9-15.5l284.8-288.2c24.4 25.6 52.3 48.2 82.4 66.8zm-138.6 395.8c-5.8-2.2-8.4-8.9-5.8-14.2l168.8-368.3c31 15.9 64.7 27.9 99.7 34.5l-49.7 190.4c-1.3 5.7-7.9 9.3-13.7 7.1l-31.4-11.5-52.7 191.7c-1.8 5.7-8 9.3-13.8 7l-101.8-37.1zm337.5-340c19.9 0 39.4-1.4 58.4-4.5l18.6 195.7c0.5 6.2-4.4 11.5-10.6 11.5h-33.2l15.9 197.9c0.9 6.2-3.9 11.5-10.1 11.5h-108.6c-5.7 0-10.6-5.3-10.2-11.5l32.8-403.7c15.5 2.2 31 3.1 47 3.1zm174.5-728.3c-31-15.5-64.2-27.5-99.7-34.5l49.6-190.4c1.8-5.8 8-9.3 13.8-7.1l31.4 11.5 52.7-191.7c1.8-5.7 8-9.3 13.8-7.1l101.8 37.2c5.8 2.2 8.5 8.4 5.8 14.2zm391.6-207.2l-284.9 288.2c-23.9-25.7-51.3-48.2-81.9-66.8l111.6-162.1c3.6-4.8 10.7-6.2 15.5-2.2l25.7 21.7 115.2-162c3.5-4.9 10.6-5.8 15-1.8l83.3 69.5c4.9 4 4.9 11.1 0.5 15.5zm153.7 227.1l-365.9 173.6c-14.2-32.8-32.3-63.4-54.5-90.8l160.3-114.2c4.9-4 12-2.2 15.1 3.1l16.8 28.8 163.5-112.9c4.9-3.1 11.9-1.8 15 3.5l54.5 93.9c3.1 5.3 1.4 11.9-4.4 14.6zm58 146.5l18.6 106.7c0.9 6.2-3.1 11.5-9.3 12.4l-403.5 37.6c-1.8-36.3-8.9-70.8-19.9-103.6l189.6-52.2c5.7-1.8 11.9 2.2 12.8 8.4l5.8 32.8 192.2-50.1c5.8-1.3 12 2.3 12.8 8.5zm-18.6 391.3l-392-102.3c10.2-33.2 16-68.1 16.9-104.4l196.2 15.9c6.2 0.9 10.2 6.2 9.3 12.4l-5.8 32.8 198 18.6c6.2 0.8 10.2 6.1 9.3 12.3l-18.6 106.7c-0.9 6.2-7.1 9.8-12.8 8.5zm-104.1 243.9c-3.1 5.3-10.2 6.6-15.1 3.5l-333.5-230.2c21.3-27.9 38.5-58.9 51.4-92.1l178.9 81.9c5.8 2.7 8 9.3 4.9 14.6l-16.8 28.8 179.8 85c5.3 2.7 7.5 9.3 4.4 14.6zm-446.5-135.9c29.7-19 56.3-42.5 79.8-69l140.4 138.1c4.4 4.4 4.4 11.5-0.5 15.5l-25.7 21.2 139.6 141.3c4 4.4 4 11.5-0.9 15.4l-82.8 69.6c-4.5 3.9-11.6 3.1-15.1-1.8l-234.3-330.3zm-1.8 449.8c-5.7 2.2-11.9-1.3-13.7-7.1l-107.2-390.4c35-8 68.2-20.8 98.8-37.7l84.6 177.6c2.6 5.7 0 12.4-5.8 14.1l-31.4 11.5 82.8 180.7c2.6 5.7 0 11.9-5.8 14.1l-101.8 37.2z" }) }));
|
|
4
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
const AttachmentIcon = (props) => {
|
|
4
|
+
return (_jsx(SvgIcon, { ...props, style: {
|
|
5
|
+
strokeLinecap: 'round',
|
|
6
|
+
strokeLinejoin: 'round',
|
|
7
|
+
strokeWidth: 2,
|
|
8
|
+
fill: 'none',
|
|
9
|
+
stroke: 'currentColor'
|
|
10
|
+
}, viewBox: "0 0 24 24", children: _jsx("path", { d: "m21.44 11.05-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" }) }));
|
|
11
|
+
};
|
|
12
|
+
export default AttachmentIcon;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
const CopyIcon = (props) => {
|
|
4
|
+
return (_jsxs(SvgIcon, { ...props, style: {
|
|
5
|
+
strokeLinecap: 'round',
|
|
6
|
+
strokeLinejoin: 'round',
|
|
7
|
+
strokeWidth: 2,
|
|
8
|
+
fill: 'none',
|
|
9
|
+
stroke: 'currentColor'
|
|
10
|
+
}, viewBox: "0 0 24 24", children: [_jsx("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }), _jsx("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })] }));
|
|
11
|
+
};
|
|
12
|
+
export default CopyIcon;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
const MicrophoneIcon = (props) => {
|
|
4
|
+
return (_jsxs(SvgIcon, { ...props, style: {
|
|
5
|
+
strokeLinecap: 'round',
|
|
6
|
+
strokeLinejoin: 'round',
|
|
7
|
+
strokeWidth: 2,
|
|
8
|
+
fill: 'none',
|
|
9
|
+
stroke: 'currentColor'
|
|
10
|
+
}, viewBox: "0 0 24 24", children: [_jsx("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }), _jsx("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }), _jsx("line", { x1: "12", x2: "12", y1: "19", y2: "22" }), ' '] }));
|
|
11
|
+
};
|
|
12
|
+
export default MicrophoneIcon;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
const MinimizeIcon = (props) => {
|
|
4
|
+
return (_jsxs(SvgIcon, { ...props, style: {
|
|
5
|
+
strokeLinecap: 'round',
|
|
6
|
+
strokeLinejoin: 'round',
|
|
7
|
+
strokeWidth: 2,
|
|
8
|
+
fill: 'none',
|
|
9
|
+
stroke: 'currentColor'
|
|
10
|
+
}, viewBox: "0 0 24 24", children: [_jsx("polyline", { points: "4 14 10 14 10 20" }), _jsx("polyline", { points: "20 10 14 10 14 4" }), _jsx("line", { x1: "14", x2: "21", y1: "10", y2: "3" }), _jsx("line", { x1: "3", x2: "10", y1: "21", y2: "14" })] }));
|
|
11
|
+
};
|
|
12
|
+
export default MinimizeIcon;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
|
3
|
+
const PencilIcon = (props) => {
|
|
4
|
+
return (_jsx(SvgIcon, { children: _jsxs("svg", { ...props, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: [_jsx("path", { d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z" }), _jsx("path", { d: "m15 5 4 4" })] }) }));
|
|
5
|
+
};
|
|
6
|
+
export default PencilIcon;
|
package/dist/lib/utils.d.ts
CHANGED
|
@@ -38,3 +38,5 @@ export declare enum ResultCode {
|
|
|
38
38
|
}
|
|
39
39
|
export declare const getMessageFromCode: (resultCode: string) => "Invalid credentials!" | "Invalid submission, please try again!" | "User already exists, please log in!" | "User created, welcome!" | "Something went wrong, please try again!" | "Logged in!" | undefined;
|
|
40
40
|
export declare const copyClipboard: (obj: any) => void;
|
|
41
|
+
export declare function isObject(object: any): boolean;
|
|
42
|
+
export declare function deepEqual(object1: Record<string, any>, object2: Record<string, any>): boolean;
|
package/dist/lib/utils.js
CHANGED
|
@@ -214,3 +214,23 @@ export const copyClipboard = (obj) => {
|
|
|
214
214
|
}
|
|
215
215
|
navigator.clipboard.writeText(obj);
|
|
216
216
|
};
|
|
217
|
+
export function isObject(object) {
|
|
218
|
+
return object != null && typeof object === 'object';
|
|
219
|
+
}
|
|
220
|
+
export function deepEqual(object1, object2) {
|
|
221
|
+
const keys1 = Object.keys(object1);
|
|
222
|
+
const keys2 = Object.keys(object2);
|
|
223
|
+
if (keys1.length !== keys2.length) {
|
|
224
|
+
return false;
|
|
225
|
+
}
|
|
226
|
+
for (const key of keys1) {
|
|
227
|
+
const val1 = object1[key];
|
|
228
|
+
const val2 = object2[key];
|
|
229
|
+
const areObjects = isObject(val1) && isObject(val2);
|
|
230
|
+
if ((areObjects && !deepEqual(val1, val2)) ||
|
|
231
|
+
(!areObjects && val1 !== val2)) {
|
|
232
|
+
return false;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
return true;
|
|
236
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mtxuilib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.253",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -46,15 +46,15 @@
|
|
|
46
46
|
"./src/*/index.tsx"
|
|
47
47
|
],
|
|
48
48
|
"import": [
|
|
49
|
+
"./src/*.tsx",
|
|
50
|
+
"./src/*.ts",
|
|
51
|
+
"./src/*/index.ts",
|
|
52
|
+
"./src/*/index.tsx",
|
|
49
53
|
"./dist/index.js",
|
|
50
54
|
"./dist/*.js",
|
|
51
55
|
"./dist/*.jsx",
|
|
52
56
|
"./dist/*/index.js",
|
|
53
|
-
"./dist/*/index.jsx"
|
|
54
|
-
"./src/*.ts",
|
|
55
|
-
"./src/*.tsx",
|
|
56
|
-
"./src/*/index.ts",
|
|
57
|
-
"./src/*/index.tsx"
|
|
57
|
+
"./dist/*/index.jsx"
|
|
58
58
|
],
|
|
59
59
|
"require": [
|
|
60
60
|
"./dist/*.js",
|
|
@@ -69,12 +69,12 @@
|
|
|
69
69
|
},
|
|
70
70
|
"./styles/*": {
|
|
71
71
|
"import": [
|
|
72
|
-
"./
|
|
73
|
-
"./
|
|
72
|
+
"./src/styles/*",
|
|
73
|
+
"./dist/styles/*"
|
|
74
74
|
],
|
|
75
75
|
"require": [
|
|
76
|
-
"./
|
|
77
|
-
"./
|
|
76
|
+
"./src/styles/*",
|
|
77
|
+
"./dist/styles/*"
|
|
78
78
|
]
|
|
79
79
|
}
|
|
80
80
|
},
|
|
@@ -157,8 +157,8 @@
|
|
|
157
157
|
"openai": "^4.55.5",
|
|
158
158
|
"path-to-regexp": "^6.2.2",
|
|
159
159
|
"react": "^19.0.0-beta-26f2496093-20240514",
|
|
160
|
-
"react-day-picker": "^8.10.1",
|
|
161
160
|
"react-dom": "^19.0.0-beta-26f2496093-20240514",
|
|
161
|
+
"react-day-picker": "^8.10.1",
|
|
162
162
|
"react-easy-infinite-scroll-hook": "^2.1.4",
|
|
163
163
|
"react-error-boundary": "^4.0.13",
|
|
164
164
|
"react-hook-form": "^7.53.0",
|