@patternfly/react-code-editor 4.33.3 → 4.33.7

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,41 @@
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
+ ## 4.33.7 (2022-01-20)
7
+
8
+ **Note:** Version bump only for package @patternfly/react-code-editor
9
+
10
+
11
+
12
+
13
+
14
+ ## 4.33.6 (2022-01-20)
15
+
16
+ **Note:** Version bump only for package @patternfly/react-code-editor
17
+
18
+
19
+
20
+
21
+
22
+ ## 4.33.5 (2022-01-20)
23
+
24
+ **Note:** Version bump only for package @patternfly/react-code-editor
25
+
26
+
27
+
28
+
29
+
30
+ ## 4.33.4 (2022-01-20)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * **DatePicker:** update empty state validation and add onblur event ([#6822](https://github.com/patternfly/patternfly-react/issues/6822)) ([258e818](https://github.com/patternfly/patternfly-react/commit/258e81861adc0488ae42f349aff78f06f2874fa7))
36
+
37
+
38
+
39
+
40
+
6
41
  ## 4.33.3 (2022-01-20)
7
42
 
8
43
  **Note:** Version bump only for package @patternfly/react-code-editor
@@ -119,7 +119,7 @@ export interface CodeEditorProps extends Omit<React.HTMLProps<HTMLDivElement>, '
119
119
  isCopyEnabled?: boolean;
120
120
  /** Flag to include a label indicating the currently configured editor language */
121
121
  isLanguageLabelVisible?: boolean;
122
- /** Accessibly label for the copy button */
122
+ /** Accessible label for the copy button */
123
123
  copyButtonAriaLabel?: string;
124
124
  /** Text to display in the tooltip on the copy button before text is copied */
125
125
  copyButtonToolTipText?: string;
@@ -119,7 +119,7 @@ export interface CodeEditorProps extends Omit<React.HTMLProps<HTMLDivElement>, '
119
119
  isCopyEnabled?: boolean;
120
120
  /** Flag to include a label indicating the currently configured editor language */
121
121
  isLanguageLabelVisible?: boolean;
122
- /** Accessibly label for the copy button */
122
+ /** Accessible label for the copy button */
123
123
  copyButtonAriaLabel?: string;
124
124
  /** Text to display in the tooltip on the copy button before text is copied */
125
125
  copyButtonToolTipText?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-code-editor",
3
- "version": "4.33.3",
3
+ "version": "4.33.7",
4
4
  "description": "This package provides a PatternFly wrapper for the Monaco code editor\n",
5
5
  "main": "dist/js/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -30,9 +30,9 @@
30
30
  "clean": "rimraf dist"
31
31
  },
32
32
  "dependencies": {
33
- "@patternfly/react-core": "^4.192.3",
34
- "@patternfly/react-icons": "^4.43.3",
35
- "@patternfly/react-styles": "^4.42.3",
33
+ "@patternfly/react-core": "^4.192.7",
34
+ "@patternfly/react-icons": "^4.43.7",
35
+ "@patternfly/react-styles": "^4.42.7",
36
36
  "react-dropzone": "9.0.0",
37
37
  "tslib": "^2.0.0"
38
38
  },
@@ -46,5 +46,5 @@
46
46
  "rimraf": "^2.6.2",
47
47
  "typescript": "^4.0.0"
48
48
  },
49
- "gitHead": "9d4921fd3bf0859b63f2a77f576da60e497b731e"
49
+ "gitHead": "cf4d17a0d89c743e5e12c6d455b8a668cc985bbd"
50
50
  }
@@ -140,7 +140,7 @@ export interface CodeEditorProps extends Omit<React.HTMLProps<HTMLDivElement>, '
140
140
  isCopyEnabled?: boolean;
141
141
  /** Flag to include a label indicating the currently configured editor language */
142
142
  isLanguageLabelVisible?: boolean;
143
- /** Accessibly label for the copy button */
143
+ /** Accessible label for the copy button */
144
144
  copyButtonAriaLabel?: string;
145
145
  /** Text to display in the tooltip on the copy button before text is copied */
146
146
  copyButtonToolTipText?: string;
@@ -2,7 +2,7 @@
2
2
  id: Code editor
3
3
  section: components
4
4
  cssPrefix: pf-c-code-editor
5
- propComponents: ['CodeEditor']
5
+ propComponents: ['CodeEditor', 'CodeEditorControl']
6
6
  beta: true
7
7
  ---
8
8