@worldresources/wri-design-systems 2.202.2 → 2.202.4

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.d.ts CHANGED
@@ -874,7 +874,7 @@ type CheckboxProps = Omit<Checkbox$1.RootProps, 'size' | 'variant' | 'colorPalet
874
874
  }) => void;
875
875
  };
876
876
 
877
- declare const Checkbox: ({ name, value, checked, defaultChecked, disabled, indeterminate, onCheckedChange, children, ...rest }: CheckboxProps) => _emotion_react_jsx_runtime.JSX.Element;
877
+ declare const Checkbox: ({ name, value, checked, defaultChecked, disabled, indeterminate, onCheckedChange, children, tabIndex, ...rest }: CheckboxProps) => _emotion_react_jsx_runtime.JSX.Element;
878
878
 
879
879
  type CheckboxOptionCardItemProps = {
880
880
  label: string;
@@ -1180,7 +1180,7 @@ type TextareaProps = Omit<TextareaProps$1, 'size' | 'variant' | 'colorPalette' |
1180
1180
  labels?: Partial<TextareaLabels>;
1181
1181
  };
1182
1182
 
1183
- declare const Textarea: ({ label, caption, placeholder, errorMessage, required, disabled, size, showOptionalLabel, defaultValue, onChange, minLength, maxLength, labels, value: controlledValue, ...rest }: TextareaProps) => _emotion_react_jsx_runtime.JSX.Element;
1183
+ declare const Textarea: ({ label, caption, placeholder, errorMessage, required, disabled, size, showOptionalLabel, defaultValue, onChange, onFocus, onBlur, minLength, maxLength, labels, value: controlledValue, ...rest }: TextareaProps) => _emotion_react_jsx_runtime.JSX.Element;
1184
1184
 
1185
1185
  type TextInputProps = Omit<InputProps, 'size' | 'variant' | 'colorPalette' | 'defaultChecked'> & {
1186
1186
  label?: string;
@@ -1198,7 +1198,7 @@ type TextInputProps = Omit<InputProps, 'size' | 'variant' | 'colorPalette' | 'de
1198
1198
  labels?: Partial<TextInputLabels>;
1199
1199
  };
1200
1200
 
1201
- declare const TextInput: ({ label, caption, placeholder, errorMessage, required, disabled, size, showOptionalLabel, noMarginBottom, defaultValue, onChange, labels, value: controlledValue, ...rest }: TextInputProps) => _emotion_react_jsx_runtime.JSX.Element;
1201
+ declare const TextInput: ({ label, caption, placeholder, errorMessage, required, disabled, size, showOptionalLabel, noMarginBottom, defaultValue, onChange, onFocus, onBlur, labels, value: controlledValue, ...rest }: TextInputProps) => _emotion_react_jsx_runtime.JSX.Element;
1202
1202
 
1203
1203
  type ComboboxProps = {
1204
1204
  initialItems?: {