cynx-ui 1.0.0 → 1.1.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.
Files changed (40) hide show
  1. package/index.js +40 -40
  2. package/package.json +2 -2
  3. /package/{ActionsMenu.jsx → components/ActionsMenu.jsx} +0 -0
  4. /package/{ActivityCard.jsx → components/ActivityCard.jsx} +0 -0
  5. /package/{AuthOverlay.jsx → components/AuthOverlay.jsx} +0 -0
  6. /package/{Badge.jsx → components/Badge.jsx} +0 -0
  7. /package/{BrandingCard.jsx → components/BrandingCard.jsx} +0 -0
  8. /package/{Button.jsx → components/Button.jsx} +0 -0
  9. /package/{Card.jsx → components/Card.jsx} +0 -0
  10. /package/{Checkbox.jsx → components/Checkbox.jsx} +0 -0
  11. /package/{ChipSelect.jsx → components/ChipSelect.jsx} +0 -0
  12. /package/{CircularProgress.jsx → components/CircularProgress.jsx} +0 -0
  13. /package/{Confirm.jsx → components/Confirm.jsx} +0 -0
  14. /package/{DatePicker.jsx → components/DatePicker.jsx} +0 -0
  15. /package/{DeleteConfirmModal.jsx → components/DeleteConfirmModal.jsx} +0 -0
  16. /package/{Dropdown.jsx → components/Dropdown.jsx} +0 -0
  17. /package/{Dropzone.jsx → components/Dropzone.jsx} +0 -0
  18. /package/{HoverCard.jsx → components/HoverCard.jsx} +0 -0
  19. /package/{ImageUpload.jsx → components/ImageUpload.jsx} +0 -0
  20. /package/{Input.jsx → components/Input.jsx} +0 -0
  21. /package/{Layout.jsx → components/Layout.jsx} +0 -0
  22. /package/{LineProgress.jsx → components/LineProgress.jsx} +0 -0
  23. /package/{Modal.jsx → components/Modal.jsx} +0 -0
  24. /package/{MultiSelect.jsx → components/MultiSelect.jsx} +0 -0
  25. /package/{Notifications.jsx → components/Notifications.jsx} +0 -0
  26. /package/{Pagination.jsx → components/Pagination.jsx} +0 -0
  27. /package/{PulseDot.jsx → components/PulseDot.jsx} +0 -0
  28. /package/{SearchableDropdown.jsx → components/SearchableDropdown.jsx} +0 -0
  29. /package/{Select.jsx → components/Select.jsx} +0 -0
  30. /package/{Skeleton.jsx → components/Skeleton.jsx} +0 -0
  31. /package/{Spinner.jsx → components/Spinner.jsx} +0 -0
  32. /package/{StatBarCard.jsx → components/StatBarCard.jsx} +0 -0
  33. /package/{StatsBar.jsx → components/StatsBar.jsx} +0 -0
  34. /package/{StatsCard.jsx → components/StatsCard.jsx} +0 -0
  35. /package/{TabBar.jsx → components/TabBar.jsx} +0 -0
  36. /package/{Tabs.jsx → components/Tabs.jsx} +0 -0
  37. /package/{Toast.jsx → components/Toast.jsx} +0 -0
  38. /package/{Toggle.jsx → components/Toggle.jsx} +0 -0
  39. /package/{UptimeBar.jsx → components/UptimeBar.jsx} +0 -0
  40. /package/{XTable.jsx → components/XTable.jsx} +0 -0
package/index.js CHANGED
@@ -2,44 +2,44 @@
2
2
  // Re-exports every component so consumers can do:
3
3
  // import { Button, Modal, Toast } from 'cynx-ui'
4
4
 
