tokenizer-ui-kit 0.0.4 → 0.0.6
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/types/index.d.ts +46 -0
- package/package.json +2 -2
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { DefineComponent } from "vue";
|
|
2
|
+
|
|
3
|
+
export declare const DatePicker: DefineComponent<
|
|
4
|
+
{
|
|
5
|
+
modelValue?: Date | null;
|
|
6
|
+
},
|
|
7
|
+
any,
|
|
8
|
+
any
|
|
9
|
+
>;
|
|
10
|
+
export declare const CButton: DefineComponent<
|
|
11
|
+
{
|
|
12
|
+
color?:
|
|
13
|
+
| "green"
|
|
14
|
+
| "red"
|
|
15
|
+
| "black"
|
|
16
|
+
| "blue"
|
|
17
|
+
| "white"
|
|
18
|
+
| "gray"
|
|
19
|
+
| "attention"
|
|
20
|
+
| "none"
|
|
21
|
+
| "green-outline";
|
|
22
|
+
size?: "small" | "medium" | "large";
|
|
23
|
+
type?: "square" | "outline";
|
|
24
|
+
},
|
|
25
|
+
any,
|
|
26
|
+
any
|
|
27
|
+
>;
|
|
28
|
+
export declare const CircularLoader: DefineComponent<{}, any, any>;
|
|
29
|
+
|
|
30
|
+
export declare function formatSelectedRange(
|
|
31
|
+
startDate: Date,
|
|
32
|
+
endDate: Date
|
|
33
|
+
): string;
|
|
34
|
+
|
|
35
|
+
export type ButtonColor =
|
|
36
|
+
| "green"
|
|
37
|
+
| "red"
|
|
38
|
+
| "black"
|
|
39
|
+
| "blue"
|
|
40
|
+
| "white"
|
|
41
|
+
| "gray"
|
|
42
|
+
| "attention"
|
|
43
|
+
| "none"
|
|
44
|
+
| "green-outline";
|
|
45
|
+
export type ButtonSize = "small" | "medium" | "large";
|
|
46
|
+
export type ButtonType = "square" | "outline";
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
7
7
|
"author": "TochJob",
|
|
8
8
|
"license": "ISC",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.6",
|
|
10
10
|
"type": "module",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"dev": "vite",
|
|
24
24
|
"preview": "vite preview",
|
|
25
25
|
"build-only": "vite build && tsc -p tsconfig.build.json",
|
|
26
|
-
"build": "
|
|
26
|
+
"build": "vite build && tsc -p tsconfig.build.json",
|
|
27
27
|
"clean": "rm -rf dist",
|
|
28
28
|
"type-check": "vue-tsc --build",
|
|
29
29
|
"lint": "eslint . --fix",
|