@juv/codego-react-ui 1.0.9 → 1.1.1
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.cjs +5 -5
- package/dist/index.d.cts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.global.js +3 -3
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -78,6 +78,7 @@ __export(index_exports, {
|
|
|
78
78
|
OtpInput: () => OtpInput,
|
|
79
79
|
Pagination: () => Pagination,
|
|
80
80
|
Panel: () => Panel,
|
|
81
|
+
PanelSettings: () => PanelSettings,
|
|
81
82
|
PanelSidebarGroup: () => PanelSidebarGroup,
|
|
82
83
|
PanelSidebarItem: () => PanelSidebarItem,
|
|
83
84
|
Popover: () => Popover,
|
|
@@ -92,7 +93,6 @@ __export(index_exports, {
|
|
|
92
93
|
ScrollArea: () => ScrollArea,
|
|
93
94
|
SectionBlock: () => SectionBlock,
|
|
94
95
|
Select: () => Select,
|
|
95
|
-
Settings: () => Settings,
|
|
96
96
|
Skeleton: () => Skeleton,
|
|
97
97
|
Slider: () => Slider,
|
|
98
98
|
StatCard: () => StatCard,
|
|
@@ -6158,7 +6158,7 @@ function SectionBlock({
|
|
|
6158
6158
|
] });
|
|
6159
6159
|
}
|
|
6160
6160
|
|
|
6161
|
-
// src/components/ui/
|
|
6161
|
+
// src/components/ui/PanelSettings.tsx
|
|
6162
6162
|
var import_lucide_react24 = require("lucide-react");
|
|
6163
6163
|
|
|
6164
6164
|
// src/components/ui/tabs.tsx
|
|
@@ -6243,7 +6243,7 @@ function Tabs({
|
|
|
6243
6243
|
] });
|
|
6244
6244
|
}
|
|
6245
6245
|
|
|
6246
|
-
// src/components/ui/
|
|
6246
|
+
// src/components/ui/PanelSettings.tsx
|
|
6247
6247
|
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
6248
6248
|
var FONT_SIZES = [
|
|
6249
6249
|
{ value: "14px", label: "Small (14px)" },
|
|
@@ -6387,7 +6387,7 @@ function TypographyPanel({
|
|
|
6387
6387
|
] })
|
|
6388
6388
|
] });
|
|
6389
6389
|
}
|
|
6390
|
-
function
|
|
6390
|
+
function PanelSettings({
|
|
6391
6391
|
defaultTab = "appearance",
|
|
6392
6392
|
onThemeChange,
|
|
6393
6393
|
onColorsChange,
|
|
@@ -8000,6 +8000,7 @@ function Wizard({
|
|
|
8000
8000
|
OtpInput,
|
|
8001
8001
|
Pagination,
|
|
8002
8002
|
Panel,
|
|
8003
|
+
PanelSettings,
|
|
8003
8004
|
PanelSidebarGroup,
|
|
8004
8005
|
PanelSidebarItem,
|
|
8005
8006
|
Popover,
|
|
@@ -8014,7 +8015,6 @@ function Wizard({
|
|
|
8014
8015
|
ScrollArea,
|
|
8015
8016
|
SectionBlock,
|
|
8016
8017
|
Select,
|
|
8017
|
-
Settings,
|
|
8018
8018
|
Skeleton,
|
|
8019
8019
|
Slider,
|
|
8020
8020
|
StatCard,
|
package/dist/index.d.cts
CHANGED
|
@@ -1046,10 +1046,10 @@ type ThemeColors = {
|
|
|
1046
1046
|
dangerHover: string;
|
|
1047
1047
|
};
|
|
1048
1048
|
|
|
1049
|
-
type
|
|
1050
|
-
interface
|
|
1049
|
+
type PanelSettingsTab = "appearance" | "colors" | "typography";
|
|
1050
|
+
interface PanelSettingsProps {
|
|
1051
1051
|
/** Initially active tab */
|
|
1052
|
-
defaultTab?:
|
|
1052
|
+
defaultTab?: PanelSettingsTab;
|
|
1053
1053
|
/** Called when theme (light/dark/system) changes */
|
|
1054
1054
|
onThemeChange?: (theme: "light" | "dark" | "system") => void;
|
|
1055
1055
|
/** Called when any color token changes */
|
|
@@ -1063,7 +1063,7 @@ interface SettingsProps {
|
|
|
1063
1063
|
/** Additional CSS classes on the root element */
|
|
1064
1064
|
className?: string;
|
|
1065
1065
|
}
|
|
1066
|
-
declare function
|
|
1066
|
+
declare function PanelSettings({ defaultTab, onThemeChange, onColorsChange, onFontSizeChange, onFontFamilyChange, onReset, className, }: PanelSettingsProps): react_jsx_runtime.JSX.Element;
|
|
1067
1067
|
|
|
1068
1068
|
declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1069
1069
|
|
|
@@ -1384,4 +1384,4 @@ interface WizardProps {
|
|
|
1384
1384
|
}
|
|
1385
1385
|
declare function Wizard({ steps, step: controlledStep, defaultStep, onStepChange, onFinish, onClose, layout, variant, size, isOpen, showClose, unchange, title, description, hideHeader, footer, renderActions, backLabel, nextLabel, finishLabel, cancelLabel, showCancel, showBackOnFirst, loading, clickableSteps, className, contentClassName, }: WizardProps): react_jsx_runtime.JSX.Element;
|
|
1386
1386
|
|
|
1387
|
-
export { Accordion, type AccordionItem, type AccordionProps, type AccordionVariant, AvatarStack, type AvatarStackProps, Badge, type BadgeProps, type BadgeSize, type BadgeVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonProps, Calendar, type CalendarEvent, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartDataPoint, ChartWidget, type ChartWidgetProps, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, ColorPicker, type ColorPickerProps, type Column, Combobox, type ComboboxOption, type ComboboxProps, type CommandItem, CommandPalette, type CommandPaletteProps, ComposableWidget, type ComposableWidgetProps, type ConfirmVariant, ContextMenu, type ContextMenuItem, type ContextMenuProps, DataGrid, type DataGridColumn, type DataGridProps, DatePickerPopup, type DateRange, DateRangePicker, type DateRangePickerProps, Drawer, type DrawerProps, type DrawerSide, Dropdown, DropdownItem, DropdownLabel, type DropdownProps, DropdownSeparator, type FileTypeValidation, FileUpload, type FileUploadProps, type FlexAlign, type FlexDirection, type FlexGap, FlexItem, type FlexItemProps, type FlexJustify, FlexLayout, type FlexLayoutProps, type FlexWrap, type FormField, type GridAlign, type GridCols, type GridGap, GridItem, type GridItemProps, GridLayout, type GridLayoutProps, GroupNavigation, type GroupNavigationProps, type ImageEditorMode, type ImageEditorOptions, Input, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Label, LeftSidebar, type LeftSidebarProps, type MetricItem, MetricRow, type MetricRowProps, Modal, ModalConfirmation, type ModalConfirmationProps, type ModalProps, ModalUnchange, type ModalUnchangeProps, ModalWithForms, type ModalWithFormsProps, type NavGroup, type NavItem, Navigation, type NavigationProps, NotificationBanner, type NotificationBannerProps, type NotificationItem, NotificationPanel, type NotificationPanelProps, type NotificationVariant, OtpInput, type OtpInputProps, Pagination, type PaginationProps, Panel, type PanelProps, PanelSidebarGroup, PanelSidebarItem, Popover, type PopoverPlacement, type PopoverProps, Progress, type ProgressProps, type ProgressSize, type ProgressVariant, type PropRow, PropsTable, RadioGroup, type RadioGroupProps, type RadioOption, type RadioSize, type RadioVariant, RangeSlider, type RangeSliderProps, Repeater, type RepeaterProps, ResizablePanels, type ResizablePanelsProps, RichTextEditor, type RichTextEditorProps, RightSidebar, type RightSidebarProps, ScrollArea, type ScrollAreaProps, SectionBlock, type SectionProps, type SectionVariant, Select, type SelectOption, type SelectProps, type SemanticColor,
|
|
1387
|
+
export { Accordion, type AccordionItem, type AccordionProps, type AccordionVariant, AvatarStack, type AvatarStackProps, Badge, type BadgeProps, type BadgeSize, type BadgeVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonProps, Calendar, type CalendarEvent, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartDataPoint, ChartWidget, type ChartWidgetProps, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, ColorPicker, type ColorPickerProps, type Column, Combobox, type ComboboxOption, type ComboboxProps, type CommandItem, CommandPalette, type CommandPaletteProps, ComposableWidget, type ComposableWidgetProps, type ConfirmVariant, ContextMenu, type ContextMenuItem, type ContextMenuProps, DataGrid, type DataGridColumn, type DataGridProps, DatePickerPopup, type DateRange, DateRangePicker, type DateRangePickerProps, Drawer, type DrawerProps, type DrawerSide, Dropdown, DropdownItem, DropdownLabel, type DropdownProps, DropdownSeparator, type FileTypeValidation, FileUpload, type FileUploadProps, type FlexAlign, type FlexDirection, type FlexGap, FlexItem, type FlexItemProps, type FlexJustify, FlexLayout, type FlexLayoutProps, type FlexWrap, type FormField, type GridAlign, type GridCols, type GridGap, GridItem, type GridItemProps, GridLayout, type GridLayoutProps, GroupNavigation, type GroupNavigationProps, type ImageEditorMode, type ImageEditorOptions, Input, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Label, LeftSidebar, type LeftSidebarProps, type MetricItem, MetricRow, type MetricRowProps, Modal, ModalConfirmation, type ModalConfirmationProps, type ModalProps, ModalUnchange, type ModalUnchangeProps, ModalWithForms, type ModalWithFormsProps, type NavGroup, type NavItem, Navigation, type NavigationProps, NotificationBanner, type NotificationBannerProps, type NotificationItem, NotificationPanel, type NotificationPanelProps, type NotificationVariant, OtpInput, type OtpInputProps, Pagination, type PaginationProps, Panel, type PanelProps, PanelSettings, type PanelSettingsProps, type PanelSettingsTab, PanelSidebarGroup, PanelSidebarItem, Popover, type PopoverPlacement, type PopoverProps, Progress, type ProgressProps, type ProgressSize, type ProgressVariant, type PropRow, PropsTable, RadioGroup, type RadioGroupProps, type RadioOption, type RadioSize, type RadioVariant, RangeSlider, type RangeSliderProps, Repeater, type RepeaterProps, ResizablePanels, type ResizablePanelsProps, RichTextEditor, type RichTextEditorProps, RightSidebar, type RightSidebarProps, ScrollArea, type ScrollAreaProps, SectionBlock, type SectionProps, type SectionVariant, Select, type SelectOption, type SelectProps, type SemanticColor, Skeleton, Slider, type SliderProps, type SortDir, StatCard, type StatCardProps, type StatTrend, StatsWidget, type StatsWidgetProps, type Step, type StepStatus, Stepper, type StepperProps, type TabItem, type TabSize, type TabVariant, Table, type TableProps, TableWidget, type TableWidgetProps, Tabs, type TabsProps, TagInput, type TagInputProps, Textarea, type TextareaProps, Timeline, type TimelineItem, type TimelineProps, type TimelineVariant, type ToastItem, type ToastPosition, ToastProvider, type ToastProviderProps, type ToastVariant, ToggleSwitch, type ToggleSwitchProps, Tooltip, type TooltipProps, Topbar, type TopbarProps, type TreeNode, TreeView, type TreeViewProps, type TrendDir, Widget, type WidgetProps, Wizard, type WizardActionProps, type WizardLayout, type WizardProps, type WizardSize, type WizardStep, type WizardVariant, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -1046,10 +1046,10 @@ type ThemeColors = {
|
|
|
1046
1046
|
dangerHover: string;
|
|
1047
1047
|
};
|
|
1048
1048
|
|
|
1049
|
-
type
|
|
1050
|
-
interface
|
|
1049
|
+
type PanelSettingsTab = "appearance" | "colors" | "typography";
|
|
1050
|
+
interface PanelSettingsProps {
|
|
1051
1051
|
/** Initially active tab */
|
|
1052
|
-
defaultTab?:
|
|
1052
|
+
defaultTab?: PanelSettingsTab;
|
|
1053
1053
|
/** Called when theme (light/dark/system) changes */
|
|
1054
1054
|
onThemeChange?: (theme: "light" | "dark" | "system") => void;
|
|
1055
1055
|
/** Called when any color token changes */
|
|
@@ -1063,7 +1063,7 @@ interface SettingsProps {
|
|
|
1063
1063
|
/** Additional CSS classes on the root element */
|
|
1064
1064
|
className?: string;
|
|
1065
1065
|
}
|
|
1066
|
-
declare function
|
|
1066
|
+
declare function PanelSettings({ defaultTab, onThemeChange, onColorsChange, onFontSizeChange, onFontFamilyChange, onReset, className, }: PanelSettingsProps): react_jsx_runtime.JSX.Element;
|
|
1067
1067
|
|
|
1068
1068
|
declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1069
1069
|
|
|
@@ -1384,4 +1384,4 @@ interface WizardProps {
|
|
|
1384
1384
|
}
|
|
1385
1385
|
declare function Wizard({ steps, step: controlledStep, defaultStep, onStepChange, onFinish, onClose, layout, variant, size, isOpen, showClose, unchange, title, description, hideHeader, footer, renderActions, backLabel, nextLabel, finishLabel, cancelLabel, showCancel, showBackOnFirst, loading, clickableSteps, className, contentClassName, }: WizardProps): react_jsx_runtime.JSX.Element;
|
|
1386
1386
|
|
|
1387
|
-
export { Accordion, type AccordionItem, type AccordionProps, type AccordionVariant, AvatarStack, type AvatarStackProps, Badge, type BadgeProps, type BadgeSize, type BadgeVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonProps, Calendar, type CalendarEvent, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartDataPoint, ChartWidget, type ChartWidgetProps, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, ColorPicker, type ColorPickerProps, type Column, Combobox, type ComboboxOption, type ComboboxProps, type CommandItem, CommandPalette, type CommandPaletteProps, ComposableWidget, type ComposableWidgetProps, type ConfirmVariant, ContextMenu, type ContextMenuItem, type ContextMenuProps, DataGrid, type DataGridColumn, type DataGridProps, DatePickerPopup, type DateRange, DateRangePicker, type DateRangePickerProps, Drawer, type DrawerProps, type DrawerSide, Dropdown, DropdownItem, DropdownLabel, type DropdownProps, DropdownSeparator, type FileTypeValidation, FileUpload, type FileUploadProps, type FlexAlign, type FlexDirection, type FlexGap, FlexItem, type FlexItemProps, type FlexJustify, FlexLayout, type FlexLayoutProps, type FlexWrap, type FormField, type GridAlign, type GridCols, type GridGap, GridItem, type GridItemProps, GridLayout, type GridLayoutProps, GroupNavigation, type GroupNavigationProps, type ImageEditorMode, type ImageEditorOptions, Input, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Label, LeftSidebar, type LeftSidebarProps, type MetricItem, MetricRow, type MetricRowProps, Modal, ModalConfirmation, type ModalConfirmationProps, type ModalProps, ModalUnchange, type ModalUnchangeProps, ModalWithForms, type ModalWithFormsProps, type NavGroup, type NavItem, Navigation, type NavigationProps, NotificationBanner, type NotificationBannerProps, type NotificationItem, NotificationPanel, type NotificationPanelProps, type NotificationVariant, OtpInput, type OtpInputProps, Pagination, type PaginationProps, Panel, type PanelProps, PanelSidebarGroup, PanelSidebarItem, Popover, type PopoverPlacement, type PopoverProps, Progress, type ProgressProps, type ProgressSize, type ProgressVariant, type PropRow, PropsTable, RadioGroup, type RadioGroupProps, type RadioOption, type RadioSize, type RadioVariant, RangeSlider, type RangeSliderProps, Repeater, type RepeaterProps, ResizablePanels, type ResizablePanelsProps, RichTextEditor, type RichTextEditorProps, RightSidebar, type RightSidebarProps, ScrollArea, type ScrollAreaProps, SectionBlock, type SectionProps, type SectionVariant, Select, type SelectOption, type SelectProps, type SemanticColor,
|
|
1387
|
+
export { Accordion, type AccordionItem, type AccordionProps, type AccordionVariant, AvatarStack, type AvatarStackProps, Badge, type BadgeProps, type BadgeSize, type BadgeVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonProps, Calendar, type CalendarEvent, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartDataPoint, ChartWidget, type ChartWidgetProps, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, ColorPicker, type ColorPickerProps, type Column, Combobox, type ComboboxOption, type ComboboxProps, type CommandItem, CommandPalette, type CommandPaletteProps, ComposableWidget, type ComposableWidgetProps, type ConfirmVariant, ContextMenu, type ContextMenuItem, type ContextMenuProps, DataGrid, type DataGridColumn, type DataGridProps, DatePickerPopup, type DateRange, DateRangePicker, type DateRangePickerProps, Drawer, type DrawerProps, type DrawerSide, Dropdown, DropdownItem, DropdownLabel, type DropdownProps, DropdownSeparator, type FileTypeValidation, FileUpload, type FileUploadProps, type FlexAlign, type FlexDirection, type FlexGap, FlexItem, type FlexItemProps, type FlexJustify, FlexLayout, type FlexLayoutProps, type FlexWrap, type FormField, type GridAlign, type GridCols, type GridGap, GridItem, type GridItemProps, GridLayout, type GridLayoutProps, GroupNavigation, type GroupNavigationProps, type ImageEditorMode, type ImageEditorOptions, Input, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Label, LeftSidebar, type LeftSidebarProps, type MetricItem, MetricRow, type MetricRowProps, Modal, ModalConfirmation, type ModalConfirmationProps, type ModalProps, ModalUnchange, type ModalUnchangeProps, ModalWithForms, type ModalWithFormsProps, type NavGroup, type NavItem, Navigation, type NavigationProps, NotificationBanner, type NotificationBannerProps, type NotificationItem, NotificationPanel, type NotificationPanelProps, type NotificationVariant, OtpInput, type OtpInputProps, Pagination, type PaginationProps, Panel, type PanelProps, PanelSettings, type PanelSettingsProps, type PanelSettingsTab, PanelSidebarGroup, PanelSidebarItem, Popover, type PopoverPlacement, type PopoverProps, Progress, type ProgressProps, type ProgressSize, type ProgressVariant, type PropRow, PropsTable, RadioGroup, type RadioGroupProps, type RadioOption, type RadioSize, type RadioVariant, RangeSlider, type RangeSliderProps, Repeater, type RepeaterProps, ResizablePanels, type ResizablePanelsProps, RichTextEditor, type RichTextEditorProps, RightSidebar, type RightSidebarProps, ScrollArea, type ScrollAreaProps, SectionBlock, type SectionProps, type SectionVariant, Select, type SelectOption, type SelectProps, type SemanticColor, Skeleton, Slider, type SliderProps, type SortDir, StatCard, type StatCardProps, type StatTrend, StatsWidget, type StatsWidgetProps, type Step, type StepStatus, Stepper, type StepperProps, type TabItem, type TabSize, type TabVariant, Table, type TableProps, TableWidget, type TableWidgetProps, Tabs, type TabsProps, TagInput, type TagInputProps, Textarea, type TextareaProps, Timeline, type TimelineItem, type TimelineProps, type TimelineVariant, type ToastItem, type ToastPosition, ToastProvider, type ToastProviderProps, type ToastVariant, ToggleSwitch, type ToggleSwitchProps, Tooltip, type TooltipProps, Topbar, type TopbarProps, type TreeNode, TreeView, type TreeViewProps, type TrendDir, Widget, type WidgetProps, Wizard, type WizardActionProps, type WizardLayout, type WizardProps, type WizardSize, type WizardStep, type WizardVariant, useToast };
|
package/dist/index.global.js
CHANGED
|
@@ -2225,6 +2225,7 @@ var CodegoUI = (() => {
|
|
|
2225
2225
|
OtpInput: () => OtpInput,
|
|
2226
2226
|
Pagination: () => Pagination,
|
|
2227
2227
|
Panel: () => Panel,
|
|
2228
|
+
PanelSettings: () => PanelSettings,
|
|
2228
2229
|
PanelSidebarGroup: () => PanelSidebarGroup,
|
|
2229
2230
|
PanelSidebarItem: () => PanelSidebarItem,
|
|
2230
2231
|
Popover: () => Popover,
|
|
@@ -2239,7 +2240,6 @@ var CodegoUI = (() => {
|
|
|
2239
2240
|
ScrollArea: () => ScrollArea,
|
|
2240
2241
|
SectionBlock: () => SectionBlock,
|
|
2241
2242
|
Select: () => Select,
|
|
2242
|
-
Settings: () => Settings,
|
|
2243
2243
|
Skeleton: () => Skeleton,
|
|
2244
2244
|
Slider: () => Slider,
|
|
2245
2245
|
StatCard: () => StatCard,
|
|
@@ -13985,7 +13985,7 @@ var CodegoUI = (() => {
|
|
|
13985
13985
|
] });
|
|
13986
13986
|
}
|
|
13987
13987
|
|
|
13988
|
-
// src/components/ui/
|
|
13988
|
+
// src/components/ui/PanelSettings.tsx
|
|
13989
13989
|
var import_jsx_runtime46 = __toESM(require_jsx_runtime(), 1);
|
|
13990
13990
|
var FONT_SIZES = [
|
|
13991
13991
|
{ value: "14px", label: "Small (14px)" },
|
|
@@ -14129,7 +14129,7 @@ var CodegoUI = (() => {
|
|
|
14129
14129
|
] })
|
|
14130
14130
|
] });
|
|
14131
14131
|
}
|
|
14132
|
-
function
|
|
14132
|
+
function PanelSettings({
|
|
14133
14133
|
defaultTab = "appearance",
|
|
14134
14134
|
onThemeChange,
|
|
14135
14135
|
onColorsChange,
|
package/dist/index.js
CHANGED
|
@@ -6058,7 +6058,7 @@ function SectionBlock({
|
|
|
6058
6058
|
] });
|
|
6059
6059
|
}
|
|
6060
6060
|
|
|
6061
|
-
// src/components/ui/
|
|
6061
|
+
// src/components/ui/PanelSettings.tsx
|
|
6062
6062
|
import { RotateCcw as RotateCcw2 } from "lucide-react";
|
|
6063
6063
|
|
|
6064
6064
|
// src/components/ui/tabs.tsx
|
|
@@ -6143,7 +6143,7 @@ function Tabs({
|
|
|
6143
6143
|
] });
|
|
6144
6144
|
}
|
|
6145
6145
|
|
|
6146
|
-
// src/components/ui/
|
|
6146
|
+
// src/components/ui/PanelSettings.tsx
|
|
6147
6147
|
import { jsx as jsx46, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
6148
6148
|
var FONT_SIZES = [
|
|
6149
6149
|
{ value: "14px", label: "Small (14px)" },
|
|
@@ -6287,7 +6287,7 @@ function TypographyPanel({
|
|
|
6287
6287
|
] })
|
|
6288
6288
|
] });
|
|
6289
6289
|
}
|
|
6290
|
-
function
|
|
6290
|
+
function PanelSettings({
|
|
6291
6291
|
defaultTab = "appearance",
|
|
6292
6292
|
onThemeChange,
|
|
6293
6293
|
onColorsChange,
|
|
@@ -7899,6 +7899,7 @@ export {
|
|
|
7899
7899
|
OtpInput,
|
|
7900
7900
|
Pagination,
|
|
7901
7901
|
Panel,
|
|
7902
|
+
PanelSettings,
|
|
7902
7903
|
PanelSidebarGroup,
|
|
7903
7904
|
PanelSidebarItem,
|
|
7904
7905
|
Popover,
|
|
@@ -7913,7 +7914,6 @@ export {
|
|
|
7913
7914
|
ScrollArea,
|
|
7914
7915
|
SectionBlock,
|
|
7915
7916
|
Select,
|
|
7916
|
-
Settings,
|
|
7917
7917
|
Skeleton,
|
|
7918
7918
|
Slider,
|
|
7919
7919
|
StatCard,
|