@bitrise/bitkit 10.14.0 → 10.16.0
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/package.json +1 -1
- package/src/Components/AspectRatio/AspectRatio.stories.tsx +24 -0
- package/src/Components/AspectRatio/AspectRatio.tsx +14 -0
- package/src/Components/Icons/16x16/Sort.tsx +18 -0
- package/src/Components/Icons/16x16/index.ts +2 -1
- package/src/Components/Icons/24x24/Sort.tsx +18 -0
- package/src/Components/Icons/24x24/index.ts +2 -1
- package/src/Components/Table/Table.stories.tsx +154 -0
- package/src/Components/Table/Table.theme.ts +101 -0
- package/src/Components/Table/Table.tsx +22 -0
- package/src/Components/Table/TableCaption.tsx +27 -0
- package/src/Components/Table/TableContainer.tsx +9 -0
- package/src/Components/Table/Tbody.tsx +9 -0
- package/src/Components/Table/Td.tsx +22 -0
- package/src/Components/Table/Th.tsx +44 -0
- package/src/Components/Table/Thead.tsx +9 -0
- package/src/Components/Table/Tr.tsx +73 -0
- package/src/index.ts +27 -0
- package/src/old.ts +14 -14
- package/src/theme.ts +3 -1
- package/src/tsconfig.tsbuildinfo +1 -1
package/src/theme.ts
CHANGED
|
@@ -18,6 +18,7 @@ import Input from './Components/Input/Input.theme';
|
|
|
18
18
|
import Dropdown from './Components/Dropdown/Dropdown.theme';
|
|
19
19
|
import Tabs from './Components/Tabs/Tabs.theme';
|
|
20
20
|
import Text from './Components/Text/Text.theme';
|
|
21
|
+
import Table from './Components/Table/Table.theme';
|
|
21
22
|
import Alert from './Foundations/Themes/Alert.theme';
|
|
22
23
|
import Tooltip from './Components/Tooltip/Tooltip.theme';
|
|
23
24
|
import CloseButton from './Components/CloseButton/CloseButton.theme';
|
|
@@ -76,6 +77,7 @@ const theme = {
|
|
|
76
77
|
Checkbox,
|
|
77
78
|
ColorButton,
|
|
78
79
|
Divider,
|
|
80
|
+
Dropdown,
|
|
79
81
|
EmptyState,
|
|
80
82
|
Link,
|
|
81
83
|
List,
|
|
@@ -83,7 +85,7 @@ const theme = {
|
|
|
83
85
|
Modal: Dialog,
|
|
84
86
|
Radio,
|
|
85
87
|
Select,
|
|
86
|
-
|
|
88
|
+
Table,
|
|
87
89
|
Tabs,
|
|
88
90
|
Text,
|
|
89
91
|
Tooltip,
|