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