@discourser/design-system 0.6.0 → 0.7.0
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 +43 -13
- package/dist/index.cjs +57 -27
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +21 -11
- package/dist/index.d.ts +21 -11
- package/dist/index.js +56 -27
- package/dist/index.js.map +1 -1
- package/dist/styles.css +115 -58
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -3,7 +3,6 @@ import react__default, { ElementType, ComponentType, Component, JSX, ComponentPr
|
|
|
3
3
|
import { RecipeConfig as RecipeConfig$1, SlotRecipeConfig as SlotRecipeConfig$1, GlobalStyleObject as GlobalStyleObject$1, TextStyles as TextStyles$1, LayerStyles as LayerStyles$1, PatternConfig as PatternConfig$1, RecipeVariantRecord as RecipeVariantRecord$1 } from '@pandacss/types';
|
|
4
4
|
import * as _ark_ui_react from '@ark-ui/react';
|
|
5
5
|
import { Assign as Assign$1, SelectRootProps } from '@ark-ui/react';
|
|
6
|
-
import { ClassValue } from 'clsx';
|
|
7
6
|
import { Field } from '@ark-ui/react/field';
|
|
8
7
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
9
8
|
import { createToaster } from '@ark-ui/react/toast';
|
|
@@ -19,6 +18,7 @@ import { Avatar as Avatar$1, AvatarContext } from '@ark-ui/react/avatar';
|
|
|
19
18
|
import { Progress as Progress$1 } from '@ark-ui/react/progress';
|
|
20
19
|
import { Popover as Popover$1, PopoverContext } from '@ark-ui/react/popover';
|
|
21
20
|
import { Tooltip as Tooltip$2, TooltipContext } from '@ark-ui/react/tooltip';
|
|
21
|
+
import { ClassValue } from 'clsx';
|
|
22
22
|
|
|
23
23
|
/* eslint-disable */
|
|
24
24
|
interface ConditionOptions {
|
|
@@ -21010,12 +21010,19 @@ interface ButtonLoadingProps {
|
|
|
21010
21010
|
}
|
|
21011
21011
|
type BaseButtonProps = ComponentProps$1<typeof BaseButton>;
|
|
21012
21012
|
declare const BaseButton: StyledComponent<react__default.ForwardRefExoticComponent<react__default.ClassAttributes<HTMLButtonElement> & react__default.ButtonHTMLAttributes<HTMLButtonElement> & _ark_ui_react.PolymorphicProps>, ButtonVariantProps>;
|
|
21013
|
-
interface ButtonProps
|
|
21013
|
+
interface ButtonProps extends Omit<BaseButtonProps, 'colorPalette'>, ButtonLoadingProps {
|
|
21014
|
+
/**
|
|
21015
|
+
* The color palette to use for the button.
|
|
21016
|
+
* @default "primary"
|
|
21017
|
+
*/
|
|
21018
|
+
colorPalette?: 'primary' | 'neutral' | 'error' | 'gray' | 'red' | undefined;
|
|
21014
21019
|
}
|
|
21020
|
+
declare const Button: react__default.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & react__default.RefAttributes<HTMLButtonElement>>;
|
|
21015
21021
|
interface ButtonGroupProps extends GroupProps, ButtonVariantProps {
|
|
21016
21022
|
}
|
|
21023
|
+
declare const ButtonGroup: react__default.ForwardRefExoticComponent<Omit<ButtonGroupProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
21017
21024
|
|
|
21018
|
-
interface IconButtonProps extends ButtonProps
|
|
21025
|
+
interface IconButtonProps extends ButtonProps {
|
|
21019
21026
|
}
|
|
21020
21027
|
declare const IconButton: react.ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
21021
21028
|
|
|
@@ -21046,8 +21053,16 @@ type Props = HeadingVariantProps & {
|
|
|
21046
21053
|
type HeadingProps = ComponentProps$1<typeof Heading>;
|
|
21047
21054
|
declare const Heading: StyledComponent<"h2", Props>;
|
|
21048
21055
|
|
|
21049
|
-
type
|
|
21050
|
-
declare const
|
|
21056
|
+
type BaseBadgeProps = ComponentProps$1<typeof BaseBadge>;
|
|
21057
|
+
declare const BaseBadge: StyledComponent<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & _ark_ui_react.PolymorphicProps>, BadgeVariantProps>;
|
|
21058
|
+
interface BadgeProps extends Omit<BaseBadgeProps, 'colorPalette'> {
|
|
21059
|
+
/**
|
|
21060
|
+
* The color palette to use for the badge.
|
|
21061
|
+
* @default "primary"
|
|
21062
|
+
*/
|
|
21063
|
+
colorPalette?: 'primary' | 'neutral' | 'error' | 'gray' | 'red' | undefined;
|
|
21064
|
+
}
|
|
21065
|
+
declare const Badge: react.ForwardRefExoticComponent<Omit<BadgeProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
21051
21066
|
|
|
21052
21067
|
type SpinnerProps = ComponentProps$1<typeof Spinner>;
|
|
21053
21068
|
declare const Spinner: StyledComponent<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLSpanElement> & react.HTMLAttributes<HTMLSpanElement> & _ark_ui_react.PolymorphicProps>, SpinnerVariantProps>;
|
|
@@ -21911,11 +21926,6 @@ declare namespace AbsoluteCenter$1 {
|
|
|
21911
21926
|
export { AbsoluteCenter$1_AbsoluteCenter as AbsoluteCenter, type AbsoluteCenter$1_AbsoluteCenterProps as AbsoluteCenterProps };
|
|
21912
21927
|
}
|
|
21913
21928
|
|
|
21914
|
-
declare const Button: react.ForwardRefExoticComponent<Omit<ButtonProps$1, "ref"> & react.RefAttributes<HTMLButtonElement>> & {
|
|
21915
|
-
Group: react.ForwardRefExoticComponent<Omit<ButtonGroupProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
21916
|
-
};
|
|
21917
|
-
type ButtonProps = ButtonProps$1;
|
|
21918
|
-
|
|
21919
21929
|
declare const buttonRecipe: RecipeConfig$1<RecipeVariantRecord$1>;
|
|
21920
21930
|
|
|
21921
21931
|
declare const cardRecipe: RecipeConfig$1<RecipeVariantRecord$1>;
|
|
@@ -22213,4 +22223,4 @@ declare function transformToPandaTheme(language: DesignLanguageContract): {
|
|
|
22213
22223
|
*/
|
|
22214
22224
|
declare function cn(...inputs: ClassValue[]): string;
|
|
22215
22225
|
|
|
22216
|
-
export { AbsoluteCenter$1 as AbsoluteCenter, Accordion, Avatar, Badge, type BadgeProps, type BorderConfig, type BorderWidthScale, Button, type ButtonGroupProps, type ButtonProps, Card$1 as Card, Checkbox, CloseButton$1 as CloseButton, type ColorPalettes, type DesignLanguageContract, Dialog, Drawer, type DurationScale, type EasingScale, type ElevationConfig, type ElevationScale, Group$2 as Group, Heading, type HeadingProps, Icon$1 as Icon, IconButton, type IconButtonProps, Input, InputAddon, type InputAddonProps, InputGroup, type InputGroupProps, type InputProps, type MotionConfig, Popover, Progress, type RadiiScale, RadioGroup, Select, type SemanticColors, type ShapeConfig, Skeleton$1 as Skeleton, Slider, type SpacingScale, Spinner, type SpinnerProps, Switch, Tabs, Textarea, type TextareaProps, Toaster, type TonalPalette, Tooltip$1 as Tooltip, type TypeStyle, type TypographyConfig, type TypographyScale, material3Language as activeLanguage, buttonRecipe, cardRecipe, cn, dialogRecipe, iconButtonRecipe, inputRecipe, switchRecipe, toaster, transformToPandaTheme };
|
|
22226
|
+
export { AbsoluteCenter$1 as AbsoluteCenter, Accordion, Avatar, Badge, type BadgeProps, type BorderConfig, type BorderWidthScale, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Card$1 as Card, Checkbox, CloseButton$1 as CloseButton, type ColorPalettes, type DesignLanguageContract, Dialog, Drawer, type DurationScale, type EasingScale, type ElevationConfig, type ElevationScale, Group$2 as Group, Heading, type HeadingProps, Icon$1 as Icon, IconButton, type IconButtonProps, Input, InputAddon, type InputAddonProps, InputGroup, type InputGroupProps, type InputProps, type MotionConfig, Popover, Progress, type RadiiScale, RadioGroup, Select, type SemanticColors, type ShapeConfig, Skeleton$1 as Skeleton, Slider, type SpacingScale, Spinner, type SpinnerProps, Switch, Tabs, Textarea, type TextareaProps, Toaster, type TonalPalette, Tooltip$1 as Tooltip, type TypeStyle, type TypographyConfig, type TypographyScale, material3Language as activeLanguage, buttonRecipe, cardRecipe, cn, dialogRecipe, iconButtonRecipe, inputRecipe, switchRecipe, toaster, transformToPandaTheme };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import react__default, { ElementType, ComponentType, Component, JSX, ComponentPr
|
|
|
3
3
|
import { RecipeConfig as RecipeConfig$1, SlotRecipeConfig as SlotRecipeConfig$1, GlobalStyleObject as GlobalStyleObject$1, TextStyles as TextStyles$1, LayerStyles as LayerStyles$1, PatternConfig as PatternConfig$1, RecipeVariantRecord as RecipeVariantRecord$1 } from '@pandacss/types';
|
|
4
4
|
import * as _ark_ui_react from '@ark-ui/react';
|
|
5
5
|
import { Assign as Assign$1, SelectRootProps } from '@ark-ui/react';
|
|
6
|
-
import { ClassValue } from 'clsx';
|
|
7
6
|
import { Field } from '@ark-ui/react/field';
|
|
8
7
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
9
8
|
import { createToaster } from '@ark-ui/react/toast';
|
|
@@ -19,6 +18,7 @@ import { Avatar as Avatar$1, AvatarContext } from '@ark-ui/react/avatar';
|
|
|
19
18
|
import { Progress as Progress$1 } from '@ark-ui/react/progress';
|
|
20
19
|
import { Popover as Popover$1, PopoverContext } from '@ark-ui/react/popover';
|
|
21
20
|
import { Tooltip as Tooltip$2, TooltipContext } from '@ark-ui/react/tooltip';
|
|
21
|
+
import { ClassValue } from 'clsx';
|
|
22
22
|
|
|
23
23
|
/* eslint-disable */
|
|
24
24
|
interface ConditionOptions {
|
|
@@ -21010,12 +21010,19 @@ interface ButtonLoadingProps {
|
|
|
21010
21010
|
}
|
|
21011
21011
|
type BaseButtonProps = ComponentProps$1<typeof BaseButton>;
|
|
21012
21012
|
declare const BaseButton: StyledComponent<react__default.ForwardRefExoticComponent<react__default.ClassAttributes<HTMLButtonElement> & react__default.ButtonHTMLAttributes<HTMLButtonElement> & _ark_ui_react.PolymorphicProps>, ButtonVariantProps>;
|
|
21013
|
-
interface ButtonProps
|
|
21013
|
+
interface ButtonProps extends Omit<BaseButtonProps, 'colorPalette'>, ButtonLoadingProps {
|
|
21014
|
+
/**
|
|
21015
|
+
* The color palette to use for the button.
|
|
21016
|
+
* @default "primary"
|
|
21017
|
+
*/
|
|
21018
|
+
colorPalette?: 'primary' | 'neutral' | 'error' | 'gray' | 'red' | undefined;
|
|
21014
21019
|
}
|
|
21020
|
+
declare const Button: react__default.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & react__default.RefAttributes<HTMLButtonElement>>;
|
|
21015
21021
|
interface ButtonGroupProps extends GroupProps, ButtonVariantProps {
|
|
21016
21022
|
}
|
|
21023
|
+
declare const ButtonGroup: react__default.ForwardRefExoticComponent<Omit<ButtonGroupProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
21017
21024
|
|
|
21018
|
-
interface IconButtonProps extends ButtonProps
|
|
21025
|
+
interface IconButtonProps extends ButtonProps {
|
|
21019
21026
|
}
|
|
21020
21027
|
declare const IconButton: react.ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
21021
21028
|
|
|
@@ -21046,8 +21053,16 @@ type Props = HeadingVariantProps & {
|
|
|
21046
21053
|
type HeadingProps = ComponentProps$1<typeof Heading>;
|
|
21047
21054
|
declare const Heading: StyledComponent<"h2", Props>;
|
|
21048
21055
|
|
|
21049
|
-
type
|
|
21050
|
-
declare const
|
|
21056
|
+
type BaseBadgeProps = ComponentProps$1<typeof BaseBadge>;
|
|
21057
|
+
declare const BaseBadge: StyledComponent<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & _ark_ui_react.PolymorphicProps>, BadgeVariantProps>;
|
|
21058
|
+
interface BadgeProps extends Omit<BaseBadgeProps, 'colorPalette'> {
|
|
21059
|
+
/**
|
|
21060
|
+
* The color palette to use for the badge.
|
|
21061
|
+
* @default "primary"
|
|
21062
|
+
*/
|
|
21063
|
+
colorPalette?: 'primary' | 'neutral' | 'error' | 'gray' | 'red' | undefined;
|
|
21064
|
+
}
|
|
21065
|
+
declare const Badge: react.ForwardRefExoticComponent<Omit<BadgeProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
21051
21066
|
|
|
21052
21067
|
type SpinnerProps = ComponentProps$1<typeof Spinner>;
|
|
21053
21068
|
declare const Spinner: StyledComponent<react.ForwardRefExoticComponent<react.ClassAttributes<HTMLSpanElement> & react.HTMLAttributes<HTMLSpanElement> & _ark_ui_react.PolymorphicProps>, SpinnerVariantProps>;
|
|
@@ -21911,11 +21926,6 @@ declare namespace AbsoluteCenter$1 {
|
|
|
21911
21926
|
export { AbsoluteCenter$1_AbsoluteCenter as AbsoluteCenter, type AbsoluteCenter$1_AbsoluteCenterProps as AbsoluteCenterProps };
|
|
21912
21927
|
}
|
|
21913
21928
|
|
|
21914
|
-
declare const Button: react.ForwardRefExoticComponent<Omit<ButtonProps$1, "ref"> & react.RefAttributes<HTMLButtonElement>> & {
|
|
21915
|
-
Group: react.ForwardRefExoticComponent<Omit<ButtonGroupProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
21916
|
-
};
|
|
21917
|
-
type ButtonProps = ButtonProps$1;
|
|
21918
|
-
|
|
21919
21929
|
declare const buttonRecipe: RecipeConfig$1<RecipeVariantRecord$1>;
|
|
21920
21930
|
|
|
21921
21931
|
declare const cardRecipe: RecipeConfig$1<RecipeVariantRecord$1>;
|
|
@@ -22213,4 +22223,4 @@ declare function transformToPandaTheme(language: DesignLanguageContract): {
|
|
|
22213
22223
|
*/
|
|
22214
22224
|
declare function cn(...inputs: ClassValue[]): string;
|
|
22215
22225
|
|
|
22216
|
-
export { AbsoluteCenter$1 as AbsoluteCenter, Accordion, Avatar, Badge, type BadgeProps, type BorderConfig, type BorderWidthScale, Button, type ButtonGroupProps, type ButtonProps, Card$1 as Card, Checkbox, CloseButton$1 as CloseButton, type ColorPalettes, type DesignLanguageContract, Dialog, Drawer, type DurationScale, type EasingScale, type ElevationConfig, type ElevationScale, Group$2 as Group, Heading, type HeadingProps, Icon$1 as Icon, IconButton, type IconButtonProps, Input, InputAddon, type InputAddonProps, InputGroup, type InputGroupProps, type InputProps, type MotionConfig, Popover, Progress, type RadiiScale, RadioGroup, Select, type SemanticColors, type ShapeConfig, Skeleton$1 as Skeleton, Slider, type SpacingScale, Spinner, type SpinnerProps, Switch, Tabs, Textarea, type TextareaProps, Toaster, type TonalPalette, Tooltip$1 as Tooltip, type TypeStyle, type TypographyConfig, type TypographyScale, material3Language as activeLanguage, buttonRecipe, cardRecipe, cn, dialogRecipe, iconButtonRecipe, inputRecipe, switchRecipe, toaster, transformToPandaTheme };
|
|
22226
|
+
export { AbsoluteCenter$1 as AbsoluteCenter, Accordion, Avatar, Badge, type BadgeProps, type BorderConfig, type BorderWidthScale, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Card$1 as Card, Checkbox, CloseButton$1 as CloseButton, type ColorPalettes, type DesignLanguageContract, Dialog, Drawer, type DurationScale, type EasingScale, type ElevationConfig, type ElevationScale, Group$2 as Group, Heading, type HeadingProps, Icon$1 as Icon, IconButton, type IconButtonProps, Input, InputAddon, type InputAddonProps, InputGroup, type InputGroupProps, type InputProps, type MotionConfig, Popover, Progress, type RadiiScale, RadioGroup, Select, type SemanticColors, type ShapeConfig, Skeleton$1 as Skeleton, Slider, type SpacingScale, Spinner, type SpinnerProps, Switch, Tabs, Textarea, type TextareaProps, Toaster, type TonalPalette, Tooltip$1 as Tooltip, type TypeStyle, type TypographyConfig, type TypographyScale, material3Language as activeLanguage, buttonRecipe, cardRecipe, cn, dialogRecipe, iconButtonRecipe, inputRecipe, switchRecipe, toaster, transformToPandaTheme };
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ark as ark$1 } from '@ark-ui/react/factory';
|
|
2
2
|
import { createContext, mergeProps } from '@ark-ui/react/utils';
|
|
3
3
|
import { forwardRef, useMemo, createContext as createContext$1, useContext } from 'react';
|
|
4
|
+
import { cx, css } from '@discourser/design-system/styled-system/css';
|
|
4
5
|
import { styled, createStyleContext, Stack } from '@discourser/design-system/styled-system/jsx';
|
|
5
6
|
import { group, absoluteCenter, spinner, button, input, inputAddon, inputGroup, textarea, heading, badge, toast, card, dialog, switchComponent, accordion, drawer, tabs, checkbox, radioGroup, select, slider, avatar, progress, skeleton, popover, tooltip } from '@discourser/design-system/styled-system/recipes';
|
|
6
7
|
import { ark } from '@ark-ui/react';
|
|
@@ -69,28 +70,53 @@ var Loader = forwardRef(function Loader2(props, ref) {
|
|
|
69
70
|
return /* @__PURE__ */ jsx(Span, { ref, display: "contents", ...rest, children });
|
|
70
71
|
});
|
|
71
72
|
var BaseButton = styled(ark$1.button, button);
|
|
72
|
-
var Button = forwardRef(
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
|
|
73
|
+
var Button = forwardRef(
|
|
74
|
+
function Button2(props, ref) {
|
|
75
|
+
const propsContext = useButtonPropsContext();
|
|
76
|
+
const buttonProps = useMemo(
|
|
77
|
+
() => mergeProps(propsContext, props),
|
|
78
|
+
[propsContext, props]
|
|
79
|
+
);
|
|
80
|
+
const {
|
|
81
|
+
loading,
|
|
82
|
+
loadingText,
|
|
83
|
+
children,
|
|
84
|
+
spinner: spinner2,
|
|
85
|
+
spinnerPlacement,
|
|
86
|
+
colorPalette = "primary",
|
|
87
|
+
className,
|
|
88
|
+
...rest
|
|
89
|
+
} = buttonProps;
|
|
90
|
+
const colorPaletteClass = `color-palette_${colorPalette}`;
|
|
91
|
+
const mergedClassName = cx(colorPaletteClass, className);
|
|
92
|
+
return /* @__PURE__ */ jsx(
|
|
93
|
+
BaseButton,
|
|
94
|
+
{
|
|
95
|
+
type: "button",
|
|
96
|
+
ref,
|
|
97
|
+
...rest,
|
|
98
|
+
className: mergedClassName,
|
|
99
|
+
"data-loading": loading ? "" : void 0,
|
|
100
|
+
disabled: loading || rest.disabled,
|
|
101
|
+
children: !props.asChild && loading ? /* @__PURE__ */ jsx(
|
|
102
|
+
Loader,
|
|
103
|
+
{
|
|
104
|
+
spinner: spinner2,
|
|
105
|
+
text: loadingText,
|
|
106
|
+
spinnerPlacement,
|
|
107
|
+
children
|
|
108
|
+
}
|
|
109
|
+
) : children
|
|
110
|
+
}
|
|
111
|
+
);
|
|
112
|
+
}
|
|
113
|
+
);
|
|
91
114
|
var ButtonGroup = forwardRef(
|
|
92
115
|
function ButtonGroup2(props, ref) {
|
|
93
|
-
const [variantProps, otherProps] = useMemo(
|
|
116
|
+
const [variantProps, otherProps] = useMemo(
|
|
117
|
+
() => button.splitVariantProps(props),
|
|
118
|
+
[props]
|
|
119
|
+
);
|
|
94
120
|
return /* @__PURE__ */ jsx(ButtonPropsProvider, { value: variantProps, children: /* @__PURE__ */ jsx(Group, { ref, ...otherProps }) });
|
|
95
121
|
}
|
|
96
122
|
);
|
|
@@ -126,7 +152,15 @@ var InputGroup2 = Object.assign(InputGroupRoot, {
|
|
|
126
152
|
});
|
|
127
153
|
var Textarea = styled(Field.Textarea, textarea);
|
|
128
154
|
var Heading = styled("h2", heading);
|
|
129
|
-
var
|
|
155
|
+
var BaseBadge = styled(ark$1.div, badge);
|
|
156
|
+
var Badge = forwardRef(
|
|
157
|
+
function Badge2(props, ref) {
|
|
158
|
+
const { colorPalette = "primary", className, ...rest } = props;
|
|
159
|
+
const colorPaletteClass = css({ colorPalette });
|
|
160
|
+
const mergedClassName = cx(colorPaletteClass, className);
|
|
161
|
+
return /* @__PURE__ */ jsx(BaseBadge, { ref, ...rest, className: mergedClassName });
|
|
162
|
+
}
|
|
163
|
+
);
|
|
130
164
|
|
|
131
165
|
// src/components/CloseButton.tsx
|
|
132
166
|
var CloseButton_exports = {};
|
|
@@ -757,11 +791,6 @@ var Tooltip = forwardRef(function Tooltip2(props, ref) {
|
|
|
757
791
|
] });
|
|
758
792
|
});
|
|
759
793
|
|
|
760
|
-
// src/components/index.ts
|
|
761
|
-
var Button3 = Object.assign(Button, {
|
|
762
|
-
Group: ButtonGroup
|
|
763
|
-
});
|
|
764
|
-
|
|
765
794
|
// node_modules/.pnpm/@pandacss+dev@1.8.0_hono@4.11.3_jsdom@27.4.0_typescript@5.9.3/node_modules/@pandacss/dev/dist/index.mjs
|
|
766
795
|
function defineRecipe(config) {
|
|
767
796
|
return config;
|
|
@@ -1842,6 +1871,6 @@ function cn(...inputs) {
|
|
|
1842
1871
|
return clsx(inputs);
|
|
1843
1872
|
}
|
|
1844
1873
|
|
|
1845
|
-
export { AbsoluteCenter_exports as AbsoluteCenter, Accordion_exports as Accordion, Avatar_exports as Avatar, Badge,
|
|
1874
|
+
export { AbsoluteCenter_exports as AbsoluteCenter, Accordion_exports as Accordion, Avatar_exports as Avatar, Badge, Button, ButtonGroup, Card_exports as Card, Checkbox_exports as Checkbox, CloseButton_exports as CloseButton, Dialog_exports as Dialog, Drawer_exports as Drawer, Group_exports as Group, Heading, Icon_exports as Icon, IconButton, Input, InputAddon, InputGroup2 as InputGroup, Popover_exports as Popover, Progress_exports as Progress, RadioGroup_exports as RadioGroup, Select_exports as Select, Skeleton_exports as Skeleton, Slider_exports as Slider, Spinner, Switch_exports as Switch, Tabs_exports as Tabs, Textarea, Toaster, Tooltip_exports as Tooltip, material3Language as activeLanguage, buttonRecipe, cardRecipe, cn, dialogRecipe, iconButtonRecipe, inputRecipe, switchRecipe, toaster, transformToPandaTheme };
|
|
1846
1875
|
//# sourceMappingURL=index.js.map
|
|
1847
1876
|
//# sourceMappingURL=index.js.map
|