@transferwise/components 46.80.0 → 46.82.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/build/avatar/Avatar.js +3 -0
- package/build/avatar/Avatar.js.map +1 -1
- package/build/avatar/Avatar.mjs +3 -0
- package/build/avatar/Avatar.mjs.map +1 -1
- package/build/avatarView/AvatarView.js +175 -0
- package/build/avatarView/AvatarView.js.map +1 -0
- package/build/avatarView/AvatarView.mjs +173 -0
- package/build/avatarView/AvatarView.mjs.map +1 -0
- package/build/avatarView/NotificationDot.js +59 -0
- package/build/avatarView/NotificationDot.js.map +1 -0
- package/build/avatarView/NotificationDot.mjs +57 -0
- package/build/avatarView/NotificationDot.mjs.map +1 -0
- package/build/avatarWrapper/AvatarWrapper.js +10 -4
- package/build/avatarWrapper/AvatarWrapper.js.map +1 -1
- package/build/avatarWrapper/AvatarWrapper.mjs +10 -4
- package/build/avatarWrapper/AvatarWrapper.mjs.map +1 -1
- package/build/badge/Badge.js +16 -4
- package/build/badge/Badge.js.map +1 -1
- package/build/badge/Badge.mjs +15 -3
- package/build/badge/Badge.mjs.map +1 -1
- package/build/badge/BadgeAssets.js +60 -0
- package/build/badge/BadgeAssets.js.map +1 -0
- package/build/badge/BadgeAssets.mjs +58 -0
- package/build/badge/BadgeAssets.mjs.map +1 -0
- package/build/common/circle/Circle.js +19 -1
- package/build/common/circle/Circle.js.map +1 -1
- package/build/common/circle/Circle.mjs +19 -1
- package/build/common/circle/Circle.mjs.map +1 -1
- package/build/i18n/en.json +5 -0
- package/build/i18n/en.json.js +5 -0
- package/build/i18n/en.json.js.map +1 -1
- package/build/i18n/en.json.mjs +5 -0
- package/build/i18n/en.json.mjs.map +1 -1
- package/build/i18n/zh-HK.json +5 -0
- package/build/i18n/zh-HK.json.js +5 -0
- package/build/i18n/zh-HK.json.js.map +1 -1
- package/build/i18n/zh-HK.json.mjs +5 -0
- package/build/i18n/zh-HK.json.mjs.map +1 -1
- package/build/index.js +18 -13
- package/build/index.js.map +1 -1
- package/build/index.mjs +10 -7
- package/build/index.mjs.map +1 -1
- package/build/main.css +348 -5
- package/build/money/Money.js +5 -2
- package/build/money/Money.js.map +1 -1
- package/build/money/Money.mjs +5 -2
- package/build/money/Money.mjs.map +1 -1
- package/build/styles/avatarView/AvatarView.css +36 -0
- package/build/styles/avatarView/NotificationDot.css +20 -0
- package/build/styles/badge/Badge.css +6 -5
- package/build/styles/common/circle/Circle.css +32 -0
- package/build/styles/main.css +348 -5
- package/build/styles/table/Table.css +274 -0
- package/build/types/avatar/Avatar.d.ts +3 -0
- package/build/types/avatar/Avatar.d.ts.map +1 -1
- package/build/types/avatarView/AvatarView.d.ts +26 -0
- package/build/types/avatarView/AvatarView.d.ts.map +1 -0
- package/build/types/avatarView/NotificationDot.d.ts +8 -0
- package/build/types/avatarView/NotificationDot.d.ts.map +1 -0
- package/build/types/avatarView/index.d.ts +3 -0
- package/build/types/avatarView/index.d.ts.map +1 -0
- package/build/types/avatarWrapper/AvatarWrapper.d.ts +3 -0
- package/build/types/avatarWrapper/AvatarWrapper.d.ts.map +1 -1
- package/build/types/badge/Badge.d.ts +9 -4
- package/build/types/badge/Badge.d.ts.map +1 -1
- package/build/types/badge/BadgeAssets.d.ts +14 -0
- package/build/types/badge/BadgeAssets.d.ts.map +1 -0
- package/build/types/badge/index.d.ts +2 -0
- package/build/types/badge/index.d.ts.map +1 -1
- package/build/types/common/circle/Circle.d.ts +2 -0
- package/build/types/common/circle/Circle.d.ts.map +1 -1
- package/build/types/index.d.ts +3 -1
- package/build/types/index.d.ts.map +1 -1
- package/build/types/money/Money.d.ts +2 -1
- package/build/types/money/Money.d.ts.map +1 -1
- package/build/types/table/Table.d.ts +23 -0
- package/build/types/table/Table.d.ts.map +1 -0
- package/build/types/table/Table.messages.d.ts +24 -0
- package/build/types/table/Table.messages.d.ts.map +1 -0
- package/build/types/table/TableCell.d.ts +40 -0
- package/build/types/table/TableCell.d.ts.map +1 -0
- package/build/types/table/TableHeader.d.ts +13 -0
- package/build/types/table/TableHeader.d.ts.map +1 -0
- package/build/types/table/TableRow.d.ts +17 -0
- package/build/types/table/TableRow.d.ts.map +1 -0
- package/build/types/table/TableStatusText.d.ts +10 -0
- package/build/types/table/TableStatusText.d.ts.map +1 -0
- package/build/types/table/index.d.ts +6 -0
- package/build/types/table/index.d.ts.map +1 -0
- package/build/types/test-utils/index.d.ts +10 -0
- package/build/types/test-utils/index.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/avatar/Avatar.tsx +3 -0
- package/src/avatarView/AvatarView.css +36 -0
- package/src/avatarView/AvatarView.less +27 -0
- package/src/avatarView/AvatarView.story.tsx +467 -0
- package/src/avatarView/AvatarView.tsx +171 -0
- package/src/avatarView/NotificationDot.css +20 -0
- package/src/avatarView/NotificationDot.less +24 -0
- package/src/avatarView/NotificationDot.tsx +35 -0
- package/src/avatarView/index.ts +2 -0
- package/src/avatarWrapper/AvatarWrapper.story.tsx +19 -0
- package/src/avatarWrapper/AvatarWrapper.tsx +3 -0
- package/src/badge/Badge.css +6 -5
- package/src/badge/Badge.less +4 -3
- package/src/badge/Badge.tsx +20 -6
- package/src/badge/BadgeAssets.tsx +61 -0
- package/src/badge/index.ts +3 -0
- package/src/circularButton/CircularButton.spec.tsx +0 -36
- package/src/common/circle/Circle.css +32 -0
- package/src/common/circle/Circle.less +35 -0
- package/src/common/circle/Circle.tsx +24 -1
- package/src/flowNavigation/FlowNavigation.story.tsx +19 -52
- package/src/i18n/en.json +5 -0
- package/src/i18n/zh-HK.json +5 -0
- package/src/index.ts +3 -0
- package/src/listItem/ListItem.story.tsx +5 -47
- package/src/main.css +348 -5
- package/src/main.less +2 -0
- package/src/money/Money.tsx +9 -2
- package/src/overlayHeader/OverlayHeader.story.tsx +6 -14
- package/src/table/Table.css +274 -0
- package/src/table/Table.less +334 -0
- package/src/table/Table.messages.ts +24 -0
- package/src/table/Table.spec.tsx +82 -0
- package/src/table/Table.story.tsx +356 -0
- package/src/table/Table.tsx +167 -0
- package/src/table/TableCell.spec.tsx +298 -0
- package/src/table/TableCell.tsx +149 -0
- package/src/table/TableHeader.spec.tsx +50 -0
- package/src/table/TableHeader.tsx +74 -0
- package/src/table/TableRow.spec.tsx +112 -0
- package/src/table/TableRow.tsx +70 -0
- package/src/table/TableStatusText.spec.tsx +53 -0
- package/src/table/TableStatusText.tsx +40 -0
- package/src/table/index.ts +11 -0
- package/src/circularButton/__snapshots__/CircularButton.spec.tsx.snap +0 -381
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { boolean, select, text } from '@storybook/addon-knobs';
|
|
2
|
-
import { Person as ProfileIcon, Briefcase as BriefcaseIcon } from '@transferwise/icons';
|
|
3
2
|
import { useState } from 'react';
|
|
4
3
|
|
|
5
|
-
import
|
|
6
|
-
import AvatarWrapper from '../avatarWrapper';
|
|
4
|
+
import AvatarView from '../avatarView';
|
|
7
5
|
import Body from '../body';
|
|
8
6
|
import Button from '../button';
|
|
9
|
-
import { ProfileType,
|
|
7
|
+
import { ProfileType, Typography } from '../common';
|
|
10
8
|
import Logo from '../logo';
|
|
11
9
|
import OverlayHeader from '../overlayHeader';
|
|
12
10
|
|
|
@@ -19,43 +17,24 @@ export default {
|
|
|
19
17
|
component: FlowNavigation,
|
|
20
18
|
title: 'Navigation/FlowNavigation',
|
|
21
19
|
};
|
|
22
|
-
const avatarProfiles = {
|
|
23
|
-
'': null,
|
|
24
|
-
Business: <BriefcaseIcon />,
|
|
25
|
-
Profile: <ProfileIcon />,
|
|
26
|
-
};
|
|
27
|
-
type ProfileTypeKeys = keyof typeof ProfileType;
|
|
28
|
-
|
|
29
|
-
const getAvatarProfile = (showAvatar: string) =>
|
|
30
|
-
showAvatar in avatarProfiles ? avatarProfiles[showAvatar as keyof typeof avatarProfiles] : null;
|
|
31
20
|
|
|
32
21
|
export const Variants = () => {
|
|
33
22
|
const [activeStep, setActiveStep] = useState(2);
|
|
34
23
|
const [closed, setClosed] = useState(false);
|
|
35
|
-
const
|
|
24
|
+
const profileType = select(
|
|
25
|
+
'avatar',
|
|
26
|
+
[ProfileType.PERSONAL, ProfileType.BUSINESS],
|
|
27
|
+
ProfileType.PERSONAL,
|
|
28
|
+
);
|
|
36
29
|
const showCloseButton = boolean('show closeButton', true);
|
|
37
30
|
const showMobileBackButton = boolean('show mobile backButton', true);
|
|
38
31
|
const done = boolean('done', false);
|
|
39
|
-
const
|
|
40
|
-
'profileType',
|
|
41
|
-
Object.keys(ProfileType) as ProfileTypeKeys[],
|
|
42
|
-
undefined,
|
|
43
|
-
);
|
|
44
|
-
const avatarURL = text(
|
|
45
|
-
'avatarURL',
|
|
46
|
-
'https://wise.com/web-art/assets/illustrations/heart-small@2x.webp',
|
|
47
|
-
);
|
|
32
|
+
const avatarURL = text('avatarURL', '../tapestry-01.png');
|
|
48
33
|
|
|
49
34
|
return !closed ? (
|
|
50
35
|
<>
|
|
51
36
|
<FlowNavigation
|
|
52
|
-
avatar={
|
|
53
|
-
!showAvatar ? null : (
|
|
54
|
-
<Avatar type={AvatarType.ICON} size={Size.MEDIUM}>
|
|
55
|
-
{getAvatarProfile(showAvatar)}
|
|
56
|
-
</Avatar>
|
|
57
|
-
)
|
|
58
|
-
}
|
|
37
|
+
avatar={!profileType ? null : <AvatarView profileType={profileType} />}
|
|
59
38
|
logo={<Logo />}
|
|
60
39
|
activeStep={activeStep}
|
|
61
40
|
done={done}
|
|
@@ -132,7 +111,7 @@ export const Variants = () => {
|
|
|
132
111
|
|
|
133
112
|
<FlowNavigation
|
|
134
113
|
done={done}
|
|
135
|
-
avatar={<
|
|
114
|
+
avatar={<AvatarView imgSrc={avatarURL} profileType={profileType} />}
|
|
136
115
|
activeStep={activeStep}
|
|
137
116
|
steps={[
|
|
138
117
|
{
|
|
@@ -178,7 +157,7 @@ export const Variants = () => {
|
|
|
178
157
|
{/* Instance of always `done` FlowNav for visual testing */}
|
|
179
158
|
<FlowNavigation
|
|
180
159
|
done
|
|
181
|
-
avatar={<
|
|
160
|
+
avatar={<AvatarView imgSrc={avatarURL} profileType={profileType} />}
|
|
182
161
|
activeStep={activeStep}
|
|
183
162
|
steps={[
|
|
184
163
|
{ label: 'Recipient', hoverLabel: 'Daniele Tomboro', onClick: () => setActiveStep(0) },
|
|
@@ -240,11 +219,7 @@ export const SendFlow = () => {
|
|
|
240
219
|
return (
|
|
241
220
|
<>
|
|
242
221
|
<FlowNavigation
|
|
243
|
-
avatar={
|
|
244
|
-
<Avatar type={AvatarType.ICON} size={Size.MEDIUM}>
|
|
245
|
-
<ProfileIcon />
|
|
246
|
-
</Avatar>
|
|
247
|
-
}
|
|
222
|
+
avatar={<AvatarView />}
|
|
248
223
|
logo={<Logo />}
|
|
249
224
|
activeStep={activeStep}
|
|
250
225
|
steps={steps}
|
|
@@ -272,7 +247,11 @@ export const SendFlow = () => {
|
|
|
272
247
|
export const WithOverlayHeaderComparison = () => {
|
|
273
248
|
const [activeStep, setActiveStep] = useState(4);
|
|
274
249
|
const [closed, setClosed] = useState(false);
|
|
275
|
-
const
|
|
250
|
+
const profileType = select(
|
|
251
|
+
'avatar',
|
|
252
|
+
[ProfileType.PERSONAL, ProfileType.BUSINESS],
|
|
253
|
+
ProfileType.PERSONAL,
|
|
254
|
+
);
|
|
276
255
|
const showCloseButton = boolean('show closeButton', true);
|
|
277
256
|
const showMobileBackButton = boolean('show mobile backButton', true);
|
|
278
257
|
const done = boolean('done', false);
|
|
@@ -281,13 +260,7 @@ export const WithOverlayHeaderComparison = () => {
|
|
|
281
260
|
<>
|
|
282
261
|
<div style={{ border: '1px solid #e8e8e8' }}>
|
|
283
262
|
<FlowNavigation
|
|
284
|
-
avatar={
|
|
285
|
-
showAvatar ? (
|
|
286
|
-
<Avatar type={AvatarType.ICON} size={Size.MEDIUM}>
|
|
287
|
-
{getAvatarProfile(showAvatar)}
|
|
288
|
-
</Avatar>
|
|
289
|
-
) : null
|
|
290
|
-
}
|
|
263
|
+
avatar={profileType ? <AvatarView profileType={profileType} /> : null}
|
|
291
264
|
activeStep={activeStep}
|
|
292
265
|
done={done}
|
|
293
266
|
steps={[]}
|
|
@@ -301,13 +274,7 @@ export const WithOverlayHeaderComparison = () => {
|
|
|
301
274
|
</div>
|
|
302
275
|
<div style={{ border: '1px solid #e8e8e8' }}>
|
|
303
276
|
<OverlayHeader
|
|
304
|
-
avatar={
|
|
305
|
-
showAvatar ? (
|
|
306
|
-
<Avatar type={AvatarType.ICON} size={Size.MEDIUM}>
|
|
307
|
-
{getAvatarProfile(showAvatar)}
|
|
308
|
-
</Avatar>
|
|
309
|
-
) : null
|
|
310
|
-
}
|
|
277
|
+
avatar={profileType ? <AvatarView profileType={profileType} /> : null}
|
|
311
278
|
onClose={showCloseButton ? () => setClosed(true) : undefined}
|
|
312
279
|
/>
|
|
313
280
|
</div>
|
package/src/i18n/en.json
CHANGED
|
@@ -35,6 +35,11 @@
|
|
|
35
35
|
"neptune.Summary.statusDone": "Item done",
|
|
36
36
|
"neptune.Summary.statusNotDone": "Item to do",
|
|
37
37
|
"neptune.Summary.statusPending": "Item pending",
|
|
38
|
+
"neptune.Table.actionHeader": "Action",
|
|
39
|
+
"neptune.Table.emptyData": "No results found",
|
|
40
|
+
"neptune.Table.loaded": "Table data has loaded",
|
|
41
|
+
"neptune.Table.loading": "Table data is loading",
|
|
42
|
+
"neptune.Table.refreshPage": "Refresh page",
|
|
38
43
|
"neptune.Upload.csButtonText": "Upload another file?",
|
|
39
44
|
"neptune.Upload.csFailureText": "Upload failed. Please, try again",
|
|
40
45
|
"neptune.Upload.csSuccessText": "Upload complete!",
|
package/src/i18n/zh-HK.json
CHANGED
|
@@ -27,6 +27,11 @@
|
|
|
27
27
|
"neptune.SelectInput.noResultsFound": "找不到任何結果",
|
|
28
28
|
"neptune.SelectOption.action.label": "選擇",
|
|
29
29
|
"neptune.SelectOption.selected.action.label": "更改已選選項",
|
|
30
|
+
"neptune.StatusIcon.iconLabel.error": "錯誤:",
|
|
31
|
+
"neptune.StatusIcon.iconLabel.information": "資訊:",
|
|
32
|
+
"neptune.StatusIcon.iconLabel.pending": "處理中:",
|
|
33
|
+
"neptune.StatusIcon.iconLabel.success": "成功:",
|
|
34
|
+
"neptune.StatusIcon.iconLabel.warning": "警告:",
|
|
30
35
|
"neptune.Summary.statusDone": "已完成事項",
|
|
31
36
|
"neptune.Summary.statusNotDone": "未完成事項",
|
|
32
37
|
"neptune.Summary.statusPending": "待處理事項",
|
package/src/index.ts
CHANGED
|
@@ -8,6 +8,7 @@ export type { ActionOptionProps } from './actionOption';
|
|
|
8
8
|
export type { SelectOptionProps, SelectOptionValue, SelectOptiopsSection } from './selectOption';
|
|
9
9
|
export type { AlertAction, AlertProps, AlertType } from './alert';
|
|
10
10
|
export type { AvatarProps } from './avatar';
|
|
11
|
+
export type { AvatarViewProps } from './avatarView';
|
|
11
12
|
export type { BadgeProps } from './badge';
|
|
12
13
|
export type { CardProps } from './card';
|
|
13
14
|
export type { CarouselProps } from './carousel';
|
|
@@ -103,6 +104,7 @@ export { default as ActionOption } from './actionOption';
|
|
|
103
104
|
export { default as SelectOption } from './selectOption';
|
|
104
105
|
export { default as Alert } from './alert';
|
|
105
106
|
export { default as Avatar } from './avatar';
|
|
107
|
+
export { default as AvatarView } from './avatarView';
|
|
106
108
|
export { default as AvatarWrapper } from './avatarWrapper';
|
|
107
109
|
export { default as Badge } from './badge';
|
|
108
110
|
export { default as Body } from './body';
|
|
@@ -244,6 +246,7 @@ export {
|
|
|
244
246
|
getLangFromLocale,
|
|
245
247
|
isBrowser,
|
|
246
248
|
isServerSide,
|
|
249
|
+
getBrandColorFromSeed,
|
|
247
250
|
} from './common';
|
|
248
251
|
|
|
249
252
|
/**
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/* eslint-disable react/jsx-child-element-spacing */
|
|
2
2
|
|
|
3
3
|
import { action } from '@storybook/addon-actions';
|
|
4
|
-
import { Documents } from '@transferwise/icons';
|
|
4
|
+
import { Documents, FastFlag } from '@transferwise/icons';
|
|
5
5
|
import { ComponentProps } from 'react';
|
|
6
6
|
|
|
7
7
|
import ActionButton from '../actionButton/ActionButton';
|
|
8
|
-
import
|
|
9
|
-
import Badge from '../badge';
|
|
8
|
+
import AvatarView from '../avatarView';
|
|
10
9
|
import Info from '../info';
|
|
11
10
|
import Title from '../title/Title';
|
|
12
|
-
|
|
13
11
|
import ListItem, { List } from '.';
|
|
14
12
|
|
|
15
13
|
export default {
|
|
@@ -40,17 +38,7 @@ export const Variants = () => {
|
|
|
40
38
|
<div className="m-t-4 m-b-2">
|
|
41
39
|
<Title type="title-body">With Icon Avatar</Title>
|
|
42
40
|
<List>
|
|
43
|
-
<Template
|
|
44
|
-
media={
|
|
45
|
-
<Avatar>
|
|
46
|
-
<img
|
|
47
|
-
style={{ width: 32, height: 32 }}
|
|
48
|
-
src="https://wise.com/public-resources/assets/balances/savings-emoji/google/✈️.png"
|
|
49
|
-
alt=""
|
|
50
|
-
/>
|
|
51
|
-
</Avatar>
|
|
52
|
-
}
|
|
53
|
-
/>
|
|
41
|
+
<Template media={<AvatarView imgSrc="../tapestry-01.png" />} />
|
|
54
42
|
</List>
|
|
55
43
|
</div>
|
|
56
44
|
<div className="m-t-4 m-b-2">
|
|
@@ -59,22 +47,7 @@ export const Variants = () => {
|
|
|
59
47
|
<Template
|
|
60
48
|
title="Sandra Pepper"
|
|
61
49
|
value="Personal account"
|
|
62
|
-
media={
|
|
63
|
-
<Badge
|
|
64
|
-
badge={
|
|
65
|
-
<img
|
|
66
|
-
src="https://wise.com/public-resources/assets/brand/fast_flag_badge_personal.svg"
|
|
67
|
-
alt=""
|
|
68
|
-
height="24px"
|
|
69
|
-
width="24px"
|
|
70
|
-
/>
|
|
71
|
-
}
|
|
72
|
-
>
|
|
73
|
-
<Avatar type="initials" size="md">
|
|
74
|
-
<span aria-hidden>SP</span>
|
|
75
|
-
</Avatar>
|
|
76
|
-
</Badge>
|
|
77
|
-
}
|
|
50
|
+
media={<AvatarView profileName="Super Pepa" badge={{ icon: <FastFlag /> }} />}
|
|
78
51
|
/>
|
|
79
52
|
</List>
|
|
80
53
|
</div>
|
|
@@ -84,22 +57,7 @@ export const Variants = () => {
|
|
|
84
57
|
<Template
|
|
85
58
|
title="Account holder"
|
|
86
59
|
value="Sandra Pepper"
|
|
87
|
-
media={
|
|
88
|
-
<Badge
|
|
89
|
-
badge={
|
|
90
|
-
<img
|
|
91
|
-
src="https://wise.com/public-resources/assets/brand/fast_flag_badge_personal.svg"
|
|
92
|
-
alt=""
|
|
93
|
-
height="24px"
|
|
94
|
-
width="24px"
|
|
95
|
-
/>
|
|
96
|
-
}
|
|
97
|
-
>
|
|
98
|
-
<Avatar type="initials" size="md">
|
|
99
|
-
<span aria-hidden>SP</span>
|
|
100
|
-
</Avatar>
|
|
101
|
-
</Badge>
|
|
102
|
-
}
|
|
60
|
+
media={<AvatarView profileName="Super Pepa" badge={{ icon: <FastFlag /> }} />}
|
|
103
61
|
action={<ActionButton>Share details</ActionButton>}
|
|
104
62
|
/>
|
|
105
63
|
</List>
|
package/src/main.css
CHANGED
|
@@ -469,6 +469,42 @@ div.critical-comms .critical-comms-body {
|
|
|
469
469
|
.np-theme-personal .tw-avatar--outlined:not(.disabled):not(:disabled):hover {
|
|
470
470
|
border-color: var(--color-interactive-primary-hover);
|
|
471
471
|
}
|
|
472
|
+
.np-notification-dot {
|
|
473
|
+
--np-notification-dot-size: 14px;
|
|
474
|
+
position: relative;
|
|
475
|
+
display: inline-block;
|
|
476
|
+
}
|
|
477
|
+
.np-notification-dot-mask {
|
|
478
|
+
-webkit-mask-image: radial-gradient(circle at bottom calc(100% - (var(--np-notification-dot-size) / 2)) left calc(100% - (var(--np-notification-dot-size) / 2)), transparent 0, transparent calc(var(--np-notification-dot-size) / 2 + var(--np-notification-dot-offset)), black 0);
|
|
479
|
+
mask-image: radial-gradient(circle at bottom calc(100% - (var(--np-notification-dot-size) / 2)) left calc(100% - (var(--np-notification-dot-size) / 2)), transparent 0, transparent calc(var(--np-notification-dot-size) / 2 + var(--np-notification-dot-offset)), black 0);
|
|
480
|
+
-webkit-mask-image: radial-gradient(circle at bottom calc(100% - calc(var(--np-notification-dot-size) / 2)) left calc(100% - calc(var(--np-notification-dot-size) / 2)), transparent 0, transparent calc(var(--np-notification-dot-size) / 2 + var(--np-notification-dot-offset)), black 0);
|
|
481
|
+
mask-image: radial-gradient(circle at bottom calc(100% - calc(var(--np-notification-dot-size) / 2)) left calc(100% - calc(var(--np-notification-dot-size) / 2)), transparent 0, transparent calc(var(--np-notification-dot-size) / 2 + var(--np-notification-dot-offset)), black 0);
|
|
482
|
+
}
|
|
483
|
+
.np-notification-dot-badge {
|
|
484
|
+
position: absolute;
|
|
485
|
+
width: var(--np-notification-dot-size);
|
|
486
|
+
height: var(--np-notification-dot-size);
|
|
487
|
+
background-color: var(--color-sentiment-negative);
|
|
488
|
+
border-radius: 9999px;
|
|
489
|
+
border-radius: var(--radius-full);
|
|
490
|
+
right: 0;
|
|
491
|
+
}
|
|
492
|
+
.np-avatar-view .np-avatar-view-content {
|
|
493
|
+
color: var(--color-interactive-primary);
|
|
494
|
+
}
|
|
495
|
+
.np-avatar-view-interactive {
|
|
496
|
+
cursor: pointer;
|
|
497
|
+
}
|
|
498
|
+
.np-avatar-view-interactive .np-circle {
|
|
499
|
+
background-color: rgba(134,167,189,0.10196);
|
|
500
|
+
background-color: var(--color-background-neutral);
|
|
501
|
+
}
|
|
502
|
+
.np-avatar-view-non-interactive .np-circle {
|
|
503
|
+
background-color: transparent;
|
|
504
|
+
}
|
|
505
|
+
.np-avatar-view-non-interactive .np-avatar-view-content .wds-flag {
|
|
506
|
+
box-shadow: none;
|
|
507
|
+
}
|
|
472
508
|
.tw-badge {
|
|
473
509
|
position: relative;
|
|
474
510
|
display: inline-block;
|
|
@@ -476,6 +512,7 @@ div.critical-comms .critical-comms-body {
|
|
|
476
512
|
--badge-mask: 2px;
|
|
477
513
|
--badge-mask-offset: calc(var(--badge-size) / 2);
|
|
478
514
|
--badge-border-color: rgba(255, 255, 255, 0.08);
|
|
515
|
+
--badge-content-position: 0px;
|
|
479
516
|
}
|
|
480
517
|
.tw-badge.tw-badge-lg {
|
|
481
518
|
--badge-size: 24px;
|
|
@@ -485,8 +522,8 @@ div.critical-comms .critical-comms-body {
|
|
|
485
522
|
--badge-border-color: rgba(0, 0, 0, 0.08);
|
|
486
523
|
}
|
|
487
524
|
.tw-badge > .tw-badge__children {
|
|
488
|
-
-webkit-mask-image: radial-gradient(circle at top calc(100% - var(--badge-mask-offset)) left calc(100% - var(--badge-mask-offset)), transparent 0, transparent calc(var(--badge-size) / 2 + var(--badge-mask)), black calc(var(--badge-size) / 2 + var(--badge-mask) + 0.5px));
|
|
489
|
-
mask-image: radial-gradient(circle at top calc(100% - var(--badge-mask-offset)) left calc(100% - var(--badge-mask-offset)), transparent 0, transparent calc(var(--badge-size) / 2 + var(--badge-mask)), black calc(var(--badge-size) / 2 + var(--badge-mask) + 0.5px));
|
|
525
|
+
-webkit-mask-image: radial-gradient(circle at top calc(100% - var(--badge-mask-offset) - var(--badge-content-position)) left calc(100% - var(--badge-mask-offset) - var(--badge-content-position)), transparent 0, transparent calc(var(--badge-size) / 2 + var(--badge-mask)), black calc(var(--badge-size) / 2 + var(--badge-mask) + 0.5px));
|
|
526
|
+
mask-image: radial-gradient(circle at top calc(100% - var(--badge-mask-offset) - var(--badge-content-position)) left calc(100% - var(--badge-mask-offset) - var(--badge-content-position)), transparent 0, transparent calc(var(--badge-size) / 2 + var(--badge-mask)), black calc(var(--badge-size) / 2 + var(--badge-mask) + 0.5px));
|
|
490
527
|
}
|
|
491
528
|
[dir="rtl"] .tw-badge > .tw-badge__children {
|
|
492
529
|
-webkit-mask-image: radial-gradient(circle at top calc(100% - var(--badge-mask-offset)) right calc(100% - var(--badge-mask-offset)), transparent 0, transparent calc(var(--badge-size) / 2 + var(--badge-mask)), black calc(var(--badge-size) / 2 + var(--badge-mask) + 0.5px));
|
|
@@ -496,8 +533,8 @@ div.critical-comms .critical-comms-body {
|
|
|
496
533
|
position: absolute;
|
|
497
534
|
width: var(--badge-size);
|
|
498
535
|
height: var(--badge-size);
|
|
499
|
-
bottom:
|
|
500
|
-
right:
|
|
536
|
+
bottom: var(--badge-content-position);
|
|
537
|
+
right: var(--badge-content-position);
|
|
501
538
|
box-sizing: border-box;
|
|
502
539
|
border-radius: 50%;
|
|
503
540
|
text-align: center;
|
|
@@ -510,7 +547,7 @@ div.critical-comms .critical-comms-body {
|
|
|
510
547
|
user-select: none;
|
|
511
548
|
}
|
|
512
549
|
[dir="rtl"] .tw-badge > .tw-badge__content {
|
|
513
|
-
left:
|
|
550
|
+
left: var(--badge-content-position);
|
|
514
551
|
right: auto;
|
|
515
552
|
right: initial;
|
|
516
553
|
}
|
|
@@ -1211,11 +1248,43 @@ div.critical-comms .critical-comms-body {
|
|
|
1211
1248
|
width: var(--circle-size);
|
|
1212
1249
|
height: var(--circle-size);
|
|
1213
1250
|
flex-shrink: 0;
|
|
1251
|
+
--circle-border-color: var(--color-border-neutral);
|
|
1252
|
+
--circle-border-width: 1px;
|
|
1253
|
+
font-size: var(--circle-font-size);
|
|
1254
|
+
font-weight: 600;
|
|
1255
|
+
font-weight: var(--font-weight-semi-bold);
|
|
1256
|
+
line-height: 1;
|
|
1257
|
+
}
|
|
1258
|
+
.np-circle .np-display {
|
|
1259
|
+
font-size: var(--circle-font-size);
|
|
1214
1260
|
}
|
|
1215
1261
|
.np-circle .tw-icon > svg {
|
|
1216
1262
|
height: var(--circle-icon-size);
|
|
1217
1263
|
width: var(--circle-icon-size);
|
|
1218
1264
|
}
|
|
1265
|
+
.np-circle img,
|
|
1266
|
+
.np-circle .wds-flag {
|
|
1267
|
+
border-radius: 9999px;
|
|
1268
|
+
border-radius: var(--radius-full);
|
|
1269
|
+
width: 100%;
|
|
1270
|
+
height: 100%;
|
|
1271
|
+
-o-object-fit: cover;
|
|
1272
|
+
object-fit: cover;
|
|
1273
|
+
}
|
|
1274
|
+
.np-circle-border {
|
|
1275
|
+
position: relative;
|
|
1276
|
+
}
|
|
1277
|
+
.np-circle-border::after {
|
|
1278
|
+
content: "";
|
|
1279
|
+
position: absolute;
|
|
1280
|
+
top: 0;
|
|
1281
|
+
left: 0;
|
|
1282
|
+
width: 100%;
|
|
1283
|
+
height: 100%;
|
|
1284
|
+
border-radius: 9999px;
|
|
1285
|
+
border-radius: var(--radius-full);
|
|
1286
|
+
box-shadow: inset 0 0 0 var(--circle-border-width) var(--circle-border-color);
|
|
1287
|
+
}
|
|
1219
1288
|
.np-bottom-sheet {
|
|
1220
1289
|
border-radius: 10px 10px 0 0;
|
|
1221
1290
|
}
|
|
@@ -5052,6 +5121,280 @@ html:not([dir="rtl"]) .np-navigation-option {
|
|
|
5052
5121
|
padding: 0 var(--size-24);
|
|
5053
5122
|
}
|
|
5054
5123
|
}
|
|
5124
|
+
.np-table {
|
|
5125
|
+
width: 100%;
|
|
5126
|
+
background-color: transparent;
|
|
5127
|
+
}
|
|
5128
|
+
.np-table-outer-container {
|
|
5129
|
+
border-radius: 16px;
|
|
5130
|
+
border-radius: var(--radius-medium);
|
|
5131
|
+
}
|
|
5132
|
+
.np-table-outer-container:focus {
|
|
5133
|
+
outline: none;
|
|
5134
|
+
}
|
|
5135
|
+
.np-table-outer-container:focus-visible {
|
|
5136
|
+
outline: var(--ring-outline-color) solid var(--ring-outline-width);
|
|
5137
|
+
outline-offset: var(--ring-outline-offset);
|
|
5138
|
+
}
|
|
5139
|
+
.np-table-outer-container:focus-visible {
|
|
5140
|
+
outline-offset: 0;
|
|
5141
|
+
}
|
|
5142
|
+
.np-table-outer-container--center {
|
|
5143
|
+
margin-right: auto;
|
|
5144
|
+
margin-left: auto;
|
|
5145
|
+
}
|
|
5146
|
+
@media (max-width: 767px) {
|
|
5147
|
+
.np-table-outer-container--center {
|
|
5148
|
+
width: 100%;
|
|
5149
|
+
}
|
|
5150
|
+
}
|
|
5151
|
+
.np-table-outer-container--full-width {
|
|
5152
|
+
width: 100%;
|
|
5153
|
+
}
|
|
5154
|
+
.np-table-container {
|
|
5155
|
+
padding: 8px;
|
|
5156
|
+
padding: var(--size-8);
|
|
5157
|
+
background-color: rgba(134,167,189,0.10196);
|
|
5158
|
+
background-color: var(--color-background-neutral);
|
|
5159
|
+
border-radius: inherit;
|
|
5160
|
+
}
|
|
5161
|
+
.np-table-container--loading .np-table-inner-container {
|
|
5162
|
+
background-image: none;
|
|
5163
|
+
}
|
|
5164
|
+
.np-table-inner-container {
|
|
5165
|
+
background-image: linear-gradient(to right, var(--color-contrast-overlay), var(--color-contrast-overlay)), linear-gradient(to right, var(--color-contrast-overlay), var(--color-contrast-overlay)), linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0)), linear-gradient(to left, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0));
|
|
5166
|
+
background-position: left center, right center, left center, right center;
|
|
5167
|
+
background-repeat: no-repeat;
|
|
5168
|
+
background-color: var(--color-contrast-overlay);
|
|
5169
|
+
background-size: 15px 100%, 15px 100%, 15px 100%, 15px 100%;
|
|
5170
|
+
background-attachment: local, local, scroll, scroll;
|
|
5171
|
+
overflow-x: auto;
|
|
5172
|
+
border-radius: 10px;
|
|
5173
|
+
}
|
|
5174
|
+
.np-theme-personal--dark .np-table-inner-container {
|
|
5175
|
+
background-image: linear-gradient(to right, var(--color-contrast-overlay), var(--color-contrast-overlay)), linear-gradient(to right, var(--color-contrast-overlay), var(--color-contrast-overlay)), linear-gradient(to right, #000000, rgba(0, 0, 0, 0)), linear-gradient(to left, #000000, rgba(0, 0, 0, 0));
|
|
5176
|
+
}
|
|
5177
|
+
.np-table-row:last-child .np-table-cell:first-child {
|
|
5178
|
+
border-bottom-left-radius: 10px;
|
|
5179
|
+
}
|
|
5180
|
+
.np-table-row:last-child .np-table-cell:last-child {
|
|
5181
|
+
border-bottom-right-radius: 10px;
|
|
5182
|
+
}
|
|
5183
|
+
.np-table-row:focus {
|
|
5184
|
+
outline: none;
|
|
5185
|
+
}
|
|
5186
|
+
.np-table-row:focus-visible {
|
|
5187
|
+
outline: var(--ring-outline-color) solid var(--ring-outline-width);
|
|
5188
|
+
outline-offset: var(--ring-outline-offset);
|
|
5189
|
+
}
|
|
5190
|
+
.np-table-row:focus-visible {
|
|
5191
|
+
outline-offset: -2px;
|
|
5192
|
+
border-radius: 6px;
|
|
5193
|
+
}
|
|
5194
|
+
.np-table-row--clickable .np-table-cell {
|
|
5195
|
+
position: relative;
|
|
5196
|
+
}
|
|
5197
|
+
.np-table-row--clickable .np-table-cell:before {
|
|
5198
|
+
display: none;
|
|
5199
|
+
content: "";
|
|
5200
|
+
position: absolute;
|
|
5201
|
+
height: 100%;
|
|
5202
|
+
width: 100%;
|
|
5203
|
+
top: 0;
|
|
5204
|
+
left: 0;
|
|
5205
|
+
background-color: var(--color-background-screen-hover);
|
|
5206
|
+
}
|
|
5207
|
+
.np-table-row--clickable .np-table-cell:first-child:before,
|
|
5208
|
+
.np-table-row--clickable .np-table-cell:last-child:before {
|
|
5209
|
+
width: calc(100% - 8px);
|
|
5210
|
+
width: calc(100% - var(--size-8));
|
|
5211
|
+
}
|
|
5212
|
+
.np-table-row--clickable .np-table-cell:first-child:before {
|
|
5213
|
+
left: 8px;
|
|
5214
|
+
left: var(--size-8);
|
|
5215
|
+
border-top-left-radius: 6px;
|
|
5216
|
+
border-bottom-left-radius: 6px;
|
|
5217
|
+
}
|
|
5218
|
+
.np-table-row--clickable .np-table-cell:last-child:before {
|
|
5219
|
+
border-top-right-radius: 6px;
|
|
5220
|
+
border-bottom-right-radius: 6px;
|
|
5221
|
+
}
|
|
5222
|
+
.np-table-row--clickable:hover .np-table-cell:before {
|
|
5223
|
+
display: block;
|
|
5224
|
+
}
|
|
5225
|
+
.np-table-row--clickable:hover:focus-visible .np-table-cell:first-child:before,
|
|
5226
|
+
.np-table-row--clickable:hover:focus-visible .np-table-cell:last-child:before {
|
|
5227
|
+
width: 100%;
|
|
5228
|
+
}
|
|
5229
|
+
.np-table-row--clickable:hover:focus-visible .np-table-cell:first-child:before {
|
|
5230
|
+
left: 0;
|
|
5231
|
+
}
|
|
5232
|
+
.np-table-row--cosmetic .np-table-cell {
|
|
5233
|
+
height: 8px;
|
|
5234
|
+
height: var(--size-8);
|
|
5235
|
+
padding: 0;
|
|
5236
|
+
}
|
|
5237
|
+
.np-table-header,
|
|
5238
|
+
.np-table-cell {
|
|
5239
|
+
padding: 0;
|
|
5240
|
+
}
|
|
5241
|
+
.np-table-header:first-child,
|
|
5242
|
+
.np-table-cell:first-child {
|
|
5243
|
+
padding-left: 16px;
|
|
5244
|
+
padding-left: var(--size-16);
|
|
5245
|
+
}
|
|
5246
|
+
.np-table-header:first-child .np-table-header-content,
|
|
5247
|
+
.np-table-cell:first-child .np-table-header-content,
|
|
5248
|
+
.np-table-header:first-child .np-table-cell-content,
|
|
5249
|
+
.np-table-cell:first-child .np-table-cell-content {
|
|
5250
|
+
padding-left: 0;
|
|
5251
|
+
}
|
|
5252
|
+
.np-table-header:last-child,
|
|
5253
|
+
.np-table-cell:last-child {
|
|
5254
|
+
padding-right: 16px;
|
|
5255
|
+
padding-right: var(--size-16);
|
|
5256
|
+
}
|
|
5257
|
+
.np-table-header:last-child .np-table-header-content,
|
|
5258
|
+
.np-table-cell:last-child .np-table-header-content,
|
|
5259
|
+
.np-table-header:last-child .np-table-cell-content,
|
|
5260
|
+
.np-table-cell:last-child .np-table-cell-content {
|
|
5261
|
+
padding-right: 0;
|
|
5262
|
+
}
|
|
5263
|
+
.np-table-header.np-table-header--right > .np-text-body-default,
|
|
5264
|
+
.np-table-cell.np-table-cell--right > .np-text-body-default {
|
|
5265
|
+
text-align: right;
|
|
5266
|
+
}
|
|
5267
|
+
.np-table-header.np-table-header--right + .np-table-header:not(.np-table-header--right),
|
|
5268
|
+
.np-table-cell.np-table-cell--right + .np-table-cell:not(.np-table-cell--right) {
|
|
5269
|
+
padding-left: calc(8px + 12px);
|
|
5270
|
+
padding-left: calc(var(--size-8) + var(--size-12));
|
|
5271
|
+
}
|
|
5272
|
+
.np-table-header.np-table-header--right .np-table-header-content,
|
|
5273
|
+
.np-table-cell.np-table-cell--right .np-table-content {
|
|
5274
|
+
justify-content: end;
|
|
5275
|
+
}
|
|
5276
|
+
.np-table-header-content,
|
|
5277
|
+
.np-table-content {
|
|
5278
|
+
display: flex;
|
|
5279
|
+
align-items: center;
|
|
5280
|
+
justify-content: start;
|
|
5281
|
+
}
|
|
5282
|
+
.np-table-header {
|
|
5283
|
+
min-width: 160px;
|
|
5284
|
+
padding-right: 8px;
|
|
5285
|
+
padding-right: var(--size-8);
|
|
5286
|
+
padding-bottom: 8px;
|
|
5287
|
+
padding-bottom: var(--size-8);
|
|
5288
|
+
padding-left: 8px;
|
|
5289
|
+
padding-left: var(--size-8);
|
|
5290
|
+
background-color: rgba(134,167,189,0.10196);
|
|
5291
|
+
background-color: var(--color-background-neutral);
|
|
5292
|
+
color: var(--color-interactive-primary);
|
|
5293
|
+
}
|
|
5294
|
+
.np-table-header-content {
|
|
5295
|
+
padding-top: 5px;
|
|
5296
|
+
padding-bottom: 5px;
|
|
5297
|
+
white-space: nowrap;
|
|
5298
|
+
line-height: 1.375rem;
|
|
5299
|
+
line-height: var(--line-height-22);
|
|
5300
|
+
letter-spacing: 0.0125em;
|
|
5301
|
+
letter-spacing: var(--letter-spacing-sm);
|
|
5302
|
+
}
|
|
5303
|
+
.np-table-header--error {
|
|
5304
|
+
color: var(--color-sentiment-negative);
|
|
5305
|
+
}
|
|
5306
|
+
.np-table-header--action {
|
|
5307
|
+
min-width: 0;
|
|
5308
|
+
padding: 0;
|
|
5309
|
+
}
|
|
5310
|
+
.np-table-cell {
|
|
5311
|
+
padding: 16px 8px;
|
|
5312
|
+
padding: var(--size-16) var(--size-8);
|
|
5313
|
+
position: relative;
|
|
5314
|
+
}
|
|
5315
|
+
.np-table-cell--cosmetic {
|
|
5316
|
+
padding: 0;
|
|
5317
|
+
}
|
|
5318
|
+
.np-table-cell--primary {
|
|
5319
|
+
min-width: 200px;
|
|
5320
|
+
}
|
|
5321
|
+
.np-table-cell--currency .np-text-body-default {
|
|
5322
|
+
white-space: nowrap;
|
|
5323
|
+
}
|
|
5324
|
+
.np-table-cell .tw-chevron {
|
|
5325
|
+
margin-left: 8px;
|
|
5326
|
+
margin-left: var(--size-8);
|
|
5327
|
+
}
|
|
5328
|
+
.np-table-cell-separator {
|
|
5329
|
+
margin-top: 4px;
|
|
5330
|
+
margin-top: var(--size-4);
|
|
5331
|
+
margin-bottom: 4px;
|
|
5332
|
+
margin-bottom: var(--size-4);
|
|
5333
|
+
height: 1px;
|
|
5334
|
+
background-color: rgba(134,167,189,0.10196);
|
|
5335
|
+
background-color: var(--color-background-neutral);
|
|
5336
|
+
padding: 0;
|
|
5337
|
+
}
|
|
5338
|
+
.np-table-cell .np-text-body-default-bold {
|
|
5339
|
+
display: flex;
|
|
5340
|
+
align-items: center;
|
|
5341
|
+
color: #37517e;
|
|
5342
|
+
color: var(--color-content-primary);
|
|
5343
|
+
white-space: nowrap;
|
|
5344
|
+
}
|
|
5345
|
+
.np-table-cell .np-table-content--success {
|
|
5346
|
+
color: var(--color-sentiment-positive);
|
|
5347
|
+
}
|
|
5348
|
+
.np-table-cell .np-table-content--error {
|
|
5349
|
+
color: var(--color-sentiment-negative);
|
|
5350
|
+
}
|
|
5351
|
+
.np-table-cell .tw-loader {
|
|
5352
|
+
margin: 150px auto;
|
|
5353
|
+
}
|
|
5354
|
+
@media (max-width: 320px) {
|
|
5355
|
+
.np-table-cell .tw-loader {
|
|
5356
|
+
margin-top: 70px;
|
|
5357
|
+
margin-bottom: 70px;
|
|
5358
|
+
}
|
|
5359
|
+
}
|
|
5360
|
+
.np-table-content {
|
|
5361
|
+
gap: 12px;
|
|
5362
|
+
gap: var(--size-12);
|
|
5363
|
+
}
|
|
5364
|
+
.np-table-content--success,
|
|
5365
|
+
.np-table-content--error {
|
|
5366
|
+
gap: 4px;
|
|
5367
|
+
gap: var(--size-4);
|
|
5368
|
+
}
|
|
5369
|
+
.np-table-content--success .np-table-content-text,
|
|
5370
|
+
.np-table-content--error .np-table-content-text {
|
|
5371
|
+
line-height: 155%;
|
|
5372
|
+
}
|
|
5373
|
+
.np-table-content-media {
|
|
5374
|
+
flex-shrink: 0;
|
|
5375
|
+
}
|
|
5376
|
+
.np-table-content-body {
|
|
5377
|
+
display: flex;
|
|
5378
|
+
flex-direction: column;
|
|
5379
|
+
font-size: 0.75rem;
|
|
5380
|
+
font-size: var(--font-size-12);
|
|
5381
|
+
color: #768e9c;
|
|
5382
|
+
color: var(--color-content-tertiary);
|
|
5383
|
+
}
|
|
5384
|
+
.np-table-content--reversed {
|
|
5385
|
+
flex-direction: row-reverse;
|
|
5386
|
+
}
|
|
5387
|
+
.np-table-content--reversed .np-table-content-body {
|
|
5388
|
+
align-items: end;
|
|
5389
|
+
}
|
|
5390
|
+
.np-table-empty-data {
|
|
5391
|
+
display: flex;
|
|
5392
|
+
align-items: center;
|
|
5393
|
+
}
|
|
5394
|
+
.np-table-empty-data .status-circle {
|
|
5395
|
+
margin-right: 12px;
|
|
5396
|
+
margin-right: var(--size-12);
|
|
5397
|
+
}
|
|
5055
5398
|
.np-tile {
|
|
5056
5399
|
min-width: 120px;
|
|
5057
5400
|
border-radius: 10px;
|
package/src/main.less
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
@import "./actionButton/ActionButton.less";
|
|
4
4
|
@import "./alert/Alert.less";
|
|
5
5
|
@import "./avatar/Avatar.less";
|
|
6
|
+
@import "./avatarView/AvatarView.less";
|
|
6
7
|
@import "./badge/Badge.less";
|
|
7
8
|
@import "./button/Button.less";
|
|
8
9
|
@import "./card/Card.less";
|
|
@@ -61,6 +62,7 @@
|
|
|
61
62
|
@import "./summary/Summary.less";
|
|
62
63
|
@import "./switch/Switch.less";
|
|
63
64
|
@import "./tabs/Tabs.less";
|
|
65
|
+
@import "./table/Table.less";
|
|
64
66
|
@import "./tile/Tile.less";
|
|
65
67
|
@import "./tooltip/Tooltip.less";
|
|
66
68
|
@import "./typeahead/Typeahead.less";
|