@websline/system-components 1.4.6 → 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/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 +2 -0
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/package.json +108 -99
- package/dist/components/atoms/inputDate/InputDate.svelte +0 -114
- package/dist/components/atoms/inputDate/InputDate.svelte.d.ts +0 -97
- package/dist/components/atoms/inputDate/Picker.svelte +0 -36
- package/dist/components/atoms/inputDate/Picker.svelte.d.ts +0 -21
- package/dist/components/atoms/inputDate/input.variants.d.ts +0 -64
- package/dist/components/atoms/inputDate/input.variants.js +0 -20
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
/**
|
|
3
|
+
* @typedef {Object} Props
|
|
4
|
+
* @property {string} [color=""] Icon color
|
|
5
|
+
* @property {number} [height=24] Icon height
|
|
6
|
+
* @property {number} [strokeWidth=1.5] Icon StrokeWidth
|
|
7
|
+
* @property {number} [width=24] Icon width
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/** @type {Props} */
|
|
11
|
+
let { color, height, width, strokeWidth, ...rest } = $props();
|
|
12
|
+
</script>
|
|
13
|
+
|
|
14
|
+
<svg
|
|
15
|
+
{height}
|
|
16
|
+
{width}
|
|
17
|
+
viewBox="0 0 20 20"
|
|
18
|
+
fill="none"
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
{...rest}>
|
|
21
|
+
<path
|
|
22
|
+
d="M7.77843 2.5H15.0512L10.6067 7.75H16.6673L6.97035 17.5L8.99055 10.375H3.33398L7.77843 2.5Z"
|
|
23
|
+
stroke={color}
|
|
24
|
+
stroke-width={strokeWidth}
|
|
25
|
+
stroke-linejoin="round"/>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export default Lightning;
|
|
2
|
+
type Lightning = {
|
|
3
|
+
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
+
$set?(props: Partial<Props>): void;
|
|
5
|
+
};
|
|
6
|
+
declare const Lightning: import("svelte").Component<{
|
|
7
|
+
/**
|
|
8
|
+
* Icon color
|
|
9
|
+
*/
|
|
10
|
+
color?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Icon height
|
|
13
|
+
*/
|
|
14
|
+
height?: number;
|
|
15
|
+
/**
|
|
16
|
+
* Icon StrokeWidth
|
|
17
|
+
*/
|
|
18
|
+
strokeWidth?: number;
|
|
19
|
+
/**
|
|
20
|
+
* Icon width
|
|
21
|
+
*/
|
|
22
|
+
width?: number;
|
|
23
|
+
}, {}, "">;
|
|
24
|
+
type Props = {
|
|
25
|
+
/**
|
|
26
|
+
* Icon color
|
|
27
|
+
*/
|
|
28
|
+
color?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Icon height
|
|
31
|
+
*/
|
|
32
|
+
height?: number;
|
|
33
|
+
/**
|
|
34
|
+
* Icon StrokeWidth
|
|
35
|
+
*/
|
|
36
|
+
strokeWidth?: number;
|
|
37
|
+
/**
|
|
38
|
+
* Icon width
|
|
39
|
+
*/
|
|
40
|
+
width?: number;
|
|
41
|
+
};
|
|
@@ -60,6 +60,7 @@ export { default as Info } from "./Info.svelte";
|
|
|
60
60
|
export { default as Intergration } from "./Intergration.svelte";
|
|
61
61
|
export { default as Italic } from "./Italic.svelte";
|
|
62
62
|
export { default as Layout } from "./Layout.svelte";
|
|
63
|
+
export { default as Lightning } from "./Lightning.svelte";
|
|
63
64
|
export { default as Link } from "./Link.svelte";
|
|
64
65
|
export { default as LinkAi } from "./LinkAi.svelte";
|
|
65
66
|
export { default as ListOrdered } from "./ListOrdered.svelte";
|
|
@@ -60,6 +60,7 @@ export { default as Info } from "./Info.svelte";
|
|
|
60
60
|
export { default as Intergration } from "./Intergration.svelte";
|
|
61
61
|
export { default as Italic } from "./Italic.svelte";
|
|
62
62
|
export { default as Layout } from "./Layout.svelte";
|
|
63
|
+
export { default as Lightning } from "./Lightning.svelte";
|
|
63
64
|
export { default as Link } from "./Link.svelte";
|
|
64
65
|
export { default as LinkAi } from "./LinkAi.svelte";
|
|
65
66
|
export { default as ListOrdered } from "./ListOrdered.svelte";
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ export { addIconsToRegistry } from "./components/atoms/icon/index.js";
|
|
|
12
12
|
export { default as Icon } from "./components/atoms/icon/Icon.svelte";
|
|
13
13
|
export { default as IconButton } from "./components/atoms/actions/iconButton/IconButton.svelte";
|
|
14
14
|
export { default as Input } from "./components/atoms/input/Input.svelte";
|
|
15
|
-
export { default as InputDate } from "./components/atoms/inputDate/InputDate.svelte";
|
|
16
15
|
export { default as Label } from "./components/atoms/label/Label.svelte";
|
|
17
16
|
export { default as ProgressBar } from "./components/atoms/feedback/progressBar/ProgressBar.svelte";
|
|
18
17
|
export { default as Radio } from "./components/atoms/radio/Radio.svelte";
|
package/dist/index.js
CHANGED
|
@@ -17,7 +17,6 @@ export { addIconsToRegistry } from "./components/atoms/icon/index.js";
|
|
|
17
17
|
export { default as Icon } from "./components/atoms/icon/Icon.svelte";
|
|
18
18
|
export { default as IconButton } from "./components/atoms/actions/iconButton/IconButton.svelte";
|
|
19
19
|
export { default as Input } from "./components/atoms/input/Input.svelte";
|
|
20
|
-
export { default as InputDate } from "./components/atoms/inputDate/InputDate.svelte";
|
|
21
20
|
export { default as Label } from "./components/atoms/label/Label.svelte";
|
|
22
21
|
export { default as ProgressBar } from "./components/atoms/feedback/progressBar/ProgressBar.svelte";
|
|
23
22
|
export { default as Radio } from "./components/atoms/radio/Radio.svelte";
|
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
|
+
}
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import { Popover } from "bits-ui";
|
|
3
|
-
import { getContext } from "svelte";
|
|
4
|
-
import { IconButton } from "../../../index.js";
|
|
5
|
-
import Picker from "./Picker.svelte";
|
|
6
|
-
import { inputVariants } from "./input.variants.js";
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* @typedef {Object} Props
|
|
10
|
-
* @property {string|import("svelte").SvelteComponent|Function} [adornmentStart=""] Content to display at the start of the input (e.g., icon or text)
|
|
11
|
-
* @property {import("svelte").SvelteComponent} [children] Additional content to render inside the input component
|
|
12
|
-
* @property {string} [class=""] Additional CSS classes to apply to the component
|
|
13
|
-
* @property {boolean} [disabled] Whether the input is disabled
|
|
14
|
-
* @property {boolean} [error] Whether the input has an error state
|
|
15
|
-
* @property {string} [id] The ID of the input element
|
|
16
|
-
* @property {string} [name] The name of the input, used for form submission
|
|
17
|
-
* @property {string} [placeholder=""] Placeholder text for the input
|
|
18
|
-
* @property {boolean} [readonly=false] Whether the input is read-only
|
|
19
|
-
* @property {boolean} [required] Whether the input is required
|
|
20
|
-
* @property {string} [value=""] The value of the input, bound to the component
|
|
21
|
-
*/
|
|
22
|
-
|
|
23
|
-
/** @type {Props} */
|
|
24
|
-
let {
|
|
25
|
-
adornmentStart = "",
|
|
26
|
-
children,
|
|
27
|
-
class: className = "",
|
|
28
|
-
disabled,
|
|
29
|
-
error,
|
|
30
|
-
id,
|
|
31
|
-
name,
|
|
32
|
-
placeholder = "",
|
|
33
|
-
readonly = false,
|
|
34
|
-
required,
|
|
35
|
-
value = $bindable(),
|
|
36
|
-
// TODO
|
|
37
|
-
preventScroll = false,
|
|
38
|
-
portalDisabled = true,
|
|
39
|
-
portalTarget = "body",
|
|
40
|
-
side = "bottom",
|
|
41
|
-
sideOffset = 8,
|
|
42
|
-
...rest
|
|
43
|
-
} = $props();
|
|
44
|
-
|
|
45
|
-
let store = getContext("form-field-store") ?? null;
|
|
46
|
-
|
|
47
|
-
let localValues = $derived.by(() => {
|
|
48
|
-
const storeValues = typeof store === "function" ? store() : {};
|
|
49
|
-
|
|
50
|
-
return {
|
|
51
|
-
disabled: disabled ?? storeValues.disabled ?? false,
|
|
52
|
-
error: error ?? storeValues.error ?? false,
|
|
53
|
-
id: id ?? storeValues.id ?? "",
|
|
54
|
-
required: required ?? storeValues.required ?? false,
|
|
55
|
-
};
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
let styles = $derived(
|
|
59
|
-
inputVariants({
|
|
60
|
-
disabled: localValues.disabled,
|
|
61
|
-
error: localValues.error,
|
|
62
|
-
}),
|
|
63
|
-
);
|
|
64
|
-
</script>
|
|
65
|
-
|
|
66
|
-
<Popover.Root>
|
|
67
|
-
<div class={styles.base({ class: className })}>
|
|
68
|
-
{#if adornmentStart}
|
|
69
|
-
<div class={styles.adornmentStart()}>
|
|
70
|
-
{#if typeof adornmentStart === "function"}
|
|
71
|
-
{@render adornmentStart()}
|
|
72
|
-
{:else}
|
|
73
|
-
{adornmentStart}
|
|
74
|
-
{/if}
|
|
75
|
-
</div>
|
|
76
|
-
{/if}
|
|
77
|
-
|
|
78
|
-
{#if children}
|
|
79
|
-
<!-- The date picker -->
|
|
80
|
-
<Picker
|
|
81
|
-
{children}
|
|
82
|
-
{preventScroll}
|
|
83
|
-
{portalDisabled}
|
|
84
|
-
{portalTarget}
|
|
85
|
-
{side}
|
|
86
|
-
{sideOffset} />
|
|
87
|
-
{/if}
|
|
88
|
-
|
|
89
|
-
<input
|
|
90
|
-
class={styles.input()}
|
|
91
|
-
disabled={localValues.disabled}
|
|
92
|
-
id={localValues.id}
|
|
93
|
-
{name}
|
|
94
|
-
{placeholder}
|
|
95
|
-
{readonly}
|
|
96
|
-
required={localValues.required}
|
|
97
|
-
{...rest}
|
|
98
|
-
bind:value />
|
|
99
|
-
|
|
100
|
-
<div class={styles.adornmentEnd()}>
|
|
101
|
-
<Popover.Trigger>
|
|
102
|
-
{#snippet child({ props })}
|
|
103
|
-
<IconButton
|
|
104
|
-
color="transparent"
|
|
105
|
-
icon="calendar"
|
|
106
|
-
iconSize={24}
|
|
107
|
-
shape="square"
|
|
108
|
-
size="small"
|
|
109
|
-
{...props} />
|
|
110
|
-
{/snippet}
|
|
111
|
-
</Popover.Trigger>
|
|
112
|
-
</div>
|
|
113
|
-
</div>
|
|
114
|
-
</Popover.Root>
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
export default InputDate;
|
|
2
|
-
type InputDate = {
|
|
3
|
-
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
-
$set?(props: Partial<Props>): void;
|
|
5
|
-
};
|
|
6
|
-
declare const InputDate: import("svelte").Component<{
|
|
7
|
-
/**
|
|
8
|
-
* Content to display at the start of the input (e.g., icon or text)
|
|
9
|
-
*/
|
|
10
|
-
adornmentStart?: string | import("svelte").SvelteComponent | Function;
|
|
11
|
-
/**
|
|
12
|
-
* Additional content to render inside the input component
|
|
13
|
-
*/
|
|
14
|
-
children?: import("svelte").SvelteComponent;
|
|
15
|
-
/**
|
|
16
|
-
* Additional CSS classes to apply to the component
|
|
17
|
-
*/
|
|
18
|
-
class?: string;
|
|
19
|
-
/**
|
|
20
|
-
* Whether the input is disabled
|
|
21
|
-
*/
|
|
22
|
-
disabled?: boolean;
|
|
23
|
-
/**
|
|
24
|
-
* Whether the input has an error state
|
|
25
|
-
*/
|
|
26
|
-
error?: boolean;
|
|
27
|
-
/**
|
|
28
|
-
* The ID of the input element
|
|
29
|
-
*/
|
|
30
|
-
id?: string;
|
|
31
|
-
/**
|
|
32
|
-
* The name of the input, used for form submission
|
|
33
|
-
*/
|
|
34
|
-
name?: string;
|
|
35
|
-
/**
|
|
36
|
-
* Placeholder text for the input
|
|
37
|
-
*/
|
|
38
|
-
placeholder?: string;
|
|
39
|
-
/**
|
|
40
|
-
* Whether the input is read-only
|
|
41
|
-
*/
|
|
42
|
-
readonly?: boolean;
|
|
43
|
-
/**
|
|
44
|
-
* Whether the input is required
|
|
45
|
-
*/
|
|
46
|
-
required?: boolean;
|
|
47
|
-
/**
|
|
48
|
-
* The value of the input, bound to the component
|
|
49
|
-
*/
|
|
50
|
-
value?: string;
|
|
51
|
-
}, {}, "value">;
|
|
52
|
-
type Props = {
|
|
53
|
-
/**
|
|
54
|
-
* Content to display at the start of the input (e.g., icon or text)
|
|
55
|
-
*/
|
|
56
|
-
adornmentStart?: string | import("svelte").SvelteComponent | Function;
|
|
57
|
-
/**
|
|
58
|
-
* Additional content to render inside the input component
|
|
59
|
-
*/
|
|
60
|
-
children?: import("svelte").SvelteComponent;
|
|
61
|
-
/**
|
|
62
|
-
* Additional CSS classes to apply to the component
|
|
63
|
-
*/
|
|
64
|
-
class?: string;
|
|
65
|
-
/**
|
|
66
|
-
* Whether the input is disabled
|
|
67
|
-
*/
|
|
68
|
-
disabled?: boolean;
|
|
69
|
-
/**
|
|
70
|
-
* Whether the input has an error state
|
|
71
|
-
*/
|
|
72
|
-
error?: boolean;
|
|
73
|
-
/**
|
|
74
|
-
* The ID of the input element
|
|
75
|
-
*/
|
|
76
|
-
id?: string;
|
|
77
|
-
/**
|
|
78
|
-
* The name of the input, used for form submission
|
|
79
|
-
*/
|
|
80
|
-
name?: string;
|
|
81
|
-
/**
|
|
82
|
-
* Placeholder text for the input
|
|
83
|
-
*/
|
|
84
|
-
placeholder?: string;
|
|
85
|
-
/**
|
|
86
|
-
* Whether the input is read-only
|
|
87
|
-
*/
|
|
88
|
-
readonly?: boolean;
|
|
89
|
-
/**
|
|
90
|
-
* Whether the input is required
|
|
91
|
-
*/
|
|
92
|
-
required?: boolean;
|
|
93
|
-
/**
|
|
94
|
-
* The value of the input, bound to the component
|
|
95
|
-
*/
|
|
96
|
-
value?: string;
|
|
97
|
-
};
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import { Popover } from "bits-ui";
|
|
3
|
-
import { quintOut } from "svelte/easing";
|
|
4
|
-
import { scale } from "svelte/transition";
|
|
5
|
-
|
|
6
|
-
let {
|
|
7
|
-
children,
|
|
8
|
-
preventScroll = false,
|
|
9
|
-
portalDisabled = true,
|
|
10
|
-
portalTarget = "body",
|
|
11
|
-
side = "bottom",
|
|
12
|
-
sideOffset = 8,
|
|
13
|
-
...rest
|
|
14
|
-
} = $props();
|
|
15
|
-
</script>
|
|
16
|
-
|
|
17
|
-
<Popover.Portal disabled={portalDisabled} to={portalTarget}>
|
|
18
|
-
<Popover.Content
|
|
19
|
-
align="end"
|
|
20
|
-
alignOffset={0}
|
|
21
|
-
forceMount
|
|
22
|
-
{preventScroll}
|
|
23
|
-
{side}
|
|
24
|
-
{sideOffset}
|
|
25
|
-
{...rest}>
|
|
26
|
-
{#snippet child({ open, props, wrapperProps })}
|
|
27
|
-
{#if open}
|
|
28
|
-
<div {...wrapperProps}>
|
|
29
|
-
<div {...props} in:scale={{ duration: 300, easing: quintOut, start: 0.75 }}>
|
|
30
|
-
{@render children()}
|
|
31
|
-
</div>
|
|
32
|
-
</div>
|
|
33
|
-
{/if}
|
|
34
|
-
{/snippet}
|
|
35
|
-
</Popover.Content>
|
|
36
|
-
</Popover.Portal>
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export default Picker;
|
|
2
|
-
type Picker = {
|
|
3
|
-
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
-
$set?(props: Partial<$$ComponentProps>): void;
|
|
5
|
-
};
|
|
6
|
-
declare const Picker: import("svelte").Component<{
|
|
7
|
-
children: any;
|
|
8
|
-
preventScroll?: boolean;
|
|
9
|
-
portalDisabled?: boolean;
|
|
10
|
-
portalTarget?: string;
|
|
11
|
-
side?: string;
|
|
12
|
-
sideOffset?: number;
|
|
13
|
-
} & Record<string, any>, {}, "">;
|
|
14
|
-
type $$ComponentProps = {
|
|
15
|
-
children: any;
|
|
16
|
-
preventScroll?: boolean;
|
|
17
|
-
portalDisabled?: boolean;
|
|
18
|
-
portalTarget?: string;
|
|
19
|
-
side?: string;
|
|
20
|
-
sideOffset?: number;
|
|
21
|
-
} & Record<string, any>;
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
export const inputVariants: import("tailwind-variants").TVReturnType<{
|
|
2
|
-
disabled: {
|
|
3
|
-
true: {
|
|
4
|
-
input: string;
|
|
5
|
-
};
|
|
6
|
-
};
|
|
7
|
-
}, {
|
|
8
|
-
adornmentStart: string;
|
|
9
|
-
adornmentEnd: string;
|
|
10
|
-
base: string;
|
|
11
|
-
input: string;
|
|
12
|
-
}, undefined, {
|
|
13
|
-
disabled: {
|
|
14
|
-
true: {
|
|
15
|
-
base: string;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
error: {
|
|
19
|
-
true: {
|
|
20
|
-
base: string;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
}, {
|
|
24
|
-
base: string[];
|
|
25
|
-
}, import("tailwind-variants").TVReturnType<{
|
|
26
|
-
disabled: {
|
|
27
|
-
true: {
|
|
28
|
-
base: string;
|
|
29
|
-
};
|
|
30
|
-
};
|
|
31
|
-
error: {
|
|
32
|
-
true: {
|
|
33
|
-
base: string;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
}, {
|
|
37
|
-
base: string[];
|
|
38
|
-
}, undefined, {
|
|
39
|
-
disabled: {
|
|
40
|
-
true: {
|
|
41
|
-
base: string;
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
error: {
|
|
45
|
-
true: {
|
|
46
|
-
base: string;
|
|
47
|
-
};
|
|
48
|
-
};
|
|
49
|
-
}, {
|
|
50
|
-
base: string[];
|
|
51
|
-
}, import("tailwind-variants").TVReturnType<{
|
|
52
|
-
disabled: {
|
|
53
|
-
true: {
|
|
54
|
-
base: string;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
error: {
|
|
58
|
-
true: {
|
|
59
|
-
base: string;
|
|
60
|
-
};
|
|
61
|
-
};
|
|
62
|
-
}, {
|
|
63
|
-
base: string[];
|
|
64
|
-
}, undefined, unknown, unknown, undefined>>>;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { inputBaseVariant, tv } from "../../../utils/tailwind.js";
|
|
2
|
-
|
|
3
|
-
const inputVariants = tv({
|
|
4
|
-
extend: inputBaseVariant,
|
|
5
|
-
slots: {
|
|
6
|
-
adornmentStart:
|
|
7
|
-
"pointer-events-none shrink-0 body-small text-neutral-900 dark:text-neutral-200",
|
|
8
|
-
adornmentEnd: "shrink-0 body-small text-neutral-900 dark:text-neutral-200",
|
|
9
|
-
base: "flex h-10 items-center gap-2 pr-1",
|
|
10
|
-
input:
|
|
11
|
-
"h-full w-full appearance-none border-0 bg-transparent p-0 [font-size:inherit] leading-[inherit] focus:shadow-none focus:ring-0 focus:outline-0",
|
|
12
|
-
},
|
|
13
|
-
variants: {
|
|
14
|
-
disabled: {
|
|
15
|
-
true: { input: "cursor-not-allowed" },
|
|
16
|
-
},
|
|
17
|
-
},
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
export { inputVariants };
|