@spaced-out/ui-design-system 0.3.47 → 0.3.48
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/.cspell/custom-words.txt
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.3.48](https://github.com/spaced-out/ui-design-system/compare/v0.3.47...v0.3.48) (2025-07-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* added data management icon in side menu link ([#363](https://github.com/spaced-out/ui-design-system/issues/363)) ([86a0e4b](https://github.com/spaced-out/ui-design-system/commit/86a0e4b36ae2aa220897330b0090882ebacc5298))
|
|
11
|
+
|
|
5
12
|
### [0.3.47](https://github.com/spaced-out/ui-design-system/compare/v0.3.47-beta.0...v0.3.47) (2025-06-24)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -192,6 +192,11 @@ const MENU_NAME_LIST = exports.MENU_NAME_LIST = Object.freeze({
|
|
|
192
192
|
title: 'Live Agent Transfer',
|
|
193
193
|
iconName: 'user-headset',
|
|
194
194
|
iconType: 'duotone'
|
|
195
|
+
},
|
|
196
|
+
dataManagement: {
|
|
197
|
+
title: 'Data Management',
|
|
198
|
+
iconName: 'database',
|
|
199
|
+
iconType: 'duotone'
|
|
195
200
|
}
|
|
196
201
|
});
|
|
197
202
|
const SideMenuLink = exports.SideMenuLink = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
@@ -193,6 +193,11 @@ export const MENU_NAME_LIST = Object.freeze({
|
|
|
193
193
|
iconName: 'user-headset',
|
|
194
194
|
iconType: 'duotone',
|
|
195
195
|
},
|
|
196
|
+
dataManagement: {
|
|
197
|
+
title: 'Data Management',
|
|
198
|
+
iconName: 'database',
|
|
199
|
+
iconType: 'duotone',
|
|
200
|
+
},
|
|
196
201
|
});
|
|
197
202
|
|
|
198
203
|
type ClassNames = $ReadOnly<{wrapper?: string}>;
|