@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.
Files changed (35) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/dist/framework.js +7362 -7339
  3. package/dist/index.css +1 -1
  4. package/dist/locales/en.json +3 -0
  5. package/dist/shared/modules/dynamic/types/index.d.ts +2 -1
  6. package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
  7. package/dist/tsconfig.tsbuildinfo +1 -1
  8. package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts +19 -0
  9. package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts.map +1 -1
  10. package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts +19 -0
  11. package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts.map +1 -1
  12. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +4 -0
  13. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts.map +1 -1
  14. package/dist/ui/components/molecules/vc-pagination/index.d.ts +11 -0
  15. package/dist/ui/components/molecules/vc-pagination/index.d.ts.map +1 -1
  16. package/dist/ui/components/molecules/vc-pagination/vc-pagination.stories.d.ts +22 -0
  17. package/dist/ui/components/molecules/vc-pagination/vc-pagination.stories.d.ts.map +1 -1
  18. package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts +7 -0
  19. package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts.map +1 -1
  20. package/dist/ui/components/molecules/vc-select/vc-select.stories.d.ts +30 -0
  21. package/dist/ui/components/molecules/vc-select/vc-select.stories.d.ts.map +1 -1
  22. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +3 -0
  23. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts.map +1 -1
  24. package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts +15 -0
  25. package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts.map +1 -1
  26. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +5 -0
  27. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
  28. package/package.json +4 -4
  29. package/shared/modules/dynamic/pages/dynamic-blade-list.vue +1 -0
  30. package/shared/modules/dynamic/types/index.ts +2 -0
  31. package/ui/components/molecules/vc-input/vc-input.vue +11 -2
  32. package/ui/components/molecules/vc-pagination/vc-pagination.stories.ts +1 -1
  33. package/ui/components/molecules/vc-pagination/vc-pagination.vue +144 -91
  34. package/ui/components/molecules/vc-select/vc-select.vue +8 -1
  35. 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