@stack-spot/ai-chat-widget 1.22.0-beta.1 → 1.22.0-beta.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/app-metadata.json +2 -2
- package/dist/components/QuickStartButton.js +1 -1
- package/dist/components/QuickStartButton.js.map +1 -1
- package/dist/views/Home/styled.d.ts.map +1 -1
- package/dist/views/Home/styled.js +4 -3
- package/dist/views/Home/styled.js.map +1 -1
- package/package.json +1 -1
- package/src/app-metadata.json +2 -2
- package/src/components/QuickStartButton.tsx +1 -1
- package/src/views/Home/styled.ts +4 -3
package/dist/app-metadata.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stack-spot/ai-chat-widget",
|
|
3
|
-
"version": "1.22.0-beta.
|
|
4
|
-
"date": "Tue May 27 2025
|
|
3
|
+
"version": "1.22.0-beta.3",
|
|
4
|
+
"date": "Tue May 27 2025 19:06:22 GMT-0300 (Horário Padrão de Brasília)",
|
|
5
5
|
"dependencies": [
|
|
6
6
|
{
|
|
7
7
|
"name": "@stack-spot/app-metadata",
|
|
@@ -2,6 +2,6 @@ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-run
|
|
|
2
2
|
import { Button, IconBox, Text } from '@citric/core';
|
|
3
3
|
export const QuickStartButton = ({ label, onClick, className, icon, style }) => {
|
|
4
4
|
const content = _jsxs(_Fragment, { children: [icon && _jsx(IconBox, { color: "light", "aria-hidden": true, children: icon }), _jsx(Text, { nowrapEllipsis: true, children: label })] });
|
|
5
|
-
return (_jsx(Button, {
|
|
5
|
+
return (_jsx(Button, { colorScheme: "light", size: "md", className: className, style: style, onClick: onClick, children: content }));
|
|
6
6
|
};
|
|
7
7
|
//# sourceMappingURL=QuickStartButton.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QuickStartButton.js","sourceRoot":"","sources":["../../src/components/QuickStartButton.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAMpD,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAS,EAAE,EAAE;IACpF,MAAM,OAAO,GAAG,8BACb,IAAI,IAAI,KAAC,OAAO,IAAC,KAAK,EAAC,OAAO,iCAAc,IAAI,GAAW,EAC5D,KAAC,IAAI,IAAC,cAAc,kBAAE,KAAK,GAAQ,IAClC,CAAA;IAEH,OAAO,CACL,KAAC,MAAM,IAAC,
|
|
1
|
+
{"version":3,"file":"QuickStartButton.js","sourceRoot":"","sources":["../../src/components/QuickStartButton.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAMpD,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAS,EAAE,EAAE;IACpF,MAAM,OAAO,GAAG,8BACb,IAAI,IAAI,KAAC,OAAO,IAAC,KAAK,EAAC,OAAO,iCAAc,IAAI,GAAW,EAC5D,KAAC,IAAI,IAAC,cAAc,kBAAE,KAAK,GAAQ,IAClC,CAAA;IAEH,OAAO,CACL,KAAC,MAAM,IAAC,WAAW,EAAC,OAAO,EAAC,IAAI,EAAC,IAAI,EAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,YACvF,OAAO,GACD,CACV,CAAA;AACH,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styled.d.ts","sourceRoot":"","sources":["../../../src/views/Home/styled.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"styled.d.ts","sourceRoot":"","sources":["../../../src/views/Home/styled.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO,wOAmEnB,CAAA"}
|
|
@@ -31,6 +31,7 @@ export const HomeBox = styled.div `
|
|
|
31
31
|
font-weight: 400;
|
|
32
32
|
line-height: normal;
|
|
33
33
|
border: none;
|
|
34
|
+
max-width: 30vw;
|
|
34
35
|
i {
|
|
35
36
|
width: 16px;
|
|
36
37
|
height: 16px;
|
|
@@ -55,10 +56,10 @@ export const HomeBox = styled.div `
|
|
|
55
56
|
gap: 20px;
|
|
56
57
|
|
|
57
58
|
.shortcuts {
|
|
58
|
-
|
|
59
|
+
display: inline-block;
|
|
60
|
+
text-align: center;
|
|
59
61
|
button {
|
|
60
|
-
|
|
61
|
-
line-height: 24px;
|
|
62
|
+
margin-bottom: 10px;
|
|
62
63
|
p {
|
|
63
64
|
overflow: hidden;
|
|
64
65
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styled.js","sourceRoot":"","sources":["../../../src/views/Home/styled.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAA;AAChD,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAA;AAE1C,MAAM,CAAC,MAAM,OAAO,GAAG,MAAM,CAAC,GAAG,CAAA
|
|
1
|
+
{"version":3,"file":"styled.js","sourceRoot":"","sources":["../../../src/views/Home/styled.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAA;AAChD,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAA;AAE1C,MAAM,CAAC,MAAM,OAAO,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BAsCH,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6BnD,CAAA"}
|
package/package.json
CHANGED
package/src/app-metadata.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stack-spot/ai-chat-widget",
|
|
3
|
-
"version": "1.22.0-beta.
|
|
4
|
-
"date": "Tue May 27 2025
|
|
3
|
+
"version": "1.22.0-beta.3",
|
|
4
|
+
"date": "Tue May 27 2025 19:06:22 GMT-0300 (Horário Padrão de Brasília)",
|
|
5
5
|
"dependencies": [
|
|
6
6
|
{
|
|
7
7
|
"name": "@stack-spot/app-metadata",
|
|
@@ -11,7 +11,7 @@ export const QuickStartButton = ({ label, onClick, className, icon, style }: Pro
|
|
|
11
11
|
</>
|
|
12
12
|
|
|
13
13
|
return (
|
|
14
|
-
<Button
|
|
14
|
+
<Button colorScheme="light" size="md" className={className} style={style} onClick={onClick}>
|
|
15
15
|
{content}
|
|
16
16
|
</Button>
|
|
17
17
|
)
|
package/src/views/Home/styled.ts
CHANGED
|
@@ -32,6 +32,7 @@ export const HomeBox = styled.div`
|
|
|
32
32
|
font-weight: 400;
|
|
33
33
|
line-height: normal;
|
|
34
34
|
border: none;
|
|
35
|
+
max-width: 30vw;
|
|
35
36
|
i {
|
|
36
37
|
width: 16px;
|
|
37
38
|
height: 16px;
|
|
@@ -56,10 +57,10 @@ export const HomeBox = styled.div`
|
|
|
56
57
|
gap: 20px;
|
|
57
58
|
|
|
58
59
|
.shortcuts {
|
|
59
|
-
|
|
60
|
+
display: inline-block;
|
|
61
|
+
text-align: center;
|
|
60
62
|
button {
|
|
61
|
-
|
|
62
|
-
line-height: 24px;
|
|
63
|
+
margin-bottom: 10px;
|
|
63
64
|
p {
|
|
64
65
|
overflow: hidden;
|
|
65
66
|
}
|