@enki-tek/fms-web-components 0.1.65 → 0.1.67
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/components/Pagination/Pagination.svelte +2 -2
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
@@ -35,7 +35,7 @@ const goTo = (num) => {
|
|
35
35
|
>
|
36
36
|
{#if !!first(pages) && (first(pages) || 0) > 2}
|
37
37
|
<PaginationItem
|
38
|
-
|
38
|
+
class="d-none d-sm-block"><PaginationLink href={'javascript:{}'} on:click={() => goTo((first(pages) || 0) - 1)}
|
39
39
|
>...</PaginationLink
|
40
40
|
></PaginationItem
|
41
41
|
>
|
@@ -47,7 +47,7 @@ const goTo = (num) => {
|
|
47
47
|
{/each}
|
48
48
|
{#if !!last(pages) && (last(pages) || 0) < pageCount - 1}
|
49
49
|
<PaginationItem
|
50
|
-
|
50
|
+
class="d-none d-sm-block"><PaginationLink href={'javascript:{}'} on:click={() => goTo((last(pages) || 0) + 1)}
|
51
51
|
>...</PaginationLink
|
52
52
|
></PaginationItem
|
53
53
|
>
|
package/index.d.ts
CHANGED
@@ -53,7 +53,7 @@ import ModalBody from './components/ModalWindow/ModalBody.svelte';
|
|
53
53
|
import ModalFooter from './components/ModalWindow/ModalFooter.svelte';
|
54
54
|
import ModalHeader from './components/ModalWindow/ModalHeader.svelte';
|
55
55
|
import NotFound from './components/NotFound/NotFound.svelte';
|
56
|
-
import Pagination from './components/Pagination/
|
56
|
+
import Pagination from './components/Pagination/Pagination.svelte';
|
57
57
|
import RadioButton from './components/RadioButton/RadioButton.svelte';
|
58
58
|
import Switch from './components/Switches/Switch.svelte';
|
59
59
|
import Tab from './components/Tab/Tab.svelte';
|
package/index.js
CHANGED
@@ -54,7 +54,7 @@ import ModalBody from './components/ModalWindow/ModalBody.svelte';
|
|
54
54
|
import ModalFooter from './components/ModalWindow/ModalFooter.svelte';
|
55
55
|
import ModalHeader from './components/ModalWindow/ModalHeader.svelte';
|
56
56
|
import NotFound from './components/NotFound/NotFound.svelte';
|
57
|
-
import Pagination from './components/Pagination/
|
57
|
+
import Pagination from './components/Pagination/Pagination.svelte';
|
58
58
|
import RadioButton from './components/RadioButton/RadioButton.svelte';
|
59
59
|
import Switch from './components/Switches/Switch.svelte';
|
60
60
|
import Tab from './components/Tab/Tab.svelte';
|