@atlaskit/user-picker 11.25.4 → 11.25.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 +14 -0
- package/afm-cc/tsconfig.json +0 -3
- package/afm-jira/tsconfig.json +0 -3
- package/afm-products/tsconfig.json +0 -3
- package/dist/cjs/components/AddOptionAvatar.js +2 -3
- package/dist/cjs/components/BaseUserPicker.js +5 -3
- package/dist/cjs/components/CustomOption/main.js +2 -3
- package/dist/cjs/components/EmailOption/main.js +2 -3
- package/dist/cjs/components/ExternalUserOption/ExternalAvatarItemOption.js +2 -3
- package/dist/cjs/components/ExternalUserOption/InfoIcon.js +10 -28
- package/dist/cjs/components/ExternalUserOption/main.js +4 -6
- package/dist/cjs/components/GroupOption/main.js +3 -4
- package/dist/cjs/components/PopupControl.js +2 -3
- package/dist/cjs/components/SingleValue.js +2 -2
- package/dist/cjs/components/SingleValueContainer.js +2 -3
- package/dist/cjs/components/TeamOption/main.js +3 -4
- package/dist/cjs/components/UserOption.js +5 -6
- package/dist/cjs/components/assets/github.js +1 -1
- package/dist/cjs/components/assets/google.js +4 -4
- package/dist/cjs/components/assets/microsoft.js +5 -5
- package/dist/cjs/components/assets/slack.js +9 -9
- package/dist/cjs/components/styles.js +9 -10
- package/dist/es2019/components/AddOptionAvatar.js +2 -3
- package/dist/es2019/components/BaseUserPicker.js +5 -3
- package/dist/es2019/components/CustomOption/main.js +3 -3
- package/dist/es2019/components/EmailOption/main.js +2 -3
- package/dist/es2019/components/ExternalUserOption/ExternalAvatarItemOption.js +2 -3
- package/dist/es2019/components/ExternalUserOption/InfoIcon.js +9 -19
- package/dist/es2019/components/ExternalUserOption/main.js +4 -6
- package/dist/es2019/components/GroupOption/main.js +3 -4
- package/dist/es2019/components/PopupControl.js +2 -3
- package/dist/es2019/components/SingleValue.js +2 -2
- package/dist/es2019/components/SingleValueContainer.js +2 -3
- package/dist/es2019/components/TeamOption/main.js +4 -4
- package/dist/es2019/components/UserOption.js +5 -6
- package/dist/es2019/components/assets/github.js +1 -1
- package/dist/es2019/components/assets/google.js +4 -4
- package/dist/es2019/components/assets/microsoft.js +5 -5
- package/dist/es2019/components/assets/slack.js +9 -9
- package/dist/es2019/components/styles.js +9 -10
- package/dist/esm/components/AddOptionAvatar.js +2 -3
- package/dist/esm/components/BaseUserPicker.js +5 -3
- package/dist/esm/components/CustomOption/main.js +3 -3
- package/dist/esm/components/EmailOption/main.js +2 -3
- package/dist/esm/components/ExternalUserOption/ExternalAvatarItemOption.js +2 -3
- package/dist/esm/components/ExternalUserOption/InfoIcon.js +9 -27
- package/dist/esm/components/ExternalUserOption/main.js +4 -6
- package/dist/esm/components/GroupOption/main.js +3 -4
- package/dist/esm/components/PopupControl.js +2 -3
- package/dist/esm/components/SingleValue.js +2 -2
- package/dist/esm/components/SingleValueContainer.js +2 -3
- package/dist/esm/components/TeamOption/main.js +4 -4
- package/dist/esm/components/UserOption.js +5 -6
- package/dist/esm/components/assets/github.js +1 -1
- package/dist/esm/components/assets/google.js +4 -4
- package/dist/esm/components/assets/microsoft.js +5 -5
- package/dist/esm/components/assets/slack.js +9 -9
- package/dist/esm/components/styles.js +9 -10
- package/dist/types/components/BaseUserPicker.d.ts +1 -1
- package/dist/types-ts4.5/components/BaseUserPicker.d.ts +1 -1
- package/package.json +8 -12
|
@@ -7,10 +7,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.getStyles = exports.getPopupStyles = exports.INDICATOR_WIDTH = exports.BORDER_PADDING = exports.AVATAR_PADDING = void 0;
|
|
8
8
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
9
9
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
10
|
-
var _colors = require("@atlaskit/theme/colors");
|
|
11
|
-
var _memoizeOne = _interopRequireDefault(require("memoize-one"));
|
|
12
|
-
var _select = require("@atlaskit/select");
|
|
13
10
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
11
|
+
var _select = require("@atlaskit/select");
|
|
12
|
+
var _memoizeOne = _interopRequireDefault(require("memoize-one"));
|
|
14
13
|
var _excluded = ["_paddingTop", "_paddingBottom", "_paddingLeft", "_paddingRight"],
|
|
15
14
|
_excluded2 = ["_paddingTop", "_paddingBottom", "_position"];
|
|
16
15
|
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; }
|
|
@@ -36,14 +35,14 @@ var getStyles = exports.getStyles = (0, _memoizeOne.default)(function (width, is
|
|
|
36
35
|
var isMulti = state.selectProps.isMulti;
|
|
37
36
|
return _objectSpread(_objectSpread({}, css), {}, {
|
|
38
37
|
width: width,
|
|
39
|
-
borderColor: state.isFocused ? "var(--ds-border-focused,
|
|
40
|
-
backgroundColor: state.isFocused ? "var(--ds-background-input,
|
|
38
|
+
borderColor: state.isFocused ? "var(--ds-border-focused, #4688EC)" : state.isInvalid ? "var(--ds-border-danger, #E2483D)" : state.selectProps.subtle || state.selectProps.noBorder ? 'transparent' : "var(--ds-border-input, #8C8F97)",
|
|
39
|
+
backgroundColor: state.isFocused ? "var(--ds-background-input, #FFFFFF)" : state.selectProps.subtle ? 'transparent' : state.isDisabled && (0, _platformFeatureFlags.fg)('platform-dst-lozenge-tag-badge-visual-uplifts') ? "var(--ds-background-disabled, #17171708)" : state.selectProps.textFieldBackgroundColor ? "var(--ds-background-input, #FFFFFF)" : "var(--ds-background-input, #FFFFFF)",
|
|
41
40
|
'&:hover .fabric-user-picker__clear-indicator': {
|
|
42
41
|
opacity: 1
|
|
43
42
|
},
|
|
44
43
|
':hover': _objectSpread(_objectSpread({}, css[':hover']), {}, {
|
|
45
|
-
borderColor: state.isFocused ? css[':hover'] ? "var(--ds-border-focused,
|
|
46
|
-
backgroundColor: state.selectProps.subtle && state.selectProps.hoveringClearIndicator ? "var(--ds-background-danger,
|
|
44
|
+
borderColor: state.isFocused ? css[':hover'] ? "var(--ds-border-focused, #4688EC)" : "var(--ds-border-focused, #4688EC)" : state.isInvalid ? "var(--ds-border-danger, #E2483D)" : state.selectProps.subtle ? 'transparent' : "var(--ds-border-input, #8C8F97)",
|
|
45
|
+
backgroundColor: state.selectProps.subtle && state.selectProps.hoveringClearIndicator ? "var(--ds-background-danger, #FFECEB)" : state.isFocused ? css[':hover'] ? "var(--ds-background-input, #FFFFFF)" : "var(--ds-background-input, #FFFFFF)" : state.isDisabled ? "var(--ds-background-disabled, #17171708)" : "var(--ds-background-input-hovered, #F8F8F8)"
|
|
47
46
|
}),
|
|
48
47
|
padding: 0,
|
|
49
48
|
minHeight: minHeight ? minHeight : height || isCompact ? 'none' : 44,
|
|
@@ -69,7 +68,7 @@ var getStyles = exports.getStyles = (0, _memoizeOne.default)(function (width, is
|
|
|
69
68
|
paddingTop: 0,
|
|
70
69
|
padding: 0,
|
|
71
70
|
':hover': {
|
|
72
|
-
color: "var(--ds-icon-danger,
|
|
71
|
+
color: "var(--ds-icon-danger, #C9372C)"
|
|
73
72
|
}
|
|
74
73
|
});
|
|
75
74
|
},
|
|
@@ -158,12 +157,12 @@ var getStyles = exports.getStyles = (0, _memoizeOne.default)(function (width, is
|
|
|
158
157
|
paddingLeft: state.selectProps.isMulti ? 0 : BORDER_PADDING,
|
|
159
158
|
'& input::placeholder': {
|
|
160
159
|
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
|
161
|
-
color: "var(--ds-text-subtlest,
|
|
160
|
+
color: "var(--ds-text-subtlest, #6B6E76)",
|
|
162
161
|
opacity: 1 /* Firefox */
|
|
163
162
|
},
|
|
164
163
|
'& input:-ms-input-placeholder': {
|
|
165
164
|
/* Internet Explorer 10-11 */
|
|
166
|
-
color: "var(--ds-text-subtlest,
|
|
165
|
+
color: "var(--ds-text-subtlest, #6B6E76)"
|
|
167
166
|
}
|
|
168
167
|
});
|
|
169
168
|
},
|
|
@@ -3,14 +3,13 @@
|
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
5
|
import EmailIcon from '@atlaskit/icon/core/email';
|
|
6
|
-
import { N40, N500 } from '@atlaskit/theme/colors';
|
|
7
6
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
8
7
|
import { css, jsx } from '@emotion/react';
|
|
9
8
|
import React from 'react';
|
|
10
9
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
11
10
|
const getEmailAvatarWrapperStyle = (isLozenge, isPendingAction) => {
|
|
12
11
|
const padding = isLozenge ? `${"var(--ds-space-0, 0px)"}` : `${"var(--ds-space-050, 4px)"}`;
|
|
13
|
-
const backgroundColor = isPendingAction && fg('twcg-444-invite-usd-improvements-m2-gate') ? "var(--ds-background-warning, #FFF5DB)" :
|
|
12
|
+
const backgroundColor = isPendingAction && fg('twcg-444-invite-usd-improvements-m2-gate') ? "var(--ds-background-warning, #FFF5DB)" : "var(--ds-background-neutral, #0515240F)";
|
|
14
13
|
return css({
|
|
15
14
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
16
15
|
padding,
|
|
@@ -34,7 +33,7 @@ export const AddOptionAvatar = ({
|
|
|
34
33
|
}, jsx(EmailIcon, {
|
|
35
34
|
testId: "add-option-avatar-email-icon",
|
|
36
35
|
label: label || '',
|
|
37
|
-
color: isPendingAction && fg('twcg-444-invite-usd-improvements-m2-gate') ? "var(--ds-text-warning, #9E4C00)" :
|
|
36
|
+
color: isPendingAction && fg('twcg-444-invite-usd-improvements-m2-gate') ? "var(--ds-text-warning, #9E4C00)" : "var(--ds-text-subtle, #505258)"
|
|
38
37
|
}))
|
|
39
38
|
);
|
|
40
39
|
};
|
|
@@ -204,6 +204,7 @@ export class BaseUserPickerWithoutAnalytics extends React.Component {
|
|
|
204
204
|
}
|
|
205
205
|
});
|
|
206
206
|
_defineProperty(this, "handleFocus", event => {
|
|
207
|
+
var _this$props$openMenuO;
|
|
207
208
|
const {
|
|
208
209
|
value,
|
|
209
210
|
menuIsOpen
|
|
@@ -213,7 +214,8 @@ export class BaseUserPickerWithoutAnalytics extends React.Component {
|
|
|
213
214
|
}
|
|
214
215
|
this.startOptionsShownUfoExperience();
|
|
215
216
|
callCallback(this.props.onFocus, this.getSessionId());
|
|
216
|
-
|
|
217
|
+
const openMenuOnFocus = (_this$props$openMenuO = this.props.openMenuOnFocus) !== null && _this$props$openMenuO !== void 0 ? _this$props$openMenuO : true;
|
|
218
|
+
if (!this.isMenuOpenOnClickForSingleSelect && openMenuOnFocus) {
|
|
217
219
|
this.setState({
|
|
218
220
|
menuIsOpen: true
|
|
219
221
|
});
|
|
@@ -514,7 +516,7 @@ export class BaseUserPickerWithoutAnalytics extends React.Component {
|
|
|
514
516
|
}), {});
|
|
515
517
|
}
|
|
516
518
|
render() {
|
|
517
|
-
var _this$props$
|
|
519
|
+
var _this$props$openMenuO2;
|
|
518
520
|
const {
|
|
519
521
|
isMulti,
|
|
520
522
|
isLoading,
|
|
@@ -566,7 +568,7 @@ export class BaseUserPickerWithoutAnalytics extends React.Component {
|
|
|
566
568
|
...(!this.isMenuOpenOnClickForSingleSelect && {
|
|
567
569
|
menuIsOpen,
|
|
568
570
|
blurInputOnSelect: !isMulti,
|
|
569
|
-
openMenuOnFocus: (_this$props$
|
|
571
|
+
openMenuOnFocus: (_this$props$openMenuO2 = this.props.openMenuOnFocus) !== null && _this$props$openMenuO2 !== void 0 ? _this$props$openMenuO2 : true
|
|
570
572
|
})
|
|
571
573
|
};
|
|
572
574
|
const {
|
|
@@ -3,7 +3,7 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
3
3
|
* @jsxRuntime classic
|
|
4
4
|
* @jsx jsx
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports
|
|
8
8
|
import { jsx } from '@emotion/react';
|
|
9
9
|
import React from 'react';
|
|
@@ -25,14 +25,14 @@ export class CustomOption extends React.PureComponent {
|
|
|
25
25
|
key: "name"
|
|
26
26
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
27
27
|
,
|
|
28
|
-
css: textWrapper(this.props.isSelected ?
|
|
28
|
+
css: textWrapper(this.props.isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text, #292A2E)")
|
|
29
29
|
}, jsx(HighlightText, {
|
|
30
30
|
highlights: highlight && highlight.name
|
|
31
31
|
}, name))];
|
|
32
32
|
});
|
|
33
33
|
_defineProperty(this, "getBylineComponent", (isSelected, message) => jsx("span", {
|
|
34
34
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
35
|
-
css: textWrapper(isSelected ?
|
|
35
|
+
css: textWrapper(isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text-subtlest, #6B6E76)"),
|
|
36
36
|
"data-testid": "user-picker-custom-secondary-text"
|
|
37
37
|
}, message));
|
|
38
38
|
_defineProperty(this, "renderByline", () => {
|
|
@@ -5,7 +5,6 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
5
5
|
*/
|
|
6
6
|
import React from 'react';
|
|
7
7
|
import { FormattedMessage } from 'react-intl-next';
|
|
8
|
-
import { B400, N200, N800 } from '@atlaskit/theme/colors';
|
|
9
8
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports
|
|
10
9
|
import { jsx } from '@emotion/react';
|
|
11
10
|
import { AddOptionAvatar } from '../AddOptionAvatar';
|
|
@@ -28,13 +27,13 @@ export class EmailOption extends React.PureComponent {
|
|
|
28
27
|
key: "name"
|
|
29
28
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
30
29
|
,
|
|
31
|
-
css: textWrapper(this.props.isSelected ?
|
|
30
|
+
css: textWrapper(this.props.isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text, #292A2E)")
|
|
32
31
|
}, id);
|
|
33
32
|
});
|
|
34
33
|
_defineProperty(this, "renderSecondaryText", label => {
|
|
35
34
|
return jsx("span", {
|
|
36
35
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
37
|
-
css: textWrapper(this.props.isSelected ?
|
|
36
|
+
css: textWrapper(this.props.isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text-subtlest, #6B6E76)"),
|
|
38
37
|
"data-testid": "user-picker-email-secondary-text"
|
|
39
38
|
}, label);
|
|
40
39
|
});
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports
|
|
7
7
|
import { css, jsx } from '@emotion/react';
|
|
8
|
-
import { B400 } from '@atlaskit/theme/colors';
|
|
9
8
|
const outerWrapper = isDisabled => css({
|
|
10
9
|
alignItems: 'center',
|
|
11
10
|
boxSizing: 'border-box',
|
|
@@ -36,14 +35,14 @@ const textSection = css({
|
|
|
36
35
|
});
|
|
37
36
|
const getTextStyle = isSecondary => {
|
|
38
37
|
const secondaryCssArgs = isSecondary ? {
|
|
39
|
-
color:
|
|
38
|
+
color: "var(--ds-text-selected, #1868DB)",
|
|
40
39
|
font: "var(--ds-font-body-small, normal 400 12px/16px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)"
|
|
41
40
|
} : {};
|
|
42
41
|
return css({
|
|
43
42
|
display: 'flex',
|
|
44
43
|
maxWidth: '100%',
|
|
45
44
|
margin: 0,
|
|
46
|
-
color:
|
|
45
|
+
color: "var(--ds-text-selected, #1868DB)",
|
|
47
46
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
48
47
|
...{
|
|
49
48
|
secondaryCssArgs
|
|
@@ -2,30 +2,20 @@
|
|
|
2
2
|
* @jsxRuntime classic
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
|
-
import
|
|
5
|
+
import EditorPanelIcon from '@atlaskit/icon/core/status-information';
|
|
6
6
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports
|
|
7
7
|
import { css, jsx } from '@emotion/react';
|
|
8
|
-
import EditorPanelIcon from '@atlaskit/icon/core/status-information';
|
|
9
|
-
import { N50, N200 } from '@atlaskit/theme/colors';
|
|
10
8
|
const wrapper = css({
|
|
11
9
|
display: 'flex',
|
|
12
10
|
marginRight: "var(--ds-space-050, 4px)"
|
|
13
11
|
});
|
|
14
12
|
export default (() => {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
onMouseLeave: onMouseLeave
|
|
24
|
-
}, jsx(EditorPanelIcon, {
|
|
25
|
-
testId: "source-icon",
|
|
26
|
-
label: "",
|
|
27
|
-
spacing: "spacious",
|
|
28
|
-
color: `var(--ds-text-subtlest, ${isMouseHovered ? N200 : N50})`
|
|
29
|
-
}))
|
|
30
|
-
);
|
|
13
|
+
return jsx("div", {
|
|
14
|
+
css: wrapper
|
|
15
|
+
}, jsx(EditorPanelIcon, {
|
|
16
|
+
testId: "source-icon",
|
|
17
|
+
label: "",
|
|
18
|
+
spacing: "spacious",
|
|
19
|
+
color: "var(--ds-text-subtlest, #6B6E76)"
|
|
20
|
+
}));
|
|
31
21
|
});
|
|
@@ -6,7 +6,6 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
6
6
|
import React from 'react';
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
|
-
import { B400, N200, N800 } from '@atlaskit/theme/colors';
|
|
10
9
|
import Tooltip from '@atlaskit/tooltip';
|
|
11
10
|
import { withAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
12
11
|
import { createAndFireEventInElementsChannel, userInfoEvent } from '../../analytics';
|
|
@@ -18,7 +17,6 @@ import InfoIcon from './InfoIcon';
|
|
|
18
17
|
import { ExternalAvatarItemOption } from './ExternalAvatarItemOption';
|
|
19
18
|
import { SourcesTooltipContent } from './SourcesTooltipContent';
|
|
20
19
|
import { getAppearanceForAppType } from '@atlaskit/avatar';
|
|
21
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
22
20
|
|
|
23
21
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
24
22
|
export const imageContainer = css({
|
|
@@ -47,7 +45,7 @@ class ExternalUserOptionImpl extends React.PureComponent {
|
|
|
47
45
|
key: "name"
|
|
48
46
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
49
47
|
,
|
|
50
|
-
css: textWrapper(this.props.isSelected ?
|
|
48
|
+
css: textWrapper(this.props.isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text, #292A2E)")
|
|
51
49
|
}, name);
|
|
52
50
|
});
|
|
53
51
|
_defineProperty(this, "renderSecondaryText", () => {
|
|
@@ -58,7 +56,7 @@ class ExternalUserOptionImpl extends React.PureComponent {
|
|
|
58
56
|
if (!byline && !email) {
|
|
59
57
|
return;
|
|
60
58
|
}
|
|
61
|
-
const textColor = this.props.isSelected ?
|
|
59
|
+
const textColor = this.props.isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text-subtlest, #6B6E76)";
|
|
62
60
|
|
|
63
61
|
// Render byline if present
|
|
64
62
|
if (byline) {
|
|
@@ -100,7 +98,7 @@ class ExternalUserOptionImpl extends React.PureComponent {
|
|
|
100
98
|
iconColor: iconColor,
|
|
101
99
|
src: avatarUrl,
|
|
102
100
|
presence: status,
|
|
103
|
-
avatarAppearanceShape:
|
|
101
|
+
avatarAppearanceShape: getAppearanceForAppType(appType)
|
|
104
102
|
});
|
|
105
103
|
}
|
|
106
104
|
// Fallback to original behavior
|
|
@@ -108,7 +106,7 @@ class ExternalUserOptionImpl extends React.PureComponent {
|
|
|
108
106
|
appearance: "big",
|
|
109
107
|
src: avatarUrl,
|
|
110
108
|
presence: status,
|
|
111
|
-
avatarAppearanceShape:
|
|
109
|
+
avatarAppearanceShape: getAppearanceForAppType(appType)
|
|
112
110
|
});
|
|
113
111
|
});
|
|
114
112
|
_defineProperty(this, "fireEvent", (eventCreator, ...args) => {
|
|
@@ -8,7 +8,6 @@ import React from 'react';
|
|
|
8
8
|
import { FormattedMessage } from 'react-intl-next';
|
|
9
9
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports
|
|
10
10
|
import { css, jsx } from '@emotion/react';
|
|
11
|
-
import { N20, B400, N800, N200 } from '@atlaskit/theme/colors';
|
|
12
11
|
import PeopleIcon from '@atlaskit/icon/core/people-group';
|
|
13
12
|
import { VerifiedTeamIcon } from '@atlaskit/people-teams-ui-public/verified-team-icon';
|
|
14
13
|
import { AvatarItemOption, textWrapper } from '../AvatarItemOption';
|
|
@@ -20,7 +19,7 @@ export const groupOptionIconWrapper = css({
|
|
|
20
19
|
padding: "var(--ds-space-025, 2px)",
|
|
21
20
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
22
21
|
'> span': {
|
|
23
|
-
backgroundColor:
|
|
22
|
+
backgroundColor: "var(--ds-background-neutral, #0515240F)",
|
|
24
23
|
borderRadius: "var(--ds-radius-full, 9999px)",
|
|
25
24
|
padding: "var(--ds-space-050, 4px)"
|
|
26
25
|
}
|
|
@@ -40,7 +39,7 @@ export class GroupOption extends React.PureComponent {
|
|
|
40
39
|
key: "name"
|
|
41
40
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
42
41
|
,
|
|
43
|
-
css: textWrapper(isSelected ?
|
|
42
|
+
css: textWrapper(isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text, #292A2E)")
|
|
44
43
|
}, jsx(HighlightText, {
|
|
45
44
|
highlights: highlight && highlight.name
|
|
46
45
|
}, name))];
|
|
@@ -78,7 +77,7 @@ export class GroupOption extends React.PureComponent {
|
|
|
78
77
|
};
|
|
79
78
|
return jsx("span", {
|
|
80
79
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
81
|
-
css: textWrapper(isSelected ?
|
|
80
|
+
css: textWrapper(isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text-subtlest, #6B6E76)"),
|
|
82
81
|
"data-testid": "user-picker-group-secondary-text"
|
|
83
82
|
}, group.byline ? group.byline : getGroupByline());
|
|
84
83
|
});
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
import React from 'react';
|
|
6
6
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
7
7
|
import { css, jsx } from '@emotion/react';
|
|
8
|
-
import { N200 } from '@atlaskit/theme/colors';
|
|
9
8
|
import Control from './Control';
|
|
10
9
|
const controlWrapper = css({
|
|
11
10
|
display: 'flex',
|
|
@@ -13,8 +12,8 @@ const controlWrapper = css({
|
|
|
13
12
|
padding: `0px ${"var(--ds-space-100, 8px)"} ${"var(--ds-space-100, 8px)"}`
|
|
14
13
|
});
|
|
15
14
|
const labelStyle = css({
|
|
16
|
-
color:
|
|
17
|
-
font: "var(--ds-font-body-
|
|
15
|
+
color: "var(--ds-text-subtlest, #6B6E76)",
|
|
16
|
+
font: "var(--ds-font-body-small, normal 400 12px/16px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
18
17
|
fontWeight: "var(--ds-font-weight-semibold, 600)",
|
|
19
18
|
paddingBottom: "var(--ds-space-050, 4px)",
|
|
20
19
|
paddingLeft: "var(--ds-space-0, 0px)",
|
|
@@ -55,12 +55,12 @@ export const SingleValue = props => {
|
|
|
55
55
|
src: getAvatarUrl(data),
|
|
56
56
|
appearance: appearance,
|
|
57
57
|
type: isTeam(data) ? 'team' : 'person',
|
|
58
|
-
avatarAppearanceShape:
|
|
58
|
+
avatarAppearanceShape: getAppearanceForAppType(data.appType)
|
|
59
59
|
}) : /*#__PURE__*/React.createElement(SizeableAvatar, {
|
|
60
60
|
src: getAvatarUrl(data),
|
|
61
61
|
appearance: appearance,
|
|
62
62
|
type: isTeam(data) ? 'team' : 'person',
|
|
63
|
-
avatarAppearanceShape:
|
|
63
|
+
avatarAppearanceShape: getAppearanceForAppType(data.appType)
|
|
64
64
|
}), /*#__PURE__*/React.createElement(Box, {
|
|
65
65
|
xcss: styles.avatarItem
|
|
66
66
|
}, /*#__PURE__*/React.createElement("div", {
|
|
@@ -9,7 +9,6 @@ import { AvatarOrIcon } from './AvatarOrIcon';
|
|
|
9
9
|
import { SizeableAvatar } from './SizeableAvatar';
|
|
10
10
|
import ValueContainerWrapper from './ValueContainerWrapper';
|
|
11
11
|
import { getAppearanceForAppType } from '@atlaskit/avatar';
|
|
12
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
13
12
|
const valueContainerStyles = {
|
|
14
13
|
root: "_yv0e5bpd _ca0q12x7 _n3td12x7 _19bvze3t _1reo15vq _18m91wug _1fjgglyw _c71l1osq _1suq1j28 _1ke8idpf"
|
|
15
14
|
};
|
|
@@ -40,7 +39,7 @@ export class SingleValueContainer extends React.Component {
|
|
|
40
39
|
iconColor: userData.iconColor,
|
|
41
40
|
type: placeholderAvatar,
|
|
42
41
|
src: userData.avatarUrl,
|
|
43
|
-
avatarAppearanceShape: userData
|
|
42
|
+
avatarAppearanceShape: userData ? getAppearanceForAppType(userData.appType) : undefined
|
|
44
43
|
});
|
|
45
44
|
}
|
|
46
45
|
// Fallback to original behavior
|
|
@@ -48,7 +47,7 @@ export class SingleValueContainer extends React.Component {
|
|
|
48
47
|
appearance: appearance,
|
|
49
48
|
type: placeholderAvatar,
|
|
50
49
|
src: userData === null || userData === void 0 ? void 0 : userData.avatarUrl,
|
|
51
|
-
avatarAppearanceShape: userData
|
|
50
|
+
avatarAppearanceShape: userData ? getAppearanceForAppType(userData.appType) : undefined
|
|
52
51
|
});
|
|
53
52
|
}
|
|
54
53
|
return null;
|
|
@@ -4,7 +4,7 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
4
4
|
* @jsxRuntime classic
|
|
5
5
|
* @jsx jsx
|
|
6
6
|
*/
|
|
7
|
-
|
|
7
|
+
|
|
8
8
|
import { Inline } from '@atlaskit/primitives/compiled';
|
|
9
9
|
import { VerifiedTeamIcon } from '@atlaskit/people-teams-ui-public/verified-team-icon';
|
|
10
10
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
@@ -32,7 +32,7 @@ export class TeamOption extends React.PureComponent {
|
|
|
32
32
|
key: "name"
|
|
33
33
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
34
34
|
,
|
|
35
|
-
css: textWrapper(this.props.isSelected ?
|
|
35
|
+
css: textWrapper(this.props.isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text, #292A2E)")
|
|
36
36
|
}, jsx(Inline, {
|
|
37
37
|
alignBlock: "center"
|
|
38
38
|
}, jsx(HighlightText, {
|
|
@@ -105,7 +105,7 @@ export class TeamOption extends React.PureComponent {
|
|
|
105
105
|
});
|
|
106
106
|
_defineProperty(this, "getBylineComponent", (isSelected, message) => jsx("span", {
|
|
107
107
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
108
|
-
css: textWrapper(isSelected ?
|
|
108
|
+
css: textWrapper(isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text-subtlest, #6B6E76)"),
|
|
109
109
|
"data-testid": "user-picker-team-secondary-text"
|
|
110
110
|
}, message));
|
|
111
111
|
_defineProperty(this, "renderAvatar", () => {
|
|
@@ -152,7 +152,7 @@ export class TeamOption extends React.PureComponent {
|
|
|
152
152
|
}
|
|
153
153
|
return jsx("span", {
|
|
154
154
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
155
|
-
css: textWrapper(this.props.isSelected ?
|
|
155
|
+
css: textWrapper(this.props.isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text-subtlest, #6B6E76)")
|
|
156
156
|
}, this.props.team.byline);
|
|
157
157
|
});
|
|
158
158
|
}
|
|
@@ -4,7 +4,6 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
4
4
|
* @jsx jsx
|
|
5
5
|
*/
|
|
6
6
|
import { getAppearanceForAppType } from '@atlaskit/avatar';
|
|
7
|
-
import { B400, N800, N200 } from '@atlaskit/theme/colors';
|
|
8
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
9
8
|
import { css, jsx } from '@emotion/react';
|
|
10
9
|
import React from 'react';
|
|
@@ -37,12 +36,12 @@ export class UserOption extends React.PureComponent {
|
|
|
37
36
|
key: "name"
|
|
38
37
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
39
38
|
,
|
|
40
|
-
css: textWrapper(this.props.isSelected ?
|
|
39
|
+
css: textWrapper(this.props.isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text, #292A2E)")
|
|
41
40
|
}, jsx(HighlightText, {
|
|
42
41
|
highlights: highlight && highlight.name
|
|
43
42
|
}, name))];
|
|
44
43
|
if (hasValue(publicName) && name.trim() !== publicName.trim()) {
|
|
45
|
-
const color = this.props.isSelected ?
|
|
44
|
+
const color = this.props.isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text-subtlest, #6B6E76)";
|
|
46
45
|
result.push(jsx(React.Fragment, {
|
|
47
46
|
key: "publicName"
|
|
48
47
|
}, ' ', jsx("span", {
|
|
@@ -57,7 +56,7 @@ export class UserOption extends React.PureComponent {
|
|
|
57
56
|
});
|
|
58
57
|
_defineProperty(this, "renderSecondaryText", () => this.props.user.byline ? jsx("span", {
|
|
59
58
|
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
60
|
-
css: textWrapper(this.props.isSelected ?
|
|
59
|
+
css: textWrapper(this.props.isSelected ? "var(--ds-text-selected, #1868DB)" : "var(--ds-text-subtlest, #6B6E76)")
|
|
61
60
|
}, this.props.user.byline) : undefined);
|
|
62
61
|
_defineProperty(this, "renderAvatar", () => {
|
|
63
62
|
const {
|
|
@@ -77,7 +76,7 @@ export class UserOption extends React.PureComponent {
|
|
|
77
76
|
iconColor: iconColor,
|
|
78
77
|
src: avatarUrl,
|
|
79
78
|
presence: status,
|
|
80
|
-
avatarAppearanceShape:
|
|
79
|
+
avatarAppearanceShape: getAppearanceForAppType(appType)
|
|
81
80
|
});
|
|
82
81
|
}
|
|
83
82
|
// Fallback to original behavior
|
|
@@ -85,7 +84,7 @@ export class UserOption extends React.PureComponent {
|
|
|
85
84
|
appearance: appearance,
|
|
86
85
|
src: avatarUrl,
|
|
87
86
|
presence: status,
|
|
88
|
-
avatarAppearanceShape:
|
|
87
|
+
avatarAppearanceShape: getAppearanceForAppType(appType)
|
|
89
88
|
});
|
|
90
89
|
});
|
|
91
90
|
_defineProperty(this, "getLozengeProps", () => typeof this.props.user.lozenge === 'string' ? {
|
|
@@ -11,6 +11,6 @@ export function GitHubIcon(props) {
|
|
|
11
11
|
fillRule: "evenodd",
|
|
12
12
|
clipRule: "evenodd",
|
|
13
13
|
d: "M11.9778 0C5.3635 0 0 5.45261 0 12.179C0 17.5601 3.432 22.1253 8.19114 23.7357C8.78975 23.8484 9.00952 23.4715 9.00952 23.1498C9.00952 22.8594 8.99841 21.9 8.99326 20.8823C5.66103 21.6191 4.95789 19.4454 4.95789 19.4454C4.41303 18.0376 3.62796 17.6633 3.62796 17.6633C2.54122 16.9074 3.70988 16.923 3.70988 16.923C4.91266 17.0089 5.54598 18.178 5.54598 18.178C6.61428 20.0399 8.34803 19.5016 9.03154 19.1904C9.13904 18.4033 9.44945 17.866 9.792 17.5619C7.13157 17.2539 4.33487 16.2096 4.33487 11.5429C4.33487 10.2133 4.80278 9.12682 5.56899 8.27391C5.44463 7.96716 5.03464 6.72844 5.68502 5.05087C5.68502 5.05087 6.69084 4.72354 8.97976 6.29927C9.9352 6.02942 10.9599 5.89409 11.9778 5.88945C12.9957 5.89409 14.0212 6.02942 14.9784 6.29927C17.2645 4.72354 18.269 5.05087 18.269 5.05087C18.9209 6.72844 18.5107 7.96716 18.3864 8.27391C19.1544 9.12682 19.6191 10.2133 19.6191 11.5429C19.6191 16.2207 16.8171 17.2507 14.1499 17.5522C14.5795 17.9301 14.9623 18.6713 14.9623 19.8076C14.9623 21.4371 14.9484 22.7487 14.9484 23.1498C14.9484 23.4739 15.164 23.8537 15.7712 23.7341C20.5277 22.1219 23.9554 17.5582 23.9554 12.179C23.9554 5.45261 18.5927 0 11.9778 0Z",
|
|
14
|
-
fill: "var(--ds-text-inverse,
|
|
14
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
15
15
|
}));
|
|
16
16
|
}
|
|
@@ -11,21 +11,21 @@ export function GoogleIcon(props) {
|
|
|
11
11
|
fillRule: "evenodd",
|
|
12
12
|
clipRule: "evenodd",
|
|
13
13
|
d: "M8.32062 3.21332L10.014 1.55999C8.97396 0.593331 7.62063 0 6.00062 0C3.65396 0 1.62729 1.34666 0.640625 3.30665L2.58062 4.81331C3.06729 3.36665 4.41396 2.31999 6.00062 2.31999C7.12729 2.31999 7.88729 2.80665 8.32062 3.21332Z",
|
|
14
|
-
fill: "var(--ds-text-inverse,
|
|
14
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
15
15
|
}), /*#__PURE__*/React.createElement("path", {
|
|
16
16
|
fillRule: "evenodd",
|
|
17
17
|
clipRule: "evenodd",
|
|
18
18
|
d: "M11.76 6.13291C11.76 5.63958 11.72 5.27958 11.6333 4.90625H6V7.13291H9.30667C9.24 7.68624 8.88 8.51957 8.08 9.07957L9.97333 10.5462C11.1067 9.49956 11.76 7.95957 11.76 6.13291V6.13291V6.13291Z",
|
|
19
|
-
fill: "var(--ds-text-inverse,
|
|
19
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
20
20
|
}), /*#__PURE__*/React.createElement("path", {
|
|
21
21
|
fillRule: "evenodd",
|
|
22
22
|
clipRule: "evenodd",
|
|
23
23
|
d: "M2.58667 7.18662C2.46 6.81329 2.38667 6.41329 2.38667 5.99996C2.38667 5.58663 2.46 5.18663 2.58 4.8133L0.64 3.30664C0.233333 4.11997 0 5.0333 0 5.99996C0 6.96662 0.233333 7.87995 0.64 8.69328L2.58667 7.18662V7.18662Z",
|
|
24
|
-
fill: "var(--ds-text-inverse,
|
|
24
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
25
25
|
}), /*#__PURE__*/React.createElement("path", {
|
|
26
26
|
fillRule: "evenodd",
|
|
27
27
|
clipRule: "evenodd",
|
|
28
28
|
d: "M6.00079 12.0008C7.62079 12.0008 8.98079 11.4675 9.97413 10.5475L8.08079 9.08083C7.57413 9.43416 6.89413 9.68082 6.00079 9.68082C4.41413 9.68082 3.06746 8.63416 2.58746 7.1875L0.647461 8.69416C1.63413 10.6542 3.65413 12.0008 6.00079 12.0008V12.0008V12.0008Z",
|
|
29
|
-
fill: "var(--ds-text-inverse,
|
|
29
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
30
30
|
}));
|
|
31
31
|
}
|
|
@@ -11,21 +11,21 @@ export function MicrosoftIcon(props) {
|
|
|
11
11
|
clipPath: "url(#clip0)"
|
|
12
12
|
}, /*#__PURE__*/React.createElement("path", {
|
|
13
13
|
d: "M0 0H5.70233V5.7023H0V0Z",
|
|
14
|
-
fill: "var(--ds-text-inverse,
|
|
14
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
15
15
|
}), /*#__PURE__*/React.createElement("path", {
|
|
16
16
|
d: "M6.29785 0H12.0002V5.7023H6.29785V0Z",
|
|
17
|
-
fill: "var(--ds-text-inverse,
|
|
17
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
18
18
|
}), /*#__PURE__*/React.createElement("path", {
|
|
19
19
|
d: "M0 6.29688H5.70233V11.9992H0V6.29688Z",
|
|
20
|
-
fill: "var(--ds-text-inverse,
|
|
20
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
21
21
|
}), /*#__PURE__*/React.createElement("path", {
|
|
22
22
|
d: "M6.29785 6.29688H12.0002V11.9992H6.29785V6.29688Z",
|
|
23
|
-
fill: "var(--ds-text-inverse,
|
|
23
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
24
24
|
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
25
25
|
id: "clip0"
|
|
26
26
|
}, /*#__PURE__*/React.createElement("rect", {
|
|
27
27
|
width: "12",
|
|
28
28
|
height: "11.9999",
|
|
29
|
-
fill: "var(--ds-text-inverse,
|
|
29
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
30
30
|
}))));
|
|
31
31
|
}
|
|
@@ -11,33 +11,33 @@ export function SlackIcon(props) {
|
|
|
11
11
|
clipPath: "url(#clip0)"
|
|
12
12
|
}, /*#__PURE__*/React.createElement("path", {
|
|
13
13
|
d: "M2.51653 7.5688C2.51653 8.26133 1.9508 8.82706 1.25826 8.82706C0.565731 8.82706 0 8.26133 0 7.5688C0 6.87627 0.565731 6.31055 1.25826 6.31055H2.51653V7.5688Z",
|
|
14
|
-
fill: "var(--ds-text-inverse,
|
|
14
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
15
15
|
}), /*#__PURE__*/React.createElement("path", {
|
|
16
16
|
d: "M3.15039 7.5688C3.15039 6.87627 3.71612 6.31055 4.40865 6.31055C5.10119 6.31055 5.66692 6.87627 5.66692 7.5688V10.7193C5.66692 11.4119 5.10119 11.9776 4.40865 11.9776C3.71612 11.9776 3.15039 11.4119 3.15039 10.7193V7.5688Z",
|
|
17
|
-
fill: "var(--ds-text-inverse,
|
|
17
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
18
18
|
}), /*#__PURE__*/React.createElement("path", {
|
|
19
19
|
d: "M4.40865 2.51651C3.71612 2.51651 3.15039 1.95079 3.15039 1.25826C3.15039 0.565728 3.71612 0 4.40865 0C5.10119 0 5.66692 0.565728 5.66692 1.25826V2.51651H4.40865Z",
|
|
20
|
-
fill: "var(--ds-text-inverse,
|
|
20
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
21
21
|
}), /*#__PURE__*/React.createElement("path", {
|
|
22
22
|
d: "M4.4088 3.15039C5.10133 3.15039 5.66706 3.71612 5.66706 4.40865C5.66706 5.10118 5.10133 5.6669 4.4088 5.6669H1.25826C0.565731 5.6669 0 5.10118 0 4.40865C0 3.71612 0.565731 3.15039 1.25826 3.15039H4.4088Z",
|
|
23
|
-
fill: "var(--ds-text-inverse,
|
|
23
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
24
24
|
}), /*#__PURE__*/React.createElement("path", {
|
|
25
25
|
d: "M9.46094 4.40865C9.46094 3.71612 10.0267 3.15039 10.7192 3.15039C11.4117 3.15039 11.9775 3.71612 11.9775 4.40865C11.9775 5.10118 11.4117 5.6669 10.7192 5.6669H9.46094V4.40865Z",
|
|
26
|
-
fill: "var(--ds-text-inverse,
|
|
26
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
27
27
|
}), /*#__PURE__*/React.createElement("path", {
|
|
28
28
|
d: "M8.8261 4.40878C8.8261 5.10131 8.26036 5.66704 7.56783 5.66704C6.8753 5.66704 6.30957 5.10131 6.30957 4.40878V1.25826C6.30957 0.565728 6.8753 0 7.56783 0C8.26036 0 8.8261 0.565728 8.8261 1.25826V4.40878Z",
|
|
29
|
-
fill: "var(--ds-text-inverse,
|
|
29
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
30
30
|
}), /*#__PURE__*/React.createElement("path", {
|
|
31
31
|
d: "M7.56881 9.46094C8.26134 9.46094 8.82707 10.0267 8.82707 10.7192C8.82707 11.4117 8.26134 11.9775 7.56881 11.9775C6.87628 11.9775 6.31055 11.4117 6.31055 10.7192V9.46094H7.56881Z",
|
|
32
|
-
fill: "var(--ds-text-inverse,
|
|
32
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
33
33
|
}), /*#__PURE__*/React.createElement("path", {
|
|
34
34
|
d: "M7.56881 8.82706C6.87628 8.82706 6.31055 8.26133 6.31055 7.5688C6.31055 6.87627 6.87628 6.31055 7.56881 6.31055H10.7193C11.4119 6.31055 11.9776 6.87627 11.9776 7.5688C11.9776 8.26133 11.4119 8.82706 10.7193 8.82706H7.56881Z",
|
|
35
|
-
fill: "var(--ds-text-inverse,
|
|
35
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
36
36
|
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
37
37
|
id: "clip0"
|
|
38
38
|
}, /*#__PURE__*/React.createElement("rect", {
|
|
39
39
|
width: "12",
|
|
40
40
|
height: "11.9999",
|
|
41
|
-
fill: "var(--ds-text-inverse,
|
|
41
|
+
fill: "var(--ds-text-inverse, #FFFFFF)"
|
|
42
42
|
}))));
|
|
43
43
|
}
|