@spaced-out/ui-design-system 0.1.83 → 0.1.85

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,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.85](https://github.com/spaced-out/ui-design-system/compare/v0.1.84...v0.1.85) (2024-04-18)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * floating dom issue tooltip ([#188](https://github.com/spaced-out/ui-design-system/issues/188)) ([8ad85e2](https://github.com/spaced-out/ui-design-system/commit/8ad85e2d683a8bba4ae6ec013e110e4ebdccec81))
11
+
12
+ ### [0.1.84](https://github.com/spaced-out/ui-design-system/compare/v0.1.83...v0.1.84) (2024-04-10)
13
+
14
+
15
+ ### Features
16
+
17
+ * 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))
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * 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))
23
+
5
24
  ### [0.1.83](https://github.com/spaced-out/ui-design-system/compare/v0.1.82...v0.1.83) (2024-04-10)
6
25
 
7
26
 
package/CONTRIBUTING.md CHANGED
@@ -1,5 +1,7 @@
1
1
  ![Alt text](https://cdn.sensehq.com/genesis/hashed/static/images/contributions.png)
2
2
 
3
+ ![Version](https://img.shields.io/npm/v/@spaced-out/ui-design-system?style=for-the-badge&labelColor=271656&logo=npm&label=@spaced-out/ui-design-system&color=5c34cd)
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--page) to use 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
  ![Alt text](https://cdn.sensehq.com/genesis/hashed/static/images/usage.png)
2
2
 
3
+ ![Version](https://img.shields.io/npm/v/@spaced-out/ui-design-system?style=for-the-badge&labelColor=271656&logo=npm&label=@spaced-out/ui-design-system&color=5c34cd)
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--page) to setup and contribute to Genesis.
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--page)
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. */
@@ -88,7 +88,7 @@ const Tooltip = _ref => {
88
88
  return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.cloneElement(children, getReferenceProps({
89
89
  ref,
90
90
  ...children.props
91
- })), /*#__PURE__*/React.createElement(_react2.FloatingPortal, null, isOpen && /*#__PURE__*/React.createElement(React.Fragment, null, !hidden && /*#__PURE__*/React.createElement("div", _extends({
91
+ })), isOpen && /*#__PURE__*/React.createElement(_react2.FloatingPortal, null, /*#__PURE__*/React.createElement(React.Fragment, null, !hidden && /*#__PURE__*/React.createElement("div", _extends({
92
92
  ref: refs.setFloating,
93
93
  className: (0, _classify.classify)(_TooltipModule.default.tooltip, classNames?.tooltip),
94
94
  style: {
@@ -158,8 +158,9 @@ export const Tooltip = ({
158
158
  ...children.props,
159
159
  }),
160
160
  )}
161
- <FloatingPortal>
162
- {isOpen && (
161
+
162
+ {isOpen && (
163
+ <FloatingPortal>
163
164
  <>
164
165
  {!hidden && (
165
166
  <div
@@ -198,8 +199,8 @@ export const Tooltip = ({
198
199
  </div>
199
200
  )}
200
201
  </>
201
- )}
202
- </FloatingPortal>
202
+ </FloatingPortal>
203
+ )}
203
204
  </>
204
205
  );
205
206
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaced-out/ui-design-system",
3
- "version": "0.1.83",
3
+ "version": "0.1.85",
4
4
  "main": "index.js",
5
5
  "description": "Sense UI components library",
6
6
  "author": {