lkt-vue-kernel 1.0.41 → 1.0.42
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/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -929,6 +929,7 @@ type ValidDragConfig = DragConfig | undefined;
|
|
|
929
929
|
type ValidPaginatorConfig = PaginatorConfig | undefined;
|
|
930
930
|
|
|
931
931
|
interface CarouselConfig {
|
|
932
|
+
currentSlide?: number;
|
|
932
933
|
itemsToShow?: number;
|
|
933
934
|
itemsToScroll?: number;
|
|
934
935
|
autoplay?: number;
|
|
@@ -943,7 +944,7 @@ interface CarouselConfig {
|
|
|
943
944
|
interface TableConfig {
|
|
944
945
|
modelValue?: LktObject[];
|
|
945
946
|
type?: TableType;
|
|
946
|
-
columns?: Column
|
|
947
|
+
columns?: Array<Column>;
|
|
947
948
|
noResultsText?: string;
|
|
948
949
|
hideEmptyColumns?: boolean;
|
|
949
950
|
itemDisplayChecker?: Function;
|