@instructure/ui-billboard 11.7.4-snapshot-103 → 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-103](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-103) (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-billboard
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-billboard",
3
- "version": "11.7.4-snapshot-103",
3
+ "version": "11.7.4-snapshot-105",
4
4
  "description": "A UI component to display empty states, 404 pages, redirects, etc.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -15,23 +15,23 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.29.7",
18
- "@instructure/emotion": "11.7.4-snapshot-103",
19
- "@instructure/shared-types": "11.7.4-snapshot-103",
20
- "@instructure/ui-heading": "11.7.4-snapshot-103",
21
- "@instructure/ui-img": "11.7.4-snapshot-103",
22
- "@instructure/ui-react-utils": "11.7.4-snapshot-103",
23
- "@instructure/ui-themes": "11.7.4-snapshot-103",
24
- "@instructure/ui-view": "11.7.4-snapshot-103"
18
+ "@instructure/emotion": "11.7.4-snapshot-105",
19
+ "@instructure/shared-types": "11.7.4-snapshot-105",
20
+ "@instructure/ui-heading": "11.7.4-snapshot-105",
21
+ "@instructure/ui-img": "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-view": "11.7.4-snapshot-105"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@testing-library/jest-dom": "^6.9.1",
28
28
  "@testing-library/react": "16.3.2",
29
29
  "@testing-library/user-event": "^14.6.1",
30
30
  "vitest": "^4.1.9",
31
- "@instructure/ui-axe-check": "11.7.4-snapshot-103",
32
- "@instructure/ui-babel-preset": "11.7.4-snapshot-103",
33
- "@instructure/ui-color-utils": "11.7.4-snapshot-103",
34
- "@instructure/ui-icons": "11.7.4-snapshot-103"
31
+ "@instructure/ui-axe-check": "11.7.4-snapshot-105",
32
+ "@instructure/ui-babel-preset": "11.7.4-snapshot-105",
33
+ "@instructure/ui-color-utils": "11.7.4-snapshot-105",
34
+ "@instructure/ui-icons": "11.7.4-snapshot-105"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "react": ">=18 <=19"
@@ -36,7 +36,7 @@ type: example
36
36
  ---
37
37
  <View as="div" width="400px" withVisualDebug>
38
38
  <Billboard
39
- margin="large"
39
+ margin="general.space2xl"
40
40
  heading="404"
41
41
  message="Billboard is now a button"
42
42
  size="small"
@@ -54,7 +54,7 @@ type: example
54
54
  ---
55
55
  <View as="div" width="600px" withVisualDebug>
56
56
  <Billboard
57
- margin="large"
57
+ margin="general.space2xl"
58
58
  message="Click this link"
59
59
  href="http://instructure.com"
60
60
  hero={(size) => <BookCheckInstUIIcon size={size} />}
@@ -90,9 +90,9 @@ type BillboardOwnProps = {
90
90
  */
91
91
  readOnly?: boolean
92
92
  /**
93
- * Valid values are `0`, `none`, `auto`, `xxx-small`, `xx-small`, `x-small`,
94
- * `small`, `medium`, `large`, `x-large`, `xx-large`. Apply these values via
95
- * familiar CSS-like shorthand. For example: `margin="small auto large"`.
93
+ * Valid values are `0`, `none`, `auto`, and Spacing token values,
94
+ * see https://instructure.design/layout-spacing. Apply these values via
95
+ * familiar CSS-like shorthand. For example, `margin="general.spaceMd auto"`.
96
96
  */
97
97
  margin?: Spacing
98
98
  }