@zendeskgarden/react-forms 9.0.0 → 9.1.1
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/LICENSE.md +176 -0
- package/dist/esm/elements/Checkbox.js +4 -3
- package/dist/esm/elements/FileUpload.js +7 -3
- package/dist/esm/elements/Input.js +18 -17
- package/dist/esm/elements/Radio.js +4 -3
- package/dist/esm/elements/Range.js +9 -9
- package/dist/esm/elements/Select.js +9 -9
- package/dist/esm/elements/Textarea.js +23 -13
- package/dist/esm/elements/Toggle.js +4 -3
- package/dist/esm/elements/common/Fieldset.js +10 -5
- package/dist/esm/elements/common/Label.js +33 -31
- package/dist/esm/elements/common/Legend.js +1 -3
- package/dist/esm/elements/common/Message.js +6 -5
- package/dist/esm/elements/common/MessageIcon.js +78 -0
- package/dist/esm/elements/faux-input/FauxInput.js +20 -8
- package/dist/esm/elements/file-list/components/File.js +3 -3
- package/dist/esm/elements/input-group/InputGroup.js +3 -3
- package/dist/esm/elements/tiles/components/Description.js +1 -1
- package/dist/esm/elements/tiles/components/Icon.js +1 -1
- package/dist/esm/elements/tiles/components/Label.js +1 -1
- package/dist/esm/styled/checkbox/StyledCheckHint.js +1 -1
- package/dist/esm/styled/checkbox/StyledCheckInput.js +1 -1
- package/dist/esm/styled/checkbox/StyledCheckLabel.js +1 -1
- package/dist/esm/styled/checkbox/StyledCheckMessage.js +1 -1
- package/dist/esm/styled/checkbox/StyledCheckSvg.js +1 -1
- package/dist/esm/styled/checkbox/StyledDashSvg.js +1 -1
- package/dist/esm/styled/common/StyledField.js +1 -1
- package/dist/esm/styled/common/StyledFieldset.js +2 -2
- package/dist/esm/styled/common/StyledHint.js +1 -1
- package/dist/esm/styled/common/StyledLabel.js +2 -2
- package/dist/esm/styled/common/StyledLegend.js +1 -1
- package/dist/esm/styled/common/StyledMessage.js +7 -7
- package/dist/esm/styled/common/StyledMessageIcon.js +3 -27
- package/dist/esm/styled/file-list/StyledFile.js +9 -9
- package/dist/esm/styled/file-list/StyledFileClose.js +1 -1
- package/dist/esm/styled/file-list/StyledFileDelete.js +1 -1
- package/dist/esm/styled/file-list/StyledFileIcon.js +1 -1
- package/dist/esm/styled/file-list/StyledFileList.js +1 -1
- package/dist/esm/styled/file-list/StyledFileListItem.js +1 -1
- package/dist/esm/styled/file-upload/StyledFileUpload.js +7 -7
- package/dist/esm/styled/input-group/StyledInputGroup.js +2 -2
- package/dist/esm/styled/radio/StyledRadioHint.js +1 -1
- package/dist/esm/styled/radio/StyledRadioInput.js +3 -3
- package/dist/esm/styled/radio/StyledRadioLabel.js +2 -2
- package/dist/esm/styled/radio/StyledRadioMessage.js +1 -1
- package/dist/esm/styled/radio/StyledRadioSvg.js +1 -1
- package/dist/esm/styled/range/StyledRangeInput.js +9 -9
- package/dist/esm/styled/select/StyledSelect.js +6 -6
- package/dist/esm/styled/select/StyledSelectWrapper.js +3 -3
- package/dist/esm/styled/text/StyledTextFauxInput.js +15 -15
- package/dist/esm/styled/text/StyledTextInput.js +22 -22
- package/dist/esm/styled/text/StyledTextMediaFigure.js +1 -1
- package/dist/esm/styled/text/StyledTextMediaInput.js +2 -2
- package/dist/esm/styled/text/StyledTextarea.js +2 -2
- package/dist/esm/styled/tiles/StyledTile.js +1 -1
- package/dist/esm/styled/tiles/StyledTileDescription.js +4 -4
- package/dist/esm/styled/tiles/StyledTileIcon.js +3 -3
- package/dist/esm/styled/tiles/StyledTileLabel.js +5 -5
- package/dist/esm/styled/toggle/StyledToggleHint.js +1 -1
- package/dist/esm/styled/toggle/StyledToggleInput.js +1 -1
- package/dist/esm/styled/toggle/StyledToggleLabel.js +1 -1
- package/dist/esm/styled/toggle/StyledToggleMessage.js +1 -1
- package/dist/esm/styled/toggle/StyledToggleSvg.js +1 -1
- package/dist/index.cjs.js +401 -365
- package/dist/typings/elements/common/MessageIcon.d.ts +9 -0
- package/dist/typings/styled/checkbox/StyledCheckLabel.d.ts +2 -2
- package/dist/typings/styled/common/StyledFieldset.d.ts +1 -1
- package/dist/typings/styled/common/StyledLabel.d.ts +2 -2
- package/dist/typings/styled/common/StyledLegend.d.ts +1 -5
- package/dist/typings/styled/common/StyledMessage.d.ts +1 -1
- package/dist/typings/styled/common/StyledMessageIcon.d.ts +2 -10
- package/dist/typings/styled/file-list/StyledFile.d.ts +3 -3
- package/dist/typings/styled/file-list/StyledFileIcon.d.ts +1 -1
- package/dist/typings/styled/file-upload/StyledFileUpload.d.ts +2 -2
- package/dist/typings/styled/input-group/StyledInputGroup.d.ts +1 -1
- package/dist/typings/styled/radio/StyledRadioInput.d.ts +1 -1
- package/dist/typings/styled/radio/StyledRadioLabel.d.ts +2 -2
- package/dist/typings/styled/range/StyledRangeInput.d.ts +2 -2
- package/dist/typings/styled/text/StyledTextFauxInput.d.ts +3 -3
- package/dist/typings/styled/text/StyledTextInput.d.ts +6 -6
- package/dist/typings/styled/text/StyledTextMediaFigure.d.ts +1 -1
- package/dist/typings/styled/text/StyledTextMediaInput.d.ts +2 -2
- package/dist/typings/styled/text/StyledTextarea.d.ts +2 -2
- package/dist/typings/styled/tiles/StyledTileDescription.d.ts +1 -1
- package/dist/typings/styled/tiles/StyledTileIcon.d.ts +1 -1
- package/dist/typings/styled/tiles/StyledTileLabel.d.ts +1 -1
- package/dist/typings/styled/toggle/StyledToggleLabel.d.ts +2 -2
- package/dist/typings/types/index.d.ts +6 -0
- package/package.json +7 -6
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright Zendesk, Inc.
|
|
3
|
+
*
|
|
4
|
+
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
|
+
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
|
+
*/
|
|
7
|
+
import { FC, PropsWithChildren } from 'react';
|
|
8
|
+
import { IMessageIconProps } from '../../types';
|
|
9
|
+
export declare const MessageIcon: FC<PropsWithChildren<IMessageIconProps>>;
|
|
@@ -10,8 +10,8 @@ export declare const StyledCheckLabel: import("styled-components").StyledCompone
|
|
|
10
10
|
} & import("..").IStyledLabelProps & {
|
|
11
11
|
'data-garden-id': string;
|
|
12
12
|
'data-garden-version': string;
|
|
13
|
-
isRadio: boolean;
|
|
13
|
+
$isRadio: boolean;
|
|
14
14
|
} & {
|
|
15
15
|
'data-garden-id': string;
|
|
16
16
|
'data-garden-version': string;
|
|
17
|
-
}, "data-garden-id" | "data-garden-version" | "isRadio">;
|
|
17
|
+
}, "data-garden-id" | "data-garden-version" | "$isRadio">;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
7
|
interface IStyledFieldsetProps {
|
|
8
|
-
isCompact?: boolean;
|
|
8
|
+
$isCompact?: boolean;
|
|
9
9
|
}
|
|
10
10
|
export declare const StyledFieldset: import("styled-components").StyledComponent<"fieldset", import("styled-components").DefaultTheme, {
|
|
11
11
|
as: string;
|
|
@@ -4,9 +4,6 @@
|
|
|
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 IStyledLegend {
|
|
8
|
-
isCompact?: boolean;
|
|
9
|
-
}
|
|
10
7
|
/**
|
|
11
8
|
* 1. Reset for <legend>.
|
|
12
9
|
*/
|
|
@@ -14,5 +11,4 @@ export declare const StyledLegend: import("styled-components").StyledComponent<"
|
|
|
14
11
|
as: string;
|
|
15
12
|
'data-garden-id': string;
|
|
16
13
|
'data-garden-version': string;
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
14
|
+
}, "as" | "data-garden-id" | "data-garden-version">;
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
import { DefaultTheme } from 'styled-components';
|
|
8
8
|
import { Validation } from '../../types';
|
|
9
9
|
export interface IStyledMessageProps {
|
|
10
|
-
validation?: Validation;
|
|
10
|
+
$validation?: Validation;
|
|
11
11
|
}
|
|
12
12
|
export declare const StyledMessage: import("styled-components").StyledComponent<"div", DefaultTheme, {
|
|
13
13
|
'data-garden-id': any;
|
|
@@ -4,15 +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
|
-
import React
|
|
8
|
-
import { Validation } from '../../types';
|
|
9
|
-
interface IStyledMessageIconProps {
|
|
10
|
-
validation?: Validation;
|
|
11
|
-
}
|
|
12
|
-
export declare const StyledMessageIcon: import("styled-components").StyledComponent<React.FC<React.PropsWithChildren<IStyledMessageIconProps>>, import("styled-components").DefaultTheme, {
|
|
7
|
+
export declare const StyledMessageIcon: import("styled-components").StyledComponent<({ children, theme, ...props }: any) => React.DetailedReactHTMLElement<any, HTMLElement>, import("styled-components").DefaultTheme, {
|
|
13
8
|
'data-garden-id': string;
|
|
14
9
|
'data-garden-version': string;
|
|
15
|
-
|
|
16
|
-
role: string;
|
|
17
|
-
} & IStyledMessageIconProps, "role" | "aria-hidden" | "data-garden-id" | "data-garden-version">;
|
|
18
|
-
export {};
|
|
10
|
+
}, "data-garden-id" | "data-garden-version">;
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
import { DefaultTheme } from 'styled-components';
|
|
8
8
|
import { FileValidation } from '../../types';
|
|
9
9
|
interface IStyledFileProps {
|
|
10
|
-
isCompact?: boolean;
|
|
11
|
-
focusInset?: boolean;
|
|
12
|
-
validation?: FileValidation;
|
|
10
|
+
$isCompact?: boolean;
|
|
11
|
+
$focusInset?: boolean;
|
|
12
|
+
$validation?: FileValidation;
|
|
13
13
|
}
|
|
14
14
|
export declare const StyledFile: import("styled-components").StyledComponent<"div", DefaultTheme, {
|
|
15
15
|
'data-garden-id': string;
|
|
@@ -10,7 +10,7 @@ export interface IStyledFileIconProps {
|
|
|
10
10
|
$isCompact?: boolean;
|
|
11
11
|
$validation?: FileValidation;
|
|
12
12
|
}
|
|
13
|
-
export declare const StyledFileIcon: import("styled-components").StyledComponent<({ children, theme, ...props }: any) =>
|
|
13
|
+
export declare const StyledFileIcon: import("styled-components").StyledComponent<({ children, theme, ...props }: any) => React.DetailedReactHTMLElement<any, HTMLElement>, DefaultTheme, {
|
|
14
14
|
'data-garden-id': string;
|
|
15
15
|
'data-garden-version': string;
|
|
16
16
|
}, "data-garden-id" | "data-garden-version">;
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { DefaultTheme } from 'styled-components';
|
|
8
8
|
interface IStyledFileUploadProps {
|
|
9
|
-
isDragging?: boolean;
|
|
10
|
-
isCompact?: boolean;
|
|
9
|
+
$isDragging?: boolean;
|
|
10
|
+
$isCompact?: boolean;
|
|
11
11
|
}
|
|
12
12
|
export declare const StyledFileUpload: import("styled-components").StyledComponent<"div", DefaultTheme, {
|
|
13
13
|
'data-garden-id': string;
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { DefaultTheme } from 'styled-components';
|
|
8
8
|
interface IStyledInputGroupProps {
|
|
9
|
-
isCompact?: boolean;
|
|
9
|
+
$isCompact?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export declare const StyledInputGroup: import("styled-components").StyledComponent<"div", DefaultTheme, {
|
|
12
12
|
'data-garden-id': string;
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { DefaultTheme } from 'styled-components';
|
|
8
8
|
export interface IStyledRadioInputProps {
|
|
9
|
-
isCompact?: boolean;
|
|
9
|
+
$isCompact?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export declare const StyledRadioInput: import("styled-components").StyledComponent<"input", DefaultTheme, {
|
|
12
12
|
'data-garden-id': string;
|
|
@@ -14,5 +14,5 @@ export declare const StyledRadioLabel: import("styled-components").StyledCompone
|
|
|
14
14
|
} & import("../common/StyledLabel").IStyledLabelProps & {
|
|
15
15
|
'data-garden-id': string;
|
|
16
16
|
'data-garden-version': string;
|
|
17
|
-
isRadio: boolean;
|
|
18
|
-
}, "data-garden-id" | "data-garden-version" | "isRadio">;
|
|
17
|
+
$isRadio: boolean;
|
|
18
|
+
}, "data-garden-id" | "data-garden-version" | "$isRadio">;
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { DefaultTheme } from 'styled-components';
|
|
8
8
|
interface IStyledRangeInputProps {
|
|
9
|
-
backgroundSize?: number | string;
|
|
10
|
-
hasLowerTrack?: boolean;
|
|
9
|
+
$backgroundSize?: number | string;
|
|
10
|
+
$hasLowerTrack?: boolean;
|
|
11
11
|
}
|
|
12
12
|
export declare const StyledRangeInput: import("styled-components").StyledComponent<"input", DefaultTheme, IStyledRangeInputProps, never>;
|
|
13
13
|
export {};
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
import { DefaultTheme } from 'styled-components';
|
|
8
8
|
import { IStyledTextInputProps } from './StyledTextInput';
|
|
9
9
|
export interface IStyledTextFauxInputProps extends IStyledTextInputProps {
|
|
10
|
-
mediaLayout?: boolean;
|
|
11
|
-
isDisabled?: boolean;
|
|
12
|
-
isReadOnly?: boolean;
|
|
10
|
+
$mediaLayout?: boolean;
|
|
11
|
+
$isDisabled?: boolean;
|
|
12
|
+
$isReadOnly?: boolean;
|
|
13
13
|
}
|
|
14
14
|
export declare const StyledTextFauxInput: import("styled-components").StyledComponent<"div", DefaultTheme, IStyledTextFauxInputProps, never>;
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
import { DefaultTheme } from 'styled-components';
|
|
8
8
|
import { Validation } from '../../types';
|
|
9
9
|
export interface IStyledTextInputProps {
|
|
10
|
-
isCompact?: boolean;
|
|
11
|
-
isBare?: boolean;
|
|
12
|
-
isHovered?: boolean;
|
|
13
|
-
isFocused?: boolean;
|
|
14
|
-
focusInset?: boolean;
|
|
15
|
-
validation?: Validation;
|
|
10
|
+
$isCompact?: boolean;
|
|
11
|
+
$isBare?: boolean;
|
|
12
|
+
$isHovered?: boolean;
|
|
13
|
+
$isFocused?: boolean;
|
|
14
|
+
$focusInset?: boolean;
|
|
15
|
+
$validation?: Validation;
|
|
16
16
|
}
|
|
17
17
|
export declare const StyledTextInput: import("styled-components").StyledComponent<"input", DefaultTheme, IStyledTextInputProps, never>;
|
|
@@ -12,7 +12,7 @@ interface IStyledTextMediaFigureProps {
|
|
|
12
12
|
$isDisabled?: boolean;
|
|
13
13
|
$position: 'start' | 'end';
|
|
14
14
|
}
|
|
15
|
-
export declare const StyledTextMediaFigure: import("styled-components").StyledComponent<({ children, theme, ...props }: any) =>
|
|
15
|
+
export declare const StyledTextMediaFigure: import("styled-components").StyledComponent<({ children, theme, ...props }: any) => React.DetailedReactHTMLElement<any, HTMLElement>, DefaultTheme, {
|
|
16
16
|
'data-garden-id': string;
|
|
17
17
|
'data-garden-version': string;
|
|
18
18
|
} & IStyledTextMediaFigureProps, "data-garden-id" | "data-garden-version">;
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
export declare const StyledTextMediaInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, import("./StyledTextInput").IStyledTextInputProps & {
|
|
8
8
|
'data-garden-id': string;
|
|
9
9
|
'data-garden-version': string;
|
|
10
|
-
isBare: boolean;
|
|
11
|
-
}, "data-garden-id" | "data-garden-version" | "isBare">;
|
|
10
|
+
$isBare: boolean;
|
|
11
|
+
}, "data-garden-id" | "data-garden-version" | "$isBare">;
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
7
|
interface IStyledTextareaProps {
|
|
8
|
-
isResizable?: boolean;
|
|
9
|
-
isHidden?: boolean;
|
|
8
|
+
$isResizable?: boolean;
|
|
9
|
+
$isHidden?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export declare const StyledTextarea: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, import("./StyledTextInput").IStyledTextInputProps & {
|
|
12
12
|
as: string;
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { DefaultTheme } from 'styled-components';
|
|
8
8
|
interface IStyledTileDescriptionProps {
|
|
9
|
-
isCentered?: boolean;
|
|
9
|
+
$isCentered?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export declare const StyledTileDescription: import("styled-components").StyledComponent<"span", DefaultTheme, {
|
|
12
12
|
'data-garden-id': string;
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { DefaultTheme } from 'styled-components';
|
|
8
8
|
interface IStyledTileIconProps {
|
|
9
|
-
isCentered?: boolean;
|
|
9
|
+
$isCentered?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export declare const StyledTileIcon: import("styled-components").StyledComponent<"span", DefaultTheme, {
|
|
12
12
|
'data-garden-id': string;
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { DefaultTheme } from 'styled-components';
|
|
8
8
|
interface IStyledTileLabelProps {
|
|
9
|
-
isCentered?: boolean;
|
|
9
|
+
$isCentered?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export declare const StyledTileLabel: import("styled-components").StyledComponent<"span", DefaultTheme, {
|
|
12
12
|
'data-garden-id': string;
|
|
@@ -11,11 +11,11 @@ export declare const StyledToggleLabel: import("styled-components").StyledCompon
|
|
|
11
11
|
} & import("..").IStyledLabelProps & {
|
|
12
12
|
'data-garden-id': string;
|
|
13
13
|
'data-garden-version': string;
|
|
14
|
-
isRadio: boolean;
|
|
14
|
+
$isRadio: boolean;
|
|
15
15
|
} & {
|
|
16
16
|
'data-garden-id': string;
|
|
17
17
|
'data-garden-version': string;
|
|
18
18
|
} & {
|
|
19
19
|
'data-garden-id': string;
|
|
20
20
|
'data-garden-version': string;
|
|
21
|
-
}, "data-garden-id" | "data-garden-version" | "isRadio">;
|
|
21
|
+
}, "data-garden-id" | "data-garden-version" | "$isRadio">;
|
|
@@ -29,6 +29,10 @@ export interface IMessageProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
29
29
|
/** Defines the aria-label for the validation icon */
|
|
30
30
|
validationLabel?: string;
|
|
31
31
|
}
|
|
32
|
+
export interface IMessageIconProps {
|
|
33
|
+
/** Applies validation state styling */
|
|
34
|
+
validation?: Validation;
|
|
35
|
+
}
|
|
32
36
|
export interface IRadioProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
33
37
|
/** Applies compact styling */
|
|
34
38
|
isCompact?: IFieldsetProps['isCompact'];
|
|
@@ -69,6 +73,8 @@ export interface IFauxInputProps extends Pick<IInputProps, 'isCompact' | 'isBare
|
|
|
69
73
|
isFocused?: boolean;
|
|
70
74
|
/** Applies hover stying */
|
|
71
75
|
isHovered?: boolean;
|
|
76
|
+
/** @ignore Internal use only */
|
|
77
|
+
mediaLayout?: boolean;
|
|
72
78
|
}
|
|
73
79
|
export interface IFauxInputIconProps extends Pick<IFauxInputProps, 'isHovered' | 'isFocused'>, SVGAttributes<SVGElement> {
|
|
74
80
|
/** Applies disabled styling */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zendeskgarden/react-forms",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.1.1",
|
|
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>",
|
|
@@ -29,16 +29,16 @@
|
|
|
29
29
|
"react-merge-refs": "^2.0.0"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@zendeskgarden/react-theming": ">=9.0.0
|
|
32
|
+
"@zendeskgarden/react-theming": ">=9.0.0",
|
|
33
33
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
34
34
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
35
35
|
"styled-components": "^5.3.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/lodash.debounce": "4.0.9",
|
|
39
|
-
"@zendeskgarden/react-theming": "^9.
|
|
40
|
-
"@zendeskgarden/svg-icons": "7.
|
|
41
|
-
"react-dropzone": "14.2.
|
|
39
|
+
"@zendeskgarden/react-theming": "^9.1.1",
|
|
40
|
+
"@zendeskgarden/svg-icons": "7.3.0",
|
|
41
|
+
"react-dropzone": "14.2.9"
|
|
42
42
|
},
|
|
43
43
|
"keywords": [
|
|
44
44
|
"components",
|
|
@@ -49,5 +49,6 @@
|
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
|
-
"zendeskgarden:src": "src/index.ts"
|
|
52
|
+
"zendeskgarden:src": "src/index.ts",
|
|
53
|
+
"gitHead": "21eaf7b57f27f1a846ed332f1b8e655d6bc0a13b"
|
|
53
54
|
}
|