@skalar-saas/design-system 0.1.161 → 0.2.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/README.md +15 -0
- package/dist/design-system.css +1 -1
- package/dist/{index-DkFDxZoi.cjs → index-C_WnbLro.cjs} +2 -2
- package/dist/{index-DkFDxZoi.cjs.map → index-C_WnbLro.cjs.map} +1 -1
- package/dist/{index-rxbeubXM.js → index-CxDCuzeJ.js} +9228 -8775
- package/dist/index-CxDCuzeJ.js.map +1 -0
- package/dist/index-DSlPTpVd.cjs +91 -0
- package/dist/index-DSlPTpVd.cjs.map +1 -0
- package/dist/{index-DpcV8Rmr.js → index-N0owFouQ.js} +2 -2
- package/dist/{index-DpcV8Rmr.js.map → index-N0owFouQ.js.map} +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +151 -148
- package/dist/shared/ui/OptionsEditor/OptionsEditor.d.ts +32 -0
- package/dist/shared/ui/OptionsEditor/index.d.ts +1 -0
- package/dist/shared/ui/QuickActions/QuickActions.d.ts +18 -0
- package/dist/shared/ui/QuickActions/index.d.ts +1 -0
- package/dist/shared/ui/TabbedContainer/TabbedContainer.d.ts +26 -0
- package/dist/shared/ui/TabbedContainer/index.d.ts +1 -0
- package/dist/shared/ui/Tabs/Tabs.d.ts +3 -1
- package/dist/shared/ui/WidgetEditor/fields/ComponentTreeField/ComponentTreeField.d.ts +8 -0
- package/dist/shared/ui/WidgetEditor/fields/ComponentTreeField/index.d.ts +1 -0
- package/dist/shared/ui/WidgetEditor/fields/ModalListField.d.ts +7 -0
- package/dist/shared/ui/WidgetEditor/types.d.ts +28 -3
- package/package.json +1 -1
- package/dist/index-rxbeubXM.js.map +0 -1
- package/dist/index-v69sopOS.cjs +0 -91
- package/dist/index-v69sopOS.cjs.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -60,6 +60,7 @@ export { Kbd, type KbdProps, type KbdSize } from './shared/ui/Kbd/Kbd';
|
|
|
60
60
|
export { Sidebar, useSidebar, type SidebarProps, type SidebarItemProps, type SidebarUserProps } from './shared/ui/Sidebar/Sidebar';
|
|
61
61
|
export { ListItem } from './shared/ui/ListItem';
|
|
62
62
|
export type { ListItemProps } from './shared/ui/ListItem';
|
|
63
|
+
export { OptionsEditor, type OptionsEditorProps, type OptionItem } from './shared/ui/OptionsEditor/OptionsEditor';
|
|
63
64
|
export { LabelWithIcon } from './shared/ui/LabelWithIcon/LabelWithIcon';
|
|
64
65
|
export { LabelWithTooltip, type LabelWithTooltipProps } from './shared/ui/LabelWithTooltip/LabelWithTooltip';
|
|
65
66
|
export { Link, type LinkProps } from './shared/ui/Link/Link';
|
|
@@ -74,6 +75,7 @@ export { Progress } from './shared/ui/Progress/Progress';
|
|
|
74
75
|
export { ProgressBar } from './shared/ui/ProgressBar/ProgressBar';
|
|
75
76
|
export { ProgressCircle } from './shared/ui/ProgressCircle/ProgressCircle';
|
|
76
77
|
export { ProgressTracker } from './shared/ui/ProgressTracker/ProgressTracker';
|
|
78
|
+
export { QuickActions, type QuickActionsProps, type QuickAction } from './shared/ui/QuickActions/QuickActions';
|
|
77
79
|
export { Radio } from './shared/ui/Radio/Radio';
|
|
78
80
|
export { SelectableCard } from './shared/ui/SelectableCard/SelectableCard';
|
|
79
81
|
export type { SelectableCardProps, SelectableCardSize } from './shared/ui/SelectableCard/SelectableCard';
|
|
@@ -84,6 +86,7 @@ export type { ActivityFeedProps, ActivityEntry, ActivityFilterItem, ActivityStat
|
|
|
84
86
|
export * from './shared/ui/Switcher/Switcher';
|
|
85
87
|
export * from './shared/ui/Table';
|
|
86
88
|
export * from './shared/ui/Tabs/Tabs';
|
|
89
|
+
export { TabbedContainer, type TabbedContainerProps, type TabbedContainerTab } from './shared/ui/TabbedContainer/TabbedContainer';
|
|
87
90
|
export { HeaderTabs } from './shared/ui/HeaderTabs';
|
|
88
91
|
export type { HeaderTabsProps, HeaderTabItem } from './shared/ui/HeaderTabs';
|
|
89
92
|
export { Tag } from './shared/ui/Tag/Tag';
|
|
@@ -171,7 +174,7 @@ export { DraggableListRow } from './shared/ui/DraggableListRow/DraggableListRow'
|
|
|
171
174
|
export type { DraggableListRowProps, DraggableListRowItem } from './shared/ui/DraggableListRow/DraggableListRow';
|
|
172
175
|
export { WidgetBuilderEdit } from './shared/ui/WidgetBuilderEdit/WidgetBuilderEdit';
|
|
173
176
|
export type { WidgetBuilderEditProps } from './shared/ui/WidgetBuilderEdit/WidgetBuilderEdit';
|
|
174
|
-
export type { WidgetConfig, Section as WidgetSection, Field as WidgetField, FieldType, ContextMenuItem as WidgetContextMenuItem, DropdownOption, ListItem as WidgetListItem, DraggableItem, MultiDropdownConfig, EventHandler, ActionType } from './shared/ui/WidgetEditor/types';
|
|
177
|
+
export type { WidgetConfig, Section as WidgetSection, Field as WidgetField, FieldType, ContextMenuItem as WidgetContextMenuItem, DropdownOption, ListItem as WidgetListItem, DraggableItem, MultiDropdownConfig, EventHandler, ActionType, ModalListItem, ModalListSubField, ComponentTreeTab, ComponentTreeComponent } from './shared/ui/WidgetEditor/types';
|
|
175
178
|
export { WidgetPreview } from './shared/ui/WidgetEditor/WidgetPreview';
|
|
176
179
|
export type { WidgetPreviewProps } from './shared/ui/WidgetEditor/WidgetPreview';
|
|
177
180
|
export { LogicOperatorConnector } from './shared/ui/LogicOperatorConnector';
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-v69sopOS.cjs");exports.AICommentaryIcon=e.AICommentaryIcon;exports.AIMessage=e.AIMessage;exports.ActivityFeed=e.ActivityFeed;exports.AddIcon=e.AddIcon;exports.AlertCallout=e.AlertCallout;exports.AlertDialog=e.AlertDialog;exports.AlertDialogAction=e.AlertDialogAction;exports.AlertDialogCancel=e.AlertDialogCancel;exports.AlertDialogContent=e.AlertDialogContent;exports.AlertDialogDescription=e.AlertDialogDescription;exports.AlertDialogFooter=e.AlertDialogFooter;exports.AlertDialogHeader=e.AlertDialogHeader;exports.AlertDialogTitle=e.AlertDialogTitle;exports.AlertDialogTrigger=e.AlertDialogTrigger;exports.AppointmentDetail=e.AppointmentDetail;exports.AppointmentRow=e.AppointmentRow;exports.ArrowNarrowDownIcon=e.ArrowNarrowDownIcon;exports.AttachmentMessage=e.AttachmentMessage;exports.AuthActionWidget=e.AuthActionWidget;exports.AuthEmailVerificationWidget=e.AuthEmailVerificationWidget;exports.AuthFormWidget=e.AuthFormWidget;exports.AuthSocialOptionsWidget=e.AuthSocialOptionsWidget;exports.Avatar=e.Avatar;exports.AvatarGroup=e.AvatarGroup;exports.BREAKPOINTS=e.BREAKPOINTS;exports.Badge=e.Badge;exports.BookOutlined=e.BookOutlined;exports.Box2Icon=e.Box2Icon;exports.BoxIcon=e.BoxIcon;exports.Breadcrumb=e.Breadcrumb;exports.BreadcrumbEllipsis=e.BreadcrumbEllipsis;exports.BreadcrumbItem=e.BreadcrumbItem;exports.BreadcrumbLink=e.BreadcrumbLink;exports.BreadcrumbList=e.BreadcrumbList;exports.BreadcrumbPage=e.BreadcrumbPage;exports.BreadcrumbSeparator=e.BreadcrumbSeparator;exports.Button=e.Button;exports.ButtonDropdown=e.ButtonDropdown;exports.ButtonGroup=e.ButtonGroup;exports.CHART_PALETTE=e.CHART_PALETTE;exports.CONTAINER=e.CONTAINER;exports.CONTAINER_PADDING=e.CONTAINER_PADDING;exports.CSS_VARIABLES=e.CSS_VARIABLES;exports.CalendarIcon=e.CalendarIcon;exports.CalendarIcon2=e.CalendarIcon2;exports.Card=e.Card;exports.CardAction=e.CardAction;exports.ChartContainer=e.ChartContainer;exports.ChartContext=e.ChartContext;exports.ChartLegend=e.Legend;exports.ChartLegendContent=e.ChartLegendContent;exports.ChartTooltip=e.Tooltip$1;exports.ChartTooltipContent=e.ChartTooltipContent;exports.ChatCollapsibleCheck=e.ChatCollapsibleCheck;exports.ChatCollapsibleContainer=e.ChatCollapsibleContainer;exports.ChatCollapsibleDialog=e.ChatCollapsibleDialog;exports.ChatCommandList=e.ChatCommandList;exports.ChatCommandListItem=e.ChatCommandListItem;exports.ChatHeader=e.ChatHeader;exports.ChatHistorial=e.ChatHistorial;exports.ChatHistorialItemComponent=e.ChatHistorialItem;exports.ChatIcon=e.ChatIcon;exports.ChatInputText=e.ChatInputText;exports.ChatLayout=e.ChatLayout;exports.ChatMessage=e.ChatMessage;exports.ChatMessageOptions=e.ChatMessageOptions;exports.ChatPanel=e.ChatPanel;exports.ChatTypingIndicator=e.ChatTypingIndicator;exports.Checkbox=e.Checkbox;exports.ChevronDownIcon=e.ChevronDownIcon;exports.ChevronUpIcon=e.ChevronUpIcon;exports.Chip=e.Chip;exports.CircleIcon=e.CircleIcon;exports.ColorPalette=e.ColorPalette;exports.ColumnHandler=e.ColumnHandler;exports.ColumnHeader=e.ColumnHeader;exports.ComboBox=e.ComboBox;exports.ConditionalBuilder=e.ConditionalBuilder;exports.Container=e.ContainerWithCompounds;exports.ContextualMenu=e.ContextualMenu;exports.CopyIcon=e.CopyIcon;exports.DataArrowsOutlined=e.DataArrowsOutlined;exports.DatePickerInput=e.DatePickerInput;exports.DateRangePicker=e.DateRangePicker;exports.DeleteConfirmationModal=e.DeleteConfirmationModal;exports.Divider=e.Divider;exports.DragAndDropListItem=e.DragAndDropListItem;exports.DraggableListRow=e.DraggableListRow;exports.Drawer=e.Drawer;exports.DropLayoutPicker=e.DropLayoutPicker;exports.DropLayoutPickerContent=e.DropLayoutPickerContent;exports.DropLayoutPickerTrigger=e.DropLayoutPickerTrigger;exports.DropMenu=e.DropMenu;exports.DropModal=e.DropModal;exports.DropModalBody=e.DropModalBody;exports.DropModalClose=e.DropModalClose;exports.DropModalContent=e.DropModalContent;exports.DropModalFooter=e.DropModalFooter;exports.DropModalFooterActions=e.DropModalFooterActions;exports.DropModalHeader=e.DropModalHeader;exports.DropModalTitle=e.DropModalTitle;exports.DropModalTrigger=e.DropModalTrigger;exports.DropPlaceholder=e.DropPlaceholder;exports.DropSizePicker=e.DropSizePicker;exports.DropSizePickerContent=e.DropSizePickerContent;exports.DropSizePickerTrigger=e.DropSizePickerTrigger;exports.DropZone=e.DropZone;exports.Dropdown=e.Dropdown;exports.DropdownMenu=e.DropdownMenu;exports.Edit2Icon=e.Edit2Icon;exports.EmptyState=e.EmptyState;exports.ErrorBoundary=e.ErrorBoundary;exports.ErrorState=e.ErrorState;exports.ExpressionCard=e.ExpressionCard;exports.ExpressionPanel=e.ExpressionPanel;exports.ExpressionPanelDivider=e.ExpressionPanelDivider;exports.EyeIcon=e.EyeIcon;exports.EyeOffIcon=e.EyeOffIcon;exports.FilterConditionRow=e.FilterConditionRow;exports.FilterFunnel02Icon=e.FilterFunnel02Icon;exports.FlashIcon=e.FlashIcon;exports.FloatingBar=e.FloatingBar;exports.Footer=e.Footer;exports.FormFieldGroup=e.FormFieldGroup;exports.GridDraggableItem=e.GridDraggableItem;exports.Header=e.Header;exports.HeaderTabs=e.HeaderTabs;exports.Icon=e.Icon;exports.ImageUploader=e.ImageUploader;exports.InfoIcon=e.InfoIcon;exports.InfoLabel=e.InfoLabel;exports.InputField=e.InputField;exports.InputSearch=e.InputSearch;exports.InvoiceCard=e.InvoiceCard;exports.KPIAutomationTrigger=e.KPIAutomationTrigger;exports.KPIBarChart=e.KPIBarChart;exports.KPICard=e.KPICard;exports.KPIChart=e.KPIChart;exports.KPIDetailedMetric=e.KPIDetailedMetric;exports.KPIDonutChart=e.KPIDonutChart;exports.KPIPieChart=e.KPIPieChart;exports.KPIPieMetrics=e.KPIPieMetrics;exports.KPIProgressBar=e.KPIProgressBar;exports.KPIProgressCircle=e.KPIProgressCircle;exports.KPIProgressHalfCircle=e.KPIProgressHalfCircle;exports.KPIProgressMetrics=e.KPIProgressMetrics;exports.KPIQuickActionList=e.KPIQuickActionList;exports.KPIRadarMetrics=e.KPIRadarMetrics;exports.KPIRadialChart=e.KPIRadialChart;exports.KPIRadialMetrics=e.KPIRadialMetrics;exports.KPISingleValue=e.KPISingleValue;exports.KPISingleValueAction=e.KPISingleValueAction;exports.KPISingleValueContent=e.KPISingleValueContent;exports.KPISlider=e.KPISlider;exports.KPIValueBreakdown=e.KPIValueBreakdown;exports.Kanban=e.Kanban;exports.KanbanCard=e.KanbanCard;exports.KanbanColumn=e.KanbanColumn;exports.Kbd=e.Kbd;exports.LAYOUT=e.LAYOUT;exports.LAYOUT_SPACING=e.LAYOUT_SPACING;exports.LabelIcon=e.LabelIcon;exports.LabelWithIcon=e.LabelWithIcon;exports.LabelWithTooltip=e.LabelWithTooltip;exports.LayerIcon=e.LayerIcon;exports.LeftArrowIcon=e.LeftArrowIcon;exports.Link=e.Link;exports.ListItem=e.ListItem;exports.LogicOperatorConnector=e.LogicOperatorConnector;exports.MaximizeIcon=e.MaximizeIcon;exports.MessageProgrammingOutlined=e.MessageProgrammingOutlined;exports.Modal=e.Modal;exports.ModalBody=e.ModalBody;exports.ModalClose=e.ModalClose;exports.ModalContent=e.ModalContent;exports.ModalDescription=e.ModalDescription;exports.ModalFooter=e.ModalFooter;exports.ModalFooterActions=e.ModalFooterActions;exports.ModalHeader=e.ModalHeader;exports.ModalTitle=e.ModalTitle;exports.ModalTrigger=e.ModalTrigger;exports.ModuleCard=e.ModuleCard;exports.ModuleCardHeader=e.ModuleCardHeader;exports.ModuleFieldItem=e.ModuleFieldItem;exports.ModuleSummaryCard=e.ModuleSummaryCard;exports.MoreIcon=e.MoreIcon;exports.NAVBAR=e.NAVBAR;exports.PANEL_DEFAULTS=e.PANEL_DEFAULTS;exports.Panel=e.Panel;exports.PanelHeader=e.PanelHeader;exports.PanelLayout=e.PanelLayout;exports.PanelMain=e.PanelMain;exports.PasswordResetWidget=e.PasswordResetWidget;exports.PlanPricingCard=e.PlanPricingCard;exports.Planner=e.Planner;exports.PlusCircleIcon=e.PlusCircleIcon;exports.ProductIcon=e.ProductIcon;exports.ProgrammingArrowsOutlined=e.ProgrammingArrowsOutlined;exports.Progress=e.Progress;exports.ProgressBar=e.ProgressBar;exports.ProgressCircle=e.ProgressCircle;exports.ProgressTracker=e.ProgressTracker;exports.ProjectActionCard=e.ProjectActionCard;exports.ProjectCard=e.ProjectCard;exports.ProjectCardPlan=e.ProjectCardPlan;exports.ProjectOverviewCard=e.ProjectOverviewCard;exports.QuestionCircle=e.QuestionCircle;exports.Radio=e.Radio;exports.RecoveryWidget=e.RecoveryWidget;exports.RelatedDataCard=e.RelatedDataCard;exports.RightArrowIcon=e.RightArrowIcon;exports.SIDEBAR=e.SIDEBAR;exports.Section=e.Section;exports.SectionFeatures=e.SectionFeatures;exports.SectionHero=e.SectionHero;exports.SelectableCard=e.SelectableCard;exports.SettingsCard=e.SettingsCard;exports.ShareIcon=e.ShareIcon;exports.Sidebar=e.Sidebar;exports.SkalarLogo=e.SkalarLogo;exports.SkalarLogoNoText=e.SkalarLogoNoText;exports.SlashIcon=e.SlashIcon;exports.SliderPointerDown=e.SliderPointerDown;exports.SliderPointerUp=e.SliderPointerUp;exports.SliderThumbIcon=e.SliderThumbIcon;exports.SplitPanelLayout=e.SplitPanelLayout;exports.Stepper=e.Stepper;exports.StraightInfoIcon=e.StraightInfoIcon;exports.SupportCard=e.SupportCard;exports.Switcher=e.Switcher;exports.Table=e.Table;exports.TableBody=e.TableBody;exports.TableCard=e.TableCard;exports.TableCell=e.TableCell;exports.TableColumnFilter=e.TableColumnFilter;exports.TableColumnHeader=e.TableColumnHeader;exports.TableColumnVisibility=e.TableColumnVisibility;exports.TableEmptyState=e.TableEmptyState;exports.TableHeader=e.TableHeader;exports.TableHeading=e.TableHeading;exports.TablePagination=e.TablePagination;exports.TableProvider=e.TableProvider;exports.TableRoot=e.TableRoot;exports.TableRow=e.TableRow;exports.Tabs=e.Tabs;exports.Tag=e.Tag;exports.TextArea=e.TextArea;exports.ThemeToggle=e.ThemeToggle;exports.ToastComponent=e.ToastComponent;exports.ToastProvider=e.ToastProvider;exports.Toggle=e.Toggle;exports.Tooltip=e.Tooltip;exports.TrashIcon=e.TrashIcon;exports.TypesPanel=e.TypesPanel;exports.TypesPanelBodyGrid=e.TypesPanelBodyGrid;exports.TypesPanelBodyList=e.TypesPanelBodyList;exports.TypesPanelHeader=e.TypesPanelHeader;exports.TypesPanelHeaderSearch=e.TypesPanelHeaderSearch;exports.UnionIcon=e.UnionIcon;exports.UploadImageIcon=e.UploadImageIcon;exports.UserMenu=e.UserMenu;exports.VideoPlayOutlined=e.VideoPlayOutlined;exports.VisualComposer=e.VisualComposer;exports.WidgetBuilderEdit=e.WidgetBuilderEdit;exports.WidgetBuilderItemHoverAction=e.WidgetBuilderItemHoverAction;exports.WidgetContainer=e.WidgetContainer;exports.WidgetPreview=e.WidgetPreview;exports.WidgetSidebar=e.WidgetSidebar;exports.WidgetSummaryCard=e.WidgetSummaryCard;exports.WorkspaceSettings=e.WorkspaceSettings;exports.XMark=e.XMark;exports.XMarkAlert=e.XMarkAlert;exports.addSelectionColumn=e.addSelectionColumn;exports.calculateDraggedPanelPercentage=e.calculateDraggedPanelPercentage;exports.calculateHeaderWidths=e.calculateHeaderWidths;exports.calculatePanelPercentage=e.calculatePanelPercentage;exports.createMediaQuery=e.createMediaQuery;exports.findPanelById=e.findPanelById;exports.getCentralWidth=e.getCentralWidth;exports.getCurrentBreakpoint=e.getCurrentBreakpoint;exports.getGapClass=e.getGapClass;exports.getTotalPanelsWidth=e.getTotalPanelsWidth;exports.getTotalSideWidth=e.getTotalSideWidth;exports.initializePanelsState=e.initializePanelsState;exports.matchesBreakpoint=e.matchesBreakpoint;exports.parseColumnConfig=e.parseColumnConfig;exports.parseTableConfig=e.parseTableConfig;exports.productsApiResponse=e.productsApiResponse;exports.productsTableConfig=e.productsTableConfig;exports.productsTableData=e.productsTableData;exports.pxToCss=e.pxToCss;exports.pxToRem=e.pxToRem;exports.useChart=e.useChart;exports.useContainerHeight=e.useContainerHeight;exports.useContainerWidth=e.useContainerWidth;exports.usePanelState=e.usePanelState;exports.useSidebar=e.useSidebar;exports.useTableContext=e.useTableContext;exports.useToast=e.useToast;exports.usersApiResponse=e.usersApiResponse;exports.usersTableConfig=e.usersTableConfig;exports.usersTableData=e.usersTableData;exports.visualComposerCollision=e.visualComposerCollision;
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-DSlPTpVd.cjs");exports.AICommentaryIcon=e.AICommentaryIcon;exports.AIMessage=e.AIMessage;exports.ActivityFeed=e.ActivityFeed;exports.AddIcon=e.AddIcon;exports.AlertCallout=e.AlertCallout;exports.AlertDialog=e.AlertDialog;exports.AlertDialogAction=e.AlertDialogAction;exports.AlertDialogCancel=e.AlertDialogCancel;exports.AlertDialogContent=e.AlertDialogContent;exports.AlertDialogDescription=e.AlertDialogDescription;exports.AlertDialogFooter=e.AlertDialogFooter;exports.AlertDialogHeader=e.AlertDialogHeader;exports.AlertDialogTitle=e.AlertDialogTitle;exports.AlertDialogTrigger=e.AlertDialogTrigger;exports.AppointmentDetail=e.AppointmentDetail;exports.AppointmentRow=e.AppointmentRow;exports.ArrowNarrowDownIcon=e.ArrowNarrowDownIcon;exports.AttachmentMessage=e.AttachmentMessage;exports.AuthActionWidget=e.AuthActionWidget;exports.AuthEmailVerificationWidget=e.AuthEmailVerificationWidget;exports.AuthFormWidget=e.AuthFormWidget;exports.AuthSocialOptionsWidget=e.AuthSocialOptionsWidget;exports.Avatar=e.Avatar;exports.AvatarGroup=e.AvatarGroup;exports.BREAKPOINTS=e.BREAKPOINTS;exports.Badge=e.Badge;exports.BookOutlined=e.BookOutlined;exports.Box2Icon=e.Box2Icon;exports.BoxIcon=e.BoxIcon;exports.Breadcrumb=e.Breadcrumb;exports.BreadcrumbEllipsis=e.BreadcrumbEllipsis;exports.BreadcrumbItem=e.BreadcrumbItem;exports.BreadcrumbLink=e.BreadcrumbLink;exports.BreadcrumbList=e.BreadcrumbList;exports.BreadcrumbPage=e.BreadcrumbPage;exports.BreadcrumbSeparator=e.BreadcrumbSeparator;exports.Button=e.Button;exports.ButtonDropdown=e.ButtonDropdown;exports.ButtonGroup=e.ButtonGroup;exports.CHART_PALETTE=e.CHART_PALETTE;exports.CONTAINER=e.CONTAINER;exports.CONTAINER_PADDING=e.CONTAINER_PADDING;exports.CSS_VARIABLES=e.CSS_VARIABLES;exports.CalendarIcon=e.CalendarIcon;exports.CalendarIcon2=e.CalendarIcon2;exports.Card=e.Card;exports.CardAction=e.CardAction;exports.ChartContainer=e.ChartContainer;exports.ChartContext=e.ChartContext;exports.ChartLegend=e.Legend;exports.ChartLegendContent=e.ChartLegendContent;exports.ChartTooltip=e.Tooltip$1;exports.ChartTooltipContent=e.ChartTooltipContent;exports.ChatCollapsibleCheck=e.ChatCollapsibleCheck;exports.ChatCollapsibleContainer=e.ChatCollapsibleContainer;exports.ChatCollapsibleDialog=e.ChatCollapsibleDialog;exports.ChatCommandList=e.ChatCommandList;exports.ChatCommandListItem=e.ChatCommandListItem;exports.ChatHeader=e.ChatHeader;exports.ChatHistorial=e.ChatHistorial;exports.ChatHistorialItemComponent=e.ChatHistorialItem;exports.ChatIcon=e.ChatIcon;exports.ChatInputText=e.ChatInputText;exports.ChatLayout=e.ChatLayout;exports.ChatMessage=e.ChatMessage;exports.ChatMessageOptions=e.ChatMessageOptions;exports.ChatPanel=e.ChatPanel;exports.ChatTypingIndicator=e.ChatTypingIndicator;exports.Checkbox=e.Checkbox;exports.ChevronDownIcon=e.ChevronDownIcon;exports.ChevronUpIcon=e.ChevronUpIcon;exports.Chip=e.Chip;exports.CircleIcon=e.CircleIcon;exports.ColorPalette=e.ColorPalette;exports.ColumnHandler=e.ColumnHandler;exports.ColumnHeader=e.ColumnHeader;exports.ComboBox=e.ComboBox;exports.ConditionalBuilder=e.ConditionalBuilder;exports.Container=e.ContainerWithCompounds;exports.ContextualMenu=e.ContextualMenu;exports.CopyIcon=e.CopyIcon;exports.DataArrowsOutlined=e.DataArrowsOutlined;exports.DatePickerInput=e.DatePickerInput;exports.DateRangePicker=e.DateRangePicker;exports.DeleteConfirmationModal=e.DeleteConfirmationModal;exports.Divider=e.Divider;exports.DragAndDropListItem=e.DragAndDropListItem;exports.DraggableListRow=e.DraggableListRow;exports.Drawer=e.Drawer;exports.DropLayoutPicker=e.DropLayoutPicker;exports.DropLayoutPickerContent=e.DropLayoutPickerContent;exports.DropLayoutPickerTrigger=e.DropLayoutPickerTrigger;exports.DropMenu=e.DropMenu;exports.DropModal=e.DropModal;exports.DropModalBody=e.DropModalBody;exports.DropModalClose=e.DropModalClose;exports.DropModalContent=e.DropModalContent;exports.DropModalFooter=e.DropModalFooter;exports.DropModalFooterActions=e.DropModalFooterActions;exports.DropModalHeader=e.DropModalHeader;exports.DropModalTitle=e.DropModalTitle;exports.DropModalTrigger=e.DropModalTrigger;exports.DropPlaceholder=e.DropPlaceholder;exports.DropSizePicker=e.DropSizePicker;exports.DropSizePickerContent=e.DropSizePickerContent;exports.DropSizePickerTrigger=e.DropSizePickerTrigger;exports.DropZone=e.DropZone;exports.Dropdown=e.Dropdown;exports.DropdownMenu=e.DropdownMenu;exports.Edit2Icon=e.Edit2Icon;exports.EmptyState=e.EmptyState;exports.ErrorBoundary=e.ErrorBoundary;exports.ErrorState=e.ErrorState;exports.ExpressionCard=e.ExpressionCard;exports.ExpressionPanel=e.ExpressionPanel;exports.ExpressionPanelDivider=e.ExpressionPanelDivider;exports.EyeIcon=e.EyeIcon;exports.EyeOffIcon=e.EyeOffIcon;exports.FilterConditionRow=e.FilterConditionRow;exports.FilterFunnel02Icon=e.FilterFunnel02Icon;exports.FlashIcon=e.FlashIcon;exports.FloatingBar=e.FloatingBar;exports.Footer=e.Footer;exports.FormFieldGroup=e.FormFieldGroup;exports.GridDraggableItem=e.GridDraggableItem;exports.Header=e.Header;exports.HeaderTabs=e.HeaderTabs;exports.Icon=e.Icon;exports.ImageUploader=e.ImageUploader;exports.InfoIcon=e.InfoIcon;exports.InfoLabel=e.InfoLabel;exports.InputField=e.InputField;exports.InputSearch=e.InputSearch;exports.InvoiceCard=e.InvoiceCard;exports.KPIAutomationTrigger=e.KPIAutomationTrigger;exports.KPIBarChart=e.KPIBarChart;exports.KPICard=e.KPICard;exports.KPIChart=e.KPIChart;exports.KPIDetailedMetric=e.KPIDetailedMetric;exports.KPIDonutChart=e.KPIDonutChart;exports.KPIPieChart=e.KPIPieChart;exports.KPIPieMetrics=e.KPIPieMetrics;exports.KPIProgressBar=e.KPIProgressBar;exports.KPIProgressCircle=e.KPIProgressCircle;exports.KPIProgressHalfCircle=e.KPIProgressHalfCircle;exports.KPIProgressMetrics=e.KPIProgressMetrics;exports.KPIQuickActionList=e.KPIQuickActionList;exports.KPIRadarMetrics=e.KPIRadarMetrics;exports.KPIRadialChart=e.KPIRadialChart;exports.KPIRadialMetrics=e.KPIRadialMetrics;exports.KPISingleValue=e.KPISingleValue;exports.KPISingleValueAction=e.KPISingleValueAction;exports.KPISingleValueContent=e.KPISingleValueContent;exports.KPISlider=e.KPISlider;exports.KPIValueBreakdown=e.KPIValueBreakdown;exports.Kanban=e.Kanban;exports.KanbanCard=e.KanbanCard;exports.KanbanColumn=e.KanbanColumn;exports.Kbd=e.Kbd;exports.LAYOUT=e.LAYOUT;exports.LAYOUT_SPACING=e.LAYOUT_SPACING;exports.LabelIcon=e.LabelIcon;exports.LabelWithIcon=e.LabelWithIcon;exports.LabelWithTooltip=e.LabelWithTooltip;exports.LayerIcon=e.LayerIcon;exports.LeftArrowIcon=e.LeftArrowIcon;exports.Link=e.Link;exports.ListItem=e.ListItem;exports.LogicOperatorConnector=e.LogicOperatorConnector;exports.MaximizeIcon=e.MaximizeIcon;exports.MessageProgrammingOutlined=e.MessageProgrammingOutlined;exports.Modal=e.Modal;exports.ModalBody=e.ModalBody;exports.ModalClose=e.ModalClose;exports.ModalContent=e.ModalContent;exports.ModalDescription=e.ModalDescription;exports.ModalFooter=e.ModalFooter;exports.ModalFooterActions=e.ModalFooterActions;exports.ModalHeader=e.ModalHeader;exports.ModalTitle=e.ModalTitle;exports.ModalTrigger=e.ModalTrigger;exports.ModuleCard=e.ModuleCard;exports.ModuleCardHeader=e.ModuleCardHeader;exports.ModuleFieldItem=e.ModuleFieldItem;exports.ModuleSummaryCard=e.ModuleSummaryCard;exports.MoreIcon=e.MoreIcon;exports.NAVBAR=e.NAVBAR;exports.OptionsEditor=e.OptionsEditor;exports.PANEL_DEFAULTS=e.PANEL_DEFAULTS;exports.Panel=e.Panel;exports.PanelHeader=e.PanelHeader;exports.PanelLayout=e.PanelLayout;exports.PanelMain=e.PanelMain;exports.PasswordResetWidget=e.PasswordResetWidget;exports.PlanPricingCard=e.PlanPricingCard;exports.Planner=e.Planner;exports.PlusCircleIcon=e.PlusCircleIcon;exports.ProductIcon=e.ProductIcon;exports.ProgrammingArrowsOutlined=e.ProgrammingArrowsOutlined;exports.Progress=e.Progress;exports.ProgressBar=e.ProgressBar;exports.ProgressCircle=e.ProgressCircle;exports.ProgressTracker=e.ProgressTracker;exports.ProjectActionCard=e.ProjectActionCard;exports.ProjectCard=e.ProjectCard;exports.ProjectCardPlan=e.ProjectCardPlan;exports.ProjectOverviewCard=e.ProjectOverviewCard;exports.QuestionCircle=e.QuestionCircle;exports.QuickActions=e.QuickActions;exports.Radio=e.Radio;exports.RecoveryWidget=e.RecoveryWidget;exports.RelatedDataCard=e.RelatedDataCard;exports.RightArrowIcon=e.RightArrowIcon;exports.SIDEBAR=e.SIDEBAR;exports.Section=e.Section;exports.SectionFeatures=e.SectionFeatures;exports.SectionHero=e.SectionHero;exports.SelectableCard=e.SelectableCard;exports.SettingsCard=e.SettingsCard;exports.ShareIcon=e.ShareIcon;exports.Sidebar=e.Sidebar;exports.SkalarLogo=e.SkalarLogo;exports.SkalarLogoNoText=e.SkalarLogoNoText;exports.SlashIcon=e.SlashIcon;exports.SliderPointerDown=e.SliderPointerDown;exports.SliderPointerUp=e.SliderPointerUp;exports.SliderThumbIcon=e.SliderThumbIcon;exports.SplitPanelLayout=e.SplitPanelLayout;exports.Stepper=e.Stepper;exports.StraightInfoIcon=e.StraightInfoIcon;exports.SupportCard=e.SupportCard;exports.Switcher=e.Switcher;exports.TabbedContainer=e.TabbedContainer;exports.Table=e.Table;exports.TableBody=e.TableBody;exports.TableCard=e.TableCard;exports.TableCell=e.TableCell;exports.TableColumnFilter=e.TableColumnFilter;exports.TableColumnHeader=e.TableColumnHeader;exports.TableColumnVisibility=e.TableColumnVisibility;exports.TableEmptyState=e.TableEmptyState;exports.TableHeader=e.TableHeader;exports.TableHeading=e.TableHeading;exports.TablePagination=e.TablePagination;exports.TableProvider=e.TableProvider;exports.TableRoot=e.TableRoot;exports.TableRow=e.TableRow;exports.Tabs=e.Tabs;exports.Tag=e.Tag;exports.TextArea=e.TextArea;exports.ThemeToggle=e.ThemeToggle;exports.ToastComponent=e.ToastComponent;exports.ToastProvider=e.ToastProvider;exports.Toggle=e.Toggle;exports.Tooltip=e.Tooltip;exports.TrashIcon=e.TrashIcon;exports.TypesPanel=e.TypesPanel;exports.TypesPanelBodyGrid=e.TypesPanelBodyGrid;exports.TypesPanelBodyList=e.TypesPanelBodyList;exports.TypesPanelHeader=e.TypesPanelHeader;exports.TypesPanelHeaderSearch=e.TypesPanelHeaderSearch;exports.UnionIcon=e.UnionIcon;exports.UploadImageIcon=e.UploadImageIcon;exports.UserMenu=e.UserMenu;exports.VideoPlayOutlined=e.VideoPlayOutlined;exports.VisualComposer=e.VisualComposer;exports.WidgetBuilderEdit=e.WidgetBuilderEdit;exports.WidgetBuilderItemHoverAction=e.WidgetBuilderItemHoverAction;exports.WidgetContainer=e.WidgetContainer;exports.WidgetPreview=e.WidgetPreview;exports.WidgetSidebar=e.WidgetSidebar;exports.WidgetSummaryCard=e.WidgetSummaryCard;exports.WorkspaceSettings=e.WorkspaceSettings;exports.XMark=e.XMark;exports.XMarkAlert=e.XMarkAlert;exports.addSelectionColumn=e.addSelectionColumn;exports.calculateDraggedPanelPercentage=e.calculateDraggedPanelPercentage;exports.calculateHeaderWidths=e.calculateHeaderWidths;exports.calculatePanelPercentage=e.calculatePanelPercentage;exports.createMediaQuery=e.createMediaQuery;exports.findPanelById=e.findPanelById;exports.getCentralWidth=e.getCentralWidth;exports.getCurrentBreakpoint=e.getCurrentBreakpoint;exports.getGapClass=e.getGapClass;exports.getTotalPanelsWidth=e.getTotalPanelsWidth;exports.getTotalSideWidth=e.getTotalSideWidth;exports.initializePanelsState=e.initializePanelsState;exports.matchesBreakpoint=e.matchesBreakpoint;exports.parseColumnConfig=e.parseColumnConfig;exports.parseTableConfig=e.parseTableConfig;exports.productsApiResponse=e.productsApiResponse;exports.productsTableConfig=e.productsTableConfig;exports.productsTableData=e.productsTableData;exports.pxToCss=e.pxToCss;exports.pxToRem=e.pxToRem;exports.useChart=e.useChart;exports.useContainerHeight=e.useContainerHeight;exports.useContainerWidth=e.useContainerWidth;exports.usePanelState=e.usePanelState;exports.useSidebar=e.useSidebar;exports.useTableContext=e.useTableContext;exports.useToast=e.useToast;exports.usersApiResponse=e.usersApiResponse;exports.usersTableConfig=e.usersTableConfig;exports.usersTableData=e.usersTableData;exports.visualComposerCollision=e.visualComposerCollision;
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
2
|
+
import { bW as e, cd as o, aF as r, c0 as t, bU as n, cB as i, cI as d, cJ as l, cD as c, cG as C, cH as b, cE as g, cF as u, cC as p, bO as P, bN as I, bX as T, bz as m, bs as A, bu as h, bp as D, bt as S, A as M, D as B, B as y, E as L, c8 as K, bZ as k, b_ as R, cK as E, cQ as H, cM as w, cN as F, cL as W, cO as x, cP as v, F as O, cR as f, G as N, dR as V, c as U, d as G, f as z, cl as j, cv as Q, H as _, b4 as X, dz as Y, dx as Z, dD as q, dB as J, dC as $, dA as aa, I as sa, J as ea, K as oa, M as ra, O as ta, Q as na, R as ia, T as da, bV as la, U as ca, Z as Ca, V as ba, W as ga, X as ua, Y as pa, _ as Pa, cp as Ia, cq as Ta, $ as ma, b$ as Aa, a0 as ha, a1 as Da, a2 as Sa, a3 as Ma, bI as Ba, C as ya, cS as La, cy as Ka, cc as ka, bG as Ra, aT as Ea, d1 as Ha, aV as wa, a4 as Fa, bC as Wa, au as xa, bl as va, bn as Oa, bm as fa, b8 as Na, b9 as Va, be as Ua, bh as Ga, bb as za, bf as ja, bg as Qa, bc as _a, bd as Xa, ba as Ya, a8 as Za, bi as qa, bk as Ja, bj as $a, a7 as as, a5 as ss, a6 as es, cx as os, ab as rs, a9 as ts, aa as ns, bJ as is, bK as ds, bL as ls, cm as cs, cn as Cs, bH as bs, bY as gs, cu as us, ac as ps, ag as Ps, b5 as Is, ad as Ts, ae as ms, aH as As, ah as hs, ai as Ds, c3 as Ss, aj as Ms, ak as Bs, al as ys, bB as Ls, dK as Ks, dY as ks, dE as Rs, dZ as Es, dJ as Hs, dS as ws, dT as Fs, dU as Ws, dL as xs, dM as vs, dN as Os, dO as fs, dQ as Ns, dX as Vs, dV as Us, dW as Gs, dG as zs, dH as js, dF as Qs, dP as _s, dI as Xs, bP as Ys, bR as Zs, bQ as qs, am as Js, h as $s, L as ae, aU as se, ar as ee, as as oe, ct as re, c4 as te, at as ne, ap as ie, bF as de, cw as le, c9 as ce, cT as Ce, cZ as be, d0 as ge, cV as ue, cY as pe, c_ as Pe, c$ as Ie, cW as Te, cX as me, cU as Ae, bv as he, bw as De, bx as Se, a_ as Me, cs as Be, N as ye, aq as Le, x as Ke, l as ke, aS as Re, P as Ee, n as He, br as we, d2 as Fe, bM as We, co as xe, av as ve, cb as Oe, ax as fe, ay as Ne, az as Ve, aA as Ue, b1 as Ge, aw as ze, aW as je, aZ as Qe, c7 as _e, aB as Xe, aC as Ye, bq as Ze, by as qe, ck as Je, e as $e, S as ao, b as so, a as eo, aD as oo, b2 as ro, ce as to, an as no, ci as io, cj as lo, cA as co, ch as Co, cg as bo, cf as go, y as uo, aE as po, c6 as Po, aY as Io, d3 as To, aG as mo, d4 as Ao, d7 as ho, b3 as Do, d9 as So, dg as Mo, da as Bo, dh as yo, db as Lo, d6 as Ko, df as ko, de as Ro, dc as Eo, d5 as Ho, d8 as wo, ds as Fo, aI as Wo, aJ as xo, aK as vo, dt as Oo, dv as fo, aM as No, aL as Vo, cz as Uo, aN as Go, aO as zo, aP as jo, aQ as Qo, aR as _o, cr as Xo, c2 as Yo, dw as Zo, ca as qo, b6 as Jo, bD as $o, b0 as ar, bo as sr, bE as er, bA as or, a$ as rr, aX as tr, c1 as nr, c5 as ir, dk as dr, q as lr, af as cr, o as Cr, j as br, t as gr, v as ur, k as pr, z as Pr, s as Ir, r as Tr, w as mr, m as Ar, dj as hr, di as Dr, dr as Sr, dp as Mr, dq as Br, i as yr, p as Lr, dy as Kr, bT as kr, bS as Rr, u as Er, ao as Hr, dd as wr, du as Fr, dn as Wr, dl as xr, dm as vr, b7 as Or } from "./index-CxDCuzeJ.js";
|
|
3
3
|
export {
|
|
4
4
|
e as AICommentaryIcon,
|
|
5
5
|
o as AIMessage,
|
|
@@ -28,30 +28,30 @@ export {
|
|
|
28
28
|
y as BREAKPOINTS,
|
|
29
29
|
L as Badge,
|
|
30
30
|
K as BookOutlined,
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
31
|
+
k as Box2Icon,
|
|
32
|
+
R as BoxIcon,
|
|
33
|
+
E as Breadcrumb,
|
|
34
|
+
H as BreadcrumbEllipsis,
|
|
35
|
+
w as BreadcrumbItem,
|
|
36
36
|
F as BreadcrumbLink,
|
|
37
37
|
W as BreadcrumbList,
|
|
38
38
|
x as BreadcrumbPage,
|
|
39
39
|
v as BreadcrumbSeparator,
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
O as Button,
|
|
41
|
+
f as ButtonDropdown,
|
|
42
42
|
N as ButtonGroup,
|
|
43
43
|
V as CHART_PALETTE,
|
|
44
44
|
U as CONTAINER,
|
|
45
45
|
G as CONTAINER_PADDING,
|
|
46
46
|
z as CSS_VARIABLES,
|
|
47
47
|
j as CalendarIcon,
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
Q as CalendarIcon2,
|
|
49
|
+
_ as Card,
|
|
50
50
|
X as CardAction,
|
|
51
51
|
Y as ChartContainer,
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
Z as ChartContext,
|
|
53
|
+
q as ChartLegend,
|
|
54
|
+
J as ChartLegendContent,
|
|
55
55
|
$ as ChartTooltip,
|
|
56
56
|
aa as ChartTooltipContent,
|
|
57
57
|
sa as ChatCollapsibleCheck,
|
|
@@ -82,30 +82,30 @@ export {
|
|
|
82
82
|
ya as Container,
|
|
83
83
|
La as ContextualMenu,
|
|
84
84
|
Ka as CopyIcon,
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
85
|
+
ka as DataArrowsOutlined,
|
|
86
|
+
Ra as DatePickerInput,
|
|
87
|
+
Ea as DateRangePicker,
|
|
88
|
+
Ha as DeleteConfirmationModal,
|
|
89
|
+
wa as Divider,
|
|
90
90
|
Fa as DragAndDropListItem,
|
|
91
91
|
Wa as DraggableListRow,
|
|
92
92
|
xa as Drawer,
|
|
93
93
|
va as DropLayoutPicker,
|
|
94
|
-
|
|
95
|
-
|
|
94
|
+
Oa as DropLayoutPickerContent,
|
|
95
|
+
fa as DropLayoutPickerTrigger,
|
|
96
96
|
Na as DropMenu,
|
|
97
97
|
Va as DropModal,
|
|
98
98
|
Ua as DropModalBody,
|
|
99
99
|
Ga as DropModalClose,
|
|
100
100
|
za as DropModalContent,
|
|
101
101
|
ja as DropModalFooter,
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
Qa as DropModalFooterActions,
|
|
103
|
+
_a as DropModalHeader,
|
|
104
104
|
Xa as DropModalTitle,
|
|
105
105
|
Ya as DropModalTrigger,
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
106
|
+
Za as DropPlaceholder,
|
|
107
|
+
qa as DropSizePicker,
|
|
108
|
+
Ja as DropSizePickerContent,
|
|
109
109
|
$a as DropSizePickerTrigger,
|
|
110
110
|
as as DropZone,
|
|
111
111
|
ss as Dropdown,
|
|
@@ -136,30 +136,30 @@ export {
|
|
|
136
136
|
ys as InputSearch,
|
|
137
137
|
Ls as InvoiceCard,
|
|
138
138
|
Ks as KPIAutomationTrigger,
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
139
|
+
ks as KPIBarChart,
|
|
140
|
+
Rs as KPICard,
|
|
141
|
+
Es as KPIChart,
|
|
142
|
+
Hs as KPIDetailedMetric,
|
|
143
|
+
ws as KPIDonutChart,
|
|
144
144
|
Fs as KPIPieChart,
|
|
145
145
|
Ws as KPIPieMetrics,
|
|
146
146
|
xs as KPIProgressBar,
|
|
147
147
|
vs as KPIProgressCircle,
|
|
148
|
-
|
|
149
|
-
|
|
148
|
+
Os as KPIProgressHalfCircle,
|
|
149
|
+
fs as KPIProgressMetrics,
|
|
150
150
|
Ns as KPIQuickActionList,
|
|
151
151
|
Vs as KPIRadarMetrics,
|
|
152
152
|
Us as KPIRadialChart,
|
|
153
153
|
Gs as KPIRadialMetrics,
|
|
154
154
|
zs as KPISingleValue,
|
|
155
155
|
js as KPISingleValueAction,
|
|
156
|
-
|
|
157
|
-
|
|
156
|
+
Qs as KPISingleValueContent,
|
|
157
|
+
_s as KPISlider,
|
|
158
158
|
Xs as KPIValueBreakdown,
|
|
159
159
|
Ys as Kanban,
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
160
|
+
Zs as KanbanCard,
|
|
161
|
+
qs as KanbanColumn,
|
|
162
|
+
Js as Kbd,
|
|
163
163
|
$s as LAYOUT,
|
|
164
164
|
ae as LAYOUT_SPACING,
|
|
165
165
|
se as LabelIcon,
|
|
@@ -188,121 +188,124 @@ export {
|
|
|
188
188
|
Me as ModuleSummaryCard,
|
|
189
189
|
Be as MoreIcon,
|
|
190
190
|
ye as NAVBAR,
|
|
191
|
-
Le as
|
|
192
|
-
Ke as
|
|
191
|
+
Le as OptionsEditor,
|
|
192
|
+
Ke as PANEL_DEFAULTS,
|
|
193
|
+
ke as Panel,
|
|
193
194
|
Re as PanelHeader,
|
|
194
|
-
|
|
195
|
+
Ee as PanelLayout,
|
|
195
196
|
He as PanelMain,
|
|
196
197
|
we as PasswordResetWidget,
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
198
|
+
Fe as PlanPricingCard,
|
|
199
|
+
We as Planner,
|
|
200
|
+
xe as PlusCircleIcon,
|
|
201
|
+
ve as ProductIcon,
|
|
202
|
+
Oe as ProgrammingArrowsOutlined,
|
|
202
203
|
fe as Progress,
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
204
|
+
Ne as ProgressBar,
|
|
205
|
+
Ve as ProgressCircle,
|
|
206
|
+
Ue as ProgressTracker,
|
|
207
|
+
Ge as ProjectActionCard,
|
|
208
|
+
ze as ProjectCard,
|
|
209
|
+
je as ProjectCardPlan,
|
|
210
|
+
Qe as ProjectOverviewCard,
|
|
210
211
|
_e as QuestionCircle,
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
qe as
|
|
215
|
-
Je as
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
Ro as
|
|
247
|
-
|
|
248
|
-
Ho as
|
|
249
|
-
wo as
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
fo as
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
_o as
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
qo as
|
|
268
|
-
Jo as
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
Rr as
|
|
301
|
-
|
|
302
|
-
Hr as
|
|
303
|
-
wr as
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
212
|
+
Xe as QuickActions,
|
|
213
|
+
Ye as Radio,
|
|
214
|
+
Ze as RecoveryWidget,
|
|
215
|
+
qe as RelatedDataCard,
|
|
216
|
+
Je as RightArrowIcon,
|
|
217
|
+
$e as SIDEBAR,
|
|
218
|
+
ao as Section,
|
|
219
|
+
so as SectionFeatures,
|
|
220
|
+
eo as SectionHero,
|
|
221
|
+
oo as SelectableCard,
|
|
222
|
+
ro as SettingsCard,
|
|
223
|
+
to as ShareIcon,
|
|
224
|
+
no as Sidebar,
|
|
225
|
+
io as SkalarLogo,
|
|
226
|
+
lo as SkalarLogoNoText,
|
|
227
|
+
co as SlashIcon,
|
|
228
|
+
Co as SliderPointerDown,
|
|
229
|
+
bo as SliderPointerUp,
|
|
230
|
+
go as SliderThumbIcon,
|
|
231
|
+
uo as SplitPanelLayout,
|
|
232
|
+
po as Stepper,
|
|
233
|
+
Po as StraightInfoIcon,
|
|
234
|
+
Io as SupportCard,
|
|
235
|
+
To as Switcher,
|
|
236
|
+
mo as TabbedContainer,
|
|
237
|
+
Ao as Table,
|
|
238
|
+
ho as TableBody,
|
|
239
|
+
Do as TableCard,
|
|
240
|
+
So as TableCell,
|
|
241
|
+
Mo as TableColumnFilter,
|
|
242
|
+
Bo as TableColumnHeader,
|
|
243
|
+
yo as TableColumnVisibility,
|
|
244
|
+
Lo as TableEmptyState,
|
|
245
|
+
Ko as TableHeader,
|
|
246
|
+
ko as TableHeading,
|
|
247
|
+
Ro as TablePagination,
|
|
248
|
+
Eo as TableProvider,
|
|
249
|
+
Ho as TableRoot,
|
|
250
|
+
wo as TableRow,
|
|
251
|
+
Fo as Tabs,
|
|
252
|
+
Wo as Tag,
|
|
253
|
+
xo as TextArea,
|
|
254
|
+
vo as ThemeToggle,
|
|
255
|
+
Oo as ToastComponent,
|
|
256
|
+
fo as ToastProvider,
|
|
257
|
+
No as Toggle,
|
|
258
|
+
Vo as Tooltip,
|
|
259
|
+
Uo as TrashIcon,
|
|
260
|
+
Go as TypesPanel,
|
|
261
|
+
zo as TypesPanelBodyGrid,
|
|
262
|
+
jo as TypesPanelBodyList,
|
|
263
|
+
Qo as TypesPanelHeader,
|
|
264
|
+
_o as TypesPanelHeaderSearch,
|
|
265
|
+
Xo as UnionIcon,
|
|
266
|
+
Yo as UploadImageIcon,
|
|
267
|
+
Zo as UserMenu,
|
|
268
|
+
qo as VideoPlayOutlined,
|
|
269
|
+
Jo as VisualComposer,
|
|
270
|
+
$o as WidgetBuilderEdit,
|
|
271
|
+
ar as WidgetBuilderItemHoverAction,
|
|
272
|
+
sr as WidgetContainer,
|
|
273
|
+
er as WidgetPreview,
|
|
274
|
+
or as WidgetSidebar,
|
|
275
|
+
rr as WidgetSummaryCard,
|
|
276
|
+
tr as WorkspaceSettings,
|
|
277
|
+
nr as XMark,
|
|
278
|
+
ir as XMarkAlert,
|
|
279
|
+
dr as addSelectionColumn,
|
|
280
|
+
lr as calculateDraggedPanelPercentage,
|
|
281
|
+
cr as calculateHeaderWidths,
|
|
282
|
+
Cr as calculatePanelPercentage,
|
|
283
|
+
br as createMediaQuery,
|
|
284
|
+
gr as findPanelById,
|
|
285
|
+
ur as getCentralWidth,
|
|
286
|
+
pr as getCurrentBreakpoint,
|
|
287
|
+
Pr as getGapClass,
|
|
288
|
+
Ir as getTotalPanelsWidth,
|
|
289
|
+
Tr as getTotalSideWidth,
|
|
290
|
+
mr as initializePanelsState,
|
|
291
|
+
Ar as matchesBreakpoint,
|
|
292
|
+
hr as parseColumnConfig,
|
|
293
|
+
Dr as parseTableConfig,
|
|
294
|
+
Sr as productsApiResponse,
|
|
295
|
+
Mr as productsTableConfig,
|
|
296
|
+
Br as productsTableData,
|
|
297
|
+
yr as pxToCss,
|
|
298
|
+
Lr as pxToRem,
|
|
299
|
+
Kr as useChart,
|
|
300
|
+
kr as useContainerHeight,
|
|
301
|
+
Rr as useContainerWidth,
|
|
302
|
+
Er as usePanelState,
|
|
303
|
+
Hr as useSidebar,
|
|
304
|
+
wr as useTableContext,
|
|
305
|
+
Fr as useToast,
|
|
306
|
+
Wr as usersApiResponse,
|
|
307
|
+
xr as usersTableConfig,
|
|
308
|
+
vr as usersTableData,
|
|
309
|
+
Or as visualComposerCollision
|
|
307
310
|
};
|
|
308
311
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/** Una opción editable: `value` es la clave almacenada, `label` el texto que se muestra. */
|
|
2
|
+
export interface OptionItem {
|
|
3
|
+
value: string;
|
|
4
|
+
label: string;
|
|
5
|
+
}
|
|
6
|
+
export interface OptionsEditorProps {
|
|
7
|
+
/** Lista actual de opciones. */
|
|
8
|
+
options: OptionItem[];
|
|
9
|
+
/** Se emite la lista completa actualizada en cualquier alta/baja/edición. */
|
|
10
|
+
onChange: (options: OptionItem[]) => void;
|
|
11
|
+
/** Encabezado opcional sobre la lista. */
|
|
12
|
+
label?: string;
|
|
13
|
+
/** Texto del botón de añadir. */
|
|
14
|
+
addLabel?: string;
|
|
15
|
+
labelPlaceholder?: string;
|
|
16
|
+
valuePlaceholder?: string;
|
|
17
|
+
/** Texto cuando no hay opciones. */
|
|
18
|
+
emptyHint?: string;
|
|
19
|
+
disabled?: boolean;
|
|
20
|
+
className?: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Editor de una lista de opciones (`value`/`label`): añadir, editar y quitar filas. Compone
|
|
24
|
+
* `InputField` + `Button` del propio DS. Pensado para campos de selección (enum/multi-enum):
|
|
25
|
+
* el `value` es lo que se persiste/valida y el `label` lo que ve el usuario. Al salir del
|
|
26
|
+
* campo de etiqueta, si el `value` quedó vacío se rellena con la etiqueta (preserva valores
|
|
27
|
+
* existentes que difieran de su label).
|
|
28
|
+
*/
|
|
29
|
+
export declare const OptionsEditor: {
|
|
30
|
+
({ options, onChange, label, addLabel, labelPlaceholder, valuePlaceholder, emptyHint, disabled, className, }: OptionsEditorProps): import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
displayName: string;
|
|
32
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { OptionsEditor, type OptionsEditorProps, type OptionItem } from "./OptionsEditor";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface QuickAction {
|
|
3
|
+
id: string | number;
|
|
4
|
+
label: string;
|
|
5
|
+
icon?: React.ReactNode;
|
|
6
|
+
onClick?: () => void;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export interface QuickActionsProps {
|
|
10
|
+
/** List of action items to render as rows. */
|
|
11
|
+
actions: QuickAction[];
|
|
12
|
+
/** Removes border and rounded corners. */
|
|
13
|
+
borderless?: boolean;
|
|
14
|
+
/** Shows a loading skeleton. */
|
|
15
|
+
loading?: boolean;
|
|
16
|
+
className?: string;
|
|
17
|
+
}
|
|
18
|
+
export declare const QuickActions: ({ actions, borderless, loading, className, }: QuickActionsProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { QuickActions, type QuickActionsProps, type QuickAction } from './QuickActions';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface TabbedContainerTab {
|
|
3
|
+
id: string | number;
|
|
4
|
+
label: string;
|
|
5
|
+
content?: React.ReactNode;
|
|
6
|
+
}
|
|
7
|
+
export interface TabbedContainerProps {
|
|
8
|
+
tabs: TabbedContainerTab[];
|
|
9
|
+
/** Controlled active tab id — omit for uncontrolled */
|
|
10
|
+
activeTabId?: string | number;
|
|
11
|
+
onTabChange?: (id: string | number) => void;
|
|
12
|
+
/** Label for the empty-state add button. Defaults to "Add components". */
|
|
13
|
+
addLabel?: string;
|
|
14
|
+
/** Called with the active tab id when the add button is clicked in the empty state. */
|
|
15
|
+
onAddComponent?: (tabId: string | number) => void;
|
|
16
|
+
/** Removes the outer border and rounded corners — only the header bottom border remains. */
|
|
17
|
+
borderless?: boolean;
|
|
18
|
+
/** Stretches the component to fill its parent's height. */
|
|
19
|
+
fullHeight?: boolean;
|
|
20
|
+
/** When true, inactive tab panels are unmounted — prevents data fetches on hidden tabs. */
|
|
21
|
+
lazy?: boolean;
|
|
22
|
+
/** Shows a loading skeleton instead of content. */
|
|
23
|
+
loading?: boolean;
|
|
24
|
+
className?: string;
|
|
25
|
+
}
|
|
26
|
+
export declare const TabbedContainer: ({ tabs, activeTabId, onTabChange, addLabel, onAddComponent, borderless, fullHeight, lazy, loading, className, }: TabbedContainerProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TabbedContainer, type TabbedContainerProps, type TabbedContainerTab } from './TabbedContainer';
|
|
@@ -43,6 +43,8 @@ export interface TabsProps {
|
|
|
43
43
|
tabPaddingX?: number;
|
|
44
44
|
/** Optional custom classes for the tab list. */
|
|
45
45
|
tabListClassName?: string;
|
|
46
|
+
/** When true, inactive tab panels are unmounted instead of hidden. Useful when each tab fetches its own data. */
|
|
47
|
+
lazy?: boolean;
|
|
46
48
|
/** When true, 'line-icons' tabs collapse to icon-only (label as a native tooltip) whenever
|
|
47
49
|
* the labels don't fit the available width. Content-aware — works for any labels/usage. */
|
|
48
50
|
responsive?: boolean;
|
|
@@ -58,5 +60,5 @@ export interface TabsProps {
|
|
|
58
60
|
* @param {string} [className] - Optional CSS classes for additional styling on the main container.
|
|
59
61
|
* @returns {JSX.Element} The rendered Tabs element.
|
|
60
62
|
*/
|
|
61
|
-
export declare const Tabs: ({ variant, tabs, className, selectedIndex, onChange, customPaddingBottom, contentSpacing, fullHeight, iconLabelGap, iconSize, showBorder, headerHeight, tabPaddingX, tabListClassName, responsive, }: TabsProps) => import("react/jsx-runtime").JSX.Element;
|
|
63
|
+
export declare const Tabs: ({ variant, tabs, className, selectedIndex, onChange, customPaddingBottom, contentSpacing, fullHeight, iconLabelGap, iconSize, showBorder, headerHeight, tabPaddingX, tabListClassName, lazy, responsive, }: TabsProps) => import("react/jsx-runtime").JSX.Element;
|
|
62
64
|
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Field, ComponentTreeTab } from '../../types';
|
|
2
|
+
interface ComponentTreeFieldProps {
|
|
3
|
+
field: Field;
|
|
4
|
+
onChange: (value: ComponentTreeTab[]) => void;
|
|
5
|
+
onAction?: (action: string) => void;
|
|
6
|
+
}
|
|
7
|
+
export declare const ComponentTreeField: ({ field, onChange, onAction }: ComponentTreeFieldProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ComponentTreeField } from './ComponentTreeField';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Field, ModalListItem } from "../types";
|
|
2
|
+
interface ModalListFieldProps {
|
|
3
|
+
field: Field;
|
|
4
|
+
onChange: (value: ModalListItem[]) => void;
|
|
5
|
+
}
|
|
6
|
+
export declare const ModalListField: ({ field, onChange }: ModalListFieldProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|