@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.
- package/CHANGELOG.md +24 -0
- package/lib/components/Card/Card.js +60 -5
- package/lib/components/Card/Card.js.flow +56 -0
- package/lib/components/Card/Card.module.css +55 -1
- package/lib/components/Dropdown/SimpleDropdown.js +0 -1
- package/lib/components/Dropdown/SimpleDropdown.js.flow +0 -1
- package/lib/components/Pagination/PaginationItem.js +8 -4
- package/lib/components/Pagination/PaginationItem.js.flow +4 -0
- package/lib/components/Stepper/Step/Step.js +18 -5
- package/lib/components/Stepper/Step/Step.js.flow +28 -2
- package/lib/components/Stepper/Stepper.module.css +23 -0
- package/lib/components/StickyBar/StickyBar.js +52 -0
- package/lib/components/StickyBar/StickyBar.js.flow +67 -0
- package/lib/components/StickyBar/StickyBar.module.css +28 -0
- package/lib/components/StickyBar/index.js +16 -0
- package/lib/components/StickyBar/index.js.flow +3 -0
- package/lib/components/Table/DefaultRow.js +2 -1
- package/lib/components/Table/DefaultRow.js.flow +1 -0
- package/lib/components/Table/DefaultTableHeader.js +2 -1
- package/lib/components/Table/DefaultTableHeader.js.flow +1 -0
- package/lib/components/Table/TableActionBar.js +25 -0
- package/lib/components/Table/TableActionBar.js.flow +28 -0
- package/lib/components/Table/TableBar.module.css +48 -0
- package/lib/components/Table/TableBottomBar.js +25 -0
- package/lib/components/Table/TableBottomBar.js.flow +28 -0
- package/lib/components/Table/TableTopBar.js +25 -0
- package/lib/components/Table/TableTopBar.js.flow +28 -0
- package/lib/components/Table/dummyTableData.js +865 -0
- package/lib/components/Table/dummyTableData.js.flow +967 -0
- package/lib/components/Table/index.js +33 -0
- package/lib/components/Table/index.js.flow +3 -0
- package/lib/components/Typeahead/SimpleTypeahead.js +0 -1
- package/lib/components/Typeahead/SimpleTypeahead.js.flow +0 -1
- package/lib/components/index.js +11 -0
- package/lib/components/index.js.flow +1 -0
- 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
|
});
|
|
@@ -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,
|
package/lib/components/index.js
CHANGED
|
@@ -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;
|