Skip to content

Commit 21ff8f2

Browse files
author
Kubit
committed
New exports and solve eslint errors
1 parent 065dda7 commit 21ff8f2

File tree

5 files changed

+9
-2
lines changed

5 files changed

+9
-2
lines changed

src/components/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ export * from './tableCaption';
8282
export * from './tableDivider';
8383
export * from './tableV2';
8484
export * from './dataTable';
85+
export * from './video';
86+
export * from './progressBar';
8587
export * from './virtualKeyboard';
8688

8789
/**

src/components/option/optionStandAlone.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ const OptionStandAlone = React.forwardRef(
4343
const hasCheckedIcon = [
4444
OptionStateType.MULTIPLE_SELECTED,
4545
OptionStateType.MULTIPLE_SELECTED_HOVER,
46+
OptionStateType.SELECTED,
4647
].includes(state);
4748

4849
const { firstHighlightedIndex, lastHighlightedIndex } = getHighlightedIndexes(

src/constants/keyboardKeys.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ const ARROW_DOWN = {
6767

6868
const DELETE = {
6969
key: 'Delete',
70-
which: 46,
71-
keyCode: 46,
70+
which: 8,
71+
keyCode: 8,
7272
code: 'ArrowDecimal',
7373
};
7474

src/designSystem/kubit/components/styles.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,6 @@ export * from './tableCaption/styles';
8989
export * from './tableDivider/styles';
9090
export * from './tableV2/styles';
9191
export * from './dataTable/styles';
92+
export * from './video/styles';
9293
export * from './virtualKeyboard/styles';
94+
export * from './progressBar/styles';

src/designSystem/kubit/components/variants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,6 @@ export * from './tableCaption/variants';
8989
export * from './tableDivider/variants';
9090
export * from './tableV2/variants';
9191
export * from './dataTable/variants';
92+
export * from './video/variants';
9293
export * from './virtualKeyboard/variants';
94+
export * from './progressBar/variants';

0 commit comments

Comments
 (0)