@instructure/ui-breadcrumb 11.7.4-snapshot-102 → 11.7.4-snapshot-105

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,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-102](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-102) (2026-07-14)
6
+ ## [11.7.4-snapshot-105](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-105) (2026-07-15)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-breadcrumb
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-breadcrumb",
3
- "version": "11.7.4-snapshot-102",
3
+ "version": "11.7.4-snapshot-105",
4
4
  "description": "A breadcrumb component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -15,24 +15,24 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.29.7",
18
- "@instructure/emotion": "11.7.4-snapshot-102",
19
- "@instructure/shared-types": "11.7.4-snapshot-102",
20
- "@instructure/ui-icons": "11.7.4-snapshot-102",
21
- "@instructure/ui-link": "11.7.4-snapshot-102",
22
- "@instructure/ui-react-utils": "11.7.4-snapshot-102",
23
- "@instructure/ui-themes": "11.7.4-snapshot-102",
24
- "@instructure/ui-tooltip": "11.7.4-snapshot-102",
25
- "@instructure/ui-view": "11.7.4-snapshot-102",
26
- "@instructure/ui-utils": "11.7.4-snapshot-102",
27
- "@instructure/ui-truncate-text": "11.7.4-snapshot-102"
18
+ "@instructure/emotion": "11.7.4-snapshot-105",
19
+ "@instructure/shared-types": "11.7.4-snapshot-105",
20
+ "@instructure/ui-link": "11.7.4-snapshot-105",
21
+ "@instructure/ui-icons": "11.7.4-snapshot-105",
22
+ "@instructure/ui-react-utils": "11.7.4-snapshot-105",
23
+ "@instructure/ui-themes": "11.7.4-snapshot-105",
24
+ "@instructure/ui-truncate-text": "11.7.4-snapshot-105",
25
+ "@instructure/ui-view": "11.7.4-snapshot-105",
26
+ "@instructure/ui-utils": "11.7.4-snapshot-105",
27
+ "@instructure/ui-tooltip": "11.7.4-snapshot-105"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@testing-library/jest-dom": "^6.9.1",
31
31
  "@testing-library/react": "16.3.2",
32
32
  "vitest": "^4.1.9",
33
- "@instructure/ui-axe-check": "11.7.4-snapshot-102",
34
- "@instructure/ui-babel-preset": "11.7.4-snapshot-102",
35
- "@instructure/ui-scripts": "11.7.4-snapshot-102"
33
+ "@instructure/ui-axe-check": "11.7.4-snapshot-105",
34
+ "@instructure/ui-babel-preset": "11.7.4-snapshot-105",
35
+ "@instructure/ui-scripts": "11.7.4-snapshot-105"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "react": ">=18 <=19"
@@ -52,7 +52,7 @@ Change the `size` prop to control the font-size of the breadcrumbs (default is `
52
52
  type: example
53
53
  ---
54
54
  <div>
55
- <Breadcrumb size="small" label="breadcrumb" margin="none none medium">
55
+ <Breadcrumb size="small" label="breadcrumb" margin="none none general.spaceXl">
56
56
  <Breadcrumb.Link href="https://instructure.github.io/instructure-ui/">English 204</Breadcrumb.Link>
57
57
  <Breadcrumb.Link
58
58
  onClick={function () {
@@ -65,7 +65,7 @@ type: example
65
65
  <Breadcrumb.Link>Rabbit Is Rich</Breadcrumb.Link>
66
66
  </Breadcrumb>
67
67
  <View as="div" width="40rem">
68
- <Breadcrumb label="breadcrumb" margin="none none medium">
68
+ <Breadcrumb label="breadcrumb" margin="none none general.spaceXl">
69
69
  <Breadcrumb.Link href="https://instructure.github.io/instructure-ui/">English 204</Breadcrumb.Link>
70
70
  <Breadcrumb.Link
71
71
  onClick={function () {
@@ -42,9 +42,9 @@ type BreadcrumbOwnProps = {
42
42
  */
43
43
  size?: 'small' | 'medium' | 'large'
44
44
  /**
45
- * Valid values are `0`, `none`, `auto`, `xxx-small`, `xx-small`, `x-small`,
46
- * `small`, `medium`, `large`, `x-large`, `xx-large`. Apply these values via
47
- * familiar CSS-like shorthand. For example: `margin="small auto large"`.
45
+ * Valid values are `0`, `none`, `auto`, and Spacing token values,
46
+ * see https://instructure.design/layout-spacing. Apply these values via
47
+ * familiar CSS-like shorthand. For example, `margin="general.spaceMd auto"`.
48
48
  */
49
49
  margin?: Spacing
50
50
  }