@nubisco/ui 1.28.1 → 1.30.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/dist/components/Board.vue.d.ts +34 -0
- package/dist/components/Board.vue.d.ts.map +1 -0
- package/dist/components/Calendar.vue.d.ts +28 -0
- package/dist/components/Calendar.vue.d.ts.map +1 -0
- package/dist/components/DatePicker.vue.d.ts +52 -0
- package/dist/components/DatePicker.vue.d.ts.map +1 -0
- package/dist/components/NumberInput.vue.d.ts +1 -1
- package/dist/components/NumberInput.vue.d.ts.map +1 -1
- package/dist/components/Radio.vue.d.ts +1 -1
- package/dist/components/Select.vue.d.ts +5 -1
- package/dist/components/Select.vue.d.ts.map +1 -1
- package/dist/components/Slider.vue.d.ts +1 -1
- package/dist/components/TextInput.vue.d.ts +2 -2
- package/dist/components/TextInput.vue.d.ts.map +1 -1
- package/dist/components/Tree.vue.d.ts +1 -1
- package/dist/components/TreeNode.vue.d.ts +1 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +12905 -12027
- package/dist/index.mjs.map +1 -1
- package/dist/main.d.ts +6 -0
- package/dist/main.d.ts.map +1 -1
- package/dist/ui.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { IBoardProps, IBoardItem, IBoardMoveEvent } from './Board.d';
|
|
2
|
+
declare var __VLS_1: {
|
|
3
|
+
item: IBoardItem;
|
|
4
|
+
column: import("./Board.d").IBoardColumn;
|
|
5
|
+
}, __VLS_3: {
|
|
6
|
+
lane: import("./Board.d").IBoardLane;
|
|
7
|
+
}, __VLS_5: {
|
|
8
|
+
item: IBoardItem;
|
|
9
|
+
column: import("./Board.d").IBoardColumn;
|
|
10
|
+
lane: import("./Board.d").IBoardLane;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_Slots = {} & {
|
|
13
|
+
card?: (props: typeof __VLS_1) => any;
|
|
14
|
+
} & {
|
|
15
|
+
'lane-header'?: (props: typeof __VLS_3) => any;
|
|
16
|
+
} & {
|
|
17
|
+
card?: (props: typeof __VLS_5) => any;
|
|
18
|
+
};
|
|
19
|
+
declare const __VLS_base: import("vue").DefineComponent<IBoardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
+
move: (event: IBoardMoveEvent) => any;
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<IBoardProps> & Readonly<{
|
|
22
|
+
onMove?: ((event: IBoardMoveEvent) => any) | undefined;
|
|
23
|
+
}>, {
|
|
24
|
+
lanes: import("./Board.d").IBoardLane[];
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=Board.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Board.vue.d.ts","sourceRoot":"","sources":["../../src/components/Board.vue"],"names":[],"mappings":"AAuUA,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,WAAW,CAAA;AAmTzE,QAAA,IAAI,OAAO;;;CAAU,EAAE,OAAO;;CAAU,EAAE,OAAO;;;;CAAW,CAAE;AAC9D,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACzC;IAAE,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAClD;IAAE,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK5C,QAAA,MAAM,UAAU;;;;;;6EAId,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { ICalendarProps, ICalendarEvent } from './Calendar.d';
|
|
2
|
+
declare var __VLS_1: {
|
|
3
|
+
event: ICalendarEvent;
|
|
4
|
+
};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
event?: (props: typeof __VLS_1) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_base: import("vue").DefineComponent<ICalendarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"day-click": (date: string) => any;
|
|
10
|
+
"event-click": (event: ICalendarEvent) => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<ICalendarProps> & Readonly<{
|
|
12
|
+
"onDay-click"?: ((date: string) => any) | undefined;
|
|
13
|
+
"onEvent-click"?: ((event: ICalendarEvent) => any) | undefined;
|
|
14
|
+
}>, {
|
|
15
|
+
month: string | Date;
|
|
16
|
+
events: ICalendarEvent[];
|
|
17
|
+
weekStart: 0 | 1;
|
|
18
|
+
locale: string;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
21
|
+
declare const _default: typeof __VLS_export;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=Calendar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Calendar.vue.d.ts","sourceRoot":"","sources":["../../src/components/Calendar.vue"],"names":[],"mappings":"AA6XA,OAAO,KAAK,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AAoUlE,QAAA,IAAI,OAAO;;CAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK7C,QAAA,MAAM,UAAU;;;;;;;;;;;6EAId,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import type { IDatePickerProps } from './DatePicker.d';
|
|
2
|
+
declare function openCalendar(): void;
|
|
3
|
+
declare function closeCalendar(): void;
|
|
4
|
+
declare var __VLS_1: {}, __VLS_49: {};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
label?: (props: typeof __VLS_1) => any;
|
|
7
|
+
} & {
|
|
8
|
+
label?: (props: typeof __VLS_49) => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_base: import("vue").DefineComponent<IDatePickerProps, {
|
|
11
|
+
open: typeof openCalendar;
|
|
12
|
+
close: typeof closeCalendar;
|
|
13
|
+
focus: () => void | undefined;
|
|
14
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
change: (value: string | null) => any;
|
|
16
|
+
"update:modelValue": (value: string | null) => any;
|
|
17
|
+
"update:endValue": (value: string | null) => any;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<IDatePickerProps> & Readonly<{
|
|
19
|
+
onChange?: ((value: string | null) => any) | undefined;
|
|
20
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
21
|
+
"onUpdate:endValue"?: ((value: string | null) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
variant: "default" | "fluid";
|
|
24
|
+
size: "sm" | "md" | "lg";
|
|
25
|
+
label: string;
|
|
26
|
+
type: "simple" | "single" | "range";
|
|
27
|
+
name: string;
|
|
28
|
+
error: string;
|
|
29
|
+
id: string;
|
|
30
|
+
warning: string;
|
|
31
|
+
required: boolean;
|
|
32
|
+
disabled: boolean;
|
|
33
|
+
weekStart: 0 | 1;
|
|
34
|
+
locale: string;
|
|
35
|
+
modelValue: string | null;
|
|
36
|
+
placeholder: string;
|
|
37
|
+
helper: string;
|
|
38
|
+
endValue: string | null;
|
|
39
|
+
min: string;
|
|
40
|
+
max: string;
|
|
41
|
+
endPlaceholder: string;
|
|
42
|
+
readonly: boolean;
|
|
43
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
44
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
45
|
+
declare const _default: typeof __VLS_export;
|
|
46
|
+
export default _default;
|
|
47
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
48
|
+
new (): {
|
|
49
|
+
$slots: S;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
//# sourceMappingURL=DatePicker.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DatePicker.vue.d.ts","sourceRoot":"","sources":["../../src/components/DatePicker.vue"],"names":[],"mappings":"AAisCA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AA0LtD,iBAAS,YAAY,SAiBpB;AAED,iBAAS,aAAa,SAYrB;AA89BD,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAY,CAAE;AAC7C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAQ9C,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6EAKd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -24,10 +24,10 @@ declare const __VLS_export: import("vue").DefineComponent<INumberInputProps, {
|
|
|
24
24
|
disabled: boolean;
|
|
25
25
|
modelValue: number | null;
|
|
26
26
|
placeholder: string;
|
|
27
|
-
step: number;
|
|
28
27
|
helper: string;
|
|
29
28
|
min: number;
|
|
30
29
|
max: number;
|
|
30
|
+
step: number;
|
|
31
31
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
32
32
|
declare const _default: typeof __VLS_export;
|
|
33
33
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NumberInput.vue.d.ts","sourceRoot":"","sources":["../../src/components/NumberInput.vue"],"names":[],"mappings":"AA0hBA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAKtD,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IACxD,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAukBD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;gBA3kBH,MAAM,GAAG,IAAI
|
|
1
|
+
{"version":3,"file":"NumberInput.vue.d.ts","sourceRoot":"","sources":["../../src/components/NumberInput.vue"],"names":[],"mappings":"AA0hBA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAKtD,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IACxD,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAukBD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;gBA3kBH,MAAM,GAAG,IAAI;;;SACpB,MAAM;SACN,MAAM;UACL,MAAM;6EA6kBb,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -9,8 +9,8 @@ declare const __VLS_export: import("vue").DefineComponent<IRadioProps, {}, {}, {
|
|
|
9
9
|
warning: string;
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
helper: string;
|
|
12
|
-
direction: ERadioDirection;
|
|
13
12
|
readonly: boolean;
|
|
13
|
+
direction: ERadioDirection;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const _default: typeof __VLS_export;
|
|
16
16
|
export default _default;
|
|
@@ -13,9 +13,11 @@ declare const __VLS_base: import("vue").DefineComponent<ISelectProps, {
|
|
|
13
13
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
14
|
change: (value: string | number | (string | number)[] | null) => any;
|
|
15
15
|
"update:modelValue": (value: string | number | (string | number)[] | null) => any;
|
|
16
|
+
create: (value: string) => any;
|
|
16
17
|
}, string, import("vue").PublicProps, Readonly<ISelectProps> & Readonly<{
|
|
17
18
|
onChange?: ((value: string | number | (string | number)[] | null) => any) | undefined;
|
|
18
19
|
"onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
|
|
20
|
+
onCreate?: ((value: string) => any) | undefined;
|
|
19
21
|
}>, {
|
|
20
22
|
variant: "default" | "fluid";
|
|
21
23
|
size: "sm" | "md" | "lg";
|
|
@@ -29,8 +31,10 @@ declare const __VLS_base: import("vue").DefineComponent<ISelectProps, {
|
|
|
29
31
|
modelValue: string | number | Array<string | number> | null;
|
|
30
32
|
options: ISelectOption[];
|
|
31
33
|
placeholder: string;
|
|
32
|
-
multiple: boolean;
|
|
33
34
|
helper: string;
|
|
35
|
+
multiple: boolean;
|
|
36
|
+
creatable: boolean;
|
|
37
|
+
createPlaceholder: string;
|
|
34
38
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
39
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
36
40
|
declare const _default: typeof __VLS_export;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.vue.d.ts","sourceRoot":"","sources":["../../src/components/Select.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Select.vue.d.ts","sourceRoot":"","sources":["../../src/components/Select.vue"],"names":[],"mappings":"AA8tBA,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AAoHtD,iBAAS,YAAY,SAapB;AAED,iBAAS,aAAa,SAGrB;AAyoBD,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAY,CAAE;AAC7C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAO9C,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;6EAKd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -10,9 +10,9 @@ declare const __VLS_export: import("vue").DefineComponent<ISliderProps, {}, {},
|
|
|
10
10
|
size: "sm" | "md" | "lg";
|
|
11
11
|
range: boolean;
|
|
12
12
|
disabled: boolean;
|
|
13
|
-
step: number;
|
|
14
13
|
min: number;
|
|
15
14
|
max: number;
|
|
15
|
+
step: number;
|
|
16
16
|
showInput: boolean;
|
|
17
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
@@ -60,12 +60,12 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
60
60
|
required: boolean;
|
|
61
61
|
disabled: boolean;
|
|
62
62
|
placeholder: string;
|
|
63
|
-
step: string | number;
|
|
64
|
-
highlight: (text: string) => string;
|
|
65
63
|
helper: string;
|
|
66
64
|
min: string | number;
|
|
67
65
|
max: string | number;
|
|
68
66
|
readonly: boolean;
|
|
67
|
+
step: string | number;
|
|
68
|
+
highlight: (text: string) => string;
|
|
69
69
|
maxlength: number;
|
|
70
70
|
multiline: boolean;
|
|
71
71
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextInput.vue.d.ts","sourceRoot":"","sources":["../../src/components/TextInput.vue"],"names":[],"mappings":"AA6hBA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAA;AAO9D,MAAM,WAAW,eAAgB,SAAQ,uBAAuB;IAC9D,4DAA4D;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,6CAA6C;IAC7C,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,4DAA4D;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAA;IACb;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,CAAA;CACrC;AAED,KAAK,WAAW,GAAG,eAAe,CAAC;AAyFnC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AA2BF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAoYxD,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACjI,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAQ9C,QAAA,MAAM,UAAU;;;;;;;;;;;;UA7hBP,MAAM;UAQN,MAAM
|
|
1
|
+
{"version":3,"file":"TextInput.vue.d.ts","sourceRoot":"","sources":["../../src/components/TextInput.vue"],"names":[],"mappings":"AA6hBA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAA;AAO9D,MAAM,WAAW,eAAgB,SAAQ,uBAAuB;IAC9D,4DAA4D;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,6CAA6C;IAC7C,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,4DAA4D;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAA;IACb;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,CAAA;CACrC;AAED,KAAK,WAAW,GAAG,eAAe,CAAC;AAyFnC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AA2BF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAoYxD,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACjI,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAQ9C,QAAA,MAAM,UAAU;;;;;;;;;;;;UA7hBP,MAAM;UAQN,MAAM;;;;;;;;;SAPP,MAAM,GAAG,MAAM;SACf,MAAM,GAAG,MAAM;;UACd,MAAM,GAAG,MAAM;eAcV,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM;eAbxB,MAAM;eAEN,OAAO;6EA4hBnB,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -26,9 +26,9 @@ declare const __VLS_base: import("vue").DefineComponent<ITreeProps, {
|
|
|
26
26
|
"onUpdate:modelValue"?: ((id: string) => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
28
|
size: "sm" | "md";
|
|
29
|
+
draggable: boolean;
|
|
29
30
|
modelValue: string | null;
|
|
30
31
|
compact: boolean;
|
|
31
|
-
draggable: boolean;
|
|
32
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
33
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
34
34
|
declare const _default: typeof __VLS_export;
|
|
@@ -18,9 +18,9 @@ declare const __VLS_base: import("vue").DefineComponent<ITreeNodeProps, {}, {},
|
|
|
18
18
|
onDblclick?: ((id: string) => any) | undefined;
|
|
19
19
|
onToggle?: ((id: string, expanded: boolean) => any) | undefined;
|
|
20
20
|
}>, {
|
|
21
|
+
draggable: boolean | null;
|
|
21
22
|
disabled: boolean;
|
|
22
23
|
icon: string;
|
|
23
|
-
draggable: boolean | null;
|
|
24
24
|
depth: number | null;
|
|
25
25
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
26
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;;iBAsGf,GAAG;;AADlB,wBAMC"}
|