@atlaskit/user-picker 10.12.5 → 10.12.6
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 +6 -0
- package/dist/cjs/analytics.js +1 -1
- package/dist/cjs/components/PopupControl.js +7 -15
- package/dist/es2019/analytics.js +1 -1
- package/dist/es2019/components/PopupControl.js +12 -22
- package/dist/esm/analytics.js +1 -1
- package/dist/esm/components/PopupControl.js +8 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/user-picker
|
|
2
2
|
|
|
3
|
+
## 10.12.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#57137](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57137) [`9b9900944973`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9b9900944973) - Remove legacy theming logic from @atlaskit/date, @atlaskit/mention, @atlaskit/task-decision and @atlaskit/user-picker.
|
|
8
|
+
|
|
3
9
|
## 10.12.5
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/cjs/analytics.js
CHANGED
|
@@ -12,7 +12,7 @@ var _utils = require("./components/utils");
|
|
|
12
12
|
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; }
|
|
13
13
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
14
14
|
var packageName = "@atlaskit/user-picker";
|
|
15
|
-
var packageVersion = "10.12.
|
|
15
|
+
var packageVersion = "10.12.6";
|
|
16
16
|
var UUID_REGEXP_TEAMS_GROUPS = /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
17
17
|
var UUID_REGEXP_OLD_AAID = /^[a-fA-F0-9]{1,8}:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
18
18
|
var UUID_REGEXP_NEW_AAID = /^[a-fA-F0-9]{24,24}$/;
|
|
@@ -11,38 +11,30 @@ var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits
|
|
|
11
11
|
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
12
12
|
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
13
13
|
var _react = _interopRequireDefault(require("react"));
|
|
14
|
-
var _components = require("@atlaskit/theme/components");
|
|
15
|
-
var _constants = require("@atlaskit/theme/constants");
|
|
16
14
|
var _select = require("@atlaskit/select");
|
|
17
15
|
var _react2 = require("@emotion/react");
|
|
18
16
|
var _colors = require("@atlaskit/theme/colors");
|
|
19
17
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
20
18
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /** @jsx jsx */
|
|
21
|
-
var spacing =
|
|
19
|
+
var spacing = 8;
|
|
22
20
|
var fontSize = 12;
|
|
23
21
|
var innerHeight = spacing * 2; // 16px
|
|
24
22
|
var lineHeight = innerHeight / fontSize;
|
|
25
23
|
var controlWrapper = (0, _react2.css)({
|
|
26
24
|
display: 'flex',
|
|
27
25
|
flexDirection: 'column',
|
|
28
|
-
padding: "0px ".concat(
|
|
29
|
-
});
|
|
30
|
-
var getColor = (0, _components.themed)({
|
|
31
|
-
light: "var(--ds-text-subtlest, ".concat(_colors.N200, ")"),
|
|
32
|
-
dark: "var(--ds-text-subtlest, ".concat(_colors.DN90, ")")
|
|
26
|
+
padding: "0px ".concat("var(--ds-space-100, 8px)", " ", "var(--ds-space-100, 8px)")
|
|
33
27
|
});
|
|
34
28
|
var getLabelStyle = function getLabelStyle() {
|
|
35
|
-
var right = 0;
|
|
36
|
-
var bottom = spacing / 2;
|
|
37
|
-
var left = 0;
|
|
38
|
-
var top = spacing * 2.5;
|
|
39
|
-
var color = getColor();
|
|
40
29
|
return (0, _react2.css)({
|
|
41
|
-
color:
|
|
30
|
+
color: "var(--ds-text-subtlest, ".concat(_colors.N200, ")"),
|
|
42
31
|
fontSize: "".concat(fontSize, "px"),
|
|
43
32
|
fontWeight: 600,
|
|
44
33
|
lineHeight: "".concat(lineHeight),
|
|
45
|
-
|
|
34
|
+
paddingBottom: "var(--ds-space-050, 4px)",
|
|
35
|
+
paddingLeft: "var(--ds-space-0, 0px)",
|
|
36
|
+
paddingRight: "var(--ds-space-0, 0px)",
|
|
37
|
+
paddingTop: "var(--ds-space-250, 20px)"
|
|
46
38
|
});
|
|
47
39
|
};
|
|
48
40
|
var PopupControl = exports.PopupControl = /*#__PURE__*/function (_React$PureComponent) {
|
package/dist/es2019/analytics.js
CHANGED
|
@@ -2,7 +2,7 @@ import { createAndFireEvent } from '@atlaskit/analytics-next';
|
|
|
2
2
|
import { v4 as uuidv4 } from 'uuid';
|
|
3
3
|
import { isCustom, isExternalUser } from './components/utils';
|
|
4
4
|
const packageName = "@atlaskit/user-picker";
|
|
5
|
-
const packageVersion = "10.12.
|
|
5
|
+
const packageVersion = "10.12.6";
|
|
6
6
|
const UUID_REGEXP_TEAMS_GROUPS = /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
7
7
|
const UUID_REGEXP_OLD_AAID = /^[a-fA-F0-9]{1,8}:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
8
8
|
const UUID_REGEXP_NEW_AAID = /^[a-fA-F0-9]{24,24}$/;
|
|
@@ -1,37 +1,27 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { themed } from '@atlaskit/theme/components';
|
|
4
|
-
import { gridSize } from '@atlaskit/theme/constants';
|
|
5
3
|
import { components } from '@atlaskit/select';
|
|
6
4
|
import { css, jsx } from '@emotion/react';
|
|
7
|
-
import { N200
|
|
8
|
-
const spacing =
|
|
5
|
+
import { N200 } from '@atlaskit/theme/colors';
|
|
6
|
+
const spacing = 8;
|
|
9
7
|
const fontSize = 12;
|
|
10
8
|
const innerHeight = spacing * 2; // 16px
|
|
11
9
|
const lineHeight = innerHeight / fontSize;
|
|
12
10
|
const controlWrapper = css({
|
|
13
11
|
display: 'flex',
|
|
14
12
|
flexDirection: 'column',
|
|
15
|
-
padding: `0px ${
|
|
13
|
+
padding: `0px ${"var(--ds-space-100, 8px)"} ${"var(--ds-space-100, 8px)"}`
|
|
16
14
|
});
|
|
17
|
-
const
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
const getLabelStyle = () => css({
|
|
16
|
+
color: `var(--ds-text-subtlest, ${N200})`,
|
|
17
|
+
fontSize: `${fontSize}px`,
|
|
18
|
+
fontWeight: 600,
|
|
19
|
+
lineHeight: `${lineHeight}`,
|
|
20
|
+
paddingBottom: "var(--ds-space-050, 4px)",
|
|
21
|
+
paddingLeft: "var(--ds-space-0, 0px)",
|
|
22
|
+
paddingRight: "var(--ds-space-0, 0px)",
|
|
23
|
+
paddingTop: "var(--ds-space-250, 20px)"
|
|
20
24
|
});
|
|
21
|
-
const getLabelStyle = () => {
|
|
22
|
-
const right = 0;
|
|
23
|
-
const bottom = spacing / 2;
|
|
24
|
-
const left = 0;
|
|
25
|
-
const top = spacing * 2.5;
|
|
26
|
-
const color = getColor();
|
|
27
|
-
return css({
|
|
28
|
-
color,
|
|
29
|
-
fontSize: `${fontSize}px`,
|
|
30
|
-
fontWeight: 600,
|
|
31
|
-
lineHeight: `${lineHeight}`,
|
|
32
|
-
padding: `${top}px ${right}px ${bottom}px ${left}px`
|
|
33
|
-
});
|
|
34
|
-
};
|
|
35
25
|
export class PopupControl extends React.PureComponent {
|
|
36
26
|
render() {
|
|
37
27
|
const {
|
package/dist/esm/analytics.js
CHANGED
|
@@ -5,7 +5,7 @@ import { createAndFireEvent } from '@atlaskit/analytics-next';
|
|
|
5
5
|
import { v4 as uuidv4 } from 'uuid';
|
|
6
6
|
import { isCustom, isExternalUser } from './components/utils';
|
|
7
7
|
var packageName = "@atlaskit/user-picker";
|
|
8
|
-
var packageVersion = "10.12.
|
|
8
|
+
var packageVersion = "10.12.6";
|
|
9
9
|
var UUID_REGEXP_TEAMS_GROUPS = /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
10
10
|
var UUID_REGEXP_OLD_AAID = /^[a-fA-F0-9]{1,8}:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
|
|
11
11
|
var UUID_REGEXP_NEW_AAID = /^[a-fA-F0-9]{24,24}$/;
|
|
@@ -7,36 +7,28 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
7
7
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
8
8
|
/** @jsx jsx */
|
|
9
9
|
import React from 'react';
|
|
10
|
-
import { themed } from '@atlaskit/theme/components';
|
|
11
|
-
import { gridSize } from '@atlaskit/theme/constants';
|
|
12
10
|
import { components } from '@atlaskit/select';
|
|
13
11
|
import { css, jsx } from '@emotion/react';
|
|
14
|
-
import { N200
|
|
15
|
-
var spacing =
|
|
12
|
+
import { N200 } from '@atlaskit/theme/colors';
|
|
13
|
+
var spacing = 8;
|
|
16
14
|
var fontSize = 12;
|
|
17
15
|
var innerHeight = spacing * 2; // 16px
|
|
18
16
|
var lineHeight = innerHeight / fontSize;
|
|
19
17
|
var controlWrapper = css({
|
|
20
18
|
display: 'flex',
|
|
21
19
|
flexDirection: 'column',
|
|
22
|
-
padding: "0px ".concat(
|
|
23
|
-
});
|
|
24
|
-
var getColor = themed({
|
|
25
|
-
light: "var(--ds-text-subtlest, ".concat(N200, ")"),
|
|
26
|
-
dark: "var(--ds-text-subtlest, ".concat(DN90, ")")
|
|
20
|
+
padding: "0px ".concat("var(--ds-space-100, 8px)", " ", "var(--ds-space-100, 8px)")
|
|
27
21
|
});
|
|
28
22
|
var getLabelStyle = function getLabelStyle() {
|
|
29
|
-
var right = 0;
|
|
30
|
-
var bottom = spacing / 2;
|
|
31
|
-
var left = 0;
|
|
32
|
-
var top = spacing * 2.5;
|
|
33
|
-
var color = getColor();
|
|
34
23
|
return css({
|
|
35
|
-
color:
|
|
24
|
+
color: "var(--ds-text-subtlest, ".concat(N200, ")"),
|
|
36
25
|
fontSize: "".concat(fontSize, "px"),
|
|
37
26
|
fontWeight: 600,
|
|
38
27
|
lineHeight: "".concat(lineHeight),
|
|
39
|
-
|
|
28
|
+
paddingBottom: "var(--ds-space-050, 4px)",
|
|
29
|
+
paddingLeft: "var(--ds-space-0, 0px)",
|
|
30
|
+
paddingRight: "var(--ds-space-0, 0px)",
|
|
31
|
+
paddingTop: "var(--ds-space-250, 20px)"
|
|
40
32
|
});
|
|
41
33
|
};
|
|
42
34
|
export var PopupControl = /*#__PURE__*/function (_React$PureComponent) {
|