From 9c461c52a4ea3c63183cf5ca632d353be448f122 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 03:29:58 +0000 Subject: [PATCH] Version Packages --- .../v1-1-0-components-blocks-theming.md | 40 ----------------- packages/blocks/CHANGELOG.md | 9 ++++ packages/blocks/package.json | 2 +- packages/core/CHANGELOG.md | 45 +++++++++++++++++++ packages/core/package.json | 2 +- packages/tokens/CHANGELOG.md | 40 +++++++++++++++++ packages/tokens/package.json | 2 +- 7 files changed, 97 insertions(+), 43 deletions(-) delete mode 100644 .changeset/v1-1-0-components-blocks-theming.md create mode 100644 packages/blocks/CHANGELOG.md diff --git a/.changeset/v1-1-0-components-blocks-theming.md b/.changeset/v1-1-0-components-blocks-theming.md deleted file mode 100644 index 3d403b2..0000000 --- a/.changeset/v1-1-0-components-blocks-theming.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -'@mindees/ui': minor -'@mindees/tokens': minor ---- - -## 1.1.0 — ~90 new primitives, easy theming, and the new `@mindees/blocks` package - -### `@mindees/ui` — ~90 new components - -Forms: `EmailInput`, `PhoneInput`, `NumberInput`, `CurrencyInput`, `OTPInput`, `PINInput`, `Select`, `MultiSelect`, `Autocomplete`, `TagInput`, `Slider`, `RangeSlider`, `DatePicker`, `DateRangePicker`, `TimePicker`, `FilePicker`, `ImagePicker`. - -Data display: `Table`, `DataGrid`, `Carousel`, `ImageGallery`, `TreeView`, `Calendar`, `KPICard`, `DetailView`, `KeyValueRow`, `DescriptionList`, `Pill`, `Feed`, `ActivityLog`. - -Overlays: `Dialog`, `ConfirmationDialog`, `Snackbar`, `Banner`, `Notification`, `DropdownMenu`, `ContextMenu`, `SidePanel`, `Lightbox`, `FullscreenOverlay`, `HoverCard`, `MegaMenu`, `CommandPalette`. - -States: `EmptyState`, `ErrorState`, `OfflineState`, `MaintenanceState`, `LoadingState`, `SuccessState`, `WarningState`, `InfoState`. - -Buttons: `SplitButton`, `ToggleButton`, `CloseButton`, `CopyButton`, `ShareButton`, `DownloadButton`, `UploadButton`, `RetryButton`, `BackButton`. - -Typography: `Paragraph`, `Subheading`, `HelperText`, `ErrorText`, `QuoteBlock`, `Mark`, `TruncatedText`, `ReadMore`, `RichText`. - -Media (gated peers with `MissingPeer` fallback): `ResponsiveImage`, `ImagePreview`, `FilePreview`, `Logo`, `VideoPlayer`, `AudioPlayer`, `PDFViewer`, `QRScanner`, `BarcodeScanner`, `LottieView`. - -Navigation & mobile: `BottomNavigation`, `UserMenu`, `SettingsMenu`, `GlobalSearch`, `SwipeActions`, `SwipeableCard`, `PullToRefresh`, `InfiniteScroll`. - -### Easy theming - -`createThemes({ light: { brand }, dark: { brand } })` generates a matched light+dark theme pair from a single brand color per scheme (hover/active shades and a readable on-accent color are derived). `themeTemplate` is a copy-edit starter. `createTheme` now deep-merges every token category and `density` actually scales the spacing rhythm. `@mindees/ui` re-exports `@mindees/tokens`. - -### Customizability - -Every primitive now forwards `style` (caller-wins), spreads native props, and forwards refs. - -### Cross-platform & correctness - -Web shadows (`boxShadow`), Layout Intelligence fixes (SafeAreaView/Chip tags, `Input → Button` spacing), `Stack` distribution fix. Perf-tuned for low-end Android (memo, native-driver animations, FlatList, hoisted styles). - -### `@mindees/tokens` - -Web `boxShadow` support in `resolveShadow`; documented 2026 4-point-grid spacing rationale. diff --git a/packages/blocks/CHANGELOG.md b/packages/blocks/CHANGELOG.md new file mode 100644 index 0000000..b483b00 --- /dev/null +++ b/packages/blocks/CHANGELOG.md @@ -0,0 +1,9 @@ +# @mindees/blocks + +## 1.1.1 + +### Patch Changes + +- Updated dependencies [[`ab9d543`](https://github.com/mindees/mindees-ui/commit/ab9d5432b4b96f8b096e86b232be5ebcbc74878f)]: + - @mindees/ui@1.1.0 + - @mindees/tokens@1.1.0 diff --git a/packages/blocks/package.json b/packages/blocks/package.json index 6161e22..95eaf11 100644 --- a/packages/blocks/package.json +++ b/packages/blocks/package.json @@ -1,6 +1,6 @@ { "name": "@mindees/blocks", - "version": "1.1.0", + "version": "1.1.1", "description": "Pre-built, composable screen blocks for React Native and Expo — auth forms, dashboards, commerce, social, settings — assembled from MindeesUI primitives. Drop in, restyle with tokens, ship faster.", "keywords": [ "react-native-blocks", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index bf30a74..fe56f50 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,50 @@ # @mindees/ui +## 1.1.0 + +### Minor Changes + +- [`ab9d543`](https://github.com/mindees/mindees-ui/commit/ab9d5432b4b96f8b096e86b232be5ebcbc74878f) Thanks [@aashir-athar](https://github.com/aashir-athar)! - ## 1.1.0 — ~90 new primitives, easy theming, and the new `@mindees/blocks` package + + ### `@mindees/ui` — ~90 new components + + Forms: `EmailInput`, `PhoneInput`, `NumberInput`, `CurrencyInput`, `OTPInput`, `PINInput`, `Select`, `MultiSelect`, `Autocomplete`, `TagInput`, `Slider`, `RangeSlider`, `DatePicker`, `DateRangePicker`, `TimePicker`, `FilePicker`, `ImagePicker`. + + Data display: `Table`, `DataGrid`, `Carousel`, `ImageGallery`, `TreeView`, `Calendar`, `KPICard`, `DetailView`, `KeyValueRow`, `DescriptionList`, `Pill`, `Feed`, `ActivityLog`. + + Overlays: `Dialog`, `ConfirmationDialog`, `Snackbar`, `Banner`, `Notification`, `DropdownMenu`, `ContextMenu`, `SidePanel`, `Lightbox`, `FullscreenOverlay`, `HoverCard`, `MegaMenu`, `CommandPalette`. + + States: `EmptyState`, `ErrorState`, `OfflineState`, `MaintenanceState`, `LoadingState`, `SuccessState`, `WarningState`, `InfoState`. + + Buttons: `SplitButton`, `ToggleButton`, `CloseButton`, `CopyButton`, `ShareButton`, `DownloadButton`, `UploadButton`, `RetryButton`, `BackButton`. + + Typography: `Paragraph`, `Subheading`, `HelperText`, `ErrorText`, `QuoteBlock`, `Mark`, `TruncatedText`, `ReadMore`, `RichText`. + + Media (gated peers with `MissingPeer` fallback): `ResponsiveImage`, `ImagePreview`, `FilePreview`, `Logo`, `VideoPlayer`, `AudioPlayer`, `PDFViewer`, `QRScanner`, `BarcodeScanner`, `LottieView`. + + Navigation & mobile: `BottomNavigation`, `UserMenu`, `SettingsMenu`, `GlobalSearch`, `SwipeActions`, `SwipeableCard`, `PullToRefresh`, `InfiniteScroll`. + + ### Easy theming + + `createThemes({ light: { brand }, dark: { brand } })` generates a matched light+dark theme pair from a single brand color per scheme (hover/active shades and a readable on-accent color are derived). `themeTemplate` is a copy-edit starter. `createTheme` now deep-merges every token category and `density` actually scales the spacing rhythm. `@mindees/ui` re-exports `@mindees/tokens`. + + ### Customizability + + Every primitive now forwards `style` (caller-wins), spreads native props, and forwards refs. + + ### Cross-platform & correctness + + Web shadows (`boxShadow`), Layout Intelligence fixes (SafeAreaView/Chip tags, `Input → Button` spacing), `Stack` distribution fix. Perf-tuned for low-end Android (memo, native-driver animations, FlatList, hoisted styles). + + ### `@mindees/tokens` + + Web `boxShadow` support in `resolveShadow`; documented 2026 4-point-grid spacing rationale. + +### Patch Changes + +- Updated dependencies [[`ab9d543`](https://github.com/mindees/mindees-ui/commit/ab9d5432b4b96f8b096e86b232be5ebcbc74878f)]: + - @mindees/tokens@1.1.0 + ## 1.0.1 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 689bcd0..d841698 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@mindees/ui", - "version": "1.0.1", + "version": "1.1.0", "description": "Universal React Native CLI + Expo component library with a deterministic Layout Intelligence Layer.", "keywords": [ "react-native", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 839fa8a..8700a5e 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,45 @@ # @mindees/tokens +## 1.1.0 + +### Minor Changes + +- [`ab9d543`](https://github.com/mindees/mindees-ui/commit/ab9d5432b4b96f8b096e86b232be5ebcbc74878f) Thanks [@aashir-athar](https://github.com/aashir-athar)! - ## 1.1.0 — ~90 new primitives, easy theming, and the new `@mindees/blocks` package + + ### `@mindees/ui` — ~90 new components + + Forms: `EmailInput`, `PhoneInput`, `NumberInput`, `CurrencyInput`, `OTPInput`, `PINInput`, `Select`, `MultiSelect`, `Autocomplete`, `TagInput`, `Slider`, `RangeSlider`, `DatePicker`, `DateRangePicker`, `TimePicker`, `FilePicker`, `ImagePicker`. + + Data display: `Table`, `DataGrid`, `Carousel`, `ImageGallery`, `TreeView`, `Calendar`, `KPICard`, `DetailView`, `KeyValueRow`, `DescriptionList`, `Pill`, `Feed`, `ActivityLog`. + + Overlays: `Dialog`, `ConfirmationDialog`, `Snackbar`, `Banner`, `Notification`, `DropdownMenu`, `ContextMenu`, `SidePanel`, `Lightbox`, `FullscreenOverlay`, `HoverCard`, `MegaMenu`, `CommandPalette`. + + States: `EmptyState`, `ErrorState`, `OfflineState`, `MaintenanceState`, `LoadingState`, `SuccessState`, `WarningState`, `InfoState`. + + Buttons: `SplitButton`, `ToggleButton`, `CloseButton`, `CopyButton`, `ShareButton`, `DownloadButton`, `UploadButton`, `RetryButton`, `BackButton`. + + Typography: `Paragraph`, `Subheading`, `HelperText`, `ErrorText`, `QuoteBlock`, `Mark`, `TruncatedText`, `ReadMore`, `RichText`. + + Media (gated peers with `MissingPeer` fallback): `ResponsiveImage`, `ImagePreview`, `FilePreview`, `Logo`, `VideoPlayer`, `AudioPlayer`, `PDFViewer`, `QRScanner`, `BarcodeScanner`, `LottieView`. + + Navigation & mobile: `BottomNavigation`, `UserMenu`, `SettingsMenu`, `GlobalSearch`, `SwipeActions`, `SwipeableCard`, `PullToRefresh`, `InfiniteScroll`. + + ### Easy theming + + `createThemes({ light: { brand }, dark: { brand } })` generates a matched light+dark theme pair from a single brand color per scheme (hover/active shades and a readable on-accent color are derived). `themeTemplate` is a copy-edit starter. `createTheme` now deep-merges every token category and `density` actually scales the spacing rhythm. `@mindees/ui` re-exports `@mindees/tokens`. + + ### Customizability + + Every primitive now forwards `style` (caller-wins), spreads native props, and forwards refs. + + ### Cross-platform & correctness + + Web shadows (`boxShadow`), Layout Intelligence fixes (SafeAreaView/Chip tags, `Input → Button` spacing), `Stack` distribution fix. Perf-tuned for low-end Android (memo, native-driver animations, FlatList, hoisted styles). + + ### `@mindees/tokens` + + Web `boxShadow` support in `resolveShadow`; documented 2026 4-point-grid spacing rationale. + ## 1.0.1 ### Patch Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index ba1e22f..58e4470 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@mindees/tokens", - "version": "1.0.1", + "version": "1.1.0", "description": "Design tokens for React Native and Expo — colour scales (semantic + high-contrast), typography, spacing, radii, shadows, motion, breakpoints, z-index, density. The foundation of MindeesUI, usable on its own.", "keywords": [ "design-tokens",