@zendeskgarden/react-forms 8.57.0 → 8.58.0

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.
@@ -4,8 +4,7 @@
4
4
  * Use of this source code is governed under the Apache License, Version 2.0
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
- interface IStyledSliderProps {
8
- isDisabled?: boolean;
9
- }
10
- export declare const StyledSlider: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, IStyledSliderProps, never>;
11
- export {};
7
+ export declare const StyledSlider: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
8
+ 'data-garden-id': string;
9
+ 'data-garden-version': string;
10
+ }, "data-garden-id" | "data-garden-version">;
@@ -107,12 +107,14 @@ export interface IMultiThumbRangeProps extends Omit<HTMLAttributes<HTMLDivElemen
107
107
  min?: number;
108
108
  /** Sets the maximum permitted value */
109
109
  max?: number;
110
- /** Sets the minimum thumb input value */
110
+ /** Sets the minimum thumb value */
111
111
  minValue?: number;
112
- /** Sets the maximum thumb input value */
112
+ /** Sets the maximum thumb value */
113
113
  maxValue?: number;
114
114
  /** Defines the stepping interval */
115
115
  step?: number;
116
+ /** Defines the jumping interval for keyboard page up/down navigation. Defaults to `step`. */
117
+ jump?: number;
116
118
  /** Indicates that the element is not interactive */
117
119
  disabled?: IRangeProps['disabled'];
118
120
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zendeskgarden/react-forms",
3
- "version": "8.57.0",
3
+ "version": "8.58.0",
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,6 +22,7 @@
22
22
  "types": "dist/typings/index.d.ts",
23
23
  "dependencies": {
24
24
  "@zendeskgarden/container-field": "^2.1.0",
25
+ "@zendeskgarden/container-slider": "^0.1.1",
25
26
  "@zendeskgarden/container-utilities": "^0.7.0",
26
27
  "lodash.debounce": "^4.0.8",
27
28
  "polished": "^4.0.0",
@@ -36,9 +37,9 @@
36
37
  },
37
38
  "devDependencies": {
38
39
  "@types/lodash.debounce": "4.0.7",
39
- "@zendeskgarden/react-theming": "^8.57.0",
40
+ "@zendeskgarden/react-theming": "^8.58.0",
40
41
  "@zendeskgarden/svg-icons": "6.33.0",
41
- "react-dropzone": "11.7.1"
42
+ "react-dropzone": "14.2.2"
42
43
  },
43
44
  "keywords": [
44
45
  "components",
@@ -50,5 +51,5 @@
50
51
  "access": "public"
51
52
  },
52
53
  "zendeskgarden:src": "src/index.ts",
53
- "gitHead": "165b6a453118f93e9e760642b632ce3d31e3a231"
54
+ "gitHead": "07760a92573b619860e1252f6931467b9123f1b6"
54
55
  }