@geomak/ui 5.5.1 → 5.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +23 -47
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -30
- package/dist/index.d.ts +11 -30
- package/dist/index.js +23 -46
- package/dist/index.js.map +1 -1
- package/dist/styles.css +13 -45
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -788,34 +788,6 @@ interface TreeProps {
|
|
|
788
788
|
*/
|
|
789
789
|
declare function Tree({ nodes, onNodeClick, defaultExpandAll, defaultExpandedKeys, }: TreeProps): react_jsx_runtime.JSX.Element;
|
|
790
790
|
|
|
791
|
-
interface ToggleItem {
|
|
792
|
-
key: string;
|
|
793
|
-
label?: React$1.ReactNode;
|
|
794
|
-
icon?: React$1.ReactNode;
|
|
795
|
-
}
|
|
796
|
-
interface ToggleButtonProps {
|
|
797
|
-
items: ToggleItem[];
|
|
798
|
-
onChange: (key: string) => void;
|
|
799
|
-
activeKey: string;
|
|
800
|
-
}
|
|
801
|
-
/**
|
|
802
|
-
* Segmented toggle-button group powered by Radix ToggleGroup.
|
|
803
|
-
*
|
|
804
|
-
* Radix handles keyboard navigation (arrow keys), focus ring, and
|
|
805
|
-
* `role="group"` / `aria-pressed` ARIA attributes.
|
|
806
|
-
*
|
|
807
|
-
* @example
|
|
808
|
-
* <ToggleButton
|
|
809
|
-
* items={[
|
|
810
|
-
* { key: 'grid', icon: <Icon.Grid /> },
|
|
811
|
-
* { key: 'list', icon: <Icon.List /> },
|
|
812
|
-
* ]}
|
|
813
|
-
* activeKey={view}
|
|
814
|
-
* onChange={setView}
|
|
815
|
-
* />
|
|
816
|
-
*/
|
|
817
|
-
declare function ToggleButton({ items, onChange, activeKey }: ToggleButtonProps): react_jsx_runtime.JSX.Element;
|
|
818
|
-
|
|
819
791
|
/** ─────────────────── types ─────────────────── */
|
|
820
792
|
type NotificationType = 'info' | 'success' | 'warning' | 'danger';
|
|
821
793
|
type NotificationPosition = 'top-right' | 'top-left' | 'top-center' | 'bottom-right' | 'bottom-left' | 'bottom-center';
|
|
@@ -1032,6 +1004,15 @@ interface ScalableContainerProps {
|
|
|
1032
1004
|
width?: React$1.CSSProperties['width'];
|
|
1033
1005
|
/** Resting height. Any CSS length / percent. Default `'auto'`. */
|
|
1034
1006
|
height?: React$1.CSSProperties['height'];
|
|
1007
|
+
/** Width when expanded. Default `'100%'` (fills parent). */
|
|
1008
|
+
expandedWidth?: React$1.CSSProperties['width'];
|
|
1009
|
+
/** Height when expanded. Default `'100%'`. Set a concrete value (e.g. 420)
|
|
1010
|
+
* when the container lives in normal flow and should push siblings down. */
|
|
1011
|
+
expandedHeight?: React$1.CSSProperties['height'];
|
|
1012
|
+
/** Controlled expanded state. */
|
|
1013
|
+
expanded?: boolean;
|
|
1014
|
+
/** Fires when the user toggles. */
|
|
1015
|
+
onExpandedChange?: (expanded: boolean) => void;
|
|
1035
1016
|
/** Content to render inside. */
|
|
1036
1017
|
children?: React$1.ReactNode;
|
|
1037
1018
|
/** CSS class appended to the expanded children wrapper. */
|
|
@@ -1071,7 +1052,7 @@ interface ScalableContainerProps {
|
|
|
1071
1052
|
* </ScalableContainer>
|
|
1072
1053
|
* ```
|
|
1073
1054
|
*/
|
|
1074
|
-
declare function ScalableContainer({ width, height, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
1055
|
+
declare function ScalableContainer({ width, height, expandedWidth, expandedHeight, expanded, onExpandedChange, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
1075
1056
|
|
|
1076
1057
|
interface GridCardItem {
|
|
1077
1058
|
key: string | number;
|
|
@@ -2929,4 +2910,4 @@ interface ColorPickerProps {
|
|
|
2929
2910
|
*/
|
|
2930
2911
|
declare function ColorPicker({ value, onChange, label, htmlFor, name, layout, size, swatches, allowCustom, disabled, errorMessage, required, placeholder, }: ColorPickerProps): react_jsx_runtime.JSX.Element;
|
|
2931
2912
|
|
|
2932
|
-
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldProps, type FieldShellOptions, type FieldSize, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps,
|
|
2913
|
+
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldProps, type FieldShellOptions, type FieldSize, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, Wizard, type WizardProps, type WizardStep, fieldShell, useNotification };
|
package/dist/index.d.ts
CHANGED
|
@@ -788,34 +788,6 @@ interface TreeProps {
|
|
|
788
788
|
*/
|
|
789
789
|
declare function Tree({ nodes, onNodeClick, defaultExpandAll, defaultExpandedKeys, }: TreeProps): react_jsx_runtime.JSX.Element;
|
|
790
790
|
|
|
791
|
-
interface ToggleItem {
|
|
792
|
-
key: string;
|
|
793
|
-
label?: React$1.ReactNode;
|
|
794
|
-
icon?: React$1.ReactNode;
|
|
795
|
-
}
|
|
796
|
-
interface ToggleButtonProps {
|
|
797
|
-
items: ToggleItem[];
|
|
798
|
-
onChange: (key: string) => void;
|
|
799
|
-
activeKey: string;
|
|
800
|
-
}
|
|
801
|
-
/**
|
|
802
|
-
* Segmented toggle-button group powered by Radix ToggleGroup.
|
|
803
|
-
*
|
|
804
|
-
* Radix handles keyboard navigation (arrow keys), focus ring, and
|
|
805
|
-
* `role="group"` / `aria-pressed` ARIA attributes.
|
|
806
|
-
*
|
|
807
|
-
* @example
|
|
808
|
-
* <ToggleButton
|
|
809
|
-
* items={[
|
|
810
|
-
* { key: 'grid', icon: <Icon.Grid /> },
|
|
811
|
-
* { key: 'list', icon: <Icon.List /> },
|
|
812
|
-
* ]}
|
|
813
|
-
* activeKey={view}
|
|
814
|
-
* onChange={setView}
|
|
815
|
-
* />
|
|
816
|
-
*/
|
|
817
|
-
declare function ToggleButton({ items, onChange, activeKey }: ToggleButtonProps): react_jsx_runtime.JSX.Element;
|
|
818
|
-
|
|
819
791
|
/** ─────────────────── types ─────────────────── */
|
|
820
792
|
type NotificationType = 'info' | 'success' | 'warning' | 'danger';
|
|
821
793
|
type NotificationPosition = 'top-right' | 'top-left' | 'top-center' | 'bottom-right' | 'bottom-left' | 'bottom-center';
|
|
@@ -1032,6 +1004,15 @@ interface ScalableContainerProps {
|
|
|
1032
1004
|
width?: React$1.CSSProperties['width'];
|
|
1033
1005
|
/** Resting height. Any CSS length / percent. Default `'auto'`. */
|
|
1034
1006
|
height?: React$1.CSSProperties['height'];
|
|
1007
|
+
/** Width when expanded. Default `'100%'` (fills parent). */
|
|
1008
|
+
expandedWidth?: React$1.CSSProperties['width'];
|
|
1009
|
+
/** Height when expanded. Default `'100%'`. Set a concrete value (e.g. 420)
|
|
1010
|
+
* when the container lives in normal flow and should push siblings down. */
|
|
1011
|
+
expandedHeight?: React$1.CSSProperties['height'];
|
|
1012
|
+
/** Controlled expanded state. */
|
|
1013
|
+
expanded?: boolean;
|
|
1014
|
+
/** Fires when the user toggles. */
|
|
1015
|
+
onExpandedChange?: (expanded: boolean) => void;
|
|
1035
1016
|
/** Content to render inside. */
|
|
1036
1017
|
children?: React$1.ReactNode;
|
|
1037
1018
|
/** CSS class appended to the expanded children wrapper. */
|
|
@@ -1071,7 +1052,7 @@ interface ScalableContainerProps {
|
|
|
1071
1052
|
* </ScalableContainer>
|
|
1072
1053
|
* ```
|
|
1073
1054
|
*/
|
|
1074
|
-
declare function ScalableContainer({ width, height, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
1055
|
+
declare function ScalableContainer({ width, height, expandedWidth, expandedHeight, expanded, onExpandedChange, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
1075
1056
|
|
|
1076
1057
|
interface GridCardItem {
|
|
1077
1058
|
key: string | number;
|
|
@@ -2929,4 +2910,4 @@ interface ColorPickerProps {
|
|
|
2929
2910
|
*/
|
|
2930
2911
|
declare function ColorPicker({ value, onChange, label, htmlFor, name, layout, size, swatches, allowCustom, disabled, errorMessage, required, placeholder, }: ColorPickerProps): react_jsx_runtime.JSX.Element;
|
|
2931
2912
|
|
|
2932
|
-
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldProps, type FieldShellOptions, type FieldSize, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps,
|
|
2913
|
+
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldProps, type FieldShellOptions, type FieldSize, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, Wizard, type WizardProps, type WizardStep, fieldShell, useNotification };
|
package/dist/index.js
CHANGED
|
@@ -9,12 +9,12 @@ import { useReducedMotion, AnimatePresence, motion } from 'framer-motion';
|
|
|
9
9
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
10
10
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
11
11
|
import * as Accordion from '@radix-ui/react-accordion';
|
|
12
|
-
import * as ToggleGroup from '@radix-ui/react-toggle-group';
|
|
13
12
|
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
14
13
|
import * as Popover from '@radix-ui/react-popover';
|
|
15
14
|
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
16
15
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
17
16
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
17
|
+
import * as ToggleGroup from '@radix-ui/react-toggle-group';
|
|
18
18
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
19
19
|
|
|
20
20
|
var Moon = ({ color = "gray" }) => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: color, viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: color, className: "w-8 h-8", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M21.752 15.002A9.718 9.718 0 0118 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 003 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 009.002-5.998z" }) });
|
|
@@ -1143,38 +1143,6 @@ function Tree({
|
|
|
1143
1143
|
item.key
|
|
1144
1144
|
)) });
|
|
1145
1145
|
}
|
|
1146
|
-
function ToggleButton({ items, onChange, activeKey }) {
|
|
1147
|
-
return /* @__PURE__ */ jsx(
|
|
1148
|
-
ToggleGroup.Root,
|
|
1149
|
-
{
|
|
1150
|
-
type: "single",
|
|
1151
|
-
value: activeKey,
|
|
1152
|
-
onValueChange: (val) => {
|
|
1153
|
-
if (val) onChange(val);
|
|
1154
|
-
},
|
|
1155
|
-
className: "flex items-center",
|
|
1156
|
-
children: items.map((item, index) => /* @__PURE__ */ jsx(
|
|
1157
|
-
ToggleGroup.Item,
|
|
1158
|
-
{
|
|
1159
|
-
value: item.key,
|
|
1160
|
-
"aria-label": typeof item.label === "string" ? item.label : item.key,
|
|
1161
|
-
className: [
|
|
1162
|
-
// Semantic tokens handle both light and dark modes via
|
|
1163
|
-
// CSS vars — no `dark:` variants needed.
|
|
1164
|
-
index === 0 && "rounded-l-lg border-r border-border",
|
|
1165
|
-
index === items.length - 1 && "rounded-r-lg border-l border-border",
|
|
1166
|
-
"p-2 cursor-pointer transition-colors duration-150 text-foreground-secondary",
|
|
1167
|
-
"focus:outline-none focus-visible:ring-2 focus-visible:ring-accent",
|
|
1168
|
-
"bg-surface hover:bg-surface-raised",
|
|
1169
|
-
"data-[state=on]:bg-accent data-[state=on]:text-accent-fg"
|
|
1170
|
-
].filter(Boolean).join(" "),
|
|
1171
|
-
children: item.icon ?? item.label
|
|
1172
|
-
},
|
|
1173
|
-
item.key
|
|
1174
|
-
))
|
|
1175
|
-
}
|
|
1176
|
-
);
|
|
1177
|
-
}
|
|
1178
1146
|
var NotificationContext = createContext({
|
|
1179
1147
|
open: () => void 0,
|
|
1180
1148
|
close: () => void 0
|
|
@@ -1576,6 +1544,10 @@ var TOGGLE_POSITION_CLASS = {
|
|
|
1576
1544
|
function ScalableContainer({
|
|
1577
1545
|
width = "100%",
|
|
1578
1546
|
height = "auto",
|
|
1547
|
+
expandedWidth = "100%",
|
|
1548
|
+
expandedHeight = "100%",
|
|
1549
|
+
expanded,
|
|
1550
|
+
onExpandedChange,
|
|
1579
1551
|
children,
|
|
1580
1552
|
assignClassOnClick,
|
|
1581
1553
|
expandIcon,
|
|
@@ -1583,27 +1555,32 @@ function ScalableContainer({
|
|
|
1583
1555
|
togglePosition = "top-right"
|
|
1584
1556
|
}) {
|
|
1585
1557
|
const containerRef = useRef(null);
|
|
1586
|
-
const [
|
|
1558
|
+
const [internalScaled, setInternalScaled] = useState(false);
|
|
1559
|
+
const isScaled = expanded ?? internalScaled;
|
|
1587
1560
|
const reduced = useReducedMotion();
|
|
1588
1561
|
const onToggle = () => {
|
|
1589
1562
|
const next = !isScaled;
|
|
1590
|
-
|
|
1591
|
-
|
|
1563
|
+
if (expanded === void 0) setInternalScaled(next);
|
|
1564
|
+
onExpandedChange?.(next);
|
|
1565
|
+
if (next) {
|
|
1566
|
+
window.setTimeout(
|
|
1567
|
+
() => containerRef.current?.scrollIntoView({ behavior: "smooth", block: "nearest" }),
|
|
1568
|
+
reduced ? 0 : 340
|
|
1569
|
+
);
|
|
1570
|
+
}
|
|
1592
1571
|
};
|
|
1593
1572
|
const wrapperClass = isScaled ? assignClassOnClick : void 0;
|
|
1594
1573
|
return /* @__PURE__ */ jsxs(
|
|
1595
1574
|
motion.div,
|
|
1596
1575
|
{
|
|
1597
1576
|
ref: containerRef,
|
|
1598
|
-
layout: true,
|
|
1599
1577
|
animate: {
|
|
1600
|
-
width: isScaled ?
|
|
1601
|
-
height: isScaled ?
|
|
1578
|
+
width: isScaled ? expandedWidth : width,
|
|
1579
|
+
height: isScaled ? expandedHeight : height
|
|
1602
1580
|
},
|
|
1603
1581
|
transition: reduced ? { duration: 0 } : {
|
|
1604
1582
|
width: { type: "tween", duration: 0.32, ease: [0.16, 1, 0.3, 1] },
|
|
1605
|
-
height: { type: "tween", duration: 0.32, ease: [0.16, 1, 0.3, 1] }
|
|
1606
|
-
layout: { duration: 0.32, ease: [0.16, 1, 0.3, 1] }
|
|
1583
|
+
height: { type: "tween", duration: 0.32, ease: [0.16, 1, 0.3, 1] }
|
|
1607
1584
|
},
|
|
1608
1585
|
className: [
|
|
1609
1586
|
"relative rounded-lg overflow-hidden",
|
|
@@ -2139,10 +2116,10 @@ var FIELD_SIZE = {
|
|
|
2139
2116
|
md: { control: "h-control-md", text: "text-sm", padX: "px-3", gap: "gap-2" },
|
|
2140
2117
|
lg: { control: "h-control-lg", text: "text-sm", padX: "px-3.5", gap: "gap-2.5" }
|
|
2141
2118
|
};
|
|
2142
|
-
var FOCUS_WITHIN = "focus-within:outline-none focus-within:border-accent
|
|
2143
|
-
var FOCUS_ELEMENT = "focus:outline-none focus:border-accent
|
|
2144
|
-
var FOCUS_WITHIN_ERROR = "focus-within:border-status-error
|
|
2145
|
-
var FOCUS_ELEMENT_ERROR = "focus:border-status-error
|
|
2119
|
+
var FOCUS_WITHIN = "focus-within:outline-none focus-within:border-accent";
|
|
2120
|
+
var FOCUS_ELEMENT = "focus:outline-none focus:border-accent data-[state=open]:border-accent";
|
|
2121
|
+
var FOCUS_WITHIN_ERROR = "focus-within:border-status-error";
|
|
2122
|
+
var FOCUS_ELEMENT_ERROR = "focus:border-status-error data-[state=open]:border-status-error";
|
|
2146
2123
|
function fieldShell({
|
|
2147
2124
|
size = "md",
|
|
2148
2125
|
hasError = false,
|
|
@@ -5646,6 +5623,6 @@ function ColorPicker({
|
|
|
5646
5623
|
] });
|
|
5647
5624
|
}
|
|
5648
5625
|
|
|
5649
|
-
export { AppShell, AutoComplete, Avatar, Box, Button, Catalog, CatalogCarousel, CatalogGrid, Checkbox, ColorPicker, ContextMenu, DateRangePicker, Drawer, Dropdown, FadingBase, Field, FileInput, Flex, Grid2 as Grid, GridCard, icons_default as Icon, IconButton, List2 as List, LoadingSpinner, Modal, NotificationProvider, NumberInput, OpaqueGridCard, OtpInput, Password, Portal, RadioGroup, Rating, ScalableContainer, SearchInput_default as SearchInput, SegmentedControl, Sidebar, SkeletonBox, SkeletonCard, SkeletonCircle, SkeletonText, Slider, Switch, Table, Tabs, TagsInput, DatePicker as Temporal, TextArea, TextInput, ThemeProvider, ThemeSwitch, TimePicker,
|
|
5626
|
+
export { AppShell, AutoComplete, Avatar, Box, Button, Catalog, CatalogCarousel, CatalogGrid, Checkbox, ColorPicker, ContextMenu, DateRangePicker, Drawer, Dropdown, FadingBase, Field, FileInput, Flex, Grid2 as Grid, GridCard, icons_default as Icon, IconButton, List2 as List, LoadingSpinner, Modal, NotificationProvider, NumberInput, OpaqueGridCard, OtpInput, Password, Portal, RadioGroup, Rating, ScalableContainer, SearchInput_default as SearchInput, SegmentedControl, Sidebar, SkeletonBox, SkeletonCard, SkeletonCircle, SkeletonText, Slider, Switch, Table, Tabs, TagsInput, DatePicker as Temporal, TextArea, TextInput, ThemeProvider, ThemeSwitch, TimePicker, Tooltip, TooltipProvider, TopBar, Tree, TreeSelect, Typography, Wizard, fieldShell, useNotification };
|
|
5650
5627
|
//# sourceMappingURL=index.js.map
|
|
5651
5628
|
//# sourceMappingURL=index.js.map
|