@grupor5/raya 0.2.17 → 0.2.19
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/dist/index.d.mts +14 -7
- package/dist/index.d.ts +14 -7
- package/dist/index.js +2145 -1031
- package/dist/index.mjs +2114 -1025
- package/dist/molecules/data-table/index.d.mts +36 -1
- package/dist/molecules/data-table/index.d.ts +36 -1
- package/dist/molecules/data-table/index.js +8 -0
- package/dist/molecules/data-table/index.mjs +2 -2
- package/dist/molecules/grid/index.d.mts +2 -2
- package/dist/molecules/grid/index.d.ts +2 -2
- package/dist/molecules/grid/index.js +3 -3
- package/dist/molecules/grid/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -24,16 +24,20 @@ export { Switch } from './atoms/switch/index.mjs';
|
|
|
24
24
|
export { Tag, TagProps } from './atoms/tag/index.mjs';
|
|
25
25
|
export { Textarea, TextareaProps } from './atoms/textarea/index.mjs';
|
|
26
26
|
export { Paragraph, Title, Typography, TypographyProps, typographyVariants } from './atoms/typography/index.mjs';
|
|
27
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from './molecules/accordion/index.mjs';
|
|
28
|
+
export { Alert, AlertDescription, AlertTitle } from './molecules/alert/index.mjs';
|
|
27
29
|
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from './molecules/card/index.mjs';
|
|
30
|
+
export { ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent } from './molecules/chart/index.mjs';
|
|
31
|
+
export { ActionsCell, ActionsCellSkeleton, BadgeCell, BadgeCellSkeleton, DataTable, DataTablePagination, DataTableProps, Payment, TextCell, TextCellSkeleton, UserCell, UserCellSkeleton, columns } from './molecules/data-table/index.mjs';
|
|
32
|
+
export { DatePickerWithRange, DatePickerWithRangeProps } from './molecules/date-picker/index.mjs';
|
|
33
|
+
export { Dropdown, DropdownProps } from './molecules/dropdown/index.mjs';
|
|
28
34
|
export { Form, FormField, FormFieldProps, FormLabel, FormLabelProps, FormMessage, FormMessageProps, FormProps } from './molecules/form/index.mjs';
|
|
29
|
-
export {
|
|
35
|
+
export { Grid, GridItem, GridItemProps, GridProps, ResponsiveValue } from './molecules/grid/index.mjs';
|
|
36
|
+
export { Pagination } from './molecules/pagination/index.mjs';
|
|
30
37
|
export { ProgressBar, ProgressBarProps } from './molecules/progress-bar/index.mjs';
|
|
31
|
-
export {
|
|
38
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from './molecules/select/index.mjs';
|
|
32
39
|
export { Step, StepContent, StepDescription, StepLabel, Stepper, StepperAPI, useStepper } from './molecules/stepper/index.mjs';
|
|
33
|
-
export {
|
|
34
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from './molecules/accordion/index.mjs';
|
|
35
|
-
export { ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent } from './molecules/chart/index.mjs';
|
|
36
|
-
export { Grid, GridItem, GridItemProps, GridProps, ResponsiveValue } from './molecules/grid/index.mjs';
|
|
40
|
+
export { Tabs, TabsContent, TabsList, TabsTrigger } from './molecules/tabs/index.mjs';
|
|
37
41
|
export { BrandInfo, FooterMenuItem, MainNavigationItem, Sidebar, SidebarProps, SubNavigationItem } from './organisms/sidebar/index.mjs';
|
|
38
42
|
export { NotificationItem, TopNavbar, TopNavbarProps, UserMenuOption, UserProfile } from './organisms/topnavbar/index.mjs';
|
|
39
43
|
export { useModal } from './hooks/useModal.mjs';
|
|
@@ -44,7 +48,6 @@ import '@radix-ui/react-checkbox';
|
|
|
44
48
|
import '@radix-ui/react-label';
|
|
45
49
|
import '@radix-ui/react-radio-group';
|
|
46
50
|
import '@radix-ui/react-switch';
|
|
47
|
-
import '@radix-ui/react-tabs';
|
|
48
51
|
import '@radix-ui/react-accordion';
|
|
49
52
|
import 'recharts/types/util/useElementOffset';
|
|
50
53
|
import 'recharts/types/state/cartesianAxisSlice';
|
|
@@ -56,6 +59,10 @@ import 'recharts/types/component/Tooltip';
|
|
|
56
59
|
import 'recharts/types/util/types';
|
|
57
60
|
import 'recharts/types/component/DefaultTooltipContent';
|
|
58
61
|
import 'recharts';
|
|
62
|
+
import '@tanstack/react-table';
|
|
63
|
+
import 'react-day-picker';
|
|
64
|
+
import '@radix-ui/react-select';
|
|
65
|
+
import '@radix-ui/react-tabs';
|
|
59
66
|
|
|
60
67
|
type Theme = 'light' | 'dark';
|
|
61
68
|
interface ThemeContextType {
|
package/dist/index.d.ts
CHANGED
|
@@ -24,16 +24,20 @@ export { Switch } from './atoms/switch/index.js';
|
|
|
24
24
|
export { Tag, TagProps } from './atoms/tag/index.js';
|
|
25
25
|
export { Textarea, TextareaProps } from './atoms/textarea/index.js';
|
|
26
26
|
export { Paragraph, Title, Typography, TypographyProps, typographyVariants } from './atoms/typography/index.js';
|
|
27
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from './molecules/accordion/index.js';
|
|
28
|
+
export { Alert, AlertDescription, AlertTitle } from './molecules/alert/index.js';
|
|
27
29
|
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from './molecules/card/index.js';
|
|
30
|
+
export { ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent } from './molecules/chart/index.js';
|
|
31
|
+
export { ActionsCell, ActionsCellSkeleton, BadgeCell, BadgeCellSkeleton, DataTable, DataTablePagination, DataTableProps, Payment, TextCell, TextCellSkeleton, UserCell, UserCellSkeleton, columns } from './molecules/data-table/index.js';
|
|
32
|
+
export { DatePickerWithRange, DatePickerWithRangeProps } from './molecules/date-picker/index.js';
|
|
33
|
+
export { Dropdown, DropdownProps } from './molecules/dropdown/index.js';
|
|
28
34
|
export { Form, FormField, FormFieldProps, FormLabel, FormLabelProps, FormMessage, FormMessageProps, FormProps } from './molecules/form/index.js';
|
|
29
|
-
export {
|
|
35
|
+
export { Grid, GridItem, GridItemProps, GridProps, ResponsiveValue } from './molecules/grid/index.js';
|
|
36
|
+
export { Pagination } from './molecules/pagination/index.js';
|
|
30
37
|
export { ProgressBar, ProgressBarProps } from './molecules/progress-bar/index.js';
|
|
31
|
-
export {
|
|
38
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from './molecules/select/index.js';
|
|
32
39
|
export { Step, StepContent, StepDescription, StepLabel, Stepper, StepperAPI, useStepper } from './molecules/stepper/index.js';
|
|
33
|
-
export {
|
|
34
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from './molecules/accordion/index.js';
|
|
35
|
-
export { ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent } from './molecules/chart/index.js';
|
|
36
|
-
export { Grid, GridItem, GridItemProps, GridProps, ResponsiveValue } from './molecules/grid/index.js';
|
|
40
|
+
export { Tabs, TabsContent, TabsList, TabsTrigger } from './molecules/tabs/index.js';
|
|
37
41
|
export { BrandInfo, FooterMenuItem, MainNavigationItem, Sidebar, SidebarProps, SubNavigationItem } from './organisms/sidebar/index.js';
|
|
38
42
|
export { NotificationItem, TopNavbar, TopNavbarProps, UserMenuOption, UserProfile } from './organisms/topnavbar/index.js';
|
|
39
43
|
export { useModal } from './hooks/useModal.js';
|
|
@@ -44,7 +48,6 @@ import '@radix-ui/react-checkbox';
|
|
|
44
48
|
import '@radix-ui/react-label';
|
|
45
49
|
import '@radix-ui/react-radio-group';
|
|
46
50
|
import '@radix-ui/react-switch';
|
|
47
|
-
import '@radix-ui/react-tabs';
|
|
48
51
|
import '@radix-ui/react-accordion';
|
|
49
52
|
import 'recharts/types/util/useElementOffset';
|
|
50
53
|
import 'recharts/types/state/cartesianAxisSlice';
|
|
@@ -56,6 +59,10 @@ import 'recharts/types/component/Tooltip';
|
|
|
56
59
|
import 'recharts/types/util/types';
|
|
57
60
|
import 'recharts/types/component/DefaultTooltipContent';
|
|
58
61
|
import 'recharts';
|
|
62
|
+
import '@tanstack/react-table';
|
|
63
|
+
import 'react-day-picker';
|
|
64
|
+
import '@radix-ui/react-select';
|
|
65
|
+
import '@radix-ui/react-tabs';
|
|
59
66
|
|
|
60
67
|
type Theme = 'light' | 'dark';
|
|
61
68
|
interface ThemeContextType {
|