@patternfly/react-code-editor 4.33.4 → 4.33.8
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.8 (2022-01-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **table:** fixed action example ([#6800](https://github.com/patternfly/patternfly-react/issues/6800)) ([eaaedc2](https://github.com/patternfly/patternfly-react/commit/eaaedc28cf54cca1a47aaa5c4f5f76a11d32864d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 4.33.7 (2022-01-20)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @patternfly/react-code-editor
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## 4.33.6 (2022-01-20)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @patternfly/react-code-editor
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## 4.33.5 (2022-01-20)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @patternfly/react-code-editor
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
## 4.33.4 (2022-01-20)
|
|
7
42
|
|
|
8
43
|
|
|
@@ -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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
+
"version": "4.33.8",
|
|
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.
|
|
34
|
-
"@patternfly/react-icons": "^4.43.
|
|
35
|
-
"@patternfly/react-styles": "^4.42.
|
|
33
|
+
"@patternfly/react-core": "^4.192.8",
|
|
34
|
+
"@patternfly/react-icons": "^4.43.8",
|
|
35
|
+
"@patternfly/react-styles": "^4.42.8",
|
|
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": "
|
|
49
|
+
"gitHead": "e75f4dcdab32c3f5e53493df64e62b6da2b64cf9"
|
|
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
|
-
/**
|
|
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;
|