@x-plat/design-system 0.1.1 → 0.1.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.
Files changed (69) hide show
  1. package/dist/components/Accordion/index.cjs +131 -0
  2. package/dist/components/Accordion/index.css +51 -0
  3. package/dist/components/Accordion/index.d.cts +16 -0
  4. package/dist/components/Accordion/index.d.ts +16 -0
  5. package/dist/components/Accordion/index.js +94 -0
  6. package/dist/components/Alert/index.cjs +72 -0
  7. package/dist/components/Alert/index.css +60 -0
  8. package/dist/components/Alert/index.d.cts +12 -0
  9. package/dist/components/Alert/index.d.ts +12 -0
  10. package/dist/components/Alert/index.js +45 -0
  11. package/dist/components/Avatar/index.cjs +196 -0
  12. package/dist/components/Avatar/index.css +321 -0
  13. package/dist/components/Avatar/index.d.cts +133 -0
  14. package/dist/components/Avatar/index.d.ts +133 -0
  15. package/dist/components/Avatar/index.js +169 -0
  16. package/dist/components/Badge/index.cjs +200 -0
  17. package/dist/components/Badge/index.css +307 -0
  18. package/dist/components/Badge/index.d.cts +133 -0
  19. package/dist/components/Badge/index.d.ts +133 -0
  20. package/dist/components/Badge/index.js +173 -0
  21. package/dist/components/Breadcrumb/index.cjs +60 -0
  22. package/dist/components/Breadcrumb/index.css +37 -0
  23. package/dist/components/Breadcrumb/index.d.cts +15 -0
  24. package/dist/components/Breadcrumb/index.d.ts +15 -0
  25. package/dist/components/Breadcrumb/index.js +33 -0
  26. package/dist/components/Chart/index.cjs +6 -3
  27. package/dist/components/Chart/index.js +6 -3
  28. package/dist/components/DatePicker/index.cjs +2 -0
  29. package/dist/components/DatePicker/index.js +2 -0
  30. package/dist/components/Divider/index.cjs +61 -0
  31. package/dist/components/Divider/index.css +15 -0
  32. package/dist/components/Divider/index.d.cts +10 -0
  33. package/dist/components/Divider/index.d.ts +10 -0
  34. package/dist/components/Divider/index.js +34 -0
  35. package/dist/components/ImageSelector/index.cjs +9 -3
  36. package/dist/components/ImageSelector/index.js +9 -3
  37. package/dist/components/Modal/index.cjs +2 -0
  38. package/dist/components/Modal/index.js +2 -0
  39. package/dist/components/Pagination/index.cjs +261 -0
  40. package/dist/components/Pagination/index.css +325 -0
  41. package/dist/components/Pagination/index.d.cts +133 -0
  42. package/dist/components/Pagination/index.d.ts +133 -0
  43. package/dist/components/Pagination/index.js +234 -0
  44. package/dist/components/Progress/index.cjs +218 -0
  45. package/dist/components/Progress/index.css +313 -0
  46. package/dist/components/Progress/index.d.cts +133 -0
  47. package/dist/components/Progress/index.d.ts +133 -0
  48. package/dist/components/Progress/index.js +191 -0
  49. package/dist/components/Skeleton/index.cjs +65 -0
  50. package/dist/components/Skeleton/index.css +27 -0
  51. package/dist/components/Skeleton/index.d.cts +12 -0
  52. package/dist/components/Skeleton/index.d.ts +12 -0
  53. package/dist/components/Skeleton/index.js +38 -0
  54. package/dist/components/Spinner/index.cjs +222 -0
  55. package/dist/components/Spinner/index.css +317 -0
  56. package/dist/components/Spinner/index.d.cts +130 -0
  57. package/dist/components/Spinner/index.d.ts +130 -0
  58. package/dist/components/Spinner/index.js +195 -0
  59. package/dist/components/index.cjs +1014 -592
  60. package/dist/components/index.css +4290 -2507
  61. package/dist/components/index.d.cts +12 -2
  62. package/dist/components/index.d.ts +12 -2
  63. package/dist/components/index.js +1003 -591
  64. package/dist/index.cjs +2010 -1588
  65. package/dist/index.css +4289 -2506
  66. package/dist/index.d.cts +11 -1
  67. package/dist/index.d.ts +11 -1
  68. package/dist/index.js +1999 -1587
  69. package/package.json +6 -1
