@moderneinc/neo-styled-components 2.5.0-next.f787ac → 2.5.0-next.fbda18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moderneinc/neo-styled-components",
3
- "version": "2.5.0-next.f787ac",
3
+ "version": "2.5.0-next.fbda18",
4
4
  "type": "module",
5
5
  "description": "Styled MUI components for Moderne applications",
6
6
  "main": "dist/index.js",
@@ -68,7 +68,7 @@
68
68
  "@types/react": "^19.2.7",
69
69
  "conventional-changelog-conventionalcommits": "9.1.0",
70
70
  "mustache": "4.2.0",
71
- "rollup": "4.57.1",
71
+ "rollup": "4.59.0",
72
72
  "rollup-plugin-dts": "6.3.0",
73
73
  "semantic-release": "25.0.2",
74
74
  "tslib": "2.8.1",
@@ -1,26 +0,0 @@
1
- import type { ReactNode } from 'react';
2
- /**
3
- * Props for the NeoLargeCard component
4
- */
5
- export interface NeoLargeCardProps {
6
- /**
7
- * The content to display inside the component
8
- */
9
- children?: ReactNode;
10
- }
11
- /**
12
- * NeoLargeCard - TODO: Add component description
13
- *
14
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=5925-11
15
- *
16
- * Figma Props Mapping:
17
- * - TODO: Document Figma property mappings
18
- * - FigmaProp → reactProp
19
- *
20
- * Design Tokens Used:
21
- * - TODO: List design tokens used (e.g., semanticColors.text.primary, typography.body.medium)
22
- */
23
- export declare const NeoLargeCard: {
24
- ({ children, ...props }: NeoLargeCardProps): import("react/jsx-runtime").JSX.Element;
25
- displayName: string;
26
- };