decentraland-ui2 3.3.0 → 3.3.1-24431153235.commit-524989f
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/dist/components/EventSmallCard/EventSmallCard.d.ts +3 -0
- package/dist/components/EventSmallCard/EventSmallCard.js +16 -0
- package/dist/components/EventSmallCard/EventSmallCard.js.map +1 -0
- package/dist/components/EventSmallCard/EventSmallCard.stories.d.ts +17 -0
- package/dist/components/EventSmallCard/EventSmallCard.stories.js +54 -0
- package/dist/components/EventSmallCard/EventSmallCard.stories.js.map +1 -0
- package/dist/components/EventSmallCard/EventSmallCard.stories.styled.d.ts +13 -0
- package/dist/components/EventSmallCard/EventSmallCard.stories.styled.js +24 -0
- package/dist/components/EventSmallCard/EventSmallCard.stories.styled.js.map +1 -0
- package/dist/components/EventSmallCard/EventSmallCard.styled.d.ts +45 -0
- package/dist/components/EventSmallCard/EventSmallCard.styled.js +158 -0
- package/dist/components/EventSmallCard/EventSmallCard.styled.js.map +1 -0
- package/dist/components/EventSmallCard/EventSmallCard.types.d.ts +22 -0
- package/dist/components/EventSmallCard/EventSmallCard.types.js +2 -0
- package/dist/components/EventSmallCard/EventSmallCard.types.js.map +1 -0
- package/dist/components/EventSmallCard/index.d.ts +2 -0
- package/dist/components/EventSmallCard/index.js +2 -0
- package/dist/components/EventSmallCard/index.js.map +1 -0
- package/dist/components/Navbar/Navbar.defaults.js +1 -1
- package/dist/components/Navbar/Navbar.defaults.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { EventSmallCardProps } from './EventSmallCard.types';
|
|
2
|
+
declare const EventSmallCard: import("react").MemoExoticComponent<({ image, title, creatorName, creatorAvatarUrl, timeLabel, onClick, disableHover, action, hoverActions }: EventSmallCardProps) => import("react/jsx-runtime").JSX.Element>;
|
|
3
|
+
export { EventSmallCard };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { memo, useCallback } from 'react';
|
|
3
|
+
import AccessTimeIcon from '@mui/icons-material/AccessTime';
|
|
4
|
+
import { AvatarFallback, AvatarImg, ContentTop, CreatorName, CreatorNameHighlight, CreatorRow, EventSmallCardContainer, EventTitle, HoverActions, MobileAction, TextBlock, Thumbnail, ThumbnailWrapper, TimeLabel, TimePill, TitleRow } from './EventSmallCard.styled';
|
|
5
|
+
const EventSmallCard = memo(({ image, title, creatorName, creatorAvatarUrl, timeLabel, onClick, disableHover, action, hoverActions }) => {
|
|
6
|
+
const handleKeyDown = useCallback((e) => {
|
|
7
|
+
if ((e.key === 'Enter' || e.key === ' ') && onClick) {
|
|
8
|
+
e.preventDefault();
|
|
9
|
+
onClick();
|
|
10
|
+
}
|
|
11
|
+
}, [onClick]);
|
|
12
|
+
return (_jsxs(EventSmallCardContainer, { onClick: onClick, disableHover: disableHover, ...(onClick && { role: 'button', tabIndex: 0, onKeyDown: handleKeyDown }), children: [image && (_jsx(ThumbnailWrapper, { children: _jsx(Thumbnail, { src: image, alt: title, loading: "lazy" }) })), _jsxs(TextBlock, { children: [_jsxs(ContentTop, { children: [_jsxs(TitleRow, { children: [_jsx(EventTitle, { children: title }), action && _jsx(MobileAction, { children: action })] }), creatorName && (_jsxs(CreatorRow, { children: [creatorAvatarUrl ? _jsx(AvatarImg, { src: creatorAvatarUrl, alt: creatorName }) : _jsx(AvatarFallback, {}), _jsxs(CreatorName, { children: ["by ", _jsx(CreatorNameHighlight, { children: creatorName })] })] }))] }), timeLabel && (_jsxs(TimePill, { children: [_jsx(AccessTimeIcon, { sx: { fontSize: 20, color: 'inherit' } }), _jsx(TimeLabel, { children: timeLabel })] })), hoverActions && _jsx(HoverActions, { children: hoverActions })] })] }));
|
|
13
|
+
});
|
|
14
|
+
EventSmallCard.displayName = 'EventSmallCard';
|
|
15
|
+
export { EventSmallCard };
|
|
16
|
+
//# sourceMappingURL=EventSmallCard.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventSmallCard.js","sourceRoot":"","sources":["../../../src/components/EventSmallCard/EventSmallCard.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,OAAO,CAAA;AACzC,OAAO,cAAc,MAAM,gCAAgC,CAAA;AAE3D,OAAO,EACL,cAAc,EACd,SAAS,EACT,UAAU,EACV,WAAW,EACX,oBAAoB,EACpB,UAAU,EACV,uBAAuB,EACvB,UAAU,EACV,YAAY,EACZ,YAAY,EACZ,SAAS,EACT,SAAS,EACT,gBAAgB,EAChB,SAAS,EACT,QAAQ,EACR,QAAQ,EACT,MAAM,yBAAyB,CAAA;AAEhC,MAAM,cAAc,GAAG,IAAI,CACzB,CAAC,EAAE,KAAK,EAAE,KAAK,EAAE,WAAW,EAAE,gBAAgB,EAAE,SAAS,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,EAAuB,EAAE,EAAE;IAC/H,MAAM,aAAa,GAAG,WAAW,CAC/B,CAAC,CAAsB,EAAE,EAAE;QACzB,IAAI,CAAC,CAAC,CAAC,GAAG,KAAK,OAAO,IAAI,CAAC,CAAC,GAAG,KAAK,GAAG,CAAC,IAAI,OAAO,EAAE,CAAC;YACpD,CAAC,CAAC,cAAc,EAAE,CAAA;YAClB,OAAO,EAAE,CAAA;QACX,CAAC;IACH,CAAC,EACD,CAAC,OAAO,CAAC,CACV,CAAA;IAED,OAAO,CACL,MAAC,uBAAuB,IACtB,OAAO,EAAE,OAAO,EAChB,YAAY,EAAE,YAAY,KACtB,CAAC,OAAO,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,EAAE,SAAS,EAAE,aAAa,EAAE,CAAC,aAEzE,KAAK,IAAI,CACR,KAAC,gBAAgB,cACf,KAAC,SAAS,IAAC,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,OAAO,EAAC,MAAM,GAAG,GACnC,CACpB,EACD,MAAC,SAAS,eACR,MAAC,UAAU,eACT,MAAC,QAAQ,eACP,KAAC,UAAU,cAAE,KAAK,GAAc,EAC/B,MAAM,IAAI,KAAC,YAAY,cAAE,MAAM,GAAgB,IACvC,EACV,WAAW,IAAI,CACd,MAAC,UAAU,eACR,gBAAgB,CAAC,CAAC,CAAC,KAAC,SAAS,IAAC,GAAG,EAAE,gBAAgB,EAAE,GAAG,EAAE,WAAW,GAAI,CAAC,CAAC,CAAC,KAAC,cAAc,KAAG,EAC/F,MAAC,WAAW,sBACP,KAAC,oBAAoB,cAAE,WAAW,GAAwB,IACjD,IACH,CACd,IACU,EACZ,SAAS,IAAI,CACZ,MAAC,QAAQ,eACP,KAAC,cAAc,IAAC,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,GAAI,EAC1D,KAAC,SAAS,cAAE,SAAS,GAAa,IACzB,CACZ,EACA,YAAY,IAAI,KAAC,YAAY,cAAE,YAAY,GAAgB,IAClD,IACY,CAC3B,CAAA;AACH,CAAC,CACF,CAAA;AAED,cAAc,CAAC,WAAW,GAAG,gBAAgB,CAAA;AAE7C,OAAO,EAAE,cAAc,EAAE,CAAA"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { EventSmallCard } from './EventSmallCard';
|
|
2
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
3
|
+
declare const meta: Meta<typeof EventSmallCard>;
|
|
4
|
+
type Story = StoryObj<typeof EventSmallCard>;
|
|
5
|
+
declare const Default: Story;
|
|
6
|
+
declare const WithoutImage: Story;
|
|
7
|
+
declare const WithoutCreator: Story;
|
|
8
|
+
declare const WithoutTime: Story;
|
|
9
|
+
declare const LongTitle: Story;
|
|
10
|
+
declare const WithAction: Story;
|
|
11
|
+
declare const WithHoverActions: Story;
|
|
12
|
+
declare const TwoCards: Story;
|
|
13
|
+
declare const Grid: Story;
|
|
14
|
+
declare const AvatarFallback: Story;
|
|
15
|
+
declare const DisabledHover: Story;
|
|
16
|
+
export default meta;
|
|
17
|
+
export { Default, WithoutImage, WithoutCreator, WithoutTime, LongTitle, WithAction, WithHoverActions, TwoCards, Grid, AvatarFallback, DisabledHover };
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import CalendarMonthIcon from '@mui/icons-material/CalendarMonth';
|
|
3
|
+
import ContentCopyIcon from '@mui/icons-material/ContentCopy';
|
|
4
|
+
import NotificationsNoneIcon from '@mui/icons-material/NotificationsNone';
|
|
5
|
+
import { EventSmallCard } from './EventSmallCard';
|
|
6
|
+
import sceneThumbnail from '../../Assets/scene-thumbnail.png';
|
|
7
|
+
import { ActionIconButton, StoryColumn, StoryContainer, StoryGrid } from './EventSmallCard.stories.styled';
|
|
8
|
+
const AVATAR_URL = 'https://profile-images.decentraland.org/entities/bafkreietha7mzh7q3lk4j236vut2znwqhbiapihg46p6yrv3j4lbwlzd34/face.png';
|
|
9
|
+
const meta = {
|
|
10
|
+
title: 'Decentraland UI/Cards/Event Small Card',
|
|
11
|
+
component: EventSmallCard,
|
|
12
|
+
parameters: {
|
|
13
|
+
layout: 'padded',
|
|
14
|
+
backgrounds: { default: 'dark', values: [{ name: 'dark', value: '#1A0A2E' }] }
|
|
15
|
+
},
|
|
16
|
+
tags: ['autodocs']
|
|
17
|
+
};
|
|
18
|
+
const Default = {
|
|
19
|
+
render: () => (_jsx(StoryContainer, { children: _jsx(EventSmallCard, { image: sceneThumbnail, title: "Live Music Festival", creatorName: "alelevyyyy", creatorAvatarUrl: AVATAR_URL, timeLabel: "Starts in 10 mins", onClick: () => console.log('clicked') }) }))
|
|
20
|
+
};
|
|
21
|
+
const WithoutImage = {
|
|
22
|
+
render: () => (_jsx(StoryContainer, { children: _jsx(EventSmallCard, { title: "Event Without Image", creatorName: "SomeCreator", timeLabel: "Starts in 2 hours" }) }))
|
|
23
|
+
};
|
|
24
|
+
const WithoutCreator = {
|
|
25
|
+
render: () => (_jsx(StoryContainer, { children: _jsx(EventSmallCard, { image: sceneThumbnail, title: "Event Without Creator", timeLabel: "Starts in 30 mins" }) }))
|
|
26
|
+
};
|
|
27
|
+
const WithoutTime = {
|
|
28
|
+
render: () => (_jsx(StoryContainer, { children: _jsx(EventSmallCard, { image: sceneThumbnail, title: "Event Without Time", creatorName: "alelevyyyy", creatorAvatarUrl: AVATAR_URL }) }))
|
|
29
|
+
};
|
|
30
|
+
const LongTitle = {
|
|
31
|
+
render: () => (_jsx(StoryContainer, { children: _jsx(EventSmallCard, { image: sceneThumbnail, title: "This Is A Very Long Event Title That Should Be Truncated After Two Lines Of Text", creatorName: "alelevyyyy", creatorAvatarUrl: AVATAR_URL, timeLabel: "Starts in 5 mins" }) }))
|
|
32
|
+
};
|
|
33
|
+
const WithAction = {
|
|
34
|
+
render: () => (_jsx(StoryContainer, { children: _jsx(EventSmallCard, { image: sceneThumbnail, title: "Event With Action Button", creatorName: "alelevyyyy", creatorAvatarUrl: AVATAR_URL, timeLabel: "Starts in 15 mins", action: _jsx(ActionIconButton, { size: "small", children: _jsx(CalendarMonthIcon, { fontSize: "small" }) }) }) }))
|
|
35
|
+
};
|
|
36
|
+
const WithHoverActions = {
|
|
37
|
+
render: () => (_jsx(StoryContainer, { children: _jsx(EventSmallCard, { image: sceneThumbnail, title: "Hover Me For Actions", creatorName: "alelevyyyy", creatorAvatarUrl: AVATAR_URL, timeLabel: "Starts in 20 mins", hoverActions: _jsxs(_Fragment, { children: [_jsx(ActionIconButton, { size: "small", children: _jsx(NotificationsNoneIcon, { fontSize: "small" }) }), _jsx(ActionIconButton, { size: "small", children: _jsx(CalendarMonthIcon, { fontSize: "small" }) }), _jsx(ActionIconButton, { size: "small", children: _jsx(ContentCopyIcon, { fontSize: "small" }) })] }) }) }))
|
|
38
|
+
};
|
|
39
|
+
const TwoCards = {
|
|
40
|
+
render: () => (_jsxs(StoryColumn, { children: [_jsx(EventSmallCard, { image: sceneThumbnail, title: "First Event", creatorName: "alelevyyyy", creatorAvatarUrl: AVATAR_URL, timeLabel: "Starts in 10 mins" }), _jsx(EventSmallCard, { image: sceneThumbnail, title: "Second Event With a Longer Title", creatorName: "SomeOtherCreator", timeLabel: "Starts in 2 hours" })] }))
|
|
41
|
+
};
|
|
42
|
+
const Grid = {
|
|
43
|
+
render: () => (_jsxs(StoryGrid, { children: [_jsx(EventSmallCard, { image: sceneThumbnail, title: "Live Music Festival", creatorName: "alelevyyyy", creatorAvatarUrl: AVATAR_URL, timeLabel: "Starts in 10 mins" }), _jsx(EventSmallCard, { image: sceneThumbnail, title: "Art Gallery Opening Night", creatorName: "SomeCreator", timeLabel: "Starts in 30 mins" }), _jsx(EventSmallCard, { image: sceneThumbnail, title: "Community Meetup", creatorName: "DCLFan", creatorAvatarUrl: AVATAR_URL, timeLabel: "Starts in 1 hour" }), _jsx(EventSmallCard, { image: sceneThumbnail, title: "Workshop: Building in DCL", creatorName: "BuilderPro", timeLabel: "Starts in 3 hours" })] }))
|
|
44
|
+
};
|
|
45
|
+
const AvatarFallback = {
|
|
46
|
+
render: () => (_jsx(StoryContainer, { children: _jsx(EventSmallCard, { image: sceneThumbnail, title: "Creator Without Avatar", creatorName: "NoAvatarUser", timeLabel: "Starts in 45 mins" }) }))
|
|
47
|
+
};
|
|
48
|
+
const DisabledHover = {
|
|
49
|
+
render: () => (_jsx(StoryContainer, { children: _jsx(EventSmallCard, { image: sceneThumbnail, title: "No Hover Effect (Mobile/Tablet)", creatorName: "alelevyyyy", creatorAvatarUrl: AVATAR_URL, timeLabel: "Starts in 10 mins", disableHover: true, action: _jsx(ActionIconButton, { size: "small", children: _jsx(CalendarMonthIcon, { fontSize: "small" }) }) }) }))
|
|
50
|
+
};
|
|
51
|
+
// eslint-disable-next-line import/no-default-export
|
|
52
|
+
export default meta;
|
|
53
|
+
export { Default, WithoutImage, WithoutCreator, WithoutTime, LongTitle, WithAction, WithHoverActions, TwoCards, Grid, AvatarFallback, DisabledHover };
|
|
54
|
+
//# sourceMappingURL=EventSmallCard.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventSmallCard.stories.js","sourceRoot":"","sources":["../../../src/components/EventSmallCard/EventSmallCard.stories.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare const StoryContainer: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
2
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
3
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
4
|
+
declare const StoryColumn: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
5
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
6
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
7
|
+
declare const StoryGrid: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
8
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
10
|
+
declare const ActionIconButton: import("@emotion/styled").StyledComponent<import("@mui/material").IconButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
11
|
+
ref?: ((instance: HTMLButtonElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLButtonElement> | null | undefined;
|
|
12
|
+
}, "disabled" | "color" | "className" | "style" | "classes" | "children" | "sx" | "tabIndex" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "size" | "edge"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
13
|
+
export { ActionIconButton, StoryColumn, StoryContainer, StoryGrid };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Box, IconButton as MuiIconButton, styled } from '@mui/material';
|
|
2
|
+
const StoryContainer = styled(Box)({
|
|
3
|
+
maxWidth: 500
|
|
4
|
+
});
|
|
5
|
+
const StoryColumn = styled(Box)(({ theme }) => ({
|
|
6
|
+
display: 'flex',
|
|
7
|
+
flexDirection: 'column',
|
|
8
|
+
gap: theme.spacing(2),
|
|
9
|
+
maxWidth: 500
|
|
10
|
+
}));
|
|
11
|
+
const StoryGrid = styled(Box)(({ theme }) => ({
|
|
12
|
+
display: 'grid',
|
|
13
|
+
gridTemplateColumns: 'repeat(auto-fill, minmax(350px, 1fr))',
|
|
14
|
+
gap: theme.spacing(3)
|
|
15
|
+
}));
|
|
16
|
+
const ActionIconButton = styled(MuiIconButton)(({ theme }) => ({
|
|
17
|
+
backgroundColor: theme.palette.action.hover,
|
|
18
|
+
borderRadius: theme.spacing(1),
|
|
19
|
+
width: 30,
|
|
20
|
+
height: 30,
|
|
21
|
+
color: theme.palette.text.primary
|
|
22
|
+
}));
|
|
23
|
+
export { ActionIconButton, StoryColumn, StoryContainer, StoryGrid };
|
|
24
|
+
//# sourceMappingURL=EventSmallCard.stories.styled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventSmallCard.stories.styled.js","sourceRoot":"","sources":["../../../src/components/EventSmallCard/EventSmallCard.stories.styled.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,UAAU,IAAI,aAAa,EAAE,MAAM,EAAE,MAAM,eAAe,CAAA;AAExE,MAAM,cAAc,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;IACjC,QAAQ,EAAE,GAAG;CACd,CAAC,CAAA;AAEF,MAAM,WAAW,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC;IAC9C,OAAO,EAAE,MAAM;IACf,aAAa,EAAE,QAAQ;IACvB,GAAG,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;IACrB,QAAQ,EAAE,GAAG;CACd,CAAC,CAAC,CAAA;AAEH,MAAM,SAAS,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC;IAC5C,OAAO,EAAE,MAAM;IACf,mBAAmB,EAAE,uCAAuC;IAC5D,GAAG,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;CACtB,CAAC,CAAC,CAAA;AAEH,MAAM,gBAAgB,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC;IAC7D,eAAe,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK;IAC3C,YAAY,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;IAC9B,KAAK,EAAE,EAAE;IACT,MAAM,EAAE,EAAE;IACV,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO;CAClC,CAAC,CAAC,CAAA;AAEH,OAAO,EAAE,gBAAgB,EAAE,WAAW,EAAE,cAAc,EAAE,SAAS,EAAE,CAAA"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
declare const TimePill: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
2
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
3
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
4
|
+
declare const HoverActions: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
5
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
6
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
7
|
+
declare const EventSmallCardContainer: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
8
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
10
|
+
disableHover?: boolean;
|
|
11
|
+
}, {}, {}>;
|
|
12
|
+
declare const ThumbnailWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
13
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
14
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
15
|
+
declare const Thumbnail: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
16
|
+
declare const TextBlock: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
17
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
18
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
19
|
+
declare const ContentTop: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
20
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
21
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
22
|
+
declare const EventTitle: import("@emotion/styled").StyledComponent<import("@mui/material").TypographyOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
23
|
+
ref?: ((instance: HTMLSpanElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLSpanElement> | null | undefined;
|
|
24
|
+
}, "typography" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "color" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "marginBlock" | "marginInline" | "overflow" | "padding" | "paddingBlock" | "paddingInline" | "className" | "style" | "classes" | "children" | "sx" | "variant" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "p" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
25
|
+
declare const TitleRow: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
26
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
27
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
28
|
+
declare const MobileAction: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
29
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
30
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
31
|
+
declare const AvatarImg: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
32
|
+
declare const AvatarFallback: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
33
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
34
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
35
|
+
declare const CreatorRow: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
36
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
37
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
38
|
+
declare const CreatorName: import("@emotion/styled").StyledComponent<import("@mui/material").TypographyOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
39
|
+
ref?: ((instance: HTMLSpanElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLSpanElement> | null | undefined;
|
|
40
|
+
}, "typography" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "color" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "marginBlock" | "marginInline" | "overflow" | "padding" | "paddingBlock" | "paddingInline" | "className" | "style" | "classes" | "children" | "sx" | "variant" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "p" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
41
|
+
declare const CreatorNameHighlight: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
42
|
+
declare const TimeLabel: import("@emotion/styled").StyledComponent<import("@mui/material").TypographyOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
43
|
+
ref?: ((instance: HTMLSpanElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLSpanElement> | null | undefined;
|
|
44
|
+
}, "typography" | "zIndex" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "color" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "marginBlock" | "marginInline" | "overflow" | "padding" | "paddingBlock" | "paddingInline" | "className" | "style" | "classes" | "children" | "sx" | "variant" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "p" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
45
|
+
export { AvatarFallback, AvatarImg, ContentTop, CreatorName, CreatorNameHighlight, CreatorRow, EventSmallCardContainer, EventTitle, HoverActions, MobileAction, TextBlock, Thumbnail, ThumbnailWrapper, TimeLabel, TimePill, TitleRow };
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import { Box, Typography, styled } from '@mui/material';
|
|
2
|
+
const HOVER_SHADOW = '0px 2px 12px 12px rgba(255, 255, 255, 0.3)';
|
|
3
|
+
const HOVER_SHADOW_LIGHT = '0px 2px 12px 4px rgba(0, 0, 0, 0.12)';
|
|
4
|
+
const TimePill = styled(Box)(({ theme }) => ({
|
|
5
|
+
display: 'flex',
|
|
6
|
+
alignItems: 'center',
|
|
7
|
+
gap: theme.spacing(1),
|
|
8
|
+
backgroundColor: theme.palette.mode === 'dark' ? 'rgba(255, 255, 255, 0.1)' : 'rgba(0, 0, 0, 0.06)',
|
|
9
|
+
borderRadius: theme.spacing(0.75),
|
|
10
|
+
padding: theme.spacing(0.25, 1, 0.25, 0.5),
|
|
11
|
+
height: 24,
|
|
12
|
+
width: 'fit-content',
|
|
13
|
+
maxWidth: '100%',
|
|
14
|
+
transition: 'opacity 0.2s ease'
|
|
15
|
+
}));
|
|
16
|
+
const HoverActions = styled(Box)(({ theme }) => ({
|
|
17
|
+
position: 'absolute',
|
|
18
|
+
bottom: 0,
|
|
19
|
+
left: 0,
|
|
20
|
+
right: 0,
|
|
21
|
+
padding: theme.spacing(1.5),
|
|
22
|
+
display: 'flex',
|
|
23
|
+
alignItems: 'center',
|
|
24
|
+
justifyContent: 'flex-start',
|
|
25
|
+
gap: theme.spacing(0.5),
|
|
26
|
+
opacity: 0,
|
|
27
|
+
transform: 'translateY(8px)',
|
|
28
|
+
transition: 'opacity 0.2s ease, transform 0.2s ease',
|
|
29
|
+
flexWrap: 'nowrap'
|
|
30
|
+
}));
|
|
31
|
+
const EventSmallCardContainer = styled(Box, {
|
|
32
|
+
shouldForwardProp: prop => prop !== 'disableHover'
|
|
33
|
+
})(({ theme, disableHover }) => ({
|
|
34
|
+
display: 'flex',
|
|
35
|
+
flexDirection: 'row',
|
|
36
|
+
borderRadius: theme.spacing(2),
|
|
37
|
+
overflow: 'hidden',
|
|
38
|
+
cursor: 'pointer',
|
|
39
|
+
height: 140,
|
|
40
|
+
minWidth: 300,
|
|
41
|
+
maxWidth: 430,
|
|
42
|
+
backgroundColor: theme.palette.mode === 'dark' ? 'rgba(0, 0, 0, 0.3)' : 'rgba(0, 0, 0, 0.05)',
|
|
43
|
+
transition: 'transform 0.2s ease, box-shadow 0.2s ease',
|
|
44
|
+
...(!disableHover && {
|
|
45
|
+
'&:hover': {
|
|
46
|
+
transform: 'translateY(-4px)',
|
|
47
|
+
boxShadow: theme.palette.mode === 'dark' ? HOVER_SHADOW : HOVER_SHADOW_LIGHT
|
|
48
|
+
},
|
|
49
|
+
[`&:hover ${HoverActions}`]: {
|
|
50
|
+
opacity: 1,
|
|
51
|
+
transform: 'translateY(0)'
|
|
52
|
+
},
|
|
53
|
+
[`&:hover ${TimePill}`]: {
|
|
54
|
+
opacity: 0
|
|
55
|
+
}
|
|
56
|
+
}),
|
|
57
|
+
[theme.breakpoints.down('md')]: {
|
|
58
|
+
minWidth: 0,
|
|
59
|
+
[`& ${HoverActions}`]: {
|
|
60
|
+
display: 'none'
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}));
|
|
64
|
+
const ThumbnailWrapper = styled(Box)({
|
|
65
|
+
width: '42%',
|
|
66
|
+
height: 140,
|
|
67
|
+
flexShrink: 0,
|
|
68
|
+
overflow: 'hidden'
|
|
69
|
+
});
|
|
70
|
+
const Thumbnail = styled('img')({
|
|
71
|
+
width: '100%',
|
|
72
|
+
height: '100%',
|
|
73
|
+
objectFit: 'cover',
|
|
74
|
+
display: 'block'
|
|
75
|
+
});
|
|
76
|
+
const TextBlock = styled(Box)(({ theme }) => ({
|
|
77
|
+
display: 'flex',
|
|
78
|
+
flexDirection: 'column',
|
|
79
|
+
justifyContent: 'space-between',
|
|
80
|
+
flex: 1,
|
|
81
|
+
minWidth: 0,
|
|
82
|
+
padding: theme.spacing(1.5),
|
|
83
|
+
position: 'relative'
|
|
84
|
+
}));
|
|
85
|
+
const ContentTop = styled(Box)(({ theme }) => ({
|
|
86
|
+
display: 'flex',
|
|
87
|
+
flexDirection: 'column',
|
|
88
|
+
gap: theme.spacing(0.5),
|
|
89
|
+
overflow: 'hidden'
|
|
90
|
+
}));
|
|
91
|
+
const EventTitle = styled(Typography)(({ theme }) => ({
|
|
92
|
+
fontWeight: 600,
|
|
93
|
+
fontSize: 16,
|
|
94
|
+
lineHeight: 1.5,
|
|
95
|
+
color: theme.palette.text.primary,
|
|
96
|
+
overflow: 'hidden',
|
|
97
|
+
textOverflow: 'ellipsis',
|
|
98
|
+
display: '-webkit-box',
|
|
99
|
+
flex: 1,
|
|
100
|
+
minWidth: 0,
|
|
101
|
+
WebkitLineClamp: 2,
|
|
102
|
+
WebkitBoxOrient: 'vertical'
|
|
103
|
+
}));
|
|
104
|
+
const TitleRow = styled(Box)(({ theme }) => ({
|
|
105
|
+
display: 'flex',
|
|
106
|
+
gap: theme.spacing(1),
|
|
107
|
+
alignItems: 'flex-start'
|
|
108
|
+
}));
|
|
109
|
+
const MobileAction = styled(Box)(({ theme }) => ({
|
|
110
|
+
display: 'none',
|
|
111
|
+
[theme.breakpoints.down('md')]: {
|
|
112
|
+
display: 'flex',
|
|
113
|
+
flexShrink: 0
|
|
114
|
+
}
|
|
115
|
+
}));
|
|
116
|
+
const AvatarImg = styled('img')(({ theme }) => ({
|
|
117
|
+
width: 19,
|
|
118
|
+
height: 19,
|
|
119
|
+
borderRadius: '50%',
|
|
120
|
+
border: `1.4px solid ${theme.palette.mode === 'dark' ? 'rgba(255, 255, 255, 0.3)' : 'rgba(0, 0, 0, 0.15)'}`,
|
|
121
|
+
flexShrink: 0,
|
|
122
|
+
objectFit: 'cover'
|
|
123
|
+
}));
|
|
124
|
+
const AvatarFallback = styled(Box)(({ theme }) => ({
|
|
125
|
+
width: 19,
|
|
126
|
+
height: 19,
|
|
127
|
+
borderRadius: '50%',
|
|
128
|
+
backgroundColor: theme.palette.success.dark,
|
|
129
|
+
border: `1.4px solid ${theme.palette.mode === 'dark' ? 'rgba(255, 255, 255, 0.3)' : 'rgba(0, 0, 0, 0.15)'}`,
|
|
130
|
+
flexShrink: 0
|
|
131
|
+
}));
|
|
132
|
+
const CreatorRow = styled(Box)(({ theme }) => ({
|
|
133
|
+
display: 'flex',
|
|
134
|
+
alignItems: 'center',
|
|
135
|
+
gap: theme.spacing(1)
|
|
136
|
+
}));
|
|
137
|
+
const CreatorName = styled(Typography)(({ theme }) => ({
|
|
138
|
+
fontSize: 12,
|
|
139
|
+
lineHeight: 1,
|
|
140
|
+
color: theme.palette.text.secondary,
|
|
141
|
+
overflow: 'hidden',
|
|
142
|
+
textOverflow: 'ellipsis',
|
|
143
|
+
whiteSpace: 'nowrap'
|
|
144
|
+
}));
|
|
145
|
+
const CreatorNameHighlight = styled('span')(({ theme }) => ({
|
|
146
|
+
color: theme.palette.primary.main
|
|
147
|
+
}));
|
|
148
|
+
const TimeLabel = styled(Typography)(({ theme }) => ({
|
|
149
|
+
fontSize: 14,
|
|
150
|
+
fontWeight: 600,
|
|
151
|
+
lineHeight: 1.5,
|
|
152
|
+
color: theme.palette.text.primary,
|
|
153
|
+
whiteSpace: 'nowrap',
|
|
154
|
+
overflow: 'hidden',
|
|
155
|
+
textOverflow: 'ellipsis'
|
|
156
|
+
}));
|
|
157
|
+
export { AvatarFallback, AvatarImg, ContentTop, CreatorName, CreatorNameHighlight, CreatorRow, EventSmallCardContainer, EventTitle, HoverActions, MobileAction, TextBlock, Thumbnail, ThumbnailWrapper, TimeLabel, TimePill, TitleRow };
|
|
158
|
+
//# sourceMappingURL=EventSmallCard.styled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventSmallCard.styled.js","sourceRoot":"","sources":["../../../src/components/EventSmallCard/EventSmallCard.styled.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
interface EventSmallCardProps {
|
|
3
|
+
/** Event cover image URL */
|
|
4
|
+
image?: string;
|
|
5
|
+
/** Event title */
|
|
6
|
+
title: string;
|
|
7
|
+
/** Creator display name */
|
|
8
|
+
creatorName?: string;
|
|
9
|
+
/** Creator avatar face URL */
|
|
10
|
+
creatorAvatarUrl?: string;
|
|
11
|
+
/** Time label shown in the bottom pill (e.g. "Starts in 10 mins") */
|
|
12
|
+
timeLabel?: string;
|
|
13
|
+
/** Click handler for the entire card */
|
|
14
|
+
onClick?: () => void;
|
|
15
|
+
/** When true, disables hover lift and shadow effects (use on mobile/tablet) */
|
|
16
|
+
disableHover?: boolean;
|
|
17
|
+
/** Optional action element rendered next to the title on mobile, or top-right on desktop */
|
|
18
|
+
action?: ReactNode;
|
|
19
|
+
/** Optional hover actions rendered at the bottom of the card on desktop hover */
|
|
20
|
+
hoverActions?: ReactNode;
|
|
21
|
+
}
|
|
22
|
+
export type { EventSmallCardProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventSmallCard.types.js","sourceRoot":"","sources":["../../../src/components/EventSmallCard/EventSmallCard.types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/EventSmallCard/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Navbar.defaults.js","sourceRoot":"","sources":["../../../src/components/Navbar/Navbar.defaults.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AAGrC,MAAM,YAAY,GAAe;IAC/B,MAAM,EAAE,SAAS;IACjB,SAAS,EAAE,eAAe;IAC1B,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"Navbar.defaults.js","sourceRoot":"","sources":["../../../src/components/Navbar/Navbar.defaults.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export * from './components/CatalogCard';
|
|
|
43
43
|
export * from './components/CreditsToggle';
|
|
44
44
|
export * from './components/SceneCard';
|
|
45
45
|
export * from './components/EventCard';
|
|
46
|
+
export * from './components/EventSmallCard';
|
|
46
47
|
export * from './components/ScenesTable';
|
|
47
48
|
export * from './components/Badges';
|
|
48
49
|
export * as dclTable from './components/Table';
|
package/dist/index.js
CHANGED
|
@@ -43,6 +43,7 @@ export * from './components/CatalogCard';
|
|
|
43
43
|
export * from './components/CreditsToggle';
|
|
44
44
|
export * from './components/SceneCard';
|
|
45
45
|
export * from './components/EventCard';
|
|
46
|
+
export * from './components/EventSmallCard';
|
|
46
47
|
export * from './components/ScenesTable';
|
|
47
48
|
export * from './components/Badges';
|
|
48
49
|
export * as dclTable from './components/Table';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,gBAAgB,CAAA;AACzC,OAAO,KAAK,YAAY,MAAM,gBAAgB,CAAA;AAC9C,OAAO,aAAa,MAAM,iBAAiB,CAAA;AAE3C,wEAAwE;AACxE,OAAO,iBAAiB,CAAA;AAExB,gBAAgB;AAChB,OAAO,EAAE,KAAK,IAAI,UAAU,EAAE,IAAI,IAAI,SAAS,EAAE,aAAa,IAAI,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAGnG,OAAO,KAAK,SAAS,MAAM,gBAAgB,CAAA;AAE3C,qFAAqF;AACrF,OAAO,EACL,SAAS,EACT,gBAAgB,EAChB,gBAAgB,EAChB,gBAAgB,EAChB,KAAK,EACL,UAAU,EACV,MAAM,EACN,YAAY,EACZ,MAAM,EACN,WAAW,EACX,QAAQ,EACR,KAAK,EACL,gBAAgB,EAChB,sBAAsB,EACtB,GAAG,EACH,WAAW,EACX,MAAM,EACN,UAAU,EACV,WAAW,EACX,IAAI,EACJ,cAAc,EACd,WAAW,EACX,WAAW,EACX,UAAU,EACV,SAAS,EACT,QAAQ,EACR,IAAI,EACJ,gBAAgB,EAChB,iBAAiB,EACjB,QAAQ,EACR,SAAS,EACT,WAAW,EACX,aAAa,EACb,MAAM,EACN,aAAa,EACb,aAAa,EACb,iBAAiB,EACjB,WAAW,EACX,OAAO,EACP,MAAM,EACN,GAAG,EACH,IAAI,EACJ,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,SAAS,EACT,cAAc,EACd,SAAS,EACT,oBAAoB,EACpB,sBAAsB,EACtB,YAAY,EACZ,IAAI,EACJ,IAAI,EACJ,MAAM,EACN,IAAI,EACJ,UAAU,EACV,SAAS,EACT,aAAa,EACb,gBAAgB,EAChB,KAAK,EACL,cAAc,EACd,SAAS,EACT,UAAU,EACV,cAAc,EACd,IAAI,EACJ,IAAI,EACJ,QAAQ,EACR,cAAc,EACd,cAAc,EACd,YAAY,EACZ,uBAAuB,EACvB,YAAY,EACZ,aAAa,EACb,IAAI,EACJ,QAAQ,EACR,QAAQ,EACR,aAAa,EACb,KAAK,EACL,YAAY,EACZ,KAAK,EACL,aAAa,EACb,UAAU,EACV,cAAc,EACd,KAAK,EACL,OAAO,EACP,MAAM,EACN,MAAM,EACN,KAAK,EACL,UAAU,EACV,MAAM,EACN,iBAAiB,EACjB,MAAM,EACN,QAAQ,EACR,KAAK,EACL,MAAM,EACN,QAAQ,EACR,eAAe,EACf,SAAS,EACT,eAAe,EACf,aAAa,EACb,KAAK,EACL,IAAI,EACJ,UAAU,EACV,aAAa,EACb,WAAW,EACX,QAAQ,EACR,SAAS,EACT,OAAO,EACP,MAAM,EACN,OAAO,EACP,eAAe,EACf,MAAM,EACN,GAAG,EACH,KAAK,EACL,SAAS,EACT,SAAS,EACT,cAAc,EACd,WAAW,EACX,SAAS,EACT,eAAe,EACf,QAAQ,EACR,cAAc,EACd,IAAI,EACJ,eAAe,EACf,gBAAgB,EAChB,SAAS,EACT,YAAY,EACZ,iBAAiB,EACjB,OAAO,EACP,OAAO,EACP,UAAU,EACV,cAAc,EACd,kBAAkB,EAClB,eAAe,EACf,aAAa,EACb,gBAAgB,EAChB,QAAQ,IAAI,WAAW,EACvB,IAAI,EACL,MAAM,eAAe,CAAA;AAGtB,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACzC,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,YAAY,EAAE,CAAA;AACpD,cAAc,sBAAsB,CAAA;AACpC,OAAO,KAAK,eAAe,MAAM,iCAAiC,CAAA;AAClE,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,wBAAwB,CAAA;AACtC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,mBAAmB,CAAA;AACjC,cAAc,wBAAwB,CAAA;AACtC,cAAc,wBAAwB,CAAA;AACtC,cAAc,qBAAqB,CAAA;AACnC,cAAc,wBAAwB,CAAA;AACtC,cAAc,mBAAmB,CAAA;AACjC,cAAc,oBAAoB,CAAA;AAClC,OAAO,KAAK,QAAQ,MAAM,oBAAoB,CAAA;AAC9C,cAAc,kCAAkC,CAAA;AAChD,cAAc,wCAAwC,CAAA;AACtD,cAAc,gCAAgC,CAAA;AAC9C,cAAc,qBAAqB,CAAA;AACnC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,uBAAuB,CAAA;AACrC,cAAc,iCAAiC,CAAA;AAC/C,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,qBAAqB,CAAA;AACnC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,0BAA0B,CAAA;AACxC,cAAc,0BAA0B,CAAA;AACxC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,wBAAwB,CAAA;AACtC,cAAc,wBAAwB,CAAA;AACtC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,0BAA0B,CAAA;AACxC,cAAc,qBAAqB,CAAA;AACnC,OAAO,KAAK,QAAQ,MAAM,oBAAoB,CAAA;AAE9C,OAAO,KAAK,eAAe,MAAM,eAAe,CAAA;AAEhD,cAAc,kBAAkB,CAAA;AAChC,OAAO,KAAK,QAAQ,MAAM,WAAW,CAAA;AAErC,OAAO,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "decentraland-ui2",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.1-24431153235.commit-524989f",
|
|
4
4
|
"description": "Decentraland's UI components and styles",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -117,5 +117,5 @@
|
|
|
117
117
|
"url": "https://github.com/decentraland/ui2/issues"
|
|
118
118
|
},
|
|
119
119
|
"homepage": "https://github.com/decentraland/ui2#readme",
|
|
120
|
-
"commit": "
|
|
120
|
+
"commit": "524989f6ff38d3ba1510e146f5454d08d053f362"
|
|
121
121
|
}
|