@moderneinc/neo-styled-components 2.5.0-next.ab39d3 → 2.5.0-next.ef98e2

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.ab39d3",
3
+ "version": "2.5.0-next.ef98e2",
4
4
  "type": "module",
5
5
  "description": "Styled MUI components for Moderne applications",
6
6
  "main": "dist/index.js",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@moderneinc/neo-design": "*",
49
- "lucide-react": "0.564.0"
49
+ "lucide-react": "0.575.0"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "@mui/material": "^7.0.0",
@@ -64,11 +64,11 @@
64
64
  "@semantic-release/github": "12.0.2",
65
65
  "@semantic-release/npm": "13.1.3",
66
66
  "@semantic-release/release-notes-generator": "14.1.0",
67
- "@types/node": "25.2.0",
67
+ "@types/node": "25.3.0",
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 NeoFilterChips component
4
- */
5
- export interface NeoFilterChipsProps {
6
- /**
7
- * The content to display inside the component
8
- */
9
- children?: ReactNode;
10
- }
11
- /**
12
- * NeoFilterChips - TODO: Add component description
13
- *
14
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=8257-239
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 NeoFilterChips: {
24
- ({ children, ...props }: NeoFilterChipsProps): import("react/jsx-runtime").JSX.Element;
25
- displayName: string;
26
- };
@@ -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
- };