@spaced-out/ui-design-system 0.1.96-beta.1 → 0.1.97
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.1.97](https://github.com/spaced-out/ui-design-system/compare/v0.1.96...v0.1.97) (2024-05-30)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* added new option as configration inside sidemenu component ([#221](https://github.com/spaced-out/ui-design-system/issues/221)) ([cd59000](https://github.com/spaced-out/ui-design-system/commit/cd5900059d113f8f289fdbb9df6528197c32414b))
|
|
11
|
+
|
|
12
|
+
### [0.1.96](https://github.com/spaced-out/ui-design-system/compare/v0.1.96-beta.1...v0.1.96) (2024-05-30)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* adding support link for option side menu ([#219](https://github.com/spaced-out/ui-design-system/issues/219)) ([36f82b4](https://github.com/spaced-out/ui-design-system/commit/36f82b4c3bbb135c9fe8f5eb882d83185e1fad98))
|
|
18
|
+
|
|
5
19
|
### [0.1.96-beta.1](https://github.com/spaced-out/ui-design-system/compare/v0.1.96-beta.0...v0.1.96-beta.1) (2024-05-30)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -163,9 +163,19 @@ const MENU_NAME_LIST = Object.freeze({
|
|
|
163
163
|
iconType: 'duotone'
|
|
164
164
|
},
|
|
165
165
|
settings: {
|
|
166
|
+
title: 'Settings',
|
|
167
|
+
iconName: 'gear',
|
|
168
|
+
iconType: 'duotone'
|
|
169
|
+
},
|
|
170
|
+
configuration: {
|
|
166
171
|
title: 'Configuration',
|
|
167
172
|
iconName: 'gear',
|
|
168
173
|
iconType: 'duotone'
|
|
174
|
+
},
|
|
175
|
+
supportLinks: {
|
|
176
|
+
title: 'Support Links',
|
|
177
|
+
iconName: 'circle-question',
|
|
178
|
+
iconType: 'duotone'
|
|
169
179
|
}
|
|
170
180
|
});
|
|
171
181
|
exports.MENU_NAME_LIST = MENU_NAME_LIST;
|
|
@@ -160,10 +160,20 @@ export const MENU_NAME_LIST = Object.freeze({
|
|
|
160
160
|
iconType: 'duotone',
|
|
161
161
|
},
|
|
162
162
|
settings: {
|
|
163
|
+
title: 'Settings',
|
|
164
|
+
iconName: 'gear',
|
|
165
|
+
iconType: 'duotone',
|
|
166
|
+
},
|
|
167
|
+
configuration: {
|
|
163
168
|
title: 'Configuration',
|
|
164
169
|
iconName: 'gear',
|
|
165
170
|
iconType: 'duotone',
|
|
166
171
|
},
|
|
172
|
+
supportLinks: {
|
|
173
|
+
title: 'Support Links',
|
|
174
|
+
iconName: 'circle-question',
|
|
175
|
+
iconType: 'duotone',
|
|
176
|
+
},
|
|
167
177
|
});
|
|
168
178
|
|
|
169
179
|
type ClassNames = $ReadOnly<{wrapper?: string}>;
|