@moderneinc/neo-styled-components 5.0.0-next.e88b47 → 5.0.0

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.
Files changed (42) hide show
  1. package/dist/Alert/Alert.d.ts +15 -1
  2. package/dist/Badge/Badge.d.ts +16 -2
  3. package/dist/Breadcrumbs/Breadcrumbs.d.ts +0 -10
  4. package/dist/CanceledIcon/CanceledIcon.d.ts +11 -0
  5. package/dist/Checkbox/Checkbox.d.ts +5 -4
  6. package/dist/DatePickerListItem/DatePickerListItem.d.ts +2 -22
  7. package/dist/DatePickerMenu/DatePickerMenu.d.ts +2 -22
  8. package/dist/Dot/Dot.d.ts +11 -4
  9. package/dist/FilledStatusIcons/FilledStatusIcons.d.ts +41 -0
  10. package/dist/GeneralAvatar/GeneralAvatar.d.ts +1 -7
  11. package/dist/InputField/InputField.d.ts +12 -1
  12. package/dist/ListItemButton/ListItemButton.d.ts +12 -1
  13. package/dist/MenuItem/MenuItem.d.ts +31 -9
  14. package/dist/NavigationAvatar/NavigationAvatar.d.ts +1 -1
  15. package/dist/NavigationItem/NavigationItem.d.ts +21 -2
  16. package/dist/NeoAvatarCell/NeoAvatarCell.d.ts +1 -3
  17. package/dist/PageContent/PageContent.d.ts +12 -1
  18. package/dist/RadioButtonWithText/RadioButtonWithText.d.ts +2 -22
  19. package/dist/RipplingDot/RipplingDot.d.ts +12 -0
  20. package/dist/SelectField/SelectField.d.ts +64 -0
  21. package/dist/SideNav/NeoSideNavContext.d.ts +5 -0
  22. package/dist/SideNav/SideNav.d.ts +18 -25
  23. package/dist/TabPanel/TabPanel.d.ts +47 -0
  24. package/dist/Table/Table.d.ts +64 -0
  25. package/dist/Tabs/Tabs.d.ts +1 -1
  26. package/dist/Tag/Tag.d.ts +1 -2
  27. package/dist/ToggleButton/ToggleButton.d.ts +13 -18
  28. package/dist/ToggleButtonGroup/ToggleButtonGroup.d.ts +26 -0
  29. package/dist/ToggleButtonWithText/ToggleButtonWithText.d.ts +2 -22
  30. package/dist/Tooltip/Tooltip.d.ts +8 -5
  31. package/dist/TopNav/TopNav.d.ts +2 -22
  32. package/dist/TourModal/TourModal.d.ts +2 -22
  33. package/dist/TypologyControl/TypologyControl.d.ts +1 -1
  34. package/dist/VibratingDot/VibratingDot.d.ts +12 -0
  35. package/dist/index.d.ts +533 -106
  36. package/dist/index.esm.js +1042 -453
  37. package/dist/index.esm.js.map +1 -1
  38. package/dist/index.js +1060 -449
  39. package/dist/index.js.map +1 -1
  40. package/dist/utils/colorHelpers.d.ts +6 -0
  41. package/package.json +5 -5
  42. package/dist/utils/avatarColors.d.ts +0 -7
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Deterministically derives an HSL background color from a string seed.
3
+ * Produces pastel colors matching the aesthetic of the status.avatar.initials
4
+ * semantic tokens (fixed 80% saturation, 90% lightness; only hue varies).
5
+ */
6
+ export declare const avatarColorFromSeed: (seed: string | null | undefined) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moderneinc/neo-styled-components",
3
- "version": "5.0.0-next.e88b47",
3
+ "version": "5.0.0",
4
4
  "type": "module",
5
5
  "description": "Styled MUI components for Moderne applications",
6
6
  "main": "dist/index.js",
@@ -47,7 +47,7 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "@moderneinc/neo-design": "*",
50
- "lucide-react": "1.7.0"
50
+ "lucide-react": "1.16.0"
51
51
  },
52
52
  "sideEffects": false,
53
53
  "peerDependencies": {
@@ -87,11 +87,11 @@
87
87
  "@semantic-release/github": "12.0.2",
88
88
  "@semantic-release/npm": "13.1.3",
89
89
  "@semantic-release/release-notes-generator": "14.1.0",
90
- "@types/node": "25.6.0",
90
+ "@types/node": "25.9.3",
91
91
  "@types/react": "^19.2.7",
92
- "conventional-changelog-conventionalcommits": "9.3.0",
92
+ "conventional-changelog-conventionalcommits": "10.2.0",
93
93
  "mustache": "4.2.0",
94
- "rollup": "4.60.0",
94
+ "rollup": "4.62.2",
95
95
  "rollup-plugin-dts": "6.4.0",
96
96
  "semantic-release": "25.0.2",
97
97
  "tslib": "2.8.1",
@@ -1,7 +0,0 @@
1
- /**
2
- * Shared color palette for avatar components (GeneralAvatar, NavigationAvatar).
3
- * Maps color index (1-7) to background color token pairs.
4
- */
5
- export declare const avatarColorPalette: Record<number, {
6
- bg: string;
7
- }>;