@makolabs/ripple 0.4.1-0 → 0.5.0
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/README.md +165 -205
- package/dist/adapters/ai/OpenAIAdapter.d.ts +115 -0
- package/dist/adapters/ai/OpenAIAdapter.js +568 -0
- package/dist/adapters/ai/index.d.ts +3 -0
- package/dist/adapters/ai/index.js +3 -0
- package/dist/adapters/ai/types.d.ts +108 -0
- package/dist/adapters/ai/types.js +31 -0
- package/dist/adapters/storage/BaseAdapter.js +31 -31
- package/dist/ai/AIChatInterface.svelte +435 -0
- package/dist/ai/AIChatInterface.svelte.d.ts +18 -0
- package/dist/ai/ChatInput.svelte +211 -0
- package/dist/ai/ChatInput.svelte.d.ts +18 -0
- package/dist/ai/CodeRenderer.svelte +174 -0
- package/dist/ai/CodeRenderer.svelte.d.ts +8 -0
- package/dist/ai/ComposeDropdown.svelte +171 -0
- package/dist/ai/ComposeDropdown.svelte.d.ts +9 -0
- package/dist/ai/MermaidRenderer.svelte +89 -0
- package/dist/ai/MermaidRenderer.svelte.d.ts +7 -0
- package/dist/ai/MessageBox.svelte +403 -0
- package/dist/ai/MessageBox.svelte.d.ts +12 -0
- package/dist/ai/ThinkingDisplay.svelte +275 -0
- package/dist/ai/ThinkingDisplay.svelte.d.ts +9 -0
- package/dist/ai/ai-chat-interface.d.ts +161 -0
- package/dist/ai/ai-chat-interface.js +63 -0
- package/dist/ai/content-detector.d.ts +41 -0
- package/dist/ai/content-detector.js +153 -0
- package/dist/config/ai.d.ts +13 -0
- package/dist/config/ai.js +43 -0
- package/dist/elements/accordion/accordion.js +1 -1
- package/dist/elements/badge/Badge.svelte +14 -3
- package/dist/elements/dropdown/Dropdown.svelte +2 -2
- package/dist/elements/dropdown/Select.svelte +1 -1
- package/dist/elements/progress/Progress.svelte +7 -10
- package/dist/file-browser/FileBrowser.svelte +1 -1
- package/dist/forms/DateRange.svelte +18 -16
- package/dist/forms/NumberInput.svelte +1 -1
- package/dist/forms/RadioInputs.svelte +1 -1
- package/dist/forms/RadioPill.svelte +1 -1
- package/dist/forms/Tags.svelte +2 -2
- package/dist/helper/date.d.ts +1 -0
- package/dist/helper/date.js +6 -0
- package/dist/index.d.ts +65 -1
- package/dist/index.js +11 -0
- package/dist/layout/activity-list/ActivityList.svelte +94 -0
- package/dist/layout/activity-list/ActivityList.svelte.d.ts +4 -0
- package/dist/layout/activity-list/activity-list.d.ts +152 -0
- package/dist/layout/activity-list/activity-list.js +59 -0
- package/dist/layout/card/Card.svelte +1 -5
- package/dist/layout/card/metric-card.d.ts +18 -18
- package/dist/layout/table/Cells.svelte +1 -7
- package/dist/layout/table/Cells.svelte.d.ts +1 -1
- package/dist/modal/Modal.svelte +4 -2
- package/dist/modal/Modal.svelte.d.ts +1 -1
- package/dist/modal/modal.d.ts +19 -18
- package/dist/modal/modal.js +7 -6
- package/dist/sonner/sonner.svelte +1 -7
- package/dist/types/markdown.d.ts +14 -0
- package/dist/utils/Portal.svelte +1 -1
- package/package.json +128 -121
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
export declare const metricCard: import("tailwind-variants").TVReturnType<{
|
|
2
2
|
[key: string]: {
|
|
3
|
-
[key: string]: import("tailwind-
|
|
4
|
-
base?: import("tailwind-
|
|
5
|
-
value?: import("tailwind-
|
|
6
|
-
title?: import("tailwind-
|
|
7
|
-
progress?: import("tailwind-
|
|
8
|
-
detail?: import("tailwind-
|
|
3
|
+
[key: string]: import("tailwind-variants").ClassValue | {
|
|
4
|
+
base?: import("tailwind-variants").ClassValue;
|
|
5
|
+
value?: import("tailwind-variants").ClassValue;
|
|
6
|
+
title?: import("tailwind-variants").ClassValue;
|
|
7
|
+
progress?: import("tailwind-variants").ClassValue;
|
|
8
|
+
detail?: import("tailwind-variants").ClassValue;
|
|
9
9
|
};
|
|
10
10
|
};
|
|
11
11
|
} | {
|
|
12
12
|
[x: string]: {
|
|
13
|
-
[x: string]: import("tailwind-
|
|
14
|
-
base?: import("tailwind-
|
|
15
|
-
value?: import("tailwind-
|
|
16
|
-
title?: import("tailwind-
|
|
17
|
-
progress?: import("tailwind-
|
|
18
|
-
detail?: import("tailwind-
|
|
13
|
+
[x: string]: import("tailwind-variants").ClassValue | {
|
|
14
|
+
base?: import("tailwind-variants").ClassValue;
|
|
15
|
+
value?: import("tailwind-variants").ClassValue;
|
|
16
|
+
title?: import("tailwind-variants").ClassValue;
|
|
17
|
+
progress?: import("tailwind-variants").ClassValue;
|
|
18
|
+
detail?: import("tailwind-variants").ClassValue;
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
21
|
} | {}, {
|
|
@@ -26,12 +26,12 @@ export declare const metricCard: import("tailwind-variants").TVReturnType<{
|
|
|
26
26
|
progress: string;
|
|
27
27
|
}, undefined, {
|
|
28
28
|
[key: string]: {
|
|
29
|
-
[key: string]: import("tailwind-
|
|
30
|
-
base?: import("tailwind-
|
|
31
|
-
value?: import("tailwind-
|
|
32
|
-
title?: import("tailwind-
|
|
33
|
-
progress?: import("tailwind-
|
|
34
|
-
detail?: import("tailwind-
|
|
29
|
+
[key: string]: import("tailwind-variants").ClassValue | {
|
|
30
|
+
base?: import("tailwind-variants").ClassValue;
|
|
31
|
+
value?: import("tailwind-variants").ClassValue;
|
|
32
|
+
title?: import("tailwind-variants").ClassValue;
|
|
33
|
+
progress?: import("tailwind-variants").ClassValue;
|
|
34
|
+
detail?: import("tailwind-variants").ClassValue;
|
|
35
35
|
};
|
|
36
36
|
};
|
|
37
37
|
} | {}, {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<script module lang="ts">
|
|
2
2
|
import type { StatusType, KeyType, DataRow } from './table.js';
|
|
3
|
+
import { formatTime } from '../../helper/date.js';
|
|
3
4
|
|
|
4
5
|
export { DateCell, Currency, Percentage, PhoneNumber, Email, Status, Time };
|
|
5
6
|
|
|
@@ -24,13 +25,6 @@
|
|
|
24
25
|
return match ? `(${match[1]}) ${match[2]}-${match[3]}` : String(phoneNumber);
|
|
25
26
|
}
|
|
26
27
|
|
|
27
|
-
function formatTime(time: string | number | Date): KeyType {
|
|
28
|
-
return new Date(time).toLocaleTimeString('en-US', {
|
|
29
|
-
hour: '2-digit',
|
|
30
|
-
minute: '2-digit'
|
|
31
|
-
});
|
|
32
|
-
}
|
|
33
|
-
|
|
34
28
|
function formatCurrency(value: number): KeyType {
|
|
35
29
|
return new Intl.NumberFormat('en-US', {
|
|
36
30
|
style: 'currency',
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { KeyType, DataRow } from './table.js';
|
|
2
|
-
export { DateCell, Currency, Percentage, PhoneNumber, Email, Status, Time };
|
|
3
2
|
declare const DateCell: (row: DataRow, key: KeyType) => ReturnType<import("svelte").Snippet>;
|
|
4
3
|
declare const Currency: (row: DataRow, key: KeyType) => ReturnType<import("svelte").Snippet>;
|
|
5
4
|
declare const Percentage: (row: DataRow, key: KeyType) => ReturnType<import("svelte").Snippet>;
|
|
@@ -7,6 +6,7 @@ declare const PhoneNumber: (row: DataRow, key: KeyType) => ReturnType<import("sv
|
|
|
7
6
|
declare const Email: (row: DataRow, key: KeyType) => ReturnType<import("svelte").Snippet>;
|
|
8
7
|
declare const Status: (row: DataRow, key: KeyType) => ReturnType<import("svelte").Snippet>;
|
|
9
8
|
declare const Time: (row: DataRow, key: KeyType) => ReturnType<import("svelte").Snippet>;
|
|
9
|
+
export { DateCell, Currency, Percentage, PhoneNumber, Email, Status, Time };
|
|
10
10
|
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
11
11
|
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
|
|
12
12
|
$$bindings?: Bindings;
|
package/dist/modal/Modal.svelte
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { quintOut } from 'svelte/easing';
|
|
6
6
|
import { cn } from '../helper/cls.js';
|
|
7
7
|
import { modal } from './modal.js';
|
|
8
|
-
import type
|
|
8
|
+
import { Size, type MakeModalProps } from '../index.js';
|
|
9
9
|
|
|
10
10
|
let {
|
|
11
11
|
open = $bindable(false),
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
title,
|
|
14
14
|
description,
|
|
15
15
|
position = 'center',
|
|
16
|
+
size = Size.BASE,
|
|
16
17
|
children,
|
|
17
18
|
header,
|
|
18
19
|
custom,
|
|
@@ -38,7 +39,8 @@
|
|
|
38
39
|
} = $derived(
|
|
39
40
|
modal({
|
|
40
41
|
open,
|
|
41
|
-
position
|
|
42
|
+
position,
|
|
43
|
+
size
|
|
42
44
|
})
|
|
43
45
|
);
|
|
44
46
|
|
package/dist/modal/modal.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Size } from '../index.js';
|
|
1
2
|
export declare const modal: import("tailwind-variants").TVReturnType<{
|
|
2
3
|
open: {
|
|
3
4
|
true: {
|
|
@@ -29,22 +30,22 @@ export declare const modal: import("tailwind-variants").TVReturnType<{
|
|
|
29
30
|
};
|
|
30
31
|
};
|
|
31
32
|
size: {
|
|
32
|
-
|
|
33
|
+
[Size.XS]: {
|
|
33
34
|
contentWrapper: string;
|
|
34
35
|
};
|
|
35
|
-
|
|
36
|
+
[Size.SM]: {
|
|
36
37
|
contentWrapper: string;
|
|
37
38
|
};
|
|
38
|
-
|
|
39
|
+
[Size.BASE]: {
|
|
39
40
|
contentWrapper: string;
|
|
40
41
|
};
|
|
41
|
-
|
|
42
|
+
[Size.LG]: {
|
|
42
43
|
contentWrapper: string;
|
|
43
44
|
};
|
|
44
|
-
|
|
45
|
+
[Size.XL]: {
|
|
45
46
|
contentWrapper: string;
|
|
46
47
|
};
|
|
47
|
-
|
|
48
|
+
[Size.XXL]: {
|
|
48
49
|
contentWrapper: string;
|
|
49
50
|
};
|
|
50
51
|
};
|
|
@@ -99,22 +100,22 @@ export declare const modal: import("tailwind-variants").TVReturnType<{
|
|
|
99
100
|
};
|
|
100
101
|
};
|
|
101
102
|
size: {
|
|
102
|
-
|
|
103
|
+
[Size.XS]: {
|
|
103
104
|
contentWrapper: string;
|
|
104
105
|
};
|
|
105
|
-
|
|
106
|
+
[Size.SM]: {
|
|
106
107
|
contentWrapper: string;
|
|
107
108
|
};
|
|
108
|
-
|
|
109
|
+
[Size.BASE]: {
|
|
109
110
|
contentWrapper: string;
|
|
110
111
|
};
|
|
111
|
-
|
|
112
|
+
[Size.LG]: {
|
|
112
113
|
contentWrapper: string;
|
|
113
114
|
};
|
|
114
|
-
|
|
115
|
+
[Size.XL]: {
|
|
115
116
|
contentWrapper: string;
|
|
116
117
|
};
|
|
117
|
-
|
|
118
|
+
[Size.XXL]: {
|
|
118
119
|
contentWrapper: string;
|
|
119
120
|
};
|
|
120
121
|
};
|
|
@@ -169,22 +170,22 @@ export declare const modal: import("tailwind-variants").TVReturnType<{
|
|
|
169
170
|
};
|
|
170
171
|
};
|
|
171
172
|
size: {
|
|
172
|
-
|
|
173
|
+
[Size.XS]: {
|
|
173
174
|
contentWrapper: string;
|
|
174
175
|
};
|
|
175
|
-
|
|
176
|
+
[Size.SM]: {
|
|
176
177
|
contentWrapper: string;
|
|
177
178
|
};
|
|
178
|
-
|
|
179
|
+
[Size.BASE]: {
|
|
179
180
|
contentWrapper: string;
|
|
180
181
|
};
|
|
181
|
-
|
|
182
|
+
[Size.LG]: {
|
|
182
183
|
contentWrapper: string;
|
|
183
184
|
};
|
|
184
|
-
|
|
185
|
+
[Size.XL]: {
|
|
185
186
|
contentWrapper: string;
|
|
186
187
|
};
|
|
187
|
-
|
|
188
|
+
[Size.XXL]: {
|
|
188
189
|
contentWrapper: string;
|
|
189
190
|
};
|
|
190
191
|
};
|
package/dist/modal/modal.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { tv } from 'tailwind-variants';
|
|
2
|
+
import { Size } from '../index.js';
|
|
2
3
|
export const modal = tv({
|
|
3
4
|
slots: {
|
|
4
5
|
base: 'fixed inset-0 z-50 flex items-center justify-center overflow-y-auto',
|
|
@@ -41,22 +42,22 @@ export const modal = tv({
|
|
|
41
42
|
}
|
|
42
43
|
},
|
|
43
44
|
size: {
|
|
44
|
-
|
|
45
|
+
[Size.XS]: {
|
|
45
46
|
contentWrapper: 'w-full max-w-xs'
|
|
46
47
|
},
|
|
47
|
-
|
|
48
|
+
[Size.SM]: {
|
|
48
49
|
contentWrapper: 'w-full max-w-sm'
|
|
49
50
|
},
|
|
50
|
-
|
|
51
|
+
[Size.BASE]: {
|
|
51
52
|
contentWrapper: 'w-full max-w-md'
|
|
52
53
|
},
|
|
53
|
-
|
|
54
|
+
[Size.LG]: {
|
|
54
55
|
contentWrapper: 'w-full max-w-lg'
|
|
55
56
|
},
|
|
56
|
-
|
|
57
|
+
[Size.XL]: {
|
|
57
58
|
contentWrapper: 'w-full max-w-xl'
|
|
58
59
|
},
|
|
59
|
-
|
|
60
|
+
[Size.XXL]: {
|
|
60
61
|
contentWrapper: 'w-full max-w-2xl'
|
|
61
62
|
}
|
|
62
63
|
},
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare module 'markdown' {
|
|
2
|
+
export interface MarkdownOptions {
|
|
3
|
+
dialect?: string;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
export interface MarkdownAPI {
|
|
7
|
+
toHTML(markdown: string, options?: MarkdownOptions): string;
|
|
8
|
+
parse(markdown: string): any;
|
|
9
|
+
renderJsonML(jsonml: any): string;
|
|
10
|
+
toHTMLTree(tree: any): any;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export const markdown: MarkdownAPI;
|
|
14
|
+
}
|
package/dist/utils/Portal.svelte
CHANGED
package/package.json
CHANGED
|
@@ -1,123 +1,130 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
2
|
+
"name": "@makolabs/ripple",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "Simple Svelte 5 powered component library ✨",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/makolabsai/ripple-ui.git"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "vite dev",
|
|
12
|
+
"build": "vite build && npm run prepack",
|
|
13
|
+
"preview": "vite preview",
|
|
14
|
+
"prepare": "svelte-kit sync || echo ''",
|
|
15
|
+
"prepack": "svelte-kit sync && svelte-package && publint",
|
|
16
|
+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
17
|
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
18
|
+
"format": "prettier --write .",
|
|
19
|
+
"lint": "prettier --check . && eslint .",
|
|
20
|
+
"test:unit": "vitest",
|
|
21
|
+
"test": "npm run test:unit -- --run && npm run test:e2e",
|
|
22
|
+
"test:e2e": "playwright test",
|
|
23
|
+
"pub:minor": "git add . && git commit -m \"chore: prepare for publish minor\" && npm version minor && git push --follow-tags && npm publish",
|
|
24
|
+
"pub:patch": "git add . && git commit -m \"chore: prepare for publish patch\" && npm version patch && git push --follow-tags && npm publish",
|
|
25
|
+
"pub:prelish": "git add . && git commit -m \"chore: prepare for publish premajor\" && npm version premajor && git push --follow-tags && npm publish",
|
|
26
|
+
"pub:major": "git add . && git commit -m \"chore: prepare for publish major\" && npm version major && git push --follow-tags && npm publish",
|
|
27
|
+
"pub:preminor": "git add . && git commit -m \"chore: prepare for publish preminor\" && npm version preminor && git push --follow-tags && npm publish",
|
|
28
|
+
"pub:prepatch": "git add . && git commit -m \"chore: prepare for publish prepatch\" && npm version prepatch && git push --follow-tags && npm publish",
|
|
29
|
+
"pub:prerelease": "git add . && git commit -m \"chore: prepare for publish prerelease\" && npm version prerelease && git push --follow-tags && npm publish",
|
|
30
|
+
"pub:from-git": "git add . && git commit -m \"chore: prepare for publish from-git\" && npm version from-git && git push --follow-tags && npm publish",
|
|
31
|
+
"storybook": "storybook dev -p 6006",
|
|
32
|
+
"build-storybook": "storybook build"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist",
|
|
36
|
+
"!dist/**/*.test.*",
|
|
37
|
+
"!dist/**/*.spec.*"
|
|
38
|
+
],
|
|
39
|
+
"sideEffects": [
|
|
40
|
+
"**/*.css"
|
|
41
|
+
],
|
|
42
|
+
"svelte": "./dist/index.js",
|
|
43
|
+
"types": "./dist/index.d.ts",
|
|
44
|
+
"type": "module",
|
|
45
|
+
"exports": {
|
|
46
|
+
".": {
|
|
47
|
+
"types": "./dist/index.d.ts",
|
|
48
|
+
"svelte": "./dist/index.js"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"svelte": "^5.0.0"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@eslint/compat": "^1.2.5",
|
|
56
|
+
"@eslint/js": "^9.18.0",
|
|
57
|
+
"@playwright/test": "^1.49.1",
|
|
58
|
+
"@storybook/addon-a11y": "^9.0.18",
|
|
59
|
+
"@storybook/addon-docs": "^9.0.18",
|
|
60
|
+
"@storybook/addon-svelte-csf": "^5.0.7",
|
|
61
|
+
"@storybook/sveltekit": "^9.0.18",
|
|
62
|
+
"@sveltejs/kit": "^2.16.0",
|
|
63
|
+
"@sveltejs/package": "^2.0.0",
|
|
64
|
+
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
|
65
|
+
"@tailwindcss/vite": "^4.0.14",
|
|
66
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
67
|
+
"@testing-library/svelte": "^5.2.4",
|
|
68
|
+
"@types/node": "^22.13.10",
|
|
69
|
+
"eslint": "^9.18.0",
|
|
70
|
+
"eslint-config-prettier": "^10.0.1",
|
|
71
|
+
"eslint-plugin-storybook": "^9.0.18",
|
|
72
|
+
"eslint-plugin-svelte": "^3.0.0",
|
|
73
|
+
"globals": "^16.0.0",
|
|
74
|
+
"jsdom": "^26.0.0",
|
|
75
|
+
"prettier": "^3.4.2",
|
|
76
|
+
"prettier-plugin-svelte": "^3.3.3",
|
|
77
|
+
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
78
|
+
"publint": "^0.3.2",
|
|
79
|
+
"storybook": "^9.0.18",
|
|
80
|
+
"svelte": "^5.0.0",
|
|
81
|
+
"svelte-check": "^4.0.0",
|
|
82
|
+
"sveltekit-superforms": "^2.24.0",
|
|
83
|
+
"tailwindcss": "^4.0.0",
|
|
84
|
+
"typescript": "^5.0.0",
|
|
85
|
+
"typescript-eslint": "^8.20.0",
|
|
86
|
+
"vite": "^6.0.0",
|
|
87
|
+
"vitest": "^3.0.0",
|
|
88
|
+
"zod": "^3.24.2"
|
|
89
|
+
},
|
|
90
|
+
"keywords": [
|
|
91
|
+
"svelte",
|
|
92
|
+
"ui",
|
|
93
|
+
"svelte5",
|
|
94
|
+
"modal",
|
|
95
|
+
"navigation",
|
|
96
|
+
"ripple",
|
|
97
|
+
"button",
|
|
98
|
+
"sidebar",
|
|
99
|
+
"card",
|
|
100
|
+
"select",
|
|
101
|
+
"tooltip",
|
|
102
|
+
"accordion",
|
|
103
|
+
"tabs",
|
|
104
|
+
"alert",
|
|
105
|
+
"badge",
|
|
106
|
+
"breadcrumb",
|
|
107
|
+
"carousel",
|
|
108
|
+
"collapse",
|
|
109
|
+
"list-group",
|
|
110
|
+
"pagination",
|
|
111
|
+
"progress",
|
|
112
|
+
"spinner",
|
|
113
|
+
"toast"
|
|
114
|
+
],
|
|
115
|
+
"dependencies": {
|
|
116
|
+
"@friendofsvelte/mermaid": "^0.0.4",
|
|
117
|
+
"@friendofsvelte/state": "^0.0.6-ts",
|
|
118
|
+
"@sveltejs/adapter-static": "^3.0.9",
|
|
119
|
+
"compromise": "^14.14.4",
|
|
120
|
+
"dayjs": "^1.11.13",
|
|
121
|
+
"echarts": "^5.6.0",
|
|
122
|
+
"marked": "^16.2.1",
|
|
123
|
+
"mem0ai": "^2.1.37",
|
|
124
|
+
"natural": "^8.1.0",
|
|
125
|
+
"svelte-highlight": "^7.8.4",
|
|
126
|
+
"svelte-sonner": "^0.3.28",
|
|
127
|
+
"tailwind-merge": "^3.0.2",
|
|
128
|
+
"tailwind-variants": "^1.0.0"
|
|
129
|
+
}
|
|
123
130
|
}
|