@instructure/ui-themes 8.11.2-snapshot.56 → 8.11.2-snapshot.64

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.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -22,9 +22,9 @@ Before mounting (rendering) your React application:
22
22
  import { canvas } from '@instructure/ui-themes'
23
23
 
24
24
  ReactDOM.render(
25
- <EmotionThemeProvider theme={canvas}>
25
+ <InstUISettingsProvider theme={canvas}>
26
26
  <App />
27
- </EmotionThemeProvider>,
27
+ </InstUISettingsProvider>,
28
28
  element
29
29
  )
30
30
  ```
@@ -36,9 +36,9 @@ import { canvas } from '@instructure/ui-themes'
36
36
  const themeOverrides = { colors: { brand: 'red' } }
37
37
 
38
38
  ReactDOM.render(
39
- <EmotionThemeProvider theme={{ ...canvas, ...themeOverrides }}>
39
+ <InstUISettingsProvider theme={{ ...canvas, ...themeOverrides }}>
40
40
  <App />
41
- </EmotionThemeProvider>,
41
+ </InstUISettingsProvider>,
42
42
  element
43
43
  )
44
44
  ```
@@ -49,9 +49,9 @@ To use the high contrast theme:
49
49
  import { canvasHighContrast } from '@instructure/ui-themes'
50
50
 
51
51
  ReactDOM.render(
52
- <EmotionThemeProvider theme={canvasHighContrast}>
52
+ <InstUISettingsProvider theme={canvasHighContrast}>
53
53
  <App />
54
- </EmotionThemeProvider>,
54
+ </InstUISettingsProvider>,
55
55
  element
56
56
  )
57
57
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-themes",
3
- "version": "8.11.2-snapshot.56+e2b86f90a",
3
+ "version": "8.11.2-snapshot.64+fa07135b5",
4
4
  "description": "A library of instructure themes",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "type": "commonjs",
@@ -23,18 +23,18 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-babel-preset": "8.11.2-snapshot.56+e2b86f90a",
27
- "@instructure/ui-theme-tokens": "8.11.2-snapshot.56+e2b86f90a"
26
+ "@instructure/ui-babel-preset": "8.11.2-snapshot.64+fa07135b5",
27
+ "@instructure/ui-theme-tokens": "8.11.2-snapshot.64+fa07135b5"
28
28
  },
29
29
  "dependencies": {
30
- "@instructure/canvas-high-contrast-theme": "8.11.2-snapshot.56+e2b86f90a",
31
- "@instructure/canvas-theme": "8.11.2-snapshot.56+e2b86f90a",
32
- "@instructure/instructure-theme": "8.11.2-snapshot.56+e2b86f90a",
33
- "@instructure/shared-types": "8.11.2-snapshot.56+e2b86f90a"
30
+ "@instructure/canvas-high-contrast-theme": "8.11.2-snapshot.64+fa07135b5",
31
+ "@instructure/canvas-theme": "8.11.2-snapshot.64+fa07135b5",
32
+ "@instructure/instructure-theme": "8.11.2-snapshot.64+fa07135b5",
33
+ "@instructure/shared-types": "8.11.2-snapshot.64+fa07135b5"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
38
  "sideEffects": false,
39
- "gitHead": "e2b86f90a144bfdba837a1831bbe136210e1c1bf"
39
+ "gitHead": "fa07135b5601d3268295e5747f5950721a574d4f"
40
40
  }