@instructure/ui-toggle-details 11.0.2-snapshot-0 → 11.0.2-snapshot-2

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 CHANGED
@@ -3,7 +3,7 @@
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.0.2-snapshot-0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.0.2-snapshot-0) (2025-10-15)
6
+ ## [11.0.2-snapshot-2](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.0.2-snapshot-2) (2025-10-20)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-toggle-details
9
9
 
package/README.md CHANGED
@@ -10,8 +10,8 @@ A styled toggleable, accordion-like component.
10
10
 
11
11
  The `ui-toggle-details` package contains the following:
12
12
 
13
- - [ToggleDetails](#ToggleDetails)
14
- - [ToggleGroup](#ToggleGroup)
13
+ - [ToggleDetails](ToggleDetails)
14
+ - [ToggleGroup](ToggleGroup)
15
15
 
16
16
  ### Installation
17
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-toggle-details",
3
- "version": "11.0.2-snapshot-0",
3
+ "version": "11.0.2-snapshot-2",
4
4
  "description": "A styled toggleable, accordion-like component.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -23,9 +23,9 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-axe-check": "11.0.2-snapshot-0",
27
- "@instructure/ui-babel-preset": "11.0.2-snapshot-0",
28
- "@instructure/ui-themes": "11.0.2-snapshot-0",
26
+ "@instructure/ui-axe-check": "11.0.2-snapshot-2",
27
+ "@instructure/ui-babel-preset": "11.0.2-snapshot-2",
28
+ "@instructure/ui-themes": "11.0.2-snapshot-2",
29
29
  "@testing-library/jest-dom": "^6.6.3",
30
30
  "@testing-library/react": "15.0.7",
31
31
  "@testing-library/user-event": "^14.6.1",
@@ -33,18 +33,18 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@babel/runtime": "^7.27.6",
36
- "@instructure/emotion": "11.0.2-snapshot-0",
37
- "@instructure/shared-types": "11.0.2-snapshot-0",
38
- "@instructure/ui-buttons": "11.0.2-snapshot-0",
39
- "@instructure/ui-dom-utils": "11.0.2-snapshot-0",
40
- "@instructure/ui-expandable": "11.0.2-snapshot-0",
41
- "@instructure/ui-flex": "11.0.2-snapshot-0",
42
- "@instructure/ui-icons": "11.0.2-snapshot-0",
43
- "@instructure/ui-motion": "11.0.2-snapshot-0",
44
- "@instructure/ui-react-utils": "11.0.2-snapshot-0",
45
- "@instructure/ui-utils": "11.0.2-snapshot-0",
46
- "@instructure/ui-view": "11.0.2-snapshot-0",
47
- "@instructure/uid": "11.0.2-snapshot-0"
36
+ "@instructure/emotion": "11.0.2-snapshot-2",
37
+ "@instructure/shared-types": "11.0.2-snapshot-2",
38
+ "@instructure/ui-buttons": "11.0.2-snapshot-2",
39
+ "@instructure/ui-dom-utils": "11.0.2-snapshot-2",
40
+ "@instructure/ui-expandable": "11.0.2-snapshot-2",
41
+ "@instructure/ui-flex": "11.0.2-snapshot-2",
42
+ "@instructure/ui-icons": "11.0.2-snapshot-2",
43
+ "@instructure/ui-motion": "11.0.2-snapshot-2",
44
+ "@instructure/ui-react-utils": "11.0.2-snapshot-2",
45
+ "@instructure/ui-utils": "11.0.2-snapshot-2",
46
+ "@instructure/ui-view": "11.0.2-snapshot-2",
47
+ "@instructure/uid": "11.0.2-snapshot-2"
48
48
  },
49
49
  "peerDependencies": {
50
50
  "react": ">=18 <=19"
@@ -59,7 +59,7 @@ const Example = () => {
59
59
  render(<Example />)
60
60
  ```
61
61
 
62
- Setting ToggleDetails to `filled` will make the toggle use a full-width [Button](#Button) component.
62
+ Setting ToggleDetails to `filled` will make the toggle use a full-width [Button](Button) component.
63
63
 
64
64
  ```js
65
65
  ---
@@ -79,7 +79,7 @@ Icon size can be adjusted using the `size` prop with small, medium, and large op
79
79
 
80
80
  The `summary` prop accepts any node, allowing you to format the summary text as
81
81
  you see fit. In these examples, we are formatting it with the
82
- [Text](#Text) component.
82
+ [Text](Text) component.
83
83
 
84
84
  ```js
85
85
  ---
@@ -2,7 +2,7 @@
2
2
  describes: ToggleGroup
3
3
  ---
4
4
 
5
- Performs the same function as [`ToggleDetails`](#ToggleDetails), but with the summary separated from the
5
+ Performs the same function as [`ToggleDetails`](ToggleDetails), but with the summary separated from the
6
6
  toggle button, and built in padding and borders around the summary and main content area.
7
7
 
8
8
  ### Basic example