@atlaskit/give-kudos 2.3.0 → 2.3.1
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
|
@@ -264,15 +264,18 @@ var GiveKudosLauncher = function GiveKudosLauncher(props) {
|
|
|
264
264
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
265
265
|
}, [isDirty]);
|
|
266
266
|
var renderIframe = function renderIframe() {
|
|
267
|
-
return (
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
267
|
+
return (
|
|
268
|
+
// eslint-disable-next-line jsx-a11y/iframe-has-title
|
|
269
|
+
(0, _react2.jsx)("iframe", {
|
|
270
|
+
src: giveKudosUrl,
|
|
271
|
+
ref: iframeEl,
|
|
272
|
+
width: "100%",
|
|
273
|
+
height: "100%",
|
|
274
|
+
frameBorder: "0",
|
|
275
|
+
allow: "camera;microphone",
|
|
276
|
+
css: iframeStyles
|
|
277
|
+
})
|
|
278
|
+
);
|
|
276
279
|
};
|
|
277
280
|
var handleCloseDrawerClicked = function handleCloseDrawerClicked() {
|
|
278
281
|
handleCloseDrawerClickedFuncRef.current();
|
|
@@ -246,15 +246,18 @@ const GiveKudosLauncher = props => {
|
|
|
246
246
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
247
247
|
}, [isDirty]);
|
|
248
248
|
const renderIframe = () => {
|
|
249
|
-
return
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
249
|
+
return (
|
|
250
|
+
// eslint-disable-next-line jsx-a11y/iframe-has-title
|
|
251
|
+
jsx("iframe", {
|
|
252
|
+
src: giveKudosUrl,
|
|
253
|
+
ref: iframeEl,
|
|
254
|
+
width: "100%",
|
|
255
|
+
height: "100%",
|
|
256
|
+
frameBorder: "0",
|
|
257
|
+
allow: "camera;microphone",
|
|
258
|
+
css: iframeStyles
|
|
259
|
+
})
|
|
260
|
+
);
|
|
258
261
|
};
|
|
259
262
|
const handleCloseDrawerClicked = () => {
|
|
260
263
|
handleCloseDrawerClickedFuncRef.current();
|
|
@@ -258,15 +258,18 @@ var GiveKudosLauncher = function GiveKudosLauncher(props) {
|
|
|
258
258
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
259
259
|
}, [isDirty]);
|
|
260
260
|
var renderIframe = function renderIframe() {
|
|
261
|
-
return
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
261
|
+
return (
|
|
262
|
+
// eslint-disable-next-line jsx-a11y/iframe-has-title
|
|
263
|
+
jsx("iframe", {
|
|
264
|
+
src: giveKudosUrl,
|
|
265
|
+
ref: iframeEl,
|
|
266
|
+
width: "100%",
|
|
267
|
+
height: "100%",
|
|
268
|
+
frameBorder: "0",
|
|
269
|
+
allow: "camera;microphone",
|
|
270
|
+
css: iframeStyles
|
|
271
|
+
})
|
|
272
|
+
);
|
|
270
273
|
};
|
|
271
274
|
var handleCloseDrawerClicked = function handleCloseDrawerClicked() {
|
|
272
275
|
handleCloseDrawerClickedFuncRef.current();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/give-kudos",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "Give Kudos experience ",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
43
43
|
"@atlaskit/button": "^20.3.0",
|
|
44
44
|
"@atlaskit/drawer": "^9.2.0",
|
|
45
|
-
"@atlaskit/icon": "^
|
|
45
|
+
"@atlaskit/icon": "^23.0.0",
|
|
46
46
|
"@atlaskit/intl-messages-provider": "^1.0.2",
|
|
47
|
-
"@atlaskit/modal-dialog": "^12.
|
|
47
|
+
"@atlaskit/modal-dialog": "^12.18.0",
|
|
48
48
|
"@atlaskit/portal": "^4.9.0",
|
|
49
49
|
"@atlaskit/theme": "^14.0.0",
|
|
50
|
-
"@atlaskit/tokens": "^2.
|
|
50
|
+
"@atlaskit/tokens": "^2.4.0",
|
|
51
51
|
"@babel/runtime": "^7.0.0",
|
|
52
52
|
"@emotion/react": "^11.7.1",
|
|
53
53
|
"react-intl-next": "npm:react-intl@^5.18.1"
|