@spaced-out/ui-design-system 0.1.82 → 0.1.84
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 +19 -0
- package/CONTRIBUTING.md +3 -1
- package/README.md +4 -2
- package/lib/components/Input/Input.js.flow +1 -0
- package/lib/components/PageTitle/PageTitle.js +3 -3
- package/lib/components/PageTitle/PageTitle.js.flow +3 -3
- package/lib/components/SideMenuLink/SideMenuLink.js +2 -2
- package/lib/components/SideMenuLink/SideMenuLink.js.flow +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
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.84](https://github.com/spaced-out/ui-design-system/compare/v0.1.83...v0.1.84) (2024-04-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* added versioning badge ([#179](https://github.com/spaced-out/ui-design-system/issues/179)) ([d04ee01](https://github.com/spaced-out/ui-design-system/commit/d04ee01ea5666e4215198dee7be32d0f2a4868fb))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* added autocomplete props to input ([#172](https://github.com/spaced-out/ui-design-system/issues/172)) ([b6bb69b](https://github.com/spaced-out/ui-design-system/commit/b6bb69bf9ae4a27e5852976381d4a620a7a5cede))
|
|
16
|
+
|
|
17
|
+
### [0.1.83](https://github.com/spaced-out/ui-design-system/compare/v0.1.82...v0.1.83) (2024-04-10)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* replace contacts2 with meetings on side nav ([#170](https://github.com/spaced-out/ui-design-system/issues/170)) ([4df6293](https://github.com/spaced-out/ui-design-system/commit/4df629387791c798c38f2044f609d13bec212bc2))
|
|
23
|
+
|
|
5
24
|
### [0.1.82](https://github.com/spaced-out/ui-design-system/compare/v0.1.81...v0.1.82) (2024-04-04)
|
|
6
25
|
|
|
7
26
|
|
package/CONTRIBUTING.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
3
5
|
# Contribution Guidelines
|
|
4
6
|
|
|
5
7
|
- [Intro](#intro)
|
|
@@ -131,7 +133,7 @@ per component. A component story must have `.stories.jsx` extension.
|
|
|
131
133
|
|
|
132
134
|
### Using Design Tokens
|
|
133
135
|
|
|
134
|
-
Check out our [**Design Tokens Page**](https://spaced-out.github.io/ui-design-system/?path=/docs/design-tokens--
|
|
136
|
+
Check out our [**Design Tokens Page**](https://spaced-out.github.io/ui-design-system/?path=/docs/design-tokens--docs) to use tokens.
|
|
135
137
|
|
|
136
138
|
### Testing Genesis Design System Locally
|
|
137
139
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
3
5
|
# Genesis Design System
|
|
4
6
|
|
|
5
7
|
- [Intro](#intro)
|
|
@@ -245,11 +247,11 @@ exports.default = {
|
|
|
245
247
|
|
|
246
248
|
## Contributions
|
|
247
249
|
|
|
248
|
-
Check out our [**Contribution Guide**](https://spaced-out.github.io/ui-design-system/?path=/docs/contribution--
|
|
250
|
+
Check out our [**Contribution Guide**](https://spaced-out.github.io/ui-design-system/?path=/docs/contribution--docs) to setup and contribute to Genesis.
|
|
249
251
|
|
|
250
252
|
## Changelog
|
|
251
253
|
|
|
252
|
-
Check out our [**Changelog here**](https://spaced-out.github.io/ui-design-system/?path=/docs/changelog--
|
|
254
|
+
Check out our [**Changelog here**](https://spaced-out.github.io/ui-design-system/?path=/docs/changelog--docs)
|
|
253
255
|
|
|
254
256
|
## Contributors
|
|
255
257
|
|
|
@@ -68,6 +68,7 @@ export type InputProps = {
|
|
|
68
68
|
pattern?: string,
|
|
69
69
|
min?: string,
|
|
70
70
|
max?: string,
|
|
71
|
+
autoComplete?: string,
|
|
71
72
|
/** The step attribute is a number that specifies the granularity that the value must adhere to, or the special value any.
|
|
72
73
|
* Only values which are equal to the basis for stepping (min if specified, value otherwise, and an
|
|
73
74
|
* appropriate default value if neither of those is provided) are valid. */
|
|
@@ -104,8 +104,8 @@ const PAGE_NAME_LIST = Object.freeze({
|
|
|
104
104
|
iconType: 'duotone',
|
|
105
105
|
iconSwapOpacity: true
|
|
106
106
|
},
|
|
107
|
-
|
|
108
|
-
title: '
|
|
107
|
+
meetings: {
|
|
108
|
+
title: 'Meetings',
|
|
109
109
|
iconName: 'calendars',
|
|
110
110
|
iconType: 'duotone',
|
|
111
111
|
iconSwapOpacity: true
|
|
@@ -135,7 +135,7 @@ const PAGE_NAME_LIST = Object.freeze({
|
|
|
135
135
|
title: 'Broadcast',
|
|
136
136
|
iconName: 'bullhorn',
|
|
137
137
|
iconType: 'duotone',
|
|
138
|
-
|
|
138
|
+
iconSwapOpacity: true
|
|
139
139
|
}
|
|
140
140
|
});
|
|
141
141
|
exports.PAGE_NAME_LIST = PAGE_NAME_LIST;
|
|
@@ -112,8 +112,8 @@ export const PAGE_NAME_LIST = Object.freeze({
|
|
|
112
112
|
iconType: 'duotone',
|
|
113
113
|
iconSwapOpacity: true,
|
|
114
114
|
},
|
|
115
|
-
|
|
116
|
-
title: '
|
|
115
|
+
meetings: {
|
|
116
|
+
title: 'Meetings',
|
|
117
117
|
iconName: 'calendars',
|
|
118
118
|
iconType: 'duotone',
|
|
119
119
|
iconSwapOpacity: true,
|
|
@@ -143,7 +143,7 @@ export const PAGE_NAME_LIST = Object.freeze({
|
|
|
143
143
|
title: 'Broadcast',
|
|
144
144
|
iconName: 'bullhorn',
|
|
145
145
|
iconType: 'duotone',
|
|
146
|
-
|
|
146
|
+
iconSwapOpacity: true,
|
|
147
147
|
},
|
|
148
148
|
});
|
|
149
149
|
|