@gluestack-ui/core 5.0.12-alpha.0 → 5.0.13-alpha.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.
@@ -0,0 +1 @@
1
+ export * from '../lib/esm/chat-ai/creator';
@@ -0,0 +1,2 @@
1
+ export declare const createChatAi: () => void;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/chat-ai/creator/index.tsx"],"names":[],"mappings":"AAIA,eAAO,MAAM,YAAY,YAExB,CAAC"}
@@ -0,0 +1,6 @@
1
+ // Creator functionality for ChatAi component
2
+ // Add your creator logic here
3
+ export const createChatAi = () => {
4
+ // Implementation here
5
+ };
6
+ //# sourceMappingURL=index.jsx.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.jsx","sourceRoot":"","sources":["../../../../src/chat-ai/creator/index.tsx"],"names":[],"mappings":"AACA,6CAA6C;AAC7C,8BAA8B;AAE9B,MAAM,CAAC,MAAM,YAAY,GAAG,GAAG,EAAE;IAC/B,sBAAsB;AACxB,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gluestack-ui/core",
3
3
  "description": "Universal UI components for React Native, Expo, and Next.js",
4
- "version": "5.0.12-alpha.0",
4
+ "version": "5.0.13-alpha.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/gluestack/gluestack-ui.git"
@@ -20,7 +20,8 @@
20
20
  "license": "MIT",
21
21
  "sideEffects": false,
22
22
  "files": [
23
- "lib",
23
+ "LICENSE",
24
+ "README.md",
24
25
  "accordion",
25
26
  "actionsheet",
26
27
  "alert",
@@ -29,6 +30,7 @@
29
30
  "bottomsheet",
30
31
  "button",
31
32
  "calendar",
33
+ "chat-ai",
32
34
  "checkbox",
33
35
  "date-time-picker",
34
36
  "fab",
@@ -36,6 +38,7 @@
36
38
  "icon",
37
39
  "image",
38
40
  "input",
41
+ "lib",
39
42
  "link",
40
43
  "menu",
41
44
  "modal",
@@ -47,12 +50,10 @@
47
50
  "select",
48
51
  "slider",
49
52
  "switch",
53
+ "tabs",
50
54
  "textarea",
51
55
  "toast",
52
- "tabs",
53
- "tooltip",
54
- "README.md",
55
- "LICENSE"
56
+ "tooltip"
56
57
  ],
57
58
  "publishConfig": {
58
59
  "access": "public"
@@ -179,6 +180,9 @@
179
180
  ],
180
181
  "tabs/creator": [
181
182
  "./lib/esm/tabs/creator/index.d.ts"
183
+ ],
184
+ "chat-ai/creator": [
185
+ "./lib/esm/chat-ai/creator/index.d.ts"
182
186
  ]
183
187
  }
184
188
  },
@@ -211,6 +215,35 @@
211
215
  "ui-components"
212
216
  ],
213
217
  "dependencies": {
218
+ "@react-aria/checkbox": "^3.16.3",
219
+ "@react-aria/focus": "^3.21.3",
220
+ "@react-aria/interactions": "^3.26.0",
221
+ "@react-aria/label": "^3.7.23",
222
+ "@react-aria/menu": "^3.19.4",
223
+ "@react-aria/overlays": "^3.31.0",
224
+ "@react-aria/radio": "^3.12.3",
225
+ "@react-aria/selection": "^3.27.0",
226
+ "@react-aria/slider": "^3.8.3",
227
+ "@react-aria/switch": "^3.7.10",
228
+ "@react-aria/utils": "^3.32.0",
229
+ "@react-aria/visually-hidden": "^3.8.29",
230
+ "@react-stately/checkbox": "^3.7.4",
231
+ "@react-stately/collections": "^3.12.9",
232
+ "@react-stately/menu": "^3.9.10",
233
+ "@react-stately/overlays": "^3.6.22",
234
+ "@react-stately/radio": "^3.11.4",
235
+ "@react-stately/slider": "^3.7.4",
236
+ "@react-stately/toggle": "^3.9.4",
237
+ "@react-stately/tree": "^3.9.5",
238
+ "@react-stately/utils": "^3.11.0",
239
+ "@react-types/button": "^3.14.1",
240
+ "@react-types/checkbox": "^3.10.2",
241
+ "@react-types/menu": "^3.10.5",
242
+ "@react-types/overlays": "^3.9.2",
243
+ "@react-types/radio": "^3.9.2",
244
+ "@react-types/shared": "^3.33.0",
245
+ "@react-types/slider": "^3.8.2",
246
+ "@react-types/switch": "^3.5.15",
214
247
  "date-fns": "^4.1.0"
215
248
  }
216
249
  }