@enki-tek/fms-web-components 0.1.62 → 0.1.64

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.
@@ -0,0 +1,21 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ noOfItems?: number | undefined;
5
+ itemPerPage?: number | undefined;
6
+ currentPage?: number | undefined;
7
+ size?: string | undefined;
8
+ };
9
+ events: {
10
+ pageChanged: CustomEvent<any>;
11
+ } & {
12
+ [evt: string]: CustomEvent<any>;
13
+ };
14
+ slots: {};
15
+ };
16
+ export type OldPaginationProps = typeof __propDef.props;
17
+ export type OldPaginationEvents = typeof __propDef.events;
18
+ export type OldPaginationSlots = typeof __propDef.slots;
19
+ export default class OldPagination extends SvelteComponentTyped<OldPaginationProps, OldPaginationEvents, OldPaginationSlots> {
20
+ }
21
+ export {};
@@ -26,4 +26,4 @@ export namespace Default {
26
26
  export { itemPerPage_1 as itemPerPage };
27
27
  }
28
28
  }
29
- import Pagination from "./Pagination.svelte";
29
+ import Pagination from "./OldPagination.svelte";
@@ -1,4 +1,4 @@
1
- import Pagination from './Pagination.svelte';
1
+ import Pagination from './OldPagination.svelte';
2
2
 
3
3
  export default{
4
4
  title:'FMS/Pagination',