@zendeskgarden/react-dropdowns 9.0.0-next.13 → 9.0.0-next.15

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 (34) hide show
  1. package/LICENSE.md +176 -0
  2. package/dist/esm/views/combobox/StyledCombobox.js +1 -1
  3. package/dist/esm/views/combobox/StyledContainer.js +1 -1
  4. package/dist/esm/views/combobox/StyledField.js +1 -1
  5. package/dist/esm/views/combobox/StyledFloatingListbox.js +1 -1
  6. package/dist/esm/views/combobox/StyledHint.js +1 -1
  7. package/dist/esm/views/combobox/StyledInput.js +1 -1
  8. package/dist/esm/views/combobox/StyledInputGroup.js +1 -1
  9. package/dist/esm/views/combobox/StyledInputIcon.js +1 -1
  10. package/dist/esm/views/combobox/StyledLabel.js +1 -1
  11. package/dist/esm/views/combobox/StyledListbox.js +1 -1
  12. package/dist/esm/views/combobox/StyledListboxSeparator.js +1 -1
  13. package/dist/esm/views/combobox/StyledMessage.js +1 -1
  14. package/dist/esm/views/combobox/StyledOptGroup.js +1 -1
  15. package/dist/esm/views/combobox/StyledOption.js +1 -1
  16. package/dist/esm/views/combobox/StyledOptionContent.js +1 -1
  17. package/dist/esm/views/combobox/StyledOptionIcon.js +1 -1
  18. package/dist/esm/views/combobox/StyledOptionMeta.js +1 -1
  19. package/dist/esm/views/combobox/StyledOptionTypeIcon.js +1 -1
  20. package/dist/esm/views/combobox/StyledTag.js +1 -1
  21. package/dist/esm/views/combobox/StyledTagsButton.js +1 -1
  22. package/dist/esm/views/combobox/StyledTrigger.js +1 -1
  23. package/dist/esm/views/combobox/StyledValue.js +1 -1
  24. package/dist/esm/views/menu/StyledFloatingMenu.js +1 -1
  25. package/dist/esm/views/menu/StyledItem.js +1 -1
  26. package/dist/esm/views/menu/StyledItemContent.js +1 -1
  27. package/dist/esm/views/menu/StyledItemGroup.js +1 -1
  28. package/dist/esm/views/menu/StyledItemIcon.js +1 -1
  29. package/dist/esm/views/menu/StyledItemMeta.js +1 -1
  30. package/dist/esm/views/menu/StyledItemTypeIcon.js +1 -1
  31. package/dist/esm/views/menu/StyledMenu.js +1 -1
  32. package/dist/esm/views/menu/StyledSeparator.js +1 -1
  33. package/dist/index.cjs.js +31 -31
  34. package/package.json +8 -7
package/LICENSE.md ADDED
@@ -0,0 +1,176 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
@@ -18,7 +18,7 @@ const sizeStyles = props => {
18
18
  };
