@instructure/ui-popover 11.6.1-snapshot-0 → 11.6.1-snapshot-129
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/CHANGELOG.md +36 -294
- package/es/Popover/{index.js → v1/index.js} +3 -3
- package/es/Popover/v2/index.js +499 -0
- package/es/Popover/v2/props.js +26 -0
- package/es/Popover/v2/styles.js +39 -0
- package/es/{index.js → exports/a.js} +1 -1
- package/{src/index.ts → es/exports/b.js} +1 -2
- package/lib/Popover/{index.js → v1/index.js} +5 -6
- package/lib/Popover/v2/index.js +514 -0
- package/lib/Popover/v2/props.js +31 -0
- package/lib/Popover/v2/styles.js +45 -0
- package/lib/{index.js → exports/a.js} +2 -2
- package/lib/exports/b.js +12 -0
- package/package.json +46 -24
- package/src/Popover/{index.tsx → v1/index.tsx} +5 -5
- package/src/Popover/v2/README.md +455 -0
- package/src/Popover/v2/index.tsx +645 -0
- package/src/Popover/v2/props.ts +354 -0
- package/src/Popover/v2/styles.ts +45 -0
- package/src/exports/a.ts +25 -0
- package/src/exports/b.ts +25 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Popover/v1/index.d.ts +83 -0
- package/types/Popover/v1/index.d.ts.map +1 -0
- package/types/Popover/v1/props.d.ts.map +1 -0
- package/types/Popover/v1/styles.d.ts.map +1 -0
- package/types/Popover/v1/theme.d.ts.map +1 -0
- package/types/Popover/v2/index.d.ts.map +1 -0
- package/types/Popover/v2/props.d.ts +225 -0
- package/types/Popover/v2/props.d.ts.map +1 -0
- package/types/Popover/v2/styles.d.ts +13 -0
- package/types/Popover/v2/styles.d.ts.map +1 -0
- package/types/exports/a.d.ts +3 -0
- package/types/exports/a.d.ts.map +1 -0
- package/types/exports/b.d.ts +3 -0
- package/types/exports/b.d.ts.map +1 -0
- package/types/Popover/index.d.ts.map +0 -1
- package/types/Popover/props.d.ts.map +0 -1
- package/types/Popover/styles.d.ts.map +0 -1
- package/types/Popover/theme.d.ts.map +0 -1
- package/types/index.d.ts +0 -3
- package/types/index.d.ts.map +0 -1
- /package/es/Popover/{props.js → v1/props.js} +0 -0
- /package/es/Popover/{styles.js → v1/styles.js} +0 -0
- /package/es/Popover/{theme.js → v1/theme.js} +0 -0
- /package/lib/Popover/{props.js → v1/props.js} +0 -0
- /package/lib/Popover/{styles.js → v1/styles.js} +0 -0
- /package/lib/Popover/{theme.js → v1/theme.js} +0 -0
- /package/src/Popover/{README.md → v1/README.md} +0 -0
- /package/src/Popover/{props.ts → v1/props.ts} +0 -0
- /package/src/Popover/{styles.ts → v1/styles.ts} +0 -0
- /package/src/Popover/{theme.ts → v1/theme.ts} +0 -0
- /package/types/Popover/{props.d.ts → v1/props.d.ts} +0 -0
- /package/types/Popover/{styles.d.ts → v1/styles.d.ts} +0 -0
- /package/types/Popover/{theme.d.ts → v1/theme.d.ts} +0 -0
- /package/types/Popover/{index.d.ts → v2/index.d.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,579 +3,321 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [11.6.1-snapshot-
|
|
6
|
+
## [11.6.1-snapshot-129](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-snapshot-129) (2026-03-16)
|
|
7
7
|
|
|
8
|
-
**Note:** Version bump only for package @instructure/ui-popover
|
|
9
8
|
|
|
9
|
+
### Bug Fixes
|
|
10
10
|
|
|
11
|
+
* **ui-many:** fix imports of the multiversion support ([ff5f2b3](https://github.com/instructure/instructure-ui/commit/ff5f2b38660ddae432edd32b98eedae586589977))
|
|
11
12
|
|
|
12
13
|
|
|
14
|
+
### Features
|
|
13
15
|
|
|
14
|
-
|
|
16
|
+
* **many:** add solution for using both old and new token system in the same app ([688a713](https://github.com/instructure/instructure-ui/commit/688a713ff715433bb085323dbad61285387c5141))
|
|
17
|
+
* **ui-popover:** rework Popover ([f1fc5f2](https://github.com/instructure/instructure-ui/commit/f1fc5f27abc8fd64ede88b18368e95a4ba8d3762))
|
|
15
18
|
|
|
16
|
-
**Note:** Version bump only for package @instructure/ui-popover
|
|
17
19
|
|
|
18
20
|
|
|
19
21
|
|
|
20
22
|
|
|
21
|
-
|
|
22
|
-
# [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
|
|
23
|
+
# [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
|
|
23
24
|
|
|
24
25
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
25
26
|
|
|
27
|
+
# [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
|
|
26
28
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
+
**Note:** Version bump only for package @instructure/ui-popover
|
|
29
30
|
|
|
30
31
|
# [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
|
|
31
32
|
|
|
32
33
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
33
34
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
35
|
# [11.3.0](https://github.com/instructure/instructure-ui/compare/v11.2.0...v11.3.0) (2026-01-12)
|
|
39
36
|
|
|
40
37
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
41
38
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
39
|
# [11.2.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.2.0) (2025-11-06)
|
|
47
40
|
|
|
48
|
-
|
|
49
41
|
### Features
|
|
50
42
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
43
|
+
- **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
|
|
56
44
|
|
|
57
45
|
# [11.1.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.1.0) (2025-11-05)
|
|
58
46
|
|
|
59
|
-
|
|
60
47
|
### Features
|
|
61
48
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
49
|
+
- **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
|
|
67
50
|
|
|
68
51
|
## [11.0.1](https://github.com/instructure/instructure-ui/compare/v11.0.0...v11.0.1) (2025-10-13)
|
|
69
52
|
|
|
70
53
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
71
54
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
55
|
# [11.0.0](https://github.com/instructure/instructure-ui/compare/v10.26.0...v11.0.0) (2025-10-06)
|
|
77
56
|
|
|
78
|
-
|
|
79
57
|
### Features
|
|
80
58
|
|
|
81
|
-
|
|
82
|
-
|
|
59
|
+
- **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
|
|
83
60
|
|
|
84
61
|
### BREAKING CHANGES
|
|
85
62
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
63
|
+
- **many:** InstUI v11 contains the following breaking changes:
|
|
64
|
+
|
|
65
|
+
* React 16 and 17 are no longer supported
|
|
66
|
+
* remove `PropTypes` from all packages
|
|
67
|
+
* remove `CodeEditor` component
|
|
68
|
+
* remove `@instui/theme-registry` package
|
|
69
|
+
* remove `@testable`, `@experimental`, `@hack` decorators
|
|
70
|
+
* InstUISettingsProvider's `as` prop is removed
|
|
71
|
+
* `canvas.use()`, `canvasHighContrast.use()` functions are removed
|
|
72
|
+
* `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
|
|
73
|
+
* `variables` field on theme objects are removed
|
|
74
|
+
* remove deprecated props from Table: Row's `isStacked`, Body's
|
|
97
75
|
`isStacked`, `hover`, and `headers`
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
76
|
+
* `Table`'s `caption` prop is now required
|
|
77
|
+
* `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
|
|
104
78
|
|
|
105
79
|
# [10.26.0](https://github.com/instructure/instructure-ui/compare/v10.25.0...v10.26.0) (2025-10-01)
|
|
106
80
|
|
|
107
81
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
108
82
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
83
|
# [10.25.0](https://github.com/instructure/instructure-ui/compare/v10.24.2...v10.25.0) (2025-09-09)
|
|
114
84
|
|
|
115
85
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
116
86
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
87
|
## [10.24.2](https://github.com/instructure/instructure-ui/compare/v10.24.1...v10.24.2) (2025-08-11)
|
|
122
88
|
|
|
123
89
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
124
90
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
91
|
## [10.24.1](https://github.com/instructure/instructure-ui/compare/v10.24.0...v10.24.1) (2025-07-30)
|
|
130
92
|
|
|
131
|
-
|
|
132
93
|
### Bug Fixes
|
|
133
94
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
95
|
+
- **ui-view,ui-position,ui-popover:** fix 'stretch' placement in Popover/ContextView ([f65acd5](https://github.com/instructure/instructure-ui/commit/f65acd5da879fb814c2e5a0d22319a502851fff3))
|
|
139
96
|
|
|
140
97
|
# [10.24.0](https://github.com/instructure/instructure-ui/compare/v10.23.0...v10.24.0) (2025-07-18)
|
|
141
98
|
|
|
142
99
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
143
100
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
101
|
# [10.23.0](https://github.com/instructure/instructure-ui/compare/v10.22.0...v10.23.0) (2025-07-09)
|
|
149
102
|
|
|
150
103
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
151
104
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
105
|
# [10.22.0](https://github.com/instructure/instructure-ui/compare/v10.21.0...v10.22.0) (2025-07-04)
|
|
157
106
|
|
|
158
107
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
159
108
|
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
109
|
# [10.21.0](https://github.com/instructure/instructure-ui/compare/v10.20.1...v10.21.0) (2025-06-27)
|
|
165
110
|
|
|
166
111
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
167
112
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
113
|
## [10.20.1](https://github.com/instructure/instructure-ui/compare/v10.20.0...v10.20.1) (2025-06-17)
|
|
173
114
|
|
|
174
115
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
175
116
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
117
|
# [10.20.0](https://github.com/instructure/instructure-ui/compare/v10.19.1...v10.20.0) (2025-06-13)
|
|
181
118
|
|
|
182
|
-
|
|
183
119
|
### Bug Fixes
|
|
184
120
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
121
|
+
- **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
|
|
122
|
+
- **ui-top-nav-bar,ui-popover,ui-drilldown:** automatically set aria-expanded, allow override with shouldSetAriaExpanded ([b8e1367](https://github.com/instructure/instructure-ui/commit/b8e13674a2e700e44162a29ca61ead4fd98ce193))
|
|
191
123
|
|
|
192
124
|
## [10.19.1](https://github.com/instructure/instructure-ui/compare/v10.19.0...v10.19.1) (2025-06-05)
|
|
193
125
|
|
|
194
126
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
195
127
|
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
128
|
# [10.19.0](https://github.com/instructure/instructure-ui/compare/v10.18.1...v10.19.0) (2025-06-03)
|
|
201
129
|
|
|
202
130
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
203
131
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
132
|
## [10.18.1](https://github.com/instructure/instructure-ui/compare/v10.18.0...v10.18.1) (2025-05-29)
|
|
209
133
|
|
|
210
134
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
211
135
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
136
|
# [10.18.0](https://github.com/instructure/instructure-ui/compare/v10.17.0...v10.18.0) (2025-05-26)
|
|
217
137
|
|
|
218
|
-
|
|
219
138
|
### Features
|
|
220
139
|
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
140
|
+
- **ui-menu:** add prop to focus first element on open ([79c7349](https://github.com/instructure/instructure-ui/commit/79c734991509d84ce678118c0984ddbbac2207f8))
|
|
226
141
|
|
|
227
142
|
# [10.17.0](https://github.com/instructure/instructure-ui/compare/v10.16.4...v10.17.0) (2025-05-20)
|
|
228
143
|
|
|
229
144
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
230
145
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
146
|
## [10.16.4](https://github.com/instructure/instructure-ui/compare/v10.16.3...v10.16.4) (2025-05-09)
|
|
236
147
|
|
|
237
148
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
238
149
|
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
150
|
## [10.16.3](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.3) (2025-04-30)
|
|
244
151
|
|
|
245
152
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
246
153
|
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
154
|
## [10.16.2](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.2) (2025-04-22)
|
|
252
155
|
|
|
253
156
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
254
157
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
158
|
## [10.16.1](https://github.com/instructure/instructure-ui/compare/v10.16.0...v10.16.1) (2025-04-22)
|
|
260
159
|
|
|
261
160
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
262
161
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
162
|
# [10.16.0](https://github.com/instructure/instructure-ui/compare/v10.15.2...v10.16.0) (2025-04-11)
|
|
268
163
|
|
|
269
164
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
270
165
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
166
|
## [10.15.2](https://github.com/instructure/instructure-ui/compare/v10.15.1...v10.15.2) (2025-04-07)
|
|
276
167
|
|
|
277
168
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
278
169
|
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
170
|
## [10.15.1](https://github.com/instructure/instructure-ui/compare/v10.15.0...v10.15.1) (2025-04-03)
|
|
284
171
|
|
|
285
172
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
286
173
|
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
174
|
# [10.15.0](https://github.com/instructure/instructure-ui/compare/v10.14.0...v10.15.0) (2025-03-31)
|
|
292
175
|
|
|
293
176
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
294
177
|
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
178
|
# [10.14.0](https://github.com/instructure/instructure-ui/compare/v10.13.0...v10.14.0) (2025-03-17)
|
|
300
179
|
|
|
301
180
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
302
181
|
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
182
|
# [10.13.0](https://github.com/instructure/instructure-ui/compare/v10.12.0...v10.13.0) (2025-03-06)
|
|
308
183
|
|
|
309
|
-
|
|
310
184
|
### Bug Fixes
|
|
311
185
|
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
186
|
+
- **many:** fix Tooltip focus issues and make Tooltip closeable inside of a Modal ([3d05afe](https://github.com/instructure/instructure-ui/commit/3d05afe7506eaf81644860edd6f9501bf20de83f))
|
|
317
187
|
|
|
318
188
|
# [10.12.0](https://github.com/instructure/instructure-ui/compare/v10.11.0...v10.12.0) (2025-02-24)
|
|
319
189
|
|
|
320
|
-
|
|
321
190
|
### Features
|
|
322
191
|
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
192
|
+
- **ui-popover, ui-select:** allow overriding Select's dropdown border ([1e83164](https://github.com/instructure/instructure-ui/commit/1e83164770430d593f949be72b087295bb42e6b0))
|
|
193
|
+
- **ui-popover, ui-select:** allow overriding Select's dropdown border ([90d59d3](https://github.com/instructure/instructure-ui/commit/90d59d3c3689c3a1500c37db363fa43c1b8403d7))
|
|
329
194
|
|
|
330
195
|
# [10.11.0](https://github.com/instructure/instructure-ui/compare/v10.10.0...v10.11.0) (2025-02-03)
|
|
331
196
|
|
|
332
197
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
333
198
|
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
199
|
# [10.10.0](https://github.com/instructure/instructure-ui/compare/v10.9.0...v10.10.0) (2024-12-18)
|
|
339
200
|
|
|
340
201
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
341
202
|
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
203
|
# [10.9.0](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.9.0) (2024-12-12)
|
|
347
204
|
|
|
348
205
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
349
206
|
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
207
|
# [10.8.0](https://github.com/instructure/instructure-ui/compare/v10.7.0...v10.8.0) (2024-12-09)
|
|
355
208
|
|
|
356
209
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
357
210
|
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
211
|
# [10.7.0](https://github.com/instructure/instructure-ui/compare/v10.6.1...v10.7.0) (2024-12-03)
|
|
363
212
|
|
|
364
213
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
365
214
|
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
215
|
## [10.6.1](https://github.com/instructure/instructure-ui/compare/v10.6.0...v10.6.1) (2024-11-26)
|
|
371
216
|
|
|
372
|
-
|
|
373
217
|
### Bug Fixes
|
|
374
218
|
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
219
|
+
- **ui-popover,ui-tooltip:** tooltips should close when esc is pressed ([d91de1c](https://github.com/instructure/instructure-ui/commit/d91de1c418c8fc2ff385593dc2ff938a4ba51914))
|
|
380
220
|
|
|
381
221
|
# [10.6.0](https://github.com/instructure/instructure-ui/compare/v10.5.0...v10.6.0) (2024-11-18)
|
|
382
222
|
|
|
383
|
-
|
|
384
223
|
### Bug Fixes
|
|
385
224
|
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
225
|
+
- **many:** adjust border colors to meet a11y contrast standards ([2f47e06](https://github.com/instructure/instructure-ui/commit/2f47e066f7107c67e37ce8b7aff483586cf7a6b7))
|
|
391
226
|
|
|
392
227
|
# [10.5.0](https://github.com/instructure/instructure-ui/compare/v10.4.1...v10.5.0) (2024-11-07)
|
|
393
228
|
|
|
394
229
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
395
230
|
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
231
|
## [10.4.1](https://github.com/instructure/instructure-ui/compare/v10.4.0...v10.4.1) (2024-10-28)
|
|
401
232
|
|
|
402
|
-
|
|
403
233
|
### Bug Fixes
|
|
404
234
|
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
235
|
+
- update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
|
|
410
236
|
|
|
411
237
|
# [10.4.0](https://github.com/instructure/instructure-ui/compare/v10.3.0...v10.4.0) (2024-10-16)
|
|
412
238
|
|
|
413
239
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
414
240
|
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
241
|
# [10.3.0](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.3.0) (2024-10-03)
|
|
420
242
|
|
|
421
243
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
422
244
|
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
245
|
## [10.2.2](https://github.com/instructure/instructure-ui/compare/v10.2.1...v10.2.2) (2024-09-13)
|
|
428
246
|
|
|
429
247
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
430
248
|
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
249
|
## [10.2.1](https://github.com/instructure/instructure-ui/compare/v10.2.0...v10.2.1) (2024-08-30)
|
|
436
250
|
|
|
437
251
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
438
252
|
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
253
|
# [10.2.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.2.0) (2024-08-23)
|
|
444
254
|
|
|
445
255
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
446
256
|
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
257
|
# [10.1.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.1.0) (2024-08-23)
|
|
452
258
|
|
|
453
259
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
454
260
|
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
261
|
# [10.0.0](https://github.com/instructure/instructure-ui/compare/v9.5.1...v10.0.0) (2024-07-31)
|
|
460
262
|
|
|
461
263
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
462
264
|
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
265
|
## [9.5.1](https://github.com/instructure/instructure-ui/compare/v9.5.0...v9.5.1) (2024-07-30)
|
|
468
266
|
|
|
469
267
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
470
268
|
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
269
|
# [9.5.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.5.0) (2024-07-26)
|
|
476
270
|
|
|
477
271
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
478
272
|
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
273
|
# [9.4.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.4.0) (2024-07-26)
|
|
484
274
|
|
|
485
275
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
486
276
|
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
277
|
# [9.3.0](https://github.com/instructure/instructure-ui/compare/v9.2.0...v9.3.0) (2024-07-17)
|
|
492
278
|
|
|
493
279
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
494
280
|
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
281
|
# [9.2.0](https://github.com/instructure/instructure-ui/compare/v9.1.0...v9.2.0) (2024-07-09)
|
|
500
282
|
|
|
501
283
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
502
284
|
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
285
|
# [9.1.0](https://github.com/instructure/instructure-ui/compare/v9.0.1...v9.1.0) (2024-06-14)
|
|
508
286
|
|
|
509
287
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
510
288
|
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
289
|
## [9.0.1](https://github.com/instructure/instructure-ui/compare/v9.0.0...v9.0.1) (2024-05-09)
|
|
516
290
|
|
|
517
291
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
518
292
|
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
293
|
# [9.0.0](https://github.com/instructure/instructure-ui/compare/v8.56.0...v9.0.0) (2024-05-09)
|
|
524
294
|
|
|
525
295
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
526
296
|
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
297
|
# [8.56.0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.56.0) (2024-05-06)
|
|
532
298
|
|
|
533
299
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
534
300
|
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
301
|
## [8.55.1](https://github.com/instructure/instructure-ui/compare/v8.55.0...v8.55.1) (2024-04-30)
|
|
540
302
|
|
|
541
303
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
542
304
|
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
305
|
# [8.55.0](https://github.com/instructure/instructure-ui/compare/v8.54.0...v8.55.0) (2024-04-09)
|
|
548
306
|
|
|
549
307
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
550
308
|
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
309
|
# [8.54.0](https://github.com/instructure/instructure-ui/compare/v8.53.2...v8.54.0) (2024-03-21)
|
|
556
310
|
|
|
557
311
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
558
312
|
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
313
|
## [8.53.2](https://github.com/instructure/instructure-ui/compare/v8.53.1...v8.53.2) (2024-02-15)
|
|
564
314
|
|
|
565
315
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
566
316
|
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
317
|
## [8.53.1](https://github.com/instructure/instructure-ui/compare/v8.53.0...v8.53.1) (2024-02-09)
|
|
572
318
|
|
|
573
319
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
574
320
|
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
321
|
# [8.53.0](https://github.com/instructure/instructure-ui/compare/v8.52.0...v8.53.0) (2024-02-08)
|
|
580
322
|
|
|
581
323
|
**Note:** Version bump only for package @instructure/ui-popover
|
|
@@ -26,7 +26,7 @@ var _dec, _dec2, _dec3, _class, _Popover;
|
|
|
26
26
|
import { Component } from 'react';
|
|
27
27
|
import keycode from 'keycode';
|
|
28
28
|
import { Position, parsePlacement, mirrorHorizontalPlacement } from '@instructure/ui-position';
|
|
29
|
-
import { ContextView, View } from '@instructure/ui-view';
|
|
29
|
+
import { ContextView, View } from '@instructure/ui-view/v11_6';
|
|
30
30
|
import { Dialog } from '@instructure/ui-dialog';
|
|
31
31
|
import { textDirectionContextConsumer } from '@instructure/ui-i18n';
|
|
32
32
|
import { findDOMNode, containsActiveElement, requestAnimationFrame, handleMouseOverOut } from '@instructure/ui-dom-utils';
|
|
@@ -34,10 +34,10 @@ import { safeCloneElement, callRenderProp, withDeterministicId } from '@instruct
|
|
|
34
34
|
import { createChainedFunction, shallowEqual, px, combineDataCid } from '@instructure/ui-utils';
|
|
35
35
|
import { logError as error } from '@instructure/console';
|
|
36
36
|
import { FocusRegion } from '@instructure/ui-a11y-utils';
|
|
37
|
-
import { withStyle } from '@instructure/emotion';
|
|
37
|
+
import { withStyleLegacy as withStyle } from '@instructure/emotion';
|
|
38
38
|
import generateStyle from "./styles.js";
|
|
39
39
|
import generateComponentTheme from "./theme.js";
|
|
40
|
-
import { allowedProps } from "
|
|
40
|
+
import { allowedProps } from "../v1/props.js";
|
|
41
41
|
import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
|
|
42
42
|
/**
|
|
43
43
|
---
|