@zendeskgarden/react-forms 8.69.2 → 8.69.3

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.
Files changed (91) hide show
  1. package/dist/index.cjs.js +56 -56
  2. package/dist/index.esm.js +56 -56
  3. package/dist/typings/elements/Checkbox.d.ts +12 -12
  4. package/dist/typings/elements/FileUpload.d.ts +15 -15
  5. package/dist/typings/elements/Input.d.ts +12 -12
  6. package/dist/typings/elements/MediaInput.d.ts +12 -12
  7. package/dist/typings/elements/MultiThumbRange.d.ts +12 -12
  8. package/dist/typings/elements/Radio.d.ts +12 -12
  9. package/dist/typings/elements/Range.d.ts +12 -12
  10. package/dist/typings/elements/Select.d.ts +12 -12
  11. package/dist/typings/elements/Textarea.d.ts +12 -12
  12. package/dist/typings/elements/Toggle.d.ts +12 -12
  13. package/dist/typings/elements/common/Field.d.ts +18 -18
  14. package/dist/typings/elements/common/Fieldset.d.ts +15 -15
  15. package/dist/typings/elements/common/Hint.d.ts +11 -11
  16. package/dist/typings/elements/common/Label.d.ts +12 -12
  17. package/dist/typings/elements/common/Legend.d.ts +11 -11
  18. package/dist/typings/elements/common/Message.d.ts +12 -12
  19. package/dist/typings/elements/faux-input/FauxInput.d.ts +27 -27
  20. package/dist/typings/elements/faux-input/components/EndIcon.d.ts +15 -15
  21. package/dist/typings/elements/faux-input/components/StartIcon.d.ts +15 -15
  22. package/dist/typings/elements/file-list/FileList.d.ts +14 -14
  23. package/dist/typings/elements/file-list/components/Close.d.ts +11 -11
  24. package/dist/typings/elements/file-list/components/Delete.d.ts +11 -11
  25. package/dist/typings/elements/file-list/components/File.d.ts +17 -17
  26. package/dist/typings/elements/file-list/components/Item.d.ts +11 -11
  27. package/dist/typings/elements/file-list/utils.d.ts +10 -10
  28. package/dist/typings/elements/input-group/InputGroup.d.ts +12 -12
  29. package/dist/typings/elements/tiles/Tiles.d.ts +21 -21
  30. package/dist/typings/elements/tiles/components/Description.d.ts +11 -11
  31. package/dist/typings/elements/tiles/components/Icon.d.ts +11 -11
  32. package/dist/typings/elements/tiles/components/Label.d.ts +11 -11
  33. package/dist/typings/elements/tiles/components/Tile.d.ts +12 -12
  34. package/dist/typings/index.d.ts +38 -38
  35. package/dist/typings/styled/checkbox/StyledCheckHint.d.ts +16 -16
  36. package/dist/typings/styled/checkbox/StyledCheckInput.d.ts +16 -16
  37. package/dist/typings/styled/checkbox/StyledCheckLabel.d.ts +17 -17
  38. package/dist/typings/styled/checkbox/StyledCheckMessage.d.ts +16 -16
  39. package/dist/typings/styled/checkbox/StyledCheckSvg.d.ts +10 -10
  40. package/dist/typings/styled/checkbox/StyledDashSvg.d.ts +10 -10
  41. package/dist/typings/styled/common/StyledField.d.ts +15 -15
  42. package/dist/typings/styled/common/StyledFieldset.d.ts +15 -15
  43. package/dist/typings/styled/common/StyledHint.d.ts +10 -10
  44. package/dist/typings/styled/common/StyledLabel.d.ts +17 -17
  45. package/dist/typings/styled/common/StyledLegend.d.ts +18 -18
  46. package/dist/typings/styled/common/StyledMessage.d.ts +15 -15
  47. package/dist/typings/styled/common/StyledMessageIcon.d.ts +17 -17
  48. package/dist/typings/styled/file-list/StyledFile.d.ts +18 -18
  49. package/dist/typings/styled/file-list/StyledFileClose.d.ts +10 -10
  50. package/dist/typings/styled/file-list/StyledFileDelete.d.ts +13 -13
  51. package/dist/typings/styled/file-list/StyledFileIcon.d.ts +11 -11
  52. package/dist/typings/styled/file-list/StyledFileList.d.ts +13 -13
  53. package/dist/typings/styled/file-list/StyledFileListItem.d.ts +10 -10
  54. package/dist/typings/styled/file-upload/StyledFileUpload.d.ts +16 -16
  55. package/dist/typings/styled/index.d.ts +87 -87
  56. package/dist/typings/styled/input-group/StyledInputGroup.d.ts +15 -15
  57. package/dist/typings/styled/radio/StyledRadioHint.d.ts +13 -13
  58. package/dist/typings/styled/radio/StyledRadioInput.d.ts +15 -15
  59. package/dist/typings/styled/radio/StyledRadioLabel.d.ts +18 -18
  60. package/dist/typings/styled/radio/StyledRadioMessage.d.ts +13 -13
  61. package/dist/typings/styled/radio/StyledRadioSvg.d.ts +10 -10
  62. package/dist/typings/styled/range/StyledRangeInput.d.ts +13 -13
  63. package/dist/typings/styled/range/StyledSlider.d.ts +10 -10
  64. package/dist/typings/styled/range/StyledSliderThumb.d.ts +13 -13
  65. package/dist/typings/styled/range/StyledSliderTrack.d.ts +14 -14
  66. package/dist/typings/styled/range/StyledSliderTrackRail.d.ts +11 -11
  67. package/dist/typings/styled/select/StyledSelect.d.ts +16 -16
  68. package/dist/typings/styled/select/StyledSelectWrapper.d.ts +10 -10
  69. package/dist/typings/styled/text/StyledTextFauxInput.d.ts +18 -18
  70. package/dist/typings/styled/text/StyledTextInput.d.ts +17 -17
  71. package/dist/typings/styled/text/StyledTextMediaFigure.d.ts +20 -20
  72. package/dist/typings/styled/text/StyledTextMediaInput.d.ts +11 -11
  73. package/dist/typings/styled/text/StyledTextarea.d.ts +16 -16
  74. package/dist/typings/styled/tiles/StyledTile.d.ts +14 -14
  75. package/dist/typings/styled/tiles/StyledTileDescription.d.ts +15 -15
  76. package/dist/typings/styled/tiles/StyledTileIcon.d.ts +15 -15
  77. package/dist/typings/styled/tiles/StyledTileInput.d.ts +7 -7
  78. package/dist/typings/styled/tiles/StyledTileLabel.d.ts +15 -15
  79. package/dist/typings/styled/toggle/StyledToggleHint.d.ts +13 -13
  80. package/dist/typings/styled/toggle/StyledToggleInput.d.ts +19 -19
  81. package/dist/typings/styled/toggle/StyledToggleLabel.d.ts +21 -21
  82. package/dist/typings/styled/toggle/StyledToggleMessage.d.ts +13 -13
  83. package/dist/typings/styled/toggle/StyledToggleSvg.d.ts +10 -10
  84. package/dist/typings/types/index.d.ts +147 -147
  85. package/dist/typings/utils/useFieldContext.d.ts +26 -26
  86. package/dist/typings/utils/useFieldsetContext.d.ts +16 -16
  87. package/dist/typings/utils/useFileContext.d.ts +13 -13
  88. package/dist/typings/utils/useInputContext.d.ts +14 -14
  89. package/dist/typings/utils/useInputGroupContext.d.ts +16 -16
  90. package/dist/typings/utils/useTilesContext.d.ts +10 -10
  91. package/package.json +3 -3
