@atlaskit/media-ui 26.0.2 → 26.2.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 +20 -0
- package/dist/cjs/customMediaPlayer/index.js +12 -4
- package/dist/cjs/i18n/index.js +7 -0
- package/dist/cjs/i18n/languages.js +2 -0
- package/dist/es2019/customMediaPlayer/index.js +12 -4
- package/dist/es2019/i18n/index.js +4 -2
- package/dist/es2019/i18n/languages.js +2 -0
- package/dist/esm/customMediaPlayer/index.js +12 -4
- package/dist/esm/i18n/index.js +4 -2
- package/dist/esm/i18n/languages.js +2 -0
- package/dist/types/i18n/index.d.ts +4 -2
- package/dist/types/i18n/languages.d.ts +1 -0
- package/dist/types-ts4.5/i18n/index.d.ts +4 -2
- package/dist/types-ts4.5/i18n/languages.d.ts +1 -0
- package/package.json +6 -5
- package/dist/cjs/customMediaPlayer/icons.js +0 -53
- package/dist/es2019/customMediaPlayer/icons.js +0 -45
- package/dist/esm/customMediaPlayer/icons.js +0 -45
- package/dist/types/customMediaPlayer/icons.d.ts +0 -4
- package/dist/types-ts4.5/customMediaPlayer/icons.d.ts +0 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaskit/media-ui
|
|
2
2
|
|
|
3
|
+
## 26.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#164149](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/164149)
|
|
8
|
+
[`2331ee694f442`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2331ee694f442) -
|
|
9
|
+
[ux] Custom icon migration behind feature flag
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 26.1.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [#161636](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/161636)
|
|
20
|
+
[`69629c54c803b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/69629c54c803b) -
|
|
21
|
+
Adding en-ZZ locale support to media-ui
|
|
22
|
+
|
|
3
23
|
## 26.0.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -43,9 +43,11 @@ var _timeSaver = require("./timeSaver");
|
|
|
43
43
|
var _playbackSpeedControls = _interopRequireDefault(require("./playbackSpeedControls"));
|
|
44
44
|
var _playPauseBlanket = require("./playPauseBlanket");
|
|
45
45
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
46
|
-
var
|
|
46
|
+
var _legacyCustomIcons = require("@atlaskit/legacy-custom-icons");
|
|
47
47
|
var _getControlsWrapperClassName = require("./getControlsWrapperClassName");
|
|
48
48
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
49
|
+
var _videoSkipForwardTen = _interopRequireDefault(require("@atlaskit/icon/core/video-skip-forward-ten"));
|
|
50
|
+
var _videoSkipBackwardTen = _interopRequireDefault(require("@atlaskit/icon/core/video-skip-backward-ten"));
|
|
49
51
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
50
52
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
51
53
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
@@ -54,7 +56,7 @@ function _createSuper(t) { var r = _isNativeReflectConstruct(); return function
|
|
|
54
56
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /* eslint-disable @atlaskit/design-system/ensure-design-token-usage */ // Keep media player components used in media-viewer to use static colors from the new color palette to
|
|
55
57
|
// support the hybrid theming in media viewer https://product-fabric.atlassian.net/browse/DSP-6067
|
|
56
58
|
var packageName = "@atlaskit/media-ui";
|
|
57
|
-
var packageVersion = "26.0
|
|
59
|
+
var packageVersion = "26.2.0";
|
|
58
60
|
var MEDIUM_VIDEO_MAX_WIDTH = 400;
|
|
59
61
|
var SMALL_VIDEO_MAX_WIDTH = 160;
|
|
60
62
|
var MINIMUM_DURATION_BEFORE_SAVING_TIME = 60;
|
|
@@ -332,9 +334,11 @@ var CustomMediaPlayerBase = exports.CustomMediaPlayerBase = /*#__PURE__*/functio
|
|
|
332
334
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "renderPlayPauseButton", function (isPlaying) {
|
|
333
335
|
var formatMessage = _this.props.intl.formatMessage;
|
|
334
336
|
var toggleButtonIcon = isPlaying ? /*#__PURE__*/_react.default.createElement(_videoPauseVidPause.default, {
|
|
337
|
+
spacing: "spacious",
|
|
335
338
|
color: "currentColor",
|
|
336
339
|
label: formatMessage(_messages.messages.pause)
|
|
337
340
|
}) : /*#__PURE__*/_react.default.createElement(_videoPlayVidPlay.default, {
|
|
341
|
+
spacing: "spacious",
|
|
338
342
|
color: "currentColor",
|
|
339
343
|
label: formatMessage(_messages.messages.play)
|
|
340
344
|
});
|
|
@@ -355,7 +359,9 @@ var CustomMediaPlayerBase = exports.CustomMediaPlayerBase = /*#__PURE__*/functio
|
|
|
355
359
|
position: "top"
|
|
356
360
|
}, /*#__PURE__*/_react.default.createElement(_MediaButton.default, {
|
|
357
361
|
testId: "custom-media-player-skip-backward-button",
|
|
358
|
-
iconBefore: /*#__PURE__*/_react.default.createElement(
|
|
362
|
+
iconBefore: /*#__PURE__*/_react.default.createElement(_videoSkipBackwardTen.default, {
|
|
363
|
+
spacing: "spacious",
|
|
364
|
+
LEGACY_fallbackIcon: _legacyCustomIcons.SkipTenBackwardIcon,
|
|
359
365
|
label: formatMessage(_messages.messages.skipBackward)
|
|
360
366
|
}),
|
|
361
367
|
onClick: _this.getMediaButtonClickHandler(skipBackward, 'skipBackwardButton')
|
|
@@ -368,7 +374,9 @@ var CustomMediaPlayerBase = exports.CustomMediaPlayerBase = /*#__PURE__*/functio
|
|
|
368
374
|
position: "top"
|
|
369
375
|
}, /*#__PURE__*/_react.default.createElement(_MediaButton.default, {
|
|
370
376
|
testId: "custom-media-player-skip-forward-button",
|
|
371
|
-
iconBefore: /*#__PURE__*/_react.default.createElement(
|
|
377
|
+
iconBefore: /*#__PURE__*/_react.default.createElement(_videoSkipForwardTen.default, {
|
|
378
|
+
spacing: "spacious",
|
|
379
|
+
LEGACY_fallbackIcon: _legacyCustomIcons.SkipTenForwardIcon,
|
|
372
380
|
label: formatMessage(_messages.messages.skipForward)
|
|
373
381
|
}),
|
|
374
382
|
onClick: _this.getMediaButtonClickHandler(skipForward, 'skipForwardButton')
|
package/dist/cjs/i18n/index.js
CHANGED
|
@@ -34,6 +34,12 @@ Object.defineProperty(exports, "en_GB", {
|
|
|
34
34
|
return _en_GB.default;
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
|
+
Object.defineProperty(exports, "en_ZZ", {
|
|
38
|
+
enumerable: true,
|
|
39
|
+
get: function get() {
|
|
40
|
+
return _en_ZZ.default;
|
|
41
|
+
}
|
|
42
|
+
});
|
|
37
43
|
Object.defineProperty(exports, "es", {
|
|
38
44
|
enumerable: true,
|
|
39
45
|
get: function get() {
|
|
@@ -205,5 +211,6 @@ var _uk = _interopRequireDefault(require("./uk"));
|
|
|
205
211
|
var _vi = _interopRequireDefault(require("./vi"));
|
|
206
212
|
var _en = _interopRequireDefault(require("./en"));
|
|
207
213
|
var _en_GB = _interopRequireDefault(require("./en_GB"));
|
|
214
|
+
var _en_ZZ = _interopRequireDefault(require("./en_ZZ"));
|
|
208
215
|
var _is = _interopRequireDefault(require("./is"));
|
|
209
216
|
var _ro = _interopRequireDefault(require("./ro"));
|
|
@@ -11,6 +11,8 @@ var _default = exports.default = {
|
|
|
11
11
|
nl: 'Dutch',
|
|
12
12
|
en: 'English',
|
|
13
13
|
en_GB: 'English (United Kingdom)',
|
|
14
|
+
// Used by i18n team in staging to send visual context to translators
|
|
15
|
+
en_ZZ: 'English (Instrumented)',
|
|
14
16
|
et: 'Estonian',
|
|
15
17
|
fi: 'Finnish',
|
|
16
18
|
fr: 'French',
|
|
@@ -33,11 +33,13 @@ import { TimeSaver } from './timeSaver';
|
|
|
33
33
|
import PlaybackSpeedControls from './playbackSpeedControls';
|
|
34
34
|
import { PlayPauseBlanket } from './playPauseBlanket';
|
|
35
35
|
import Tooltip from '@atlaskit/tooltip';
|
|
36
|
-
import { SkipTenBackwardIcon, SkipTenForwardIcon } from '
|
|
36
|
+
import { SkipTenBackwardIcon, SkipTenForwardIcon } from '@atlaskit/legacy-custom-icons';
|
|
37
37
|
import { getControlsWrapperClassName } from './getControlsWrapperClassName';
|
|
38
38
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
39
|
+
import VideoSkipForwardTenIcon from '@atlaskit/icon/core/video-skip-forward-ten';
|
|
40
|
+
import VideoSkipBackwardTenIcon from '@atlaskit/icon/core/video-skip-backward-ten';
|
|
39
41
|
const packageName = "@atlaskit/media-ui";
|
|
40
|
-
const packageVersion = "26.0
|
|
42
|
+
const packageVersion = "26.2.0";
|
|
41
43
|
const MEDIUM_VIDEO_MAX_WIDTH = 400;
|
|
42
44
|
const SMALL_VIDEO_MAX_WIDTH = 160;
|
|
43
45
|
const MINIMUM_DURATION_BEFORE_SAVING_TIME = 60;
|
|
@@ -328,9 +330,11 @@ export class CustomMediaPlayerBase extends Component {
|
|
|
328
330
|
}
|
|
329
331
|
} = this.props;
|
|
330
332
|
const toggleButtonIcon = isPlaying ? /*#__PURE__*/React.createElement(PauseIcon, {
|
|
333
|
+
spacing: "spacious",
|
|
331
334
|
color: "currentColor",
|
|
332
335
|
label: formatMessage(messages.pause)
|
|
333
336
|
}) : /*#__PURE__*/React.createElement(PlayIcon, {
|
|
337
|
+
spacing: "spacious",
|
|
334
338
|
color: "currentColor",
|
|
335
339
|
label: formatMessage(messages.play)
|
|
336
340
|
});
|
|
@@ -355,7 +359,9 @@ export class CustomMediaPlayerBase extends Component {
|
|
|
355
359
|
position: "top"
|
|
356
360
|
}, /*#__PURE__*/React.createElement(MediaButton, {
|
|
357
361
|
testId: "custom-media-player-skip-backward-button",
|
|
358
|
-
iconBefore: /*#__PURE__*/React.createElement(
|
|
362
|
+
iconBefore: /*#__PURE__*/React.createElement(VideoSkipBackwardTenIcon, {
|
|
363
|
+
spacing: "spacious",
|
|
364
|
+
LEGACY_fallbackIcon: SkipTenBackwardIcon,
|
|
359
365
|
label: formatMessage(messages.skipBackward)
|
|
360
366
|
}),
|
|
361
367
|
onClick: this.getMediaButtonClickHandler(skipBackward, 'skipBackwardButton')
|
|
@@ -372,7 +378,9 @@ export class CustomMediaPlayerBase extends Component {
|
|
|
372
378
|
position: "top"
|
|
373
379
|
}, /*#__PURE__*/React.createElement(MediaButton, {
|
|
374
380
|
testId: "custom-media-player-skip-forward-button",
|
|
375
|
-
iconBefore: /*#__PURE__*/React.createElement(
|
|
381
|
+
iconBefore: /*#__PURE__*/React.createElement(VideoSkipForwardTenIcon, {
|
|
382
|
+
spacing: "spacious",
|
|
383
|
+
LEGACY_fallbackIcon: SkipTenForwardIcon,
|
|
376
384
|
label: formatMessage(messages.skipForward)
|
|
377
385
|
}),
|
|
378
386
|
onClick: this.getMediaButtonClickHandler(skipForward, 'skipForwardButton')
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* NOTE:
|
|
3
3
|
*
|
|
4
|
-
* This file
|
|
5
|
-
*
|
|
4
|
+
* This file was automatically generated by i18n-tools
|
|
5
|
+
* which is now deprecated. Changes must now be made
|
|
6
|
+
* manually.
|
|
6
7
|
*/
|
|
7
8
|
export { default as zh } from './zh';
|
|
8
9
|
export { default as zh_TW } from './zh_TW';
|
|
@@ -31,5 +32,6 @@ export { default as uk } from './uk';
|
|
|
31
32
|
export { default as vi } from './vi';
|
|
32
33
|
export { default as en } from './en';
|
|
33
34
|
export { default as en_GB } from './en_GB';
|
|
35
|
+
export { default as en_ZZ } from './en_ZZ';
|
|
34
36
|
export { default as is } from './is';
|
|
35
37
|
export { default as ro } from './ro';
|
|
@@ -43,11 +43,13 @@ import { TimeSaver } from './timeSaver';
|
|
|
43
43
|
import PlaybackSpeedControls from './playbackSpeedControls';
|
|
44
44
|
import { PlayPauseBlanket } from './playPauseBlanket';
|
|
45
45
|
import Tooltip from '@atlaskit/tooltip';
|
|
46
|
-
import { SkipTenBackwardIcon, SkipTenForwardIcon } from '
|
|
46
|
+
import { SkipTenBackwardIcon, SkipTenForwardIcon } from '@atlaskit/legacy-custom-icons';
|
|
47
47
|
import { getControlsWrapperClassName } from './getControlsWrapperClassName';
|
|
48
48
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
49
|
+
import VideoSkipForwardTenIcon from '@atlaskit/icon/core/video-skip-forward-ten';
|
|
50
|
+
import VideoSkipBackwardTenIcon from '@atlaskit/icon/core/video-skip-backward-ten';
|
|
49
51
|
var packageName = "@atlaskit/media-ui";
|
|
50
|
-
var packageVersion = "26.0
|
|
52
|
+
var packageVersion = "26.2.0";
|
|
51
53
|
var MEDIUM_VIDEO_MAX_WIDTH = 400;
|
|
52
54
|
var SMALL_VIDEO_MAX_WIDTH = 160;
|
|
53
55
|
var MINIMUM_DURATION_BEFORE_SAVING_TIME = 60;
|
|
@@ -325,9 +327,11 @@ export var CustomMediaPlayerBase = /*#__PURE__*/function (_Component) {
|
|
|
325
327
|
_defineProperty(_assertThisInitialized(_this), "renderPlayPauseButton", function (isPlaying) {
|
|
326
328
|
var formatMessage = _this.props.intl.formatMessage;
|
|
327
329
|
var toggleButtonIcon = isPlaying ? /*#__PURE__*/React.createElement(PauseIcon, {
|
|
330
|
+
spacing: "spacious",
|
|
328
331
|
color: "currentColor",
|
|
329
332
|
label: formatMessage(messages.pause)
|
|
330
333
|
}) : /*#__PURE__*/React.createElement(PlayIcon, {
|
|
334
|
+
spacing: "spacious",
|
|
331
335
|
color: "currentColor",
|
|
332
336
|
label: formatMessage(messages.play)
|
|
333
337
|
});
|
|
@@ -348,7 +352,9 @@ export var CustomMediaPlayerBase = /*#__PURE__*/function (_Component) {
|
|
|
348
352
|
position: "top"
|
|
349
353
|
}, /*#__PURE__*/React.createElement(MediaButton, {
|
|
350
354
|
testId: "custom-media-player-skip-backward-button",
|
|
351
|
-
iconBefore: /*#__PURE__*/React.createElement(
|
|
355
|
+
iconBefore: /*#__PURE__*/React.createElement(VideoSkipBackwardTenIcon, {
|
|
356
|
+
spacing: "spacious",
|
|
357
|
+
LEGACY_fallbackIcon: SkipTenBackwardIcon,
|
|
352
358
|
label: formatMessage(messages.skipBackward)
|
|
353
359
|
}),
|
|
354
360
|
onClick: _this.getMediaButtonClickHandler(skipBackward, 'skipBackwardButton')
|
|
@@ -361,7 +367,9 @@ export var CustomMediaPlayerBase = /*#__PURE__*/function (_Component) {
|
|
|
361
367
|
position: "top"
|
|
362
368
|
}, /*#__PURE__*/React.createElement(MediaButton, {
|
|
363
369
|
testId: "custom-media-player-skip-forward-button",
|
|
364
|
-
iconBefore: /*#__PURE__*/React.createElement(
|
|
370
|
+
iconBefore: /*#__PURE__*/React.createElement(VideoSkipForwardTenIcon, {
|
|
371
|
+
spacing: "spacious",
|
|
372
|
+
LEGACY_fallbackIcon: SkipTenForwardIcon,
|
|
365
373
|
label: formatMessage(messages.skipForward)
|
|
366
374
|
}),
|
|
367
375
|
onClick: _this.getMediaButtonClickHandler(skipForward, 'skipForwardButton')
|
package/dist/esm/i18n/index.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* NOTE:
|
|
3
3
|
*
|
|
4
|
-
* This file
|
|
5
|
-
*
|
|
4
|
+
* This file was automatically generated by i18n-tools
|
|
5
|
+
* which is now deprecated. Changes must now be made
|
|
6
|
+
* manually.
|
|
6
7
|
*/
|
|
7
8
|
export { default as zh } from './zh';
|
|
8
9
|
export { default as zh_TW } from './zh_TW';
|
|
@@ -31,5 +32,6 @@ export { default as uk } from './uk';
|
|
|
31
32
|
export { default as vi } from './vi';
|
|
32
33
|
export { default as en } from './en';
|
|
33
34
|
export { default as en_GB } from './en_GB';
|
|
35
|
+
export { default as en_ZZ } from './en_ZZ';
|
|
34
36
|
export { default as is } from './is';
|
|
35
37
|
export { default as ro } from './ro';
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* NOTE:
|
|
3
3
|
*
|
|
4
|
-
* This file
|
|
5
|
-
*
|
|
4
|
+
* This file was automatically generated by i18n-tools
|
|
5
|
+
* which is now deprecated. Changes must now be made
|
|
6
|
+
* manually.
|
|
6
7
|
*/
|
|
7
8
|
export { default as zh } from './zh';
|
|
8
9
|
export { default as zh_TW } from './zh_TW';
|
|
@@ -31,5 +32,6 @@ export { default as uk } from './uk';
|
|
|
31
32
|
export { default as vi } from './vi';
|
|
32
33
|
export { default as en } from './en';
|
|
33
34
|
export { default as en_GB } from './en_GB';
|
|
35
|
+
export { default as en_ZZ } from './en_ZZ';
|
|
34
36
|
export { default as is } from './is';
|
|
35
37
|
export { default as ro } from './ro';
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* NOTE:
|
|
3
3
|
*
|
|
4
|
-
* This file
|
|
5
|
-
*
|
|
4
|
+
* This file was automatically generated by i18n-tools
|
|
5
|
+
* which is now deprecated. Changes must now be made
|
|
6
|
+
* manually.
|
|
6
7
|
*/
|
|
7
8
|
export { default as zh } from './zh';
|
|
8
9
|
export { default as zh_TW } from './zh_TW';
|
|
@@ -31,5 +32,6 @@ export { default as uk } from './uk';
|
|
|
31
32
|
export { default as vi } from './vi';
|
|
32
33
|
export { default as en } from './en';
|
|
33
34
|
export { default as en_GB } from './en_GB';
|
|
35
|
+
export { default as en_ZZ } from './en_ZZ';
|
|
34
36
|
export { default as is } from './is';
|
|
35
37
|
export { default as ro } from './ro';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-ui",
|
|
3
|
-
"version": "26.0
|
|
3
|
+
"version": "26.2.0",
|
|
4
4
|
"description": "Includes common components and utilities used by other media packages",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -27,16 +27,17 @@
|
|
|
27
27
|
"@atlaskit/code": "^15.6.0",
|
|
28
28
|
"@atlaskit/icon": "^22.24.0",
|
|
29
29
|
"@atlaskit/icon-file-type": "^6.7.0",
|
|
30
|
+
"@atlaskit/legacy-custom-icons": "^0.14.0",
|
|
30
31
|
"@atlaskit/locale": "^2.8.0",
|
|
31
32
|
"@atlaskit/media-common": "^11.7.0",
|
|
32
33
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
33
|
-
"@atlaskit/primitives": "^13.
|
|
34
|
+
"@atlaskit/primitives": "^13.1.0",
|
|
34
35
|
"@atlaskit/range": "^7.4.0",
|
|
35
|
-
"@atlaskit/select": "^18.
|
|
36
|
+
"@atlaskit/select": "^18.5.0",
|
|
36
37
|
"@atlaskit/spinner": "^16.3.0",
|
|
37
38
|
"@atlaskit/theme": "^14.0.0",
|
|
38
|
-
"@atlaskit/tokens": "^2.
|
|
39
|
-
"@atlaskit/tooltip": "^18.
|
|
39
|
+
"@atlaskit/tokens": "^2.2.0",
|
|
40
|
+
"@atlaskit/tooltip": "^18.9.0",
|
|
40
41
|
"@atlaskit/width-detector": "^4.3.0",
|
|
41
42
|
"@babel/runtime": "^7.0.0",
|
|
42
43
|
"@emotion/styled": "^11.0.0",
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.SkipTenBackwardIcon = SkipTenBackwardIcon;
|
|
8
|
-
exports.SkipTenForwardIcon = SkipTenForwardIcon;
|
|
9
|
-
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
10
|
-
var _react = _interopRequireDefault(require("react"));
|
|
11
|
-
var _icon = _interopRequireDefault(require("@atlaskit/icon"));
|
|
12
|
-
function SkipTenBackwardGlyph(props) {
|
|
13
|
-
return /*#__PURE__*/_react.default.createElement("svg", (0, _extends2.default)({
|
|
14
|
-
viewBox: "0 0 24 24",
|
|
15
|
-
width: "24",
|
|
16
|
-
height: "24"
|
|
17
|
-
}, props), /*#__PURE__*/_react.default.createElement("path", {
|
|
18
|
-
fill: "currentColor",
|
|
19
|
-
d: "M5.414 6.95a1 1 0 001.414-1.414L6.293 5H12a7 7 0 11-7 7 1 1 0 10-2 0 9 9 0 109-9H6.536l.292-.293a1 1 0 10-1.414-1.414L3.293 3.414a1 1 0 000 1.414L5.414 6.95z"
|
|
20
|
-
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
21
|
-
fill: "currentColor",
|
|
22
|
-
d: "M10.494 9.15l-.02-.095a.75.75 0 00-.962-.516l-1.5.503-.094.039a.75.75 0 00-.379.91l.039.095c.163.331.55.5.91.378L9 10.293v4.457l.007.1a.75.75 0 001.493-.1v-5.5l-.006-.1z"
|
|
23
|
-
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
24
|
-
fill: "currentColor",
|
|
25
|
-
d: "M14 15.5c1.15 0 1.788-.894 2.049-1.415.305-.611.451-1.35.451-2.085 0-.69-.11-1.429-.406-2.055C15.81 9.345 15.157 8.5 14 8.5c-1.15 0-1.788.894-2.049 1.415-.305.611-.451 1.35-.451 2.085 0 .735.146 1.474.451 2.085.26.521.899 1.415 2.049 1.415zm1-3.5c0 1.105-.448 2-1 2s-1-.895-1-2 .448-2 1-2c.633 0 1 .895 1 2z"
|
|
26
|
-
}));
|
|
27
|
-
}
|
|
28
|
-
function SkipTenBackwardIcon(props) {
|
|
29
|
-
return /*#__PURE__*/_react.default.createElement(_icon.default, (0, _extends2.default)({
|
|
30
|
-
glyph: SkipTenBackwardGlyph
|
|
31
|
-
}, props));
|
|
32
|
-
}
|
|
33
|
-
function SkipTenForwardGlyph(props) {
|
|
34
|
-
return /*#__PURE__*/_react.default.createElement("svg", (0, _extends2.default)({
|
|
35
|
-
viewBox: "0 0 24 24",
|
|
36
|
-
width: "24",
|
|
37
|
-
height: "24"
|
|
38
|
-
}, props), /*#__PURE__*/_react.default.createElement("path", {
|
|
39
|
-
fill: "currentColor",
|
|
40
|
-
d: "M18.586 6.95a1 1 0 11-1.414-1.414L17.707 5H12a7 7 0 107 7 1 1 0 112 0 9 9 0 11-9-9h5.465l-.293-.293a1 1 0 111.414-1.414l2.121 2.121a1 1 0 010 1.414L18.586 6.95z"
|
|
41
|
-
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
42
|
-
fill: "currentColor",
|
|
43
|
-
d: "M10.475 9.055l.019.095.006.1v5.5a.75.75 0 01-1.493.1L9 14.75v-4.457l-.511.171a.75.75 0 01-.911-.378l-.039-.094a.75.75 0 01.379-.911l.094-.039 1.5-.503a.75.75 0 01.963.516z"
|
|
44
|
-
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
45
|
-
fill: "currentColor",
|
|
46
|
-
d: "M14 15.5c1.15 0 1.788-.894 2.049-1.415.305-.611.451-1.35.451-2.085 0-.69-.11-1.429-.406-2.055C15.81 9.345 15.157 8.5 14 8.5c-1.15 0-1.788.894-2.049 1.415-.305.611-.451 1.35-.451 2.085 0 .735.146 1.474.451 2.085.26.521.899 1.415 2.049 1.415zm1-3.5c0 1.105-.448 2-1 2s-1-.895-1-2 .448-2 1-2c.633 0 1 .895 1 2z"
|
|
47
|
-
}));
|
|
48
|
-
}
|
|
49
|
-
function SkipTenForwardIcon(props) {
|
|
50
|
-
return /*#__PURE__*/_react.default.createElement(_icon.default, (0, _extends2.default)({
|
|
51
|
-
glyph: SkipTenForwardGlyph
|
|
52
|
-
}, props));
|
|
53
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import Icon from '@atlaskit/icon';
|
|
4
|
-
function SkipTenBackwardGlyph(props) {
|
|
5
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
6
|
-
viewBox: "0 0 24 24",
|
|
7
|
-
width: "24",
|
|
8
|
-
height: "24"
|
|
9
|
-
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
-
fill: "currentColor",
|
|
11
|
-
d: "M5.414 6.95a1 1 0 001.414-1.414L6.293 5H12a7 7 0 11-7 7 1 1 0 10-2 0 9 9 0 109-9H6.536l.292-.293a1 1 0 10-1.414-1.414L3.293 3.414a1 1 0 000 1.414L5.414 6.95z"
|
|
12
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
13
|
-
fill: "currentColor",
|
|
14
|
-
d: "M10.494 9.15l-.02-.095a.75.75 0 00-.962-.516l-1.5.503-.094.039a.75.75 0 00-.379.91l.039.095c.163.331.55.5.91.378L9 10.293v4.457l.007.1a.75.75 0 001.493-.1v-5.5l-.006-.1z"
|
|
15
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
16
|
-
fill: "currentColor",
|
|
17
|
-
d: "M14 15.5c1.15 0 1.788-.894 2.049-1.415.305-.611.451-1.35.451-2.085 0-.69-.11-1.429-.406-2.055C15.81 9.345 15.157 8.5 14 8.5c-1.15 0-1.788.894-2.049 1.415-.305.611-.451 1.35-.451 2.085 0 .735.146 1.474.451 2.085.26.521.899 1.415 2.049 1.415zm1-3.5c0 1.105-.448 2-1 2s-1-.895-1-2 .448-2 1-2c.633 0 1 .895 1 2z"
|
|
18
|
-
}));
|
|
19
|
-
}
|
|
20
|
-
export function SkipTenBackwardIcon(props) {
|
|
21
|
-
return /*#__PURE__*/React.createElement(Icon, _extends({
|
|
22
|
-
glyph: SkipTenBackwardGlyph
|
|
23
|
-
}, props));
|
|
24
|
-
}
|
|
25
|
-
function SkipTenForwardGlyph(props) {
|
|
26
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
27
|
-
viewBox: "0 0 24 24",
|
|
28
|
-
width: "24",
|
|
29
|
-
height: "24"
|
|
30
|
-
}, props), /*#__PURE__*/React.createElement("path", {
|
|
31
|
-
fill: "currentColor",
|
|
32
|
-
d: "M18.586 6.95a1 1 0 11-1.414-1.414L17.707 5H12a7 7 0 107 7 1 1 0 112 0 9 9 0 11-9-9h5.465l-.293-.293a1 1 0 111.414-1.414l2.121 2.121a1 1 0 010 1.414L18.586 6.95z"
|
|
33
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
-
fill: "currentColor",
|
|
35
|
-
d: "M10.475 9.055l.019.095.006.1v5.5a.75.75 0 01-1.493.1L9 14.75v-4.457l-.511.171a.75.75 0 01-.911-.378l-.039-.094a.75.75 0 01.379-.911l.094-.039 1.5-.503a.75.75 0 01.963.516z"
|
|
36
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
-
fill: "currentColor",
|
|
38
|
-
d: "M14 15.5c1.15 0 1.788-.894 2.049-1.415.305-.611.451-1.35.451-2.085 0-.69-.11-1.429-.406-2.055C15.81 9.345 15.157 8.5 14 8.5c-1.15 0-1.788.894-2.049 1.415-.305.611-.451 1.35-.451 2.085 0 .735.146 1.474.451 2.085.26.521.899 1.415 2.049 1.415zm1-3.5c0 1.105-.448 2-1 2s-1-.895-1-2 .448-2 1-2c.633 0 1 .895 1 2z"
|
|
39
|
-
}));
|
|
40
|
-
}
|
|
41
|
-
export function SkipTenForwardIcon(props) {
|
|
42
|
-
return /*#__PURE__*/React.createElement(Icon, _extends({
|
|
43
|
-
glyph: SkipTenForwardGlyph
|
|
44
|
-
}, props));
|
|
45
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import Icon from '@atlaskit/icon';
|
|
4
|
-
function SkipTenBackwardGlyph(props) {
|
|
5
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
6
|
-
viewBox: "0 0 24 24",
|
|
7
|
-
width: "24",
|
|
8
|
-
height: "24"
|
|
9
|
-
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
-
fill: "currentColor",
|
|
11
|
-
d: "M5.414 6.95a1 1 0 001.414-1.414L6.293 5H12a7 7 0 11-7 7 1 1 0 10-2 0 9 9 0 109-9H6.536l.292-.293a1 1 0 10-1.414-1.414L3.293 3.414a1 1 0 000 1.414L5.414 6.95z"
|
|
12
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
13
|
-
fill: "currentColor",
|
|
14
|
-
d: "M10.494 9.15l-.02-.095a.75.75 0 00-.962-.516l-1.5.503-.094.039a.75.75 0 00-.379.91l.039.095c.163.331.55.5.91.378L9 10.293v4.457l.007.1a.75.75 0 001.493-.1v-5.5l-.006-.1z"
|
|
15
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
16
|
-
fill: "currentColor",
|
|
17
|
-
d: "M14 15.5c1.15 0 1.788-.894 2.049-1.415.305-.611.451-1.35.451-2.085 0-.69-.11-1.429-.406-2.055C15.81 9.345 15.157 8.5 14 8.5c-1.15 0-1.788.894-2.049 1.415-.305.611-.451 1.35-.451 2.085 0 .735.146 1.474.451 2.085.26.521.899 1.415 2.049 1.415zm1-3.5c0 1.105-.448 2-1 2s-1-.895-1-2 .448-2 1-2c.633 0 1 .895 1 2z"
|
|
18
|
-
}));
|
|
19
|
-
}
|
|
20
|
-
export function SkipTenBackwardIcon(props) {
|
|
21
|
-
return /*#__PURE__*/React.createElement(Icon, _extends({
|
|
22
|
-
glyph: SkipTenBackwardGlyph
|
|
23
|
-
}, props));
|
|
24
|
-
}
|
|
25
|
-
function SkipTenForwardGlyph(props) {
|
|
26
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
27
|
-
viewBox: "0 0 24 24",
|
|
28
|
-
width: "24",
|
|
29
|
-
height: "24"
|
|
30
|
-
}, props), /*#__PURE__*/React.createElement("path", {
|
|
31
|
-
fill: "currentColor",
|
|
32
|
-
d: "M18.586 6.95a1 1 0 11-1.414-1.414L17.707 5H12a7 7 0 107 7 1 1 0 112 0 9 9 0 11-9-9h5.465l-.293-.293a1 1 0 111.414-1.414l2.121 2.121a1 1 0 010 1.414L18.586 6.95z"
|
|
33
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
-
fill: "currentColor",
|
|
35
|
-
d: "M10.475 9.055l.019.095.006.1v5.5a.75.75 0 01-1.493.1L9 14.75v-4.457l-.511.171a.75.75 0 01-.911-.378l-.039-.094a.75.75 0 01.379-.911l.094-.039 1.5-.503a.75.75 0 01.963.516z"
|
|
36
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
-
fill: "currentColor",
|
|
38
|
-
d: "M14 15.5c1.15 0 1.788-.894 2.049-1.415.305-.611.451-1.35.451-2.085 0-.69-.11-1.429-.406-2.055C15.81 9.345 15.157 8.5 14 8.5c-1.15 0-1.788.894-2.049 1.415-.305.611-.451 1.35-.451 2.085 0 .735.146 1.474.451 2.085.26.521.899 1.415 2.049 1.415zm1-3.5c0 1.105-.448 2-1 2s-1-.895-1-2 .448-2 1-2c.633 0 1 .895 1 2z"
|
|
39
|
-
}));
|
|
40
|
-
}
|
|
41
|
-
export function SkipTenForwardIcon(props) {
|
|
42
|
-
return /*#__PURE__*/React.createElement(Icon, _extends({
|
|
43
|
-
glyph: SkipTenForwardGlyph
|
|
44
|
-
}, props));
|
|
45
|
-
}
|