@cupra/ui-react 2.0.0-canary.151 → 2.0.0-canary.153

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.
@@ -1,8 +1,9 @@
1
- import { type ReactElement } from 'react';
1
+ import { type ReactElement, type ReactNode } from 'react';
2
2
  import '@cupra/ui-kit/react/ds-currency';
3
3
  import { DsCurrencyAttrs } from '@cupra/ui-kit/react/types/ds-currency';
4
- type CurrencyProps = DsCurrencyAttrs & {
4
+ type CurrencyProps = {
5
5
  className?: string;
6
- };
6
+ children?: ReactNode;
7
+ } & DsCurrencyAttrs;
7
8
  export declare function Currency(props: CurrencyProps): ReactElement;
8
9
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cupra/ui-react",
3
- "version": "2.0.0-canary.151",
3
+ "version": "2.0.0-canary.153",
4
4
  "description": "React components library",
5
5
  "author": "SEAT S.A.",
6
6
  "license": "SEAT S.A. Library EULA 1.0",
@@ -51,7 +51,7 @@
51
51
  "peerDependencies": {
52
52
  "react": ">= 18.3.1 < 20",
53
53
  "react-dom": ">= 18.3.1 < 20",
54
- "@cupra/ui-kit": "2.0.0-canary.138",
54
+ "@cupra/ui-kit": "2.0.0-canary.140",
55
55
  "typescript": ">=5.0.0"
56
56
  },
57
57
  "dependencies": {
@@ -76,7 +76,7 @@
76
76
  "storybook": "^10.3.3",
77
77
  "typescript": "^5.8.2",
78
78
  "vite": "^8.0.5",
79
- "@cupra/ui-kit": "2.0.0-canary.138"
79
+ "@cupra/ui-kit": "2.0.0-canary.140"
80
80
  },
81
81
  "scripts": {
82
82
  "build": "rm -rf dist && pnpm --filter @cupra/ui-kit build:react && tsc --declaration --emitDeclarationOnly && BUILD_FORMAT=esm vite build --emptyOutDir false && BUILD_FORMAT=cjs vite build --emptyOutDir false",