@@ -1,38 +1,38 @@
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
- /** Common */
8
- export { Field } from './elements/common/Field';
9
- export type { IFieldProps } from './elements/common/Field';
10
- export { Fieldset } from './elements/common/Fieldset';
11
- export { Hint } from './elements/common/Hint';
12
- export { Label } from './elements/common/Label';
13
- export { Message } from './elements/common/Message';
14
- /** Fields */
15
- export { Checkbox } from './elements/Checkbox';
16
- export { Input } from './elements/Input';
17
- export { Radio } from './elements/Radio';
18
- export { Range } from './elements/Range';
19
- export { Textarea } from './elements/Textarea';
20
- export { Toggle } from './elements/Toggle';
21
- export { Select } from './elements/Select';
22
- export { MultiThumbRange } from './elements/MultiThumbRange';
23
- /** Tiles */
24
- export { Tiles } from './elements/tiles/Tiles';
25
- /** Input Group */
26
- export { InputGroup } from './elements/input-group/InputGroup';
27
- /** File Upload */
28
- export { FileUpload } from './elements/FileUpload';
29
- /** File List */
30
- export { FileList } from './elements/file-list/FileList';
31
- export { File } from './elements/file-list/components/File';
32
- /** Other */
33
- export { FauxInput } from './elements/faux-input/FauxInput';
34
- export type { IIconProps } from './elements/faux-input/FauxInput';
35
- export { MediaInput } from './elements/MediaInput';
36
- /** types */
37
- export { VALIDATION } from './types';
38
- export type { IFieldsetProps, ILabelProps, IMessageProps, ICheckboxProps, IRadioProps, IToggleProps, IInputProps, ITextareaProps, ISelectProps, IFileUploadProps, IFileProps, IRangeProps, IMultiThumbRangeProps, IInputGroupProps, ITilesProps, ITilesTileProps, IFauxInputProps, IFauxInputIconProps as IFauxInputStartIconProps, IFauxInputIconProps as IFauxInputEndIconProps, IMediaInputProps } from './types';
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
+ /** Common */
8
+ export { Field } from './elements/common/Field';
9
+ export type { IFieldProps } from './elements/common/Field';
10
+ export { Fieldset } from './elements/common/Fieldset';
11
+ export { Hint } from './elements/common/Hint';
12
+ export { Label } from './elements/common/Label';
13
+ export { Message } from './elements/common/Message';
14
+ /** Fields */
15
+ export { Checkbox } from './elements/Checkbox';
16
+ export { Input } from './elements/Input';
17
+ export { Radio } from './elements/Radio';
18
+ export { Range } from './elements/Range';
19
+ export { Textarea } from './elements/Textarea';
20
+ export { Toggle } from './elements/Toggle';
21
+ export { Select } from './elements/Select';
22
+ export { MultiThumbRange } from './elements/MultiThumbRange';
23
+ /** Tiles */
24
+ export { Tiles } from './elements/tiles/Tiles';
25
+ /** Input Group */
26
+ export { InputGroup } from './elements/input-group/InputGroup';
27
+ /** File Upload */
28
+ export { FileUpload } from './elements/FileUpload';
29
+ /** File List */
30
+ export { FileList } from './elements/file-list/FileList';
31
+ export { File } from './elements/file-list/components/File';
32
+ /** Other */
33
+ export { FauxInput } from './elements/faux-input/FauxInput';
34
+ export type { IIconProps } from './elements/faux-input/FauxInput';
35
+ export { MediaInput } from './elements/MediaInput';
36
+ /** types */
37
+ export { VALIDATION } from './types';
38
+ export type { IFieldsetProps, ILabelProps, IMessageProps, ICheckboxProps, IRadioProps, IToggleProps, IInputProps, ITextareaProps, ISelectProps, IFileUploadProps, IFileProps, IRangeProps, IMultiThumbRangeProps, IInputGroupProps, ITilesProps, ITilesTileProps, IFauxInputProps, IFauxInputIconProps as IFauxInputStartIconProps, IFauxInputIconProps as IFauxInputEndIconProps, IMediaInputProps } from './types';
@@ -1,16 +1,16 @@
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
- export declare const StyledCheckHint: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
8
- 'data-garden-id': string;
9
- 'data-garden-version': string;
10
- } & {
11
- 'data-garden-id': string;
12
- 'data-garden-version': string;
13
- } & {
14
- 'data-garden-id': string;
15
- 'data-garden-version': string;
16
- }, "data-garden-id" | "data-garden-version">;
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
+ export declare const StyledCheckHint: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
8
+ 'data-garden-id': any;
9
+ 'data-garden-version': any;
10
+ } & {
11
+ 'data-garden-id': string;
12
+ 'data-garden-version': string;
13
+ } & {
14
+ 'data-garden-id': string;
15
+ 'data-garden-version': string;
16
+ }, "data-garden-id" | "data-garden-version">;
@@ -1,16 +1,16 @@
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 { DefaultTheme } from 'styled-components';
8
- export declare const StyledCheckInput: import("styled-components").StyledComponent<"input", DefaultTheme, {
9
- 'data-garden-id': string;
10
- 'data-garden-version': string;
11
- type: "radio";
12
- } & import("../radio/StyledRadioInput").IStyledRadioInputProps & {
13
- 'data-garden-id': string;
14
- 'data-garden-version': string;
15
- type: string;
16
- }, "type" | "data-garden-id" | "data-garden-version">;
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 { DefaultTheme } from 'styled-components';
8
+ export declare const StyledCheckInput: import("styled-components").StyledComponent<"input", DefaultTheme, {
9
+ 'data-garden-id': string;
10
+ 'data-garden-version': string;
11
+ type: "radio";
12
+ } & import("../radio/StyledRadioInput").IStyledRadioInputProps & {
13
+ 'data-garden-id': string;
14
+ 'data-garden-version': string;
15
+ type: string;
16
+ }, "type" | "data-garden-id" | "data-garden-version">;
@@ -1,17 +1,17 @@
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
- export declare const StyledCheckLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, {
8
- 'data-garden-id': string;
9
- 'data-garden-version': string;
10
- } & import("..").IStyledLabelProps & {
11
- 'data-garden-id': string;
12
- 'data-garden-version': string;
13
- isRadio: boolean;
14
- } & {
15
- 'data-garden-id': string;
16
- 'data-garden-version': string;
17
- }, "data-garden-id" | "data-garden-version" | "isRadio">;
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
+ export declare const StyledCheckLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, {
8
+ 'data-garden-id': any;
9
+ 'data-garden-version': any;
10
+ } & import("..").IStyledLabelProps & {
11
+ 'data-garden-id': string;
12
+ 'data-garden-version': string;
13
+ isRadio: boolean;
14
+ } & {
15
+ 'data-garden-id': string;
16
+ 'data-garden-version': string;
17
+ }, "data-garden-id" | "data-garden-version" | "isRadio">;
@@ -1,16 +1,16 @@
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
- export declare const StyledCheckMessage: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
8
- 'data-garden-id': string;
9
- 'data-garden-version': string;
10
- } & import("..").IStyledMessageProps & {
11
- 'data-garden-id': string;
12
- 'data-garden-version': string;
13
- } & {
14
- 'data-garden-id': string;
15
- 'data-garden-version': string;
16
- }, "data-garden-id" | "data-garden-version">;
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
+ export declare const StyledCheckMessage: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
8
+ 'data-garden-id': any;
9
+ 'data-garden-version': any;
10
+ } & import("..").IStyledMessageProps & {
11
+ 'data-garden-id': string;
12
+ 'data-garden-version': string;
13
+ } & {
14
+ 'data-garden-id': string;
15
+ 'data-garden-version': string;
16
+ }, "data-garden-id" | "data-garden-version">;
@@ -1,10 +1,10 @@
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
- export declare const StyledCheckSvg: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object & {
8
- 'data-garden-id': string;
9
- 'data-garden-version': string;
10
- }, string | number | symbol>;
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
+ export declare const StyledCheckSvg: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object & {
8
+ 'data-garden-id': string;
9
+ 'data-garden-version': string;
10
+ }, string | number | symbol>;
@@ -1,10 +1,10 @@
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
- export declare const StyledDashSvg: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object & {
8
- 'data-garden-id': string;
9
- 'data-garden-version': string;
10
- }, string | number | symbol>;
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
+ export declare const StyledDashSvg: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object & {
8
+ 'data-garden-id': string;
9
+ 'data-garden-version': string;
10
+ }, string | number | symbol>;
@@ -1,15 +1,15 @@
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
- /**
8
- * 1. Set positioning context for absolute contents (Checkbox, Radio, Toggle).
9
- * 2. Resets for <fieldset>.
10
- * 3. Normalize block / line-height treatment for consistent height
11
- */
12
- export declare const StyledField: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
13
- 'data-garden-id': string;
14
- 'data-garden-version': string;
15
- }, "data-garden-id" | "data-garden-version">;
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
+ /**
8
+ * 1. Set positioning context for absolute contents (Checkbox, Radio, Toggle).
9
+ * 2. Resets for <fieldset>.
10
+ * 3. Normalize block / line-height treatment for consistent height
11
+ */
12
+ export declare const StyledField: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
13
+ 'data-garden-id': string;
14
+ 'data-garden-version': string;
15
+ }, "data-garden-id" | "data-garden-version">;
@@ -1,15 +1,15 @@
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
- interface IStyledFieldsetProps {
8
- isCompact?: boolean;
9
- }
10
- export declare const StyledFieldset: import("styled-components").StyledComponent<"fieldset", import("styled-components").DefaultTheme, {
11
- as: string;
12
- 'data-garden-id': string;
13
- 'data-garden-version': string;
14
- } & IStyledFieldsetProps, "as" | "data-garden-id" | "data-garden-version">;
15
- export {};
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
+ interface IStyledFieldsetProps {
8
+ isCompact?: boolean;
9
+ }
10
+ export declare const StyledFieldset: import("styled-components").StyledComponent<"fieldset", import("styled-components").DefaultTheme, {
11
+ as: string;
12
+ 'data-garden-id': string;
13
+ 'data-garden-version': string;
14
+ } & IStyledFieldsetProps, "as" | "data-garden-id" | "data-garden-version">;
15
+ export {};
@@ -1,10 +1,10 @@
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
- export declare const StyledHint: 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">;
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
+ export declare const StyledHint: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
8
+ 'data-garden-id': any;
9
+ 'data-garden-version': any;
10
+ }, "data-garden-id" | "data-garden-version">;
@@ -1,17 +1,17 @@
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
- export interface IStyledLabelProps {
8
- isRegular?: boolean;
9
- isRadio?: boolean;
10
- }
11
- /**
12
- * 1. CSS Bedrock override.
13
- */
14
- export declare const StyledLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, {
15
- 'data-garden-id': string;
16
- 'data-garden-version': string;
17
- } & IStyledLabelProps, "data-garden-id" | "data-garden-version">;
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
+ export interface IStyledLabelProps {
8
+ isRegular?: boolean;
9
+ isRadio?: boolean;
10
+ }
11
+ /**
12
+ * 1. CSS Bedrock override.
13
+ */
14
+ export declare const StyledLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, {
15
+ 'data-garden-id': any;
16
+ 'data-garden-version': any;
17
+ } & IStyledLabelProps, "data-garden-id" | "data-garden-version">;
@@ -1,18 +1,18 @@
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
- interface IStyledLegend {
8
- isCompact?: boolean;
9
- }
10
- /**
11
- * 1. Reset for <legend>.
12
- */
13
- export declare const StyledLegend: import("styled-components").StyledComponent<"legend", import("styled-components").DefaultTheme, {
14
- as: string;
15
- 'data-garden-id': string;
16
- 'data-garden-version': string;
17
- } & IStyledLegend, "as" | "data-garden-id" | "data-garden-version">;
18
- export {};
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
+ interface IStyledLegend {
8
+ isCompact?: boolean;
9
+ }
10
+ /**
11
+ * 1. Reset for <legend>.
12
+ */
13
+ export declare const StyledLegend: import("styled-components").StyledComponent<"legend", import("styled-components").DefaultTheme, {
14
+ as: string;
15
+ 'data-garden-id': string;
16
+ 'data-garden-version': string;
17
+ } & IStyledLegend, "as" | "data-garden-id" | "data-garden-version">;
18
+ export {};
@@ -1,15 +1,15 @@
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 { DefaultTheme } from 'styled-components';
8
- import { Validation } from '../../types';
9
- export interface IStyledMessageProps {
10
- validation?: Validation;
11
- }
12
- export declare const StyledMessage: import("styled-components").StyledComponent<"div", DefaultTheme, {
13
- 'data-garden-id': string;
14
- 'data-garden-version': string;
15
- } & IStyledMessageProps, "data-garden-id" | "data-garden-version">;
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 { DefaultTheme } from 'styled-components';
8
+ import { Validation } from '../../types';
9
+ export interface IStyledMessageProps {
10
+ validation?: Validation;
11
+ }
12
+ export declare const StyledMessage: import("styled-components").StyledComponent<"div", DefaultTheme, {
13
+ 'data-garden-id': any;
14
+ 'data-garden-version': any;
15
+ } & IStyledMessageProps, "data-garden-id" | "data-garden-version">;
@@ -1,17 +1,17 @@
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 React from 'react';
8
- import { Validation } from '../../types';
9
- interface IStyledMessageIconProps {
10
- validation?: Validation;
11
- }
12
- export declare const StyledMessageIcon: import("styled-components").StyledComponent<React.FC<IStyledMessageIconProps>, import("styled-components").DefaultTheme, {
13
- 'data-garden-id': string;
14
- 'data-garden-version': string;
15
- 'aria-hidden': null;
16
- } & IStyledMessageIconProps, "aria-hidden" | "data-garden-id" | "data-garden-version">;
17
- export {};
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 React from 'react';
8
+ import { Validation } from '../../types';
9
+ interface IStyledMessageIconProps {
10
+ validation?: Validation;
11
+ }
12
+ export declare const StyledMessageIcon: import("styled-components").StyledComponent<React.FC<IStyledMessageIconProps>, import("styled-components").DefaultTheme, {
13
+ 'data-garden-id': string;
14
+ 'data-garden-version': string;
15
+ 'aria-hidden': null;
16
+ } & IStyledMessageIconProps, "aria-hidden" | "data-garden-id" | "data-garden-version">;
17
+ export {};
@@ -1,18 +1,18 @@
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 { DefaultTheme } from 'styled-components';
8
- import { FileValidation } from '../../types';
9
- interface IStyledFileProps {
10
- isCompact?: boolean;
11
- focusInset?: boolean;
12
- validation?: FileValidation;
13
- }
14
- export declare const StyledFile: import("styled-components").StyledComponent<"div", DefaultTheme, {
15
- 'data-garden-id': string;
16
- 'data-garden-version': string;
17
- } & IStyledFileProps, "data-garden-id" | "data-garden-version">;
18
- export {};
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 { DefaultTheme } from 'styled-components';
8
+ import { FileValidation } from '../../types';
9
+ interface IStyledFileProps {
10
+ isCompact?: boolean;
11
+ focusInset?: boolean;
12
+ validation?: FileValidation;
13
+ }
14
+ export declare const StyledFile: import("styled-components").StyledComponent<"div", DefaultTheme, {
15
+ 'data-garden-id': string;
16
+ 'data-garden-version': string;
17
+ } & IStyledFileProps, "data-garden-id" | "data-garden-version">;
18
+ export {};
@@ -1,10 +1,10 @@
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
- export declare const StyledFileClose: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {
8
- 'data-garden-id': string;
9
- 'data-garden-version': string;
10
- }, "data-garden-id" | "data-garden-version">;
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
+ export declare const StyledFileClose: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {
8
+ 'data-garden-id': string;
9
+ 'data-garden-version': string;
10
+ }, "data-garden-id" | "data-garden-version">;
@@ -1,13 +1,13 @@
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
- export declare const StyledFileDelete: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {
8
- 'data-garden-id': string;
9
- 'data-garden-version': string;
10
- } & {
11
- 'data-garden-id': string;
12
- 'data-garden-version': string;
13
- }, "data-garden-id" | "data-garden-version">;
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
+ export declare const StyledFileDelete: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {
8
+ 'data-garden-id': string;
9
+ 'data-garden-version': string;
10
+ } & {
11
+ 'data-garden-id': string;
12
+ 'data-garden-version': string;
13
+ }, "data-garden-id" | "data-garden-version">;
@@ -1,11 +1,11 @@
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 React from 'react';
8
- export declare const StyledFileIcon: import("styled-components").StyledComponent<({ children, isCompact, theme, ...props }: any) => React.DetailedReactHTMLElement<any, HTMLElement>, import("styled-components").DefaultTheme, {
9
- 'data-garden-id': string;
10
- 'data-garden-version': string;
11
- }, "data-garden-id" | "data-garden-version">;
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 React from 'react';
8
+ export declare const StyledFileIcon: import("styled-components").StyledComponent<({ children, isCompact, theme, ...props }: any) => React.DetailedReactHTMLElement<any, HTMLElement>, import("styled-components").DefaultTheme, {
9
+ 'data-garden-id': string;
10
+ 'data-garden-version': string;
11
+ }, "data-garden-id" | "data-garden-version">;
@@ -1,13 +1,13 @@
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
- /**
8
- * 1. <ul> reset.
9
- */
10
- export declare const StyledFileList: import("styled-components").StyledComponent<"ul", import("styled-components").DefaultTheme, {
11
- 'data-garden-id': string;
12
- 'data-garden-version': string;
13
- }, "data-garden-id" | "data-garden-version">;
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
+ /**
8
+ * 1. <ul> reset.
9
+ */
10
+ export declare const StyledFileList: import("styled-components").StyledComponent<"ul", import("styled-components").DefaultTheme, {
11
+ 'data-garden-id': string;
12
+ 'data-garden-version': string;
13
+ }, "data-garden-id" | "data-garden-version">;