@cupra/ui-react 2.0.0-canary.2 → 2.0.0-canary.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.
@@ -0,0 +1,11 @@
1
+ import { DsDialogFullscreenAttrs } from '@cupra/ui-kit/types/ds-dialog-fullscreen';
2
+ import { type ReactNode } from 'react';
3
+ import '@cupra/ui-kit/react/ds-dialog-fullscreen';
4
+ type DialogFullscreenProps = DsDialogFullscreenAttrs & {
5
+ className?: string;
6
+ withPortal?: boolean;
7
+ children: JSX.Element | JSX.Element[] | string;
8
+ onClose?: (event: CustomEvent) => void;
9
+ };
10
+ export declare function DialogFullscreen(props: DialogFullscreenProps): ReactNode;
11
+ export {};
@@ -0,0 +1,5 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj;
5
+ export declare const Default: Story;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cupra/ui-react",
3
- "version": "2.0.0-canary.2",
3
+ "version": "2.0.0-canary.3",
4
4
  "description": "React components library",
5
5
  "author": "SEAT S.A.",
6
6
  "license": "SEAT S.A. Library EULA 1.0",
@@ -44,7 +44,7 @@
44
44
  "peerDependencies": {
45
45
  "react": ">= 18.3.1 < 20",
46
46
  "react-dom": ">= 18.3.1 < 20",
47
- "@cupra/ui-kit": "1.1.0-canary.2"
47
+ "@cupra/ui-kit": "1.1.0-canary.3"
48
48
  },
49
49
  "dependencies": {
50
50
  "styled-components": "^6.1.16"
@@ -66,7 +66,7 @@
66
66
  "storybook": "^8.6.15",
67
67
  "typescript": "^5.8.2",
68
68
  "vite": "^6.4.1",
69
- "@cupra/ui-kit": "1.1.0-canary.2"
69
+ "@cupra/ui-kit": "1.1.0-canary.3"
70
70
  },
71
71
  "scripts": {
72
72
  "build": "rm -rf dist && tsc --declaration --emitDeclarationOnly && vite build --emptyOutDir false",