From 1aea2caccd56d1c189d8e02af58faf673739dd72 Mon Sep 17 00:00:00 2001 From: manojleaton Date: Thu, 18 Jan 2024 17:43:45 +0530 Subject: [PATCH 1/4] R30 release notes --- src/docs/release-notes/R30/FullNotes.mdx | 33 ++++++++++++++++++++++++ src/docs/release-notes/R30/Summary.mdx | 1 + src/docs/release-notes/index.tsx | 10 +++++++ 3 files changed, 44 insertions(+) create mode 100644 src/docs/release-notes/R30/FullNotes.mdx create mode 100644 src/docs/release-notes/R30/Summary.mdx diff --git a/src/docs/release-notes/R30/FullNotes.mdx b/src/docs/release-notes/R30/FullNotes.mdx new file mode 100644 index 00000000..5cd11d45 --- /dev/null +++ b/src/docs/release-notes/R30/FullNotes.mdx @@ -0,0 +1,33 @@ +import React from 'react'; + +## React Native Component Library + +- Updated Component Library with several changes by utilizing React Native Paper V5 with Material Design V3. + - Typography and IconWrapper have been removed. + - 5 new components have been added, namely Chip, Grade, Icon, IconSwitch and Overline. + - All previously introduced themed components have been removed. + +## React Native Themes + +- Updated themes to use Material Design 3 styled palettes and React Native Paper v5 theme structure. +- Added required custom color variants along with React Native Paper v5 default color variants. + +## Colors + +- Moved Branding colors under @brightlayer-ui/colors/branding package. +- Updated UI colors and Branding colors as per new Material Design 3. +- Removed dependency of @brightlayer-ui/types and moved type in @brightlayer-ui/colors package. + +## Package Summary + +### React Native Component Library + +- @brightlayer-ui/react-native-components v8.0.0 ([Changelog](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/CHANGELOG.md)) + +### React Native Themes + +- @brightlayer-ui/react-native-themes v7.0.0 ([Changelog](https://github.com/etn-ccis/blui-react-native-themes/blob/dev/CHANGELOG.md)) + +### Colors + +- @brightlayer-ui/colors v4.0.0 ([Changelog](https://github.com/etn-ccis/blui-colors/blob/dev/CHANGELOG.md)) diff --git a/src/docs/release-notes/R30/Summary.mdx b/src/docs/release-notes/R30/Summary.mdx new file mode 100644 index 00000000..1da51f7b --- /dev/null +++ b/src/docs/release-notes/R30/Summary.mdx @@ -0,0 +1 @@ +Updated [React Native Component Library](https://www.npmjs.com/package/@brightlayer-ui/react-native-components) package by utilizing React Native Paper V5 with Material Design V3, Updated [React Native Themes](https://www.npmjs.com/package/@brightlayer-ui/react-native-themes) package to use Material Design 3 styled palettes and React Native Paper v5 theme structure, Updated UI colors and Branding colors in [Colors](https://www.npmjs.com/package/@brightlayer-ui/colors) package as per new Material Design 3. \ No newline at end of file diff --git a/src/docs/release-notes/index.tsx b/src/docs/release-notes/index.tsx index 60ac6526..ce023b4e 100644 --- a/src/docs/release-notes/index.tsx +++ b/src/docs/release-notes/index.tsx @@ -1,6 +1,7 @@ import React from 'react'; // Full Release Notes +import R30 from './R30/FullNotes.mdx'; import R29 from './R29/FullNotes.mdx'; import R28 from './R28/FullNotes.mdx'; import R27 from './R27/FullNotes.mdx'; @@ -26,6 +27,7 @@ import R8 from './R8/FullNotes.mdx'; import R7 from './R7/FullNotes.mdx'; // Summaries (for Landing Page) +import R30Summary from './R30/Summary.mdx'; import R29Summary from './R29/Summary.mdx'; import R28Summary from './R28/Summary.mdx'; import R27Summary from './R27/Summary.mdx'; @@ -57,7 +59,15 @@ export type ReleaseInfo = { details: JSX.Element; summary: JSX.Element; }; + const Releases: ReleaseInfo[] = [ + { + title: 'R30', + date: 'January 2024', + version: '3.2.4', + details: , + summary: , + }, { title: 'R29', date: 'October 2023', From 27f2b9429f3c3698584b3271941922697f760397 Mon Sep 17 00:00:00 2001 From: manojleaton Date: Mon, 22 Jan 2024 18:40:15 +0530 Subject: [PATCH 2/4] review comments changes --- src/docs/release-notes/R30/FullNotes.mdx | 17 +++++++---------- src/docs/release-notes/R30/Summary.mdx | 3 ++- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/src/docs/release-notes/R30/FullNotes.mdx b/src/docs/release-notes/R30/FullNotes.mdx index 5cd11d45..4d89efe7 100644 --- a/src/docs/release-notes/R30/FullNotes.mdx +++ b/src/docs/release-notes/R30/FullNotes.mdx @@ -4,7 +4,7 @@ import React from 'react'; - Updated Component Library with several changes by utilizing React Native Paper V5 with Material Design V3. - Typography and IconWrapper have been removed. - - 5 new components have been added, namely Chip, Grade, Icon, IconSwitch and Overline. + - 5 new components have been added, namely [Chip](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/docs/Chip.md), [Grade](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/docs/Grade.md), [Icon](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/docs/Icons.md#icon-as-a-component), [IconSwitch](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/docs/IconSwitch.md) and [Overline](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/docs/Overline.md). - All previously introduced themed components have been removed. ## React Native Themes @@ -14,20 +14,17 @@ import React from 'react'; ## Colors -- Moved Branding colors under @brightlayer-ui/colors/branding package. -- Updated UI colors and Branding colors as per new Material Design 3. +- Moved Branding colors under @brightlayer-ui/colors package. +- Updated UI colors and Branding colors according to new Material Design 3. - Removed dependency of @brightlayer-ui/types and moved type in @brightlayer-ui/colors package. ## Package Summary -### React Native Component Library +### React Native -- @brightlayer-ui/react-native-components v8.0.0 ([Changelog](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/CHANGELOG.md)) - -### React Native Themes - -- @brightlayer-ui/react-native-themes v7.0.0 ([Changelog](https://github.com/etn-ccis/blui-react-native-themes/blob/dev/CHANGELOG.md)) +- @brightlayer-ui/react-native-components v8.0.0 ([Changelog](https://github.com/etn-ccis/blui-react-native-component-library/blob/master/CHANGELOG.md)) +- @brightlayer-ui/react-native-themes v7.0.0 ([Changelog](https://github.com/etn-ccis/blui-react-native-themes/blob/master/CHANGELOG.md)) ### Colors -- @brightlayer-ui/colors v4.0.0 ([Changelog](https://github.com/etn-ccis/blui-colors/blob/dev/CHANGELOG.md)) +- @brightlayer-ui/colors v4.0.0 ([Changelog](https://github.com/etn-ccis/blui-colors/blob/master/CHANGELOG.md)) diff --git a/src/docs/release-notes/R30/Summary.mdx b/src/docs/release-notes/R30/Summary.mdx index 1da51f7b..264f11b9 100644 --- a/src/docs/release-notes/R30/Summary.mdx +++ b/src/docs/release-notes/R30/Summary.mdx @@ -1 +1,2 @@ -Updated [React Native Component Library](https://www.npmjs.com/package/@brightlayer-ui/react-native-components) package by utilizing React Native Paper V5 with Material Design V3, Updated [React Native Themes](https://www.npmjs.com/package/@brightlayer-ui/react-native-themes) package to use Material Design 3 styled palettes and React Native Paper v5 theme structure, Updated UI colors and Branding colors in [Colors](https://www.npmjs.com/package/@brightlayer-ui/colors) package as per new Material Design 3. \ No newline at end of file +Updated [React Native Component Library](https://www.npmjs.com/package/@brightlayer-ui/react-native-components) and [Themes](https://www.npmjs.com/package/@brightlayer-ui/react-native-themes) packages to use the latest version of material design guidelines and React native paper. +Updated UI [Colors](https://www.npmjs.com/package/@brightlayer-ui/colors) and Branding colors according to the new Material Design 3. From ef4e0df3d56d151bdb379374bc0be9ddad933be3 Mon Sep 17 00:00:00 2001 From: manojleaton Date: Tue, 23 Jan 2024 12:49:43 +0530 Subject: [PATCH 3/4] updated blui version and links --- src/docs/release-notes/R30/FullNotes.mdx | 2 +- src/docs/release-notes/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/release-notes/R30/FullNotes.mdx b/src/docs/release-notes/R30/FullNotes.mdx index 4d89efe7..9db09d6d 100644 --- a/src/docs/release-notes/R30/FullNotes.mdx +++ b/src/docs/release-notes/R30/FullNotes.mdx @@ -4,7 +4,7 @@ import React from 'react'; - Updated Component Library with several changes by utilizing React Native Paper V5 with Material Design V3. - Typography and IconWrapper have been removed. - - 5 new components have been added, namely [Chip](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/docs/Chip.md), [Grade](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/docs/Grade.md), [Icon](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/docs/Icons.md#icon-as-a-component), [IconSwitch](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/docs/IconSwitch.md) and [Overline](https://github.com/etn-ccis/blui-react-native-component-library/blob/dev/docs/Overline.md). + - 5 new components have been added, namely [Chip](https://brightlayer-ui-components.github.io/react-native/?path=/info/components-documentation--chip), [Grade](https://brightlayer-ui-components.github.io/react-native/?path=/info/components-documentation--grade), [Icon](https://brightlayer-ui-components.github.io/react-native/?path=/info/components-documentation--icons), [IconSwitch](https://brightlayer-ui-components.github.io/react-native/?path=/info/components-documentation--icon-switch) and [Overline](https://brightlayer-ui-components.github.io/react-native/?path=/info/components-documentation--overline). - All previously introduced themed components have been removed. ## React Native Themes diff --git a/src/docs/release-notes/index.tsx b/src/docs/release-notes/index.tsx index ce023b4e..34a16f03 100644 --- a/src/docs/release-notes/index.tsx +++ b/src/docs/release-notes/index.tsx @@ -64,7 +64,7 @@ const Releases: ReleaseInfo[] = [ { title: 'R30', date: 'January 2024', - version: '3.2.4', + version: '4.0.0', details: , summary: , }, From f460156089ec0f02598b1591b496cfd5676277f3 Mon Sep 17 00:00:00 2001 From: manojleaton <130662346+manojleaton@users.noreply.github.com> Date: Wed, 24 Jan 2024 10:48:35 +0530 Subject: [PATCH 4/4] Update src/docs/release-notes/R30/FullNotes.mdx Co-authored-by: huayunh <96_mouse@sina.com> --- src/docs/release-notes/R30/FullNotes.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/docs/release-notes/R30/FullNotes.mdx b/src/docs/release-notes/R30/FullNotes.mdx index 9db09d6d..b2741561 100644 --- a/src/docs/release-notes/R30/FullNotes.mdx +++ b/src/docs/release-notes/R30/FullNotes.mdx @@ -14,9 +14,9 @@ import React from 'react'; ## Colors -- Moved Branding colors under @brightlayer-ui/colors package. -- Updated UI colors and Branding colors according to new Material Design 3. -- Removed dependency of @brightlayer-ui/types and moved type in @brightlayer-ui/colors package. +- Updated UI colors to match Material Design 3's color palette structure. +- Moved branding colors under @brightlayer-ui/colors. +- Removed dependency on @brightlayer-ui/types. ## Package Summary