@vc-shell/framework 1.0.265 → 1.0.266
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 +9 -0
- package/dist/framework.js +7362 -7339
- package/dist/index.css +1 -1
- package/dist/locales/en.json +3 -0
- package/dist/shared/modules/dynamic/types/index.d.ts +2 -1
- package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts +19 -0
- package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts +19 -0
- package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +4 -0
- package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-pagination/index.d.ts +11 -0
- package/dist/ui/components/molecules/vc-pagination/index.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-pagination/vc-pagination.stories.d.ts +22 -0
- package/dist/ui/components/molecules/vc-pagination/vc-pagination.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts +7 -0
- package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-select/vc-select.stories.d.ts +30 -0
- package/dist/ui/components/molecules/vc-select/vc-select.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +3 -0
- package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts +15 -0
- package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +5 -0
- package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
- package/package.json +4 -4
- package/shared/modules/dynamic/pages/dynamic-blade-list.vue +1 -0
- package/shared/modules/dynamic/types/index.ts +2 -0
- package/ui/components/molecules/vc-input/vc-input.vue +11 -2
- package/ui/components/molecules/vc-pagination/vc-pagination.stories.ts +1 -1
- package/ui/components/molecules/vc-pagination/vc-pagination.vue +144 -91
- package/ui/components/molecules/vc-select/vc-select.vue +8 -1
- package/ui/components/organisms/vc-table/vc-table.vue +4 -0
|
@@ -495,6 +495,7 @@
|
|
|
495
495
|
:expanded="expanded"
|
|
496
496
|
:pages="pages"
|
|
497
497
|
:current-page="currentPage"
|
|
498
|
+
:variant="paginationVariant"
|
|
498
499
|
@item-click="$emit('paginationClick', $event)"
|
|
499
500
|
></VcPagination>
|
|
500
501
|
|
|
@@ -537,6 +538,7 @@ import "core-js/actual/array/to-spliced";
|
|
|
537
538
|
import "core-js/actual/array/to-sorted";
|
|
538
539
|
import VcTableAddNew from "./_internal/vc-table-add-new/vc-table-add-new.vue";
|
|
539
540
|
import VcTableEmpty from "./_internal/vc-table-empty/vc-table-empty.vue";
|
|
541
|
+
import type { ComponentProps } from "vue-component-type-helpers";
|
|
540
542
|
|
|
541
543
|
export interface StatusImage {
|
|
542
544
|
image?: string;
|
|
@@ -594,6 +596,7 @@ const props = withDefaults(
|
|
|
594
596
|
show: boolean;
|
|
595
597
|
title: string;
|
|
596
598
|
};
|
|
599
|
+
paginationVariant?: ComponentProps<typeof VcPagination>["variant"];
|
|
597
600
|
}>(),
|
|
598
601
|
{
|
|
599
602
|
items: () => [],
|
|
@@ -606,6 +609,7 @@ const props = withDefaults(
|
|
|
606
609
|
activeFilterCount: 0,
|
|
607
610
|
resizableColumns: true,
|
|
608
611
|
reorderableColumns: true,
|
|
612
|
+
paginationVariant: "default",
|
|
609
613
|
},
|
|
610
614
|
);
|
|
611
615
|
|