@instructure/ui-toggle-details 11.7.4-snapshot-103 → 11.7.4-snapshot-106
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 +5 -2
- package/package.json +16 -16
- package/src/ToggleDetails/v2/README.md +2 -2
- package/tsconfig.build.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,12 @@
|
|
|
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.7.4-snapshot-
|
|
6
|
+
## [11.7.4-snapshot-106](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-106) (2026-07-16)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **many:** support current spacing tokens in the margin prop for v2 components ([1b47c5f](https://github.com/instructure/instructure-ui/commit/1b47c5f23eaa60b532cdfd53c39bd71f0cf51aaa))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-toggle-details",
|
|
3
|
-
"version": "11.7.4-snapshot-
|
|
3
|
+
"version": "11.7.4-snapshot-106",
|
|
4
4
|
"description": "A styled toggleable, accordion-like component.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -15,27 +15,27 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.29.7",
|
|
18
|
-
"@instructure/emotion": "11.7.4-snapshot-
|
|
19
|
-
"@instructure/shared-types": "11.7.4-snapshot-
|
|
20
|
-
"@instructure/ui-
|
|
21
|
-
"@instructure/ui-
|
|
22
|
-
"@instructure/ui-expandable": "11.7.4-snapshot-
|
|
23
|
-
"@instructure/ui-flex": "11.7.4-snapshot-
|
|
24
|
-
"@instructure/ui-
|
|
25
|
-
"@instructure/ui-
|
|
26
|
-
"@instructure/ui-
|
|
27
|
-
"@instructure/ui-
|
|
28
|
-
"@instructure/ui-utils": "11.7.4-snapshot-
|
|
29
|
-
"@instructure/ui-view": "11.7.4-snapshot-
|
|
30
|
-
"@instructure/uid": "11.7.4-snapshot-
|
|
18
|
+
"@instructure/emotion": "11.7.4-snapshot-106",
|
|
19
|
+
"@instructure/shared-types": "11.7.4-snapshot-106",
|
|
20
|
+
"@instructure/ui-dom-utils": "11.7.4-snapshot-106",
|
|
21
|
+
"@instructure/ui-buttons": "11.7.4-snapshot-106",
|
|
22
|
+
"@instructure/ui-expandable": "11.7.4-snapshot-106",
|
|
23
|
+
"@instructure/ui-flex": "11.7.4-snapshot-106",
|
|
24
|
+
"@instructure/ui-react-utils": "11.7.4-snapshot-106",
|
|
25
|
+
"@instructure/ui-themes": "11.7.4-snapshot-106",
|
|
26
|
+
"@instructure/ui-icons": "11.7.4-snapshot-106",
|
|
27
|
+
"@instructure/ui-motion": "11.7.4-snapshot-106",
|
|
28
|
+
"@instructure/ui-utils": "11.7.4-snapshot-106",
|
|
29
|
+
"@instructure/ui-view": "11.7.4-snapshot-106",
|
|
30
|
+
"@instructure/uid": "11.7.4-snapshot-106"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@testing-library/jest-dom": "^6.9.1",
|
|
34
34
|
"@testing-library/react": "16.3.2",
|
|
35
35
|
"@testing-library/user-event": "^14.6.1",
|
|
36
36
|
"vitest": "^4.1.9",
|
|
37
|
-
"@instructure/ui-axe-check": "11.7.4-snapshot-
|
|
38
|
-
"@instructure/ui-babel-preset": "11.7.4-snapshot-
|
|
37
|
+
"@instructure/ui-axe-check": "11.7.4-snapshot-106",
|
|
38
|
+
"@instructure/ui-babel-preset": "11.7.4-snapshot-106"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": ">=18 <=19"
|
|
@@ -162,7 +162,7 @@ const Example = () => {
|
|
|
162
162
|
return (
|
|
163
163
|
<Flex alignItems="start">
|
|
164
164
|
{options.map(({ name, values }) => (
|
|
165
|
-
<Flex.Item margin="
|
|
165
|
+
<Flex.Item margin="general.spaceMd" key={name}>
|
|
166
166
|
<RadioInputGroup
|
|
167
167
|
name={name}
|
|
168
168
|
description={name}
|
|
@@ -175,7 +175,7 @@ const Example = () => {
|
|
|
175
175
|
</RadioInputGroup>
|
|
176
176
|
</Flex.Item>
|
|
177
177
|
))}
|
|
178
|
-
<Flex.Item margin="
|
|
178
|
+
<Flex.Item margin="general.spaceMd">
|
|
179
179
|
<Checkbox
|
|
180
180
|
label="fluidWidth"
|
|
181
181
|
checked={fluidWidth}
|