@kroo-web/design-system 1.5.0 → 1.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.
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import React, { DetailedHTMLProps, InputHTMLAttributes } from 'react';
2
2
  import { FieldValues, Path } from 'react-hook-form';
3
3
  export type TDatePicker<T extends FieldValues> = {
4
4
  disabled?: boolean;
@@ -12,3 +12,17 @@ export type TDatePicker<T extends FieldValues> = {
12
12
  name: Path<T>;
13
13
  };
14
14
  export declare const DatePicker: <T extends FieldValues>(props: TDatePicker<T>) => React.JSX.Element;
15
+ export type TNativeDatePickerProps = {
16
+ error?: {
17
+ message: string;
18
+ };
19
+ helper?: {
20
+ message: string;
21
+ };
22
+ id: string;
23
+ label: string;
24
+ max?: number | string;
25
+ min?: number | string;
26
+ missing?: boolean;
27
+ } & Omit<DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'max' | 'min' | 'type'>;
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, HTMLProps, ElementType, ButtonHTMLAttributes, DetailedHTMLProps, InputHTMLAttributes, 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';
@@ -158,6 +158,20 @@ type TDatePicker<T extends FieldValues> = {
158
158
  name: Path<T>;
159
159
  };
160
160
  declare const DatePicker: <T extends FieldValues>(props: TDatePicker<T>) => React$1.JSX.Element;
161
+ type TNativeDatePickerProps = {
162
+ error?: {
163
+ message: string;
164
+ };
165
+ helper?: {
166
+ message: string;
167
+ };
168
+ id: string;
169
+ label: string;
170
+ max?: number | string;
171
+ min?: number | string;
172
+ missing?: boolean;
173
+ } & Omit<DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'max' | 'min' | 'type'>;
174
+ declare const NativeDatePicker: React$1.ForwardRefExoticComponent<Omit<TNativeDatePickerProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
161
175
 
162
176
  type TDisclosureProps = {
163
177
  children: React$1.ReactNode;
@@ -237,6 +251,7 @@ type TNumberFieldProps<T extends FieldValues> = {
237
251
  declare const NumberField: <T extends FieldValues>(props: TNumberFieldProps<T>) => React$1.JSX.Element;
238
252
  type TNativeNumberFieldProps = {
239
253
  defaultValue?: number;
254
+ disabled?: boolean;
240
255
  error?: {
241
256
  message: string;
242
257
  };
@@ -265,6 +280,7 @@ type TPhoneFieldProps<T extends FieldValues> = {
265
280
  declare const PhoneField: <T extends FieldValues>(props: TPhoneFieldProps<T>) => React$1.JSX.Element;
266
281
  type TNativeCountrySelectProps = {
267
282
  id: string;
283
+ missing?: boolean;
268
284
  onChange?: ChangeEventHandler<HTMLSelectElement>;
269
285
  } & DetailedHTMLProps<InputHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>;
270
286
  type TNativeInputProps = {
@@ -273,6 +289,7 @@ type TNativeInputProps = {
273
289
  message: string;
274
290
  };
275
291
  id: string;
292
+ missing?: boolean;
276
293
  placeholder: string;
277
294
  } & DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
278
295
  declare const NativePhoneField: {
@@ -362,6 +379,23 @@ type TSelectProps<T extends FieldValues> = {
362
379
  placeholder?: string;
363
380
  };
364
381
  declare const Select: <T extends FieldValues>(props: TSelectProps<T>) => React$1.JSX.Element;
382
+ type TNativeSelectProps = {
383
+ error?: {
384
+ message: string;
385
+ };
386
+ helper?: {
387
+ message: string;
388
+ };
389
+ id: string;
390
+ items: Array<{
391
+ id: string;
392
+ title: string;
393
+ }>;
394
+ label: string;
395
+ missing?: boolean;
396
+ placeholder?: string;
397
+ } & Omit<DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, 'children'>;
398
+ declare const NativeSelect: React$1.ForwardRefExoticComponent<Omit<TNativeSelectProps, "ref"> & React$1.RefAttributes<HTMLSelectElement>>;
365
399
 
366
400
  type TSkeletonProps = {
367
401
  height?: string;
@@ -490,4 +524,4 @@ interface WrapperProps extends PropsWithChildren {
490
524
  }
491
525
  declare const Wrapper: ({ as, children, className, variants }: WrapperProps) => React$1.JSX.Element;
492
526
 
493
- 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, 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 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 };
527
+ 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, 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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kroo-web/design-system",
3
- "version": "1.5.0",
3
+ "version": "1.7.0",
4
4
  "description": "Web design system for Kroo including the components for the marketing site and the product side.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",