indicator-ui 1.1.78 → 1.1.79

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.
@@ -11,6 +11,7 @@ type PropsType = {
11
11
  required?: boolean;
12
12
  /** @deprecated */
13
13
  theme?: "light" | "dark";
14
+ className?: string;
14
15
  };
15
16
  export declare const FormFieldWrapper: React.ForwardRefExoticComponent<PropsType & React.RefAttributes<HTMLDivElement>>;
16
17
  export {};
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  import { FormFieldWrapper } from '../../../FormFieldWrapper';
3
3
  import { FormDateFieldBase } from './FormDateFieldBase';
4
- type PropsType = Omit<React.ComponentProps<typeof FormDateFieldBase>, 'pickerSubtitle'> & Pick<React.ComponentProps<typeof FormFieldWrapper>, 'error' | 'hint' | 'helperLink' | 'label' | 'required' | 'typeDisplay'>;
4
+ type PropsType = Omit<React.ComponentProps<typeof FormDateFieldBase>, 'pickerSubtitle'> & Pick<React.ComponentProps<typeof FormFieldWrapper>, 'error' | 'hint' | 'helperLink' | 'label' | 'required' | 'typeDisplay' | 'className'>;
5
5
  export declare function FormDateField(props: PropsType): import("react/jsx-runtime").JSX.Element;
6
6
  export {};
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  import { FormFieldWrapper } from '../../../FormFieldWrapper';
3
3
  import { FormDateRangeFieldBase } from './FormDateRangeFieldBase';
4
- type PropsType = Omit<React.ComponentProps<typeof FormDateRangeFieldBase>, 'pickerSubtitle'> & Pick<React.ComponentProps<typeof FormFieldWrapper>, 'error' | 'hint' | 'helperLink' | 'label' | 'required' | 'typeDisplay'>;
4
+ type PropsType = Omit<React.ComponentProps<typeof FormDateRangeFieldBase>, 'pickerSubtitle'> & Pick<React.ComponentProps<typeof FormFieldWrapper>, 'error' | 'hint' | 'helperLink' | 'label' | 'required' | 'typeDisplay' | 'className'>;
5
5
  export declare function FormDateRangeField(props: PropsType): import("react/jsx-runtime").JSX.Element;
6
6
  export {};
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  import { FormFieldWrapper } from '../../../FormFieldWrapper';
3
3
  import { FormDateTimeFieldBase } from './FormDateTimeFieldBase';
4
- type PropsType = Omit<React.ComponentProps<typeof FormDateTimeFieldBase>, 'pickerSubtitle'> & Pick<React.ComponentProps<typeof FormFieldWrapper>, 'error' | 'hint' | 'helperLink' | 'label' | 'required' | 'typeDisplay'>;
4
+ type PropsType = Omit<React.ComponentProps<typeof FormDateTimeFieldBase>, 'pickerSubtitle'> & Pick<React.ComponentProps<typeof FormFieldWrapper>, 'error' | 'hint' | 'helperLink' | 'label' | 'required' | 'typeDisplay' | 'className'>;
5
5
  export declare function FormDateTimeField(props: PropsType): import("react/jsx-runtime").JSX.Element;
6
6
  export {};
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  import { FormFieldWrapper } from '../../../FormFieldWrapper';
3
3
  import { FormTimeFieldBase } from './FormTimeFieldBase';
4
- type PropsType = Omit<React.ComponentProps<typeof FormTimeFieldBase>, 'pickerSubtitle'> & Pick<React.ComponentProps<typeof FormFieldWrapper>, 'error' | 'hint' | 'helperLink' | 'label' | 'required' | 'typeDisplay'>;
4
+ type PropsType = Omit<React.ComponentProps<typeof FormTimeFieldBase>, 'pickerSubtitle'> & Pick<React.ComponentProps<typeof FormFieldWrapper>, 'error' | 'hint' | 'helperLink' | 'label' | 'required' | 'typeDisplay' | 'className'>;
5
5
  export declare function FormTimeField(props: PropsType): import("react/jsx-runtime").JSX.Element;
6
6
  export {};
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  import { FormFieldWrapper } from '../../../FormFieldWrapper';
3
3
  import { FormTimeRangeFieldBase } from './FormTimeRangeFieldBase';
4
- type PropsType = Omit<React.ComponentProps<typeof FormTimeRangeFieldBase>, 'pickerSubtitle'> & Pick<React.ComponentProps<typeof FormFieldWrapper>, 'error' | 'hint' | 'helperLink' | 'label' | 'required' | 'typeDisplay'>;
4
+ type PropsType = Omit<React.ComponentProps<typeof FormTimeRangeFieldBase>, 'pickerSubtitle'> & Pick<React.ComponentProps<typeof FormFieldWrapper>, 'error' | 'hint' | 'helperLink' | 'label' | 'required' | 'typeDisplay' | 'className'>;
5
5
  export declare function FormTimeRangeField(props: PropsType): import("react/jsx-runtime").JSX.Element;
6
6
  export {};
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "react-components",
12
12
  "ui-kit"
13
13
  ],
14
- "version": "1.1.78",
14
+ "version": "1.1.79",
15
15
  "exports": {
16
16
  ".": {
17
17
  "types": "./dist/types/index.d.ts",