@zendeskgarden/react-forms 8.57.1 → 8.59.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.
- package/dist/index.cjs.js +1158 -1686
- package/dist/index.esm.js +1159 -1687
- package/dist/typings/styled/range/StyledSlider.d.ts +4 -5
- package/dist/typings/types/index.d.ts +4 -2
- package/package.json +5 -4
|
@@ -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
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
|
110
|
+
/** Sets the minimum thumb value */
|
|
111
111
|
minValue?: number;
|
|
112
|
-
/** Sets the maximum thumb
|
|
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.
|
|
3
|
+
"version": "8.59.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.
|
|
40
|
+
"@zendeskgarden/react-theming": "^8.59.0",
|
|
40
41
|
"@zendeskgarden/svg-icons": "6.33.0",
|
|
41
|
-
"react-dropzone": "
|
|
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": "
|
|
54
|
+
"gitHead": "14c3ad1b3abb0f76ffc8512c89d167ecb6f024fa"
|
|
54
55
|
}
|