@kayord/ui 0.8.13 → 0.8.15
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.
|
@@ -15,6 +15,7 @@ export type InputEvents = {
|
|
|
15
15
|
mouseover: FormInputEvent<MouseEvent>;
|
|
16
16
|
mouseenter: FormInputEvent<MouseEvent>;
|
|
17
17
|
mouseleave: FormInputEvent<MouseEvent>;
|
|
18
|
+
mousemove: FormInputEvent<MouseEvent>;
|
|
18
19
|
paste: FormInputEvent<ClipboardEvent>;
|
|
19
20
|
input: FormInputEvent<InputEvent>;
|
|
20
21
|
wheel: FormInputEvent<WheelEvent>;
|
|
@@ -1,28 +1,14 @@
|
|
|
1
1
|
import { SvelteComponent } from "svelte";
|
|
2
2
|
import type { HTMLTextareaAttributes } from "svelte/elements";
|
|
3
|
+
import type { TextareaEvents } from "./index.js";
|
|
3
4
|
declare const __propDef: {
|
|
4
5
|
props: HTMLTextareaAttributes;
|
|
5
|
-
events: {
|
|
6
|
-
blur: FocusEvent;
|
|
7
|
-
change: Event;
|
|
8
|
-
click: MouseEvent;
|
|
9
|
-
focus: FocusEvent;
|
|
10
|
-
keydown: KeyboardEvent;
|
|
11
|
-
keypress: KeyboardEvent;
|
|
12
|
-
keyup: KeyboardEvent;
|
|
13
|
-
mouseover: MouseEvent;
|
|
14
|
-
mouseenter: MouseEvent;
|
|
15
|
-
mouseleave: MouseEvent;
|
|
16
|
-
paste: ClipboardEvent;
|
|
17
|
-
input: Event;
|
|
18
|
-
} & {
|
|
19
|
-
[evt: string]: CustomEvent<any>;
|
|
20
|
-
};
|
|
21
6
|
slots: {};
|
|
7
|
+
events: TextareaEvents;
|
|
22
8
|
};
|
|
23
9
|
export type TextareaProps = typeof __propDef.props;
|
|
24
|
-
|
|
10
|
+
type TextareaEvents_ = typeof __propDef.events;
|
|
11
|
+
export { TextareaEvents_ as TextareaEvents };
|
|
25
12
|
export type TextareaSlots = typeof __propDef.slots;
|
|
26
|
-
export default class Textarea extends SvelteComponent<TextareaProps,
|
|
13
|
+
export default class Textarea extends SvelteComponent<TextareaProps, TextareaEvents_, TextareaSlots> {
|
|
27
14
|
}
|
|
28
|
-
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kayord/ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.15",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -44,28 +44,28 @@
|
|
|
44
44
|
"tailwind-merge": "^2.3.0",
|
|
45
45
|
"tailwind-variants": "^0.2.1",
|
|
46
46
|
"vaul-svelte": "^0.3.0",
|
|
47
|
-
"zod": "^3.23.
|
|
47
|
+
"zod": "^3.23.8"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@sveltejs/adapter-auto": "^3.2.0",
|
|
51
|
-
"@sveltejs/kit": "^2.5.
|
|
51
|
+
"@sveltejs/kit": "^2.5.8",
|
|
52
52
|
"@sveltejs/package": "^2.3.1",
|
|
53
53
|
"@sveltejs/vite-plugin-svelte": "^3.1.0",
|
|
54
54
|
"@testing-library/jest-dom": "^6.4.5",
|
|
55
55
|
"@testing-library/svelte": "^5.1.0",
|
|
56
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
57
|
-
"@typescript-eslint/parser": "^7.
|
|
56
|
+
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
57
|
+
"@typescript-eslint/parser": "^7.9.0",
|
|
58
58
|
"autoprefixer": "^10.4.19",
|
|
59
59
|
"eslint": "^9.2.0",
|
|
60
60
|
"eslint-config-prettier": "^9.1.0",
|
|
61
|
-
"eslint-plugin-svelte": "^2.
|
|
62
|
-
"happy-dom": "^14.
|
|
61
|
+
"eslint-plugin-svelte": "^2.39.0",
|
|
62
|
+
"happy-dom": "^14.11.0",
|
|
63
63
|
"postcss": "^8.4.38",
|
|
64
64
|
"postcss-load-config": "^5.1.0",
|
|
65
65
|
"prettier": "^3.2.5",
|
|
66
66
|
"prettier-plugin-svelte": "^3.2.3",
|
|
67
67
|
"publint": "^0.2.7",
|
|
68
|
-
"svelte": "^4.2.
|
|
68
|
+
"svelte": "^4.2.17",
|
|
69
69
|
"svelte-check": "^3.7.1",
|
|
70
70
|
"tailwindcss": "^3.4.3",
|
|
71
71
|
"tslib": "^2.6.2",
|
|
@@ -88,6 +88,7 @@
|
|
|
88
88
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
89
89
|
"lint": "prettier --check . && eslint .",
|
|
90
90
|
"format": "prettier --write .",
|
|
91
|
-
"test:unit": "vitest"
|
|
91
|
+
"test:unit": "vitest",
|
|
92
|
+
"lib": "npx shadcn-svelte@latest update -a -y && pnpm format && pnpm version --no-git-tag-version patch"
|
|
92
93
|
}
|
|
93
94
|
}
|