@genesislcap/ai-assistant 15.3.2-FUI-2591.1 → 15.3.3
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/custom-elements.json +2147 -2147
- package/dist/dts/react.d.ts +11 -11
- package/dist/react.cjs +21 -21
- package/dist/react.mjs +20 -20
- package/package.json +17 -17
package/dist/dts/react.d.ts
CHANGED
|
@@ -47,17 +47,6 @@ interface HTMLWCProps extends React.AriaAttributes {
|
|
|
47
47
|
onInput?(e: Event): void;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
export declare const FoundationAiAssistant: React.ForwardRefExoticComponent<
|
|
51
|
-
React.PropsWithChildren<
|
|
52
|
-
Omit<PublicOf<FoundationAiAssistantWC>, 'children' | 'style'> &
|
|
53
|
-
HTMLWCProps & {
|
|
54
|
-
onChatHeaderMousedown?: (event: CustomEvent<ChatHeaderMouseDownDetail>) => void;
|
|
55
|
-
onSessionCleared?: (event: CustomEvent<SessionClearedDetail>) => void;
|
|
56
|
-
}
|
|
57
|
-
> & React.RefAttributes<FoundationAiAssistantWC>
|
|
58
|
-
>;
|
|
59
|
-
export type FoundationAiAssistantRef = FoundationAiAssistantWC;
|
|
60
|
-
|
|
61
50
|
export declare const AiFlowingWavesIndicator: React.ForwardRefExoticComponent<
|
|
62
51
|
React.PropsWithChildren<
|
|
63
52
|
Omit<PublicOf<AiFlowingWavesIndicatorWC>, 'children' | 'style'> &
|
|
@@ -94,6 +83,17 @@ export declare const AiWavesIndicator: React.ForwardRefExoticComponent<
|
|
|
94
83
|
>;
|
|
95
84
|
export type AiWavesIndicatorRef = AiWavesIndicatorWC;
|
|
96
85
|
|
|
86
|
+
export declare const FoundationAiAssistant: React.ForwardRefExoticComponent<
|
|
87
|
+
React.PropsWithChildren<
|
|
88
|
+
Omit<PublicOf<FoundationAiAssistantWC>, 'children' | 'style'> &
|
|
89
|
+
HTMLWCProps & {
|
|
90
|
+
onChatHeaderMousedown?: (event: CustomEvent<ChatHeaderMouseDownDetail>) => void;
|
|
91
|
+
onSessionCleared?: (event: CustomEvent<SessionClearedDetail>) => void;
|
|
92
|
+
}
|
|
93
|
+
> & React.RefAttributes<FoundationAiAssistantWC>
|
|
94
|
+
>;
|
|
95
|
+
export type FoundationAiAssistantRef = FoundationAiAssistantWC;
|
|
96
|
+
|
|
97
97
|
export declare const ChatSuggestions: React.ForwardRefExoticComponent<
|
|
98
98
|
React.PropsWithChildren<
|
|
99
99
|
Omit<PublicOf<ChatSuggestionsWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -28,6 +28,26 @@ function _mergeRefs(...refs) {
|
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
+
const AiFlowingWavesIndicator = React.forwardRef(function AiFlowingWavesIndicator(props, ref) {
|
|
32
|
+
const { children, ...rest } = props;
|
|
33
|
+
return React.createElement(customElements.getName(AiFlowingWavesIndicatorWC) ?? 'ai-flowing-waves-indicator', { ...rest, ref }, children);
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
const AiHaloOverlay = React.forwardRef(function AiHaloOverlay(props, ref) {
|
|
37
|
+
const { children, ...rest } = props;
|
|
38
|
+
return React.createElement(customElements.getName(AiHaloOverlayWC) ?? 'ai-halo-overlay', { ...rest, ref }, children);
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
const AiPlasmaOrbIndicator = React.forwardRef(function AiPlasmaOrbIndicator(props, ref) {
|
|
42
|
+
const { children, ...rest } = props;
|
|
43
|
+
return React.createElement(customElements.getName(AiPlasmaOrbIndicatorWC) ?? 'ai-plasma-orb-indicator', { ...rest, ref }, children);
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
const AiWavesIndicator = React.forwardRef(function AiWavesIndicator(props, ref) {
|
|
47
|
+
const { children, ...rest } = props;
|
|
48
|
+
return React.createElement(customElements.getName(AiWavesIndicatorWC) ?? 'ai-waves-indicator', { ...rest, ref }, children);
|
|
49
|
+
});
|
|
50
|
+
|
|
31
51
|
const FoundationAiAssistant = React.forwardRef(function FoundationAiAssistant(props, ref) {
|
|
32
52
|
const { onChatHeaderMousedown, onSessionCleared, children, ...rest } = props;
|
|
33
53
|
const _innerRef = React.useRef(null);
|
|
@@ -50,26 +70,6 @@ const FoundationAiAssistant = React.forwardRef(function FoundationAiAssistant(pr
|
|
|
50
70
|
return React.createElement(customElements.getName(FoundationAiAssistantWC) ?? 'foundation-ai-assistant', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
51
71
|
});
|
|
52
72
|
|
|
53
|
-
const AiFlowingWavesIndicator = React.forwardRef(function AiFlowingWavesIndicator(props, ref) {
|
|
54
|
-
const { children, ...rest } = props;
|
|
55
|
-
return React.createElement(customElements.getName(AiFlowingWavesIndicatorWC) ?? 'ai-flowing-waves-indicator', { ...rest, ref }, children);
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
const AiHaloOverlay = React.forwardRef(function AiHaloOverlay(props, ref) {
|
|
59
|
-
const { children, ...rest } = props;
|
|
60
|
-
return React.createElement(customElements.getName(AiHaloOverlayWC) ?? 'ai-halo-overlay', { ...rest, ref }, children);
|
|
61
|
-
});
|
|
62
|
-
|
|
63
|
-
const AiPlasmaOrbIndicator = React.forwardRef(function AiPlasmaOrbIndicator(props, ref) {
|
|
64
|
-
const { children, ...rest } = props;
|
|
65
|
-
return React.createElement(customElements.getName(AiPlasmaOrbIndicatorWC) ?? 'ai-plasma-orb-indicator', { ...rest, ref }, children);
|
|
66
|
-
});
|
|
67
|
-
|
|
68
|
-
const AiWavesIndicator = React.forwardRef(function AiWavesIndicator(props, ref) {
|
|
69
|
-
const { children, ...rest } = props;
|
|
70
|
-
return React.createElement(customElements.getName(AiWavesIndicatorWC) ?? 'ai-waves-indicator', { ...rest, ref }, children);
|
|
71
|
-
});
|
|
72
|
-
|
|
73
73
|
const ChatSuggestions = React.forwardRef(function ChatSuggestions(props, ref) {
|
|
74
74
|
const { children, ...rest } = props;
|
|
75
75
|
return React.createElement(customElements.getName(ChatSuggestionsWC) ?? 'chat-suggestions', { ...rest, ref }, children);
|
|
@@ -135,11 +135,11 @@ const FoundationAiPopoutManager = React.forwardRef(function FoundationAiPopoutMa
|
|
|
135
135
|
});
|
|
136
136
|
|
|
137
137
|
module.exports = {
|
|
138
|
-
FoundationAiAssistant,
|
|
139
138
|
AiFlowingWavesIndicator,
|
|
140
139
|
AiHaloOverlay,
|
|
141
140
|
AiPlasmaOrbIndicator,
|
|
142
141
|
AiWavesIndicator,
|
|
142
|
+
FoundationAiAssistant,
|
|
143
143
|
ChatSuggestions,
|
|
144
144
|
AiActivityHalo,
|
|
145
145
|
AgentPicker,
|
package/dist/react.mjs
CHANGED
|
@@ -26,6 +26,26 @@ function _mergeRefs(...refs) {
|
|
|
26
26
|
};
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
export const AiFlowingWavesIndicator = React.forwardRef(function AiFlowingWavesIndicator(props, ref) {
|
|
30
|
+
const { children, ...rest } = props;
|
|
31
|
+
return React.createElement(customElements.getName(AiFlowingWavesIndicatorWC) ?? 'ai-flowing-waves-indicator', { ...rest, ref }, children);
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
export const AiHaloOverlay = React.forwardRef(function AiHaloOverlay(props, ref) {
|
|
35
|
+
const { children, ...rest } = props;
|
|
36
|
+
return React.createElement(customElements.getName(AiHaloOverlayWC) ?? 'ai-halo-overlay', { ...rest, ref }, children);
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
export const AiPlasmaOrbIndicator = React.forwardRef(function AiPlasmaOrbIndicator(props, ref) {
|
|
40
|
+
const { children, ...rest } = props;
|
|
41
|
+
return React.createElement(customElements.getName(AiPlasmaOrbIndicatorWC) ?? 'ai-plasma-orb-indicator', { ...rest, ref }, children);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export const AiWavesIndicator = React.forwardRef(function AiWavesIndicator(props, ref) {
|
|
45
|
+
const { children, ...rest } = props;
|
|
46
|
+
return React.createElement(customElements.getName(AiWavesIndicatorWC) ?? 'ai-waves-indicator', { ...rest, ref }, children);
|
|
47
|
+
});
|
|
48
|
+
|
|
29
49
|
export const FoundationAiAssistant = React.forwardRef(function FoundationAiAssistant(props, ref) {
|
|
30
50
|
const { onChatHeaderMousedown, onSessionCleared, children, ...rest } = props;
|
|
31
51
|
const _innerRef = React.useRef(null);
|
|
@@ -48,26 +68,6 @@ export const FoundationAiAssistant = React.forwardRef(function FoundationAiAssis
|
|
|
48
68
|
return React.createElement(customElements.getName(FoundationAiAssistantWC) ?? 'foundation-ai-assistant', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
49
69
|
});
|
|
50
70
|
|
|
51
|
-
export const AiFlowingWavesIndicator = React.forwardRef(function AiFlowingWavesIndicator(props, ref) {
|
|
52
|
-
const { children, ...rest } = props;
|
|
53
|
-
return React.createElement(customElements.getName(AiFlowingWavesIndicatorWC) ?? 'ai-flowing-waves-indicator', { ...rest, ref }, children);
|
|
54
|
-
});
|
|
55
|
-
|
|
56
|
-
export const AiHaloOverlay = React.forwardRef(function AiHaloOverlay(props, ref) {
|
|
57
|
-
const { children, ...rest } = props;
|
|
58
|
-
return React.createElement(customElements.getName(AiHaloOverlayWC) ?? 'ai-halo-overlay', { ...rest, ref }, children);
|
|
59
|
-
});
|
|
60
|
-
|
|
61
|
-
export const AiPlasmaOrbIndicator = React.forwardRef(function AiPlasmaOrbIndicator(props, ref) {
|
|
62
|
-
const { children, ...rest } = props;
|
|
63
|
-
return React.createElement(customElements.getName(AiPlasmaOrbIndicatorWC) ?? 'ai-plasma-orb-indicator', { ...rest, ref }, children);
|
|
64
|
-
});
|
|
65
|
-
|
|
66
|
-
export const AiWavesIndicator = React.forwardRef(function AiWavesIndicator(props, ref) {
|
|
67
|
-
const { children, ...rest } = props;
|
|
68
|
-
return React.createElement(customElements.getName(AiWavesIndicatorWC) ?? 'ai-waves-indicator', { ...rest, ref }, children);
|
|
69
|
-
});
|
|
70
|
-
|
|
71
71
|
export const ChatSuggestions = React.forwardRef(function ChatSuggestions(props, ref) {
|
|
72
72
|
const { children, ...rest } = props;
|
|
73
73
|
return React.createElement(customElements.getName(ChatSuggestionsWC) ?? 'chat-suggestions', { ...rest, ref }, children);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/ai-assistant",
|
|
3
3
|
"description": "Genesis AI Assistant micro-frontend",
|
|
4
|
-
"version": "15.3.
|
|
4
|
+
"version": "15.3.3",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/ai-assistant.d.ts",
|
|
@@ -73,26 +73,26 @@
|
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@genesislcap/foundation-testing": "15.3.
|
|
77
|
-
"@genesislcap/genx": "15.3.
|
|
78
|
-
"@genesislcap/rollup-builder": "15.3.
|
|
79
|
-
"@genesislcap/ts-builder": "15.3.
|
|
80
|
-
"@genesislcap/uvu-playwright-builder": "15.3.
|
|
81
|
-
"@genesislcap/vite-builder": "15.3.
|
|
82
|
-
"@genesislcap/webpack-builder": "15.3.
|
|
76
|
+
"@genesislcap/foundation-testing": "15.3.3",
|
|
77
|
+
"@genesislcap/genx": "15.3.3",
|
|
78
|
+
"@genesislcap/rollup-builder": "15.3.3",
|
|
79
|
+
"@genesislcap/ts-builder": "15.3.3",
|
|
80
|
+
"@genesislcap/uvu-playwright-builder": "15.3.3",
|
|
81
|
+
"@genesislcap/vite-builder": "15.3.3",
|
|
82
|
+
"@genesislcap/webpack-builder": "15.3.3",
|
|
83
83
|
"@types/dompurify": "^3.0.5",
|
|
84
84
|
"@types/marked": "^5.0.2",
|
|
85
85
|
"esbuild": "0.25.12"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@genesislcap/foundation-ai": "15.3.
|
|
89
|
-
"@genesislcap/foundation-logger": "15.3.
|
|
90
|
-
"@genesislcap/foundation-notifications": "15.3.
|
|
91
|
-
"@genesislcap/foundation-redux": "15.3.
|
|
92
|
-
"@genesislcap/foundation-ui": "15.3.
|
|
93
|
-
"@genesislcap/foundation-utils": "15.3.
|
|
94
|
-
"@genesislcap/rapid-design-system": "15.3.
|
|
95
|
-
"@genesislcap/web-core": "15.3.
|
|
88
|
+
"@genesislcap/foundation-ai": "15.3.3",
|
|
89
|
+
"@genesislcap/foundation-logger": "15.3.3",
|
|
90
|
+
"@genesislcap/foundation-notifications": "15.3.3",
|
|
91
|
+
"@genesislcap/foundation-redux": "15.3.3",
|
|
92
|
+
"@genesislcap/foundation-ui": "15.3.3",
|
|
93
|
+
"@genesislcap/foundation-utils": "15.3.3",
|
|
94
|
+
"@genesislcap/rapid-design-system": "15.3.3",
|
|
95
|
+
"@genesislcap/web-core": "15.3.3",
|
|
96
96
|
"dompurify": "^3.3.1",
|
|
97
97
|
"marked": "^17.0.3"
|
|
98
98
|
},
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"access": "public"
|
|
106
106
|
},
|
|
107
107
|
"customElements": "dist/custom-elements.json",
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "f02b0631f64efa5fa842ba5f44028246fad7252c"
|
|
109
109
|
}
|