5
- export { default as Button } from './Button.jsx';
6
- export { default as Input } from './Input.jsx';
7
- export { default as Layout } from './Layout.jsx';
8
- export { default as Toggle } from './Toggle.jsx';
9
- export { default as Spinner } from './Spinner.jsx';
10
- export { default as TabBar } from './TabBar.jsx';
11
- export { default as Dropdown } from './Dropdown.jsx';
12
- export { default as Notifications } from './Notifications.jsx';
13
- export { default as MultiSelect } from './MultiSelect.jsx';
14
- export { default as ImageUpload } from './ImageUpload.jsx';
15
- export { default as DeleteConfirmModal } from './DeleteConfirmModal.jsx';
16
- export { default as ChipSelect } from './ChipSelect.jsx';
17
- export { default as Checkbox } from './Checkbox.jsx';
18
- export { default as AuthOverlay } from './AuthOverlay.jsx';
19
- export { default as UptimeBar } from './UptimeBar.jsx';
20
- export { default as LineProgress } from './LineProgress.jsx';
21
- export { default as StatBarCard } from './StatBarCard.jsx';
22
- export { default as StatsCard } from './StatsCard.jsx';
23
- export { default as ActivityCard } from './ActivityCard.jsx';
24
- export { default as HoverCard } from './HoverCard.jsx';
25
- export { default as StatsBar } from './StatsBar.jsx';
26
- export { default as Select } from './Select.jsx';
27
- export { default as Card } from './Card.jsx';
28
- export { default as Badge } from './Badge.jsx';
29
- export { default as PulseDot } from './PulseDot.jsx';
30
- export { default as CircularProgress } from './CircularProgress.jsx';
31
- export { default as Skeleton } from './Skeleton.jsx';
5
+ export { default as Button } from './components/Button.jsx';
6
+ export { default as Input } from './components/Input.jsx';
7
+ export { default as Layout } from './components/Layout.jsx';
8
+ export { default as Toggle } from './components/Toggle.jsx';
9
+ export { default as Spinner } from './components/Spinner.jsx';
10
+ export { default as TabBar } from './components/TabBar.jsx';
11
+ export { default as Dropdown } from './components/Dropdown.jsx';
12
+ export { default as Notifications } from './components/Notifications.jsx';
13
+ export { default as MultiSelect } from './components/MultiSelect.jsx';
14
+ export { default as ImageUpload } from './components/ImageUpload.jsx';
15
+ export { default as DeleteConfirmModal } from './components/DeleteConfirmModal.jsx';
16
+ export { default as ChipSelect } from './components/ChipSelect.jsx';
17
+ export { default as Checkbox } from './components/Checkbox.jsx';
18
+ export { default as AuthOverlay } from './components/AuthOverlay.jsx';
19
+ export { default as UptimeBar } from './components/UptimeBar.jsx';
20
+ export { default as LineProgress } from './components/LineProgress.jsx';
21
+ export { default as StatBarCard } from './components/StatBarCard.jsx';
22
+ export { default as StatsCard } from './components/StatsCard.jsx';
23
+ export { default as ActivityCard } from './components/ActivityCard.jsx';
24
+ export { default as HoverCard } from './components/HoverCard.jsx';
25
+ export { default as StatsBar } from './components/StatsBar.jsx';
26
+ export { default as Select } from './components/Select.jsx';
27
+ export { default as Card } from './components/Card.jsx';
28
+ export { default as Badge } from './components/Badge.jsx';
29
+ export { default as PulseDot } from './components/PulseDot.jsx';
30
+ export { default as CircularProgress } from './components/CircularProgress.jsx';
31
+ export { default as Skeleton } from './components/Skeleton.jsx';
32
32
 
33
- export { Modal, Confirm } from './Modal.jsx';
34
- export { toast, useToast, Toast } from './Toast.jsx';
35
- export { ConfirmRoot, confirm } from './Confirm.jsx';
36
- export { SearchableDropdown } from './SearchableDropdown.jsx';
37
- export { Pagination } from './Pagination.jsx';
38
- export { DatePicker } from './DatePicker.jsx';
39
- export { ActionsMenu } from './ActionsMenu.jsx';
40
- export { BrandingCard } from './BrandingCard.jsx';
41
- export { Dropzone } from './Dropzone.jsx';
42
- export { Tabs } from './Tabs.jsx';
43
- export { SkeletonText, SkeletonCard, SkeletonRows, SkeletonStats } from './Skeleton.jsx';
44
- export { XTable, XThead, XTbody, XTr, XTh, XTd, SkeletonTable } from './XTable.jsx';
45
- export { PageShell, TableCard, TableCardFilters, TableCardBody, TableCardFooter, CardHdr, StatCard, StatCardSkeleton } from './Card.jsx';
33
+ export { Modal, Confirm } from './components/Modal.jsx';
34
+ export { toast, useToast, Toast } from './components/Toast.jsx';
35
+ export { ConfirmRoot, confirm } from './components/Confirm.jsx';
36
+ export { SearchableDropdown } from './components/SearchableDropdown.jsx';
37
+ export { Pagination } from './components/Pagination.jsx';
38
+ export { DatePicker } from './components/DatePicker.jsx';
39
+ export { ActionsMenu } from './components/ActionsMenu.jsx';
40
+ export { BrandingCard } from './components/BrandingCard.jsx';
41
+ export { Dropzone } from './components/Dropzone.jsx';
42
+ export { Tabs } from './components/Tabs.jsx';
43
+ export { SkeletonText, SkeletonCard, SkeletonRows, SkeletonStats } from './components/Skeleton.jsx';
44
+ export { XTable, XThead, XTbody, XTr, XTh, XTd, SkeletonTable } from './components/XTable.jsx';
45
+ export { PageShell, TableCard, TableCardFilters, TableCardBody, TableCardFooter, CardHdr, StatCard, StatCardSkeleton } from './components/Card.jsx';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cynx-ui",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.js",
@@ -13,7 +13,7 @@
13
13
  "lucide-react": ">=0.400"
14
14
  },
15
15
  "files": [
16
- "*.jsx",
16
+ "components/",
17
17
  "index.js"
18
18
  ]
19
19
  }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes