@spaced-out/ui-design-system 0.1.38 → 0.1.40

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.
Files changed (36) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/lib/components/Card/Card.js +60 -5
  3. package/lib/components/Card/Card.js.flow +56 -0
  4. package/lib/components/Card/Card.module.css +55 -1
  5. package/lib/components/Dropdown/SimpleDropdown.js +0 -1
  6. package/lib/components/Dropdown/SimpleDropdown.js.flow +0 -1
  7. package/lib/components/Pagination/PaginationItem.js +8 -4
  8. package/lib/components/Pagination/PaginationItem.js.flow +4 -0
  9. package/lib/components/Stepper/Step/Step.js +18 -5
  10. package/lib/components/Stepper/Step/Step.js.flow +28 -2
  11. package/lib/components/Stepper/Stepper.module.css +23 -0
  12. package/lib/components/StickyBar/StickyBar.js +52 -0
  13. package/lib/components/StickyBar/StickyBar.js.flow +67 -0
  14. package/lib/components/StickyBar/StickyBar.module.css +28 -0
  15. package/lib/components/StickyBar/index.js +16 -0
  16. package/lib/components/StickyBar/index.js.flow +3 -0
  17. package/lib/components/Table/DefaultRow.js +2 -1
  18. package/lib/components/Table/DefaultRow.js.flow +1 -0
  19. package/lib/components/Table/DefaultTableHeader.js +2 -1
  20. package/lib/components/Table/DefaultTableHeader.js.flow +1 -0
  21. package/lib/components/Table/TableActionBar.js +25 -0
  22. package/lib/components/Table/TableActionBar.js.flow +28 -0
  23. package/lib/components/Table/TableBar.module.css +48 -0
  24. package/lib/components/Table/TableBottomBar.js +25 -0
  25. package/lib/components/Table/TableBottomBar.js.flow +28 -0
  26. package/lib/components/Table/TableTopBar.js +25 -0
  27. package/lib/components/Table/TableTopBar.js.flow +28 -0
  28. package/lib/components/Table/dummyTableData.js +865 -0
  29. package/lib/components/Table/dummyTableData.js.flow +967 -0
  30. package/lib/components/Table/index.js +33 -0
  31. package/lib/components/Table/index.js.flow +3 -0
  32. package/lib/components/Typeahead/SimpleTypeahead.js +0 -1
  33. package/lib/components/Typeahead/SimpleTypeahead.js.flow +0 -1
  34. package/lib/components/index.js +11 -0
  35. package/lib/components/index.js.flow +1 -0
  36. package/package.json +1 -1
@@ -57,4 +57,37 @@ Object.keys(_Table).forEach(function (key) {
57
57
  return _Table[key];
58
58
  }
59
59
  });
60
+ });
61
+ var _TableActionBar = require("./TableActionBar");
62
+ Object.keys(_TableActionBar).forEach(function (key) {
63
+ if (key === "default" || key === "__esModule") return;
64
+ if (key in exports && exports[key] === _TableActionBar[key]) return;
65
+ Object.defineProperty(exports, key, {
66
+ enumerable: true,
67
+ get: function () {
68
+ return _TableActionBar[key];
69
+ }
70
+ });
71
+ });
72
+ var _TableBottomBar = require("./TableBottomBar");
73
+ Object.keys(_TableBottomBar).forEach(function (key) {
74
+ if (key === "default" || key === "__esModule") return;
75
+ if (key in exports && exports[key] === _TableBottomBar[key]) return;
76
+ Object.defineProperty(exports, key, {
77
+ enumerable: true,
78
+ get: function () {
79
+ return _TableBottomBar[key];
80
+ }
81
+ });
82
+ });
83
+ var _TableTopBar = require("./TableTopBar");
84
+ Object.keys(_TableTopBar).forEach(function (key) {
85
+ if (key === "default" || key === "__esModule") return;
86
+ if (key in exports && exports[key] === _TableTopBar[key]) return;
87
+ Object.defineProperty(exports, key, {
88
+ enumerable: true,
89
+ get: function () {
90
+ return _TableTopBar[key];
91
+ }
92
+ });
60
93
  });
@@ -5,3 +5,6 @@ export * from './DefaultRow';
5
5
  export * from './DefaultTableHeader';
6
6
  export * from './StaticTable';
7
7
  export * from './Table';
8
+ export * from './TableActionBar';
9
+ export * from './TableBottomBar';
10
+ export * from './TableTopBar';
@@ -47,7 +47,6 @@ const SimpleTypeaheadBase = (props, ref) => {
47
47
  }));
48
48
  return /*#__PURE__*/React.createElement(_Typeahead.Typeahead, _extends({}, inputProps, {
49
49
  classNames: classNames,
50
- label: "Form Label",
51
50
  size: size,
52
51
  placeholder: placeholder,
53
52
  onSelect: handleOptionChange,
@@ -99,7 +99,6 @@ const SimpleTypeaheadBase = (props: SimpleTypeaheadProps, ref) => {
99
99
  <Typeahead
100
100
  {...inputProps}
101
101
  classNames={classNames}
102
- label="Form Label"
103
102
  size={size}
104
103
  placeholder={placeholder}
105
104
  onSelect={handleOptionChange}
@@ -432,6 +432,17 @@ Object.keys(_Stepper).forEach(function (key) {
432
432
  }
433
433
  });
434
434
  });
435
+ var _StickyBar = require("./StickyBar");
436
+ Object.keys(_StickyBar).forEach(function (key) {
437
+ if (key === "default" || key === "__esModule") return;
438
+ if (key in exports && exports[key] === _StickyBar[key]) return;
439
+ Object.defineProperty(exports, key, {
440
+ enumerable: true,
441
+ get: function () {
442
+ return _StickyBar[key];
443
+ }
444
+ });
445
+ });
435
446
  var _SubMenu = require("./SubMenu");
436
447
  Object.keys(_SubMenu).forEach(function (key) {
437
448
  if (key === "default" || key === "__esModule") return;
@@ -39,6 +39,7 @@ export * from './SearchInput';
39
39
  export * from './SideMenuLink';
40
40
  export * from './StatusIndicator';
41
41
  export * from './Stepper';
42
+ export * from './StickyBar';
42
43
  export * from './SubMenu';
43
44
  export * from './Table';
44
45
  export * from './Tabs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaced-out/ui-design-system",
3
- "version": "0.1.38",
3
+ "version": "0.1.40",
4
4
  "main": "index.js",
5
5
  "description": "Sense UI components library",
6
6
  "author": {