scorer-ui-kit 2.6.6 → 2.6.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.
package/README.md CHANGED
@@ -78,6 +78,9 @@ Some stock photos were used as placeholders in this UI Kit. These were sourced t
78
78
  Photo by [Van Thanh](https://unsplash.com/@vanthanh2608?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) on [Unsplash](https://unsplash.com/s/photos/cafe?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText)
79
79
 
80
80
 
81
+ Photo by <a href="https://unsplash.com/@thomashabr?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Thomas Habr</a> on <a href="https://unsplash.com/photos/aerial-photography-of-empire-state-building-6NmnrAJPq7M?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Unsplash</a>
82
+
83
+
81
84
  ## License
82
85
 
83
86
  The Scorer UI Kit is released under the [MIT license](../../LICENSE.md).
@@ -1,4 +1,5 @@
1
1
  import React, { SelectHTMLAttributes } from 'react';
2
+ import { TypeFieldState } from '..';
2
3
  export declare const SelectWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
3
4
  interface ILabel {
4
5
  htmlFor: string;
@@ -6,9 +7,11 @@ interface ILabel {
6
7
  isSameRow?: boolean;
7
8
  }
8
9
  interface OwnProps {
10
+ fieldState?: TypeFieldState;
9
11
  label?: ILabel;
10
12
  isCompact?: boolean;
11
13
  placeholder?: string;
14
+ icon?: string;
12
15
  changeCallback?: (value: string) => void;
13
16
  }
14
17
  declare type ISelect = OwnProps & SelectHTMLAttributes<HTMLSelectElement>;