@spaced-out/ui-design-system 0.0.16 → 0.0.17

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.
@@ -5,6 +5,7 @@ contributorsrc
5
5
  Crespo
6
6
  DEFAULTTEXT
7
7
  dismissable
8
+ eqeqeq
8
9
  Fennimore
9
10
  flowtype
10
11
  fontawesome
@@ -25,6 +26,7 @@ testid
25
26
  tnum
26
27
  transclude
27
28
  Typeahead
29
+ typeof
28
30
  Verda
29
31
  xmark
30
32
  yxxx
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
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.0.17](https://github.com/spaced-out/ui-design-system/compare/v0.0.16...v0.0.17) (2023-02-01)
6
+
5
7
  ### [0.0.16](https://github.com/spaced-out/ui-design-system/compare/v0.0.16-beta.1...v0.0.16) (2023-01-26)
6
8
 
7
9
 
@@ -3,17 +3,25 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- Object.defineProperty(exports, "Checkbox", {
7
- enumerable: true,
8
- get: function () {
9
- return _Checkbox.Checkbox;
10
- }
11
- });
12
- Object.defineProperty(exports, "CheckboxGroup", {
13
- enumerable: true,
14
- get: function () {
15
- return _CheckboxGroup.CheckboxGroup;
16
- }
17
- });
18
6
  var _Checkbox = require("./Checkbox");
19
- var _CheckboxGroup = require("./CheckboxGroup");
7
+ Object.keys(_Checkbox).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _Checkbox[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _Checkbox[key];
14
+ }
15
+ });
16
+ });
17
+ var _CheckboxGroup = require("./CheckboxGroup");
18
+ Object.keys(_CheckboxGroup).forEach(function (key) {
19
+ if (key === "default" || key === "__esModule") return;
20
+ if (key in exports && exports[key] === _CheckboxGroup[key]) return;
21
+ Object.defineProperty(exports, key, {
22
+ enumerable: true,
23
+ get: function () {
24
+ return _CheckboxGroup[key];
25
+ }
26
+ });
27
+ });
@@ -1,3 +1,3 @@
1
1
  //@flow strict
2
- export {Checkbox} from './Checkbox';
3
- export {CheckboxGroup} from './CheckboxGroup';
2
+ export * from './Checkbox';
3
+ export * from './CheckboxGroup';
@@ -5,28 +5,25 @@
5
5
  colorTextInversePrimary,
6
6
  colorSideMenuIconDefault,
7
7
  colorSideMenuIconActive ) from '../../styles/variables/_color.css';
8
- @value ( spaceXSmall ) from '../../styles/variables/_space.css';
9
- @value ( size42) from '../../styles/variables/_size.css';
10
-
11
- .fooBar {
12
- color: colorFillPrimary;
13
- }
8
+ @value ( spaceXSmall, spaceSmall ) from '../../styles/variables/_space.css';
9
+ @value ( size42, sizeFluid) from '../../styles/variables/_size.css';
10
+ @value ( borderRadiusSmall) from '../../styles/variables/_border.css';
14
11
 
15
12
  .linkWrapper {
16
13
  display: flex;
17
14
  background: colorFillInversePrimary;
18
15
  color: colorTextInverseSecondary;
19
- display: flex;
20
16
  flex-direction: row;
21
17
  gap: spaceXSmall;
22
18
  justify-content: flex-start;
23
19
  align-items: center;
24
20
  flex: auto;
25
- height: 42px;
21
+ height: size42;
26
22
  min-width: size42;
27
- border-radius: 8px;
23
+ border-radius: borderRadiusSmall;
28
24
  width: sizeFluid;
29
25
  cursor: pointer;
26
+ margin-right: spaceSmall;
30
27
  }
31
28
 
32
29
  .linkWrapper.closed {
@@ -59,4 +56,5 @@
59
56
 
60
57
  .menuText {
61
58
  color: inherit;
59
+ margin-right: spaceSmall;
62
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaced-out/ui-design-system",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "main": "index.js",
5
5
  "description": "Sense UI components library",
6
6
  "author": {