package/dist/index.d.cts CHANGED
@@ -1,16 +1,26 @@
1
+ export { Accordion } from './components/Accordion/index.cjs';
2
+ export { Alert } from './components/Alert/index.cjs';
3
+ export { Avatar } from './components/Avatar/index.cjs';
4
+ export { Badge } from './components/Badge/index.cjs';
5
+ export { Breadcrumb } from './components/Breadcrumb/index.cjs';
1
6
  export { Button } from './components/Button/index.cjs';
2
7
  export { Card } from './components/Card/index.cjs';
3
8
  export { Chart } from './components/Chart/index.cjs';
4
9
  export { CheckBox } from './components/CheckBox/index.cjs';
5
10
  export { Chip } from './components/Chip/index.cjs';
6
11
  export { InputDatePicker, PopupDatePicker, RangeDatePicker, SingleDatePicker } from './components/DatePicker/index.cjs';
12
+ export { Divider } from './components/Divider/index.cjs';
7
13
  export { Select, SelectChangeHandler, SelectItem, SelectItemProps } from './components/Select/index.cjs';
8
14
  export { HtmlTypewriter } from './components/HtmlTypeWriter/index.cjs';
9
15
  export { ImageSelector } from './components/ImageSelector/index.cjs';
10
16
  export { Input, PasswordInput } from './components/Input/index.cjs';
11
17
  export { Modal } from './components/Modal/index.cjs';
18
+ export { Pagination } from './components/Pagination/index.cjs';
12
19
  export { PopOver } from './components/PopOver/index.cjs';
20
+ export { Progress } from './components/Progress/index.cjs';
13
21
  export { Radio, RadioGroup } from './components/Radio/index.cjs';
22
+ export { Skeleton } from './components/Skeleton/index.cjs';
23
+ export { Spinner } from './components/Spinner/index.cjs';
14
24
  export { Switch } from './components/Switch/index.cjs';
15
25
  export { Tab } from './components/Tab/index.cjs';
16
26
  export { Table, TableBody, TableCell, TableHead, TableRow } from './components/Table/index.cjs';
@@ -26,6 +36,6 @@ export { Layout } from './layout/Layout/index.cjs';
26
36
  export { SideBar, SideBarContext, useSideBarContext } from './layout/SideBar/index.cjs';
27
37
  export { b as ColorDepth, a as ColorName, C as ColorNamespace, d as ColorProps, c as colors } from './colors-BG91q_uV.cjs';
