@moderneinc/neo-styled-components 2.5.0-next.fd6db5 → 2.5.0-next.fefc86
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/Avatar/Avatar.d.ts +2 -1
- package/dist/FilterChip/FilterChip.d.ts +42 -0
- package/dist/IconWrapper/IconWrapper.d.ts +23 -0
- package/dist/MarketplaceLargeCard/MarketplaceLargeCard.d.ts +91 -0
- package/dist/NavigationItem/NavigationItem.d.ts +36 -0
- package/dist/Tag/Tag.d.ts +4 -3
- package/dist/index.d.ts +28 -19
- package/dist/index.esm.js +395 -148
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +397 -147
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/dist/FilterChips/FilterChips.d.ts +0 -34
- package/dist/LargeCard/LargeCard.d.ts +0 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moderneinc/neo-styled-components",
|
|
3
|
-
"version": "2.5.0-next.
|
|
3
|
+
"version": "2.5.0-next.fefc86",
|
|
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.
|
|
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,34 +0,0 @@
|
|
|
1
|
-
export interface NeoFilterChipsProps {
|
|
2
|
-
/**
|
|
3
|
-
* The filter label text
|
|
4
|
-
* @figma Text content in Figma
|
|
5
|
-
*/
|
|
6
|
-
label: string;
|
|
7
|
-
/**
|
|
8
|
-
* Whether the filter has active selections
|
|
9
|
-
* @default false
|
|
10
|
-
* @figma Property 1 (Active | active focused)
|
|
11
|
-
*/
|
|
12
|
-
active?: boolean;
|
|
13
|
-
/**
|
|
14
|
-
* Number of active filter selections (shown as badge when active)
|
|
15
|
-
* @default 0
|
|
16
|
-
*/
|
|
17
|
-
count?: number;
|
|
18
|
-
/**
|
|
19
|
-
* Click handler for opening the filter dropdown
|
|
20
|
-
*/
|
|
21
|
-
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* NeoFilterChips - Filter chip button used for filtering data
|
|
25
|
-
*
|
|
26
|
-
* @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=8257-239
|
|
27
|
-
*
|
|
28
|
-
* Figma Props Mapping:
|
|
29
|
-
* - Property 1 (default|hover ope|focused|Active|active focused) → active boolean + CSS states
|
|
30
|
-
*/
|
|
31
|
-
export declare const NeoFilterChips: {
|
|
32
|
-
({ label, active, count, onClick, ...props }: NeoFilterChipsProps): import("react/jsx-runtime").JSX.Element;
|
|
33
|
-
displayName: string;
|
|
34
|
-
};
|
|
@@ -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
|
-
};
|