@blerp/design 1.3.17 → 1.4.2
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/cjs/Blerp/BlerpImageRow.js +176 -57
- package/dist/cjs/Blerp/BlerpSavePopup.js +44 -40
- package/dist/cjs/Blerp/BlerpTitleRow.js +36 -19
- package/dist/cjs/Blerp/BlerpTopRow.js +110 -44
- package/dist/cjs/Blerp.js +9 -16
- package/dist/cjs/BlerpAudioContextProvider.js +2 -2
- package/dist/cjs/BlerpListView.js +318 -168
- package/dist/cjs/BlerpListViewPremium.js +155 -130
- package/dist/cjs/BlerpListViewSkeleton.js +60 -13
- package/dist/cjs/BlerpSkeleton.js +32 -9
- package/dist/cjs/CollectionCard.js +139 -60
- package/dist/cjs/CollectionListViewPremium.js +368 -297
- package/dist/cjs/CollectionSkeleton.js +74 -13
- package/dist/cjs/Dropdown.js +272 -172
- package/dist/cjs/EllipsisLoader.js +66 -21
- package/dist/cjs/GroupCard.js +64 -57
- package/dist/cjs/Icons/Icons.js +288 -426
- package/dist/cjs/ImageEditor.js +247 -0
- package/dist/cjs/ImageUpload.js +226 -0
- package/dist/cjs/NewBlerp.js +354 -160
- package/dist/cjs/NewBlerpTest.js +10 -792
- package/dist/cjs/NewCollectionModal.js +294 -310
- package/dist/cjs/PremiumCollectionCard.js +191 -454
- package/dist/cjs/PurchaseModals/CheckoutModal.js +1 -1
- package/dist/cjs/PurchaseModals/PremiumBlerpCheckoutModal.js +1 -1
- package/dist/cjs/PurchaseModals/PremiumCollectionCheckoutModal.js +1 -1
- package/dist/cjs/PurchaseModals/PremiumSubscriptionCheckoutModal.js +1 -1
- package/dist/cjs/ReactionButtons.js +26 -13
- package/dist/cjs/SnackbarContextProvider.js +200 -116
- package/dist/cjs/Theme.js +217 -90
- package/dist/cjs/Toggle.js +86 -32
- package/dist/cjs/UserCard.js +13 -32
- package/dist/cjs/UserPage/LibraryControls.js +180 -93
- package/dist/cjs/UserPage/UserLibraryHeader.js +23 -14
- package/dist/cjs/UserPage/UserProfileHeader.js +120 -105
- package/dist/cjs/UsernameWithPopout.js +12 -8
- package/dist/cjs/colors.js +15 -8
- package/dist/cjs/helpers.js +131 -0
- package/dist/cjs/index.js +92 -58
- package/dist/cjs/neo-components/Autocomplete.js +285 -0
- package/dist/cjs/neo-components/BottomNavigation.js +120 -0
- package/dist/cjs/neo-components/Box.js +48 -0
- package/dist/cjs/neo-components/Button.js +206 -0
- package/dist/cjs/neo-components/CircularProgress.js +92 -0
- package/dist/cjs/neo-components/Container.js +75 -0
- package/dist/cjs/neo-components/Dialog.js +441 -0
- package/dist/cjs/neo-components/Fab.js +237 -0
- package/dist/cjs/neo-components/FormControls.js +1057 -0
- package/dist/cjs/neo-components/Grid.js +256 -0
- package/dist/cjs/neo-components/IconButton.js +111 -0
- package/dist/cjs/neo-components/Input.js +495 -0
- package/dist/cjs/neo-components/Layout.js +1214 -0
- package/dist/cjs/neo-components/Misc.js +868 -0
- package/dist/cjs/neo-components/Navigation.js +1616 -0
- package/dist/cjs/neo-components/Paper.js +256 -0
- package/dist/cjs/neo-components/Stack.js +194 -0
- package/dist/cjs/neo-components/Stepper.js +291 -0
- package/dist/cjs/neo-components/Text.js +290 -0
- package/dist/cjs/neo-components/ThemeProvider.js +731 -0
- package/dist/cjs/neo-components/ToggleButton.js +223 -0
- package/dist/cjs/neo-components/createTheme.js +306 -0
- package/dist/cjs/neo-components/withSx.js +171 -0
- package/dist/cjs/neo-utils/sxToStyle.js +508 -0
- package/dist/esm/Blerp/BlerpImageRow.js +166 -46
- package/dist/esm/Blerp/BlerpSavePopup.js +35 -27
- package/dist/esm/Blerp/BlerpTitleRow.js +32 -13
- package/dist/esm/Blerp/BlerpTopRow.js +85 -16
- package/dist/esm/Blerp.js +4 -12
- package/dist/esm/BlerpAudioContextProvider.js +1 -2
- package/dist/esm/BlerpListView.js +313 -160
- package/dist/esm/BlerpListViewPremium.js +135 -109
- package/dist/esm/BlerpListViewSkeleton.js +60 -11
- package/dist/esm/BlerpSkeleton.js +32 -7
- package/dist/esm/CollectionCard.js +118 -38
- package/dist/esm/CollectionListViewPremium.js +367 -294
- package/dist/esm/CollectionSkeleton.js +73 -11
- package/dist/esm/Dropdown.js +260 -161
- package/dist/esm/EllipsisLoader.js +63 -18
- package/dist/esm/GroupCard.js +54 -46
- package/dist/esm/Icons/Icons.js +226 -367
- package/dist/esm/ImageEditor.js +240 -0
- package/dist/esm/ImageUpload.js +217 -0
- package/dist/esm/NewBlerp.js +282 -79
- package/dist/esm/NewBlerpTest.js +11 -781
- package/dist/esm/NewCollectionModal.js +289 -304
- package/dist/esm/PremiumCollectionCard.js +192 -451
- package/dist/esm/PurchaseModals/CheckoutModal.js +1 -1
- package/dist/esm/PurchaseModals/PremiumBlerpCheckoutModal.js +1 -1
- package/dist/esm/PurchaseModals/PremiumCollectionCheckoutModal.js +1 -1
- package/dist/esm/PurchaseModals/PremiumSubscriptionCheckoutModal.js +1 -1
- package/dist/esm/ReactionButtons.js +23 -8
- package/dist/esm/SnackbarContextProvider.js +196 -110
- package/dist/esm/Theme.js +187 -66
- package/dist/esm/Toggle.js +84 -29
- package/dist/esm/UserCard.js +1 -20
- package/dist/esm/UserPage/LibraryControls.js +159 -65
- package/dist/esm/UserPage/UserLibraryHeader.js +18 -10
- package/dist/esm/UserPage/UserProfileHeader.js +100 -79
- package/dist/esm/UsernameWithPopout.js +7 -4
- package/dist/esm/colors.js +11 -9
- package/dist/esm/helpers.js +122 -0
- package/dist/esm/icons.js +1 -1
- package/dist/esm/index.js +32 -2
- package/dist/esm/neo-components/Autocomplete.js +274 -0
- package/dist/esm/neo-components/BottomNavigation.js +109 -0
- package/dist/esm/neo-components/Box.js +36 -0
- package/dist/esm/neo-components/Button.js +194 -0
- package/dist/esm/neo-components/CircularProgress.js +81 -0
- package/dist/esm/neo-components/Container.js +63 -0
- package/dist/esm/neo-components/Dialog.js +423 -0
- package/dist/esm/neo-components/Fab.js +225 -0
- package/dist/esm/neo-components/FormControls.js +1041 -0
- package/dist/esm/neo-components/Grid.js +244 -0
- package/dist/esm/neo-components/IconButton.js +99 -0
- package/dist/esm/neo-components/Input.js +480 -0
- package/dist/esm/neo-components/Layout.js +1180 -0
- package/dist/esm/neo-components/Misc.js +850 -0
- package/dist/esm/neo-components/Navigation.js +1594 -0
- package/dist/esm/neo-components/Paper.js +243 -0
- package/dist/esm/neo-components/Stack.js +182 -0
- package/dist/esm/neo-components/Stepper.js +278 -0
- package/dist/esm/neo-components/Text.js +277 -0
- package/dist/esm/neo-components/ThemeProvider.js +718 -0
- package/dist/esm/neo-components/ToggleButton.js +214 -0
- package/dist/esm/neo-components/createTheme.js +297 -0
- package/dist/esm/neo-components/withSx.js +160 -0
- package/dist/esm/neo-utils/sxToStyle.js +502 -0
- package/package.json +19 -15
|
@@ -1,17 +1,11 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import
|
|
3
|
+
import { Box } from './index.js';
|
|
4
4
|
import colors from './colors.js';
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
const motion2 = props => keyframes(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n 0% {\n transform: translate(0, 0);\n }\n 100% {\n transform: translate(19px, 0);\n }\n"])));
|
|
11
|
-
|
|
12
|
-
const motion3 = props => keyframes(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n 0% {\n transform: scale(1);\n }\n 100% {\n transform: scale(0);\n }\n"])));
|
|
13
|
-
|
|
14
|
-
const EllipsisSpinner = styled.div(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n align-items: center;\n position: relative;\n width: ", ";\n height: ", ";\n div {\n position: absolute;\n width: 11px;\n height: 11px;\n border-radius: 50%;\n background: ", ";\n animation-timing-function: cubic-bezier(0, 1, 1, 0);\n }\n div:nth-child(1) {\n left: 6px;\n animation: ", " 0.6s infinite;\n }\n div:nth-child(2) {\n left: 6px;\n animation: ", " 0.6s infinite;\n }\n div:nth-child(3) {\n left: 26px;\n animation: ", " 0.6s infinite;\n }\n div:nth-child(4) {\n left: 45px;\n animation: ", " 0.6s infinite;\n }\n"])), p => "".concat(p.size).concat(p.sizeUnit), p => "".concat(p.size).concat(p.sizeUnit), p => p.color, p => motion1(), p => motion2(), p => motion2(), p => motion3());
|
|
8
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
15
9
|
const EllipsisLoader = _ref => {
|
|
16
10
|
let {
|
|
17
11
|
color,
|
|
@@ -19,12 +13,64 @@ const EllipsisLoader = _ref => {
|
|
|
19
13
|
sizeUnit,
|
|
20
14
|
style
|
|
21
15
|
} = _ref;
|
|
22
|
-
return /*#__PURE__*/React.createElement(
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
16
|
+
return /*#__PURE__*/React.createElement(Box, {
|
|
17
|
+
sx: _objectSpread(_objectSpread({
|
|
18
|
+
display: "flex",
|
|
19
|
+
justifyContent: "center",
|
|
20
|
+
alignItems: "center",
|
|
21
|
+
position: "relative",
|
|
22
|
+
width: "".concat(size).concat(sizeUnit),
|
|
23
|
+
height: "".concat(size).concat(sizeUnit)
|
|
24
|
+
}, style), {}, {
|
|
25
|
+
"& > div": {
|
|
26
|
+
position: "absolute",
|
|
27
|
+
width: "11px",
|
|
28
|
+
height: "11px",
|
|
29
|
+
borderRadius: "50%",
|
|
30
|
+
background: color,
|
|
31
|
+
animationTimingFunction: "cubic-bezier(0, 1, 1, 0)"
|
|
32
|
+
},
|
|
33
|
+
"& > div:nth-of-type(1)": {
|
|
34
|
+
left: "6px",
|
|
35
|
+
animation: "ellipsis-motion1 0.6s infinite"
|
|
36
|
+
},
|
|
37
|
+
"& > div:nth-of-type(2)": {
|
|
38
|
+
left: "6px",
|
|
39
|
+
animation: "ellipsis-motion2 0.6s infinite"
|
|
40
|
+
},
|
|
41
|
+
"& > div:nth-of-type(3)": {
|
|
42
|
+
left: "26px",
|
|
43
|
+
animation: "ellipsis-motion2 0.6s infinite"
|
|
44
|
+
},
|
|
45
|
+
"& > div:nth-of-type(4)": {
|
|
46
|
+
left: "45px",
|
|
47
|
+
animation: "ellipsis-motion3 0.6s infinite"
|
|
48
|
+
},
|
|
49
|
+
"@keyframes ellipsis-motion1": {
|
|
50
|
+
"0%": {
|
|
51
|
+
transform: "scale(0)"
|
|
52
|
+
},
|
|
53
|
+
"100%": {
|
|
54
|
+
transform: "scale(1)"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"@keyframes ellipsis-motion2": {
|
|
58
|
+
"0%": {
|
|
59
|
+
transform: "translate(0, 0)"
|
|
60
|
+
},
|
|
61
|
+
"100%": {
|
|
62
|
+
transform: "translate(19px, 0)"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"@keyframes ellipsis-motion3": {
|
|
66
|
+
"0%": {
|
|
67
|
+
transform: "scale(1)"
|
|
68
|
+
},
|
|
69
|
+
"100%": {
|
|
70
|
+
transform: "scale(0)"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
})
|
|
28
74
|
}, /*#__PURE__*/React.createElement("div", null), /*#__PURE__*/React.createElement("div", null), /*#__PURE__*/React.createElement("div", null), /*#__PURE__*/React.createElement("div", null));
|
|
29
75
|
};
|
|
30
76
|
EllipsisLoader.defaultProps = {
|
|
@@ -37,5 +83,4 @@ EllipsisLoader.defaultProps = {
|
|
|
37
83
|
}
|
|
38
84
|
};
|
|
39
85
|
|
|
40
|
-
export default
|
|
41
|
-
export { EllipsisLoader };
|
|
86
|
+
export { EllipsisLoader, EllipsisLoader as default };
|
package/dist/esm/GroupCard.js
CHANGED
|
@@ -1,17 +1,42 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
2
2
|
import React, { useState } from 'react';
|
|
3
|
-
import styled from 'styled-components';
|
|
4
3
|
import { Stack, Text } from './index.js';
|
|
5
4
|
import { AddedToIcons, FavoriteIconWithCounter } from './NewBlerp.js';
|
|
6
5
|
|
|
7
|
-
var
|
|
8
|
-
const BlerpImage = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n background-image: url(", ");\n background-repeat: no-repeat;\n background-size: cover;\n width: 140px;\n height: 140px;\n border-radius: 12px;\n transition: 0.3s;\n position: absolute;\n opacity: ", ";\n transform: rotate(", ");\n"])), props => props.image, props => props.firstImage ? "1" : props.hovering ? "1" : "0.5", props => props.hovering ? "45deg" : "20deg");
|
|
9
|
-
const GroupCard = _ref => {
|
|
10
|
-
var _group$blerps14;
|
|
6
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
11
7
|
|
|
8
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
9
|
+
|
|
10
|
+
const BlerpImage = _ref => {
|
|
12
11
|
let {
|
|
13
|
-
|
|
12
|
+
image,
|
|
13
|
+
firstImage,
|
|
14
|
+
hovering,
|
|
15
|
+
index,
|
|
16
|
+
style
|
|
14
17
|
} = _ref;
|
|
18
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
19
|
+
style: _objectSpread({
|
|
20
|
+
backgroundImage: "url(".concat(image, ")"),
|
|
21
|
+
backgroundRepeat: "no-repeat",
|
|
22
|
+
backgroundSize: "cover",
|
|
23
|
+
width: "140px",
|
|
24
|
+
height: "140px",
|
|
25
|
+
borderRadius: "12px",
|
|
26
|
+
transition: "0.3s",
|
|
27
|
+
position: "absolute",
|
|
28
|
+
opacity: firstImage ? 1 : hovering ? 1 : 0.5,
|
|
29
|
+
transform: "rotate(".concat(hovering ? "45deg" : "20deg", ")")
|
|
30
|
+
}, style)
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
const GroupCard = _ref2 => {
|
|
35
|
+
var _group$blerps2;
|
|
36
|
+
|
|
37
|
+
let {
|
|
38
|
+
group
|
|
39
|
+
} = _ref2;
|
|
15
40
|
const [hovering, setHovering] = useState(false);
|
|
16
41
|
const formatter = Intl.NumberFormat("en", {
|
|
17
42
|
notation: "compact"
|
|
@@ -27,58 +52,44 @@ const GroupCard = _ref => {
|
|
|
27
52
|
};
|
|
28
53
|
|
|
29
54
|
const calculateLeft = index => {
|
|
30
|
-
var _group$blerps
|
|
55
|
+
var _group$blerps;
|
|
56
|
+
|
|
57
|
+
const length = group === null || group === void 0 ? void 0 : (_group$blerps = group.blerps) === null || _group$blerps === void 0 ? void 0 : _group$blerps.length;
|
|
31
58
|
|
|
32
|
-
if (
|
|
59
|
+
if (length === 1) {
|
|
33
60
|
return "25%";
|
|
34
61
|
}
|
|
35
62
|
|
|
36
|
-
if (
|
|
37
|
-
var _group$blerps4;
|
|
38
|
-
|
|
63
|
+
if (length === 2) {
|
|
39
64
|
if (hovering) {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
return "".concat((index - 0.05) / (group === null || group === void 0 ? void 0 : (_group$blerps3 = group.blerps) === null || _group$blerps3 === void 0 ? void 0 : _group$blerps3.length) * 100, "%");
|
|
65
|
+
return "".concat((index - 0.05) / length * 100, "%");
|
|
43
66
|
}
|
|
44
67
|
|
|
45
|
-
return "".concat((index + 0.5) / (
|
|
68
|
+
return "".concat((index + 0.5) / (length + 2.5) * 100, "%");
|
|
46
69
|
}
|
|
47
70
|
|
|
48
|
-
if (
|
|
49
|
-
var _group$blerps7;
|
|
50
|
-
|
|
71
|
+
if (length === 3) {
|
|
51
72
|
if (hovering) {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
return "".concat((index - 0.35) / (group === null || group === void 0 ? void 0 : (_group$blerps6 = group.blerps) === null || _group$blerps6 === void 0 ? void 0 : _group$blerps6.length) * 100, "%");
|
|
73
|
+
return "".concat((index - 0.35) / length * 100, "%");
|
|
55
74
|
}
|
|
56
75
|
|
|
57
|
-
return "".concat((index + 0.4) / (
|
|
76
|
+
return "".concat((index + 0.4) / (length + 2.5) * 100, "%");
|
|
58
77
|
}
|
|
59
78
|
|
|
60
|
-
if (
|
|
61
|
-
var _group$blerps10;
|
|
62
|
-
|
|
79
|
+
if (length === 4) {
|
|
63
80
|
if (hovering) {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
return "".concat((index - 0.6) / (group === null || group === void 0 ? void 0 : (_group$blerps9 = group.blerps) === null || _group$blerps9 === void 0 ? void 0 : _group$blerps9.length) * 100, "%");
|
|
81
|
+
return "".concat((index - 0.6) / length * 100, "%");
|
|
67
82
|
}
|
|
68
83
|
|
|
69
|
-
return "".concat((index + 0.2) / (
|
|
84
|
+
return "".concat((index + 0.2) / (length + 2.5) * 100, "%");
|
|
70
85
|
}
|
|
71
86
|
|
|
72
|
-
if (
|
|
73
|
-
var _group$blerps13;
|
|
74
|
-
|
|
87
|
+
if (length === 5) {
|
|
75
88
|
if (hovering) {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
return "".concat((index - 0.7) / (group === null || group === void 0 ? void 0 : (_group$blerps12 = group.blerps) === null || _group$blerps12 === void 0 ? void 0 : _group$blerps12.length) * 100, "%");
|
|
89
|
+
return "".concat((index - 0.7) / length * 100, "%");
|
|
79
90
|
}
|
|
80
91
|
|
|
81
|
-
return "".concat((index + 0.2) / (
|
|
92
|
+
return "".concat((index + 0.2) / (length + 2.5) * 100, "%");
|
|
82
93
|
}
|
|
83
94
|
|
|
84
95
|
return "".concat((index - 2) * 10, "px");
|
|
@@ -101,12 +112,8 @@ const GroupCard = _ref => {
|
|
|
101
112
|
flex: "1",
|
|
102
113
|
overflow: "hidden"
|
|
103
114
|
},
|
|
104
|
-
onMouseEnter: () =>
|
|
105
|
-
|
|
106
|
-
},
|
|
107
|
-
onMouseLeave: () => {
|
|
108
|
-
setHovering(false);
|
|
109
|
-
}
|
|
115
|
+
onMouseEnter: () => setHovering(true),
|
|
116
|
+
onMouseLeave: () => setHovering(false)
|
|
110
117
|
}, /*#__PURE__*/React.createElement(Stack, {
|
|
111
118
|
height: "100%"
|
|
112
119
|
}, /*#__PURE__*/React.createElement(Text, {
|
|
@@ -143,12 +150,13 @@ const GroupCard = _ref => {
|
|
|
143
150
|
right: "0",
|
|
144
151
|
bottom: "0"
|
|
145
152
|
}
|
|
146
|
-
}, (_group$
|
|
147
|
-
var _group$
|
|
153
|
+
}, (_group$blerps2 = group.blerps) === null || _group$blerps2 === void 0 ? void 0 : _group$blerps2.map((blerp, index) => {
|
|
154
|
+
var _group$blerps3, _blerp$image, _blerp$image$original;
|
|
148
155
|
|
|
149
156
|
return /*#__PURE__*/React.createElement(BlerpImage, {
|
|
157
|
+
key: (blerp === null || blerp === void 0 ? void 0 : blerp._id) || index,
|
|
150
158
|
index: index,
|
|
151
|
-
firstImage: index === ((_group$
|
|
159
|
+
firstImage: index === ((_group$blerps3 = group.blerps) === null || _group$blerps3 === void 0 ? void 0 : _group$blerps3.length) - 1,
|
|
152
160
|
hovering: hovering,
|
|
153
161
|
image: blerp === null || blerp === void 0 ? void 0 : (_blerp$image = blerp.image) === null || _blerp$image === void 0 ? void 0 : (_blerp$image$original = _blerp$image.original) === null || _blerp$image$original === void 0 ? void 0 : _blerp$image$original.url,
|
|
154
162
|
style: {
|