@apteva/apteva-kit 0.1.29 → 0.1.30

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.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -24,6 +24,20 @@ yarn add @apteva/apteva-kit
24
24
  bun add @apteva/apteva-kit
25
25
  ```
26
26
 
27
+ ### Required: Import Styles
28
+
29
+ Add this import to your app's root layout or entry point:
30
+
31
+ ```tsx
32
+ import '@apteva/apteva-kit/styles.css';
33
+ ```
34
+
35
+ For Next.js, add it to `app/layout.tsx`:
36
+ ```tsx
37
+ import '@apteva/apteva-kit/styles.css';
38
+ import './globals.css'; // your app's styles
39
+ ```
40
+
27
41
  ## Components
28
42
 
29
43
  ### `<Chat>` - Full Chat Interface
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apteva/apteva-kit",
3
- "version": "0.1.29",
3
+ "version": "0.1.30",
4
4
  "description": "AI-powered React component library for building interactive agent interfaces",
5
5
  "author": "Apteva",
6
6
  "license": "MIT",