@piedata/pieui 1.0.1 → 1.1.0
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/cli.js +11 -9
- package/dist/components/Buttons/AjaxButtonCard/ui/AjaxButtonCard.d.ts +2 -2
- package/dist/components/Buttons/AjaxButtonCard/ui/AjaxButtonCard.d.ts.map +1 -1
- package/dist/components/Chats/ChatCard/ui/components/Markdown.d.ts +0 -1
- package/dist/components/Chats/ChatCard/ui/components/Markdown.d.ts.map +1 -1
- package/dist/components/Containers/AjaxGroupCard/ui/AjaxGroupCard.d.ts +2 -2
- package/dist/components/Containers/AjaxGroupCard/ui/AjaxGroupCard.d.ts.map +1 -1
- package/dist/components/Containers/SequenceCard/ui/SequenceCard.d.ts.map +1 -1
- package/dist/components/Containers/UnionCard/ui/UnionCard.d.ts.map +1 -1
- package/dist/components/PieCard/index.d.ts.map +1 -1
- package/dist/components/PieRoot/index.d.ts +1 -2
- package/dist/components/PieRoot/index.d.ts.map +1 -1
- package/dist/components/PieRoot/types/index.d.ts +3 -0
- package/dist/components/PieRoot/types/index.d.ts.map +1 -1
- package/dist/components/PieTelegramRoot/index.d.ts.map +1 -1
- package/dist/components/UI/index.d.ts.map +1 -1
- package/dist/components/index.esm.js +14 -26
- package/dist/components/index.js +23 -36
- package/dist/index.d.ts +1 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +20 -32
- package/dist/index.js +33 -46
- package/dist/providers/CentrifugeIOInitProvider.d.ts.map +1 -1
- package/dist/providers/SocketIOInitProvider.d.ts.map +1 -1
- package/dist/types/index.d.ts +7 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/util/ajaxCommonUtils.d.ts.map +1 -1
- package/dist/util/centrifuge.d.ts +1 -1
- package/dist/util/centrifuge.d.ts.map +1 -1
- package/dist/util/initializeComponents.d.ts.map +1 -1
- package/dist/util/pieConfig.d.ts +12 -0
- package/dist/util/pieConfig.d.ts.map +1 -0
- package/dist/util/registry.d.ts.map +1 -1
- package/dist/util/socket.d.ts +1 -1
- package/dist/util/socket.d.ts.map +1 -1
- package/dist/util/useIsSupported.d.ts +1 -1
- package/dist/util/useIsSupported.d.ts.map +1 -1
- package/dist/util/useWebApp.d.ts +2 -2
- package/dist/util/useWebApp.d.ts.map +1 -1
- package/dist/util/waitForSidAvailable.d.ts +1 -2
- package/dist/util/waitForSidAvailable.d.ts.map +1 -1
- package/dist/util/webrtcClient.d.ts.map +1 -1
- package/package.json +21 -18
- package/src/components/Buttons/AjaxButtonCard/index.ts +1 -0
- package/src/components/Buttons/AjaxButtonCard/types/index.ts +17 -0
- package/src/components/Buttons/AjaxButtonCard/ui/AjaxButtonCard.tsx +38 -0
- package/src/components/Chats/ChatCard/index.ts +1 -0
- package/src/components/Chats/ChatCard/types/annyang.d.ts +11 -0
- package/src/components/Chats/ChatCard/types/index.ts +59 -0
- package/src/components/Chats/ChatCard/ui/ChatCard.tsx +130 -0
- package/src/components/Chats/ChatCard/ui/components/AttachFileButton.tsx +46 -0
- package/src/components/Chats/ChatCard/ui/components/AttachedFileView.tsx +29 -0
- package/src/components/Chats/ChatCard/ui/components/ChatCardInput.tsx +177 -0
- package/src/components/Chats/ChatCard/ui/components/ChatOption.tsx +25 -0
- package/src/components/Chats/ChatCard/ui/components/Markdown.tsx +25 -0
- package/src/components/Chats/ChatCard/ui/components/MessageAvatar.tsx +17 -0
- package/src/components/Chats/ChatCard/ui/components/MessageCard.tsx +80 -0
- package/src/components/Chats/ChatCard/ui/components/MessageContent.tsx +27 -0
- package/src/components/Chats/ChatCard/ui/components/MessagesBoard.tsx +61 -0
- package/src/components/Chats/ChatCard/ui/components/Options.tsx +20 -0
- package/src/components/Chats/ChatCard/ui/components/ResizableTextarea.tsx +59 -0
- package/src/components/Chats/ChatCard/ui/components/SendButton.tsx +37 -0
- package/src/components/Chats/ChatCard/ui/components/VoiceListeningButton.tsx +35 -0
- package/src/components/Chats/ChatCard/ui/components/icons/AttachFileIcon.tsx +18 -0
- package/src/components/Chats/ChatCard/ui/components/icons/AttachedFileIcon.tsx +18 -0
- package/src/components/Chats/ChatCard/ui/components/icons/CancelFileIcon.tsx +14 -0
- package/src/components/Chats/ChatCard/ui/components/icons/DefaultAvatar.tsx +10 -0
- package/src/components/Chats/ChatCard/ui/components/icons/SendIcon.tsx +18 -0
- package/src/components/Chats/ChatCard/ui/components/icons/VoiceRecordIcon.tsx +15 -0
- package/src/components/Containers/AjaxGroupCard/index.ts +1 -0
- package/src/components/Containers/AjaxGroupCard/types/index.ts +17 -0
- package/src/components/Containers/AjaxGroupCard/ui/AjaxGroupCard.tsx +96 -0
- package/src/components/Containers/SequenceCard/index.ts +1 -0
- package/src/components/Containers/SequenceCard/types/index.ts +10 -0
- package/src/components/Containers/SequenceCard/ui/SequenceCard.tsx +32 -0
- package/src/components/Containers/UnionCard/index.ts +1 -0
- package/src/components/Containers/UnionCard/types/index.ts +8 -0
- package/src/components/Containers/UnionCard/ui/UnionCard.tsx +27 -0
- package/src/components/PieCard/index.tsx +149 -0
- package/src/components/PieCard/types/index.ts +18 -0
- package/src/components/PieRoot/index.tsx +154 -0
- package/src/components/PieRoot/types/index.ts +14 -0
- package/src/components/PieTelegramRoot/index.tsx +161 -0
- package/src/components/UI/index.tsx +70 -0
- package/src/components/index.ts +6 -0
- package/src/index.ts +15 -0
- package/src/providers/CentrifugeIOInitProvider.tsx +42 -0
- package/src/providers/SocketIOInitProvider.tsx +52 -0
- package/src/types/index.ts +139 -0
- package/src/util/ajaxCommonUtils.ts +137 -0
- package/src/util/centrifuge.ts +33 -0
- package/src/util/fallback.tsx +6 -0
- package/src/util/initializeComponents.ts +84 -0
- package/src/util/lazy.ts +25 -0
- package/src/util/mitt.ts +11 -0
- package/src/util/pieConfig.ts +43 -0
- package/src/util/registry.ts +81 -0
- package/src/util/socket.ts +24 -0
- package/src/util/sx2radium.ts +15 -0
- package/src/util/tailwindCommonUtils.ts +6 -0
- package/src/util/useIsSupported.ts +17 -0
- package/src/util/useOpenAIWebRTC.ts +176 -0
- package/src/util/useWebApp.ts +32 -0
- package/src/util/waitForSidAvailable.ts +21 -0
- package/src/util/webrtcClient.ts +247 -0
- package/dist/cli.d.ts +0 -3
- package/dist/cli.d.ts.map +0 -1
- package/dist/components/PieBaseRoot/index.d.ts +0 -5
- package/dist/components/PieBaseRoot/index.d.ts.map +0 -1
- package/dist/components/PieBaseRoot/types/index.d.ts +0 -6
- package/dist/components/PieBaseRoot/types/index.d.ts.map +0 -1
- package/dist/components/PieStaticRoot/index.d.ts +0 -5
- package/dist/components/PieStaticRoot/index.d.ts.map +0 -1
- package/dist/components/PieStaticRoot/types/index.d.ts +0 -7
- package/dist/components/PieStaticRoot/types/index.d.ts.map +0 -1
- package/dist/config/constant.d.ts +0 -10
- package/dist/config/constant.d.ts.map +0 -1
- package/dist/util/axiosWithCache.d.ts +0 -3
- package/dist/util/axiosWithCache.d.ts.map +0 -1
- package/dist/util/globalForm.d.ts +0 -3
- package/dist/util/globalForm.d.ts.map +0 -1
- package/dist/util/queryClient.d.ts +0 -3
- package/dist/util/queryClient.d.ts.map +0 -1
- package/dist/util/useBodyStyles.d.ts +0 -5
- package/dist/util/useBodyStyles.d.ts.map +0 -1
- package/dist/util/useImage.d.ts +0 -5
- package/dist/util/useImage.d.ts.map +0 -1
- package/dist/util/useScreenSize.d.ts +0 -6
- package/dist/util/useScreenSize.d.ts.map +0 -1
- package/dist/util/useTitle.d.ts +0 -2
- package/dist/util/useTitle.d.ts.map +0 -1
package/dist/cli.js
CHANGED
|
@@ -355622,6 +355622,7 @@ var openPattern = /\\{/g;
|
|
|
355622
355622
|
var closePattern = /\\}/g;
|
|
355623
355623
|
var commaPattern = /\\,/g;
|
|
355624
355624
|
var periodPattern = /\\./g;
|
|
355625
|
+
var EXPANSION_MAX = 1e5;
|
|
355625
355626
|
function numeric(str) {
|
|
355626
355627
|
return !isNaN(str) ? parseInt(str, 10) : str.charCodeAt(0);
|
|
355627
355628
|
}
|
|
@@ -355651,14 +355652,15 @@ function parseCommaParts(str) {
|
|
|
355651
355652
|
parts.push.apply(parts, p);
|
|
355652
355653
|
return parts;
|
|
355653
355654
|
}
|
|
355654
|
-
function expand(str) {
|
|
355655
|
+
function expand(str, options = {}) {
|
|
355655
355656
|
if (!str) {
|
|
355656
355657
|
return [];
|
|
355657
355658
|
}
|
|
355659
|
+
const { max = EXPANSION_MAX } = options;
|
|
355658
355660
|
if (str.slice(0, 2) === "{}") {
|
|
355659
355661
|
str = "\\{\\}" + str.slice(2);
|
|
355660
355662
|
}
|
|
355661
|
-
return expand_(escapeBraces(str), true).map(unescapeBraces);
|
|
355663
|
+
return expand_(escapeBraces(str), max, true).map(unescapeBraces);
|
|
355662
355664
|
}
|
|
355663
355665
|
function embrace(str) {
|
|
355664
355666
|
return "{" + str + "}";
|
|
@@ -355672,15 +355674,15 @@ function lte(i, y) {
|
|
|
355672
355674
|
function gte(i, y) {
|
|
355673
355675
|
return i >= y;
|
|
355674
355676
|
}
|
|
355675
|
-
function expand_(str, isTop) {
|
|
355677
|
+
function expand_(str, max, isTop) {
|
|
355676
355678
|
const expansions = [];
|
|
355677
355679
|
const m = balanced("{", "}", str);
|
|
355678
355680
|
if (!m)
|
|
355679
355681
|
return [str];
|
|
355680
355682
|
const pre = m.pre;
|
|
355681
|
-
const post = m.post.length ? expand_(m.post, false) : [""];
|
|
355683
|
+
const post = m.post.length ? expand_(m.post, max, false) : [""];
|
|
355682
355684
|
if (/\$$/.test(m.pre)) {
|
|
355683
|
-
for (let k = 0;k < post.length; k++) {
|
|
355685
|
+
for (let k = 0;k < post.length && k < max; k++) {
|
|
355684
355686
|
const expansion = pre + "{" + m.body + "}" + post[k];
|
|
355685
355687
|
expansions.push(expansion);
|
|
355686
355688
|
}
|
|
@@ -355692,7 +355694,7 @@ function expand_(str, isTop) {
|
|
|
355692
355694
|
if (!isSequence && !isOptions) {
|
|
355693
355695
|
if (m.post.match(/,(?!,).*\}/)) {
|
|
355694
355696
|
str = m.pre + "{" + m.body + escClose + m.post;
|
|
355695
|
-
return expand_(str);
|
|
355697
|
+
return expand_(str, max, true);
|
|
355696
355698
|
}
|
|
355697
355699
|
return [str];
|
|
355698
355700
|
}
|
|
@@ -355702,7 +355704,7 @@ function expand_(str, isTop) {
|
|
|
355702
355704
|
} else {
|
|
355703
355705
|
n = parseCommaParts(m.body);
|
|
355704
355706
|
if (n.length === 1 && n[0] !== undefined) {
|
|
355705
|
-
n = expand_(n[0], false).map(embrace);
|
|
355707
|
+
n = expand_(n[0], max, false).map(embrace);
|
|
355706
355708
|
if (n.length === 1) {
|
|
355707
355709
|
return post.map((p) => m.pre + n[0] + p);
|
|
355708
355710
|
}
|
|
@@ -355748,11 +355750,11 @@ function expand_(str, isTop) {
|
|
|
355748
355750
|
} else {
|
|
355749
355751
|
N = [];
|
|
355750
355752
|
for (let j = 0;j < n.length; j++) {
|
|
355751
|
-
N.push.apply(N, expand_(n[j], false));
|
|
355753
|
+
N.push.apply(N, expand_(n[j], max, false));
|
|
355752
355754
|
}
|
|
355753
355755
|
}
|
|
355754
355756
|
for (let j = 0;j < N.length; j++) {
|
|
355755
|
-
for (let k = 0;k < post.length; k++) {
|
|
355757
|
+
for (let k = 0;k < post.length && expansions.length < max; k++) {
|
|
355756
355758
|
const expansion = pre + N[j] + post[k];
|
|
355757
355759
|
if (!isTop || isSequence || expansion) {
|
|
355758
355760
|
expansions.push(expansion);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { AjaxButtonCardProps } from '../types';
|
|
2
|
-
declare const
|
|
3
|
-
export default
|
|
2
|
+
declare const _default: ({ data, setUiAjaxConfiguration, }: AjaxButtonCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export default _default;
|
|
4
4
|
//# sourceMappingURL=AjaxButtonCard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AjaxButtonCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/Buttons/AjaxButtonCard/ui/AjaxButtonCard.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,mBAAmB,EAAC,MAAM,UAAU,CAAA;
|
|
1
|
+
{"version":3,"file":"AjaxButtonCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/Buttons/AjaxButtonCard/ui/AjaxButtonCard.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,mBAAmB,EAAC,MAAM,UAAU,CAAA;4DAYzC,mBAAmB;AAyBtB,wBAAqC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Markdown.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Chats/ChatCard/ui/components/Markdown.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Markdown.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Chats/ChatCard/ui/components/Markdown.tsx"],"names":[],"mappings":"AAKA,iBAAS,cAAc,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,2CAiBzD;AAED,eAAe,cAAc,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
2
|
import { AjaxGroupCardProps } from '../types';
|
|
3
|
-
declare const
|
|
4
|
-
export default
|
|
3
|
+
declare const _default: ({ data, content, }: AjaxGroupCardProps) => string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;
|
|
4
|
+
export default _default;
|
|
5
5
|
//# sourceMappingURL=AjaxGroupCard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AjaxGroupCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/Containers/AjaxGroupCard/ui/AjaxGroupCard.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAA0C,MAAM,OAAO,CAAA;AAExE,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;
|
|
1
|
+
{"version":3,"file":"AjaxGroupCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/Containers/AjaxGroupCard/ui/AjaxGroupCard.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAA0C,MAAM,OAAO,CAAA;AAExE,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;6CAY1C,kBAAkB;AAiFrB,wBAAoC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SequenceCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/Containers/SequenceCard/ui/SequenceCard.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,iBAAiB,EAAC,MAAM,UAAU,CAAA;
|
|
1
|
+
{"version":3,"file":"SequenceCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/Containers/SequenceCard/ui/SequenceCard.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,iBAAiB,EAAC,MAAM,UAAU,CAAA;qEAUvC,iBAAiB;AAoBpB,wBAAmC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UnionCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/Containers/UnionCard/ui/UnionCard.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,cAAc,EAAC,MAAM,UAAU,CAAA;
|
|
1
|
+
{"version":3,"file":"UnionCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/Containers/UnionCard/ui/UnionCard.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,cAAc,EAAC,MAAM,UAAU,CAAA;AAIvC,QAAA,MAAM,SAAS,GAAI,4CAIhB,cAAc,4CAehB,CAAA;AAED,eAAe,SAAS,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/PieCard/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAC,YAAY,EAAC,MAAM,SAAS,CAAC;AAGrC,QAAA,MAAM,OAAO,GAAI,iHASd,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/PieCard/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAC,YAAY,EAAC,MAAM,SAAS,CAAC;AAGrC,QAAA,MAAM,OAAO,GAAI,iHASd,YAAY,8BAiId,CAAA;AAED,eAAe,OAAO,CAAA"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import { PieRootProps } from './types';
|
|
3
|
-
declare const PieRoot:
|
|
2
|
+
declare const PieRoot: (props: PieRootProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
3
|
export default PieRoot;
|
|
5
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/PieRoot/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/PieRoot/index.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAC,YAAY,EAAC,MAAM,SAAS,CAAA;AAyIpC,QAAA,MAAM,OAAO,GAAI,OAAO,YAAY,4CASnC,CAAA;AAGD,eAAe,OAAO,CAAA"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ReactNode } from "react";
|
|
2
|
+
import { PieConfig } from "../../../types";
|
|
2
3
|
export interface PieRootProps {
|
|
3
4
|
location: {
|
|
4
5
|
pathname: string;
|
|
@@ -6,5 +7,7 @@ export interface PieRootProps {
|
|
|
6
7
|
};
|
|
7
8
|
fallback?: ReactNode;
|
|
8
9
|
onError?: () => void;
|
|
10
|
+
config: PieConfig;
|
|
11
|
+
initializePie: () => void;
|
|
9
12
|
}
|
|
10
13
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/PieRoot/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/PieRoot/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClC,OAAO,EAAC,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAGzC,MAAM,WAAW,YAAY;IACzB,QAAQ,EAAE;QACN,QAAQ,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE,MAAM,CAAC;KAClB,CAAC;IACF,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;IACpB,MAAM,EAAE,SAAS,CAAA;IACjB,aAAa,EAAE,MAAM,IAAI,CAAA;CAC5B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/PieTelegramRoot/index.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/PieTelegramRoot/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA2B,MAAM,OAAO,CAAA;AAI/C,OAAO,EAAC,YAAY,EAAC,MAAM,kBAAkB,CAAA;AAgJ7C,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAS3C,CAAA;AAGD,eAAe,eAAe,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/UI/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,0BAA0B,EAAE,MAAM,aAAa,CAAA;AAEtE,OAAO,EAAuB,SAAS,EAAC,MAAM,OAAO,CAAC;AAKtD,iBAAS,EAAE,CAAC,EACR,QAAQ,EACR,sBAAsB,GACzB,EAAE;IACC,QAAQ,EAAE,YAAY,CAAA;IACtB,sBAAsB,CAAC,EAAE,0BAA0B,CAAA;CACtD,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/UI/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,0BAA0B,EAAE,MAAM,aAAa,CAAA;AAEtE,OAAO,EAAuB,SAAS,EAAC,MAAM,OAAO,CAAC;AAKtD,iBAAS,EAAE,CAAC,EACR,QAAQ,EACR,sBAAsB,GACzB,EAAE;IACC,QAAQ,EAAE,YAAY,CAAA;IACtB,sBAAsB,CAAC,EAAE,0BAA0B,CAAA;CACtD,2UAsDA;AAED,eAAe,EAAE,CAAA"}
|