@treely/strapi-slices 5.17.1 → 5.17.3
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/ProjectGridCard/messages.de.d.ts +1 -1
- package/dist/components/ProjectGridCard/messages.en.d.ts +1 -1
- package/dist/rootMessages.de.d.ts +1 -1
- package/dist/rootMessages.en.d.ts +1 -1
- package/dist/strapi-slices.cjs.development.js +9 -7
- package/dist/strapi-slices.cjs.development.js.map +1 -1
- package/dist/strapi-slices.cjs.production.min.js +1 -1
- package/dist/strapi-slices.cjs.production.min.js.map +1 -1
- package/dist/strapi-slices.esm.js +10 -8
- package/dist/strapi-slices.esm.js.map +1 -1
- package/dist/utils/getMessages.d.ts +2 -2
- package/package.json +1 -1
- package/src/components/ProjectGridCard/ProjectGridCard.tsx +2 -2
- package/src/components/ProjectGridCard/messages.de.ts +1 -1
- package/src/components/ProjectGridCard/messages.en.ts +1 -1
- package/src/slices/ProjectsGrid/ProjectsGrid.tsx +1 -0
- package/src/slices/Timeline/Timeline.tsx +1 -2
|
@@ -13,7 +13,7 @@ import { useRouter } from 'next/router';
|
|
|
13
13
|
import styled from '@emotion/styled';
|
|
14
14
|
import { css, Global } from '@emotion/react';
|
|
15
15
|
import { motion, AnimatePresence } from 'framer-motion';
|
|
16
|
-
import { createIntl, createIntlCache, IntlProvider, IntlContext as IntlContext$1
|
|
16
|
+
import { createIntl, createIntlCache, IntlProvider, IntlContext as IntlContext$1 } from 'react-intl';
|
|
17
17
|
import mapboxgl, { Map as Map$1, Marker } from 'mapbox-gl';
|
|
18
18
|
import { createRoot } from 'react-dom/client';
|
|
19
19
|
import { Formik, Form, Field } from 'formik';
|
|
@@ -2376,7 +2376,7 @@ var messagesDe$9 = {
|
|
|
2376
2376
|
|
|
2377
2377
|
var messagesDe$8 = {
|
|
2378
2378
|
'components.projectGridCard.certified': 'Zertifiziert, {year}',
|
|
2379
|
-
'components.projectGridCard.
|
|
2379
|
+
'components.projectGridCard.certificationInProgress': 'Zertifizierung ist in Arbeit'
|
|
2380
2380
|
};
|
|
2381
2381
|
|
|
2382
2382
|
var messagesDe$7 = {
|
|
@@ -2493,7 +2493,7 @@ var messagesEn$5 = {
|
|
|
2493
2493
|
|
|
2494
2494
|
var messagesDe$1 = {
|
|
2495
2495
|
'components.projectGridCard.certified': 'Certified, {year}',
|
|
2496
|
-
'components.projectGridCard.
|
|
2496
|
+
'components.projectGridCard.certificationInProgress': 'Certification in progress'
|
|
2497
2497
|
};
|
|
2498
2498
|
|
|
2499
2499
|
var messagesEn$4 = {
|
|
@@ -2951,7 +2951,8 @@ var ProjectGridCard = function ProjectGridCard(_ref) {
|
|
|
2951
2951
|
size: "lg"
|
|
2952
2952
|
}, project.title), React.createElement(Flex, {
|
|
2953
2953
|
flexDir: "row",
|
|
2954
|
-
gap: "2"
|
|
2954
|
+
gap: "2",
|
|
2955
|
+
flexWrap: "wrap"
|
|
2955
2956
|
}, React.createElement(Tag, null, React.createElement(Text, {
|
|
2956
2957
|
size: "xsLowBold",
|
|
2957
2958
|
color: "gray.800"
|
|
@@ -2970,9 +2971,9 @@ var ProjectGridCard = function ProjectGridCard(_ref) {
|
|
|
2970
2971
|
color: "gray.800"
|
|
2971
2972
|
}, formatMessage({
|
|
2972
2973
|
id: 'components.projectGridCard.certificationInProgress'
|
|
2973
|
-
})))
|
|
2974
|
+
}))), React.createElement(CreditsAvailableBadge, {
|
|
2974
2975
|
status: project.creditAvailability
|
|
2975
|
-
})));
|
|
2976
|
+
}))));
|
|
2976
2977
|
};
|
|
2977
2978
|
|
|
2978
2979
|
var TextWithCard = function TextWithCard(_ref) {
|
|
@@ -3273,6 +3274,7 @@ var ProjectsGrid = function ProjectsGrid(_ref2) {
|
|
|
3273
3274
|
}, children);
|
|
3274
3275
|
}
|
|
3275
3276
|
}, React.createElement(Box, {
|
|
3277
|
+
height: "full",
|
|
3276
3278
|
width: "full",
|
|
3277
3279
|
as: "a",
|
|
3278
3280
|
cursor: "pointer",
|
|
@@ -5593,8 +5595,8 @@ var Timeline = function Timeline(_ref) {
|
|
|
5593
5595
|
size: "sm",
|
|
5594
5596
|
onClick: showMoreItems,
|
|
5595
5597
|
m: [null, null, null, '8']
|
|
5596
|
-
},
|
|
5597
|
-
id:
|
|
5598
|
+
}, formatMessage({
|
|
5599
|
+
id: 'sections.timeline.showMoreButton'
|
|
5598
5600
|
}))))))));
|
|
5599
5601
|
};
|
|
5600
5602
|
|