@skalar-saas/design-system 0.2.5 → 0.2.7
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/design-system.css +1 -1
- package/dist/{index-ByK6rU3h.js → index-B2IzxskH.js} +2 -2
- package/dist/{index-ByK6rU3h.js.map → index-B2IzxskH.js.map} +1 -1
- package/dist/{index-CF9K3lSm.cjs → index-CD1GYA01.cjs} +2 -2
- package/dist/{index-CF9K3lSm.cjs.map → index-CD1GYA01.cjs.map} +1 -1
- package/dist/{index-D7xgKYfe.js → index-D091_u6k.js} +4878 -4631
- package/dist/index-D091_u6k.js.map +1 -0
- package/dist/{index-Cuv3OkSy.cjs → index-HJiwijPR.cjs} +39 -39
- package/dist/index-HJiwijPR.cjs.map +1 -0
- package/dist/index.d.ts +8 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +241 -237
- package/dist/shared/ui/CheckboxGroup/CheckboxGroup.d.ts +21 -0
- package/dist/shared/ui/CheckboxGroup/index.d.ts +2 -0
- package/dist/shared/ui/DropSizePicker/DropSizePicker.d.ts +16 -1
- package/dist/shared/ui/DropSizePicker/index.d.ts +2 -2
- package/dist/shared/ui/LinkGroup/LinkGroup.d.ts +28 -0
- package/dist/shared/ui/LinkGroup/index.d.ts +2 -0
- package/dist/shared/ui/ToggleGroup/ToggleGroup.d.ts +19 -0
- package/dist/shared/ui/ToggleGroup/index.d.ts +2 -0
- package/package.json +1 -1
- package/dist/index-Cuv3OkSy.cjs.map +0 -1
- package/dist/index-D7xgKYfe.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -32,6 +32,8 @@ export { ChatTypingIndicator, type ChatTypingIndicatorProps } from './shared/ui/
|
|
|
32
32
|
export { ChatLayout } from './shared/ui/ChatLayout';
|
|
33
33
|
export type { ChatLayoutProps, ChatLayoutConversation } from './shared/ui/ChatLayout';
|
|
34
34
|
export { Checkbox } from './shared/ui/Checkbox/Checkbox';
|
|
35
|
+
export { CheckboxGroup } from './shared/ui/CheckboxGroup/CheckboxGroup';
|
|
36
|
+
export type { CheckboxGroupProps, CheckboxGroupOption } from './shared/ui/CheckboxGroup/CheckboxGroup';
|
|
35
37
|
export { Chip } from './shared/ui/Chip/Chip';
|
|
36
38
|
export { ColorPalette } from './shared/ui/ColorPalette/ColorPalette';
|
|
37
39
|
export { ColumnHandler, type ColumnHandlerProps } from './shared/ui/ColumnHandler/ColumnHandler';
|
|
@@ -64,6 +66,8 @@ export { OptionsEditor, type OptionsEditorProps, type OptionItem } from './share
|
|
|
64
66
|
export { LabelWithIcon } from './shared/ui/LabelWithIcon/LabelWithIcon';
|
|
65
67
|
export { LabelWithTooltip, type LabelWithTooltipProps } from './shared/ui/LabelWithTooltip/LabelWithTooltip';
|
|
66
68
|
export { Link, type LinkProps } from './shared/ui/Link/Link';
|
|
69
|
+
export { LinkGroup } from './shared/ui/LinkGroup/LinkGroup';
|
|
70
|
+
export type { LinkGroupProps, LinkGroupItem } from './shared/ui/LinkGroup/LinkGroup';
|
|
67
71
|
export * from './shared/ui/Modal/Modal';
|
|
68
72
|
export * from './shared/ui/DeleteConfirmationModal';
|
|
69
73
|
export { Drawer } from './shared/ui/Drawer';
|
|
@@ -95,6 +99,8 @@ export { ThemeToggle, type ThemeToggleProps } from './shared/ui/ThemeToggle/Them
|
|
|
95
99
|
export * from './shared/ui/Toast/Toast';
|
|
96
100
|
export { Tooltip, type TooltipProps, type TooltipSide, type TooltipButtonConfig } from './shared/ui/Tooltip/Tooltip';
|
|
97
101
|
export { Toggle } from './shared/ui/Toggle/Toggle';
|
|
102
|
+
export { ToggleGroup } from './shared/ui/ToggleGroup/ToggleGroup';
|
|
103
|
+
export type { ToggleGroupProps, ToggleGroupOption } from './shared/ui/ToggleGroup/ToggleGroup';
|
|
98
104
|
export { TypesPanel, type TypesPanelProps } from './shared/ui/TypesPanel';
|
|
99
105
|
export { TypesPanelBodyGrid, type TypesPanelBodyGridProps } from './shared/ui/TypesPanelBodyGrid';
|
|
100
106
|
export { TypesPanelBodyList, type TypesPanelBodyListProps } from './shared/ui/TypesPanelBodyList';
|
|
@@ -141,8 +147,8 @@ export { DropMenu } from './shared/ui/DropMenu/DropMenu';
|
|
|
141
147
|
export type { DropMenuProps, DropMenuItemProps, DropMenuSize } from './shared/ui/DropMenu/DropMenu';
|
|
142
148
|
export { DropModal, DropModalTrigger, DropModalContent, DropModalHeader, DropModalTitle, DropModalBody, DropModalFooter, DropModalFooterActions, DropModalClose, } from './shared/ui/DropModal/DropModal';
|
|
143
149
|
export type { DropModalSize, DropModalFooterButtonConfig } from './shared/ui/DropModal/DropModal';
|
|
144
|
-
export { DropSizePicker, DropSizePickerTrigger, DropSizePickerContent, } from './shared/ui/DropSizePicker/DropSizePicker';
|
|
145
|
-
export type { DropSizePickerProps, SizeValue } from './shared/ui/DropSizePicker/DropSizePicker';
|
|
150
|
+
export { DropSizePicker, DropSizePickerTrigger, DropSizePickerContent, SizePicker, } from './shared/ui/DropSizePicker/DropSizePicker';
|
|
151
|
+
export type { DropSizePickerProps, SizePickerProps, SizeValue } from './shared/ui/DropSizePicker/DropSizePicker';
|
|
146
152
|
export { DropLayoutPicker, DropLayoutPickerTrigger, DropLayoutPickerContent, } from './shared/ui/DropLayoutPicker/DropLayoutPicker';
|
|
147
153
|
export type { DropLayoutPickerProps, LayoutValue } from './shared/ui/DropLayoutPicker/DropLayoutPicker';
|
|
148
154
|
export { WidgetContainer } from './shared/ui/WidgetContainer/WidgetContainer';
|
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-Cuv3OkSy.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;
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-HJiwijPR.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.CheckboxGroup=e.CheckboxGroup;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.LinkGroup=e.LinkGroup;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.SizePicker=e.SizePicker;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.ToggleGroup=e.ToggleGroup;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,12 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
2
|
+
import { b_ as e, ch as o, aH as r, c4 as t, bY as i, cF as n, cM as d, cN as l, cH as c, cK as C, cL as b, cI as g, cJ as u, cG as p, bS as P, bR as I, b$ as T, bD as m, bw as A, by as h, bt as D, bx as S, A as M, D as B, B as L, E as y, cc as k, c1 as K, c2 as R, cO as E, cU as H, cQ as w, cR as F, cP as W, cS as x, cT as v, F as O, cV as f, G, dV as N, c as V, d as U, f as z, cp as _, cz as j, H as Q, b7 as X, dD as Y, dB as Z, dH as q, dF as J, dG as $, dE as aa, I as sa, J as ea, K as oa, M as ra, O as ta, Q as ia, R as na, T as da, bZ as la, U as ca, Z as Ca, V as ba, W as ga, X as ua, Y as pa, _ as Pa, $ as Ia, ct as Ta, cu as ma, a0 as Aa, c3 as ha, a1 as Da, a2 as Sa, a3 as Ma, a4 as Ba, bM as La, C as ya, cW as ka, cC as Ka, cg as Ra, bK as Ea, aW as Ha, d5 as wa, aY as Fa, a5 as Wa, bG as xa, aw as va, bp as Oa, br as fa, bq as Ga, bb as Na, bc as Va, bh as Ua, bk as za, be as _a, bi as ja, bj as Qa, bf as Xa, bg as Ya, bd as Za, a9 as qa, bl as Ja, bn as $a, bm as as, a8 as ss, a6 as es, a7 as os, cB as rs, ac as ts, aa as is, ab as ns, bN as ds, bO as ls, bP as cs, cq as Cs, cr as bs, bL as gs, c0 as us, cy as ps, ad as Ps, ah as Is, b8 as Ts, ae as ms, af as As, aJ as hs, ai as Ds, aj as Ss, c7 as Ms, ak as Bs, al as Ls, am as ys, bF as ks, dO as Ks, e0 as Rs, dI as Es, e1 as Hs, dN as ws, dW as Fs, dX as Ws, dY as xs, dP as vs, dQ as Os, dR as fs, dS as Gs, dU as Ns, d$ as Vs, dZ as Us, d_ as zs, dK as _s, dL as js, dJ as Qs, dT as Xs, dM as Ys, bT as Zs, bV as qs, bU as Js, an as $s, h as ae, L as se, aX as ee, as as oe, at as re, cx as te, c8 as ie, au as ne, av as de, aq as le, bJ as ce, cA as Ce, cd as be, cX as ge, d1 as ue, d4 as pe, cZ as Pe, d0 as Ie, d2 as Te, d3 as me, c_ as Ae, c$ as he, cY as De, bz as Se, bA as Me, bB as Be, b1 as Le, cw as ye, N as ke, ar as Ke, x as Re, l as Ee, aV as He, P as we, n as Fe, bv as We, d6 as xe, bQ as ve, cs as Oe, ax as fe, cf as Ge, az as Ne, aA as Ve, aB as Ue, aC as ze, b4 as _e, ay as je, aZ as Qe, b0 as Xe, cb as Ye, aD as Ze, aE as qe, bu as Je, bC as $e, co as ao, e as so, S as eo, b as oo, a as ro, aF as to, b5 as io, ci as no, ao as lo, bo as co, cm as Co, cn as bo, cE as go, cl as uo, ck as po, cj as Po, y as Io, aG as To, ca as mo, a$ as Ao, d7 as ho, aI as Do, d8 as So, db as Mo, b6 as Bo, dd as Lo, dk as yo, de as ko, dl as Ko, df as Ro, da as Eo, dj as Ho, di as wo, dg as Fo, d9 as Wo, dc as xo, dw as vo, aK as Oo, aL as fo, aM as Go, dx as No, dz as Vo, aO as Uo, aP as zo, aN as _o, cD as jo, aQ as Qo, aR as Xo, aS as Yo, aT as Zo, aU as qo, cv as Jo, c6 as $o, dA as ar, ce as sr, b9 as er, bH as or, b3 as rr, bs as tr, bI as ir, bE as nr, b2 as dr, a_ as lr, c5 as cr, c9 as Cr, dp as br, q as gr, ag as ur, o as pr, j as Pr, t as Ir, v as Tr, k as mr, z as Ar, s as hr, r as Dr, w as Sr, m as Mr, dn as Br, dm as Lr, dv as yr, dt as kr, du as Kr, i as Rr, p as Er, dC as Hr, bX as wr, bW as Fr, u as Wr, ap as xr, dh as vr, dy as Or, ds as fr, dq as Gr, dr as Nr, ba as Vr } from "./index-D091_u6k.js";
|
|
3
3
|
export {
|
|
4
4
|
e as AICommentaryIcon,
|
|
5
5
|
o as AIMessage,
|
|
6
6
|
r as ActivityFeed,
|
|
7
7
|
t as AddIcon,
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
i as AlertCallout,
|
|
9
|
+
n as AlertDialog,
|
|
10
10
|
d as AlertDialogAction,
|
|
11
11
|
l as AlertDialogCancel,
|
|
12
12
|
c as AlertDialogContent,
|
|
@@ -25,10 +25,10 @@ export {
|
|
|
25
25
|
S as AuthSocialOptionsWidget,
|
|
26
26
|
M as Avatar,
|
|
27
27
|
B as AvatarGroup,
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
L as BREAKPOINTS,
|
|
29
|
+
y as Badge,
|
|
30
|
+
k as BookOutlined,
|
|
31
|
+
K as Box2Icon,
|
|
32
32
|
R as BoxIcon,
|
|
33
33
|
E as Breadcrumb,
|
|
34
34
|
H as BreadcrumbEllipsis,
|
|
@@ -39,14 +39,14 @@ export {
|
|
|
39
39
|
v as BreadcrumbSeparator,
|
|
40
40
|
O as Button,
|
|
41
41
|
f as ButtonDropdown,
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
G as ButtonGroup,
|
|
43
|
+
N as CHART_PALETTE,
|
|
44
|
+
V as CONTAINER,
|
|
45
|
+
U as CONTAINER_PADDING,
|
|
46
46
|
z as CSS_VARIABLES,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
_ as CalendarIcon,
|
|
48
|
+
j as CalendarIcon2,
|
|
49
|
+
Q as Card,
|
|
50
50
|
X as CardAction,
|
|
51
51
|
Y as ChartContainer,
|
|
52
52
|
Z as ChartContext,
|
|
@@ -59,8 +59,8 @@ export {
|
|
|
59
59
|
oa as ChatCollapsibleDialog,
|
|
60
60
|
ra as ChatCommandList,
|
|
61
61
|
ta as ChatCommandListItem,
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
ia as ChatHeader,
|
|
63
|
+
na as ChatHistorial,
|
|
64
64
|
da as ChatHistorialItemComponent,
|
|
65
65
|
la as ChatIcon,
|
|
66
66
|
ca as ChatInputText,
|
|
@@ -70,242 +70,246 @@ export {
|
|
|
70
70
|
ua as ChatPanel,
|
|
71
71
|
pa as ChatTypingIndicator,
|
|
72
72
|
Pa as Checkbox,
|
|
73
|
-
Ia as
|
|
74
|
-
Ta as
|
|
75
|
-
ma as
|
|
76
|
-
Aa as
|
|
77
|
-
ha as
|
|
78
|
-
Da as
|
|
79
|
-
Sa as
|
|
80
|
-
Ma as
|
|
81
|
-
Ba as
|
|
73
|
+
Ia as CheckboxGroup,
|
|
74
|
+
Ta as ChevronDownIcon,
|
|
75
|
+
ma as ChevronUpIcon,
|
|
76
|
+
Aa as Chip,
|
|
77
|
+
ha as CircleIcon,
|
|
78
|
+
Da as ColorPalette,
|
|
79
|
+
Sa as ColumnHandler,
|
|
80
|
+
Ma as ColumnHeader,
|
|
81
|
+
Ba as ComboBox,
|
|
82
|
+
La as ConditionalBuilder,
|
|
82
83
|
ya as Container,
|
|
83
|
-
|
|
84
|
+
ka as ContextualMenu,
|
|
84
85
|
Ka as CopyIcon,
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
86
|
+
Ra as DataArrowsOutlined,
|
|
87
|
+
Ea as DatePickerInput,
|
|
88
|
+
Ha as DateRangePicker,
|
|
89
|
+
wa as DeleteConfirmationModal,
|
|
90
|
+
Fa as Divider,
|
|
91
|
+
Wa as DragAndDropListItem,
|
|
92
|
+
xa as DraggableListRow,
|
|
93
|
+
va as Drawer,
|
|
94
|
+
Oa as DropLayoutPicker,
|
|
95
|
+
fa as DropLayoutPickerContent,
|
|
96
|
+
Ga as DropLayoutPickerTrigger,
|
|
96
97
|
Na as DropMenu,
|
|
97
98
|
Va as DropModal,
|
|
98
99
|
Ua as DropModalBody,
|
|
99
|
-
|
|
100
|
-
|
|
100
|
+
za as DropModalClose,
|
|
101
|
+
_a as DropModalContent,
|
|
101
102
|
ja as DropModalFooter,
|
|
102
103
|
Qa as DropModalFooterActions,
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
104
|
+
Xa as DropModalHeader,
|
|
105
|
+
Ya as DropModalTitle,
|
|
106
|
+
Za as DropModalTrigger,
|
|
107
|
+
qa as DropPlaceholder,
|
|
108
|
+
Ja as DropSizePicker,
|
|
109
|
+
$a as DropSizePickerContent,
|
|
110
|
+
as as DropSizePickerTrigger,
|
|
111
|
+
ss as DropZone,
|
|
112
|
+
es as Dropdown,
|
|
113
|
+
os as DropdownMenu,
|
|
114
|
+
rs as Edit2Icon,
|
|
115
|
+
ts as EmptyState,
|
|
116
|
+
is as ErrorBoundary,
|
|
116
117
|
ns as ErrorState,
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
118
|
+
ds as ExpressionCard,
|
|
119
|
+
ls as ExpressionPanel,
|
|
120
|
+
cs as ExpressionPanelDivider,
|
|
121
|
+
Cs as EyeIcon,
|
|
122
|
+
bs as EyeOffIcon,
|
|
123
|
+
gs as FilterConditionRow,
|
|
124
|
+
us as FilterFunnel02Icon,
|
|
125
|
+
ps as FlashIcon,
|
|
126
|
+
Ps as FloatingBar,
|
|
127
|
+
Is as Footer,
|
|
128
|
+
Ts as FormFieldGroup,
|
|
129
|
+
ms as GridDraggableItem,
|
|
130
|
+
As as Header,
|
|
131
|
+
hs as HeaderTabs,
|
|
132
|
+
Ds as Icon,
|
|
133
|
+
Ss as ImageUploader,
|
|
134
|
+
Ms as InfoIcon,
|
|
135
|
+
Bs as InfoLabel,
|
|
136
|
+
Ls as InputField,
|
|
136
137
|
ys as InputSearch,
|
|
137
|
-
|
|
138
|
+
ks as InvoiceCard,
|
|
138
139
|
Ks as KPIAutomationTrigger,
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
140
|
+
Rs as KPIBarChart,
|
|
141
|
+
Es as KPICard,
|
|
142
|
+
Hs as KPIChart,
|
|
143
|
+
ws as KPIDetailedMetric,
|
|
144
|
+
Fs as KPIDonutChart,
|
|
145
|
+
Ws as KPIPieChart,
|
|
146
|
+
xs as KPIPieMetrics,
|
|
147
|
+
vs as KPIProgressBar,
|
|
148
|
+
Os as KPIProgressCircle,
|
|
149
|
+
fs as KPIProgressHalfCircle,
|
|
150
|
+
Gs as KPIProgressMetrics,
|
|
150
151
|
Ns as KPIQuickActionList,
|
|
151
152
|
Vs as KPIRadarMetrics,
|
|
152
153
|
Us as KPIRadialChart,
|
|
153
|
-
|
|
154
|
-
|
|
154
|
+
zs as KPIRadialMetrics,
|
|
155
|
+
_s as KPISingleValue,
|
|
155
156
|
js as KPISingleValueAction,
|
|
156
157
|
Qs as KPISingleValueContent,
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
158
|
+
Xs as KPISlider,
|
|
159
|
+
Ys as KPIValueBreakdown,
|
|
160
|
+
Zs as Kanban,
|
|
161
|
+
qs as KanbanCard,
|
|
162
|
+
Js as KanbanColumn,
|
|
163
|
+
$s as Kbd,
|
|
164
|
+
ae as LAYOUT,
|
|
165
|
+
se as LAYOUT_SPACING,
|
|
166
|
+
ee as LabelIcon,
|
|
167
|
+
oe as LabelWithIcon,
|
|
168
|
+
re as LabelWithTooltip,
|
|
169
|
+
te as LayerIcon,
|
|
170
|
+
ie as LeftArrowIcon,
|
|
170
171
|
ne as Link,
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
ye as
|
|
191
|
-
|
|
192
|
-
Ke as
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
Ne as
|
|
205
|
-
Ve as
|
|
206
|
-
Ue as
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
je as
|
|
210
|
-
Qe as
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
no as
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
yo as
|
|
244
|
-
|
|
245
|
-
Ko as
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
No as
|
|
258
|
-
Vo as
|
|
259
|
-
Uo as
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
jo as
|
|
263
|
-
Qo as
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
nr as
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
yr as
|
|
298
|
-
|
|
299
|
-
Kr as
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
172
|
+
de as LinkGroup,
|
|
173
|
+
le as ListItem,
|
|
174
|
+
ce as LogicOperatorConnector,
|
|
175
|
+
Ce as MaximizeIcon,
|
|
176
|
+
be as MessageProgrammingOutlined,
|
|
177
|
+
ge as Modal,
|
|
178
|
+
ue as ModalBody,
|
|
179
|
+
pe as ModalClose,
|
|
180
|
+
Pe as ModalContent,
|
|
181
|
+
Ie as ModalDescription,
|
|
182
|
+
Te as ModalFooter,
|
|
183
|
+
me as ModalFooterActions,
|
|
184
|
+
Ae as ModalHeader,
|
|
185
|
+
he as ModalTitle,
|
|
186
|
+
De as ModalTrigger,
|
|
187
|
+
Se as ModuleCard,
|
|
188
|
+
Me as ModuleCardHeader,
|
|
189
|
+
Be as ModuleFieldItem,
|
|
190
|
+
Le as ModuleSummaryCard,
|
|
191
|
+
ye as MoreIcon,
|
|
192
|
+
ke as NAVBAR,
|
|
193
|
+
Ke as OptionsEditor,
|
|
194
|
+
Re as PANEL_DEFAULTS,
|
|
195
|
+
Ee as Panel,
|
|
196
|
+
He as PanelHeader,
|
|
197
|
+
we as PanelLayout,
|
|
198
|
+
Fe as PanelMain,
|
|
199
|
+
We as PasswordResetWidget,
|
|
200
|
+
xe as PlanPricingCard,
|
|
201
|
+
ve as Planner,
|
|
202
|
+
Oe as PlusCircleIcon,
|
|
203
|
+
fe as ProductIcon,
|
|
204
|
+
Ge as ProgrammingArrowsOutlined,
|
|
205
|
+
Ne as Progress,
|
|
206
|
+
Ve as ProgressBar,
|
|
207
|
+
Ue as ProgressCircle,
|
|
208
|
+
ze as ProgressTracker,
|
|
209
|
+
_e as ProjectActionCard,
|
|
210
|
+
je as ProjectCard,
|
|
211
|
+
Qe as ProjectCardPlan,
|
|
212
|
+
Xe as ProjectOverviewCard,
|
|
213
|
+
Ye as QuestionCircle,
|
|
214
|
+
Ze as QuickActions,
|
|
215
|
+
qe as Radio,
|
|
216
|
+
Je as RecoveryWidget,
|
|
217
|
+
$e as RelatedDataCard,
|
|
218
|
+
ao as RightArrowIcon,
|
|
219
|
+
so as SIDEBAR,
|
|
220
|
+
eo as Section,
|
|
221
|
+
oo as SectionFeatures,
|
|
222
|
+
ro as SectionHero,
|
|
223
|
+
to as SelectableCard,
|
|
224
|
+
io as SettingsCard,
|
|
225
|
+
no as ShareIcon,
|
|
226
|
+
lo as Sidebar,
|
|
227
|
+
co as SizePicker,
|
|
228
|
+
Co as SkalarLogo,
|
|
229
|
+
bo as SkalarLogoNoText,
|
|
230
|
+
go as SlashIcon,
|
|
231
|
+
uo as SliderPointerDown,
|
|
232
|
+
po as SliderPointerUp,
|
|
233
|
+
Po as SliderThumbIcon,
|
|
234
|
+
Io as SplitPanelLayout,
|
|
235
|
+
To as Stepper,
|
|
236
|
+
mo as StraightInfoIcon,
|
|
237
|
+
Ao as SupportCard,
|
|
238
|
+
ho as Switcher,
|
|
239
|
+
Do as TabbedContainer,
|
|
240
|
+
So as Table,
|
|
241
|
+
Mo as TableBody,
|
|
242
|
+
Bo as TableCard,
|
|
243
|
+
Lo as TableCell,
|
|
244
|
+
yo as TableColumnFilter,
|
|
245
|
+
ko as TableColumnHeader,
|
|
246
|
+
Ko as TableColumnVisibility,
|
|
247
|
+
Ro as TableEmptyState,
|
|
248
|
+
Eo as TableHeader,
|
|
249
|
+
Ho as TableHeading,
|
|
250
|
+
wo as TablePagination,
|
|
251
|
+
Fo as TableProvider,
|
|
252
|
+
Wo as TableRoot,
|
|
253
|
+
xo as TableRow,
|
|
254
|
+
vo as Tabs,
|
|
255
|
+
Oo as Tag,
|
|
256
|
+
fo as TextArea,
|
|
257
|
+
Go as ThemeToggle,
|
|
258
|
+
No as ToastComponent,
|
|
259
|
+
Vo as ToastProvider,
|
|
260
|
+
Uo as Toggle,
|
|
261
|
+
zo as ToggleGroup,
|
|
262
|
+
_o as Tooltip,
|
|
263
|
+
jo as TrashIcon,
|
|
264
|
+
Qo as TypesPanel,
|
|
265
|
+
Xo as TypesPanelBodyGrid,
|
|
266
|
+
Yo as TypesPanelBodyList,
|
|
267
|
+
Zo as TypesPanelHeader,
|
|
268
|
+
qo as TypesPanelHeaderSearch,
|
|
269
|
+
Jo as UnionIcon,
|
|
270
|
+
$o as UploadImageIcon,
|
|
271
|
+
ar as UserMenu,
|
|
272
|
+
sr as VideoPlayOutlined,
|
|
273
|
+
er as VisualComposer,
|
|
274
|
+
or as WidgetBuilderEdit,
|
|
275
|
+
rr as WidgetBuilderItemHoverAction,
|
|
276
|
+
tr as WidgetContainer,
|
|
277
|
+
ir as WidgetPreview,
|
|
278
|
+
nr as WidgetSidebar,
|
|
279
|
+
dr as WidgetSummaryCard,
|
|
280
|
+
lr as WorkspaceSettings,
|
|
281
|
+
cr as XMark,
|
|
282
|
+
Cr as XMarkAlert,
|
|
283
|
+
br as addSelectionColumn,
|
|
284
|
+
gr as calculateDraggedPanelPercentage,
|
|
285
|
+
ur as calculateHeaderWidths,
|
|
286
|
+
pr as calculatePanelPercentage,
|
|
287
|
+
Pr as createMediaQuery,
|
|
288
|
+
Ir as findPanelById,
|
|
289
|
+
Tr as getCentralWidth,
|
|
290
|
+
mr as getCurrentBreakpoint,
|
|
291
|
+
Ar as getGapClass,
|
|
292
|
+
hr as getTotalPanelsWidth,
|
|
293
|
+
Dr as getTotalSideWidth,
|
|
294
|
+
Sr as initializePanelsState,
|
|
295
|
+
Mr as matchesBreakpoint,
|
|
296
|
+
Br as parseColumnConfig,
|
|
297
|
+
Lr as parseTableConfig,
|
|
298
|
+
yr as productsApiResponse,
|
|
299
|
+
kr as productsTableConfig,
|
|
300
|
+
Kr as productsTableData,
|
|
301
|
+
Rr as pxToCss,
|
|
302
|
+
Er as pxToRem,
|
|
303
|
+
Hr as useChart,
|
|
304
|
+
wr as useContainerHeight,
|
|
305
|
+
Fr as useContainerWidth,
|
|
306
|
+
Wr as usePanelState,
|
|
307
|
+
xr as useSidebar,
|
|
308
|
+
vr as useTableContext,
|
|
309
|
+
Or as useToast,
|
|
310
|
+
fr as usersApiResponse,
|
|
311
|
+
Gr as usersTableConfig,
|
|
312
|
+
Nr as usersTableData,
|
|
313
|
+
Vr as visualComposerCollision
|
|
310
314
|
};
|
|
311
315
|
//# sourceMappingURL=index.mjs.map
|