@kroo-web/design-system 1.6.0 → 1.8.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/dist/cjs/index.js +12 -12
- package/dist/cjs/src/components/Checkbox/index.d.ts +12 -0
- package/dist/cjs/src/components/DatePicker/index.d.ts +1 -0
- package/dist/cjs/src/components/NumberField/index.d.ts +1 -0
- package/dist/cjs/src/components/PhoneField/index.d.ts +2 -0
- package/dist/cjs/src/components/Select/index.d.ts +18 -1
- package/dist/esm/index.js +10 -10
- package/dist/esm/src/components/Checkbox/index.d.ts +12 -0
- package/dist/esm/src/components/DatePicker/index.d.ts +1 -0
- package/dist/esm/src/components/NumberField/index.d.ts +1 -0
- package/dist/esm/src/components/PhoneField/index.d.ts +2 -0
- package/dist/esm/src/components/Select/index.d.ts +18 -1
- package/dist/types.d.ts +35 -2
- package/package.json +1 -1
|
@@ -9,3 +9,15 @@ export type TCheckboxProps<T extends FieldValues> = {
|
|
|
9
9
|
variant?: 'checkbox' | 'radio';
|
|
10
10
|
};
|
|
11
11
|
export declare const Checkbox: <T extends FieldValues>(props: TCheckboxProps<T>) => React.JSX.Element;
|
|
12
|
+
export type TNativeCheckboxProps = {
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
error?: {
|
|
15
|
+
message: string;
|
|
16
|
+
};
|
|
17
|
+
helper?: {
|
|
18
|
+
message: string;
|
|
19
|
+
};
|
|
20
|
+
id: string;
|
|
21
|
+
label: ReactNode | string;
|
|
22
|
+
} & React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|
|
23
|
+
export declare const NativeCheckbox: React.ForwardRefExoticComponent<Omit<TNativeCheckboxProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -23,5 +23,6 @@ export type TNativeDatePickerProps = {
|
|
|
23
23
|
label: string;
|
|
24
24
|
max?: number | string;
|
|
25
25
|
min?: number | string;
|
|
26
|
+
missing?: boolean;
|
|
26
27
|
} & Omit<DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'max' | 'min' | 'type'>;
|
|
27
28
|
export declare const NativeDatePicker: React.ForwardRefExoticComponent<Omit<TNativeDatePickerProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -13,6 +13,7 @@ export type TNumberFieldProps<T extends FieldValues> = {
|
|
|
13
13
|
export declare const NumberField: <T extends FieldValues>(props: TNumberFieldProps<T>) => React.JSX.Element;
|
|
14
14
|
export type TNativeNumberFieldProps = {
|
|
15
15
|
defaultValue?: number;
|
|
16
|
+
disabled?: boolean;
|
|
16
17
|
error?: {
|
|
17
18
|
message: string;
|
|
18
19
|
};
|
|
@@ -13,6 +13,7 @@ export type TPhoneFieldProps<T extends FieldValues> = {
|
|
|
13
13
|
export declare const PhoneField: <T extends FieldValues>(props: TPhoneFieldProps<T>) => React.JSX.Element;
|
|
14
14
|
export type TNativeCountrySelectProps = {
|
|
15
15
|
id: string;
|
|
16
|
+
missing?: boolean;
|
|
16
17
|
onChange?: ChangeEventHandler<HTMLSelectElement>;
|
|
17
18
|
} & DetailedHTMLProps<InputHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>;
|
|
18
19
|
export type TNativeInputProps = {
|
|
@@ -21,6 +22,7 @@ export type TNativeInputProps = {
|
|
|
21
22
|
message: string;
|
|
22
23
|
};
|
|
23
24
|
id: string;
|
|
25
|
+
missing?: boolean;
|
|
24
26
|
placeholder: string;
|
|
25
27
|
} & DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|
|
26
28
|
export declare const NativePhoneField: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { OptionHTMLAttributes, ReactNode } from 'react';
|
|
1
|
+
import React, { DetailedHTMLProps, OptionHTMLAttributes, ReactNode, SelectHTMLAttributes } from 'react';
|
|
2
2
|
import { FieldValues, Path } from 'react-hook-form';
|
|
3
3
|
export type TItem = {
|
|
4
4
|
id: string;
|
|
@@ -23,3 +23,20 @@ export type TSelectProps<T extends FieldValues> = {
|
|
|
23
23
|
placeholder?: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const Select: <T extends FieldValues>(props: TSelectProps<T>) => React.JSX.Element;
|
|
26
|
+
export type TNativeSelectProps = {
|
|
27
|
+
error?: {
|
|
28
|
+
message: string;
|
|
29
|
+
};
|
|
30
|
+
helper?: {
|
|
31
|
+
message: string;
|
|
32
|
+
};
|
|
33
|
+
id: string;
|
|
34
|
+
items: Array<{
|
|
35
|
+
id: string;
|
|
36
|
+
title: string;
|
|
37
|
+
}>;
|
|
38
|
+
label: string;
|
|
39
|
+
missing?: boolean;
|
|
40
|
+
placeholder?: string;
|
|
41
|
+
} & Omit<DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, 'children'>;
|
|
42
|
+
export declare const NativeSelect: React.ForwardRefExoticComponent<Omit<TNativeSelectProps, "ref"> & React.RefAttributes<HTMLSelectElement>>;
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
2
|
-
import React$1, { PropsWithChildren, ReactNode, DetailedHTMLProps, InputHTMLAttributes, HTMLProps, ElementType, ButtonHTMLAttributes, ChangeEventHandler, OptionHTMLAttributes } from 'react';
|
|
2
|
+
import React$1, { PropsWithChildren, ReactNode, DetailedHTMLProps, InputHTMLAttributes, HTMLProps, ElementType, ButtonHTMLAttributes, ChangeEventHandler, OptionHTMLAttributes, SelectHTMLAttributes } from 'react';
|
|
3
3
|
import { MaterialSymbolProps } from 'react-material-symbols';
|
|
4
4
|
import { FieldValues, Path, ControllerRenderProps, UseFormReturn, FieldError } from 'react-hook-form';
|
|
5
5
|
import * as zustand from 'zustand';
|
|
@@ -123,6 +123,18 @@ type TCheckboxProps<T extends FieldValues> = {
|
|
|
123
123
|
variant?: 'checkbox' | 'radio';
|
|
124
124
|
};
|
|
125
125
|
declare const Checkbox: <T extends FieldValues>(props: TCheckboxProps<T>) => React$1.JSX.Element;
|
|
126
|
+
type TNativeCheckboxProps = {
|
|
127
|
+
disabled?: boolean;
|
|
128
|
+
error?: {
|
|
129
|
+
message: string;
|
|
130
|
+
};
|
|
131
|
+
helper?: {
|
|
132
|
+
message: string;
|
|
133
|
+
};
|
|
134
|
+
id: string;
|
|
135
|
+
label: ReactNode | string;
|
|
136
|
+
} & React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|
|
137
|
+
declare const NativeCheckbox: React$1.ForwardRefExoticComponent<Omit<TNativeCheckboxProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
126
138
|
|
|
127
139
|
type TColumnsProps = {
|
|
128
140
|
children: React$1.ReactNode;
|
|
@@ -169,6 +181,7 @@ type TNativeDatePickerProps = {
|
|
|
169
181
|
label: string;
|
|
170
182
|
max?: number | string;
|
|
171
183
|
min?: number | string;
|
|
184
|
+
missing?: boolean;
|
|
172
185
|
} & Omit<DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'max' | 'min' | 'type'>;
|
|
173
186
|
declare const NativeDatePicker: React$1.ForwardRefExoticComponent<Omit<TNativeDatePickerProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
174
187
|
|
|
@@ -250,6 +263,7 @@ type TNumberFieldProps<T extends FieldValues> = {
|
|
|
250
263
|
declare const NumberField: <T extends FieldValues>(props: TNumberFieldProps<T>) => React$1.JSX.Element;
|
|
251
264
|
type TNativeNumberFieldProps = {
|
|
252
265
|
defaultValue?: number;
|
|
266
|
+
disabled?: boolean;
|
|
253
267
|
error?: {
|
|
254
268
|
message: string;
|
|
255
269
|
};
|
|
@@ -278,6 +292,7 @@ type TPhoneFieldProps<T extends FieldValues> = {
|
|
|
278
292
|
declare const PhoneField: <T extends FieldValues>(props: TPhoneFieldProps<T>) => React$1.JSX.Element;
|
|
279
293
|
type TNativeCountrySelectProps = {
|
|
280
294
|
id: string;
|
|
295
|
+
missing?: boolean;
|
|
281
296
|
onChange?: ChangeEventHandler<HTMLSelectElement>;
|
|
282
297
|
} & DetailedHTMLProps<InputHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>;
|
|
283
298
|
type TNativeInputProps = {
|
|
@@ -286,6 +301,7 @@ type TNativeInputProps = {
|
|
|
286
301
|
message: string;
|
|
287
302
|
};
|
|
288
303
|
id: string;
|
|
304
|
+
missing?: boolean;
|
|
289
305
|
placeholder: string;
|
|
290
306
|
} & DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|
|
291
307
|
declare const NativePhoneField: {
|
|
@@ -375,6 +391,23 @@ type TSelectProps<T extends FieldValues> = {
|
|
|
375
391
|
placeholder?: string;
|
|
376
392
|
};
|
|
377
393
|
declare const Select: <T extends FieldValues>(props: TSelectProps<T>) => React$1.JSX.Element;
|
|
394
|
+
type TNativeSelectProps = {
|
|
395
|
+
error?: {
|
|
396
|
+
message: string;
|
|
397
|
+
};
|
|
398
|
+
helper?: {
|
|
399
|
+
message: string;
|
|
400
|
+
};
|
|
401
|
+
id: string;
|
|
402
|
+
items: Array<{
|
|
403
|
+
id: string;
|
|
404
|
+
title: string;
|
|
405
|
+
}>;
|
|
406
|
+
label: string;
|
|
407
|
+
missing?: boolean;
|
|
408
|
+
placeholder?: string;
|
|
409
|
+
} & Omit<DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, 'children'>;
|
|
410
|
+
declare const NativeSelect: React$1.ForwardRefExoticComponent<Omit<TNativeSelectProps, "ref"> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
378
411
|
|
|
379
412
|
type TSkeletonProps = {
|
|
380
413
|
height?: string;
|
|
@@ -503,4 +536,4 @@ interface WrapperProps extends PropsWithChildren {
|
|
|
503
536
|
}
|
|
504
537
|
declare const Wrapper: ({ as, children, className, variants }: WrapperProps) => React$1.JSX.Element;
|
|
505
538
|
|
|
506
|
-
export { Accordion, Button, Buttons, Callout, Card, Cards, type CardsVariants, Checkbox, Columns, ComboBox, DatePicker, Disclosure, Field, Form, type ICardOwnProps, type ICardProps, type ICardsProps, Icon, Link, Loading, Modal, NativeDatePicker, NativeNumberField, NativePhoneField, NativeTextField, NumberField, OTPInput, PhoneField, PinInput, Popover, ProgressIndicator, RadioGroup, Range, Select, Skeleton, type TAccordionRootProps, type TAccordionTriggerProps, type TButtonProps, type TCalloutRootProps, type TCalloutTextProps, type TCardVariants, type TCheckboxProps, type TColumnsProps, type TComboBoxItem, type TComboBoxProps, type TDatePicker, type TDisclosureProps, type TIconProps, type TItem, type TLegacyMarketingFooter, type TLegacyMarketingHeading, type TLegacyMarketingText, type TLink, type TLoadingProps, type TModalButtonProps, type TModalContentProps, type TModalControlProps, type TModalHeaderProps, type TNativeCountrySelectProps, type TNativeDatePickerProps, type TNativeInputProps, type TNativeNumberFieldProps, type TNativeTextFieldProps, type TNumberFieldProps, type TPhoneFieldProps, type TPinInputProps, type TPopoverContentProps, type TPopoverRootProps, type TPopoverTriggerProps, type TProgressIndicatorProps, type TRadioGroupProps, type TRangeProps, type TSelectProps, type TSkeletonProps, type TTabsContent, type TTabsList, type TTabsRoot, type TTabsTrigger, type TTagProps, type TTextFieldProps, type TToastDescriptionProps, type TToastIconProps, type TToastRootProps, type TToastTitleProps, type TTooltipContentProps, type TTooltipRootProps, type TTooltipTriggerProps, type TTypography, type TTypographyProps, type TTypographyVariants, type TUseModalProps, Table, TableBody, TableData, TableFooter, TableHead, TableHeader, TableRoot, TableRow, Tabs, Tag, TextField, Toast, Tooltip, Typography, Wrapper, type WrapperProps, type WrapperVariants, useModal };
|
|
539
|
+
export { Accordion, Button, Buttons, Callout, Card, Cards, type CardsVariants, Checkbox, Columns, ComboBox, DatePicker, Disclosure, Field, Form, type ICardOwnProps, type ICardProps, type ICardsProps, Icon, Link, Loading, Modal, NativeCheckbox, NativeDatePicker, NativeNumberField, NativePhoneField, NativeSelect, NativeTextField, NumberField, OTPInput, PhoneField, PinInput, Popover, ProgressIndicator, RadioGroup, Range, Select, Skeleton, type TAccordionRootProps, type TAccordionTriggerProps, type TButtonProps, type TCalloutRootProps, type TCalloutTextProps, type TCardVariants, type TCheckboxProps, type TColumnsProps, type TComboBoxItem, type TComboBoxProps, type TDatePicker, type TDisclosureProps, type TIconProps, type TItem, type TLegacyMarketingFooter, type TLegacyMarketingHeading, type TLegacyMarketingText, type TLink, type TLoadingProps, type TModalButtonProps, type TModalContentProps, type TModalControlProps, type TModalHeaderProps, type TNativeCheckboxProps, type TNativeCountrySelectProps, type TNativeDatePickerProps, type TNativeInputProps, type TNativeNumberFieldProps, type TNativeSelectProps, type TNativeTextFieldProps, type TNumberFieldProps, type TPhoneFieldProps, type TPinInputProps, type TPopoverContentProps, type TPopoverRootProps, type TPopoverTriggerProps, type TProgressIndicatorProps, type TRadioGroupProps, type TRangeProps, type TSelectProps, type TSkeletonProps, type TTabsContent, type TTabsList, type TTabsRoot, type TTabsTrigger, type TTagProps, type TTextFieldProps, type TToastDescriptionProps, type TToastIconProps, type TToastRootProps, type TToastTitleProps, type TTooltipContentProps, type TTooltipRootProps, type TTooltipTriggerProps, type TTypography, type TTypographyProps, type TTypographyVariants, type TUseModalProps, Table, TableBody, TableData, TableFooter, TableHead, TableHeader, TableRoot, TableRow, Tabs, Tag, TextField, Toast, Tooltip, Typography, Wrapper, type WrapperProps, type WrapperVariants, useModal };
|
package/package.json
CHANGED