@parrot-co/parrot-ui 0.0.87 → 0.0.89

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.
@@ -0,0 +1,400 @@
1
+ import * as React from "react";
2
+ import { AriaTextFieldOptions, AriaButtonProps, AriaNumberFieldProps, AriaCheckboxGroupProps, AriaCheckboxProps, AriaRadioGroupProps, AriaRadioProps, AriaListBoxOptions, AriaCalendarProps, AriaDatePickerProps, AriaProgressBarProps, AriaTabListProps, AriaSwitchProps, AriaModalOverlayProps } from "react-aria";
3
+ import { ListState, OverlayTriggerProps, OverlayTriggerState } from "react-stately";
4
+ import { DateValue } from "@react-types/calendar";
5
+ import { DateValue as _DateValue1 } from "@internationalized/date";
6
+ declare const supportedColors: readonly ["tomato", "red", "crimson", "pink", "plum", "purple", "violet", "indigo", "blue", "cyan", "teal", "green", "grass", "orange", "brown", "sky", "mint", "lime", "yellow", "amber", "gold", "bronze", "gray", "mauve", "slate", "sage", "olive", "sand"];
7
+ type Color = (typeof supportedColors)[number];
8
+ type ColorVariant = "solid" | "outline" | "light" | "lightOutline" | "solidMono" | "ghost" | "pastel";
9
+ type InputAppearance = "outline" | "filled" | "filled-outline";
10
+ type BorderRadius = "none" | "sm" | "md" | "lg" | "full";
11
+ type ButtonSize = "xs" | "sm" | "md" | "lg" | "xl";
12
+ type ButtonAppearance = "primary" | "secondary" | "minimal";
13
+ type ButtonAppearanceSchemaType = Partial<Record<ButtonAppearance, {
14
+ variant: ColorVariant;
15
+ color: Color;
16
+ }>>;
17
+ type PositionType = "absolute" | "relative" | "fixed" | "sticky";
18
+ type JustifyContentType = "start" | "center" | "end" | "space-between" | "space-around" | "space-evenly";
19
+ type AlignItemsType = "start" | "center" | "end" | "stretch" | "baseline";
20
+ type FlexDirectionType = "row" | "column" | "row-reverse" | "column-reverse";
21
+ type SizeOption = "none" | "4xs" | "3xs" | "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl";
22
+ interface BoxProps extends React.ComponentPropsWithoutRef<"div"> {
23
+ stretchX?: boolean;
24
+ stretchY?: boolean;
25
+ stretchXY?: boolean;
26
+ position?: PositionType;
27
+ as?: React.ElementType;
28
+ }
29
+ export const Box: React.ForwardRefExoticComponent<BoxProps & {
30
+ children?: React.ReactNode;
31
+ } & React.RefAttributes<HTMLDivElement>>;
32
+ type ActionStatus = "idle" | "loading" | "success" | "error";
33
+ type ID = string | number;
34
+ type Columns = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
35
+ interface GridProps extends React.ComponentProps<typeof Box> {
36
+ columns?: Columns;
37
+ gap?: SizeOption;
38
+ gapX?: SizeOption;
39
+ gapY?: SizeOption;
40
+ align?: AlignItemsType;
41
+ justify?: JustifyContentType;
42
+ }
43
+ export const Grid: React.ForwardRefExoticComponent<Omit<GridProps & {
44
+ as?: React.ElementType<any> | undefined;
45
+ } & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
46
+ ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
47
+ }, "color" | "as">, "ref"> & React.RefAttributes<HTMLDivElement>>;
48
+ interface GridItemProps extends React.ComponentProps<typeof Box> {
49
+ colSpan?: Columns;
50
+ }
51
+ export const GridItem: React.ForwardRefExoticComponent<Omit<GridItemProps & {
52
+ as?: React.ElementType<any> | undefined;
53
+ } & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
54
+ ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
55
+ }, "color" | "as">, "ref"> & React.RefAttributes<HTMLDivElement>>;
56
+ interface FlexProps extends React.ComponentProps<typeof Box> {
57
+ justify?: JustifyContentType;
58
+ align?: AlignItemsType;
59
+ direction?: FlexDirectionType;
60
+ gap?: SizeOption;
61
+ columnGap?: SizeOption;
62
+ rowGap?: SizeOption;
63
+ stack?: boolean;
64
+ inline?: boolean;
65
+ wrap?: "wrap" | "nowrap" | "wrap-reverse";
66
+ }
67
+ export const Flex: React.ForwardRefExoticComponent<Omit<FlexProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
68
+ type TextWeight = "light" | "regular" | "medium" | "semi-bold" | "bold" | "heavy" | "inherit";
69
+ type TextColorVariant = "light" | "lighter" | "dark" | "default";
70
+ interface TextProps {
71
+ size?: SizeOption;
72
+ weight?: TextWeight;
73
+ highlight?: boolean;
74
+ color?: Color | "inherit" | "white" | "black";
75
+ variant?: TextColorVariant;
76
+ align?: "left" | "center" | "right";
77
+ numeric?: boolean;
78
+ underline?: boolean;
79
+ italic?: boolean;
80
+ lineHeight?: "normal" | "shorter" | "short" | "base" | "tall";
81
+ textCase?: "uppercase" | "lowercase" | "capitalize";
82
+ }
83
+ export const Text: {
84
+ <T extends React.ElementType<any> = "span">(props: TextProps & {
85
+ children?: React.ReactNode;
86
+ } & {
87
+ as?: React.ElementType<any> | T | undefined;
88
+ } & Omit<React.ComponentPropsWithRef<T>, "color" | "as">, ref?: React.Ref<T> | undefined): React.JSX.Element;
89
+ displayName: string;
90
+ };
91
+ interface SpaceProps extends React.ComponentProps<typeof Flex> {
92
+ compact?: boolean;
93
+ gap?: SizeOption;
94
+ className?: string;
95
+ }
96
+ export const Space: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<SpaceProps>, "ref"> & React.RefAttributes<HTMLDivElement>>;
97
+ interface ThemeProviderValue {
98
+ color?: Color;
99
+ scaling?: SizeScale;
100
+ grayVariant?: string;
101
+ radius?: BorderRadius;
102
+ buttonAppearance?: ButtonAppearanceSchemaType;
103
+ avatarRadiusSize?: BorderRadius;
104
+ inputAppearance?: InputAppearance;
105
+ }
106
+ interface ThemeProviderProps extends ThemeProviderValue {
107
+ children?: React.ReactNode;
108
+ className?: string;
109
+ }
110
+ type SizeScale = "90%" | "95%" | "100%" | "105%" | "110%";
111
+ export function ThemeProvider(props: ThemeProviderProps): React.JSX.Element;
112
+ export function useTheme(options?: {
113
+ requireThemeProvider: boolean;
114
+ }): ThemeProviderValue | null;
115
+ type InputProps = {
116
+ description?: React.ReactNode;
117
+ label?: React.ReactNode;
118
+ error?: React.ReactNode;
119
+ append?: React.ReactNode;
120
+ prepend?: React.ReactNode;
121
+ validationStatus?: "error" | "success" | "warning";
122
+ className?: string;
123
+ shape?: "rounded" | "sharp";
124
+ inputRef?: React.RefObject<HTMLInputElement>;
125
+ appearance?: InputAppearance;
126
+ size?: "xs" | "sm" | "md" | "lg" | "xl";
127
+ color?: Color;
128
+ radius?: BorderRadius;
129
+ };
130
+ interface ExtendedInputProps extends Omit<AriaTextFieldOptions<"input">, "size">, InputProps {
131
+ _someProp?: string;
132
+ }
133
+ type InputVariantProps = Pick<InputProps, "appearance" | "size" | "color" | "shape">;
134
+ export const Input: React.ForwardRefExoticComponent<ExtendedInputProps & React.RefAttributes<HTMLDivElement>>;
135
+ interface LoaderProps extends React.HTMLAttributes<HTMLDivElement> {
136
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
137
+ }
138
+ export const Loader: React.ForwardRefExoticComponent<LoaderProps & React.RefAttributes<HTMLDivElement>>;
139
+ interface ButtonGroupProps extends Pick<ButtonProps, "color" | "variant" | "size" | "radius" | "idleColor" | "idleVariant" | "activeColor" | "activeVariant" | "isToggle"> {
140
+ label?: string;
141
+ }
142
+ export function ButtonGroup({ color, variant, size, compact, radius, gap, children, idleColor, activeColor, idleVariant, activeVariant, isToggle, }: ButtonGroupProps & React.ComponentProps<typeof Space>): React.JSX.Element;
143
+ interface ButtonToggleProps {
144
+ isToggle?: boolean;
145
+ idleColor?: Color;
146
+ idleVariant?: ColorVariant;
147
+ activeColor?: Color;
148
+ activeVariant?: ColorVariant;
149
+ }
150
+ type ButtonProps = AriaButtonProps<"button" | "div" | "a"> & ButtonToggleProps & {
151
+ append?: React.ReactNode;
152
+ prepend?: React.ReactNode;
153
+ as?: React.ElementType;
154
+ isLoading?: boolean;
155
+ className?: string;
156
+ isIconButton?: boolean;
157
+ color?: Color;
158
+ variant?: ColorVariant;
159
+ size?: ButtonSize;
160
+ radius?: BorderRadius;
161
+ isSelected?: boolean;
162
+ defaultSelected?: boolean;
163
+ appearance?: ButtonAppearance;
164
+ role?: string;
165
+ style?: React.CSSProperties;
166
+ };
167
+ export const Button: React.ForwardRefExoticComponent<AriaButtonProps<"div" | "a" | "button"> & ButtonToggleProps & {
168
+ append?: React.ReactNode;
169
+ prepend?: React.ReactNode;
170
+ as?: React.ElementType<any> | undefined;
171
+ isLoading?: boolean | undefined;
172
+ className?: string | undefined;
173
+ isIconButton?: boolean | undefined;
174
+ color?: "tomato" | "red" | "crimson" | "pink" | "plum" | "purple" | "violet" | "indigo" | "blue" | "cyan" | "teal" | "green" | "grass" | "orange" | "brown" | "sky" | "mint" | "lime" | "yellow" | "amber" | "gold" | "bronze" | "gray" | "mauve" | "slate" | "sage" | "olive" | "sand" | undefined;
175
+ variant?: ColorVariant | undefined;
176
+ size?: ButtonSize | undefined;
177
+ radius?: BorderRadius | undefined;
178
+ isSelected?: boolean | undefined;
179
+ defaultSelected?: boolean | undefined;
180
+ appearance?: ButtonAppearance | undefined;
181
+ role?: string | undefined;
182
+ style?: React.CSSProperties | undefined;
183
+ } & React.RefAttributes<HTMLButtonElement>>;
184
+ interface IconButtonProps extends ButtonProps {
185
+ isIcon?: boolean;
186
+ }
187
+ export const IconButton: React.ForwardRefExoticComponent<IconButtonProps & React.RefAttributes<HTMLButtonElement>>;
188
+ interface NumberInputProps extends InputProps, AriaNumberFieldProps {
189
+ showSteppers?: boolean;
190
+ }
191
+ export const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & React.RefAttributes<HTMLDivElement>>;
192
+ interface TextareaProps extends AriaTextFieldOptions<"textarea">, InputProps {
193
+ resize?: "none" | "both" | "horizontal" | "vertical";
194
+ className?: string;
195
+ style?: React.CSSProperties;
196
+ }
197
+ export const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLDivElement>>;
198
+ interface CheckboxGroupProps extends AriaCheckboxGroupProps, CheckboxVariantProps {
199
+ }
200
+ export const CheckboxGroup: React.ForwardRefExoticComponent<Omit<CheckboxGroupProps & FlexProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
201
+ interface CheckboxVariantProps {
202
+ appearance?: "outline" | "filled";
203
+ size?: "xs" | "sm" | "md" | "lg" | "xl";
204
+ shape?: "sharp" | "round";
205
+ color?: Color;
206
+ }
207
+ interface CheckboxProps extends AriaCheckboxProps, CheckboxVariantProps {
208
+ className?: string;
209
+ }
210
+ export const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLLabelElement>>;
211
+ interface RadioProps extends AriaRadioProps, Pick<InputVariantProps, "appearance" | "color"> {
212
+ className?: string;
213
+ style?: React.CSSProperties;
214
+ size?: "xs" | "sm" | "md" | "lg";
215
+ }
216
+ export const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLLabelElement>>;
217
+ interface RadioGroupProps extends AriaRadioGroupProps {
218
+ children?: React.ReactNode;
219
+ }
220
+ export const RadioGroup: React.ForwardRefExoticComponent<Omit<RadioGroupProps & FlexProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
221
+ interface RadioCardProps extends AriaRadioProps, Pick<InputVariantProps, "appearance" | "color"> {
222
+ title?: React.ReactNode;
223
+ description?: React.ReactNode;
224
+ children?: React.ReactNode;
225
+ showIndicator?: boolean;
226
+ }
227
+ export const RadioCard: React.ForwardRefExoticComponent<RadioCardProps & React.RefAttributes<HTMLLabelElement>>;
228
+ interface ListBoxProps<T> extends AriaListBoxOptions<T> {
229
+ __parrotKey?: ID;
230
+ children?: any;
231
+ labelKey?: keyof T | string;
232
+ valueKey?: keyof T | string;
233
+ sectionKey?: keyof T;
234
+ renderOption?: (item: T) => React.ReactNode;
235
+ getSectionLabel?: (item: T) => React.ReactNode;
236
+ getSectionItems?: (item: T) => T[];
237
+ state?: ListState<T>;
238
+ color?: Color;
239
+ width?: number | string;
240
+ showSeparator?: boolean;
241
+ showSelectedMarker?: boolean;
242
+ }
243
+ export const Tag: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
244
+ prepend?: React.ReactNode;
245
+ append?: React.ReactNode;
246
+ hashValue?: string | undefined;
247
+ color?: "tomato" | "red" | "crimson" | "pink" | "plum" | "purple" | "violet" | "indigo" | "blue" | "cyan" | "teal" | "green" | "grass" | "orange" | "brown" | "sky" | "mint" | "lime" | "yellow" | "amber" | "gold" | "bronze" | "gray" | "mauve" | "slate" | "sage" | "olive" | "sand" | undefined;
248
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | undefined;
249
+ shape?: "rounded" | "sharp" | "pill" | undefined;
250
+ variant?: ColorVariant | undefined;
251
+ } & React.RefAttributes<HTMLDivElement>>;
252
+ type SingleOrMultipleValue = ID | Array<ID>;
253
+ interface MockNativeOnChangeEvent {
254
+ target: {
255
+ value: SingleOrMultipleValue;
256
+ name?: string;
257
+ };
258
+ }
259
+ interface SelectProps<T> extends ListBoxProps<T>, InputProps {
260
+ renderValue?: (value: T) => React.ReactNode;
261
+ placeholder?: string;
262
+ isDisabled?: boolean;
263
+ name?: string;
264
+ listBoxColor?: Color;
265
+ value?: SingleOrMultipleValue;
266
+ defaultValue?: SingleOrMultipleValue;
267
+ onChange?(event: MockNativeOnChangeEvent): void;
268
+ }
269
+ export function Select<T>({ label, selectionMode, appearance, append, prepend, renderValue, color, error, description, size, radius, listBoxColor, className, value, defaultValue, onChange, ...props }: SelectProps<T>): React.JSX.Element;
270
+ interface CalendarProps extends AriaCalendarProps<DateValue>, InputVariantProps {
271
+ numberOfMonths?: number;
272
+ }
273
+ export const Calendar: React.ForwardRefExoticComponent<CalendarProps & React.RefAttributes<HTMLDivElement>>;
274
+ interface DateInputProps extends Omit<AriaDatePickerProps<_DateValue1>, "value" | "onChange" | "defaultValue">, InputProps {
275
+ numberOfMonths?: number;
276
+ value?: string;
277
+ defaultValue?: string;
278
+ onChange?(value: string, dateObject?: _DateValue1): void;
279
+ dropdownIcon?: React.ReactNode;
280
+ }
281
+ export const DateInput: React.ForwardRefExoticComponent<DateInputProps & React.RefAttributes<HTMLDivElement>>;
282
+ type AvatarSize = "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
283
+ type AvatarShape = "circle" | "square";
284
+ interface AvatarProps extends React.ComponentProps<"div"> {
285
+ src?: string;
286
+ alt?: string;
287
+ name?: string;
288
+ fallback?: React.ReactNode;
289
+ radius?: BorderRadius;
290
+ color?: Color;
291
+ variant?: ColorVariant;
292
+ size?: AvatarSize;
293
+ shape?: AvatarShape;
294
+ }
295
+ export const Avatar: React.ForwardRefExoticComponent<Omit<AvatarProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
296
+ type Upload = {
297
+ name: string;
298
+ url: string;
299
+ id: string;
300
+ file?: File;
301
+ status?: ActionStatus;
302
+ progress?: number;
303
+ };
304
+ interface FileUploaderProps {
305
+ onFileUpload?: (files: Array<Upload>) => void;
306
+ onRemoveFile?: () => void;
307
+ onStatusChange?: (status: ActionStatus) => void;
308
+ error?: React.ReactNode;
309
+ label?: React.ReactNode;
310
+ allowMultiple?: boolean;
311
+ uploads?: Array<Upload>;
312
+ hideFileList?: boolean;
313
+ color?: Color;
314
+ }
315
+ export const FileUploader: React.ForwardRefExoticComponent<FileUploaderProps & React.RefAttributes<HTMLDivElement>>;
316
+ interface SeparatorProps extends React.ComponentPropsWithoutRef<"div"> {
317
+ orientation?: "horizontal" | "vertical";
318
+ color?: Color;
319
+ opacity?: "faint" | "medium" | "strong";
320
+ }
321
+ export const Separator: React.ForwardRefExoticComponent<SeparatorProps & React.RefAttributes<HTMLDivElement>>;
322
+ interface ProgressProps extends AriaProgressBarProps, React.ComponentPropsWithoutRef<"div"> {
323
+ height?: number;
324
+ color?: Color;
325
+ }
326
+ export const Progress: React.ForwardRefExoticComponent<ProgressProps & React.RefAttributes<HTMLDivElement>>;
327
+ interface TabsProps extends AriaTabListProps<any> {
328
+ orientation?: "horizontal" | "vertical";
329
+ }
330
+ export const Root: React.ForwardRefExoticComponent<TabsProps & React.RefAttributes<HTMLDivElement>>;
331
+ export const Item: <T>(props: import("react-stately").ItemProps<T>) => JSX.Element;
332
+ export const Tabs: {
333
+ Item: <T>(props: import("react-stately").ItemProps<T>) => JSX.Element;
334
+ Root: import("react").ForwardRefExoticComponent<import("components/tabs/tabs").TabsProps & import("react").RefAttributes<HTMLDivElement>>;
335
+ };
336
+ interface Props extends AriaSwitchProps {
337
+ color?: Color;
338
+ variant?: ColorVariant;
339
+ size?: "sm" | "md" | "lg";
340
+ className?: string;
341
+ }
342
+ export const Switch: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLLabelElement>>;
343
+ export function ColorTray(props: any): React.JSX.Element;
344
+ export function IconTray(props: any): React.JSX.Element;
345
+ interface StickerProps extends FlexProps {
346
+ padded?: boolean;
347
+ color?: Color;
348
+ variant?: ColorVariant;
349
+ radius?: BorderRadius;
350
+ }
351
+ export const Sticker: React.ForwardRefExoticComponent<Omit<StickerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
352
+ export function Table(): React.JSX.Element;
353
+ interface TimelineProps<T> {
354
+ items: Array<T>;
355
+ render?(item: T): React.ReactNode;
356
+ labelKey?: keyof T;
357
+ getIndicator?(item: T): React.ReactNode;
358
+ hideLastItemTail?: boolean;
359
+ }
360
+ export function Timeline<T>({ items, render, labelKey, getIndicator, hideLastItemTail, }: TimelineProps<T>): React.JSX.Element;
361
+ export interface ModalProps extends AriaModalOverlayProps {
362
+ hideTitle?: boolean;
363
+ state: OverlayTriggerState;
364
+ children?: React.ReactNode;
365
+ title?: React.ReactNode;
366
+ description?: React.ReactNode;
367
+ onConfirm?(): void;
368
+ onCancel?(): void;
369
+ confirmLabel?: string;
370
+ cancelLabel?: string;
371
+ confirmButtonProps?: React.ComponentProps<typeof Button>;
372
+ cancelButtonProps?: React.ComponentProps<typeof Button>;
373
+ width?: number | string;
374
+ variant?: "modal" | "drawer";
375
+ showCloseButton?: boolean;
376
+ onOpenChange?(open: boolean): void;
377
+ onClose?(): void;
378
+ isOpen?: boolean;
379
+ defaultOpen?: boolean;
380
+ }
381
+ export function Modal({ isOpen, defaultOpen, onOpenChange, ...props }: Omit<ModalProps, "state">): React.JSX.Element;
382
+ export declare namespace Modal {
383
+ var useModal: typeof import("index").useModal;
384
+ }
385
+ export function useModal(props?: OverlayTriggerProps): OverlayTriggerState;
386
+ interface TagField extends InputProps {
387
+ tags?: Array<string>;
388
+ defaultTags?: Array<string>;
389
+ placeholder?: string;
390
+ onInputValueChange?(value: string): void;
391
+ onChange?(tags: Array<string>): void;
392
+ tagVariant?: React.ComponentProps<typeof Tag>["variant"];
393
+ tagColor?: React.ComponentProps<typeof Tag>["color"];
394
+ tagShape?: React.ComponentProps<typeof Tag>["shape"];
395
+ tagSize?: React.ComponentProps<typeof Tag>["size"];
396
+ renderTag?(value: string, onRemove: (value: string) => void): React.ReactNode;
397
+ }
398
+ export function TagInput({ appearance, size, label, error, placeholder, tags, defaultTags, tagColor, tagVariant, tagShape, tagSize, color, onChange, renderTag, radius, }: TagField): React.JSX.Element;
399
+
400
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"mappings":"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","sources":["src/src/utils/assertions.ts","src/src/utils/dom.ts","src/src/utils/theme.ts","src/src/components/box/box.tsx","src/src/components/box/index.ts","src/src/utils/types.ts","src/src/components/grid/grid.tsx","src/src/components/grid/index.ts","src/src/components/flex/flex.tsx","src/src/components/flex/index.ts","src/src/components/text/text.tsx","src/src/components/text/index.ts","src/src/components/input-label/input-label.tsx","src/src/components/input-label/index.ts","src/src/components/input-error/input-error.tsx","src/src/components/input-error/index.ts","src/src/components/space/space.tsx","src/src/components/theme/theme-provider.tsx","src/src/components/theme/index.ts","src/src/components/input/input.tsx","src/src/components/loader/loader.tsx","src/src/components/loader/index.ts","src/src/components/space/index.ts","src/src/utils/object.ts","src/src/components/button/button-group.tsx","src/src/components/button/button.tsx","src/src/components/button/icon-button.tsx","src/src/components/button/index.ts","src/src/components/input/number-input.tsx","src/src/components/input/password-input.tsx","src/src/components/input/index.ts","src/src/components/textarea/textarea.tsx","src/src/components/textarea/index.ts","src/src/components/checkbox/checkbox-group.tsx","src/src/components/checkbox/checkbox.tsx","src/src/components/checkbox/index.ts","src/src/components/radio/radio.tsx","src/src/components/radio/radio-card.tsx","src/src/components/radio/index.ts","src/src/components/list-box/list-box.utils.tsx","src/src/components/list-box/list-box-provider.tsx","src/src/components/list-box/list-box.tsx","src/src/components/list-box/index.ts","src/src/utils/helpers.ts","src/src/components/tag/tag.tsx","src/src/components/tag/index.ts","src/src/components/popover/popover.tsx","src/src/components/popover/index.ts","src/src/components/select/select.tsx","src/src/components/select/index.ts","src/src/components/date-input/date-field.tsx","src/src/utils/array.ts","src/src/components/date-input/calendar.tsx","src/src/components/date-input/date-input.tsx","src/src/components/date-input/index.ts","src/src/components/avatar/avatar.tsx","src/src/components/avatar/index.ts","src/src/components/file-uploader/file-uploader.tsx","src/src/components/file-uploader/index.ts","src/src/components/separator/separator.tsx","src/src/components/separator/index.ts","src/src/components/progress/progress.tsx","src/src/components/progress/index.ts","src/src/components/tabs/tabs.tsx","src/src/components/tabs/index.ts","src/src/components/switch/switch.tsx","src/src/components/switch/index.ts","src/src/components/color-tray/color-tray.tsx","src/src/components/color-tray/index.ts","src/src/components/icon-tray/icon-tray.tsx","src/src/components/icon-tray/index.ts","src/src/components/sticker/sticker.tsx","src/src/components/sticker/index.ts","src/src/components/table/table.tsx","src/src/components/table/index.ts","src/src/components/timeline/timeline.tsx","src/src/components/timeline/index.ts","src/src/components/modal/modal.tsx","src/src/components/modal/index.ts","src/src/utils/regex.ts","src/src/hooks/use-controlled-state.tsx","src/src/components/tag-input/tag-input.tsx","src/src/components/tag-input/index.ts","src/src/index.ts","src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,"export { Box } from \"./components/box\";\nexport { Grid, GridItem } from \"./components/grid\";\nexport { Flex } from \"./components/flex\";\nexport { Input, NumberInput } from \"./components/input\";\nexport { Text } from \"./components/text\";\nexport { Textarea } from \"./components/textarea\";\nexport { Button, IconButton, ButtonGroup } from \"./components/button\";\nexport { Checkbox, CheckboxGroup } from \"./components/checkbox\";\nexport { Radio, RadioGroup, RadioCard } from \"./components/radio\";\nexport { Select } from \"./components/select\";\nexport { DateInput, Calendar } from \"./components/date-input\";\nexport { Avatar } from \"./components/avatar\";\nexport { FileUploader } from \"./components/file-uploader\";\nexport { Separator } from \"./components/separator\";\nexport { Progress } from \"./components/progress\";\nexport { Loader } from \"./components/loader\";\nexport { Root, Item } from \"./components/tabs\";\nexport { Tag } from \"./components/tag\";\nexport { Switch } from \"./components/switch\";\nexport { ColorTray } from \"./components/color-tray\";\nexport { IconTray } from \"./components/icon-tray\";\nexport { Sticker } from \"./components/sticker\";\nexport { TabObject as Tabs } from \"./components/tabs\";\nexport { Table } from \"./components/table\";\nexport { Timeline } from \"./components/timeline\";\nexport { Modal, useModal } from \"./components/modal\";\nexport { Space } from \"./components/space\";\nexport { TagInput } from \"./components/tag-input\";\nexport { ThemeProvider, useTheme } from \"./components/theme\";\n\nexport type { ModalProps } from \"./components/modal\";\n"],"names":[],"version":3,"file":"types.d.ts.map"}
package/package.json CHANGED
@@ -10,10 +10,11 @@
10
10
  "components",
11
11
  "parrot"
12
12
  ],
13
- "version": "0.0.87",
13
+ "version": "0.0.89",
14
14
  "source": "src/index.ts",
15
15
  "main": "dist/main.js",
16
16
  "module": "dist/module.js",
17
+ "types": "dist/types.d.ts",
17
18
  "exports": {
18
19
  ".": {
19
20
  "require": {
@@ -50,9 +51,9 @@
50
51
  },
51
52
  "devDependencies": {
52
53
  "@babel/preset-react": "^7.22.15",
53
- "@parcel/packager-ts": "2.8.3",
54
+ "@parcel/packager-ts": "2.9.3",
54
55
  "@parcel/reporter-bundle-analyzer": "^2.9.3",
55
- "@parcel/transformer-typescript-types": "2.8.3",
56
+ "@parcel/transformer-typescript-types": "2.9.3",
56
57
  "@storybook/addon-essentials": "^7.4.5",
57
58
  "@storybook/addon-interactions": "^7.4.5",
58
59
  "@storybook/addon-links": "^7.4.5",