@skygraph/vue 0.6.3 → 0.6.4
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/README.md +2 -2
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +19 -6
- package/dist/index.js +7441 -7223
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -135,7 +135,10 @@ onChange?: ((checked: boolean) => any) | undefined;
|
|
|
135
135
|
}>, {
|
|
136
136
|
size: "small" | "middle" | "large";
|
|
137
137
|
disabled: boolean;
|
|
138
|
+
modelValue: boolean;
|
|
138
139
|
loading: boolean;
|
|
140
|
+
checked: boolean;
|
|
141
|
+
defaultChecked: boolean;
|
|
139
142
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
140
143
|
|
|
141
144
|
declare const __VLS_component_17: DefineComponent<RateProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -146,8 +149,8 @@ onChange?: ((value: number) => any) | undefined;
|
|
|
146
149
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
147
150
|
}>, {
|
|
148
151
|
disabled: boolean;
|
|
149
|
-
defaultValue: number;
|
|
150
152
|
count: number;
|
|
153
|
+
defaultValue: number;
|
|
151
154
|
allowHalf: boolean;
|
|
152
155
|
character: string;
|
|
153
156
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -314,6 +317,7 @@ width: number | string;
|
|
|
314
317
|
okType: "primary" | "default" | "dashed" | "text";
|
|
315
318
|
confirmLoading: boolean;
|
|
316
319
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
320
|
+
scopeRef: HTMLSpanElement;
|
|
317
321
|
trapRef: HTMLDivElement;
|
|
318
322
|
}, any>;
|
|
319
323
|
|
|
@@ -329,6 +333,7 @@ placement: "left" | "right" | "top" | "bottom";
|
|
|
329
333
|
closable: boolean;
|
|
330
334
|
maskClosable: boolean;
|
|
331
335
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
336
|
+
scopeRef: HTMLSpanElement;
|
|
332
337
|
trapRef: HTMLDivElement;
|
|
333
338
|
}, any>;
|
|
334
339
|
|
|
@@ -775,7 +780,7 @@ onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
|
775
780
|
}>, {
|
|
776
781
|
size: SizeType;
|
|
777
782
|
disabled: boolean;
|
|
778
|
-
type: "link" | "text" | "default" | "
|
|
783
|
+
type: "link" | "text" | "default" | "primary" | "dashed";
|
|
779
784
|
block: boolean;
|
|
780
785
|
unstyled: boolean;
|
|
781
786
|
loading: boolean;
|
|
@@ -1111,6 +1116,7 @@ declare function __VLS_template_23(): {
|
|
|
1111
1116
|
footer(props: Record<string, never>): unknown;
|
|
1112
1117
|
};
|
|
1113
1118
|
refs: {
|
|
1119
|
+
scopeRef: HTMLSpanElement;
|
|
1114
1120
|
trapRef: HTMLDivElement;
|
|
1115
1121
|
};
|
|
1116
1122
|
rootEl: any;
|
|
@@ -1126,6 +1132,7 @@ declare function __VLS_template_24(): {
|
|
|
1126
1132
|
footer(props: Record<string, never>): unknown;
|
|
1127
1133
|
};
|
|
1128
1134
|
refs: {
|
|
1135
|
+
scopeRef: HTMLSpanElement;
|
|
1129
1136
|
trapRef: HTMLDivElement;
|
|
1130
1137
|
};
|
|
1131
1138
|
rootEl: any;
|
|
@@ -4475,6 +4482,12 @@ export declare interface NotificationConfig {
|
|
|
4475
4482
|
key?: string;
|
|
4476
4483
|
onClose?: () => void;
|
|
4477
4484
|
placement?: 'topRight' | 'topLeft' | 'bottomRight' | 'bottomLeft';
|
|
4485
|
+
/**
|
|
4486
|
+
* Inline styles applied to the toast card — chiefly per-toast CSS variable
|
|
4487
|
+
* overrides so callers can re-theme a single notification (parity with the
|
|
4488
|
+
* React `notification.open({ style })` option).
|
|
4489
|
+
*/
|
|
4490
|
+
style?: CSSProperties;
|
|
4478
4491
|
}
|
|
4479
4492
|
|
|
4480
4493
|
export declare interface NotificationContainerProps {
|
|
@@ -6111,10 +6124,10 @@ onChange?: ((value: number) => any) | undefined;
|
|
|
6111
6124
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
6112
6125
|
}>, {
|
|
6113
6126
|
disabled: boolean;
|
|
6114
|
-
defaultValue: number;
|
|
6115
6127
|
step: number;
|
|
6116
6128
|
min: number;
|
|
6117
6129
|
max: number;
|
|
6130
|
+
defaultValue: number;
|
|
6118
6131
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
6119
6132
|
trackRef: HTMLDivElement;
|
|
6120
6133
|
}, HTMLDivElement>;
|
|
@@ -6415,7 +6428,6 @@ disabled: boolean;
|
|
|
6415
6428
|
selectable: boolean;
|
|
6416
6429
|
checkable: boolean;
|
|
6417
6430
|
unstyled: boolean;
|
|
6418
|
-
multiple: boolean;
|
|
6419
6431
|
draggable: boolean | ((node: TreeNodeData) => boolean);
|
|
6420
6432
|
virtual: boolean;
|
|
6421
6433
|
indentSize: number;
|
|
@@ -6423,6 +6435,7 @@ blockNode: boolean;
|
|
|
6423
6435
|
directory: boolean;
|
|
6424
6436
|
animated: boolean;
|
|
6425
6437
|
checkStrictly: boolean;
|
|
6438
|
+
multiple: boolean;
|
|
6426
6439
|
defaultExpandAll: boolean;
|
|
6427
6440
|
autoExpandParent: boolean;
|
|
6428
6441
|
showSearch: boolean;
|
|
@@ -6440,7 +6453,7 @@ export declare const SgTreeNodeRow: DefineComponent<TreeNodeRowProps, {}, {}, {}
|
|
|
6440
6453
|
select: (key: TreeKey) => any;
|
|
6441
6454
|
drop: (evt: DragEvent, key: TreeKey) => any;
|
|
6442
6455
|
expand: (key: TreeKey) => any;
|
|
6443
|
-
dragOver: (evt: DragEvent, key: TreeKey) => any;
|
|
6456
|
+
dragOver: (evt: DragEvent, key: TreeKey, pos: 0 | 1 | -1) => any;
|
|
6444
6457
|
check: (key: TreeKey) => any;
|
|
6445
6458
|
dragStart: (evt: DragEvent, key: TreeKey) => any;
|
|
6446
6459
|
dragLeave: (evt: DragEvent, key: TreeKey) => any;
|
|
@@ -6454,7 +6467,7 @@ editCancel: (key: TreeKey) => any;
|
|
|
6454
6467
|
onSelect?: ((key: TreeKey) => any) | undefined;
|
|
6455
6468
|
onDrop?: ((evt: DragEvent, key: TreeKey) => any) | undefined;
|
|
6456
6469
|
onExpand?: ((key: TreeKey) => any) | undefined;
|
|
6457
|
-
onDragOver?: ((evt: DragEvent, key: TreeKey) => any) | undefined;
|
|
6470
|
+
onDragOver?: ((evt: DragEvent, key: TreeKey, pos: 0 | 1 | -1) => any) | undefined;
|
|
6458
6471
|
onCheck?: ((key: TreeKey) => any) | undefined;
|
|
6459
6472
|
onDragStart?: ((evt: DragEvent, key: TreeKey) => any) | undefined;
|
|
6460
6473
|
onDragLeave?: ((evt: DragEvent, key: TreeKey) => any) | undefined;
|