@spaced-out/ui-design-system 0.1.75 → 0.1.76
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 +1 -0
- package/.github/workflows/publish_to_npm.yml +1 -1
- package/CHANGELOG.md +7 -0
- package/lib/components/PageTitle/PageTitle.js +15 -0
- package/lib/components/PageTitle/PageTitle.js.flow +15 -0
- package/lib/components/SideMenuLink/SideMenuLink.js +20 -0
- package/lib/components/SideMenuLink/SideMenuLink.js.flow +20 -0
- package/package.json +1 -1
package/.cspell/custom-words.txt
CHANGED
|
@@ -22,7 +22,7 @@ jobs:
|
|
|
22
22
|
- name: Check Permissions
|
|
23
23
|
id: check-permissions
|
|
24
24
|
env:
|
|
25
|
-
ALLOWED_USERS: superrover, Anant-Raj, nsfmc, ashwini-sensehq, aditya-kaushal, vish-sah
|
|
25
|
+
ALLOWED_USERS: superrover, Anant-Raj, nsfmc, ashwini-sensehq, aditya-kaushal, vish-sah, VishalBarnawal
|
|
26
26
|
if: ${{ !contains(env.ALLOWED_USERS, github.actor) }}
|
|
27
27
|
run: |
|
|
28
28
|
echo "You don't have correct permissions to do this release"
|
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.1.76](https://github.com/spaced-out/ui-design-system/compare/v0.1.75...v0.1.76) (2024-01-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* added new tabs for referral portal in side menu link component ([#158](https://github.com/spaced-out/ui-design-system/issues/158)) ([75c6835](https://github.com/spaced-out/ui-design-system/commit/75c68351ea6687de6b5696b89420cf13ee78ca09))
|
|
11
|
+
|
|
5
12
|
### [0.1.75](https://github.com/spaced-out/ui-design-system/compare/v0.1.74...v0.1.75) (2024-01-10)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -115,6 +115,21 @@ const PAGE_NAME_LIST = Object.freeze({
|
|
|
115
115
|
iconName: 'browser',
|
|
116
116
|
iconType: 'duotone',
|
|
117
117
|
iconSwapOpacity: true
|
|
118
|
+
},
|
|
119
|
+
tracking: {
|
|
120
|
+
title: 'Tracking',
|
|
121
|
+
iconName: 'user-check',
|
|
122
|
+
iconType: 'duotone'
|
|
123
|
+
},
|
|
124
|
+
earnings: {
|
|
125
|
+
title: 'Earnings',
|
|
126
|
+
iconName: 'wallet',
|
|
127
|
+
iconType: 'duotone'
|
|
128
|
+
},
|
|
129
|
+
settings: {
|
|
130
|
+
title: 'Settings',
|
|
131
|
+
iconName: 'gear',
|
|
132
|
+
iconType: 'duotone'
|
|
118
133
|
}
|
|
119
134
|
});
|
|
120
135
|
exports.PAGE_NAME_LIST = PAGE_NAME_LIST;
|
|
@@ -124,6 +124,21 @@ export const PAGE_NAME_LIST = Object.freeze({
|
|
|
124
124
|
iconType: 'duotone',
|
|
125
125
|
iconSwapOpacity: true,
|
|
126
126
|
},
|
|
127
|
+
tracking: {
|
|
128
|
+
title: 'Tracking',
|
|
129
|
+
iconName: 'user-check',
|
|
130
|
+
iconType: 'duotone',
|
|
131
|
+
},
|
|
132
|
+
earnings: {
|
|
133
|
+
title: 'Earnings',
|
|
134
|
+
iconName: 'wallet',
|
|
135
|
+
iconType: 'duotone',
|
|
136
|
+
},
|
|
137
|
+
settings: {
|
|
138
|
+
title: 'Settings',
|
|
139
|
+
iconName: 'gear',
|
|
140
|
+
iconType: 'duotone',
|
|
141
|
+
},
|
|
127
142
|
});
|
|
128
143
|
|
|
129
144
|
export type TabSlotProps = {
|
|
@@ -98,6 +98,26 @@ const MENU_NAME_LIST = Object.freeze({
|
|
|
98
98
|
title: 'AI Copilot',
|
|
99
99
|
iconName: 'sparkles',
|
|
100
100
|
iconType: 'duotone'
|
|
101
|
+
},
|
|
102
|
+
tracking: {
|
|
103
|
+
title: 'Tracking',
|
|
104
|
+
iconName: 'user-check',
|
|
105
|
+
iconType: 'duotone'
|
|
106
|
+
},
|
|
107
|
+
jobs: {
|
|
108
|
+
title: 'Jobs',
|
|
109
|
+
iconName: 'briefcase',
|
|
110
|
+
iconType: 'duotone'
|
|
111
|
+
},
|
|
112
|
+
earnings: {
|
|
113
|
+
title: 'Earnings',
|
|
114
|
+
iconName: 'wallet',
|
|
115
|
+
iconType: 'duotone'
|
|
116
|
+
},
|
|
117
|
+
settings: {
|
|
118
|
+
title: 'Settings',
|
|
119
|
+
iconName: 'gear',
|
|
120
|
+
iconType: 'duotone'
|
|
101
121
|
}
|
|
102
122
|
});
|
|
103
123
|
exports.MENU_NAME_LIST = MENU_NAME_LIST;
|
|
@@ -95,6 +95,26 @@ export const MENU_NAME_LIST = Object.freeze({
|
|
|
95
95
|
iconName: 'sparkles',
|
|
96
96
|
iconType: 'duotone',
|
|
97
97
|
},
|
|
98
|
+
tracking: {
|
|
99
|
+
title: 'Tracking',
|
|
100
|
+
iconName: 'user-check',
|
|
101
|
+
iconType: 'duotone',
|
|
102
|
+
},
|
|
103
|
+
jobs: {
|
|
104
|
+
title: 'Jobs',
|
|
105
|
+
iconName: 'briefcase',
|
|
106
|
+
iconType: 'duotone',
|
|
107
|
+
},
|
|
108
|
+
earnings: {
|
|
109
|
+
title: 'Earnings',
|
|
110
|
+
iconName: 'wallet',
|
|
111
|
+
iconType: 'duotone',
|
|
112
|
+
},
|
|
113
|
+
settings: {
|
|
114
|
+
title: 'Settings',
|
|
115
|
+
iconName: 'gear',
|
|
116
|
+
iconType: 'duotone',
|
|
117
|
+
},
|
|
98
118
|
});
|
|
99
119
|
|
|
100
120
|
type ClassNames = $ReadOnly<{wrapper?: string}>;
|