@citygross/components_v2 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Accordion/Accordion.d.ts +1 -1
- package/dist/components/AlertBox/AlertBox.d.ts +1 -1
- package/dist/components/Box/Box.d.ts +1 -1
- package/dist/components/BoxArrow/BoxArrow.d.ts +2 -1
- package/dist/components/Button/ButtonAsLink/ButtonAsLink.d.ts +1 -1
- package/dist/components/Button/DivAsButton/DivAsButton.d.ts +1 -1
- package/dist/components/CartItemSummary/CartItemSummary.d.ts +3 -1
- package/dist/components/CartSummary/CartSummary.d.ts +2 -1
- package/dist/components/Dot/Dot.d.ts +2 -1
- package/dist/components/EmptyBox/EmptyBox.d.ts +1 -1
- package/dist/components/Flex/Flex.d.ts +1 -1
- package/dist/components/FormControl/FormControl.d.ts +1 -1
- package/dist/components/Header/Header.d.ts +2 -2
- package/dist/components/Header/HeaderCheckout.d.ts +1 -1
- package/dist/components/Input/Input.d.ts +1 -1
- package/dist/components/LinkButton/LinkButton.d.ts +1 -1
- package/dist/components/ListItem/ListItem.d.ts +1 -1
- package/dist/components/OrderTableMobile/OrderTableMobile.d.ts +1 -1
- package/dist/components/Pagination/Pagination.d.ts +3 -1
- package/dist/components/RippleContainer/RippleContainer.d.ts +1 -1
- package/dist/components/Spinner/Spinner.d.ts +2 -1
- package/dist/components/TimeLine/TimeLine.d.ts +2 -1
- package/dist/cssUtils/typography.css.d.ts +2 -2
- package/dist/typography/BodyText/BodyText.d.ts +6 -7
- package/dist/typography/BodyText/BodyText.js +5 -3
- package/dist/typography/H1/H1.d.ts +1 -1
- package/dist/typography/H2/H2.d.ts +1 -1
- package/dist/typography/H3/H3.d.ts +1 -1
- package/package.json +17 -17
|
@@ -5,6 +5,6 @@ declare type TAccordion = {
|
|
|
5
5
|
open: boolean;
|
|
6
6
|
className?: string;
|
|
7
7
|
};
|
|
8
|
-
declare const Accordion: ({ children, open, className }: TAccordion) => JSX.Element;
|
|
8
|
+
declare const Accordion: ({ children, open, className }: TAccordion) => React.JSX.Element;
|
|
9
9
|
|
|
10
10
|
export { Accordion, TAccordion };
|
|
@@ -12,6 +12,6 @@ declare type TAlertBox = {
|
|
|
12
12
|
padding?: TSpacingKeys;
|
|
13
13
|
withArrow?: boolean;
|
|
14
14
|
};
|
|
15
|
-
declare function AlertBox({ arrowPlacement, arrowSpacing, background, borderColor, children, icon, iconMinWidth, padding, withArrow }: TAlertBox): JSX.Element;
|
|
15
|
+
declare function AlertBox({ arrowPlacement, arrowSpacing, background, borderColor, children, icon, iconMinWidth, padding, withArrow }: TAlertBox): React.JSX.Element;
|
|
16
16
|
|
|
17
17
|
export { AlertBox, TAlertBox };
|
|
@@ -14,6 +14,6 @@ declare type TBox = {
|
|
|
14
14
|
marginVertical?: TSpacingKeys;
|
|
15
15
|
children: React.ReactNode;
|
|
16
16
|
};
|
|
17
|
-
declare function Box({ background, borderColor, borderRadius, hoverBackgroundColor, padding, paddingVertical, paddingHorizontal, margin, marginHorizontal, marginVertical, children }: TBox): JSX.Element;
|
|
17
|
+
declare function Box({ background, borderColor, borderRadius, hoverBackgroundColor, padding, paddingVertical, paddingHorizontal, margin, marginHorizontal, marginVertical, children }: TBox): React.JSX.Element;
|
|
18
18
|
|
|
19
19
|
export { Box, TBox };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { THardSpacingKeys, TPaletteKeys } from '@citygross/design-tokens_v2';
|
|
2
3
|
|
|
3
4
|
declare type TBoxArrow = {
|
|
@@ -5,6 +6,6 @@ declare type TBoxArrow = {
|
|
|
5
6
|
arrowSpacing?: THardSpacingKeys;
|
|
6
7
|
background?: TPaletteKeys;
|
|
7
8
|
};
|
|
8
|
-
declare const BoxArrow: ({ arrowPlacement, arrowSpacing, background }: TBoxArrow) => JSX.Element;
|
|
9
|
+
declare const BoxArrow: ({ arrowPlacement, arrowSpacing, background }: TBoxArrow) => React.JSX.Element;
|
|
9
10
|
|
|
10
11
|
export { BoxArrow, TBoxArrow };
|
|
@@ -4,6 +4,6 @@ declare type TButtonAsLink = {
|
|
|
4
4
|
children: React.ReactNode;
|
|
5
5
|
type?: 'button' | 'submit' | 'reset';
|
|
6
6
|
} & React.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
7
|
-
declare const ButtonAsLink: ({ children, type, className, ...props }: TButtonAsLink) => JSX.Element;
|
|
7
|
+
declare const ButtonAsLink: ({ children, type, className, ...props }: TButtonAsLink) => React.JSX.Element;
|
|
8
8
|
|
|
9
9
|
export { ButtonAsLink, TButtonAsLink };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { TButtonRoot } from '../Button.types.js';
|
|
3
3
|
|
|
4
|
-
declare const DivAsButton: ({ boxShadow, children, circle, fullWidth, rounded, size, variant, className, ...props }: TButtonRoot & React.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
4
|
+
declare const DivAsButton: ({ boxShadow, children, circle, fullWidth, rounded, size, variant, className, ...props }: TButtonRoot & React.HTMLAttributes<HTMLDivElement>) => React.JSX.Element;
|
|
5
5
|
|
|
6
6
|
export { DivAsButton };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
1
3
|
declare type TSummaryItem = {
|
|
2
4
|
amount: number;
|
|
3
5
|
cancelledAmount: number;
|
|
@@ -10,6 +12,6 @@ declare type TCartItemSummary = {
|
|
|
10
12
|
withParenthesis?: boolean;
|
|
11
13
|
unit?: string;
|
|
12
14
|
};
|
|
13
|
-
declare const CartItemSummary: ({ product, withParenthesis, unit }: TCartItemSummary) => JSX.Element;
|
|
15
|
+
declare const CartItemSummary: ({ product, withParenthesis, unit }: TCartItemSummary) => React.JSX.Element;
|
|
14
16
|
|
|
15
17
|
export { CartItemSummary, TCartItemSummary, TSummaryItem };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { TSummaryItem } from '../CartItemSummary/CartItemSummary.js';
|
|
2
3
|
|
|
3
4
|
declare type TCartSummary = {
|
|
@@ -21,6 +22,6 @@ declare type TCartSummary = {
|
|
|
21
22
|
totalLabel?: string;
|
|
22
23
|
totalTaxAmount: number;
|
|
23
24
|
};
|
|
24
|
-
declare function CartSummary({ saveLabel, shippingLabel, totalLabel, taxLabel, ...cartSummary }: TCartSummary): JSX.Element;
|
|
25
|
+
declare function CartSummary({ saveLabel, shippingLabel, totalLabel, taxLabel, ...cartSummary }: TCartSummary): React.JSX.Element;
|
|
25
26
|
|
|
26
27
|
export { CartSummary, TCartSummary };
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { TPaletteKeys } from '@citygross/design-tokens_v2';
|
|
2
3
|
|
|
3
4
|
declare type TDot = {
|
|
4
5
|
color?: TPaletteKeys;
|
|
5
6
|
shadow?: TPaletteKeys;
|
|
6
7
|
};
|
|
7
|
-
declare function Dot({ color, shadow }: TDot): JSX.Element;
|
|
8
|
+
declare function Dot({ color, shadow }: TDot): React.JSX.Element;
|
|
8
9
|
|
|
9
10
|
export { Dot, TDot };
|
|
@@ -5,6 +5,6 @@ declare type TEmptyBox = {
|
|
|
5
5
|
icon?: React.ReactNode;
|
|
6
6
|
description?: React.ReactNode;
|
|
7
7
|
};
|
|
8
|
-
declare const EmptyBox: ({ title, description, icon }: TEmptyBox) => JSX.Element;
|
|
8
|
+
declare const EmptyBox: ({ title, description, icon }: TEmptyBox) => React.JSX.Element;
|
|
9
9
|
|
|
10
10
|
export { EmptyBox, TEmptyBox };
|
|
@@ -6,6 +6,6 @@ declare type TFlex = {
|
|
|
6
6
|
justifyContent?: 'center' | 'flex-start' | 'flex-end' | 'space-between' | 'space-around' | 'space-evenly';
|
|
7
7
|
row?: boolean;
|
|
8
8
|
} & React.HTMLAttributes<HTMLDivElement>;
|
|
9
|
-
declare const Flex: ({ children, className, alignItems, gap, justifyContent, row, style, ...props }: TFlex) => JSX.Element;
|
|
9
|
+
declare const Flex: ({ children, className, alignItems, gap, justifyContent, row, style, ...props }: TFlex) => React.JSX.Element;
|
|
10
10
|
|
|
11
11
|
export { Flex, TFlex };
|
|
@@ -12,6 +12,6 @@ declare type TFormControl = {
|
|
|
12
12
|
isValid?: boolean;
|
|
13
13
|
screenWidth?: '1/2' | '1/3' | '1/4';
|
|
14
14
|
};
|
|
15
|
-
declare function FormControl({ title, children, errorMessage, isValid, screenWidth }: TFormControl): JSX.Element;
|
|
15
|
+
declare function FormControl({ title, children, errorMessage, isValid, screenWidth }: TFormControl): React.JSX.Element;
|
|
16
16
|
|
|
17
17
|
export { FormControl, TFormControl, TScreenWidth };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
2
|
|
|
3
3
|
declare type THeader = {
|
|
4
4
|
btnLabel?: string;
|
|
@@ -8,6 +8,6 @@ declare type THeader = {
|
|
|
8
8
|
headerLink?: ReactNode;
|
|
9
9
|
sideModal?: ReactNode;
|
|
10
10
|
};
|
|
11
|
-
declare const Header: ({ btnLabel, btnOnClick, onMenuClick, sideModal, headerLink }: THeader) => JSX.Element;
|
|
11
|
+
declare const Header: ({ btnLabel, btnOnClick, onMenuClick, sideModal, headerLink }: THeader) => React.JSX.Element;
|
|
12
12
|
|
|
13
13
|
export { Header, THeader };
|
|
@@ -6,6 +6,6 @@ declare type THeaderCheckout = {
|
|
|
6
6
|
headerLinkAriaLabel?: string;
|
|
7
7
|
headerLinkOnClick?: (e: React.MouseEvent<HTMLAnchorElement>) => void;
|
|
8
8
|
};
|
|
9
|
-
declare const HeaderCheckout: ({ headerLinkText, headerLinkHref, headerLinkAriaLabel, headerLinkOnClick }: THeaderCheckout) => JSX.Element;
|
|
9
|
+
declare const HeaderCheckout: ({ headerLinkText, headerLinkHref, headerLinkAriaLabel, headerLinkOnClick }: THeaderCheckout) => React.JSX.Element;
|
|
10
10
|
|
|
11
11
|
export { HeaderCheckout, THeaderCheckout };
|
|
@@ -11,6 +11,6 @@ declare type TInput = InputHTMLAttributes<HTMLInputElement> & {
|
|
|
11
11
|
};
|
|
12
12
|
declare function Input({ icon, iconOnClick, flexGrow, inValid, fontSize, inputSize, inputRef, ...props }: TInput & {
|
|
13
13
|
inputRef?: React.RefObject<HTMLInputElement>;
|
|
14
|
-
}): JSX.Element;
|
|
14
|
+
}): React.JSX.Element;
|
|
15
15
|
|
|
16
16
|
export { Input, TInput };
|
|
@@ -7,6 +7,6 @@ declare type TLinkButton = {
|
|
|
7
7
|
onClick?: () => void;
|
|
8
8
|
ariaLabel?: string;
|
|
9
9
|
};
|
|
10
|
-
declare const LinkButton: ({ onClick, children, variant, ariaLabel, disabled }: TLinkButton) => JSX.Element;
|
|
10
|
+
declare const LinkButton: ({ onClick, children, variant, ariaLabel, disabled }: TLinkButton) => React.JSX.Element;
|
|
11
11
|
|
|
12
12
|
export { LinkButton, TLinkButton };
|
|
@@ -24,6 +24,6 @@ declare type TListItem = {
|
|
|
24
24
|
alignment?: EListItemAlignment;
|
|
25
25
|
textColor?: TPaletteKeys;
|
|
26
26
|
};
|
|
27
|
-
declare function ListItem({ item, loading, isSmall, fallBackImage, imageAutoHeight, boldHeader, smallSkeleton, children, alignment, textColor, usedInSearch }: TListItem): JSX.Element;
|
|
27
|
+
declare function ListItem({ item, loading, isSmall, fallBackImage, imageAutoHeight, boldHeader, smallSkeleton, children, alignment, textColor, usedInSearch }: TListItem): React.JSX.Element;
|
|
28
28
|
|
|
29
29
|
export { EListItemAlignment, ListItem, TItem, TListItem };
|
|
@@ -8,6 +8,6 @@ declare type TMobileOrderLine = {
|
|
|
8
8
|
cancelled?: boolean;
|
|
9
9
|
withBorder?: boolean;
|
|
10
10
|
};
|
|
11
|
-
declare const MobileOrderLine: ({ deliveryString, orderAmount, orderStatus, orderNumber, cancelled, withBorder }: TMobileOrderLine) => JSX.Element;
|
|
11
|
+
declare const MobileOrderLine: ({ deliveryString, orderAmount, orderStatus, orderNumber, cancelled, withBorder }: TMobileOrderLine) => React.JSX.Element;
|
|
12
12
|
|
|
13
13
|
export { MobileOrderLine };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
1
3
|
declare type TPagination = {
|
|
2
4
|
currentPage: number;
|
|
3
5
|
fetchItems: (page: number) => void;
|
|
@@ -7,6 +9,6 @@ declare type TPagination = {
|
|
|
7
9
|
setPage?: (page: number) => void;
|
|
8
10
|
totalItems?: number;
|
|
9
11
|
};
|
|
10
|
-
declare function Pagination({ currentPage, fetchItems, itemsPerPage, onPageChange, pageLabel, setPage, totalItems }: TPagination): JSX.Element;
|
|
12
|
+
declare function Pagination({ currentPage, fetchItems, itemsPerPage, onPageChange, pageLabel, setPage, totalItems }: TPagination): React.JSX.Element;
|
|
11
13
|
|
|
12
14
|
export { Pagination, TPagination };
|
|
@@ -5,6 +5,6 @@ declare type TRippleContainer = {
|
|
|
5
5
|
color?: TPaletteKeys;
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
};
|
|
8
|
-
declare function RippleContainer({ color, children }: TRippleContainer): JSX.Element;
|
|
8
|
+
declare function RippleContainer({ color, children }: TRippleContainer): React.JSX.Element;
|
|
9
9
|
|
|
10
10
|
export { RippleContainer, TRippleContainer };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { TPaletteKeys } from '@citygross/design-tokens_v2';
|
|
2
3
|
|
|
3
4
|
declare type TSpinner = {
|
|
@@ -5,6 +6,6 @@ declare type TSpinner = {
|
|
|
5
6
|
spinnerColor?: TPaletteKeys;
|
|
6
7
|
size?: 'small' | 'medium' | 'large';
|
|
7
8
|
};
|
|
8
|
-
declare const Spinner: ({ borderColor, size, spinnerColor }: TSpinner) => JSX.Element;
|
|
9
|
+
declare const Spinner: ({ borderColor, size, spinnerColor }: TSpinner) => React.JSX.Element;
|
|
9
10
|
|
|
10
11
|
export { Spinner, TSpinner };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { TPaletteKeys } from '@citygross/design-tokens_v2';
|
|
2
3
|
|
|
3
4
|
declare type TTimelineItem = {
|
|
@@ -20,6 +21,6 @@ declare type TTimeline = {
|
|
|
20
21
|
color?: TPaletteKeys;
|
|
21
22
|
reversed?: boolean;
|
|
22
23
|
};
|
|
23
|
-
declare function Timeline({ items, title, mobileTitle, current, dotColor, dotActiveColor, dotShadow, borderStyle, borderColor, color, reversed, completedColor }: TTimeline): JSX.Element;
|
|
24
|
+
declare function Timeline({ items, title, mobileTitle, current, dotColor, dotActiveColor, dotShadow, borderStyle, borderColor, color, reversed, completedColor }: TTimeline): React.JSX.Element;
|
|
24
25
|
|
|
25
26
|
export { TTimeline, TTimelineItem, Timeline };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare type TTextDecoration = 'underline' | 'lineThrough';
|
|
2
2
|
declare type TTextAlign = 'center' | 'left' | 'right';
|
|
3
3
|
declare type TBodyTextSizeKeys = 'tiny' | 'extraSmall' | 'small' | 'default';
|
|
4
|
-
declare const fontFamily: Record<"display" | "
|
|
5
|
-
declare const fontSize: Record<"
|
|
4
|
+
declare const fontFamily: Record<"display" | "primary" | "code", string>;
|
|
5
|
+
declare const fontSize: Record<"xs" | "code" | "s1" | "s2" | "s3" | "s4" | "m1" | "m2" | "l1", string>;
|
|
6
6
|
declare const fontWeight: Record<"bold" | "medium" | "regular" | "semiBold", string>;
|
|
7
7
|
declare const lineHeight: Record<"xs" | "s1" | "s2" | "m1" | "m2" | "l1" | "m3", string>;
|
|
8
8
|
declare const textAlign: Record<"left" | "right" | "center", string>;
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { TPaletteKeys, TFontWeightKeys } from '@citygross/design-tokens_v2';
|
|
3
|
-
import { TBodyTextSizeKeys,
|
|
3
|
+
import { TBodyTextSizeKeys, TTextAlign, TTextDecoration } from '../../cssUtils/typography.css.js';
|
|
4
4
|
|
|
5
5
|
declare type TBodyText = {
|
|
6
|
-
|
|
7
|
-
size?: TBodyTextSizeKeys;
|
|
6
|
+
className?: string;
|
|
8
7
|
color?: TPaletteKeys;
|
|
9
|
-
textDecoration?: TTextDecoration;
|
|
10
8
|
fontWeight?: TFontWeightKeys;
|
|
9
|
+
size?: TBodyTextSizeKeys;
|
|
11
10
|
textAlign?: TTextAlign;
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
declare const BodyText: ({ children, color, fontWeight,
|
|
11
|
+
textDecoration?: TTextDecoration;
|
|
12
|
+
} & React.ComponentPropsWithoutRef<'p'>;
|
|
13
|
+
declare const BodyText: ({ children, className, color, fontWeight, size, textAlign, textDecoration, ...props }: TBodyText) => React.JSX.Element;
|
|
15
14
|
|
|
16
15
|
export { BodyText, TBodyText };
|
|
@@ -3,12 +3,13 @@ import { bodyText } from './BodyText.css.vanilla.js';
|
|
|
3
3
|
|
|
4
4
|
const BodyText = ({
|
|
5
5
|
children,
|
|
6
|
+
className,
|
|
6
7
|
color,
|
|
7
8
|
fontWeight,
|
|
8
|
-
textDecoration,
|
|
9
9
|
size,
|
|
10
10
|
textAlign,
|
|
11
|
-
|
|
11
|
+
textDecoration,
|
|
12
|
+
...props
|
|
12
13
|
}) => {
|
|
13
14
|
return /* @__PURE__ */ React.createElement(
|
|
14
15
|
"p",
|
|
@@ -19,7 +20,8 @@ const BodyText = ({
|
|
|
19
20
|
textDecoration,
|
|
20
21
|
textAlign,
|
|
21
22
|
fontWeight
|
|
22
|
-
})} ${className}
|
|
23
|
+
})} ${className}`,
|
|
24
|
+
...props
|
|
23
25
|
},
|
|
24
26
|
children
|
|
25
27
|
);
|
|
@@ -8,6 +8,6 @@ declare type TH1 = {
|
|
|
8
8
|
fontWeight?: TFontWeightKeys;
|
|
9
9
|
className?: string;
|
|
10
10
|
};
|
|
11
|
-
declare const H1: ({ children, color, fontWeight, lineThrough, className }: TH1) => JSX.Element;
|
|
11
|
+
declare const H1: ({ children, color, fontWeight, lineThrough, className }: TH1) => React.JSX.Element;
|
|
12
12
|
|
|
13
13
|
export { H1, TH1 };
|
|
@@ -8,6 +8,6 @@ declare type TH2 = {
|
|
|
8
8
|
fontWeight?: TFontWeightKeys;
|
|
9
9
|
className?: string;
|
|
10
10
|
};
|
|
11
|
-
declare const H2: ({ children, color, fontWeight, lineThrough, className }: TH2) => JSX.Element;
|
|
11
|
+
declare const H2: ({ children, color, fontWeight, lineThrough, className }: TH2) => React.JSX.Element;
|
|
12
12
|
|
|
13
13
|
export { H2, TH2 };
|
|
@@ -8,6 +8,6 @@ declare type TH3 = {
|
|
|
8
8
|
fontWeight?: TFontWeightKeys;
|
|
9
9
|
className?: string;
|
|
10
10
|
};
|
|
11
|
-
declare const H3: ({ children, className, color, fontWeight, lineThrough }: TH3) => JSX.Element;
|
|
11
|
+
declare const H3: ({ children, className, color, fontWeight, lineThrough }: TH3) => React.JSX.Element;
|
|
12
12
|
|
|
13
13
|
export { H3, TH3 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@citygross/components_v2",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -40,42 +40,42 @@
|
|
|
40
40
|
"@storybook/manager-webpack5": "^6.5.16",
|
|
41
41
|
"@storybook/react": "^6.5.16",
|
|
42
42
|
"@storybook/storybook-deployer": "^2.8.7",
|
|
43
|
-
"@testing-library/jest-dom": "^5.
|
|
44
|
-
"@testing-library/react": "^
|
|
45
|
-
"@types/jest": "^
|
|
46
|
-
"@types/react": "^
|
|
47
|
-
"@types/react-dom": "^
|
|
43
|
+
"@testing-library/jest-dom": "^5.16.0",
|
|
44
|
+
"@testing-library/react": "^14.0.0",
|
|
45
|
+
"@types/jest": "^29.0.0",
|
|
46
|
+
"@types/react": "^18.3.1",
|
|
47
|
+
"@types/react-dom": "^18.3.1",
|
|
48
48
|
"@types/react-slick": "^0.23.13",
|
|
49
49
|
"@vanilla-extract/rollup-plugin": "1.3.10",
|
|
50
50
|
"@vanilla-extract/webpack-plugin": "2.3.14",
|
|
51
51
|
"awesome-typescript-loader": "^5.2.1",
|
|
52
52
|
"copyfiles": "^2.4.1",
|
|
53
|
-
"jest": "^
|
|
54
|
-
"react": "^
|
|
53
|
+
"jest": "^29.0.0",
|
|
54
|
+
"react": "^18.3.1",
|
|
55
55
|
"react-docgen-typescript-loader": "^3.7.2",
|
|
56
|
-
"react-dom": "^
|
|
57
|
-
"ts-jest": "^
|
|
56
|
+
"react-dom": "^18.3.1",
|
|
57
|
+
"ts-jest": "^29.0.0",
|
|
58
58
|
"ts-loader": "^9.2.3",
|
|
59
59
|
"webpack-merge": "6.0.1"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"react": "^
|
|
63
|
-
"react-dom": "^
|
|
62
|
+
"react": "^18.3.1",
|
|
63
|
+
"react-dom": "^18.3.1"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@citygross/design-tokens_v2": "^0.0.7",
|
|
67
|
-
"@citygross/icons_v2": "^0.0.
|
|
68
|
-
"@citygross/react-use-bg-wizard": "^0.0.
|
|
67
|
+
"@citygross/icons_v2": "^0.0.6",
|
|
68
|
+
"@citygross/react-use-bg-wizard": "^0.0.13",
|
|
69
69
|
"@citygross/typography": "^0.0.89",
|
|
70
|
-
"@citygross/utils": "^0.0.
|
|
70
|
+
"@citygross/utils": "^0.0.45",
|
|
71
71
|
"@vanilla-extract/css": "^1.14.1",
|
|
72
72
|
"@vanilla-extract/css-utils": "^0.1.3",
|
|
73
73
|
"@vanilla-extract/recipes": "^0.5.1",
|
|
74
|
-
"framer-motion": "^4.1.17",
|
|
75
74
|
"moment": "^2.29.1",
|
|
75
|
+
"motion": "^12.34.3",
|
|
76
76
|
"react-loading-skeleton": "^2.2.0",
|
|
77
77
|
"react-slick": "^0.30.1",
|
|
78
78
|
"slick-carousel": "^1.8.1"
|
|
79
79
|
},
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "507497cf84edeeff4b9ac9019f56323aef8a7401"
|
|
81
81
|
}
|