@adamosuiteservices/ui 2.17.1 → 2.18.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/README.md +2 -2
- package/dist/components/ui/file-upload/file-upload-v2.d.ts +35 -0
- package/dist/components/ui/file-upload/file-upload.d.ts +5 -1
- package/dist/components/ui/file-upload/index.d.ts +1 -0
- package/dist/file-upload.cjs +11 -4
- package/dist/file-upload.js +521 -183
- package/dist/styles.css +1 -1
- package/docs/ai-guide.md +7 -7
- package/docs/components/ui/file-upload-v2.md +1113 -0
- package/docs/components/ui/file-upload.md +208 -0
- package/llm.txt +8 -5
- package/package.json +1 -1
package/docs/ai-guide.md
CHANGED
|
@@ -37,7 +37,7 @@ Adamo UI (`@adamosuiteservices/ui`) is a comprehensive React component library b
|
|
|
37
37
|
|
|
38
38
|
### Key features
|
|
39
39
|
|
|
40
|
-
- ✅ **
|
|
40
|
+
- ✅ **46+ Production-Ready Components** (UI + Layout)
|
|
41
41
|
- ✅ **Built-in Accessibility** (ARIA attributes, keyboard navigation)
|
|
42
42
|
- ✅ **Dark Mode Support** across all components
|
|
43
43
|
- ✅ **Type-Safe** with full TypeScript definitions
|
|
@@ -47,16 +47,16 @@ Adamo UI (`@adamosuiteservices/ui`) is a comprehensive React component library b
|
|
|
47
47
|
|
|
48
48
|
### Component categories
|
|
49
49
|
|
|
50
|
-
**UI Components (
|
|
50
|
+
**UI Components (41+):**
|
|
51
51
|
|
|
52
|
-
- Form Controls: Input, Select, Checkbox, Radio, Switch, Textarea, Combobox
|
|
52
|
+
- Form Controls: Input, Select, Checkbox, Radio, Switch, Textarea, Combobox, File Upload
|
|
53
53
|
- Buttons: Button, Button Group, Toggle
|
|
54
54
|
- Feedback: Alert, Toast, Dialog, Sheet, Progress, Spinner
|
|
55
55
|
- Data Display: Table, Card, Avatar, Badge, Typography
|
|
56
56
|
- Navigation: Tabs, Breadcrumb, Pagination, Command
|
|
57
57
|
- Overlays: Dialog, Popover, Tooltip, Hover Card, Context Menu, Dropdown Menu
|
|
58
58
|
- Layout Helpers: Separator, Scroll Area, Collapsible, Accordion
|
|
59
|
-
- Other: Calendar, Date Picker,
|
|
59
|
+
- Other: Calendar, Date Picker, KBD, Icon
|
|
60
60
|
|
|
61
61
|
**Layout Components:**
|
|
62
62
|
|
|
@@ -74,7 +74,7 @@ Adamo UI (`@adamosuiteservices/ui`) is a comprehensive React component library b
|
|
|
74
74
|
adamo-suite-services-ui/
|
|
75
75
|
├── src/
|
|
76
76
|
│ ├── components/
|
|
77
|
-
│ │ ├── ui/ # UI components (
|
|
77
|
+
│ │ ├── ui/ # UI components (41+ components)
|
|
78
78
|
│ │ │ ├── button/
|
|
79
79
|
│ │ │ │ ├── button.tsx # Component implementation
|
|
80
80
|
│ │ │ │ ├── button.stories.tsx # Storybook stories
|
|
@@ -964,13 +964,13 @@ For more accessibility patterns, see individual component documentation.
|
|
|
964
964
|
|
|
965
965
|
## Component documentation reference
|
|
966
966
|
|
|
967
|
-
**For a complete list of all
|
|
967
|
+
**For a complete list of all 46+ available components, see [`llm.txt`](../llm.txt) in the project root.**
|
|
968
968
|
|
|
969
969
|
Each component has detailed documentation in `docs/components/`:
|
|
970
970
|
|
|
971
971
|
### Component categories
|
|
972
972
|
|
|
973
|
-
- **UI Components** (`docs/components/ui/`) -
|
|
973
|
+
- **UI Components** (`docs/components/ui/`) - 41+ components including:
|
|
974
974
|
- Form controls (Button, Input, Select, Checkbox, Radio, Switch, Textarea, Combobox, etc.)
|
|
975
975
|
- Overlays (Dialog, Sheet, Popover, Tooltip, Dropdown Menu, Context Menu, etc.)
|
|
976
976
|
- Feedback (Alert, Progress, Spinner)
|