@websline/system-components 1.4.4 → 1.4.7
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/dist/assets/fonts/borna-bold-webfont.woff +0 -0
- package/dist/assets/fonts/borna-bold-webfont.woff2 +0 -0
- package/dist/assets/fonts/borna-bolditalic-webfont.woff +0 -0
- package/dist/assets/fonts/borna-bolditalic-webfont.woff2 +0 -0
- package/dist/assets/fonts/borna-medium-webfont.woff +0 -0
- package/dist/assets/fonts/borna-medium-webfont.woff2 +0 -0
- package/dist/assets/fonts/borna-mediumitalic-webfont.woff +0 -0
- package/dist/assets/fonts/borna-mediumitalic-webfont.woff2 +0 -0
- package/dist/assets/fonts/borna-regular-webfont.woff +0 -0
- package/dist/assets/fonts/borna-regular-webfont.woff2 +0 -0
- package/dist/assets/fonts/borna-regularitalic-webfont.woff +0 -0
- package/dist/assets/fonts/borna-regularitalic-webfont.woff2 +0 -0
- package/dist/assets/fonts/borna-semibold-webfont.woff +0 -0
- package/dist/assets/fonts/borna-semibold-webfont.woff2 +0 -0
- package/dist/assets/fonts/borna-semibolditalic-webfont.woff +0 -0
- package/dist/assets/fonts/borna-semibolditalic-webfont.woff2 +0 -0
- package/dist/components/atoms/checkbox/checkbox.variants.d.ts +2 -2
- package/dist/components/atoms/checkbox/checkbox.variants.js +1 -1
- package/dist/components/atoms/icon/components/Lightning.svelte +26 -0
- package/dist/components/atoms/icon/components/Lightning.svelte.d.ts +41 -0
- package/dist/components/atoms/icon/components/index.d.ts +1 -0
- package/dist/components/atoms/icon/components/index.js +1 -0
- package/dist/components/atoms/radio/Radio.svelte +57 -2
- package/dist/components/atoms/tag/Tag.svelte +9 -7
- package/dist/components/atoms/tag/Tag.svelte.d.ts +8 -8
- package/dist/components/atoms/tag/tag.variants.d.ts +0 -9
- package/dist/components/atoms/tag/tag.variants.js +1 -4
- package/dist/components/molecules/calendar/Calendar.svelte +95 -0
- package/dist/components/molecules/calendar/Calendar.svelte.d.ts +42 -0
- package/dist/components/molecules/calendar/Container.svelte +25 -0
- package/dist/components/molecules/calendar/Container.svelte.d.ts +25 -0
- package/dist/components/molecules/calendar/DayCell.svelte +47 -0
- package/dist/components/molecules/calendar/RootContext.svelte +28 -0
- package/dist/components/molecules/calendar/RootContext.svelte.d.ts +21 -0
- package/dist/components/molecules/calendar/WeekRow.svelte +65 -0
- package/dist/components/molecules/calendar/Weekdays.svelte +27 -0
- package/dist/components/molecules/calendar/Weekdays.svelte.d.ts +17 -0
- package/dist/components/molecules/calendar/calendar.variant.d.ts +79 -0
- package/dist/components/molecules/calendar/calendar.variant.js +36 -0
- package/dist/components/molecules/calendar/index.d.ts +8 -0
- package/dist/components/molecules/calendar/index.js +10 -0
- package/dist/components/molecules/formField/FormField.svelte +1 -1
- package/dist/components/molecules/formField/FormField.svelte.d.ts +2 -2
- package/dist/components/molecules/formField/formField.variants.d.ts +12 -12
- package/dist/components/molecules/formField/formField.variants.js +21 -5
- package/dist/components/molecules/richTextEditor/RichTextEditor.svelte +2 -4
- package/dist/components/molecules/selectorCard/SelectorCard.svelte +8 -2
- package/dist/components/molecules/selectorCard/SelectorCard.svelte.d.ts +2 -2
- package/dist/components/molecules/tagSelector/TagSelector.svelte +12 -0
- package/dist/components/molecules/tagSelector/TagSelector.svelte.d.ts +16 -0
- package/dist/components/molecules/tagSelector/ValueList.svelte +12 -2
- package/dist/components/molecules/tagSelector/ValueList.svelte.d.ts +4 -0
- package/dist/components/molecules/tagSelector/tagSelector.variants.js +2 -2
- package/dist/components/organisms/tooltip/Content.svelte +51 -0
- package/dist/components/organisms/tooltip/Content.svelte.d.ts +57 -0
- package/dist/components/organisms/tooltip/Tooltip.svelte +15 -0
- package/dist/components/organisms/tooltip/Tooltip.svelte.d.ts +17 -0
- package/dist/components/organisms/tooltip/Trigger.svelte +13 -0
- package/dist/components/organisms/tooltip/Trigger.svelte.d.ts +17 -0
- package/dist/components/organisms/tooltip/index.d.ts +4 -0
- package/dist/components/organisms/tooltip/index.js +5 -0
- package/dist/components/organisms/tooltip/tooltip.variant.d.ts +24 -0
- package/dist/components/organisms/tooltip/tooltip.variant.js +20 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +108 -99
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export default Content;
|
|
2
|
+
type Content = {
|
|
3
|
+
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
+
$set?(props: Partial<Props>): void;
|
|
5
|
+
};
|
|
6
|
+
declare const Content: import("svelte").Component<{
|
|
7
|
+
/**
|
|
8
|
+
* Children content – can be text, HTML, or other Svelte components
|
|
9
|
+
*/
|
|
10
|
+
children?: import("svelte").Snippet;
|
|
11
|
+
/**
|
|
12
|
+
* Additional CSS classes for the content
|
|
13
|
+
*/
|
|
14
|
+
class?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Whether the portal is disabled or not. When disabled, the content will be rendered in its original DOM location.
|
|
17
|
+
*/
|
|
18
|
+
portalDisabled?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Where to render the content when it is open. Defaults to the body.
|
|
21
|
+
*/
|
|
22
|
+
portalTarget?: string;
|
|
23
|
+
/**
|
|
24
|
+
* The preferred side of the anchor to render the floating element against when open. Will be reversed when collisions occur.
|
|
25
|
+
*/
|
|
26
|
+
side?: "top" | "right" | "bottom" | "left";
|
|
27
|
+
/**
|
|
28
|
+
* The distance in pixels from the anchor to the floating element.
|
|
29
|
+
*/
|
|
30
|
+
sideOffset?: number;
|
|
31
|
+
}, {}, "">;
|
|
32
|
+
type Props = {
|
|
33
|
+
/**
|
|
34
|
+
* Children content – can be text, HTML, or other Svelte components
|
|
35
|
+
*/
|
|
36
|
+
children?: import("svelte").Snippet;
|
|
37
|
+
/**
|
|
38
|
+
* Additional CSS classes for the content
|
|
39
|
+
*/
|
|
40
|
+
class?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Whether the portal is disabled or not. When disabled, the content will be rendered in its original DOM location.
|
|
43
|
+
*/
|
|
44
|
+
portalDisabled?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* Where to render the content when it is open. Defaults to the body.
|
|
47
|
+
*/
|
|
48
|
+
portalTarget?: string;
|
|
49
|
+
/**
|
|
50
|
+
* The preferred side of the anchor to render the floating element against when open. Will be reversed when collisions occur.
|
|
51
|
+
*/
|
|
52
|
+
side?: "top" | "right" | "bottom" | "left";
|
|
53
|
+
/**
|
|
54
|
+
* The distance in pixels from the anchor to the floating element.
|
|
55
|
+
*/
|
|
56
|
+
sideOffset?: number;
|
|
57
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import { Popover } from "bits-ui";
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* @typedef {Object} Props
|
|
6
|
+
* @property {import('svelte').Snippet} [children] Children content – can be text, HTML, or other Svelte components
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/** @type {Props} */
|
|
10
|
+
let { children, ...rest } = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<Popover.Root {...rest}>
|
|
14
|
+
{@render children()}
|
|
15
|
+
</Popover.Root>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export default Tooltip;
|
|
2
|
+
type Tooltip = {
|
|
3
|
+
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
+
$set?(props: Partial<Props>): void;
|
|
5
|
+
};
|
|
6
|
+
declare const Tooltip: import("svelte").Component<{
|
|
7
|
+
/**
|
|
8
|
+
* Children content – can be text, HTML, or other Svelte components
|
|
9
|
+
*/
|
|
10
|
+
children?: import("svelte").Snippet;
|
|
11
|
+
}, {}, "">;
|
|
12
|
+
type Props = {
|
|
13
|
+
/**
|
|
14
|
+
* Children content – can be text, HTML, or other Svelte components
|
|
15
|
+
*/
|
|
16
|
+
children?: import("svelte").Snippet;
|
|
17
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import { Popover } from "bits-ui";
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* @typedef {Object} Props
|
|
6
|
+
* @property {boolean} [openOnHover=true] Whether the tooltip should open on hover
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/** @type {Props & Omit<import("bits-ui").PopoverTriggerPropsWithoutHTML, "openOnHover">} */
|
|
10
|
+
let { openOnHover = true, ...rest } = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<Popover.Trigger {openOnHover} {...rest} />
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export default Trigger;
|
|
2
|
+
type Trigger = {
|
|
3
|
+
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
+
$set?(props: Partial<Props & Omit<PopoverTriggerPropsWithoutHTML, "openOnHover">>): void;
|
|
5
|
+
};
|
|
6
|
+
declare const Trigger: import("svelte").Component<{
|
|
7
|
+
/**
|
|
8
|
+
* Whether the tooltip should open on hover
|
|
9
|
+
*/
|
|
10
|
+
openOnHover?: boolean;
|
|
11
|
+
} & Omit<import("bits-ui").DatePickerTriggerPropsWithoutHTML, "openOnHover">, {}, "">;
|
|
12
|
+
type Props = {
|
|
13
|
+
/**
|
|
14
|
+
* Whether the tooltip should open on hover
|
|
15
|
+
*/
|
|
16
|
+
openOnHover?: boolean;
|
|
17
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export const tooltipVariants: import("tailwind-variants").TVReturnType<{
|
|
2
|
+
[key: string]: {
|
|
3
|
+
[key: string]: import("tailwind-variants").ClassValue | {
|
|
4
|
+
base?: import("tailwind-variants").ClassValue;
|
|
5
|
+
child?: import("tailwind-variants").ClassValue;
|
|
6
|
+
};
|
|
7
|
+
};
|
|
8
|
+
} | {
|
|
9
|
+
[x: string]: {
|
|
10
|
+
[x: string]: import("tailwind-variants").ClassValue | {
|
|
11
|
+
base?: import("tailwind-variants").ClassValue;
|
|
12
|
+
child?: import("tailwind-variants").ClassValue;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
}, {
|
|
16
|
+
base: string[];
|
|
17
|
+
child: string;
|
|
18
|
+
}, undefined, any, {
|
|
19
|
+
base: string[];
|
|
20
|
+
child: string;
|
|
21
|
+
}, import("tailwind-variants").TVReturnType<any, {
|
|
22
|
+
base: string[];
|
|
23
|
+
child: string;
|
|
24
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { tv } from "../../../utils/tailwind.js";
|
|
2
|
+
|
|
3
|
+
const tooltipVariants = tv({
|
|
4
|
+
slots: {
|
|
5
|
+
base: [
|
|
6
|
+
"relative rounded-sm bg-current p-2 ui-caption-helper text-neutral-800 drop-shadow-sm dark:text-neutral-200",
|
|
7
|
+
|
|
8
|
+
// arrow styles
|
|
9
|
+
"after:absolute after:size-3 after:rotate-45 after:rounded-[3px] after:bg-current",
|
|
10
|
+
// 🔥 using side data attr. as the component may choose the opposite side if the provided one is too cramped
|
|
11
|
+
"data-[side=top]:after:-bottom-1 data-[side=top]:after:left-1/2 data-[side=top]:after:-translate-x-1/2",
|
|
12
|
+
"data-[side=bottom]:after:-top-1 data-[side=bottom]:after:left-1/2 data-[side=bottom]:after:-translate-x-1/2",
|
|
13
|
+
"data-[side=left]:after:top-1/2 data-[side=left]:after:-right-1 data-[side=left]:after:-translate-y-1/2",
|
|
14
|
+
"data-[side=right]:after:top-1/2 data-[side=right]:after:-left-1 data-[side=right]:after:-translate-y-1/2",
|
|
15
|
+
],
|
|
16
|
+
child: "text-neutral-100 dark:text-neutral-900",
|
|
17
|
+
},
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
export { tooltipVariants };
|
package/dist/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export { default as Switch } from "./components/atoms/switch/Switch.svelte";
|
|
|
21
21
|
export { default as Tag } from "./components/atoms/tag/Tag.svelte";
|
|
22
22
|
export { default as Textarea } from "./components/atoms/textarea/Textarea.svelte";
|
|
23
23
|
export { default as XScroll } from "./components/atoms/utils/xScroll/XScroll.svelte";
|
|
24
|
+
export * as Calendar from "./components/molecules/calendar/index.js";
|
|
24
25
|
export * as ColorSwatch from "./components/molecules/pickers/colorSwatch/index.js";
|
|
25
26
|
export { default as ComboBox } from "./components/molecules/comboBox/ComboBox.svelte";
|
|
26
27
|
export { default as FormActions } from "./components/molecules/formActions/FormActions.svelte";
|
|
@@ -37,3 +38,4 @@ export * as Dialog from "./components/organisms/dialog/index.js";
|
|
|
37
38
|
export * as Modal from "./components/organisms/modal/index.js";
|
|
38
39
|
export { default as NotificationGroup } from "./components/organisms/notificationGroup/NotificationGroup.svelte";
|
|
39
40
|
export * as Popover from "./components/organisms/popover/index.js";
|
|
41
|
+
export * as Tooltip from "./components/organisms/tooltip/index.js";
|
package/dist/index.js
CHANGED
|
@@ -31,6 +31,7 @@ export { default as XScroll } from "./components/atoms/utils/xScroll/XScroll.sve
|
|
|
31
31
|
* Molecules
|
|
32
32
|
*/
|
|
33
33
|
|
|
34
|
+
export * as Calendar from "./components/molecules/calendar/index.js";
|
|
34
35
|
export * as ColorSwatch from "./components/molecules/pickers/colorSwatch/index.js";
|
|
35
36
|
export { default as ComboBox } from "./components/molecules/comboBox/ComboBox.svelte";
|
|
36
37
|
export { default as FormActions } from "./components/molecules/formActions/FormActions.svelte";
|
|
@@ -52,3 +53,4 @@ export * as Dialog from "./components/organisms/dialog/index.js";
|
|
|
52
53
|
export * as Modal from "./components/organisms/modal/index.js";
|
|
53
54
|
export { default as NotificationGroup } from "./components/organisms/notificationGroup/NotificationGroup.svelte";
|
|
54
55
|
export * as Popover from "./components/organisms/popover/index.js";
|
|
56
|
+
export * as Tooltip from "./components/organisms/tooltip/index.js";
|
package/package.json
CHANGED
|
@@ -1,100 +1,109 @@
|
|
|
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
|
-
|
|
2
|
+
"name": "@websline/system-components",
|
|
3
|
+
"version": "1.4.7",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/Websline/websline.system-components.git"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "vite dev",
|
|
13
|
+
"build": "vite build",
|
|
14
|
+
"prepare": "node scripts/generate-barrels.js && svelte-kit sync || echo ''",
|
|
15
|
+
"prepack": "pnpm prepare && svelte-package && publint",
|
|
16
|
+
"format": "prettier --write .",
|
|
17
|
+
"lint": "prettier --check . && eslint .",
|
|
18
|
+
"test:unit": "vitest",
|
|
19
|
+
"test": "npm run test:unit -- --run",
|
|
20
|
+
"storybook": "storybook dev -p 6006",
|
|
21
|
+
"build-storybook": "storybook build"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist",
|
|
25
|
+
"!dist/**/*.test.*",
|
|
26
|
+
"!dist/**/*.spec.*"
|
|
27
|
+
],
|
|
28
|
+
"sideEffects": [
|
|
29
|
+
"**/*.css"
|
|
30
|
+
],
|
|
31
|
+
"svelte": "./dist/index.js",
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"type": "module",
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"svelte": "./dist/index.js",
|
|
38
|
+
"style": "./dist/index.css"
|
|
39
|
+
},
|
|
40
|
+
"./assets/*": "./dist/assets/*",
|
|
41
|
+
"./components/*": "./dist/components/*",
|
|
42
|
+
"./utils/*": "./dist/utils/*",
|
|
43
|
+
"./webfonts.css": {
|
|
44
|
+
"style": "./dist/webfonts.css"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@tiptap/core": "^3.22.2",
|
|
49
|
+
"@tiptap/extension-color": "^3.22.2",
|
|
50
|
+
"@tiptap/extension-highlight": "^3.22.2",
|
|
51
|
+
"@tiptap/extension-link": "^3.22.2",
|
|
52
|
+
"@tiptap/extension-placeholder": "^3.22.2",
|
|
53
|
+
"@tiptap/extension-text-align": "^3.22.2",
|
|
54
|
+
"@tiptap/extension-text-style": "^3.22.2",
|
|
55
|
+
"@tiptap/pm": "^3.22.2",
|
|
56
|
+
"@tiptap/starter-kit": "^3.22.2",
|
|
57
|
+
"bits-ui": "^2.17.2",
|
|
58
|
+
"dompurify": "^3.3.3",
|
|
59
|
+
"tailwind-variants": "^3.2.2"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"svelte": "^5.38.7"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@eslint/compat": "^2.0.4",
|
|
66
|
+
"@eslint/js": "^10.0.1",
|
|
67
|
+
"@storybook/addon-a11y": "^10.3.4",
|
|
68
|
+
"@storybook/addon-docs": "^10.3.4",
|
|
69
|
+
"@storybook/addon-svelte-csf": "^5.1.2",
|
|
70
|
+
"@storybook/sveltekit": "^10.3.4",
|
|
71
|
+
"@sveltejs/adapter-auto": "^7.0.1",
|
|
72
|
+
"@sveltejs/kit": "^2.56.1",
|
|
73
|
+
"@sveltejs/package": "^2.5.7",
|
|
74
|
+
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
|
75
|
+
"@tailwindcss/forms": "^0.5.11",
|
|
76
|
+
"@tailwindcss/typography": "^0.5.19",
|
|
77
|
+
"@tailwindcss/vite": "^4.2.2",
|
|
78
|
+
"@types/node": "^25.5.2",
|
|
79
|
+
"@vitest/browser": "^4.1.3",
|
|
80
|
+
"eslint": "^10.2.0",
|
|
81
|
+
"eslint-config-prettier": "^10.1.8",
|
|
82
|
+
"eslint-plugin-storybook": "^10.3.4",
|
|
83
|
+
"eslint-plugin-svelte": "^3.17.0",
|
|
84
|
+
"globals": "^17.4.0",
|
|
85
|
+
"playwright": "^1.59.1",
|
|
86
|
+
"postcss-url": "^10.1.3",
|
|
87
|
+
"prettier": "^3.8.1",
|
|
88
|
+
"prettier-plugin-svelte": "^3.5.1",
|
|
89
|
+
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
90
|
+
"publint": "^0.3.18",
|
|
91
|
+
"storybook": "^10.3.4",
|
|
92
|
+
"svelte": "^5.55.1",
|
|
93
|
+
"tailwindcss": "^4.2.2",
|
|
94
|
+
"typescript": "^5.9.3",
|
|
95
|
+
"vite": "^8.0.6",
|
|
96
|
+
"vitest": "^4.1.3",
|
|
97
|
+
"vitest-browser-svelte": "^2.1.0"
|
|
98
|
+
},
|
|
99
|
+
"keywords": [
|
|
100
|
+
"svelte"
|
|
101
|
+
],
|
|
102
|
+
"pnpm": {
|
|
103
|
+
"onlyBuiltDependencies": [
|
|
104
|
+
"@tailwindcss/oxide",
|
|
105
|
+
"esbuild"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
"packageManager": "pnpm@10.20.0"
|
|
109
|
+
}
|