@instructure/ui-buttons 10.2.3-snapshot-11 → 10.2.3-snapshot-14

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
- ## [10.2.3-snapshot-11](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.2.3-snapshot-11) (2024-10-02)
6
+ ## [10.2.3-snapshot-14](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.2.3-snapshot-14) (2024-10-02)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-buttons
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-buttons",
3
- "version": "10.2.3-snapshot-11",
3
+ "version": "10.2.3-snapshot-14",
4
4
  "description": "Accessible button components",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -23,10 +23,10 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-axe-check": "10.2.3-snapshot-11",
27
- "@instructure/ui-babel-preset": "10.2.3-snapshot-11",
28
- "@instructure/ui-test-utils": "10.2.3-snapshot-11",
29
- "@instructure/ui-themes": "10.2.3-snapshot-11",
26
+ "@instructure/ui-axe-check": "10.2.3-snapshot-14",
27
+ "@instructure/ui-babel-preset": "10.2.3-snapshot-14",
28
+ "@instructure/ui-test-utils": "10.2.3-snapshot-14",
29
+ "@instructure/ui-themes": "10.2.3-snapshot-14",
30
30
  "@testing-library/jest-dom": "^6.4.6",
31
31
  "@testing-library/react": "^15.0.7",
32
32
  "@testing-library/user-event": "^14.5.2",
@@ -34,21 +34,21 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@babel/runtime": "^7.24.5",
37
- "@instructure/console": "10.2.3-snapshot-11",
38
- "@instructure/emotion": "10.2.3-snapshot-11",
39
- "@instructure/shared-types": "10.2.3-snapshot-11",
40
- "@instructure/ui-a11y-content": "10.2.3-snapshot-11",
41
- "@instructure/ui-a11y-utils": "10.2.3-snapshot-11",
42
- "@instructure/ui-color-utils": "10.2.3-snapshot-11",
43
- "@instructure/ui-dom-utils": "10.2.3-snapshot-11",
44
- "@instructure/ui-icons": "10.2.3-snapshot-11",
45
- "@instructure/ui-position": "10.2.3-snapshot-11",
46
- "@instructure/ui-prop-types": "10.2.3-snapshot-11",
47
- "@instructure/ui-react-utils": "10.2.3-snapshot-11",
48
- "@instructure/ui-testable": "10.2.3-snapshot-11",
49
- "@instructure/ui-tooltip": "10.2.3-snapshot-11",
50
- "@instructure/ui-utils": "10.2.3-snapshot-11",
51
- "@instructure/ui-view": "10.2.3-snapshot-11",
37
+ "@instructure/console": "10.2.3-snapshot-14",
38
+ "@instructure/emotion": "10.2.3-snapshot-14",
39
+ "@instructure/shared-types": "10.2.3-snapshot-14",
40
+ "@instructure/ui-a11y-content": "10.2.3-snapshot-14",
41
+ "@instructure/ui-a11y-utils": "10.2.3-snapshot-14",
42
+ "@instructure/ui-color-utils": "10.2.3-snapshot-14",
43
+ "@instructure/ui-dom-utils": "10.2.3-snapshot-14",
44
+ "@instructure/ui-icons": "10.2.3-snapshot-14",
45
+ "@instructure/ui-position": "10.2.3-snapshot-14",
46
+ "@instructure/ui-prop-types": "10.2.3-snapshot-14",
47
+ "@instructure/ui-react-utils": "10.2.3-snapshot-14",
48
+ "@instructure/ui-testable": "10.2.3-snapshot-14",
49
+ "@instructure/ui-tooltip": "10.2.3-snapshot-14",
50
+ "@instructure/ui-utils": "10.2.3-snapshot-14",
51
+ "@instructure/ui-view": "10.2.3-snapshot-14",
52
52
  "keycode": "^2",
53
53
  "prop-types": "^15.8.1"
54
54
  },
@@ -3,6 +3,7 @@ describes: IconButton
3
3
  ---
4
4
 
5
5
  An IconButton can be used when the Button only renders an Icon and does not have other visual elements or text content.
6
+ It is not recommended to set the size of an icon inside an IconButton. Only use the `size` property of the IconButton.
6
7
 
7
8
  ```js
8
9
  ---