28
38
  export { ActivityIcon, AirplayIcon, AlertCircleIcon, AlertOctagonIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnchorIcon, ApertureIcon, ArchiveIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftCircleIcon, ArrowLeftIcon, ArrowRightCircleIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AwardIcon, BarChart2Icon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BluetoothIcon, BoldIcon, BookIcon, BookOpenIcon, BookmarkIcon, BoxIcon, BriefcaseIcon, CalendarIcon, CalenderIcon, CallActiveIcon, CallForwardedIcon, DefaultCall as CallIcon, CallIncomingIcon, CallMissedIcon, CallOffIcon, CallOutgoingIcon, CameraIcon, CameraOffIcon, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseEyeIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, CodeIcon, CodepenIcon, CodesandboxIcon, CoffeeIcon, ColumnsIcon, CommandIcon, CompassIcon, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, DatabaseIcon, DefaultCall, DeleteIcon, DiscIcon, DivideCircleIcon, DivideIcon, DivideSquareIcon, DollarSignIcon, DownloadCloudIcon, DownloadIcon, DribbbleIcon, DropletIcon, Edit2Icon, Edit3Icon, EditIcon, ErrorIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FolderMinusIcon, FolderPlusIcon, FramerIcon, FrownIcon, GierIcon, GiftIcon, GitBranchIcon, GitCommitIcon, GitMergeIcon, GitPullRequestIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HardDriveIcon, HashIcon, HeadphonesIcon, HeartIcon, HelpCircleIcon, HexagonIcon, HomeIcon, ImageIcon, InboxIcon, InfoIcon, InstagramIcon, ItalicIcon, KeyIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link2Icon, LinkIcon, LinkedinIcon, ListIcon, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapIcon, MapPinIcon, Maximize2Icon, MaximizeIcon, MehIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, Minimize2Icon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MousePointerIcon, MoveIcon, MusicIcon, Navigation2Icon, NavigationIcon, OctagonIcon, OpenEyeIcon, PackageIcon, PaperclipIcon, PauseCircleIcon, PauseIcon, PenToolIcon, PercentIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProfileIcon, RadioIcon, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, RewindIcon, RotateCcwIcon, RotateCwIcon, RssIcon, SaveIcon, ScissorsIcon, SearchIcon, SendIcon, ServerIcon, SettingsIcon, Share2Icon, ShareIcon, ShieldIcon, ShieldOffIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SlackIcon, SlashIcon, SlidersIcon, SmartphoneIcon, SmileIcon, SpeakerIcon, SquareIcon, StarIcon, StopCircleIcon, SuccessIcon, SunIcon, SunriseIcon, SunsetIcon, TableIcon, TabletIcon, TagIcon, TargetIcon, TerminalIcon, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, ToggleLeftIcon, ToggleRightIcon, ToolIcon, Trash2Icon, TrashIcon, TrelloIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TruckIcon, TvIcon, TwitchIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VoicemailIcon, Volume1Icon, Volume2Icon, VolumeIcon, VolumeXIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XIcon, XOctagonIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZapOffIcon, ZoomInIcon, ZoomOutIcon } from './tokens/index.cjs';
29
- import 'react/jsx-runtime';
30
39
  import 'react';
40
+ import 'react/jsx-runtime';
31
41
  import './attributes-DJIWir_0.cjs';
package/dist/index.d.ts CHANGED
@@ -1,16 +1,26 @@
1
+ export { Accordion } from './components/Accordion/index.js';
2
+ export { Alert } from './components/Alert/index.js';
3
+ export { Avatar } from './components/Avatar/index.js';
4
+ export { Badge } from './components/Badge/index.js';
5
+ export { Breadcrumb } from './components/Breadcrumb/index.js';
1
6
  export { Button } from './components/Button/index.js';
2
7
  export { Card } from './components/Card/index.js';
3
8
  export { Chart } from './components/Chart/index.js';
4
9
  export { CheckBox } from './components/CheckBox/index.js';
5
10
  export { Chip } from './components/Chip/index.js';
6
11
  export { InputDatePicker, PopupDatePicker, RangeDatePicker, SingleDatePicker } from './components/DatePicker/index.js';
12
+ export { Divider } from './components/Divider/index.js';
7
13
  export { Select, SelectChangeHandler, SelectItem, SelectItemProps } from './components/Select/index.js';
8
14
  export { HtmlTypewriter } from './components/HtmlTypeWriter/index.js';
9
15
  export { ImageSelector } from './components/ImageSelector/index.js';
10
16
  export { Input, PasswordInput } from './components/Input/index.js';
11
17
  export { Modal } from './components/Modal/index.js';
18
+ export { Pagination } from './components/Pagination/index.js';
12
19
  export { PopOver } from './components/PopOver/index.js';
20
+ export { Progress } from './components/Progress/index.js';
13
21
  export { Radio, RadioGroup } from './components/Radio/index.js';
