@ohos-ports/instructure-ui-toggle-details 11.7.5-beta.1
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 +1323 -0
- package/LICENSE.md +28 -0
- package/README.md +42 -0
- package/es/ToggleDetails/v1/index.js +177 -0
- package/es/ToggleDetails/v1/props.js +26 -0
- package/es/ToggleDetails/v1/styles.js +196 -0
- package/es/ToggleDetails/v1/theme.js +75 -0
- package/es/ToggleDetails/v2/index.js +181 -0
- package/es/ToggleDetails/v2/props.js +26 -0
- package/es/ToggleDetails/v2/styles.js +188 -0
- package/es/ToggleGroup/v1/index.js +172 -0
- package/es/ToggleGroup/v1/props.js +26 -0
- package/es/ToggleGroup/v1/styles.js +40 -0
- package/es/ToggleGroup/v1/theme.js +41 -0
- package/es/ToggleGroup/v2/index.js +178 -0
- package/es/ToggleGroup/v2/props.js +26 -0
- package/es/ToggleGroup/v2/styles.js +40 -0
- package/es/exports/a.js +26 -0
- package/es/exports/b.js +26 -0
- package/lib/ToggleDetails/v1/index.js +184 -0
- package/lib/ToggleDetails/v1/props.js +31 -0
- package/lib/ToggleDetails/v1/styles.js +202 -0
- package/lib/ToggleDetails/v1/theme.js +81 -0
- package/lib/ToggleDetails/v2/index.js +187 -0
- package/lib/ToggleDetails/v2/props.js +31 -0
- package/lib/ToggleDetails/v2/styles.js +194 -0
- package/lib/ToggleGroup/v1/index.js +180 -0
- package/lib/ToggleGroup/v1/props.js +31 -0
- package/lib/ToggleGroup/v1/styles.js +46 -0
- package/lib/ToggleGroup/v1/theme.js +47 -0
- package/lib/ToggleGroup/v2/index.js +185 -0
- package/lib/ToggleGroup/v2/props.js +31 -0
- package/lib/ToggleGroup/v2/styles.js +46 -0
- package/lib/exports/a.js +19 -0
- package/lib/exports/b.js +19 -0
- package/lib/package.json +1 -0
- package/package.json +94 -0
- package/src/ToggleDetails/v1/README.md +233 -0
- package/src/ToggleDetails/v1/index.tsx +204 -0
- package/src/ToggleDetails/v1/props.ts +114 -0
- package/src/ToggleDetails/v1/styles.ts +190 -0
- package/src/ToggleDetails/v1/theme.ts +80 -0
- package/src/ToggleDetails/v2/README.md +233 -0
- package/src/ToggleDetails/v2/index.tsx +206 -0
- package/src/ToggleDetails/v2/props.ts +115 -0
- package/src/ToggleDetails/v2/styles.ts +188 -0
- package/src/ToggleGroup/v1/README.md +93 -0
- package/src/ToggleGroup/v1/index.tsx +206 -0
- package/src/ToggleGroup/v1/props.ts +115 -0
- package/src/ToggleGroup/v1/styles.ts +47 -0
- package/src/ToggleGroup/v1/theme.ts +43 -0
- package/src/ToggleGroup/v2/README.md +93 -0
- package/src/ToggleGroup/v2/index.tsx +214 -0
- package/src/ToggleGroup/v2/props.ts +115 -0
- package/src/ToggleGroup/v2/styles.ts +47 -0
- package/src/exports/a.ts +29 -0
- package/src/exports/b.ts +29 -0
- package/tsconfig.build.json +26 -0
- package/tsconfig.json +4 -0
- package/types/ToggleDetails/v1/index.d.ts +56 -0
- package/types/ToggleDetails/v1/index.d.ts.map +1 -0
- package/types/ToggleDetails/v1/props.d.ts +55 -0
- package/types/ToggleDetails/v1/props.d.ts.map +1 -0
- package/types/ToggleDetails/v1/styles.d.ts +15 -0
- package/types/ToggleDetails/v1/styles.d.ts.map +1 -0
- package/types/ToggleDetails/v1/theme.d.ts +10 -0
- package/types/ToggleDetails/v1/theme.d.ts.map +1 -0
- package/types/ToggleDetails/v2/index.d.ts +55 -0
- package/types/ToggleDetails/v2/index.d.ts.map +1 -0
- package/types/ToggleDetails/v2/props.d.ts +56 -0
- package/types/ToggleDetails/v2/props.d.ts.map +1 -0
- package/types/ToggleDetails/v2/styles.d.ts +16 -0
- package/types/ToggleDetails/v2/styles.d.ts.map +1 -0
- package/types/ToggleGroup/v1/index.d.ts +55 -0
- package/types/ToggleGroup/v1/index.d.ts.map +1 -0
- package/types/ToggleGroup/v1/props.d.ts +65 -0
- package/types/ToggleGroup/v1/props.d.ts.map +1 -0
- package/types/ToggleGroup/v1/styles.d.ts +15 -0
- package/types/ToggleGroup/v1/styles.d.ts.map +1 -0
- package/types/ToggleGroup/v1/theme.d.ts +10 -0
- package/types/ToggleGroup/v1/theme.d.ts.map +1 -0
- package/types/ToggleGroup/v2/index.d.ts +54 -0
- package/types/ToggleGroup/v2/index.d.ts.map +1 -0
- package/types/ToggleGroup/v2/props.d.ts +66 -0
- package/types/ToggleGroup/v2/props.d.ts.map +1 -0
- package/types/ToggleGroup/v2/styles.d.ts +15 -0
- package/types/ToggleGroup/v2/styles.d.ts.map +1 -0
- package/types/exports/a.d.ts +5 -0
- package/types/exports/a.d.ts.map +1 -0
- package/types/exports/b.d.ts +5 -0
- package/types/exports/b.d.ts.map +1 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1323 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## [11.7.5](https://github.com/instructure/instructure-ui/compare/v11.7.4...v11.7.5) (2026-08-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [11.7.4](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4) (2026-07-24)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **many:** import cross-package deps from /latest in v2 components ([7ff3718](https://github.com/instructure/instructure-ui/commit/7ff3718be3f26188afd5027f4ebdbaf21bcdb1d4))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* **many:** support current spacing tokens in the margin prop for v2 components ([1b47c5f](https://github.com/instructure/instructure-ui/commit/1b47c5f23eaa60b532cdfd53c39bd71f0cf51aaa))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [11.7.3](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3) (2026-05-07)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* **many:** update dependencies, remove lots of Babel plugins, remove Webpack 4 support ([f916fca](https://github.com/instructure/instructure-ui/commit/f916fcafdddcb2d7de401f93e8ff92cfdfa47bba))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## [11.7.2](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2) (2026-04-23)
|
|
42
|
+
|
|
43
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
## [11.7.1](https://github.com/instructure/instructure-ui/compare/v11.7.0...v11.7.1) (2026-03-20)
|
|
50
|
+
|
|
51
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
# [11.7.0](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.7.0) (2026-03-18)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Features
|
|
61
|
+
|
|
62
|
+
* **many:** add solution for using both old and new token system in the same app ([688a713](https://github.com/instructure/instructure-ui/commit/688a713ff715433bb085323dbad61285387c5141))
|
|
63
|
+
* **ui-toggle-details:** rework ToggleDetails ([a201f69](https://github.com/instructure/instructure-ui/commit/a201f69884d47ea24de0972b7d93c0f2a7508e4b))
|
|
64
|
+
* **ui-toggle-details:** rework ToggleGroup ([b36a4d3](https://github.com/instructure/instructure-ui/commit/b36a4d3873be7350659f68f9bfa695c51020cea9))
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
# [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
|
|
71
|
+
|
|
72
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
73
|
+
|
|
74
|
+
# [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
|
|
75
|
+
|
|
76
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
77
|
+
|
|
78
|
+
# [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
|
|
79
|
+
|
|
80
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
81
|
+
|
|
82
|
+
# [11.3.0](https://github.com/instructure/instructure-ui/compare/v11.2.0...v11.3.0) (2026-01-12)
|
|
83
|
+
|
|
84
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
85
|
+
|
|
86
|
+
# [11.2.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.2.0) (2025-11-06)
|
|
87
|
+
|
|
88
|
+
### Features
|
|
89
|
+
|
|
90
|
+
- **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
|
|
91
|
+
|
|
92
|
+
# [11.1.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.1.0) (2025-11-05)
|
|
93
|
+
|
|
94
|
+
### Features
|
|
95
|
+
|
|
96
|
+
- **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
|
|
97
|
+
|
|
98
|
+
## [11.0.1](https://github.com/instructure/instructure-ui/compare/v11.0.0...v11.0.1) (2025-10-13)
|
|
99
|
+
|
|
100
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
101
|
+
|
|
102
|
+
# [11.0.0](https://github.com/instructure/instructure-ui/compare/v10.26.0...v11.0.0) (2025-10-06)
|
|
103
|
+
|
|
104
|
+
### Features
|
|
105
|
+
|
|
106
|
+
- **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
|
|
107
|
+
|
|
108
|
+
### BREAKING CHANGES
|
|
109
|
+
|
|
110
|
+
- **many:** InstUI v11 contains the following breaking changes:
|
|
111
|
+
|
|
112
|
+
* React 16 and 17 are no longer supported
|
|
113
|
+
* remove `PropTypes` from all packages
|
|
114
|
+
* remove `CodeEditor` component
|
|
115
|
+
* remove `@instui/theme-registry` package
|
|
116
|
+
* remove `@testable`, `@experimental`, `@hack` decorators
|
|
117
|
+
* InstUISettingsProvider's `as` prop is removed
|
|
118
|
+
* `canvas.use()`, `canvasHighContrast.use()` functions are removed
|
|
119
|
+
* `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
|
|
120
|
+
* `variables` field on theme objects are removed
|
|
121
|
+
* remove deprecated props from Table: Row's `isStacked`, Body's
|
|
122
|
+
`isStacked`, `hover`, and `headers`
|
|
123
|
+
* `Table`'s `caption` prop is now required
|
|
124
|
+
* `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
|
|
125
|
+
|
|
126
|
+
# [10.26.0](https://github.com/instructure/instructure-ui/compare/v10.25.0...v10.26.0) (2025-10-01)
|
|
127
|
+
|
|
128
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
129
|
+
|
|
130
|
+
# [10.25.0](https://github.com/instructure/instructure-ui/compare/v10.24.2...v10.25.0) (2025-09-09)
|
|
131
|
+
|
|
132
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
133
|
+
|
|
134
|
+
## [10.24.2](https://github.com/instructure/instructure-ui/compare/v10.24.1...v10.24.2) (2025-08-11)
|
|
135
|
+
|
|
136
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
137
|
+
|
|
138
|
+
## [10.24.1](https://github.com/instructure/instructure-ui/compare/v10.24.0...v10.24.1) (2025-07-30)
|
|
139
|
+
|
|
140
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
141
|
+
|
|
142
|
+
# [10.24.0](https://github.com/instructure/instructure-ui/compare/v10.23.0...v10.24.0) (2025-07-18)
|
|
143
|
+
|
|
144
|
+
### Bug Fixes
|
|
145
|
+
|
|
146
|
+
- **ui-toggle-details,ui-expandable:** improve typing for onClick prop ([e086e31](https://github.com/instructure/instructure-ui/commit/e086e3194f93565a0314233a10bba804f48c3a16))
|
|
147
|
+
|
|
148
|
+
# [10.23.0](https://github.com/instructure/instructure-ui/compare/v10.22.0...v10.23.0) (2025-07-09)
|
|
149
|
+
|
|
150
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
151
|
+
|
|
152
|
+
# [10.22.0](https://github.com/instructure/instructure-ui/compare/v10.21.0...v10.22.0) (2025-07-04)
|
|
153
|
+
|
|
154
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
155
|
+
|
|
156
|
+
# [10.21.0](https://github.com/instructure/instructure-ui/compare/v10.20.1...v10.21.0) (2025-06-27)
|
|
157
|
+
|
|
158
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
159
|
+
|
|
160
|
+
## [10.20.1](https://github.com/instructure/instructure-ui/compare/v10.20.0...v10.20.1) (2025-06-17)
|
|
161
|
+
|
|
162
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
163
|
+
|
|
164
|
+
# [10.20.0](https://github.com/instructure/instructure-ui/compare/v10.19.1...v10.20.0) (2025-06-13)
|
|
165
|
+
|
|
166
|
+
### Bug Fixes
|
|
167
|
+
|
|
168
|
+
- **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
|
|
169
|
+
|
|
170
|
+
## [10.19.1](https://github.com/instructure/instructure-ui/compare/v10.19.0...v10.19.1) (2025-06-05)
|
|
171
|
+
|
|
172
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
173
|
+
|
|
174
|
+
# [10.19.0](https://github.com/instructure/instructure-ui/compare/v10.18.1...v10.19.0) (2025-06-03)
|
|
175
|
+
|
|
176
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
177
|
+
|
|
178
|
+
## [10.18.1](https://github.com/instructure/instructure-ui/compare/v10.18.0...v10.18.1) (2025-05-29)
|
|
179
|
+
|
|
180
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
181
|
+
|
|
182
|
+
# [10.18.0](https://github.com/instructure/instructure-ui/compare/v10.17.0...v10.18.0) (2025-05-26)
|
|
183
|
+
|
|
184
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
185
|
+
|
|
186
|
+
# [10.17.0](https://github.com/instructure/instructure-ui/compare/v10.16.4...v10.17.0) (2025-05-20)
|
|
187
|
+
|
|
188
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
189
|
+
|
|
190
|
+
## [10.16.4](https://github.com/instructure/instructure-ui/compare/v10.16.3...v10.16.4) (2025-05-09)
|
|
191
|
+
|
|
192
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
193
|
+
|
|
194
|
+
## [10.16.3](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.3) (2025-04-30)
|
|
195
|
+
|
|
196
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
197
|
+
|
|
198
|
+
## [10.16.2](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.2) (2025-04-22)
|
|
199
|
+
|
|
200
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
201
|
+
|
|
202
|
+
## [10.16.1](https://github.com/instructure/instructure-ui/compare/v10.16.0...v10.16.1) (2025-04-22)
|
|
203
|
+
|
|
204
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
205
|
+
|
|
206
|
+
# [10.16.0](https://github.com/instructure/instructure-ui/compare/v10.15.2...v10.16.0) (2025-04-11)
|
|
207
|
+
|
|
208
|
+
### Bug Fixes
|
|
209
|
+
|
|
210
|
+
- **ui-buttons:** fix button border color ([5322f9c](https://github.com/instructure/instructure-ui/commit/5322f9c8d359a394e0ea4caa5dbab982169edddf))
|
|
211
|
+
|
|
212
|
+
## [10.15.2](https://github.com/instructure/instructure-ui/compare/v10.15.1...v10.15.2) (2025-04-07)
|
|
213
|
+
|
|
214
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
215
|
+
|
|
216
|
+
## [10.15.1](https://github.com/instructure/instructure-ui/compare/v10.15.0...v10.15.1) (2025-04-03)
|
|
217
|
+
|
|
218
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
219
|
+
|
|
220
|
+
# [10.15.0](https://github.com/instructure/instructure-ui/compare/v10.14.0...v10.15.0) (2025-03-31)
|
|
221
|
+
|
|
222
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
223
|
+
|
|
224
|
+
# [10.14.0](https://github.com/instructure/instructure-ui/compare/v10.13.0...v10.14.0) (2025-03-17)
|
|
225
|
+
|
|
226
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
227
|
+
|
|
228
|
+
# [10.13.0](https://github.com/instructure/instructure-ui/compare/v10.12.0...v10.13.0) (2025-03-06)
|
|
229
|
+
|
|
230
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
231
|
+
|
|
232
|
+
# [10.12.0](https://github.com/instructure/instructure-ui/compare/v10.11.0...v10.12.0) (2025-02-24)
|
|
233
|
+
|
|
234
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
235
|
+
|
|
236
|
+
# [10.11.0](https://github.com/instructure/instructure-ui/compare/v10.10.0...v10.11.0) (2025-02-03)
|
|
237
|
+
|
|
238
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
239
|
+
|
|
240
|
+
# [10.10.0](https://github.com/instructure/instructure-ui/compare/v10.9.0...v10.10.0) (2024-12-18)
|
|
241
|
+
|
|
242
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
243
|
+
|
|
244
|
+
# [10.9.0](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.9.0) (2024-12-12)
|
|
245
|
+
|
|
246
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
247
|
+
|
|
248
|
+
# [10.8.0](https://github.com/instructure/instructure-ui/compare/v10.7.0...v10.8.0) (2024-12-09)
|
|
249
|
+
|
|
250
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
251
|
+
|
|
252
|
+
# [10.7.0](https://github.com/instructure/instructure-ui/compare/v10.6.1...v10.7.0) (2024-12-03)
|
|
253
|
+
|
|
254
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
255
|
+
|
|
256
|
+
## [10.6.1](https://github.com/instructure/instructure-ui/compare/v10.6.0...v10.6.1) (2024-11-26)
|
|
257
|
+
|
|
258
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
259
|
+
|
|
260
|
+
# [10.6.0](https://github.com/instructure/instructure-ui/compare/v10.5.0...v10.6.0) (2024-11-18)
|
|
261
|
+
|
|
262
|
+
### Bug Fixes
|
|
263
|
+
|
|
264
|
+
- **many:** adjust border colors to meet a11y contrast standards ([2f47e06](https://github.com/instructure/instructure-ui/commit/2f47e066f7107c67e37ce8b7aff483586cf7a6b7))
|
|
265
|
+
|
|
266
|
+
# [10.5.0](https://github.com/instructure/instructure-ui/compare/v10.4.1...v10.5.0) (2024-11-07)
|
|
267
|
+
|
|
268
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
269
|
+
|
|
270
|
+
## [10.4.1](https://github.com/instructure/instructure-ui/compare/v10.4.0...v10.4.1) (2024-10-28)
|
|
271
|
+
|
|
272
|
+
### Bug Fixes
|
|
273
|
+
|
|
274
|
+
- **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))
|
|
275
|
+
- update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
|
|
276
|
+
|
|
277
|
+
# [10.4.0](https://github.com/instructure/instructure-ui/compare/v10.3.0...v10.4.0) (2024-10-16)
|
|
278
|
+
|
|
279
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
280
|
+
|
|
281
|
+
# [10.3.0](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.3.0) (2024-10-03)
|
|
282
|
+
|
|
283
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
284
|
+
|
|
285
|
+
## [10.2.2](https://github.com/instructure/instructure-ui/compare/v10.2.1...v10.2.2) (2024-09-13)
|
|
286
|
+
|
|
287
|
+
### Bug Fixes
|
|
288
|
+
|
|
289
|
+
- **ui-toggle-details:** fix ToggleDetails flickering ([cbab3be](https://github.com/instructure/instructure-ui/commit/cbab3befb43f37f5df8b981f757dd857388502e0))
|
|
290
|
+
|
|
291
|
+
## [10.2.1](https://github.com/instructure/instructure-ui/compare/v10.2.0...v10.2.1) (2024-08-30)
|
|
292
|
+
|
|
293
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
294
|
+
|
|
295
|
+
# [10.2.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.2.0) (2024-08-23)
|
|
296
|
+
|
|
297
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
298
|
+
|
|
299
|
+
# [10.1.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.1.0) (2024-08-23)
|
|
300
|
+
|
|
301
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
302
|
+
|
|
303
|
+
# [10.0.0](https://github.com/instructure/instructure-ui/compare/v9.5.1...v10.0.0) (2024-07-31)
|
|
304
|
+
|
|
305
|
+
### Features
|
|
306
|
+
|
|
307
|
+
- **many:** rewrite color system ([1e5809e](https://github.com/instructure/instructure-ui/commit/1e5809e28dee8c2a71703a429609b8d2f95d76e6))
|
|
308
|
+
|
|
309
|
+
### BREAKING CHANGES
|
|
310
|
+
|
|
311
|
+
- **many:** Breaks color overrides in certain cases
|
|
312
|
+
|
|
313
|
+
## [9.5.1](https://github.com/instructure/instructure-ui/compare/v9.5.0...v9.5.1) (2024-07-30)
|
|
314
|
+
|
|
315
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
316
|
+
|
|
317
|
+
# [9.5.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.5.0) (2024-07-26)
|
|
318
|
+
|
|
319
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
320
|
+
|
|
321
|
+
# [9.4.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.4.0) (2024-07-26)
|
|
322
|
+
|
|
323
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
324
|
+
|
|
325
|
+
# [9.3.0](https://github.com/instructure/instructure-ui/compare/v9.2.0...v9.3.0) (2024-07-17)
|
|
326
|
+
|
|
327
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
328
|
+
|
|
329
|
+
# [9.2.0](https://github.com/instructure/instructure-ui/compare/v9.1.0...v9.2.0) (2024-07-09)
|
|
330
|
+
|
|
331
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
332
|
+
|
|
333
|
+
# [9.1.0](https://github.com/instructure/instructure-ui/compare/v9.0.1...v9.1.0) (2024-06-14)
|
|
334
|
+
|
|
335
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
336
|
+
|
|
337
|
+
## [9.0.1](https://github.com/instructure/instructure-ui/compare/v9.0.0...v9.0.1) (2024-05-09)
|
|
338
|
+
|
|
339
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
340
|
+
|
|
341
|
+
# [9.0.0](https://github.com/instructure/instructure-ui/compare/v8.56.0...v9.0.0) (2024-05-09)
|
|
342
|
+
|
|
343
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
344
|
+
|
|
345
|
+
# [8.56.0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.56.0) (2024-05-06)
|
|
346
|
+
|
|
347
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
348
|
+
|
|
349
|
+
## [8.55.1](https://github.com/instructure/instructure-ui/compare/v8.55.0...v8.55.1) (2024-04-30)
|
|
350
|
+
|
|
351
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
352
|
+
|
|
353
|
+
# [8.55.0](https://github.com/instructure/instructure-ui/compare/v8.54.0...v8.55.0) (2024-04-09)
|
|
354
|
+
|
|
355
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
356
|
+
|
|
357
|
+
# [8.54.0](https://github.com/instructure/instructure-ui/compare/v8.53.2...v8.54.0) (2024-03-21)
|
|
358
|
+
|
|
359
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
360
|
+
|
|
361
|
+
## [8.53.2](https://github.com/instructure/instructure-ui/compare/v8.53.1...v8.53.2) (2024-02-15)
|
|
362
|
+
|
|
363
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
364
|
+
|
|
365
|
+
## [8.53.1](https://github.com/instructure/instructure-ui/compare/v8.53.0...v8.53.1) (2024-02-09)
|
|
366
|
+
|
|
367
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
368
|
+
|
|
369
|
+
# [8.53.0](https://github.com/instructure/instructure-ui/compare/v8.52.0...v8.53.0) (2024-02-08)
|
|
370
|
+
|
|
371
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
372
|
+
|
|
373
|
+
# [8.52.0](https://github.com/instructure/instructure-ui/compare/v8.51.0...v8.52.0) (2024-02-02)
|
|
374
|
+
|
|
375
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
376
|
+
|
|
377
|
+
# [8.51.0](https://github.com/instructure/instructure-ui/compare/v8.50.0...v8.51.0) (2023-12-14)
|
|
378
|
+
|
|
379
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
380
|
+
|
|
381
|
+
# [8.50.0](https://github.com/instructure/instructure-ui/compare/v8.49.0...v8.50.0) (2023-12-05)
|
|
382
|
+
|
|
383
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
384
|
+
|
|
385
|
+
# [8.49.0](https://github.com/instructure/instructure-ui/compare/v8.48.3...v8.49.0) (2023-11-24)
|
|
386
|
+
|
|
387
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
388
|
+
|
|
389
|
+
## [8.48.3](https://github.com/instructure/instructure-ui/compare/v8.48.2...v8.48.3) (2023-11-23)
|
|
390
|
+
|
|
391
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
392
|
+
|
|
393
|
+
## [8.48.2](https://github.com/instructure/instructure-ui/compare/v8.48.1...v8.48.2) (2023-11-21)
|
|
394
|
+
|
|
395
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
396
|
+
|
|
397
|
+
## [8.48.1](https://github.com/instructure/instructure-ui/compare/v8.48.0...v8.48.1) (2023-11-17)
|
|
398
|
+
|
|
399
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
400
|
+
|
|
401
|
+
# [8.48.0](https://github.com/instructure/instructure-ui/compare/v8.47.1...v8.48.0) (2023-11-10)
|
|
402
|
+
|
|
403
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
404
|
+
|
|
405
|
+
## [8.47.1](https://github.com/instructure/instructure-ui/compare/v8.47.0...v8.47.1) (2023-11-06)
|
|
406
|
+
|
|
407
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
408
|
+
|
|
409
|
+
# [8.47.0](https://github.com/instructure/instructure-ui/compare/v8.46.1...v8.47.0) (2023-10-27)
|
|
410
|
+
|
|
411
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
412
|
+
|
|
413
|
+
## [8.46.1](https://github.com/instructure/instructure-ui/compare/v8.46.0...v8.46.1) (2023-10-13)
|
|
414
|
+
|
|
415
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
416
|
+
|
|
417
|
+
# [8.46.0](https://github.com/instructure/instructure-ui/compare/v8.45.0...v8.46.0) (2023-10-11)
|
|
418
|
+
|
|
419
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
420
|
+
|
|
421
|
+
# [8.45.0](https://github.com/instructure/instructure-ui/compare/v8.44.0...v8.45.0) (2023-10-03)
|
|
422
|
+
|
|
423
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
424
|
+
|
|
425
|
+
# [8.44.0](https://github.com/instructure/instructure-ui/compare/v8.43.1...v8.44.0) (2023-09-21)
|
|
426
|
+
|
|
427
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
428
|
+
|
|
429
|
+
## [8.43.1](https://github.com/instructure/instructure-ui/compare/v8.43.0...v8.43.1) (2023-09-11)
|
|
430
|
+
|
|
431
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
432
|
+
|
|
433
|
+
# [8.43.0](https://github.com/instructure/instructure-ui/compare/v8.41.1...v8.43.0) (2023-09-07)
|
|
434
|
+
|
|
435
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
436
|
+
|
|
437
|
+
# [8.42.0](https://github.com/instructure/instructure-ui/compare/v8.41.1...v8.42.0) (2023-09-07)
|
|
438
|
+
|
|
439
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
440
|
+
|
|
441
|
+
## [8.41.1](https://github.com/instructure/instructure-ui/compare/v8.41.0...v8.41.1) (2023-08-24)
|
|
442
|
+
|
|
443
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
444
|
+
|
|
445
|
+
# [8.41.0](https://github.com/instructure/instructure-ui/compare/v8.40.1...v8.41.0) (2023-08-21)
|
|
446
|
+
|
|
447
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
448
|
+
|
|
449
|
+
## [8.40.1](https://github.com/instructure/instructure-ui/compare/v8.40.0...v8.40.1) (2023-08-18)
|
|
450
|
+
|
|
451
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
452
|
+
|
|
453
|
+
# [8.40.0](https://github.com/instructure/instructure-ui/compare/v8.39.0...v8.40.0) (2023-08-17)
|
|
454
|
+
|
|
455
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
456
|
+
|
|
457
|
+
# [8.39.0](https://github.com/instructure/instructure-ui/compare/v8.38.1...v8.39.0) (2023-07-21)
|
|
458
|
+
|
|
459
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
460
|
+
|
|
461
|
+
## [8.38.1](https://github.com/instructure/instructure-ui/compare/v8.38.0...v8.38.1) (2023-06-13)
|
|
462
|
+
|
|
463
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
464
|
+
|
|
465
|
+
# [8.38.0](https://github.com/instructure/instructure-ui/compare/v8.37.0...v8.38.0) (2023-05-15)
|
|
466
|
+
|
|
467
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
468
|
+
|
|
469
|
+
# [8.37.0](https://github.com/instructure/instructure-ui/compare/v8.36.0...v8.37.0) (2023-04-25)
|
|
470
|
+
|
|
471
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
472
|
+
|
|
473
|
+
# [8.36.0](https://github.com/instructure/instructure-ui/compare/v8.35.1...v8.36.0) (2023-03-23)
|
|
474
|
+
|
|
475
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
476
|
+
|
|
477
|
+
## [8.35.1](https://github.com/instructure/instructure-ui/compare/v8.35.0...v8.35.1) (2023-03-10)
|
|
478
|
+
|
|
479
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
480
|
+
|
|
481
|
+
# [8.35.0](https://github.com/instructure/instructure-ui/compare/v8.34.0...v8.35.0) (2023-02-17)
|
|
482
|
+
|
|
483
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
484
|
+
|
|
485
|
+
# [8.34.0](https://github.com/instructure/instructure-ui/compare/v8.33.2...v8.34.0) (2023-02-10)
|
|
486
|
+
|
|
487
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
488
|
+
|
|
489
|
+
## [8.33.2](https://github.com/instructure/instructure-ui/compare/v8.33.1...v8.33.2) (2023-01-25)
|
|
490
|
+
|
|
491
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
492
|
+
|
|
493
|
+
## [8.33.1](https://github.com/instructure/instructure-ui/compare/v8.33.0...v8.33.1) (2023-01-06)
|
|
494
|
+
|
|
495
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
496
|
+
|
|
497
|
+
# [8.33.0](https://github.com/instructure/instructure-ui/compare/v8.32.1...v8.33.0) (2023-01-04)
|
|
498
|
+
|
|
499
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
500
|
+
|
|
501
|
+
## [8.32.1](https://github.com/instructure/instructure-ui/compare/v8.30.0...v8.32.1) (2022-12-01)
|
|
502
|
+
|
|
503
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
504
|
+
|
|
505
|
+
# [8.32.0](https://github.com/instructure/instructure-ui/compare/v8.31.0...v8.32.0) (2022-11-23)
|
|
506
|
+
|
|
507
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
508
|
+
|
|
509
|
+
# [8.31.0](https://github.com/instructure/instructure-ui/compare/v8.30.0...v8.31.0) (2022-11-21)
|
|
510
|
+
|
|
511
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
512
|
+
|
|
513
|
+
# [8.30.0](https://github.com/instructure/instructure-ui/compare/v8.29.0...v8.30.0) (2022-10-26)
|
|
514
|
+
|
|
515
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
516
|
+
|
|
517
|
+
# [8.29.0](https://github.com/instructure/instructure-ui/compare/v8.28.0...v8.29.0) (2022-09-29)
|
|
518
|
+
|
|
519
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
520
|
+
|
|
521
|
+
## [8.28.2](https://github.com/instructure/instructure-ui/compare/v8.28.0...v8.28.2) (2022-09-16)
|
|
522
|
+
|
|
523
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
524
|
+
|
|
525
|
+
## [8.28.1](https://github.com/instructure/instructure-ui/compare/v8.28.0...v8.28.1) (2022-09-12)
|
|
526
|
+
|
|
527
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
528
|
+
|
|
529
|
+
# [8.28.0](https://github.com/instructure/instructure-ui/compare/v8.27.0...v8.28.0) (2022-09-02)
|
|
530
|
+
|
|
531
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
532
|
+
|
|
533
|
+
# [8.27.0](https://github.com/instructure/instructure-ui/compare/v8.26.3...v8.27.0) (2022-07-25)
|
|
534
|
+
|
|
535
|
+
### Features
|
|
536
|
+
|
|
537
|
+
- support React 18 ([0a2bf0c](https://github.com/instructure/instructure-ui/commit/0a2bf0cdd4d8bcec6e42a7ccf28a787e4a35bc40))
|
|
538
|
+
|
|
539
|
+
## [8.26.3](https://github.com/instructure/instructure-ui/compare/v8.26.2...v8.26.3) (2022-07-14)
|
|
540
|
+
|
|
541
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
542
|
+
|
|
543
|
+
## [8.26.2](https://github.com/instructure/instructure-ui/compare/v8.26.1...v8.26.2) (2022-07-11)
|
|
544
|
+
|
|
545
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
546
|
+
|
|
547
|
+
## [8.26.1](https://github.com/instructure/instructure-ui/compare/v8.26.0...v8.26.1) (2022-07-06)
|
|
548
|
+
|
|
549
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
550
|
+
|
|
551
|
+
# [8.26.0](https://github.com/instructure/instructure-ui/compare/v8.25.0...v8.26.0) (2022-06-30)
|
|
552
|
+
|
|
553
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
554
|
+
|
|
555
|
+
# [8.25.0](https://github.com/instructure/instructure-ui/compare/v8.24.5...v8.25.0) (2022-06-03)
|
|
556
|
+
|
|
557
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
558
|
+
|
|
559
|
+
## [8.24.5](https://github.com/instructure/instructure-ui/compare/v8.24.3...v8.24.5) (2022-05-31)
|
|
560
|
+
|
|
561
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
562
|
+
|
|
563
|
+
## [8.24.4](https://github.com/instructure/instructure-ui/compare/v8.24.3...v8.24.4) (2022-05-27)
|
|
564
|
+
|
|
565
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
566
|
+
|
|
567
|
+
## [8.24.3](https://github.com/instructure/instructure-ui/compare/v8.24.2...v8.24.3) (2022-05-25)
|
|
568
|
+
|
|
569
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
570
|
+
|
|
571
|
+
## [8.24.2](https://github.com/instructure/instructure-ui/compare/v8.24.1...v8.24.2) (2022-05-02)
|
|
572
|
+
|
|
573
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
574
|
+
|
|
575
|
+
## [8.24.1](https://github.com/instructure/instructure-ui/compare/v8.24.0...v8.24.1) (2022-04-29)
|
|
576
|
+
|
|
577
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
578
|
+
|
|
579
|
+
# [8.24.0](https://github.com/instructure/instructure-ui/compare/v8.23.0...v8.24.0) (2022-04-26)
|
|
580
|
+
|
|
581
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
582
|
+
|
|
583
|
+
# [8.23.0](https://github.com/instructure/instructure-ui/compare/v8.22.0...v8.23.0) (2022-04-07)
|
|
584
|
+
|
|
585
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
586
|
+
|
|
587
|
+
# [8.22.0](https://github.com/instructure/instructure-ui/compare/v8.21.0...v8.22.0) (2022-03-31)
|
|
588
|
+
|
|
589
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
590
|
+
|
|
591
|
+
# [8.21.0](https://github.com/instructure/instructure-ui/compare/v8.20.0...v8.21.0) (2022-03-30)
|
|
592
|
+
|
|
593
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
594
|
+
|
|
595
|
+
# [8.20.0](https://github.com/instructure/instructure-ui/compare/v8.19.0...v8.20.0) (2022-03-22)
|
|
596
|
+
|
|
597
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
598
|
+
|
|
599
|
+
# [8.19.0](https://github.com/instructure/instructure-ui/compare/v8.18.0...v8.19.0) (2022-03-16)
|
|
600
|
+
|
|
601
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
602
|
+
|
|
603
|
+
# [8.18.0](https://github.com/instructure/instructure-ui/compare/v8.17.0...v8.18.0) (2022-02-23)
|
|
604
|
+
|
|
605
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
606
|
+
|
|
607
|
+
# [8.17.0](https://github.com/instructure/instructure-ui/compare/v8.16.0...v8.17.0) (2022-02-07)
|
|
608
|
+
|
|
609
|
+
### Bug Fixes
|
|
610
|
+
|
|
611
|
+
- remove type:"commonjs" from package.json files ([0b243be](https://github.com/instructure/instructure-ui/commit/0b243bee389ee14493e6b3dbb30a8b660c295d3d))
|
|
612
|
+
|
|
613
|
+
# [8.16.0](https://github.com/instructure/instructure-ui/compare/v8.15.0...v8.16.0) (2022-02-03)
|
|
614
|
+
|
|
615
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
616
|
+
|
|
617
|
+
# [8.15.0](https://github.com/instructure/instructure-ui/compare/v8.14.0...v8.15.0) (2022-01-26)
|
|
618
|
+
|
|
619
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
620
|
+
|
|
621
|
+
# [8.14.0](https://github.com/instructure/instructure-ui/compare/v8.13.0...v8.14.0) (2021-12-16)
|
|
622
|
+
|
|
623
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
624
|
+
|
|
625
|
+
# [8.13.0](https://github.com/instructure/instructure-ui/compare/v8.12.0...v8.13.0) (2021-12-01)
|
|
626
|
+
|
|
627
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
628
|
+
|
|
629
|
+
# [8.12.0](https://github.com/instructure/instructure-ui/compare/v8.11.1...v8.12.0) (2021-11-17)
|
|
630
|
+
|
|
631
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
632
|
+
|
|
633
|
+
## [8.11.1](https://github.com/instructure/instructure-ui/compare/v8.11.0...v8.11.1) (2021-10-19)
|
|
634
|
+
|
|
635
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
636
|
+
|
|
637
|
+
# [8.11.0](https://github.com/instructure/instructure-ui/compare/v8.10.2...v8.11.0) (2021-10-15)
|
|
638
|
+
|
|
639
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
640
|
+
|
|
641
|
+
## [8.10.2](https://github.com/instructure/instructure-ui/compare/v8.10.1...v8.10.2) (2021-10-01)
|
|
642
|
+
|
|
643
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
644
|
+
|
|
645
|
+
## [8.10.1](https://github.com/instructure/instructure-ui/compare/v8.10.0...v8.10.1) (2021-10-01)
|
|
646
|
+
|
|
647
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
648
|
+
|
|
649
|
+
# [8.10.0](https://github.com/instructure/instructure-ui/compare/v8.9.1...v8.10.0) (2021-09-28)
|
|
650
|
+
|
|
651
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
652
|
+
|
|
653
|
+
## [8.9.1](https://github.com/instructure/instructure-ui/compare/v8.9.0...v8.9.1) (2021-09-16)
|
|
654
|
+
|
|
655
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
656
|
+
|
|
657
|
+
# [8.9.0](https://github.com/instructure/instructure-ui/compare/v8.8.0...v8.9.0) (2021-09-15)
|
|
658
|
+
|
|
659
|
+
### Bug Fixes
|
|
660
|
+
|
|
661
|
+
- fix shared-types TS errors ([7b83164](https://github.com/instructure/instructure-ui/commit/7b83164f4c5872f3a217e010563f59bf584ae4fc))
|
|
662
|
+
|
|
663
|
+
# [8.8.0](https://github.com/instructure/instructure-ui/compare/v8.7.0...v8.8.0) (2021-08-27)
|
|
664
|
+
|
|
665
|
+
### Features
|
|
666
|
+
|
|
667
|
+
- **ui-test-locator,ui-test-queries,ui-test-utils:** better TS types ([c7cb908](https://github.com/instructure/instructure-ui/commit/c7cb90874769129a6d30a8a36249a5c08b4821fc))
|
|
668
|
+
|
|
669
|
+
# [8.7.0](https://github.com/instructure/instructure-ui/compare/v8.6.0...v8.7.0) (2021-07-16)
|
|
670
|
+
|
|
671
|
+
### Features
|
|
672
|
+
|
|
673
|
+
- add support for React 17 ([f647826](https://github.com/instructure/instructure-ui/commit/f64782688b404f950e03c7f83a8328f0ca588248))
|
|
674
|
+
|
|
675
|
+
# [8.6.0](https://github.com/instructure/instructure-ui/compare/v8.5.0...v8.6.0) (2021-06-18)
|
|
676
|
+
|
|
677
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
678
|
+
|
|
679
|
+
# [8.5.0](https://github.com/instructure/instructure-ui/compare/v8.4.0...v8.5.0) (2021-06-09)
|
|
680
|
+
|
|
681
|
+
### Bug Fixes
|
|
682
|
+
|
|
683
|
+
- **emotion:** add componentId to match with componenet name in docs ([cc255eb](https://github.com/instructure/instructure-ui/commit/cc255ebef149ffe19a2102a179c1e7765b633888))
|
|
684
|
+
|
|
685
|
+
# [8.4.0](https://github.com/instructure/instructure-ui/compare/v8.3.0...v8.4.0) (2021-05-11)
|
|
686
|
+
|
|
687
|
+
### Bug Fixes
|
|
688
|
+
|
|
689
|
+
- fix all inter-package dependencies using fix version ([75cd898](https://github.com/instructure/instructure-ui/commit/75cd8983b7e206e4e14dc67c490c103cb4a3d915))
|
|
690
|
+
|
|
691
|
+
# [8.3.0](https://github.com/instructure/instructure-ui/compare/v8.2.1...v8.3.0) (2021-05-04)
|
|
692
|
+
|
|
693
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
694
|
+
|
|
695
|
+
## [8.2.1](https://github.com/instructure/instructure-ui/compare/v8.2.0...v8.2.1) (2021-04-22)
|
|
696
|
+
|
|
697
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
698
|
+
|
|
699
|
+
# [8.2.0](https://github.com/instructure/instructure-ui/compare/v8.1.0...v8.2.0) (2021-04-22)
|
|
700
|
+
|
|
701
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
702
|
+
|
|
703
|
+
# [8.1.0](https://github.com/instructure/instructure-ui/compare/v8.0.0...v8.1.0) (2021-04-15)
|
|
704
|
+
|
|
705
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
706
|
+
|
|
707
|
+
# [8.0.0](https://github.com/instructure/instructure-ui/compare/v7.5.0...v8.0.0) (2021-03-29)
|
|
708
|
+
|
|
709
|
+
### Code Refactoring
|
|
710
|
+
|
|
711
|
+
- **Migrated the package and it's component(s) from using `ui-themeable` to using the new theming solution based on [emotion.js](https://emotion.sh/).**
|
|
712
|
+
- **ui-buttons,ui-toggle-details:** remove deprecated `fluidWidth` prop ([0ced14e](https://github.com/instructure/instructure-ui/commit/0ced14e08e15d6922dc6b3aac755ed2686ad7a70))
|
|
713
|
+
|
|
714
|
+
### BREAKING CHANGES
|
|
715
|
+
|
|
716
|
+
- **ui-buttons,ui-toggle-details:** Removed deprecated `fluidWidth` prop, set `display="block"` and `textAlign="start"` instead.
|
|
717
|
+
|
|
718
|
+
# [7.5.0](https://github.com/instructure/instructure-ui/compare/v7.4.4...v7.5.0) (2021-03-22)
|
|
719
|
+
|
|
720
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
721
|
+
|
|
722
|
+
## [7.4.4](https://github.com/instructure/instructure-ui/compare/v7.4.3...v7.4.4) (2021-03-12)
|
|
723
|
+
|
|
724
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
725
|
+
|
|
726
|
+
## [7.4.3](https://github.com/instructure/instructure-ui/compare/v7.4.1...v7.4.3) (2021-03-11)
|
|
727
|
+
|
|
728
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
729
|
+
|
|
730
|
+
## [7.4.2](https://github.com/instructure/instructure-ui/compare/v7.4.1...v7.4.2) (2021-03-11)
|
|
731
|
+
|
|
732
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
733
|
+
|
|
734
|
+
## [7.4.1](https://github.com/instructure/instructure-ui/compare/v7.4.0...v7.4.1) (2021-03-04)
|
|
735
|
+
|
|
736
|
+
### Bug Fixes
|
|
737
|
+
|
|
738
|
+
- **all:** Fix package imports, now everything can be imported; fix test:all in main package.json ([2f11024](https://github.com/instructure/instructure-ui/commit/2f11024))
|
|
739
|
+
|
|
740
|
+
# [7.4.0](https://github.com/instructure/instructure-ui/compare/v7.3.5...v7.4.0) (2021-02-01)
|
|
741
|
+
|
|
742
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
743
|
+
|
|
744
|
+
## [7.3.5](https://github.com/instructure/instructure-ui/compare/v7.3.2...v7.3.5) (2021-01-21)
|
|
745
|
+
|
|
746
|
+
### Bug Fixes
|
|
747
|
+
|
|
748
|
+
- **esm:** specify "exports" in package manifests ([6007684](https://github.com/instructure/instructure-ui/commit/6007684))
|
|
749
|
+
|
|
750
|
+
## [7.3.4](https://github.com/instructure/instructure-ui/compare/v7.3.2...v7.3.4) (2021-01-14)
|
|
751
|
+
|
|
752
|
+
### Bug Fixes
|
|
753
|
+
|
|
754
|
+
- **esm:** specify "exports" in package manifests ([6007684](https://github.com/instructure/instructure-ui/commit/6007684))
|
|
755
|
+
|
|
756
|
+
## [7.3.3](https://github.com/instructure/instructure-ui/compare/v7.3.2...v7.3.3) (2021-01-13)
|
|
757
|
+
|
|
758
|
+
### Bug Fixes
|
|
759
|
+
|
|
760
|
+
- **esm:** specify "exports" in package manifests ([6007684](https://github.com/instructure/instructure-ui/commit/6007684))
|
|
761
|
+
|
|
762
|
+
## [7.3.2](https://github.com/instructure/instructure-ui/compare/v7.3.1...v7.3.2) (2020-12-10)
|
|
763
|
+
|
|
764
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
765
|
+
|
|
766
|
+
## [7.3.1](https://github.com/instructure/instructure-ui/compare/v7.3.0...v7.3.1) (2020-11-30)
|
|
767
|
+
|
|
768
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
769
|
+
|
|
770
|
+
# [7.3.0](https://github.com/instructure/instructure-ui/compare/v7.2.4...v7.3.0) (2020-10-26)
|
|
771
|
+
|
|
772
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
773
|
+
|
|
774
|
+
## [7.2.4](https://github.com/instructure/instructure-ui/compare/v7.2.0...v7.2.4) (2020-10-09)
|
|
775
|
+
|
|
776
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
777
|
+
|
|
778
|
+
## [7.2.3](https://github.com/instructure/instructure-ui/compare/v7.2.0...v7.2.3) (2020-10-08)
|
|
779
|
+
|
|
780
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
781
|
+
|
|
782
|
+
## [7.2.2](https://github.com/instructure/instructure-ui/compare/v7.2.0...v7.2.2) (2020-10-08)
|
|
783
|
+
|
|
784
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
785
|
+
|
|
786
|
+
## [7.2.1](https://github.com/instructure/instructure-ui/compare/v7.2.0...v7.2.1) (2020-10-07)
|
|
787
|
+
|
|
788
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
789
|
+
|
|
790
|
+
# [7.2.0](https://github.com/instructure/instructure-ui/compare/v7.1.4...v7.2.0) (2020-09-23)
|
|
791
|
+
|
|
792
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
793
|
+
|
|
794
|
+
## [7.1.4](https://github.com/instructure/instructure-ui/compare/v7.1.3...v7.1.4) (2020-09-09)
|
|
795
|
+
|
|
796
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
797
|
+
|
|
798
|
+
## [7.1.3](https://github.com/instructure/instructure-ui/compare/v7.1.2...v7.1.3) (2020-08-10)
|
|
799
|
+
|
|
800
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
801
|
+
|
|
802
|
+
## [7.1.2](https://github.com/instructure/instructure-ui/compare/v7.1.1...v7.1.2) (2020-07-17)
|
|
803
|
+
|
|
804
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
805
|
+
|
|
806
|
+
## [7.1.1](https://github.com/instructure/instructure-ui/compare/v7.1.0...v7.1.1) (2020-07-01)
|
|
807
|
+
|
|
808
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
809
|
+
|
|
810
|
+
# [7.1.0](https://github.com/instructure/instructure-ui/compare/v7.0.0...v7.1.0) (2020-06-25)
|
|
811
|
+
|
|
812
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
813
|
+
|
|
814
|
+
# [7.0.0](https://github.com/instructure/instructure-ui/compare/v6.26.0...v7.0.0) (2020-05-27)
|
|
815
|
+
|
|
816
|
+
### Bug Fixes
|
|
817
|
+
|
|
818
|
+
- **docs,ui-toggle-details:** update under the hood props + a couple README prop ([ccbb0b2](https://github.com/instructure/instructure-ui/commit/ccbb0b2))
|
|
819
|
+
|
|
820
|
+
### chore
|
|
821
|
+
|
|
822
|
+
- bump minimum react version to 16.8.0 ([7a96f00](https://github.com/instructure/instructure-ui/commit/7a96f00))
|
|
823
|
+
- remove references to React 15 ([4bb2426](https://github.com/instructure/instructure-ui/commit/4bb2426))
|
|
824
|
+
|
|
825
|
+
### BREAKING CHANGES
|
|
826
|
+
|
|
827
|
+
- - Minimum react and react-dom version raised to 16.8.0
|
|
828
|
+
|
|
829
|
+
TEST PLAN:
|
|
830
|
+
|
|
831
|
+
- no regressions in docs app
|
|
832
|
+
- homepage should note the react version change
|
|
833
|
+
- automated tests should pass
|
|
834
|
+
|
|
835
|
+
Change-Id: I7cd9dd6423fb9524e0a1a0dd490caeee3a2c2c17
|
|
836
|
+
Reviewed-on: https://gerrit.instructure.com/c/instructure-ui/+/237727
|
|
837
|
+
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
|
|
838
|
+
Reviewed-by: Chris Guerrero <cguerrero@instructure.com>
|
|
839
|
+
Product-Review: Steve Jensen <sejensen@instructure.com>
|
|
840
|
+
QA-Review: Daniel Sasaki <dsasaki@instructure.com>
|
|
841
|
+
Visual-Regression-Test: Ken Meleta <kmeleta@instructure.com>
|
|
842
|
+
|
|
843
|
+
- Dropping support for React 15.
|
|
844
|
+
|
|
845
|
+
TEST PLAN:
|
|
846
|
+
|
|
847
|
+
- yarn dev/yarn start should work
|
|
848
|
+
- yarn test/test:watch should work
|
|
849
|
+
- there should be no mention of react 15 in code
|
|
850
|
+
- there should be nothing depending on react 15
|
|
851
|
+
or reactDOM 15
|
|
852
|
+
|
|
853
|
+
Change-Id: I2c054c986421014ffe15f0402e14bd2725cbc267
|
|
854
|
+
Reviewed-on: https://gerrit.instructure.com/c/instructure-ui/+/229009
|
|
855
|
+
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
|
|
856
|
+
QA-Review: Daniel Sasaki <dsasaki@instructure.com>
|
|
857
|
+
Visual-Regression-Test: Ken Meleta <kmeleta@instructure.com>
|
|
858
|
+
Reviewed-by: Steve Jensen <sejensen@instructure.com>
|
|
859
|
+
Product-Review: Steve Jensen <sejensen@instructure.com>
|
|
860
|
+
|
|
861
|
+
# [6.26.0](https://github.com/instructure/instructure-ui/compare/v6.25.0...v6.26.0) (2020-04-30)
|
|
862
|
+
|
|
863
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
864
|
+
|
|
865
|
+
# [6.25.0](https://github.com/instructure/instructure-ui/compare/v6.24.0...v6.25.0) (2020-04-27)
|
|
866
|
+
|
|
867
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
868
|
+
|
|
869
|
+
# [6.24.0](https://github.com/instructure/instructure-ui/compare/v6.23.0...v6.24.0) (2020-04-14)
|
|
870
|
+
|
|
871
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
872
|
+
|
|
873
|
+
# [6.23.0](https://github.com/instructure/instructure-ui/compare/v6.22.0...v6.23.0) (2020-04-02)
|
|
874
|
+
|
|
875
|
+
### Features
|
|
876
|
+
|
|
877
|
+
- **ui-docs-client:** update deprecated components still in use ([4543717](https://github.com/instructure/instructure-ui/commit/4543717))
|
|
878
|
+
|
|
879
|
+
# [6.22.0](https://github.com/instructure/instructure-ui/compare/v6.21.0...v6.22.0) (2020-03-16)
|
|
880
|
+
|
|
881
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
882
|
+
|
|
883
|
+
# [6.21.0](https://github.com/instructure/instructure-ui/compare/v6.20.0...v6.21.0) (2020-02-26)
|
|
884
|
+
|
|
885
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
886
|
+
|
|
887
|
+
# [6.20.0](https://github.com/instructure/instructure-ui/compare/v6.19.0...v6.20.0) (2020-02-13)
|
|
888
|
+
|
|
889
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
890
|
+
|
|
891
|
+
# [6.19.0](https://github.com/instructure/instructure-ui/compare/v6.18.0...v6.19.0) (2020-02-11)
|
|
892
|
+
|
|
893
|
+
### Features
|
|
894
|
+
|
|
895
|
+
- **ui-docs-client:** use updated Button throughout docs/components ([9f0be81](https://github.com/instructure/instructure-ui/commit/9f0be81))
|
|
896
|
+
|
|
897
|
+
# [6.18.0](https://github.com/instructure/instructure-ui/compare/v6.17.0...v6.18.0) (2020-02-04)
|
|
898
|
+
|
|
899
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
900
|
+
|
|
901
|
+
# [6.17.0](https://github.com/instructure/instructure-ui/compare/v6.16.0...v6.17.0) (2020-01-22)
|
|
902
|
+
|
|
903
|
+
### Bug Fixes
|
|
904
|
+
|
|
905
|
+
- Update Package READMEs and align deprecation statements ([8f892e4](https://github.com/instructure/instructure-ui/commit/8f892e4))
|
|
906
|
+
|
|
907
|
+
### Features
|
|
908
|
+
|
|
909
|
+
- **ui-toggle-details:** use IconButton internally for the toggle btn ([f1679c4](https://github.com/instructure/instructure-ui/commit/f1679c4))
|
|
910
|
+
|
|
911
|
+
# [6.16.0](https://github.com/instructure/instructure-ui/compare/v6.15.0...v6.16.0) (2019-12-13)
|
|
912
|
+
|
|
913
|
+
### Features
|
|
914
|
+
|
|
915
|
+
- **ui-expandable:** add ui-expandable package ([6e5bfd3](https://github.com/instructure/instructure-ui/commit/6e5bfd3))
|
|
916
|
+
|
|
917
|
+
# [6.15.0](https://github.com/instructure/instructure-ui/compare/v6.14.0...v6.15.0) (2019-11-18)
|
|
918
|
+
|
|
919
|
+
### Features
|
|
920
|
+
|
|
921
|
+
- **ui-a11y-content:** remove experimental flag from ui-a11y-content package ([ce96006](https://github.com/instructure/instructure-ui/commit/ce96006))
|
|
922
|
+
- **ui-flex,ui-layout:** make ui-flex backwards compatible ([c11cc6b](https://github.com/instructure/instructure-ui/commit/c11cc6b))
|
|
923
|
+
- **ui-view:** Make ui-view backwards-compatible ([7dd2a2f](https://github.com/instructure/instructure-ui/commit/7dd2a2f))
|
|
924
|
+
|
|
925
|
+
# [6.14.0](https://github.com/instructure/instructure-ui/compare/v6.13.0...v6.14.0) (2019-10-14)
|
|
926
|
+
|
|
927
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
928
|
+
|
|
929
|
+
# [6.13.0](https://github.com/instructure/instructure-ui/compare/v6.12.0...v6.13.0) (2019-09-24)
|
|
930
|
+
|
|
931
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
932
|
+
|
|
933
|
+
# [6.12.0](https://github.com/instructure/instructure-ui/compare/v6.11.0...v6.12.0) (2019-09-17)
|
|
934
|
+
|
|
935
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
936
|
+
|
|
937
|
+
# [6.11.0](https://github.com/instructure/instructure-ui/compare/v6.10.0...v6.11.0) (2019-09-16)
|
|
938
|
+
|
|
939
|
+
### Features
|
|
940
|
+
|
|
941
|
+
- **ui-a11y-content,ui-a11y:** add ui-a11y-content package ([cb49c7a](https://github.com/instructure/instructure-ui/commit/cb49c7a))
|
|
942
|
+
- **ui-flex:** add ui-flex package ([98730ff](https://github.com/instructure/instructure-ui/commit/98730ff))
|
|
943
|
+
- **ui-view:** add ui-view Package for View Component ([7799577](https://github.com/instructure/instructure-ui/commit/7799577))
|
|
944
|
+
- **ui-view:** mark ui-view as experimental ([6b805fa](https://github.com/instructure/instructure-ui/commit/6b805fa))
|
|
945
|
+
|
|
946
|
+
# [6.10.0](https://github.com/instructure/instructure-ui/compare/v6.9.0...v6.10.0) (2019-08-27)
|
|
947
|
+
|
|
948
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
949
|
+
|
|
950
|
+
# [6.9.0](https://github.com/instructure/instructure-ui/compare/v6.8.1...v6.9.0) (2019-08-07)
|
|
951
|
+
|
|
952
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
953
|
+
|
|
954
|
+
## [6.8.1](https://github.com/instructure/instructure-ui/compare/v6.8.0...v6.8.1) (2019-08-02)
|
|
955
|
+
|
|
956
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
957
|
+
|
|
958
|
+
# [6.8.0](https://github.com/instructure/instructure-ui/compare/v6.7.0...v6.8.0) (2019-07-31)
|
|
959
|
+
|
|
960
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
961
|
+
|
|
962
|
+
# [6.7.0](https://github.com/instructure/instructure-ui/compare/v6.6.0...v6.7.0) (2019-07-15)
|
|
963
|
+
|
|
964
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
965
|
+
|
|
966
|
+
# [6.6.0](https://github.com/instructure/instructure-ui/compare/v6.5.0...v6.6.0) (2019-07-03)
|
|
967
|
+
|
|
968
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
969
|
+
|
|
970
|
+
# [6.5.0](https://github.com/instructure/instructure-ui/compare/v6.4.0...v6.5.0) (2019-07-01)
|
|
971
|
+
|
|
972
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
973
|
+
|
|
974
|
+
# [6.4.0](https://github.com/instructure/instructure-ui/compare/v6.3.0...v6.4.0) (2019-06-13)
|
|
975
|
+
|
|
976
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
977
|
+
|
|
978
|
+
# [6.3.0](https://github.com/instructure/instructure-ui/compare/v6.2.0...v6.3.0) (2019-05-28)
|
|
979
|
+
|
|
980
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
981
|
+
|
|
982
|
+
# [6.2.0](https://github.com/instructure/instructure-ui/compare/v6.1.0...v6.2.0) (2019-05-13)
|
|
983
|
+
|
|
984
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
985
|
+
|
|
986
|
+
# [6.1.0](https://github.com/instructure/instructure-ui/compare/v6.0.0...v6.1.0) (2019-05-09)
|
|
987
|
+
|
|
988
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
989
|
+
|
|
990
|
+
# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03)
|
|
991
|
+
|
|
992
|
+
### Features
|
|
993
|
+
|
|
994
|
+
- remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c))
|
|
995
|
+
- **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45))
|
|
996
|
+
- **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2))
|
|
997
|
+
|
|
998
|
+
### Performance Improvements
|
|
999
|
+
|
|
1000
|
+
- **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee))
|
|
1001
|
+
|
|
1002
|
+
### BREAKING CHANGES
|
|
1003
|
+
|
|
1004
|
+
- - ui-core package has been removed
|
|
1005
|
+
|
|
1006
|
+
## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25)
|
|
1007
|
+
|
|
1008
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1009
|
+
|
|
1010
|
+
## [5.52.2](https://github.com/instructure/instructure-ui/compare/v5.52.1...v5.52.2) (2019-04-17)
|
|
1011
|
+
|
|
1012
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1013
|
+
|
|
1014
|
+
## [5.52.1](https://github.com/instructure/instructure-ui/compare/v5.52.0...v5.52.1) (2019-04-08)
|
|
1015
|
+
|
|
1016
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1017
|
+
|
|
1018
|
+
# [5.52.0](https://github.com/instructure/instructure-ui/compare/v5.51.1...v5.52.0) (2019-04-03)
|
|
1019
|
+
|
|
1020
|
+
### Features
|
|
1021
|
+
|
|
1022
|
+
- **console:** remove console statements in prod env ([603c738](https://github.com/instructure/instructure-ui/commit/603c738))
|
|
1023
|
+
|
|
1024
|
+
## [5.51.1](https://github.com/instructure/instructure-ui/compare/v5.51.0...v5.51.1) (2019-03-30)
|
|
1025
|
+
|
|
1026
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1027
|
+
|
|
1028
|
+
# [5.51.0](https://github.com/instructure/instructure-ui/compare/v5.50.0...v5.51.0) (2019-03-29)
|
|
1029
|
+
|
|
1030
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1031
|
+
|
|
1032
|
+
# [5.50.0](https://github.com/instructure/instructure-ui/compare/v5.49.0...v5.50.0) (2019-03-28)
|
|
1033
|
+
|
|
1034
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1035
|
+
|
|
1036
|
+
# [5.49.0](https://github.com/instructure/instructure-ui/compare/v5.48.0...v5.49.0) (2019-03-22)
|
|
1037
|
+
|
|
1038
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1039
|
+
|
|
1040
|
+
# [5.48.0](https://github.com/instructure/instructure-ui/compare/v5.47.0...v5.48.0) (2019-03-18)
|
|
1041
|
+
|
|
1042
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1043
|
+
|
|
1044
|
+
# [5.47.0](https://github.com/instructure/instructure-ui/compare/v5.46.1...v5.47.0) (2019-03-15)
|
|
1045
|
+
|
|
1046
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1047
|
+
|
|
1048
|
+
## [5.46.1](https://github.com/instructure/instructure-ui/compare/v5.46.0...v5.46.1) (2019-03-13)
|
|
1049
|
+
|
|
1050
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1051
|
+
|
|
1052
|
+
# [5.46.0](https://github.com/instructure/instructure-ui/compare/v5.45.1...v5.46.0) (2019-03-12)
|
|
1053
|
+
|
|
1054
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1055
|
+
|
|
1056
|
+
## [5.45.1](https://github.com/instructure/instructure-ui/compare/v5.45.0...v5.45.1) (2019-03-12)
|
|
1057
|
+
|
|
1058
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1059
|
+
|
|
1060
|
+
# [5.45.0](https://github.com/instructure/instructure-ui/compare/v5.44.0...v5.45.0) (2019-03-11)
|
|
1061
|
+
|
|
1062
|
+
### Features
|
|
1063
|
+
|
|
1064
|
+
- A ui-prop-types package ([0fbc609](https://github.com/instructure/instructure-ui/commit/0fbc609))
|
|
1065
|
+
- **ui-test-utils:** add aliases for finding by text, label ([14fdb9e](https://github.com/instructure/instructure-ui/commit/14fdb9e))
|
|
1066
|
+
|
|
1067
|
+
# [5.44.0](https://github.com/instructure/instructure-ui/compare/v5.43.0...v5.44.0) (2019-03-01)
|
|
1068
|
+
|
|
1069
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1070
|
+
|
|
1071
|
+
# [5.43.0](https://github.com/instructure/instructure-ui/compare/v5.42.0...v5.43.0) (2019-02-27)
|
|
1072
|
+
|
|
1073
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1074
|
+
|
|
1075
|
+
<a name="5.42.0"></a>
|
|
1076
|
+
|
|
1077
|
+
# [5.42.0](https://github.com/instructure/instructure-ui/compare/v5.41.1...v5.42.0) (2019-02-15)
|
|
1078
|
+
|
|
1079
|
+
### Features
|
|
1080
|
+
|
|
1081
|
+
- **ui-scripts,ui-test-utils:** add a --mocha option to ui-test ([bd37e2b](https://github.com/instructure/instructure-ui/commit/bd37e2b))
|
|
1082
|
+
|
|
1083
|
+
<a name="5.41.1"></a>
|
|
1084
|
+
|
|
1085
|
+
## [5.41.1](https://github.com/instructure/instructure-ui/compare/v5.41.0...v5.41.1) (2019-01-30)
|
|
1086
|
+
|
|
1087
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1088
|
+
|
|
1089
|
+
<a name="5.41.0"></a>
|
|
1090
|
+
|
|
1091
|
+
# [5.41.0](https://github.com/instructure/instructure-ui/compare/v5.40.0...v5.41.0) (2019-01-29)
|
|
1092
|
+
|
|
1093
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1094
|
+
|
|
1095
|
+
<a name="5.40.0"></a>
|
|
1096
|
+
|
|
1097
|
+
# [5.40.0](https://github.com/instructure/instructure-ui/compare/v5.39.0...v5.40.0) (2019-01-15)
|
|
1098
|
+
|
|
1099
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1100
|
+
|
|
1101
|
+
<a name="5.39.0"></a>
|
|
1102
|
+
|
|
1103
|
+
# [5.39.0](https://github.com/instructure/instructure-ui/compare/v5.38.0...v5.39.0) (2019-01-11)
|
|
1104
|
+
|
|
1105
|
+
### Features
|
|
1106
|
+
|
|
1107
|
+
- **uid:** Add a uid package/util ([279bcda](https://github.com/instructure/instructure-ui/commit/279bcda))
|
|
1108
|
+
|
|
1109
|
+
<a name="5.38.0"></a>
|
|
1110
|
+
|
|
1111
|
+
# [5.38.0](https://github.com/instructure/instructure-ui/compare/v5.37.0...v5.38.0) (2019-01-04)
|
|
1112
|
+
|
|
1113
|
+
### Bug Fixes
|
|
1114
|
+
|
|
1115
|
+
- **ui-test-utils:** logic that determines visibility is incorrect ([f0d59b1](https://github.com/instructure/instructure-ui/commit/f0d59b1))
|
|
1116
|
+
|
|
1117
|
+
<a name="5.37.0"></a>
|
|
1118
|
+
|
|
1119
|
+
# [5.37.0](https://github.com/instructure/instructure-ui/compare/v5.36.0...v5.37.0) (2018-12-18)
|
|
1120
|
+
|
|
1121
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1122
|
+
|
|
1123
|
+
<a name="5.36.0"></a>
|
|
1124
|
+
|
|
1125
|
+
# [5.36.0](https://github.com/instructure/instructure-ui/compare/v5.35.0...v5.36.0) (2018-12-12)
|
|
1126
|
+
|
|
1127
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1128
|
+
|
|
1129
|
+
<a name="5.35.0"></a>
|
|
1130
|
+
|
|
1131
|
+
# [5.35.0](https://github.com/instructure/instructure-ui/compare/v5.34.0...v5.35.0) (2018-12-06)
|
|
1132
|
+
|
|
1133
|
+
### Features
|
|
1134
|
+
|
|
1135
|
+
- **ui-test-utils:** add selector to query failure messages ([e77358e](https://github.com/instructure/instructure-ui/commit/e77358e))
|
|
1136
|
+
- **ui-test-utils:** support Sizzle selectors ([65481ff](https://github.com/instructure/instructure-ui/commit/65481ff))
|
|
1137
|
+
|
|
1138
|
+
<a name="5.34.0"></a>
|
|
1139
|
+
|
|
1140
|
+
# [5.34.0](https://github.com/instructure/instructure-ui/compare/v5.33.0...v5.34.0) (2018-11-20)
|
|
1141
|
+
|
|
1142
|
+
### Features
|
|
1143
|
+
|
|
1144
|
+
- **ui-focusable:** update focus outline to 2px ([962e689](https://github.com/instructure/instructure-ui/commit/962e689))
|
|
1145
|
+
|
|
1146
|
+
<a name="5.33.0"></a>
|
|
1147
|
+
|
|
1148
|
+
# [5.33.0](https://github.com/instructure/instructure-ui/compare/v5.32.0...v5.33.0) (2018-11-14)
|
|
1149
|
+
|
|
1150
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1151
|
+
|
|
1152
|
+
<a name="5.32.0"></a>
|
|
1153
|
+
|
|
1154
|
+
# [5.32.0](https://github.com/instructure/instructure-ui/compare/v5.31.0...v5.32.0) (2018-10-31)
|
|
1155
|
+
|
|
1156
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1157
|
+
|
|
1158
|
+
<a name="5.31.0"></a>
|
|
1159
|
+
|
|
1160
|
+
# [5.31.0](https://github.com/instructure/instructure-ui/compare/v5.30.0...v5.31.0) (2018-10-26)
|
|
1161
|
+
|
|
1162
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1163
|
+
|
|
1164
|
+
<a name="5.30.0"></a>
|
|
1165
|
+
|
|
1166
|
+
# [5.30.0](https://github.com/instructure/instructure-ui/compare/v5.29.0...v5.30.0) (2018-09-27)
|
|
1167
|
+
|
|
1168
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1169
|
+
|
|
1170
|
+
<a name="5.29.0"></a>
|
|
1171
|
+
|
|
1172
|
+
# [5.29.0](https://github.com/instructure/instructure-ui/compare/v5.28.1...v5.29.0) (2018-09-26)
|
|
1173
|
+
|
|
1174
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1175
|
+
|
|
1176
|
+
<a name="5.28.1"></a>
|
|
1177
|
+
|
|
1178
|
+
## [5.28.1](https://github.com/instructure/instructure-ui/compare/v5.28.0...v5.28.1) (2018-09-18)
|
|
1179
|
+
|
|
1180
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1181
|
+
|
|
1182
|
+
<a name="5.28.0"></a>
|
|
1183
|
+
|
|
1184
|
+
# [5.28.0](https://github.com/instructure/instructure-ui/compare/v5.27.0...v5.28.0) (2018-09-13)
|
|
1185
|
+
|
|
1186
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1187
|
+
|
|
1188
|
+
<a name="5.27.0"></a>
|
|
1189
|
+
|
|
1190
|
+
# [5.27.0](https://github.com/instructure/instructure-ui/compare/v5.26.0...v5.27.0) (2018-09-10)
|
|
1191
|
+
|
|
1192
|
+
### Features
|
|
1193
|
+
|
|
1194
|
+
- **docs-examples,generate-examples:** autogenerate component examples ([b50fae5](https://github.com/instructure/instructure-ui/commit/b50fae5))
|
|
1195
|
+
|
|
1196
|
+
<a name="5.26.0"></a>
|
|
1197
|
+
|
|
1198
|
+
# [5.26.0](https://github.com/instructure/instructure-ui/compare/v5.25.0...v5.26.0) (2018-09-06)
|
|
1199
|
+
|
|
1200
|
+
### Features
|
|
1201
|
+
|
|
1202
|
+
- **ui-axe-check:** Add axe-core wrapper utility ([3264318](https://github.com/instructure/instructure-ui/commit/3264318))
|
|
1203
|
+
|
|
1204
|
+
<a name="5.25.0"></a>
|
|
1205
|
+
|
|
1206
|
+
# [5.25.0](https://github.com/instructure/instructure-ui/compare/v5.24.0...v5.25.0) (2018-08-24)
|
|
1207
|
+
|
|
1208
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1209
|
+
|
|
1210
|
+
<a name="5.24.0"></a>
|
|
1211
|
+
|
|
1212
|
+
# [5.24.0](https://github.com/instructure/instructure-ui/compare/v5.23.0...v5.24.0) (2018-08-08)
|
|
1213
|
+
|
|
1214
|
+
### Bug Fixes
|
|
1215
|
+
|
|
1216
|
+
- **ui-elements:** remove relative import ([d0a184e](https://github.com/instructure/instructure-ui/commit/d0a184e))
|
|
1217
|
+
|
|
1218
|
+
### Performance Improvements
|
|
1219
|
+
|
|
1220
|
+
- get babel helpers from 'babel-runtime' instead of inlining them ([1472658](https://github.com/instructure/instructure-ui/commit/1472658))
|
|
1221
|
+
|
|
1222
|
+
<a name="5.23.0"></a>
|
|
1223
|
+
|
|
1224
|
+
# [5.23.0](https://github.com/instructure/instructure-ui/compare/v5.22.0...v5.23.0) (2018-08-03)
|
|
1225
|
+
|
|
1226
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1227
|
+
|
|
1228
|
+
<a name="5.22.0"></a>
|
|
1229
|
+
|
|
1230
|
+
# [5.22.0](https://github.com/instructure/instructure-ui/compare/v5.21.0...v5.22.0) (2018-07-27)
|
|
1231
|
+
|
|
1232
|
+
### Bug Fixes
|
|
1233
|
+
|
|
1234
|
+
- move React/ReactDOM back to peerDependencies ([99e9458](https://github.com/instructure/instructure-ui/commit/99e9458))
|
|
1235
|
+
|
|
1236
|
+
<a name="5.21.0"></a>
|
|
1237
|
+
|
|
1238
|
+
# [5.21.0](https://github.com/instructure/instructure-ui/compare/v5.20.1...v5.21.0) (2018-07-25)
|
|
1239
|
+
|
|
1240
|
+
### Bug Fixes
|
|
1241
|
+
|
|
1242
|
+
- add React,React-DOM 16 to dependencies ([d49430f](https://github.com/instructure/instructure-ui/commit/d49430f))
|
|
1243
|
+
|
|
1244
|
+
<a name="5.20.1"></a>
|
|
1245
|
+
|
|
1246
|
+
## [5.20.1](https://github.com/instructure/instructure-ui/compare/v5.20.0...v5.20.1) (2018-07-18)
|
|
1247
|
+
|
|
1248
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1249
|
+
|
|
1250
|
+
<a name="5.20.0"></a>
|
|
1251
|
+
|
|
1252
|
+
# [5.20.0](https://github.com/instructure/instructure-ui/compare/v5.19.0...v5.20.0) (2018-07-17)
|
|
1253
|
+
|
|
1254
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1255
|
+
|
|
1256
|
+
<a name="5.19.0"></a>
|
|
1257
|
+
|
|
1258
|
+
# [5.19.0](https://github.com/instructure/instructure-ui/compare/v5.18.0...v5.19.0) (2018-07-12)
|
|
1259
|
+
|
|
1260
|
+
### Features
|
|
1261
|
+
|
|
1262
|
+
- **ui-a11y,ui-focusable:** add Focusable component ([555bb30](https://github.com/instructure/instructure-ui/commit/555bb30))
|
|
1263
|
+
|
|
1264
|
+
<a name="5.18.0"></a>
|
|
1265
|
+
|
|
1266
|
+
# [5.18.0](https://github.com/instructure/instructure-ui/compare/v5.17.0...v5.18.0) (2018-07-09)
|
|
1267
|
+
|
|
1268
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1269
|
+
|
|
1270
|
+
<a name="5.17.0"></a>
|
|
1271
|
+
|
|
1272
|
+
# [5.17.0](https://github.com/instructure/instructure-ui/compare/v5.16.0...v5.17.0) (2018-07-06)
|
|
1273
|
+
|
|
1274
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1275
|
+
|
|
1276
|
+
<a name="5.16.0"></a>
|
|
1277
|
+
|
|
1278
|
+
# [5.16.0](https://github.com/instructure/instructure-ui/compare/v5.15.0...v5.16.0) (2018-07-06)
|
|
1279
|
+
|
|
1280
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1281
|
+
|
|
1282
|
+
<a name="5.15.0"></a>
|
|
1283
|
+
|
|
1284
|
+
# [5.15.0](https://github.com/instructure/instructure-ui/compare/v5.14.0...v5.15.0) (2018-06-28)
|
|
1285
|
+
|
|
1286
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1287
|
+
|
|
1288
|
+
<a name="5.14.0"></a>
|
|
1289
|
+
|
|
1290
|
+
# [5.14.0](https://github.com/instructure/instructure-ui/compare/v5.13.1...v5.14.0) (2018-06-28)
|
|
1291
|
+
|
|
1292
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1293
|
+
|
|
1294
|
+
<a name="5.13.1"></a>
|
|
1295
|
+
|
|
1296
|
+
## [5.13.1](https://github.com/instructure/instructure-ui/compare/v5.13.0...v5.13.1) (2018-06-22)
|
|
1297
|
+
|
|
1298
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1299
|
+
|
|
1300
|
+
<a name="5.13.0"></a>
|
|
1301
|
+
|
|
1302
|
+
# [5.13.0](https://github.com/instructure/instructure-ui/compare/v5.12.0...v5.13.0) (2018-06-16)
|
|
1303
|
+
|
|
1304
|
+
**Note:** Version bump only for package @instructure/ui-toggle-details
|
|
1305
|
+
|
|
1306
|
+
<a name="5.12.0"></a>
|
|
1307
|
+
|
|
1308
|
+
# [5.12.0](https://github.com/instructure/instructure-ui/compare/v5.11.0...v5.12.0) (2018-06-11)
|
|
1309
|
+
|
|
1310
|
+
### Features
|
|
1311
|
+
|
|
1312
|
+
- **ui-buttons,Button:** Add icon prop ([3e63ef7](https://github.com/instructure/instructure-ui/commit/3e63ef7))
|
|
1313
|
+
|
|
1314
|
+
<a name="5.11.0"></a>
|
|
1315
|
+
|
|
1316
|
+
# [5.11.0](https://github.com/instructure/instructure-ui/compare/v5.10.0...v5.11.0) (2018-06-06)
|
|
1317
|
+
|
|
1318
|
+
### Features
|
|
1319
|
+
|
|
1320
|
+
- **ui-presets:** Add stylelint rules for bidrectional text support ([b58ea17](https://github.com/instructure/instructure-ui/commit/b58ea17))
|
|
1321
|
+
- **ui-toggle-details:** ToggleGroup component ([d828826](https://github.com/instructure/instructure-ui/commit/d828826))
|
|
1322
|
+
|
|
1323
|
+
See the instructure-ui mono-repo [change log](#CHANGELOG) for past changes.
|