@humandialog/forms.svelte 1.4.8 → 1.4.9
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/breadcrumb.svelte +59 -0
- package/components/breadcrumb.svelte.d.ts +25 -0
- package/components/breadcrumb_utils.d.ts +4 -0
- package/components/breadcrumb_utils.js +45 -0
- package/components/paginator.svelte +105 -0
- package/components/paginator.svelte.d.ts +35 -0
- package/components/sidebar/sidebar.item.svelte +5 -1
- package/components/sidebar/sidebar.item.svelte.d.ts +2 -0
- package/index.d.ts +3 -0
- package/index.js +3 -0
- package/operations.svelte +3 -3
- package/package.json +6 -2
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import {location, link, querystring} from 'svelte-spa-router'
|
|
3
|
+
import { breadcrumbParse, breadcrumbStringify } from './breadcrumb_utils';
|
|
4
|
+
|
|
5
|
+
export let path;
|
|
6
|
+
|
|
7
|
+
let segments = []
|
|
8
|
+
let userClass = $$props.class ?? ''
|
|
9
|
+
|
|
10
|
+
$: init($location, $querystring)
|
|
11
|
+
|
|
12
|
+
function init(...args)
|
|
13
|
+
{
|
|
14
|
+
segments = breadcrumbParse(path);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function getSegmentHRef(href, idx)
|
|
18
|
+
{
|
|
19
|
+
let prevSegments = []
|
|
20
|
+
if(idx > 0)
|
|
21
|
+
prevSegments = segments.slice(0, idx)
|
|
22
|
+
|
|
23
|
+
const prevPath = breadcrumbStringify(prevSegments)
|
|
24
|
+
return `${href}?path=${prevPath}`
|
|
25
|
+
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
</script>
|
|
29
|
+
|
|
30
|
+
<nav class="flex {userClass}" aria-label="Breadcrumb">
|
|
31
|
+
<ol class="inline-flex items-center space-x-1 md:space-x-2 rtl:space-x-reverse flex-wrap">
|
|
32
|
+
|
|
33
|
+
{#if (segments && segments.length > 1)}
|
|
34
|
+
{#each segments as segment, idx (segment.href)}
|
|
35
|
+
{@const isFirst = idx == 0}
|
|
36
|
+
{@const isLast = idx == segments.length-1}
|
|
37
|
+
<li>
|
|
38
|
+
<div class="flex items-center">
|
|
39
|
+
{#if !isFirst}
|
|
40
|
+
<svg class="rtl:rotate-180 w-3 h-3 text-stone-400 mx-1" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 6 10">
|
|
41
|
+
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1 9 4-4-4-4"/>
|
|
42
|
+
</svg>
|
|
43
|
+
{/if}
|
|
44
|
+
{#if isLast}
|
|
45
|
+
<span class="ms-1 text-sm md:ms-2 font-semibold text-stone-900 dark:text-stone-100 whitespace-nowrap">
|
|
46
|
+
{segment.name}
|
|
47
|
+
</span>
|
|
48
|
+
{:else}
|
|
49
|
+
<a href={getSegmentHRef(segment.href, idx)} use:link class="ms-1 text-sm font-medium md:ms-2 text-stone-700 hover:text-stone-900 dark:text-stone-400 dark:hover:text-white whitespace-nowrap">
|
|
50
|
+
{segment.name}
|
|
51
|
+
</a>
|
|
52
|
+
{/if}
|
|
53
|
+
</div>
|
|
54
|
+
</li>
|
|
55
|
+
{/each}
|
|
56
|
+
{/if}
|
|
57
|
+
|
|
58
|
+
</ol>
|
|
59
|
+
</nav>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} BreadcrumbProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} BreadcrumbEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} BreadcrumbSlots */
|
|
4
|
+
export default class Breadcrumb extends SvelteComponentTyped<{
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
path: any;
|
|
7
|
+
}, {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
}, {}> {
|
|
10
|
+
}
|
|
11
|
+
export type BreadcrumbProps = typeof __propDef.props;
|
|
12
|
+
export type BreadcrumbEvents = typeof __propDef.events;
|
|
13
|
+
export type BreadcrumbSlots = typeof __propDef.slots;
|
|
14
|
+
import { SvelteComponentTyped } from "svelte";
|
|
15
|
+
declare const __propDef: {
|
|
16
|
+
props: {
|
|
17
|
+
[x: string]: any;
|
|
18
|
+
path: any;
|
|
19
|
+
};
|
|
20
|
+
events: {
|
|
21
|
+
[evt: string]: CustomEvent<any>;
|
|
22
|
+
};
|
|
23
|
+
slots: {};
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
export function breadcrumbAdd(path, name, href)
|
|
3
|
+
{
|
|
4
|
+
if(path.length > 0)
|
|
5
|
+
path += ';'
|
|
6
|
+
path += `${encodeURIComponent(href)}!${encodeURIComponent(breadcrumbClipName(name))}`
|
|
7
|
+
return path
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export function breadcrumbParse(path)
|
|
11
|
+
{
|
|
12
|
+
let segments = []
|
|
13
|
+
const segs = path.split(';')
|
|
14
|
+
segs.forEach(s => {
|
|
15
|
+
const nidx = s.indexOf('!')
|
|
16
|
+
segments.push({
|
|
17
|
+
href: decodeURIComponent( s.substring(0, nidx) ),
|
|
18
|
+
name: decodeURIComponent( s.substring(nidx+1))
|
|
19
|
+
})
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
return segments;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export function breadcrumbStringify(segments)
|
|
26
|
+
{
|
|
27
|
+
let result = ''
|
|
28
|
+
segments.forEach(s => {
|
|
29
|
+
|
|
30
|
+
if(result.length > 0)
|
|
31
|
+
result += ";";
|
|
32
|
+
result += `${encodeURIComponent(s.href)}!${encodeURIComponent(breadcrumbClipName(s.name))}`
|
|
33
|
+
})
|
|
34
|
+
|
|
35
|
+
return result;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function breadcrumbClipName(name)
|
|
39
|
+
{
|
|
40
|
+
const maxNameLen = 24;
|
|
41
|
+
if(name.length > maxNameLen)
|
|
42
|
+
return name.substr(0, maxNameLen-3) + "..."
|
|
43
|
+
else
|
|
44
|
+
return name;
|
|
45
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
|
|
3
|
+
export let pageNo
|
|
4
|
+
export let allPagesNo
|
|
5
|
+
export let onPage
|
|
6
|
+
export let visiblePagesNo = 4
|
|
7
|
+
|
|
8
|
+
let visiblePages = []
|
|
9
|
+
$: update()
|
|
10
|
+
|
|
11
|
+
export function updatePageNo(p)
|
|
12
|
+
{
|
|
13
|
+
pageNo = p
|
|
14
|
+
update()
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export function updateAllPagesNo(allP)
|
|
18
|
+
{
|
|
19
|
+
allPagesNo = allP
|
|
20
|
+
update()
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function update(...args)
|
|
24
|
+
{
|
|
25
|
+
const absStart = 0
|
|
26
|
+
const absEnd = allPagesNo-1
|
|
27
|
+
|
|
28
|
+
if(pageNo < absStart)
|
|
29
|
+
pageNo = absStart
|
|
30
|
+
|
|
31
|
+
if(pageNo > absEnd)
|
|
32
|
+
pageNo = absEnd
|
|
33
|
+
|
|
34
|
+
let visStart = pageNo - Math.floor(visiblePagesNo/2)
|
|
35
|
+
if(visStart < absStart)
|
|
36
|
+
visStart = absStart
|
|
37
|
+
|
|
38
|
+
let visEnd = visStart + visiblePagesNo - 1
|
|
39
|
+
if(visEnd > absEnd)
|
|
40
|
+
{
|
|
41
|
+
visEnd = absEnd
|
|
42
|
+
visStart = Math.max(absStart, visEnd - visiblePagesNo + 1)
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
visiblePages = []
|
|
46
|
+
for(let p=visStart; p<= visEnd; p++)
|
|
47
|
+
visiblePages.push(p)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function onPrevPage(e)
|
|
51
|
+
{
|
|
52
|
+
if(pageNo > 0)
|
|
53
|
+
onPage(pageNo-1)
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function onNextPage(e)
|
|
57
|
+
{
|
|
58
|
+
if(pageNo <= allPagesNo-2)
|
|
59
|
+
onPage(pageNo+1)
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
</script>
|
|
63
|
+
|
|
64
|
+
<nav aria-label="Page navigation example" class="">
|
|
65
|
+
{#if visiblePages.length > 1}
|
|
66
|
+
<ul class="flex items-center -space-x-px h-8 text-sm">
|
|
67
|
+
<li>
|
|
68
|
+
<button on:click={onPrevPage}
|
|
69
|
+
class="flex items-center justify-center px-3 h-8 ms-0 leading-tight text-stone-500 bg-white border border-e-0 border-stone-300 rounded-s-lg hover:bg-stone-100 hover:text-stone-700 dark:bg-stone-800 dark:border-stone-700 dark:text-stone-400 dark:hover:bg-stone-700 dark:hover:text-white">
|
|
70
|
+
<span class="sr-only">Previous</span>
|
|
71
|
+
<svg class="w-2.5 h-2.5 rtl:rotate-180" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 6 10">
|
|
72
|
+
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 1 1 5l4 4"/>
|
|
73
|
+
</svg>
|
|
74
|
+
</button>
|
|
75
|
+
</li>
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
{#each visiblePages as p (p)}
|
|
79
|
+
<li>
|
|
80
|
+
{#if p == pageNo}
|
|
81
|
+
<button disabled class="z-10 flex items-center justify-center px-3 h-8 leading-tight text-blue-600 border border-blue-300 bg-blue-50 hover:bg-blue-100 hover:text-blue-700 dark:border-stone-700 dark:bg-stone-700 dark:text-white">
|
|
82
|
+
{p+1}
|
|
83
|
+
</button>
|
|
84
|
+
{:else}
|
|
85
|
+
<button on:click={(e) => onPage(p)} class="flex items-center justify-center px-3 h-8 leading-tight text-stone-500 bg-white border border-stone-300 hover:bg-stone-100 hover:text-stone-700 dark:bg-stone-800 dark:border-stone-700 dark:text-stone-400 dark:hover:bg-stone-700 dark:hover:text-white">
|
|
86
|
+
{p+1}
|
|
87
|
+
</button>
|
|
88
|
+
{/if}
|
|
89
|
+
</li>
|
|
90
|
+
|
|
91
|
+
{/each}
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
<!--a href="#" aria-current="page" class="">3</a-->
|
|
95
|
+
<li>
|
|
96
|
+
<button on:click={onNextPage} class="flex items-center justify-center px-3 h-8 leading-tight text-stone-500 bg-white border border-stone-300 rounded-e-lg hover:bg-stone-100 hover:text-stone-700 dark:bg-stone-800 dark:border-stone-700 dark:text-stone-400 dark:hover:bg-stone-700 dark:hover:text-white">
|
|
97
|
+
<span class="sr-only">Next</span>
|
|
98
|
+
<svg class="w-2.5 h-2.5 rtl:rotate-180" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 6 10">
|
|
99
|
+
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1 9 4-4-4-4"/>
|
|
100
|
+
</svg>
|
|
101
|
+
</button>
|
|
102
|
+
</li>
|
|
103
|
+
</ul>
|
|
104
|
+
{/if}
|
|
105
|
+
</nav>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} PaginatorProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} PaginatorEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} PaginatorSlots */
|
|
4
|
+
export default class Paginator extends SvelteComponentTyped<{
|
|
5
|
+
pageNo: any;
|
|
6
|
+
allPagesNo: any;
|
|
7
|
+
onPage: any;
|
|
8
|
+
visiblePagesNo?: number | undefined;
|
|
9
|
+
updatePageNo?: ((p: any) => void) | undefined;
|
|
10
|
+
updateAllPagesNo?: ((allP: any) => void) | undefined;
|
|
11
|
+
}, {
|
|
12
|
+
[evt: string]: CustomEvent<any>;
|
|
13
|
+
}, {}> {
|
|
14
|
+
get updatePageNo(): (p: any) => void;
|
|
15
|
+
get updateAllPagesNo(): (allP: any) => void;
|
|
16
|
+
}
|
|
17
|
+
export type PaginatorProps = typeof __propDef.props;
|
|
18
|
+
export type PaginatorEvents = typeof __propDef.events;
|
|
19
|
+
export type PaginatorSlots = typeof __propDef.slots;
|
|
20
|
+
import { SvelteComponentTyped } from "svelte";
|
|
21
|
+
declare const __propDef: {
|
|
22
|
+
props: {
|
|
23
|
+
pageNo: any;
|
|
24
|
+
allPagesNo: any;
|
|
25
|
+
onPage: any;
|
|
26
|
+
visiblePagesNo?: number | undefined;
|
|
27
|
+
updatePageNo?: ((p: any) => void) | undefined;
|
|
28
|
+
updateAllPagesNo?: ((allP: any) => void) | undefined;
|
|
29
|
+
};
|
|
30
|
+
events: {
|
|
31
|
+
[evt: string]: CustomEvent<any>;
|
|
32
|
+
};
|
|
33
|
+
slots: {};
|
|
34
|
+
};
|
|
35
|
+
export {};
|
|
@@ -64,6 +64,10 @@ export async function editSummary() {
|
|
|
64
64
|
});
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
|
+
export function updateSummary(txt) {
|
|
68
|
+
console.log("updateSummary", txt);
|
|
69
|
+
summaryText = txt;
|
|
70
|
+
}
|
|
67
71
|
let user_class = $$props.class ?? "";
|
|
68
72
|
let root;
|
|
69
73
|
function calculateIsRowActive(...args) {
|
|
@@ -289,7 +293,7 @@ function activateRow(e) {
|
|
|
289
293
|
{/if}
|
|
290
294
|
</div>
|
|
291
295
|
|
|
292
|
-
{#if summaryText}
|
|
296
|
+
{#if summaryText || summaryPlaceholder}
|
|
293
297
|
<p class="ml-14 mt-1
|
|
294
298
|
text-stone-900 dark:text-stone-400
|
|
295
299
|
cursor-default
|
|
@@ -11,6 +11,7 @@ declare const __propDef: {
|
|
|
11
11
|
item?: object | undefined;
|
|
12
12
|
summary?: string | object | undefined;
|
|
13
13
|
editSummary?: (() => Promise<void>) | undefined;
|
|
14
|
+
updateSummary?: ((txt: any) => void) | undefined;
|
|
14
15
|
};
|
|
15
16
|
events: {
|
|
16
17
|
click: MouseEvent;
|
|
@@ -28,5 +29,6 @@ export type SidebarEvents = typeof __propDef.events;
|
|
|
28
29
|
export type SidebarSlots = typeof __propDef.slots;
|
|
29
30
|
export default class Sidebar extends SvelteComponentTyped<SidebarProps, SidebarEvents, SidebarSlots> {
|
|
30
31
|
get editSummary(): () => Promise<void>;
|
|
32
|
+
get updateSummary(): (txt: any) => void;
|
|
31
33
|
}
|
|
32
34
|
export {};
|
package/index.d.ts
CHANGED
|
@@ -57,6 +57,9 @@ export { default as KanbanComboProperty } from './components/kanban/kanban.combo
|
|
|
57
57
|
export { default as KanbanTagsProperty } from './components/kanban/kanban.tags.svelte';
|
|
58
58
|
export { default as KanbanCallbacks } from './components/kanban/kanban.callbacks.svelte';
|
|
59
59
|
export { KanbanColumnTop, KanbanColumnBottom } from './components/kanban/Kanban';
|
|
60
|
+
export { default as Paginator } from './components/paginator.svelte';
|
|
61
|
+
export { default as Breadcrumb } from './components/breadcrumb.svelte';
|
|
62
|
+
export { breadcrumbAdd, breadcrumbParse, breadcrumbStringify, breadcrumbClipName } from './components/breadcrumb_utils';
|
|
60
63
|
export { selectItem, activateItem, clearActiveItem, isActive, isSelected, getActive, editable, startEditing, saveCurrentEditable, selectable, handleSelect, isDeviceSmallerThan, resizeImage, refreshToolbarOperations, isOnScreenKeyboardVisible, randomString, UI, } from './utils';
|
|
61
64
|
export { getNiceStringDateTime, getFormattedStringDate, getNiceStringDate, dayName, monthName } from './components/date_utils';
|
|
62
65
|
export { mainContentPageReloader, reloadMainContentPage, reloadWholeApp, alerts, addAlert, onErrorShowAlert, main_sidebar_visible_store, tagsReloader, reloadVisibleTags, dark_mode_store, showFABAlways } from './stores.js';
|
package/index.js
CHANGED
|
@@ -63,6 +63,9 @@ export { default as KanbanComboProperty } from './components/kanban/kanban.combo
|
|
|
63
63
|
export { default as KanbanTagsProperty } from './components/kanban/kanban.tags.svelte';
|
|
64
64
|
export { default as KanbanCallbacks } from './components/kanban/kanban.callbacks.svelte';
|
|
65
65
|
export { KanbanColumnTop, KanbanColumnBottom } from './components/kanban/Kanban';
|
|
66
|
+
export { default as Paginator } from './components/paginator.svelte';
|
|
67
|
+
export { default as Breadcrumb } from './components/breadcrumb.svelte';
|
|
68
|
+
export { breadcrumbAdd, breadcrumbParse, breadcrumbStringify, breadcrumbClipName } from './components/breadcrumb_utils';
|
|
66
69
|
export { selectItem, activateItem, clearActiveItem, isActive, isSelected, getActive, editable, startEditing, saveCurrentEditable, selectable, handleSelect, isDeviceSmallerThan, resizeImage, refreshToolbarOperations, isOnScreenKeyboardVisible, randomString, UI, } from './utils';
|
|
67
70
|
export { getNiceStringDateTime, getFormattedStringDate, getNiceStringDate, dayName, monthName } from './components/date_utils';
|
|
68
71
|
export { mainContentPageReloader, reloadMainContentPage, reloadWholeApp, alerts, addAlert, onErrorShowAlert, main_sidebar_visible_store, tagsReloader, reloadVisibleTags, dark_mode_store, showFABAlways } from './stores.js';
|
package/operations.svelte
CHANGED
|
@@ -200,7 +200,7 @@ function isOperationDisabled(operation) {
|
|
|
200
200
|
</button>
|
|
201
201
|
{/each}
|
|
202
202
|
{:else}
|
|
203
|
-
{@const enabledLightColors ='text-stone-600 hover:text-stone-800 hover:bg-stone-200 active:bg-stone-
|
|
203
|
+
{@const enabledLightColors ='text-stone-600 hover:text-stone-800 hover:bg-stone-200 active:bg-stone-100 border-stone-200'}
|
|
204
204
|
{@const disabledLightColors ='text-stone-400 border-stone-200'}
|
|
205
205
|
|
|
206
206
|
{@const enabledDarkColors ='dark:text-stone-300 dark:hover:text-white dark:hover:bg-stone-800 dark:active:bg-stone-600 dark:border-stone-600'}
|
|
@@ -216,7 +216,7 @@ function isOperationDisabled(operation) {
|
|
|
216
216
|
focus:outline-none
|
|
217
217
|
inline-flex items-center
|
|
218
218
|
{colors}"
|
|
219
|
-
class:bg-stone-
|
|
219
|
+
class:bg-stone-200={isActive}
|
|
220
220
|
class:dark:bg-stone-800={isActive}
|
|
221
221
|
disabled={isDisabled}
|
|
222
222
|
on:mousedown={(e) => mousedown(e, operation)}
|
|
@@ -258,7 +258,7 @@ function isOperationDisabled(operation) {
|
|
|
258
258
|
{colors}
|
|
259
259
|
focus:outline-none
|
|
260
260
|
inline-flex items-center"
|
|
261
|
-
class:bg-stone-
|
|
261
|
+
class:bg-stone-200={isActive}
|
|
262
262
|
class:dark:bg-stone-800={isActive}
|
|
263
263
|
disabled={isDisabled}
|
|
264
264
|
on:mousedown={(e) => mousedown(e, operation)}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@humandialog/forms.svelte",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.9",
|
|
4
4
|
"description": "Basic Svelte UI components for Object Reef applications",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@playwright/test": "^1.28.1",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"type": "module",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@humandialog/auth.svelte": "^1.8.
|
|
29
|
+
"@humandialog/auth.svelte": "^1.8.14",
|
|
30
30
|
"@tiptap/core": "^2.11.0",
|
|
31
31
|
"@tiptap/extension-bullet-list": "^2.11.5",
|
|
32
32
|
"@tiptap/extension-code-block": "^2.11.5",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"pdfjs-dist": "^4.10.38",
|
|
46
46
|
"qs": "^6.14.0",
|
|
47
47
|
"svelte-icons": "^2.1.0",
|
|
48
|
+
"svelte-share-buttons-component": "^3.0.0",
|
|
48
49
|
"svelte-spa-router": "^4.0.1"
|
|
49
50
|
},
|
|
50
51
|
"keywords": [
|
|
@@ -67,6 +68,8 @@
|
|
|
67
68
|
"homepage": "https://github.com/HumanDialog/forms.svelte#readme",
|
|
68
69
|
"exports": {
|
|
69
70
|
"./package.json": "./package.json",
|
|
71
|
+
"./components/breadcrumb.svelte": "./components/breadcrumb.svelte",
|
|
72
|
+
"./components/breadcrumb_utils": "./components/breadcrumb_utils.js",
|
|
70
73
|
"./components/button.svelte": "./components/button.svelte",
|
|
71
74
|
"./components/checkbox.svelte": "./components/checkbox.svelte",
|
|
72
75
|
"./components/combo/combo.item.svelte": "./components/combo/combo.item.svelte",
|
|
@@ -130,6 +133,7 @@
|
|
|
130
133
|
"./components/list/list.title.svelte": "./components/list/list.title.svelte",
|
|
131
134
|
"./components/list/List": "./components/list/List.js",
|
|
132
135
|
"./components/menu": "./components/menu.js",
|
|
136
|
+
"./components/paginator.svelte": "./components/paginator.svelte",
|
|
133
137
|
"./components/radio.svelte": "./components/radio.svelte",
|
|
134
138
|
"./components/sidebar/sidebar.brand.svelte": "./components/sidebar/sidebar.brand.svelte",
|
|
135
139
|
"./components/sidebar/sidebar.group.svelte": "./components/sidebar/sidebar.group.svelte",
|