File tree Expand file tree Collapse file tree 5 files changed +9
-2
lines changed
designSystem/kubit/components Expand file tree Collapse file tree 5 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,8 @@ export * from './tableCaption';
82
82
export * from './tableDivider' ;
83
83
export * from './tableV2' ;
84
84
export * from './dataTable' ;
85
+ export * from './video' ;
86
+ export * from './progressBar' ;
85
87
export * from './virtualKeyboard' ;
86
88
87
89
/**
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ const OptionStandAlone = React.forwardRef(
43
43
const hasCheckedIcon = [
44
44
OptionStateType . MULTIPLE_SELECTED ,
45
45
OptionStateType . MULTIPLE_SELECTED_HOVER ,
46
+ OptionStateType . SELECTED ,
46
47
] . includes ( state ) ;
47
48
48
49
const { firstHighlightedIndex, lastHighlightedIndex } = getHighlightedIndexes (
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ const ARROW_DOWN = {
67
67
68
68
const DELETE = {
69
69
key : 'Delete' ,
70
- which : 46 ,
71
- keyCode : 46 ,
70
+ which : 8 ,
71
+ keyCode : 8 ,
72
72
code : 'ArrowDecimal' ,
73
73
} ;
74
74
Original file line number Diff line number Diff line change @@ -89,4 +89,6 @@ export * from './tableCaption/styles';
89
89
export * from './tableDivider/styles' ;
90
90
export * from './tableV2/styles' ;
91
91
export * from './dataTable/styles' ;
92
+ export * from './video/styles' ;
92
93
export * from './virtualKeyboard/styles' ;
94
+ export * from './progressBar/styles' ;
Original file line number Diff line number Diff line change @@ -89,4 +89,6 @@ export * from './tableCaption/variants';
89
89
export * from './tableDivider/variants' ;
90
90
export * from './tableV2/variants' ;
91
91
export * from './dataTable/variants' ;
92
+ export * from './video/variants' ;
92
93
export * from './virtualKeyboard/variants' ;
94
+ export * from './progressBar/variants' ;
You can’t perform that action at this time.
0 commit comments