@edvisor/product-language 0.11.6 → 0.11.7

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.
@@ -5,6 +5,7 @@ interface ILabeledInputProps extends PropsWithChildren {
5
5
  errors?: {
6
6
  message: string;
7
7
  }[];
8
+ className?: string;
8
9
  }
9
10
  export declare const LabeledInput: FC<ILabeledInputProps>;
10
11
  export {};
@@ -2,7 +2,7 @@ import { FC } from '@helpers';
2
2
  import { InputFieldSlots } from './input-field';
3
3
  interface IInputTextProps {
4
4
  value: string;
5
- onChange: (change: string) => void;
5
+ onChange?: (change: string) => void;
6
6
  label?: string;
7
7
  invalid?: boolean;
8
8
  placeholder?: string;
@@ -128,6 +128,7 @@ declare const IconFullList: {
128
128
  };
129
129
  export interface ISelectProps<T = any> {
130
130
  className?: string;
131
+ id?: string;
131
132
  style?: CSSProperties;
132
133
  options?: IOption<T>[];
133
134
  value?: T | T[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edvisor/product-language",
3
- "version": "0.11.6",
3
+ "version": "0.11.7",
4
4
  "license": "MIT",
5
5
  "description": "Edvisor.io product-language components",
6
6
  "repository": "https://github.com/edvisor-io/front-end/",