@genai-fi/base 4.3.7 → 4.3.9
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/{Button-BgSe1MyE.js → Button-HlUfDiMM.js} +3 -3
- package/dist/{CircularProgress-DgKnRiq7.js → CircularProgress-DZ8YZ0Dt.js} +345 -310
- package/dist/{Close-Cv_QwhIN.js → Close-TS8H1lQg.js} +1 -1
- package/dist/{DefaultPropsProvider-BurgXZzw.js → DefaultPropsProvider-B_x1hwuY.js} +2 -2
- package/dist/{DialogQR-DoM8ZHBM.js → DialogQR-ByOert0g.js} +4 -4
- package/dist/{FileSaver.min-DhePf63e.js → FileSaver.min-CDwyANUI.js} +57 -57
- package/dist/{FlashWifi-slUpI7sB.js → FlashWifi-CNanHNye.js} +1 -1
- package/dist/{Portal-MiwrHMB_.js → Portal-BdRLJx1y.js} +140 -133
- package/dist/assets/SidePanel.css +1 -1
- package/dist/assets/SvgLayer.css +1 -1
- package/dist/assets/Widget.css +1 -1
- package/dist/{browser-HW-wgeM2.js → browser-DWbgwj89.js} +421 -451
- package/dist/components/AlertPara/AlertPara.js +1 -1
- package/dist/components/Application/Application.js +724 -689
- package/dist/components/BusyButton/BusyButton.d.ts +4 -4
- package/dist/components/BusyButton/BusyButton.js +1 -1
- package/dist/components/Button/Button.js +2 -2
- package/dist/components/ConnectionStatus/ConnectionStatus.js +3 -3
- package/dist/components/ConnectionStatus/FlashWifi.js +1 -1
- package/dist/components/Feedback/Feedback.js +4 -4
- package/dist/components/Feedback/Rating.js +1 -1
- package/dist/components/Help/Help.js +5 -5
- package/dist/components/LangSelect/LangSelect.js +1 -1
- package/dist/components/Motd/Motd.js +1 -1
- package/dist/components/PieScore/PieScore.js +9609 -6092
- package/dist/components/QRCode/DialogQR.js +4 -4
- package/dist/components/QRCode/QRCode.js +2 -2
- package/dist/components/SidePanel/SidePanel.d.ts +2 -1
- package/dist/components/SidePanel/SidePanel.js +91 -73
- package/dist/components/Webcam/Webcam.js +3 -3
- package/dist/components/WorkflowLayout/Widget.js +1460 -1438
- package/dist/{createSvgIcon-BM4dw4Lw.js → createSvgIcon-DjQWJ3wn.js} +2 -2
- package/dist/{createTheme-DV959X3d.js → createTheme-DnBeI7Zz.js} +752 -749
- package/dist/hooks/peer.js +1 -1
- package/dist/{index-SOhdqzHq.js → index-B_zFkp-8.js} +2 -2
- package/dist/react-CiLnfHJp.js +140 -0
- package/dist/services/peer2peer/Incoming.js +1 -1
- package/dist/services/peer2peer/Outgoing.js +1 -1
- package/dist/services/peer2peer/Peer2Peer.js +538 -541
- package/dist/services/peer2peer/PeerConnection.js +1 -1
- package/dist/state/webrtcState.js +1 -1
- package/dist/style/theme.js +1 -1
- package/dist/util/Observer.js +1 -1
- package/dist/util/zip.js +1 -1
- package/dist/vanilla-OLGM3aAq.js +439 -0
- package/package.json +3 -3
- package/dist/react-B9NW8BS7.js +0 -112
- package/dist/vanilla-BJxibF1U.js +0 -404
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
interface Props extends
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
import { ButtonProps } from '@mui/material';
|
|
3
|
+
interface Props extends PropsWithChildren<ButtonProps> {
|
|
4
4
|
busy?: boolean;
|
|
5
5
|
}
|
|
6
|
-
declare const _default:
|
|
6
|
+
declare const _default: import('react').ForwardRefExoticComponent<Omit<Props, "ref"> & import('react').RefAttributes<HTMLButtonElement>>;
|
|
7
7
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as o } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef as n } from "react";
|
|
3
3
|
import { Button as a } from "../Button/Button.js";
|
|
4
|
-
import { C as e } from "../../CircularProgress-
|
|
4
|
+
import { C as e } from "../../CircularProgress-DZ8YZ0Dt.js";
|
|
5
5
|
const f = n(function({ busy: r, ...t }, i) {
|
|
6
6
|
return /* @__PURE__ */ o(
|
|
7
7
|
a,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { s as t } from "../../DefaultPropsProvider-
|
|
2
|
-
import { B as o } from "../../Button-
|
|
1
|
+
import { s as t } from "../../DefaultPropsProvider-B_x1hwuY.js";
|
|
2
|
+
import { B as o } from "../../Button-HlUfDiMM.js";
|
|
3
3
|
const e = t(o)({
|
|
4
4
|
textTransform: "none"
|
|
5
5
|
}), s = t(o)({
|
|
@@ -2,12 +2,12 @@ import { jsx as r, Fragment as W, jsxs as q } from "react/jsx-runtime";
|
|
|
2
2
|
import { iceConfig as F, webrtcActive as L } from "../../state/webrtcState.js";
|
|
3
3
|
import { useRef as P, useState as _, useEffect as o } from "react";
|
|
4
4
|
import { getRTConfig as z } from "./ice.js";
|
|
5
|
-
import { W as E, F as R } from "../../FlashWifi-
|
|
5
|
+
import { W as E, F as R } from "../../FlashWifi-CNanHNye.js";
|
|
6
6
|
import { useTranslation as b } from "react-i18next";
|
|
7
|
-
import { c as j } from "../../createSvgIcon-
|
|
7
|
+
import { c as j } from "../../createSvgIcon-DjQWJ3wn.js";
|
|
8
8
|
import { checkP2P as x } from "./check.js";
|
|
9
9
|
import { usePeerObject as A } from "../../hooks/peer.js";
|
|
10
|
-
import { a as B } from "../../react-
|
|
10
|
+
import { a as B } from "../../react-CiLnfHJp.js";
|
|
11
11
|
import '../../assets/ConnectionStatus.css';const D = "_containerConnecting_1p4sr_15 _container_1p4sr_3", U = "_containerSuccess_1p4sr_20 _container_1p4sr_3", w = "_containerMedium_1p4sr_25 _container_1p4sr_3", O = "_containerBad_1p4sr_30 _container_1p4sr_3", $ = "_message_1p4sr_35", f = {
|
|
12
12
|
containerConnecting: D,
|
|
13
13
|
containerSuccess: U,
|
|
@@ -4,12 +4,12 @@ import { useState as r, useEffect as g } from "react";
|
|
|
4
4
|
import { useTranslation as w } from "react-i18next";
|
|
5
5
|
import "../../hooks/peer.js";
|
|
6
6
|
import { Button as F } from "../Button/Button.js";
|
|
7
|
-
import "../../index-
|
|
7
|
+
import "../../index-B_zFkp-8.js";
|
|
8
8
|
import "../../style/theme.js";
|
|
9
9
|
import "../../util/canvas.js";
|
|
10
|
-
import "../../FileSaver.min-
|
|
10
|
+
import "../../FileSaver.min-CDwyANUI.js";
|
|
11
11
|
import "../BusyButton/BusyButton.js";
|
|
12
|
-
import "../../browser-
|
|
12
|
+
import "../../browser-DWbgwj89.js";
|
|
13
13
|
import "@mui/material";
|
|
14
14
|
import "../WorkflowLayout/lines.js";
|
|
15
15
|
import "../WorkflowLayout/svgContext.js";
|
|
@@ -17,7 +17,7 @@ import "../WorkflowLayout/Widget.js";
|
|
|
17
17
|
import "../IconMenu/context.js";
|
|
18
18
|
import "@emotion/react";
|
|
19
19
|
import I from "./FeedbackForm.js";
|
|
20
|
-
import { c as v } from "../../createSvgIcon-
|
|
20
|
+
import { c as v } from "../../createSvgIcon-DjQWJ3wn.js";
|
|
21
21
|
const j = v(/* @__PURE__ */ o("path", {
|
|
22
22
|
d: "M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55zm10.5 4h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5"
|
|
23
23
|
}), "ThumbsUpDown");
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as e, jsxs as l } from "react/jsx-runtime";
|
|
2
2
|
import { s as t } from "../../Feedback.module-C2gI6YmB.js";
|
|
3
|
-
import { c as n } from "../../createSvgIcon-
|
|
3
|
+
import { c as n } from "../../createSvgIcon-DjQWJ3wn.js";
|
|
4
4
|
import { useTranslation as c } from "react-i18next";
|
|
5
5
|
const o = n(/* @__PURE__ */ e("path", {
|
|
6
6
|
d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { jsx as o, jsxs as m } from "react/jsx-runtime";
|
|
2
2
|
import { IconButton as p } from "@mui/material";
|
|
3
3
|
import w from "../InfoPop/InfoPop.js";
|
|
4
|
-
import { c as g } from "../../createSvgIcon-
|
|
4
|
+
import { c as g } from "../../createSvgIcon-DjQWJ3wn.js";
|
|
5
5
|
import { useState as S } from "react";
|
|
6
|
-
import { C as $ } from "../../Close-
|
|
6
|
+
import { C as $ } from "../../Close-TS8H1lQg.js";
|
|
7
7
|
import "../../state/webrtcState.js";
|
|
8
8
|
import "react-i18next";
|
|
9
9
|
import "../../hooks/peer.js";
|
|
10
10
|
import { Button as z } from "../Button/Button.js";
|
|
11
|
-
import "../../index-
|
|
11
|
+
import "../../index-B_zFkp-8.js";
|
|
12
12
|
import "../../style/theme.js";
|
|
13
13
|
import "../../util/canvas.js";
|
|
14
|
-
import "../../FileSaver.min-
|
|
14
|
+
import "../../FileSaver.min-CDwyANUI.js";
|
|
15
15
|
import "../BusyButton/BusyButton.js";
|
|
16
|
-
import "../../browser-
|
|
16
|
+
import "../../browser-DWbgwj89.js";
|
|
17
17
|
import "../WorkflowLayout/lines.js";
|
|
18
18
|
import "../WorkflowLayout/svgContext.js";
|
|
19
19
|
import "../WorkflowLayout/Widget.js";
|
|
@@ -2,7 +2,7 @@ import { jsx as n, jsxs as m } from "react/jsx-runtime";
|
|
|
2
2
|
import { NativeSelect as g } from "@mui/material";
|
|
3
3
|
import { useTranslation as i } from "react-i18next";
|
|
4
4
|
import { useCallback as d } from "react";
|
|
5
|
-
import { c as u } from "../../createSvgIcon-
|
|
5
|
+
import { c as u } from "../../createSvgIcon-DjQWJ3wn.js";
|
|
6
6
|
import '../../assets/LangSelect.css';const h = "_lang_qnljl_1", p = "_dark_qnljl_8", S = "_darkSelect_qnljl_24", e = {
|
|
7
7
|
lang: h,
|
|
8
8
|
dark: p,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as c, jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import { useState as l, useEffect as d, useMemo as m } from "react";
|
|
3
|
-
import { C as _ } from "../../Close-
|
|
3
|
+
import { C as _ } from "../../Close-TS8H1lQg.js";
|
|
4
4
|
import { IconButton as a } from "@mui/material";
|
|
5
5
|
import '../../assets/Motd.css';const g = "#e04f66", b = "#fd9d32", h = "#e8f0fe", j = "_motd_1rn2j_3", v = "_info_1rn2j_15 _motd_1rn2j_3", w = "_warn_1rn2j_21 _motd_1rn2j_3", C = "_error_1rn2j_26 _motd_1rn2j_3", M = {
|
|
6
6
|
bgColourful3: g,
|