@zendeskgarden/react-forms 8.47.1 → 8.47.2

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.
@@ -30,8 +30,7 @@ export interface IMultiThumbRangeProps extends Omit<HTMLAttributes<HTMLDivElemen
30
30
  maxValue?: number;
31
31
  }) => void;
32
32
  }
33
- declare const _default: React.FunctionComponent<IMultiThumbRangeProps>;
34
33
  /**
35
34
  * @extends HTMLAttributes<HTMLDivElement>
36
35
  */
37
- export default _default;
36
+ export declare const MultiThumbRange: React.FC<IMultiThumbRangeProps>;
@@ -5,7 +5,7 @@
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
7
  import React, { InputHTMLAttributes } from 'react';
8
- interface IRangeProps extends InputHTMLAttributes<HTMLInputElement> {
8
+ export interface IRangeProps extends InputHTMLAttributes<HTMLInputElement> {
9
9
  /** @ignore */
10
10
  hasLowerTrack?: boolean;
11
11
  }
@@ -13,4 +13,3 @@ interface IRangeProps extends InputHTMLAttributes<HTMLInputElement> {
13
13
  * @extends InputHTMLAttributes<HTMLInputElement>
14
14
  */
15
15
  export declare const Range: React.ForwardRefExoticComponent<IRangeProps & React.RefAttributes<HTMLInputElement>>;
16
- export {};
@@ -9,7 +9,7 @@ import { Tile } from './components/Tile';
9
9
  import { Description } from './components/Description';
10
10
  import { Icon } from './components/Icon';
11
11
  import { Label } from './components/Label';
12
- interface ITilesProps extends HTMLAttributes<HTMLDivElement> {
12
+ export interface ITilesProps extends HTMLAttributes<HTMLDivElement> {
13
13
  /** Sets the value of the selected radio button */
14
14
  value?: string;
15
15
  /** Handles radio selection */
@@ -22,16 +22,18 @@ export type { IInputProps } from './elements/Input';
22
22
  export { Radio } from './elements/Radio';
23
23
  export type { IRadioProps } from './elements/Radio';
24
24
  export { Range } from './elements/Range';
25
+ export type { IRangeProps } from './elements/Range';
25
26
  export { Textarea } from './elements/Textarea';
26
27
  export type { ITextareaProps } from './elements/Textarea';
27
28
  export { Toggle } from './elements/Toggle';
28
29
  export type { IToggleProps } from './elements/Toggle';
29
30
  export { Select } from './elements/Select';
30
31
  export type { ISelectProps } from './elements/Select';
31
- export { default as MultiThumbRange } from './elements/MultiThumbRange';
32
+ export { MultiThumbRange } from './elements/MultiThumbRange';
32
33
  export type { IMultiThumbRangeProps } from './elements/MultiThumbRange';
33
34
  /** Tiles */
34
35
  export { Tiles } from './elements/tiles/Tiles';
36
+ export type { ITilesProps } from './elements/tiles/Tiles';
35
37
  /** Input Group */
36
38
  export { InputGroup } from './elements/input-group/InputGroup';
37
39
  export type { IInputGroupProps } from './elements/input-group/InputGroup';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zendeskgarden/react-forms",
3
- "version": "8.47.1",
3
+ "version": "8.47.2",
4
4
  "description": "Components relating to form elements in the Garden Design System",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Zendesk Garden <garden@zendesk.com>",
@@ -22,7 +22,7 @@
22
22
  "types": "dist/typings/index.d.ts",
23
23
  "dependencies": {
24
24
  "@zendeskgarden/container-field": "^1.3.6",
25
- "@zendeskgarden/container-utilities": "^0.6.0",
25
+ "@zendeskgarden/container-utilities": "^0.7.0",
26
26
  "lodash.debounce": "^4.0.8",
27
27
  "polished": "^4.0.0",
28
28
  "prop-types": "^15.5.7",
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/lodash.debounce": "4.0.6",
39
- "@zendeskgarden/react-theming": "^8.47.1",
39
+ "@zendeskgarden/react-theming": "^8.47.2",
40
40
  "@zendeskgarden/svg-icons": "6.30.2",
41
41
  "react-dropzone": "11.4.2"
42
42
  },
@@ -50,5 +50,5 @@
50
50
  "access": "public"
51
51
  },
52
52
  "zendeskgarden:src": "src/index.ts",
53
- "gitHead": "62420ca54dbb5b3b90cd05bf455cd4ba91b4965e"
53
+ "gitHead": "41cb43f285760417ae2145e47eca0e4a600455ab"
54
54
  }