@spaced-out/ui-design-system 0.0.43 → 0.0.44

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,15 @@
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.44](https://github.com/spaced-out/ui-design-system/compare/v0.0.43...v0.0.44) (2023-03-10)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * fixed table exports ([0cc9bb6](https://github.com/spaced-out/ui-design-system/commit/0cc9bb6e06041bb51c100aa6017f26f58c7f3532))
11
+ * menu custom component example ([46ad663](https://github.com/spaced-out/ui-design-system/commit/46ad66331192fe0fb448f3a65efe3815e25aa9d9))
12
+ * option button styling ([3650c2e](https://github.com/spaced-out/ui-design-system/commit/3650c2e4ad7cc05413476f30d509a6618ec819c9))
13
+
5
14
  ### [0.0.43](https://github.com/spaced-out/ui-design-system/compare/v0.0.42...v0.0.43) (2023-03-10)
6
15
 
7
16
 
@@ -3,61 +3,58 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- Object.defineProperty(exports, "BasicSingleCell", {
7
- enumerable: true,
8
- get: function () {
9
- return _Cell.BasicSingleCell;
10
- }
11
- });
12
- Object.defineProperty(exports, "DateCell", {
13
- enumerable: true,
14
- get: function () {
15
- return _Cell.DateCell;
16
- }
17
- });
18
- Object.defineProperty(exports, "DefaultRow", {
19
- enumerable: true,
20
- get: function () {
21
- return _Row.DefaultRow;
22
- }
23
- });
24
- Object.defineProperty(exports, "DoubleCell", {
25
- enumerable: true,
26
- get: function () {
27
- return _Cell.DoubleCell;
28
- }
29
- });
30
- Object.defineProperty(exports, "Monogram", {
31
- enumerable: true,
32
- get: function () {
33
- return _Cell.Monogram;
34
- }
35
- });
36
- Object.defineProperty(exports, "MonogramCell", {
37
- enumerable: true,
38
- get: function () {
39
- return _Cell.MonogramCell;
40
- }
41
- });
42
- Object.defineProperty(exports, "SingleCell", {
43
- enumerable: true,
44
- get: function () {
45
- return _Cell.SingleCell;
46
- }
47
- });
48
- Object.defineProperty(exports, "StaticTable", {
49
- enumerable: true,
50
- get: function () {
51
- return _StaticTable.StaticTable;
52
- }
53
- });
54
- Object.defineProperty(exports, "Table", {
55
- enumerable: true,
56
- get: function () {
57
- return _Table.Table;
58
- }
59
- });
60
6
  var _Cell = require("./Cell");
7
+ Object.keys(_Cell).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _Cell[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _Cell[key];
14
+ }
15
+ });
16
+ });
61
17
  var _Row = require("./Row");
18
+ Object.keys(_Row).forEach(function (key) {
19
+ if (key === "default" || key === "__esModule") return;
20
+ if (key in exports && exports[key] === _Row[key]) return;
21
+ Object.defineProperty(exports, key, {
22
+ enumerable: true,
23
+ get: function () {
24
+ return _Row[key];
25
+ }
26
+ });
27
+ });
62
28
  var _StaticTable = require("./StaticTable");
63
- var _Table = require("./Table");
29
+ Object.keys(_StaticTable).forEach(function (key) {
30
+ if (key === "default" || key === "__esModule") return;
31
+ if (key in exports && exports[key] === _StaticTable[key]) return;
32
+ Object.defineProperty(exports, key, {
33
+ enumerable: true,
34
+ get: function () {
35
+ return _StaticTable[key];
36
+ }
37
+ });
38
+ });
39
+ var _Table = require("./Table");
40
+ Object.keys(_Table).forEach(function (key) {
41
+ if (key === "default" || key === "__esModule") return;
42
+ if (key in exports && exports[key] === _Table[key]) return;
43
+ Object.defineProperty(exports, key, {
44
+ enumerable: true,
45
+ get: function () {
46
+ return _Table[key];
47
+ }
48
+ });
49
+ });
50
+ var _TableHeader = require("./TableHeader");
51
+ Object.keys(_TableHeader).forEach(function (key) {
52
+ if (key === "default" || key === "__esModule") return;
53
+ if (key in exports && exports[key] === _TableHeader[key]) return;
54
+ Object.defineProperty(exports, key, {
55
+ enumerable: true,
56
+ get: function () {
57
+ return _TableHeader[key];
58
+ }
59
+ });
60
+ });
@@ -1,14 +1,20 @@
1
1
  // @flow strict
2
2
 
3
- export {
4
- BasicSingleCell,
5
- DateCell,
6
- DoubleCell,
7
- Monogram,
8
- MonogramCell,
9
- SingleCell,
10
- } from './Cell';
11
- export {DefaultRow} from './Row';
12
- export {StaticTable} from './StaticTable';
13
- export type {TableProps} from './Table';
14
- export {Table} from './Table';
3
+ // export {
4
+ // BasicSingleCell,
5
+ // DateCell,
6
+ // DoubleCell,
7
+ // Monogram,
8
+ // MonogramCell,
9
+ // SingleCell,
10
+ // } from './Cell';
11
+ // export {DefaultRow} from './Row';
12
+ // export {StaticTable} from './StaticTable';
13
+ // export type {TableProps} from './Table';
14
+ // export {Table} from './Table';
15
+
16
+ export * from './Cell';
17
+ export * from './Row';
18
+ export * from './StaticTable';
19
+ export * from './Table';
20
+ export * from './TableHeader';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaced-out/ui-design-system",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
4
4
  "main": "index.js",
5
5
  "description": "Sense UI components library",
6
6
  "author": {