@sproutsocial/seeds-react-tooltip 1.1.32 → 1.1.34
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/esm/index.js +110 -22
- package/dist/esm/index.js.map +1 -1
- package/dist/index.js +119 -31
- package/dist/index.js.map +1 -1
- package/dist/tooltip.css +41 -0
- package/package.json +19 -8
- package/.eslintignore +0 -6
- package/.eslintrc.js +0 -4
- package/.turbo/turbo-build.log +0 -21
- package/CHANGELOG.md +0 -395
- package/jest.config.js +0 -9
- package/src/Tooltip.stories.tsx +0 -312
- package/src/Tooltip.tsx +0 -206
- package/src/TooltipTypes.ts +0 -77
- package/src/__tests__/Tooltip.test.tsx +0 -285
- package/src/__tests__/Tooltip.typetest.tsx +0 -27
- package/src/__tests__/mapPlacement.test.ts +0 -56
- package/src/index.ts +0 -5
- package/src/styled.d.ts +0 -7
- package/src/styles.ts +0 -11
- package/tsconfig.json +0 -15
- package/tsup.config.ts +0 -12
package/package.json
CHANGED
|
@@ -1,15 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sproutsocial/seeds-react-tooltip",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.34",
|
|
4
4
|
"description": "Seeds React Tooltip",
|
|
5
5
|
"author": "Sprout Social, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"module": "dist/esm/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./dist/esm/index.js",
|
|
16
|
+
"require": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./dist/tooltip.css": "./dist/tooltip.css"
|
|
20
|
+
},
|
|
10
21
|
"scripts": {
|
|
11
|
-
"build": "tsup --dts",
|
|
12
|
-
"build:debug": "tsup --dts --metafile",
|
|
22
|
+
"build": "tsup --dts && cp src/tooltip.css dist/tooltip.css",
|
|
23
|
+
"build:debug": "tsup --dts --metafile && cp src/tooltip.css dist/tooltip.css",
|
|
13
24
|
"dev": "tsup --watch --dts",
|
|
14
25
|
"clean": "rm -rf .turbo dist",
|
|
15
26
|
"clean:modules": "rm -rf node_modules",
|
|
@@ -19,9 +30,9 @@
|
|
|
19
30
|
},
|
|
20
31
|
"dependencies": {
|
|
21
32
|
"@base-ui/react": "^1.3.0",
|
|
22
|
-
"@sproutsocial/seeds-react-theme": "^4.3.
|
|
33
|
+
"@sproutsocial/seeds-react-theme": "^4.3.1",
|
|
23
34
|
"@sproutsocial/seeds-react-system-props": "^3.1.3",
|
|
24
|
-
"@sproutsocial/seeds-react-box": "^1.1.
|
|
35
|
+
"@sproutsocial/seeds-react-box": "^1.1.27",
|
|
25
36
|
"@sproutsocial/seeds-react-portal": "^1.2.0",
|
|
26
37
|
"@sproutsocial/seeds-motion": "^1.8.2"
|
|
27
38
|
},
|
|
@@ -36,9 +47,9 @@
|
|
|
36
47
|
"@sproutsocial/seeds-tsconfig": "*",
|
|
37
48
|
"@sproutsocial/seeds-testing": "*",
|
|
38
49
|
"@sproutsocial/seeds-react-testing-library": "*",
|
|
39
|
-
"@sproutsocial/seeds-react-icon": "^2.4.
|
|
40
|
-
"@sproutsocial/seeds-react-banner": "^1.1.
|
|
41
|
-
"@sproutsocial/seeds-react-button": "^2.3.
|
|
50
|
+
"@sproutsocial/seeds-react-icon": "^2.4.6",
|
|
51
|
+
"@sproutsocial/seeds-react-banner": "^1.1.29",
|
|
52
|
+
"@sproutsocial/seeds-react-button": "^2.3.2",
|
|
42
53
|
"@sproutsocial/seeds-react-text": "^1.5.2"
|
|
43
54
|
},
|
|
44
55
|
"peerDependencies": {
|
package/.eslintignore
DELETED
package/.eslintrc.js
DELETED
package/.turbo/turbo-build.log
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
yarn run v1.22.22
|
|
2
|
-
$ tsup --dts
|
|
3
|
-
[34mCLI[39m Building entry: src/index.ts
|
|
4
|
-
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
5
|
-
[34mCLI[39m tsup v8.5.0
|
|
6
|
-
[34mCLI[39m Using tsup config: /home/runner/_work/seeds/seeds/seeds-react/seeds-react-tooltip/tsup.config.ts
|
|
7
|
-
[34mCLI[39m Target: es2022
|
|
8
|
-
[34mCLI[39m Cleaning output folder
|
|
9
|
-
[34mCJS[39m Build start
|
|
10
|
-
[34mESM[39m Build start
|
|
11
|
-
[32mCJS[39m [1mdist/index.js [22m[32m7.77 KB[39m
|
|
12
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m12.50 KB[39m
|
|
13
|
-
[32mCJS[39m ⚡️ Build success in 14ms
|
|
14
|
-
[32mESM[39m [1mdist/esm/index.js [22m[32m5.59 KB[39m
|
|
15
|
-
[32mESM[39m [1mdist/esm/index.js.map [22m[32m12.37 KB[39m
|
|
16
|
-
[32mESM[39m ⚡️ Build success in 14ms
|
|
17
|
-
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in 2602ms
|
|
19
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m3.03 KB[39m
|
|
20
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m3.03 KB[39m
|
|
21
|
-
Done in 3.54s.
|
package/CHANGELOG.md
DELETED
|
@@ -1,395 +0,0 @@
|
|
|
1
|
-
# @sproutsocial/seeds-react-tooltip
|
|
2
|
-
|
|
3
|
-
## 1.1.32
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- Updated dependencies [b77aca0]
|
|
8
|
-
- Updated dependencies [2e72599]
|
|
9
|
-
- @sproutsocial/seeds-react-system-props@3.1.3
|
|
10
|
-
- @sproutsocial/seeds-react-theme@4.3.0
|
|
11
|
-
- @sproutsocial/seeds-react-box@1.1.26
|
|
12
|
-
|
|
13
|
-
## 1.1.31
|
|
14
|
-
|
|
15
|
-
### Patch Changes
|
|
16
|
-
|
|
17
|
-
- Updated dependencies [d21ae54]
|
|
18
|
-
- @sproutsocial/seeds-react-theme@4.2.1
|
|
19
|
-
- @sproutsocial/seeds-react-box@1.1.25
|
|
20
|
-
|
|
21
|
-
## 1.1.30
|
|
22
|
-
|
|
23
|
-
### Patch Changes
|
|
24
|
-
|
|
25
|
-
- Updated dependencies [6611f6a]
|
|
26
|
-
- @sproutsocial/seeds-react-system-props@3.1.2
|
|
27
|
-
- @sproutsocial/seeds-react-box@1.1.24
|
|
28
|
-
|
|
29
|
-
## 1.1.29
|
|
30
|
-
|
|
31
|
-
### Patch Changes
|
|
32
|
-
|
|
33
|
-
- Updated dependencies [85f9728]
|
|
34
|
-
- Updated dependencies [fa7d859]
|
|
35
|
-
- @sproutsocial/seeds-react-theme@4.2.0
|
|
36
|
-
- @sproutsocial/seeds-react-box@1.1.23
|
|
37
|
-
|
|
38
|
-
## 1.1.28
|
|
39
|
-
|
|
40
|
-
### Patch Changes
|
|
41
|
-
|
|
42
|
-
- Updated dependencies [a13a571]
|
|
43
|
-
- @sproutsocial/seeds-react-theme@4.1.1
|
|
44
|
-
- @sproutsocial/seeds-react-box@1.1.22
|
|
45
|
-
|
|
46
|
-
## 1.1.27
|
|
47
|
-
|
|
48
|
-
### Patch Changes
|
|
49
|
-
|
|
50
|
-
- Updated dependencies [5892f44]
|
|
51
|
-
- @sproutsocial/seeds-react-system-props@3.1.1
|
|
52
|
-
- @sproutsocial/seeds-react-box@1.1.21
|
|
53
|
-
|
|
54
|
-
## 1.1.26
|
|
55
|
-
|
|
56
|
-
### Patch Changes
|
|
57
|
-
|
|
58
|
-
- Updated dependencies [5114a32]
|
|
59
|
-
- @sproutsocial/seeds-react-theme@4.1.0
|
|
60
|
-
- @sproutsocial/seeds-react-box@1.1.20
|
|
61
|
-
|
|
62
|
-
## 1.1.25
|
|
63
|
-
|
|
64
|
-
### Patch Changes
|
|
65
|
-
|
|
66
|
-
- Updated dependencies [132ef9d]
|
|
67
|
-
- Updated dependencies [132ef9d]
|
|
68
|
-
- @sproutsocial/seeds-react-theme@4.0.0
|
|
69
|
-
- @sproutsocial/seeds-react-system-props@3.1.0
|
|
70
|
-
- @sproutsocial/seeds-react-box@1.1.19
|
|
71
|
-
|
|
72
|
-
## 1.1.24
|
|
73
|
-
|
|
74
|
-
### Patch Changes
|
|
75
|
-
|
|
76
|
-
- Updated dependencies [47c62b3]
|
|
77
|
-
- @sproutsocial/seeds-react-theme@3.7.1
|
|
78
|
-
- @sproutsocial/seeds-react-box@1.1.18
|
|
79
|
-
|
|
80
|
-
## 1.1.23
|
|
81
|
-
|
|
82
|
-
### Patch Changes
|
|
83
|
-
|
|
84
|
-
- Updated dependencies [06da9c2]
|
|
85
|
-
- @sproutsocial/seeds-react-theme@3.7.0
|
|
86
|
-
- @sproutsocial/seeds-react-box@1.1.17
|
|
87
|
-
|
|
88
|
-
## 1.1.22
|
|
89
|
-
|
|
90
|
-
### Patch Changes
|
|
91
|
-
|
|
92
|
-
- e5f4df1: Replace internal Tooltip implementation with @base-ui/react Tooltip primitives while preserving the existing public props API.
|
|
93
|
-
|
|
94
|
-
Behavioral note: the `placement` prop still accepts `auto`, `auto-start`, and `auto-end`, but these no longer perform Popper-style "best available side" selection. They now anchor to the `top` side (with the requested alignment) and rely on base-ui's runtime collision flipping to move off `top` only when there is not enough room. Since `placement` defaults to `auto`, tooltips that did not specify a placement will start at `top` and flip on collision instead of being positioned on the side with the most available space.
|
|
95
|
-
|
|
96
|
-
## 1.1.21
|
|
97
|
-
|
|
98
|
-
### Patch Changes
|
|
99
|
-
|
|
100
|
-
- Updated dependencies [6c3e44e]
|
|
101
|
-
- @sproutsocial/seeds-react-popout@2.5.0
|
|
102
|
-
|
|
103
|
-
## 1.1.20
|
|
104
|
-
|
|
105
|
-
### Patch Changes
|
|
106
|
-
|
|
107
|
-
- @sproutsocial/seeds-react-popout@2.4.38
|
|
108
|
-
|
|
109
|
-
## 1.1.19
|
|
110
|
-
|
|
111
|
-
### Patch Changes
|
|
112
|
-
|
|
113
|
-
- @sproutsocial/seeds-react-popout@2.4.37
|
|
114
|
-
|
|
115
|
-
## 1.1.18
|
|
116
|
-
|
|
117
|
-
### Patch Changes
|
|
118
|
-
|
|
119
|
-
- @sproutsocial/seeds-react-popout@2.4.36
|
|
120
|
-
|
|
121
|
-
## 1.1.17
|
|
122
|
-
|
|
123
|
-
### Patch Changes
|
|
124
|
-
|
|
125
|
-
- @sproutsocial/seeds-react-popout@2.4.35
|
|
126
|
-
|
|
127
|
-
## 1.1.16
|
|
128
|
-
|
|
129
|
-
### Patch Changes
|
|
130
|
-
|
|
131
|
-
- Updated dependencies [1a614a1]
|
|
132
|
-
- @sproutsocial/seeds-react-popout@2.4.34
|
|
133
|
-
|
|
134
|
-
## 1.1.15
|
|
135
|
-
|
|
136
|
-
### Patch Changes
|
|
137
|
-
|
|
138
|
-
- @sproutsocial/seeds-react-popout@2.4.33
|
|
139
|
-
|
|
140
|
-
## 1.1.14
|
|
141
|
-
|
|
142
|
-
### Patch Changes
|
|
143
|
-
|
|
144
|
-
- Updated dependencies [4ba8720]
|
|
145
|
-
- @sproutsocial/seeds-react-theme@3.6.2
|
|
146
|
-
- @sproutsocial/seeds-react-box@1.1.16
|
|
147
|
-
- @sproutsocial/seeds-react-popout@2.4.32
|
|
148
|
-
|
|
149
|
-
## 1.1.13
|
|
150
|
-
|
|
151
|
-
### Patch Changes
|
|
152
|
-
|
|
153
|
-
- Updated dependencies [1f9a473]
|
|
154
|
-
- @sproutsocial/seeds-react-theme@3.6.1
|
|
155
|
-
- @sproutsocial/seeds-react-box@1.1.15
|
|
156
|
-
- @sproutsocial/seeds-react-popout@2.4.31
|
|
157
|
-
|
|
158
|
-
## 1.1.12
|
|
159
|
-
|
|
160
|
-
### Patch Changes
|
|
161
|
-
|
|
162
|
-
- @sproutsocial/seeds-react-popout@2.4.30
|
|
163
|
-
|
|
164
|
-
## 1.1.11
|
|
165
|
-
|
|
166
|
-
### Patch Changes
|
|
167
|
-
|
|
168
|
-
- @sproutsocial/seeds-react-popout@2.4.29
|
|
169
|
-
|
|
170
|
-
## 1.1.10
|
|
171
|
-
|
|
172
|
-
### Patch Changes
|
|
173
|
-
|
|
174
|
-
- @sproutsocial/seeds-react-popout@2.4.28
|
|
175
|
-
|
|
176
|
-
## 1.1.9
|
|
177
|
-
|
|
178
|
-
### Patch Changes
|
|
179
|
-
|
|
180
|
-
- Updated dependencies [17d4f12]
|
|
181
|
-
- @sproutsocial/seeds-react-theme@3.6.0
|
|
182
|
-
- @sproutsocial/seeds-react-box@1.1.14
|
|
183
|
-
- @sproutsocial/seeds-react-popout@2.4.27
|
|
184
|
-
|
|
185
|
-
## 1.1.8
|
|
186
|
-
|
|
187
|
-
### Patch Changes
|
|
188
|
-
|
|
189
|
-
- @sproutsocial/seeds-react-popout@2.4.26
|
|
190
|
-
|
|
191
|
-
## 1.1.7
|
|
192
|
-
|
|
193
|
-
### Patch Changes
|
|
194
|
-
|
|
195
|
-
- Updated dependencies [65e410f]
|
|
196
|
-
- @sproutsocial/seeds-react-popout@2.4.25
|
|
197
|
-
|
|
198
|
-
## 1.1.6
|
|
199
|
-
|
|
200
|
-
### Patch Changes
|
|
201
|
-
|
|
202
|
-
- Updated dependencies [118e300]
|
|
203
|
-
- @sproutsocial/seeds-react-theme@3.5.1
|
|
204
|
-
- @sproutsocial/seeds-react-box@1.1.13
|
|
205
|
-
- @sproutsocial/seeds-react-popout@2.4.24
|
|
206
|
-
|
|
207
|
-
## 1.1.5
|
|
208
|
-
|
|
209
|
-
### Patch Changes
|
|
210
|
-
|
|
211
|
-
- Updated dependencies [c2f3166]
|
|
212
|
-
- @sproutsocial/seeds-react-popout@2.4.23
|
|
213
|
-
|
|
214
|
-
## 1.1.4
|
|
215
|
-
|
|
216
|
-
### Patch Changes
|
|
217
|
-
|
|
218
|
-
- @sproutsocial/seeds-react-popout@2.4.22
|
|
219
|
-
|
|
220
|
-
## 1.1.3
|
|
221
|
-
|
|
222
|
-
### Patch Changes
|
|
223
|
-
|
|
224
|
-
- @sproutsocial/seeds-react-popout@2.4.21
|
|
225
|
-
|
|
226
|
-
## 1.1.2
|
|
227
|
-
|
|
228
|
-
### Patch Changes
|
|
229
|
-
|
|
230
|
-
- Updated dependencies [db6ce39]
|
|
231
|
-
- Updated dependencies [20bb01b]
|
|
232
|
-
- @sproutsocial/seeds-react-theme@3.5.0
|
|
233
|
-
- @sproutsocial/seeds-react-box@1.1.12
|
|
234
|
-
- @sproutsocial/seeds-react-popout@2.4.20
|
|
235
|
-
|
|
236
|
-
## 1.1.1
|
|
237
|
-
|
|
238
|
-
### Patch Changes
|
|
239
|
-
|
|
240
|
-
- Updated dependencies [7716e16]
|
|
241
|
-
- @sproutsocial/seeds-react-theme@3.4.0
|
|
242
|
-
- @sproutsocial/seeds-react-box@1.1.11
|
|
243
|
-
- @sproutsocial/seeds-react-popout@2.4.19
|
|
244
|
-
|
|
245
|
-
## 1.1.0
|
|
246
|
-
|
|
247
|
-
### Minor Changes
|
|
248
|
-
|
|
249
|
-
- ade2a6f: Added exitDelay prop to Tooltip
|
|
250
|
-
- c85d800: Change mouseenter behavior to prevent the tooltip from disappearing
|
|
251
|
-
|
|
252
|
-
## 1.0.17
|
|
253
|
-
|
|
254
|
-
### Patch Changes
|
|
255
|
-
|
|
256
|
-
- Updated dependencies [5e08137]
|
|
257
|
-
- @sproutsocial/seeds-motion@1.8.2
|
|
258
|
-
- @sproutsocial/seeds-react-theme@3.3.2
|
|
259
|
-
- @sproutsocial/seeds-react-popout@2.4.18
|
|
260
|
-
- @sproutsocial/seeds-react-box@1.1.10
|
|
261
|
-
|
|
262
|
-
## 1.0.16
|
|
263
|
-
|
|
264
|
-
### Patch Changes
|
|
265
|
-
|
|
266
|
-
- @sproutsocial/seeds-react-popout@2.4.17
|
|
267
|
-
|
|
268
|
-
## 1.0.15
|
|
269
|
-
|
|
270
|
-
### Patch Changes
|
|
271
|
-
|
|
272
|
-
- @sproutsocial/seeds-react-theme@3.3.1
|
|
273
|
-
- @sproutsocial/seeds-react-box@1.1.9
|
|
274
|
-
- @sproutsocial/seeds-react-popout@2.4.16
|
|
275
|
-
|
|
276
|
-
## 1.0.14
|
|
277
|
-
|
|
278
|
-
### Patch Changes
|
|
279
|
-
|
|
280
|
-
- Updated dependencies [750d1ea]
|
|
281
|
-
- @sproutsocial/seeds-react-theme@3.3.0
|
|
282
|
-
- @sproutsocial/seeds-react-popout@2.4.15
|
|
283
|
-
- @sproutsocial/seeds-react-box@1.1.8
|
|
284
|
-
|
|
285
|
-
## 1.0.13
|
|
286
|
-
|
|
287
|
-
### Patch Changes
|
|
288
|
-
|
|
289
|
-
- @sproutsocial/seeds-react-popout@2.4.14
|
|
290
|
-
|
|
291
|
-
## 1.0.12
|
|
292
|
-
|
|
293
|
-
### Patch Changes
|
|
294
|
-
|
|
295
|
-
- @sproutsocial/seeds-react-popout@2.4.13
|
|
296
|
-
|
|
297
|
-
## 1.0.11
|
|
298
|
-
|
|
299
|
-
### Patch Changes
|
|
300
|
-
|
|
301
|
-
- Updated dependencies [fa7579a]
|
|
302
|
-
- @sproutsocial/seeds-react-theme@3.2.1
|
|
303
|
-
- @sproutsocial/seeds-react-box@1.1.7
|
|
304
|
-
- @sproutsocial/seeds-react-popout@2.4.12
|
|
305
|
-
|
|
306
|
-
## 1.0.10
|
|
307
|
-
|
|
308
|
-
### Patch Changes
|
|
309
|
-
|
|
310
|
-
- @sproutsocial/seeds-react-popout@2.4.11
|
|
311
|
-
|
|
312
|
-
## 1.0.9
|
|
313
|
-
|
|
314
|
-
### Patch Changes
|
|
315
|
-
|
|
316
|
-
- 5e20b0b: Fix Tooltip ARIA attributes for improved accessibility
|
|
317
|
-
|
|
318
|
-
- `aria-describedby` is now only set when the tooltip is open, rather than always being present. This ensures the association between the trigger element and tooltip content is only established when the tooltip is visible.
|
|
319
|
-
- `aria-expanded` is now only set when the child element already has this attribute (e.g., for drawer/disclosure patterns). Previously, it was incorrectly set to the tooltip's open state for all elements.
|
|
320
|
-
|
|
321
|
-
These changes improve screen reader behavior and align with ARIA best practices for tooltip components.
|
|
322
|
-
|
|
323
|
-
- Updated dependencies [8f6ba8d]
|
|
324
|
-
- @sproutsocial/seeds-react-theme@3.2.0
|
|
325
|
-
- @sproutsocial/seeds-react-box@1.1.6
|
|
326
|
-
- @sproutsocial/seeds-react-popout@2.4.10
|
|
327
|
-
|
|
328
|
-
## 1.0.8
|
|
329
|
-
|
|
330
|
-
### Patch Changes
|
|
331
|
-
|
|
332
|
-
- @sproutsocial/seeds-react-popout@2.4.9
|
|
333
|
-
|
|
334
|
-
## 1.0.7
|
|
335
|
-
|
|
336
|
-
### Patch Changes
|
|
337
|
-
|
|
338
|
-
- @sproutsocial/seeds-react-popout@2.4.8
|
|
339
|
-
|
|
340
|
-
## 1.0.6
|
|
341
|
-
|
|
342
|
-
### Patch Changes
|
|
343
|
-
|
|
344
|
-
- Updated dependencies [cb63a0a]
|
|
345
|
-
- @sproutsocial/seeds-react-popout@2.4.7
|
|
346
|
-
|
|
347
|
-
## 1.0.5
|
|
348
|
-
|
|
349
|
-
### Patch Changes
|
|
350
|
-
|
|
351
|
-
- Updated dependencies [b1c3b44]
|
|
352
|
-
- @sproutsocial/seeds-react-theme@3.1.1
|
|
353
|
-
- @sproutsocial/seeds-react-box@1.1.5
|
|
354
|
-
- @sproutsocial/seeds-react-popout@2.4.6
|
|
355
|
-
|
|
356
|
-
## 1.0.4
|
|
357
|
-
|
|
358
|
-
### Patch Changes
|
|
359
|
-
|
|
360
|
-
- @sproutsocial/seeds-react-popout@2.4.5
|
|
361
|
-
|
|
362
|
-
## 1.0.3
|
|
363
|
-
|
|
364
|
-
### Patch Changes
|
|
365
|
-
|
|
366
|
-
- Updated dependencies [47580c4]
|
|
367
|
-
- @sproutsocial/seeds-react-theme@3.1.0
|
|
368
|
-
- @sproutsocial/seeds-react-box@1.1.4
|
|
369
|
-
- @sproutsocial/seeds-react-popout@2.4.4
|
|
370
|
-
|
|
371
|
-
## 1.0.2
|
|
372
|
-
|
|
373
|
-
### Patch Changes
|
|
374
|
-
|
|
375
|
-
- Updated dependencies [22e1111]
|
|
376
|
-
- @sproutsocial/seeds-react-popout@2.4.3
|
|
377
|
-
- @sproutsocial/seeds-react-theme@3.0.1
|
|
378
|
-
- @sproutsocial/seeds-react-box@1.1.3
|
|
379
|
-
|
|
380
|
-
## 1.0.1
|
|
381
|
-
|
|
382
|
-
### Patch Changes
|
|
383
|
-
|
|
384
|
-
- 9fd8bac: Update dependencies to use semantic package version instead of wildcards
|
|
385
|
-
- Updated dependencies [9fd8bac]
|
|
386
|
-
- @sproutsocial/seeds-react-system-props@3.0.2
|
|
387
|
-
- @sproutsocial/seeds-react-popout@2.1.1
|
|
388
|
-
- @sproutsocial/seeds-react-theme@2.2.1
|
|
389
|
-
- @sproutsocial/seeds-react-box@1.1.2
|
|
390
|
-
|
|
391
|
-
## 1.0.0
|
|
392
|
-
|
|
393
|
-
### Major Changes
|
|
394
|
-
|
|
395
|
-
- 4a52cff: Migrate Numeral and Tooltip components to their own seeds-react component
|