@instructure/ui-source-code-editor 8.56.0 → 9.0.0

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,6 +3,14 @@
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
+ # [9.0.0](https://github.com/instructure/instructure-ui/compare/v8.56.0...v9.0.0) (2024-05-09)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-source-code-editor
9
+
10
+
11
+
12
+
13
+
6
14
  # [8.56.0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.56.0) (2024-05-06)
7
15
 
8
16
  **Note:** Version bump only for package @instructure/ui-source-code-editor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-source-code-editor",
3
- "version": "8.56.0",
3
+ "version": "9.0.0",
4
4
  "description": "A UI component library made by Instructure Inc.",
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-babel-preset": "8.56.0",
27
- "@instructure/ui-test-queries": "8.56.0",
28
- "@instructure/ui-test-utils": "8.56.0",
26
+ "@instructure/ui-babel-preset": "9.0.0",
27
+ "@instructure/ui-test-queries": "9.0.0",
28
+ "@instructure/ui-test-utils": "9.0.0",
29
29
  "@testing-library/jest-dom": "^6.1.4",
30
30
  "@testing-library/react": "^14.1.2"
31
31
  },
@@ -44,20 +44,20 @@
44
44
  "@codemirror/search": "^6.5.4",
45
45
  "@codemirror/state": "^6.3.0",
46
46
  "@codemirror/view": "^6.21.3",
47
- "@instructure/emotion": "8.56.0",
48
- "@instructure/shared-types": "8.56.0",
49
- "@instructure/ui-a11y-content": "8.56.0",
50
- "@instructure/ui-buttons": "8.56.0",
51
- "@instructure/ui-dom-utils": "8.56.0",
52
- "@instructure/ui-i18n": "8.56.0",
53
- "@instructure/ui-icons": "8.56.0",
54
- "@instructure/ui-prop-types": "8.56.0",
55
- "@instructure/ui-react-utils": "8.56.0",
56
- "@instructure/ui-test-locator": "8.56.0",
57
- "@instructure/ui-testable": "8.56.0",
58
- "@instructure/ui-text-input": "8.56.0",
59
- "@instructure/ui-themes": "8.56.0",
60
- "@instructure/ui-utils": "8.56.0",
47
+ "@instructure/emotion": "9.0.0",
48
+ "@instructure/shared-types": "9.0.0",
49
+ "@instructure/ui-a11y-content": "9.0.0",
50
+ "@instructure/ui-buttons": "9.0.0",
51
+ "@instructure/ui-dom-utils": "9.0.0",
52
+ "@instructure/ui-i18n": "9.0.0",
53
+ "@instructure/ui-icons": "9.0.0",
54
+ "@instructure/ui-prop-types": "9.0.0",
55
+ "@instructure/ui-react-utils": "9.0.0",
56
+ "@instructure/ui-test-locator": "9.0.0",
57
+ "@instructure/ui-testable": "9.0.0",
58
+ "@instructure/ui-text-input": "9.0.0",
59
+ "@instructure/ui-themes": "9.0.0",
60
+ "@instructure/ui-utils": "9.0.0",
61
61
  "@lezer/highlight": "1.1.6",
62
62
  "prop-types": "^15.8.1"
63
63
  },
@@ -39,7 +39,7 @@ import type {
39
39
  ComponentStyle
40
40
  } from '@instructure/emotion'
41
41
  import type { WithDeterministicIdProps } from '@instructure/ui-react-utils'
42
- import type { BidirectionalProps } from '@instructure/ui-i18n'
42
+ import type { TextDirectionContextConsumerProps } from '@instructure/ui-i18n'
43
43
  import type { SearchConfig } from './SearchPanel'
44
44
 
45
45
  type SourceCodeEditorOwnProps = {
@@ -223,7 +223,7 @@ type SourceCodeEditorProps = SourceCodeEditorOwnProps &
223
223
  // but isn't used for the css prop anyway
224
224
  Record<keyof SourceCodeEditorStyle, any>
225
225
  > &
226
- BidirectionalProps &
226
+ TextDirectionContextConsumerProps &
227
227
  OtherHTMLAttributes<SourceCodeEditorOwnProps> &
228
228
  WithDeterministicIdProps
229
229