19
19
  const StyledCombobox = styled.div.attrs({
20
20
  'data-garden-id': COMPONENT_ID,
21
- 'data-garden-version': '9.0.0-next.13'
21
+ 'data-garden-version': '9.0.0-next.15'
22
22
  }).withConfig({
23
23
  displayName: "StyledCombobox",
24
24
  componentId: "sc-13eybg8-0"
@@ -10,7 +10,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
10
10
  const COMPONENT_ID = 'dropdowns.combobox.container';
11
11
  const StyledContainer = styled.div.attrs({
12
12
  'data-garden-id': COMPONENT_ID,
13
- 'data-garden-version': '9.0.0-next.13'
13
+ 'data-garden-version': '9.0.0-next.15'
14
14
  }).withConfig({
15
15
  displayName: "StyledContainer",
16
16
  componentId: "sc-14i9jid-0"
@@ -10,7 +10,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
10
10
  const COMPONENT_ID = 'dropdowns.combobox.field';
11
11
  const StyledField = styled.div.attrs({
12
12
  'data-garden-id': COMPONENT_ID,
13
- 'data-garden-version': '9.0.0-next.13'
13
+ 'data-garden-version': '9.0.0-next.15'
14
14
  }).withConfig({
15
15
  displayName: "StyledField",
16
16
  componentId: "sc-zc57xl-0"
@@ -10,7 +10,7 @@ import { menuStyles, retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgard
10
10
  const COMPONENT_ID = 'dropdowns.combobox.floating';
11
11
  const StyledFloatingListbox = styled.div.attrs({
12
12
  'data-garden-id': COMPONENT_ID,
13
- 'data-garden-version': '9.0.0-next.13'
13
+ 'data-garden-version': '9.0.0-next.15'
14
14
  }).withConfig({
15
15
  displayName: "StyledFloatingListbox",
16
16
  componentId: "sc-1cp6spf-0"
@@ -11,7 +11,7 @@ import { Field } from '@zendeskgarden/react-forms';
11
11
  const COMPONENT_ID = 'dropdowns.combobox.hint';
12
12
  const StyledHint = styled(Field.Hint).attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.0.0-next.13'
14
+ 'data-garden-version': '9.0.0-next.15'
15
15
  }).withConfig({
16
16
  displayName: "StyledHint",
17
17
  componentId: "sc-106qvqx-0"
@@ -35,7 +35,7 @@ const sizeStyles = props => {
35
35
  };
36
36
  const StyledInput = styled.input.attrs({
37
37
  'data-garden-id': COMPONENT_ID,
38
- 'data-garden-version': '9.0.0-next.13'
38
+ 'data-garden-version': '9.0.0-next.15'
39
39
  }).withConfig({
40
40
  displayName: "StyledInput",
41
41
  componentId: "sc-1lkqdg-0"
@@ -14,7 +14,7 @@ const sizeStyles = props => {
14
14
  };
15
15
  const StyledInputGroup = styled.div.attrs({
16
16
  'data-garden-id': COMPONENT_ID,
17
- 'data-garden-version': '9.0.0-next.13'
17
+ 'data-garden-version': '9.0.0-next.15'
18
18
  }).withConfig({
19
19
  displayName: "StyledInputGroup",
20
20
  componentId: "sc-yx3q7u-0"
@@ -50,7 +50,7 @@ const sizeStyles = props => {
50
50
  };
51
51
  const StyledInputIcon = styled(StyledBaseIcon).attrs({
52
52
  'data-garden-id': COMPONENT_ID,
53
- 'data-garden-version': '9.0.0-next.13'
53
+ 'data-garden-version': '9.0.0-next.15'
54
54
  }).withConfig({
55
55
  displayName: "StyledInputIcon",
56
56
  componentId: "sc-gqbs1s-0"
@@ -11,7 +11,7 @@ import { Field } from '@zendeskgarden/react-forms';
11
11
  const COMPONENT_ID = 'dropdowns.combobox.label';
12
12
  const StyledLabel = styled(Field.Label).attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.0.0-next.13'
14
+ 'data-garden-version': '9.0.0-next.15'
15
15
  }).withConfig({
16
16
  displayName: "StyledLabel",
17
17
  componentId: "sc-az6now-0"
@@ -19,7 +19,7 @@ const sizeStyles = props => {
19
19
  };
20
20
  const StyledListbox = styled.ul.attrs({
21
21
  'data-garden-id': COMPONENT_ID,
22
- 'data-garden-version': '9.0.0-next.13'
22
+ 'data-garden-version': '9.0.0-next.15'
23
23
  }).withConfig({
24
24
  displayName: "StyledListbox",
25
25
  componentId: "sc-1k13ba7-0"
@@ -25,7 +25,7 @@ const sizeStyles = props => {
25
25
  };
26
26
  const StyledListboxSeparator = styled.li.attrs({
27
27
  'data-garden-id': COMPONENT_ID,
28
- 'data-garden-version': '9.0.0-next.13'
28
+ 'data-garden-version': '9.0.0-next.15'
29
29
  }).withConfig({
30
30
  displayName: "StyledListboxSeparator",
31
31
  componentId: "sc-1p6toh2-0"
@@ -11,7 +11,7 @@ import { Field } from '@zendeskgarden/react-forms';
11
11
  const COMPONENT_ID = 'dropdowns.combobox.message';
12
12
  const StyledMessage = styled(Field.Message).attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.0.0-next.13'
14
+ 'data-garden-version': '9.0.0-next.15'
15
15
  }).withConfig({
16
16
  displayName: "StyledMessage",
17
17
  componentId: "sc-jux8m5-0"
@@ -10,7 +10,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
10
10
  const COMPONENT_ID = 'dropdowns.combobox.optgroup';
11
11
  const StyledOptGroup = styled.ul.attrs({
12
12
  'data-garden-id': COMPONENT_ID,
13
- 'data-garden-version': '9.0.0-next.13'
13
+ 'data-garden-version': '9.0.0-next.15'
14
14
  }).withConfig({
15
15
  displayName: "StyledOptGroup",
16
16
  componentId: "sc-1kavqsx-0"
@@ -57,7 +57,7 @@ const sizeStyles = props => {
57
57
  };
58
58
  const StyledOption = styled.li.attrs({
59
59
  'data-garden-id': COMPONENT_ID,
60
- 'data-garden-version': '9.0.0-next.13'
60
+ 'data-garden-version': '9.0.0-next.15'
61
61
  }).withConfig({
62
62
  displayName: "StyledOption",
63
63
  componentId: "sc-jl4wn6-0"
@@ -10,7 +10,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
10
10
  const COMPONENT_ID = 'dropdowns.combobox.option.content';
11
11
  const StyledOptionContent = styled.div.attrs({
12
12
  'data-garden-id': COMPONENT_ID,
13
- 'data-garden-version': '9.0.0-next.13'
13
+ 'data-garden-version': '9.0.0-next.15'
14
14
  }).withConfig({
15
15
  displayName: "StyledOptionContent",
16
16
  componentId: "sc-121ujpu-0"
@@ -39,7 +39,7 @@ const sizeStyles = props => {
39
39
  };
40
40
  const StyledOptionIcon = styled(StyledBaseIcon).attrs({
41
41
  'data-garden-id': COMPONENT_ID,
42
- 'data-garden-version': '9.0.0-next.13'
42
+ 'data-garden-version': '9.0.0-next.15'
43
43
  }).withConfig({
44
44
  displayName: "StyledOptionIcon",
45
45
  componentId: "sc-qsab3y-0"
@@ -27,7 +27,7 @@ const sizeStyles = props => {
27
27
  };
28
28
  const StyledOptionMeta = styled.div.attrs({
29
29
  'data-garden-id': COMPONENT_ID,
30
- 'data-garden-version': '9.0.0-next.13'
30
+ 'data-garden-version': '9.0.0-next.15'
31
31
  }).withConfig({
32
32
  displayName: "StyledOptionMeta",
33
33
  componentId: "sc-j6pu10-0"
@@ -46,7 +46,7 @@ const sizeStyles = props => {
46
46
  };
47
47
  const StyledOptionTypeIcon = styled(StyledBaseIcon).attrs({
48
48
  'data-garden-id': COMPONENT_ID,
49
- 'data-garden-version': '9.0.0-next.13'
49
+ 'data-garden-version': '9.0.0-next.15'
50
50
  }).withConfig({
51
51
  displayName: "StyledOptionTypeIcon",
52
52
  componentId: "sc-xpink2-0"
@@ -12,7 +12,7 @@ import { Tag } from '@zendeskgarden/react-tags';
12
12
  const COMPONENT_ID = 'dropdowns.combobox.tag';
13
13
  const StyledTag = styled(Tag).attrs({
14
14
  'data-garden-id': COMPONENT_ID,
15
- 'data-garden-version': '9.0.0-next.13'
15
+ 'data-garden-version': '9.0.0-next.15'
16
16
  }).withConfig({
17
17
  displayName: "StyledTag",
18
18
  componentId: "sc-1alam0r-0"
@@ -22,7 +22,7 @@ const colorStyles = _ref => {
22
22
  const StyledTagsButton = styled(StyledValue).attrs({
23
23
  as: 'button',
24
24
  'data-garden-id': COMPONENT_ID,
25
- 'data-garden-version': '9.0.0-next.13'
25
+ 'data-garden-version': '9.0.0-next.15'
26
26
  }).withConfig({
27
27
  displayName: "StyledTagsButton",
28
28
  componentId: "sc-6q5w33-0"
@@ -113,7 +113,7 @@ const sizeStyles = props => {
113
113
  };
114
114
  const StyledTrigger = styled.div.attrs({
115
115
  'data-garden-id': COMPONENT_ID,
116
- 'data-garden-version': '9.0.0-next.13'
116
+ 'data-garden-version': '9.0.0-next.15'
117
117
  }).withConfig({
118
118
  displayName: "StyledTrigger",
119
119
  componentId: "sc-116nftk-0"
@@ -22,7 +22,7 @@ const colorStyles = _ref => {
22
22
  };
23
23
  const StyledValue = styled.div.attrs({
24
24
  'data-garden-id': COMPONENT_ID,
25
- 'data-garden-version': '9.0.0-next.13'
25
+ 'data-garden-version': '9.0.0-next.15'
26
26
  }).withConfig({
27
27
  displayName: "StyledValue",
28
28
  componentId: "sc-t719sx-0"
@@ -11,7 +11,7 @@ import { StyledFloatingListbox } from '../combobox/StyledFloatingListbox.js';
11
11
  const COMPONENT_ID = 'dropdowns.menu.floating';
12
12
  const StyledFloatingMenu = styled(StyledFloatingListbox).attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.0.0-next.13'
14
+ 'data-garden-version': '9.0.0-next.15'
15
15
  }).withConfig({
16
16
  displayName: "StyledFloatingMenu",
17
17
  componentId: "sc-1rc7ahb-0"
@@ -11,7 +11,7 @@ import { StyledOption } from '../combobox/StyledOption.js';
11
11
  const COMPONENT_ID = 'dropdowns.menu.item';
12
12
  const StyledItem = styled(StyledOption).attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.0.0-next.13'
14
+ 'data-garden-version': '9.0.0-next.15'
15
15
  }).withConfig({
16
16
  displayName: "StyledItem",
17
17
  componentId: "sc-1jp99dq-0"
@@ -11,7 +11,7 @@ import { StyledOptionContent } from '../combobox/StyledOptionContent.js';
11
11
  const COMPONENT_ID = 'dropdowns.menu.item.content';
12
12
  const StyledItemContent = styled(StyledOptionContent).attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.0.0-next.13'
14
+ 'data-garden-version': '9.0.0-next.15'
15
15
  }).withConfig({
16
16
  displayName: "StyledItemContent",
17
17
  componentId: "sc-1opglsb-0"
@@ -11,7 +11,7 @@ import { StyledOptGroup } from '../combobox/StyledOptGroup.js';
11
11
  const COMPONENT_ID = 'dropdowns.menu.item_group';
12
12
  const StyledItemGroup = styled(StyledOptGroup).attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.0.0-next.13'
14
+ 'data-garden-version': '9.0.0-next.15'
15
15
  }).withConfig({
16
16
  displayName: "StyledItemGroup",
17
17
  componentId: "sc-1umk3cg-0"
@@ -11,7 +11,7 @@ import { StyledOptionIcon } from '../combobox/StyledOptionIcon.js';
11
11
  const COMPONENT_ID = 'dropdowns.menu.item.icon';
12
12
  const StyledItemIcon = styled(StyledOptionIcon).attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.0.0-next.13'
14
+ 'data-garden-version': '9.0.0-next.15'
15
15
  }).withConfig({
16
16
  displayName: "StyledItemIcon",
17
17
  componentId: "sc-w9orqb-0"
@@ -11,7 +11,7 @@ import { StyledOptionMeta } from '../combobox/StyledOptionMeta.js';
11
11
  const COMPONENT_ID = 'dropdowns.menu.item.meta';
12
12
  const StyledItemMeta = styled(StyledOptionMeta).attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.0.0-next.13'
14
+ 'data-garden-version': '9.0.0-next.15'
15
15
  }).withConfig({
16
16
  displayName: "StyledItemMeta",
17
17
  componentId: "sc-1unw3x1-0"
@@ -12,7 +12,7 @@ import { StyledItem } from './StyledItem.js';
12
12
  const COMPONENT_ID = 'dropdowns.menu.item.type_icon';
13
13
  const StyledItemTypeIcon = styled(StyledOptionTypeIcon).attrs({
14
14
  'data-garden-id': COMPONENT_ID,
15
- 'data-garden-version': '9.0.0-next.13'
15
+ 'data-garden-version': '9.0.0-next.15'
16
16
  }).withConfig({
17
17
  displayName: "StyledItemTypeIcon",
18
18
  componentId: "sc-1pll3nu-0"
@@ -11,7 +11,7 @@ import { StyledListbox } from '../combobox/StyledListbox.js';
11
11
  const COMPONENT_ID = 'dropdowns.menu';
12
12
  const StyledMenu = styled(StyledListbox).attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.0.0-next.13'
14
+ 'data-garden-version': '9.0.0-next.15'
15
15
  }).withConfig({
16
16
  displayName: "StyledMenu",
17
17
  componentId: "sc-f77ntu-0"
@@ -11,7 +11,7 @@ import { StyledListboxSeparator } from '../combobox/StyledListboxSeparator.js';
11
11
  const COMPONENT_ID = 'dropdowns.menu.separator';
12
12
  const StyledSeparator = styled(StyledListboxSeparator).attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.0.0-next.13'
14
+ 'data-garden-version': '9.0.0-next.15'
15
15
  }).withConfig({
16
16
  displayName: "StyledSeparator",
17
17
  componentId: "sc-8kqwen-0"
package/dist/index.cjs.js CHANGED
@@ -83,7 +83,7 @@ const useFieldContext = () => {
83
83
  const COMPONENT_ID$u = 'dropdowns.combobox.label';
84
84
  const StyledLabel = styled__default.default(reactForms.Field.Label).attrs({
85
85
  'data-garden-id': COMPONENT_ID$u,
86
- 'data-garden-version': '9.0.0-next.13'
86
+ 'data-garden-version': '9.0.0-next.15'
87
87
  }).withConfig({
88
88
  displayName: "StyledLabel",
89
89
  componentId: "sc-az6now-0"
@@ -95,7 +95,7 @@ StyledLabel.defaultProps = {
95
95
  const COMPONENT_ID$t = 'dropdowns.combobox.hint';
96
96
  const StyledHint = styled__default.default(reactForms.Field.Hint).attrs({
97
97
  'data-garden-id': COMPONENT_ID$t,
98
- 'data-garden-version': '9.0.0-next.13'
98
+ 'data-garden-version': '9.0.0-next.15'
99
99
  }).withConfig({
100
100
  displayName: "StyledHint",
101
101
  componentId: "sc-106qvqx-0"
@@ -107,7 +107,7 @@ StyledHint.defaultProps = {
107
107
  const COMPONENT_ID$s = 'dropdowns.combobox.message';
108
108
  const StyledMessage = styled__default.default(reactForms.Field.Message).attrs({
109
109
  'data-garden-id': COMPONENT_ID$s,
110
- 'data-garden-version': '9.0.0-next.13'
110
+ 'data-garden-version': '9.0.0-next.15'
111
111
  }).withConfig({
112
112
  displayName: "StyledMessage",
113
113
  componentId: "sc-jux8m5-0"
@@ -124,7 +124,7 @@ const sizeStyles$a = props => {
124
124
  };
125
125
  const StyledCombobox = styled__default.default.div.attrs({
126
126
  'data-garden-id': COMPONENT_ID$r,
127
- 'data-garden-version': '9.0.0-next.13'
127
+ 'data-garden-version': '9.0.0-next.15'
128
128
  }).withConfig({
129
129
  displayName: "StyledCombobox",
130
130
  componentId: "sc-13eybg8-0"
@@ -136,7 +136,7 @@ StyledCombobox.defaultProps = {
136
136
  const COMPONENT_ID$q = 'dropdowns.combobox.container';
137
137
  const StyledContainer = styled__default.default.div.attrs({
138
138
  'data-garden-id': COMPONENT_ID$q,
139
- 'data-garden-version': '9.0.0-next.13'
139
+ 'data-garden-version': '9.0.0-next.15'
140
140
  }).withConfig({
141
141
  displayName: "StyledContainer",
142
142
  componentId: "sc-14i9jid-0"
@@ -148,7 +148,7 @@ StyledContainer.defaultProps = {
148
148
  const COMPONENT_ID$p = 'dropdowns.combobox.field';
149
149
  const StyledField = styled__default.default.div.attrs({
150
150
  'data-garden-id': COMPONENT_ID$p,
151
- 'data-garden-version': '9.0.0-next.13'
151
+ 'data-garden-version': '9.0.0-next.15'
152
152
  }).withConfig({
153
153
  displayName: "StyledField",
154
154
  componentId: "sc-zc57xl-0"
@@ -160,7 +160,7 @@ StyledField.defaultProps = {
160
160
  const COMPONENT_ID$o = 'dropdowns.combobox.floating';
161
161
  const StyledFloatingListbox = styled__default.default.div.attrs({
162
162
  'data-garden-id': COMPONENT_ID$o,
163
- 'data-garden-version': '9.0.0-next.13'
163
+ 'data-garden-version': '9.0.0-next.15'
164
164
  }).withConfig({
165
165
  displayName: "StyledFloatingListbox",
166
166
  componentId: "sc-1cp6spf-0"
@@ -201,7 +201,7 @@ const sizeStyles$9 = props => {
201
201
  };
202
202
  const StyledInput = styled__default.default.input.attrs({
203
203
  'data-garden-id': COMPONENT_ID$n,
204
- 'data-garden-version': '9.0.0-next.13'
204
+ 'data-garden-version': '9.0.0-next.15'
205
205
  }).withConfig({
206
206
  displayName: "StyledInput",
207
207
  componentId: "sc-1lkqdg-0"
@@ -217,7 +217,7 @@ const sizeStyles$8 = props => {
217
217
  };
218
218
  const StyledInputGroup = styled__default.default.div.attrs({
219
219
  'data-garden-id': COMPONENT_ID$m,
220
- 'data-garden-version': '9.0.0-next.13'
220
+ 'data-garden-version': '9.0.0-next.15'
221
221
  }).withConfig({
222
222
  displayName: "StyledInputGroup",
223
223
  componentId: "sc-yx3q7u-0"
@@ -330,7 +330,7 @@ const sizeStyles$7 = props => {
330
330
  };
331
331
  const StyledTrigger = styled__default.default.div.attrs({
332
332
  'data-garden-id': COMPONENT_ID$l,
333
- 'data-garden-version': '9.0.0-next.13'
333
+ 'data-garden-version': '9.0.0-next.15'
334
334
  }).withConfig({
335
335
  displayName: "StyledTrigger",
336
336
  componentId: "sc-116nftk-0"
@@ -379,7 +379,7 @@ const sizeStyles$6 = props => {
379
379
  };
380
380
  const StyledInputIcon = styled__default.default(reactTheming.StyledBaseIcon).attrs({
381
381
  'data-garden-id': COMPONENT_ID$k,
382
- 'data-garden-version': '9.0.0-next.13'
382
+ 'data-garden-version': '9.0.0-next.15'
383
383
  }).withConfig({
384
384
  displayName: "StyledInputIcon",
385
385
  componentId: "sc-gqbs1s-0"
@@ -437,7 +437,7 @@ const sizeStyles$5 = props => {
437
437
  };
438
438
  const StyledOption = styled__default.default.li.attrs({
439
439
  'data-garden-id': COMPONENT_ID$j,
440
- 'data-garden-version': '9.0.0-next.13'
440
+ 'data-garden-version': '9.0.0-next.15'
441
441
  }).withConfig({
442
442
  displayName: "StyledOption",
443
443
  componentId: "sc-jl4wn6-0"
@@ -449,7 +449,7 @@ StyledOption.defaultProps = {
449
449
  const COMPONENT_ID$i = 'dropdowns.combobox.option.content';
450
450
  const StyledOptionContent = styled__default.default.div.attrs({
451
451
  'data-garden-id': COMPONENT_ID$i,
452
- 'data-garden-version': '9.0.0-next.13'
452
+ 'data-garden-version': '9.0.0-next.15'
453
453
  }).withConfig({
454
454
  displayName: "StyledOptionContent",
455
455
  componentId: "sc-121ujpu-0"
@@ -461,7 +461,7 @@ StyledOptionContent.defaultProps = {
461
461
  const COMPONENT_ID$h = 'dropdowns.combobox.optgroup';
462
462
  const StyledOptGroup = styled__default.default.ul.attrs({
463
463
  'data-garden-id': COMPONENT_ID$h,
464
- 'data-garden-version': '9.0.0-next.13'
464
+ 'data-garden-version': '9.0.0-next.15'
465
465
  }).withConfig({
466
466
  displayName: "StyledOptGroup",
467
467
  componentId: "sc-1kavqsx-0"
@@ -488,7 +488,7 @@ const sizeStyles$4 = props => {
488
488
  };
489
489
  const StyledListboxSeparator = styled__default.default.li.attrs({
490
490
  'data-garden-id': COMPONENT_ID$g,
491
- 'data-garden-version': '9.0.0-next.13'
491
+ 'data-garden-version': '9.0.0-next.15'
492
492
  }).withConfig({
493
493
  displayName: "StyledListboxSeparator",
494
494
  componentId: "sc-1p6toh2-0"
@@ -505,7 +505,7 @@ const sizeStyles$3 = props => {
505
505
  };
506
506
  const StyledListbox = styled__default.default.ul.attrs({
507
507
  'data-garden-id': COMPONENT_ID$f,
508
- 'data-garden-version': '9.0.0-next.13'
508
+ 'data-garden-version': '9.0.0-next.15'
509
509
  }).withConfig({
510
510
  displayName: "StyledListbox",
511
511
  componentId: "sc-1k13ba7-0"
@@ -545,7 +545,7 @@ const sizeStyles$2 = props => {
545
545
  };
546
546
  const StyledOptionIcon = styled__default.default(reactTheming.StyledBaseIcon).attrs({
547
547
  'data-garden-id': COMPONENT_ID$e,
548
- 'data-garden-version': '9.0.0-next.13'
548
+ 'data-garden-version': '9.0.0-next.15'
549
549
  }).withConfig({
550
550
  displayName: "StyledOptionIcon",
551
551
  componentId: "sc-qsab3y-0"
@@ -574,7 +574,7 @@ const sizeStyles$1 = props => {
574
574
  };
575
575
  const StyledOptionMeta = styled__default.default.div.attrs({
576
576
  'data-garden-id': COMPONENT_ID$d,
577
- 'data-garden-version': '9.0.0-next.13'
577
+ 'data-garden-version': '9.0.0-next.15'
578
578
  }).withConfig({
579
579
  displayName: "StyledOptionMeta",
580
580
  componentId: "sc-j6pu10-0"
@@ -620,7 +620,7 @@ const sizeStyles = props => {
620
620
  };
621
621
  const StyledOptionTypeIcon = styled__default.default(reactTheming.StyledBaseIcon).attrs({
622
622
  'data-garden-id': COMPONENT_ID$c,
623
- 'data-garden-version': '9.0.0-next.13'
623
+ 'data-garden-version': '9.0.0-next.15'
624
624
  }).withConfig({
625
625
  displayName: "StyledOptionTypeIcon",
626
626
  componentId: "sc-xpink2-0"
@@ -632,7 +632,7 @@ StyledOptionTypeIcon.defaultProps = {
632
632
  const COMPONENT_ID$b = 'dropdowns.combobox.tag';
633
633
  const StyledTag = styled__default.default(reactTags.Tag).attrs({
634
634
  'data-garden-id': COMPONENT_ID$b,
635
- 'data-garden-version': '9.0.0-next.13'
635
+ 'data-garden-version': '9.0.0-next.15'
636
636
  }).withConfig({
637
637
  displayName: "StyledTag",
638
638
  componentId: "sc-1alam0r-0"
@@ -658,7 +658,7 @@ const colorStyles$1 = _ref => {
658
658
  };
659
659
  const StyledValue = styled__default.default.div.attrs({
660
660
  'data-garden-id': COMPONENT_ID$a,
661
- 'data-garden-version': '9.0.0-next.13'
661
+ 'data-garden-version': '9.0.0-next.15'
662
662
  }).withConfig({
663
663
  displayName: "StyledValue",
664
664
  componentId: "sc-t719sx-0"
@@ -686,7 +686,7 @@ const colorStyles = _ref => {
686
686
  const StyledTagsButton = styled__default.default(StyledValue).attrs({
687
687
  as: 'button',
688
688
  'data-garden-id': COMPONENT_ID$9,
689
- 'data-garden-version': '9.0.0-next.13'
689
+ 'data-garden-version': '9.0.0-next.15'
690
690
  }).withConfig({
691
691
  displayName: "StyledTagsButton",
692
692
  componentId: "sc-6q5w33-0"
@@ -698,7 +698,7 @@ StyledTagsButton.defaultProps = {
698
698
  const COMPONENT_ID$8 = 'dropdowns.menu';
699
699
  const StyledMenu = styled__default.default(StyledListbox).attrs({
700
700
  'data-garden-id': COMPONENT_ID$8,
701
- 'data-garden-version': '9.0.0-next.13'
701
+ 'data-garden-version': '9.0.0-next.15'
702
702
  }).withConfig({
703
703
  displayName: "StyledMenu",
704
704
  componentId: "sc-f77ntu-0"
@@ -714,7 +714,7 @@ StyledMenu.defaultProps = {
714
714
  const COMPONENT_ID$7 = 'dropdowns.menu.floating';
715
715
  const StyledFloatingMenu = styled__default.default(StyledFloatingListbox).attrs({
716
716
  'data-garden-id': COMPONENT_ID$7,
717
- 'data-garden-version': '9.0.0-next.13'
717
+ 'data-garden-version': '9.0.0-next.15'
718
718
  }).withConfig({
719
719
  displayName: "StyledFloatingMenu",
720
720
  componentId: "sc-1rc7ahb-0"
@@ -726,7 +726,7 @@ StyledFloatingMenu.defaultProps = {
726
726
  const COMPONENT_ID$6 = 'dropdowns.menu.item';
727
727
  const StyledItem = styled__default.default(StyledOption).attrs({
728
728
  'data-garden-id': COMPONENT_ID$6,
729
- 'data-garden-version': '9.0.0-next.13'
729
+ 'data-garden-version': '9.0.0-next.15'
730
730
  }).withConfig({
731
731
  displayName: "StyledItem",
732
732
  componentId: "sc-1jp99dq-0"
@@ -738,7 +738,7 @@ StyledItem.defaultProps = {
738
738
  const COMPONENT_ID$5 = 'dropdowns.menu.item.content';
739
739
  const StyledItemContent = styled__default.default(StyledOptionContent).attrs({
740
740
  'data-garden-id': COMPONENT_ID$5,
741
- 'data-garden-version': '9.0.0-next.13'
741
+ 'data-garden-version': '9.0.0-next.15'
742
742
  }).withConfig({
743
743
  displayName: "StyledItemContent",
744
744
  componentId: "sc-1opglsb-0"
@@ -750,7 +750,7 @@ StyledItemContent.defaultProps = {
750
750
  const COMPONENT_ID$4 = 'dropdowns.menu.item_group';
751
751
  const StyledItemGroup = styled__default.default(StyledOptGroup).attrs({
752
752
  'data-garden-id': COMPONENT_ID$4,
753
- 'data-garden-version': '9.0.0-next.13'
753
+ 'data-garden-version': '9.0.0-next.15'
754
754
  }).withConfig({
755
755
  displayName: "StyledItemGroup",
756
756
  componentId: "sc-1umk3cg-0"
@@ -762,7 +762,7 @@ StyledItemGroup.defaultProps = {
762
762
  const COMPONENT_ID$3 = 'dropdowns.menu.item.icon';
763
763
  const StyledItemIcon = styled__default.default(StyledOptionIcon).attrs({
764
764
  'data-garden-id': COMPONENT_ID$3,
765
- 'data-garden-version': '9.0.0-next.13'
765
+ 'data-garden-version': '9.0.0-next.15'
766
766
  }).withConfig({
767
767
  displayName: "StyledItemIcon",
768
768
  componentId: "sc-w9orqb-0"
@@ -774,7 +774,7 @@ StyledItemIcon.defaultProps = {
774
774
  const COMPONENT_ID$2 = 'dropdowns.menu.item.meta';
775
775
  const StyledItemMeta = styled__default.default(StyledOptionMeta).attrs({
776
776
  'data-garden-id': COMPONENT_ID$2,
777
- 'data-garden-version': '9.0.0-next.13'
777
+ 'data-garden-version': '9.0.0-next.15'
778
778
  }).withConfig({
779
779
  displayName: "StyledItemMeta",
780
780
  componentId: "sc-1unw3x1-0"
@@ -786,7 +786,7 @@ StyledItemMeta.defaultProps = {
786
786
  const COMPONENT_ID$1 = 'dropdowns.menu.item.type_icon';
787
787
  const StyledItemTypeIcon = styled__default.default(StyledOptionTypeIcon).attrs({
788
788
  'data-garden-id': COMPONENT_ID$1,
789
- 'data-garden-version': '9.0.0-next.13'
789
+ 'data-garden-version': '9.0.0-next.15'
790
790
  }).withConfig({
791
791
  displayName: "StyledItemTypeIcon",
792
792
  componentId: "sc-1pll3nu-0"
@@ -798,7 +798,7 @@ StyledItemTypeIcon.defaultProps = {
798
798
  const COMPONENT_ID = 'dropdowns.menu.separator';
799
799
  const StyledSeparator = styled__default.default(StyledListboxSeparator).attrs({
800
800
  'data-garden-id': COMPONENT_ID,
801
- 'data-garden-version': '9.0.0-next.13'
801
+ 'data-garden-version': '9.0.0-next.15'
802
802
  }).withConfig({
803
803
  displayName: "StyledSeparator",
804
804
  componentId: "sc-8kqwen-0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zendeskgarden/react-dropdowns",
3
- "version": "9.0.0-next.13",
3
+ "version": "9.0.0-next.15",
4
4
  "description": "Components related to dropdowns in the Garden Design System",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Zendesk Garden <garden@zendesk.com>",
@@ -25,10 +25,10 @@
25
25
  "@zendeskgarden/container-combobox": "^2.0.0",
26
26
  "@zendeskgarden/container-menu": "^0.3.0",
27
27
  "@zendeskgarden/container-utilities": "^2.0.0",
28
- "@zendeskgarden/react-buttons": "^9.0.0-next.13",
29
- "@zendeskgarden/react-forms": "^9.0.0-next.13",
30
- "@zendeskgarden/react-tags": "^9.0.0-next.13",
31
- "@zendeskgarden/react-tooltips": "^9.0.0-next.13",
28
+ "@zendeskgarden/react-buttons": "^9.0.0-next.15",
29
+ "@zendeskgarden/react-forms": "^9.0.0-next.15",
30
+ "@zendeskgarden/react-tags": "^9.0.0-next.15",
31
+ "@zendeskgarden/react-tooltips": "^9.0.0-next.15",
32
32
  "polished": "^4.3.1",
33
33
  "prop-types": "^15.7.2",
34
34
  "react-merge-refs": "^2.0.0"
@@ -40,7 +40,7 @@
40
40
  "styled-components": "^5.3.1"
41
41
  },
42
42
  "devDependencies": {
43
- "@zendeskgarden/react-theming": "^9.0.0-next.13",
43
+ "@zendeskgarden/react-theming": "^9.0.0-next.15",
44
44
  "@zendeskgarden/svg-icons": "7.0.0"
45
45
  },
46
46
  "keywords": [
@@ -53,5 +53,6 @@
53
53
  "publishConfig": {
54
54
  "access": "public"
55
55
  },
56
- "zendeskgarden:src": "src/index.ts"
56
+ "zendeskgarden:src": "src/index.ts",
57
+ "gitHead": "f165ebfd3f53d4cbc2ac788bb3c1cd07348a16de"
57
58
  }