22
+ export { Skeleton } from './components/Skeleton/index.js';
23
+ export { Spinner } from './components/Spinner/index.js';
14
24
  export { Switch } from './components/Switch/index.js';
15
25
  export { Tab } from './components/Tab/index.js';
16
26
  export { Table, TableBody, TableCell, TableHead, TableRow } from './components/Table/index.js';
@@ -26,6 +36,6 @@ export { Layout } from './layout/Layout/index.js';
26
36
  export { SideBar, SideBarContext, useSideBarContext } from './layout/SideBar/index.js';
27
37
  export { b as ColorDepth, a as ColorName, C as ColorNamespace, d as ColorProps, c as colors } from './colors-BG91q_uV.js';
28
38
  export { ActivityIcon, AirplayIcon, AlertCircleIcon, AlertOctagonIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnchorIcon, ApertureIcon, ArchiveIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftCircleIcon, ArrowLeftIcon, ArrowRightCircleIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AwardIcon, BarChart2Icon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BluetoothIcon, BoldIcon, BookIcon, BookOpenIcon, BookmarkIcon, BoxIcon, BriefcaseIcon, CalendarIcon, CalenderIcon, CallActiveIcon, CallForwardedIcon, DefaultCall as CallIcon, CallIncomingIcon, CallMissedIcon, CallOffIcon, CallOutgoingIcon, CameraIcon, CameraOffIcon, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseEyeIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, CodeIcon, CodepenIcon, CodesandboxIcon, CoffeeIcon, ColumnsIcon, CommandIcon, CompassIcon, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, DatabaseIcon, DefaultCall, DeleteIcon, DiscIcon, DivideCircleIcon, DivideIcon, DivideSquareIcon, DollarSignIcon, DownloadCloudIcon, DownloadIcon, DribbbleIcon, DropletIcon, Edit2Icon, Edit3Icon, EditIcon, ErrorIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FolderMinusIcon, FolderPlusIcon, FramerIcon, FrownIcon, GierIcon, GiftIcon, GitBranchIcon, GitCommitIcon, GitMergeIcon, GitPullRequestIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HardDriveIcon, HashIcon, HeadphonesIcon, HeartIcon, HelpCircleIcon, HexagonIcon, HomeIcon, ImageIcon, InboxIcon, InfoIcon, InstagramIcon, ItalicIcon, KeyIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link2Icon, LinkIcon, LinkedinIcon, ListIcon, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapIcon, MapPinIcon, Maximize2Icon, MaximizeIcon, MehIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, Minimize2Icon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MousePointerIcon, MoveIcon, MusicIcon, Navigation2Icon, NavigationIcon, OctagonIcon, OpenEyeIcon, PackageIcon, PaperclipIcon, PauseCircleIcon, PauseIcon, PenToolIcon, PercentIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProfileIcon, RadioIcon, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, RewindIcon, RotateCcwIcon, RotateCwIcon, RssIcon, SaveIcon, ScissorsIcon, SearchIcon, SendIcon, ServerIcon, SettingsIcon, Share2Icon, ShareIcon, ShieldIcon, ShieldOffIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SlackIcon, SlashIcon, SlidersIcon, SmartphoneIcon, SmileIcon, SpeakerIcon, SquareIcon, StarIcon, StopCircleIcon, SuccessIcon, SunIcon, SunriseIcon, SunsetIcon, TableIcon, TabletIcon, TagIcon, TargetIcon, TerminalIcon, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, ToggleLeftIcon, ToggleRightIcon, ToolIcon, Trash2Icon, TrashIcon, TrelloIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TruckIcon, TvIcon, TwitchIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VoicemailIcon, Volume1Icon, Volume2Icon, VolumeIcon, VolumeXIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XIcon, XOctagonIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZapOffIcon, ZoomInIcon, ZoomOutIcon } from './tokens/index.js';
29
- import 'react/jsx-runtime';
30
39
  import 'react';
40
+ import 'react/jsx-runtime';
31
41
  import './attributes-DJIWir_0.js';