@skygraph/vue 0.6.4 → 0.6.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/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +36 -24
- package/dist/index.js +9053 -8238
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -251,8 +251,8 @@ point: DiagramCanvasContextPoint;
|
|
|
251
251
|
}>, {
|
|
252
252
|
height: number | string;
|
|
253
253
|
unstyled: boolean;
|
|
254
|
-
draggable: boolean | ((id: NodeId, x: number, y: number) => void);
|
|
255
254
|
width: number | string;
|
|
255
|
+
draggable: boolean | ((id: NodeId, x: number, y: number) => void);
|
|
256
256
|
fileName: string;
|
|
257
257
|
zoomable: boolean;
|
|
258
258
|
panable: boolean;
|
|
@@ -868,35 +868,35 @@ declare type __VLS_Props = DataGridProps<Row>;
|
|
|
868
868
|
declare function __VLS_template(): {
|
|
869
869
|
attrs: Partial<{}>;
|
|
870
870
|
slots: Readonly<{
|
|
871
|
-
toolbar(props: Record<string, never>): unknown;
|
|
872
|
-
empty(props: Record<string, never>): unknown;
|
|
873
|
-
cell(props: {
|
|
871
|
+
toolbar?(props: Record<string, never>): unknown;
|
|
872
|
+
empty?(props: Record<string, never>): unknown;
|
|
873
|
+
cell?(props: {
|
|
874
874
|
column: TableColumn;
|
|
875
875
|
row: Record<string, unknown>;
|
|
876
876
|
id: RowId;
|
|
877
877
|
value: unknown;
|
|
878
878
|
}): unknown;
|
|
879
|
-
expandedRow(props: {
|
|
879
|
+
expandedRow?(props: {
|
|
880
880
|
row: Record<string, unknown>;
|
|
881
881
|
id: RowId;
|
|
882
882
|
}): unknown;
|
|
883
|
-
filterDropdown(props: TableFilterDropdownSlotProps & {
|
|
883
|
+
filterDropdown?(props: TableFilterDropdownSlotProps & {
|
|
884
884
|
column: TableColumn;
|
|
885
885
|
}): unknown;
|
|
886
886
|
}> & {
|
|
887
|
-
toolbar(props: Record<string, never>): unknown;
|
|
888
|
-
empty(props: Record<string, never>): unknown;
|
|
889
|
-
cell(props: {
|
|
887
|
+
toolbar?(props: Record<string, never>): unknown;
|
|
888
|
+
empty?(props: Record<string, never>): unknown;
|
|
889
|
+
cell?(props: {
|
|
890
890
|
column: TableColumn;
|
|
891
891
|
row: Record<string, unknown>;
|
|
892
892
|
id: RowId;
|
|
893
893
|
value: unknown;
|
|
894
894
|
}): unknown;
|
|
895
|
-
expandedRow(props: {
|
|
895
|
+
expandedRow?(props: {
|
|
896
896
|
row: Record<string, unknown>;
|
|
897
897
|
id: RowId;
|
|
898
898
|
}): unknown;
|
|
899
|
-
filterDropdown(props: TableFilterDropdownSlotProps & {
|
|
899
|
+
filterDropdown?(props: TableFilterDropdownSlotProps & {
|
|
900
900
|
column: TableColumn;
|
|
901
901
|
}): unknown;
|
|
902
902
|
};
|
|
@@ -1398,13 +1398,13 @@ declare function __VLS_template_39(): {
|
|
|
1398
1398
|
attrs: Partial<{}>;
|
|
1399
1399
|
slots: Readonly<{
|
|
1400
1400
|
/** Per-item content override. `isPending` is `true` for the synthetic pending tail. */
|
|
1401
|
-
content(slotProps: {
|
|
1401
|
+
content?(slotProps: {
|
|
1402
1402
|
item: TimelineItem;
|
|
1403
1403
|
index: number;
|
|
1404
1404
|
isPending: boolean;
|
|
1405
1405
|
}): unknown;
|
|
1406
1406
|
/** Per-item label override (shown beside the marker / above on `alternate`). */
|
|
1407
|
-
label(slotProps: {
|
|
1407
|
+
label?(slotProps: {
|
|
1408
1408
|
item: TimelineItem;
|
|
1409
1409
|
index: number;
|
|
1410
1410
|
}): unknown;
|
|
@@ -1412,20 +1412,20 @@ declare function __VLS_template_39(): {
|
|
|
1412
1412
|
* Per-item dot override. Replaces the default ring; `isPending` is `true`
|
|
1413
1413
|
* for the synthetic pending tail (use it to render `pendingDot` analogue).
|
|
1414
1414
|
*/
|
|
1415
|
-
dot(slotProps: {
|
|
1415
|
+
dot?(slotProps: {
|
|
1416
1416
|
item: TimelineItem;
|
|
1417
1417
|
index: number;
|
|
1418
1418
|
isPending: boolean;
|
|
1419
1419
|
}): unknown;
|
|
1420
1420
|
}> & {
|
|
1421
1421
|
/** Per-item content override. `isPending` is `true` for the synthetic pending tail. */
|
|
1422
|
-
content(slotProps: {
|
|
1422
|
+
content?(slotProps: {
|
|
1423
1423
|
item: TimelineItem;
|
|
1424
1424
|
index: number;
|
|
1425
1425
|
isPending: boolean;
|
|
1426
1426
|
}): unknown;
|
|
1427
1427
|
/** Per-item label override (shown beside the marker / above on `alternate`). */
|
|
1428
|
-
label(slotProps: {
|
|
1428
|
+
label?(slotProps: {
|
|
1429
1429
|
item: TimelineItem;
|
|
1430
1430
|
index: number;
|
|
1431
1431
|
}): unknown;
|
|
@@ -1433,7 +1433,7 @@ declare function __VLS_template_39(): {
|
|
|
1433
1433
|
* Per-item dot override. Replaces the default ring; `isPending` is `true`
|
|
1434
1434
|
* for the synthetic pending tail (use it to render `pendingDot` analogue).
|
|
1435
1435
|
*/
|
|
1436
|
-
dot(slotProps: {
|
|
1436
|
+
dot?(slotProps: {
|
|
1437
1437
|
item: TimelineItem;
|
|
1438
1438
|
index: number;
|
|
1439
1439
|
isPending: boolean;
|
|
@@ -4134,6 +4134,12 @@ export declare interface InputProps {
|
|
|
4134
4134
|
ariaDescribedby?: string;
|
|
4135
4135
|
}
|
|
4136
4136
|
|
|
4137
|
+
/** Italian (Italy) preset for {@link SgConfigProvider} `locale`. */
|
|
4138
|
+
export declare const it_IT: SgLocale;
|
|
4139
|
+
|
|
4140
|
+
/** Japanese (Japan) preset for {@link SgConfigProvider} `locale`. */
|
|
4141
|
+
export declare const ja_JP: SgLocale;
|
|
4142
|
+
|
|
4137
4143
|
export declare interface JSONSchema extends JSONSchemaProperty {
|
|
4138
4144
|
$schema?: string;
|
|
4139
4145
|
}
|
|
@@ -4168,6 +4174,9 @@ export declare function jsonSchemaToFields(schema: JSONSchema): AutoFieldConfig[
|
|
|
4168
4174
|
|
|
4169
4175
|
export declare function jsonSchemaToRules(schema: JSONSchema): Record<string, Rule[]>;
|
|
4170
4176
|
|
|
4177
|
+
/** Korean (South Korea) preset for {@link SgConfigProvider} `locale`. */
|
|
4178
|
+
export declare const ko_KR: SgLocale;
|
|
4179
|
+
|
|
4171
4180
|
/**
|
|
4172
4181
|
* Crosshair behaviour toggle for {@link LineChart}. When `true`, a vertical
|
|
4173
4182
|
* guide line + per-series tooltip appears on hover.
|
|
@@ -4751,6 +4760,9 @@ declare interface Props_2 {
|
|
|
4751
4760
|
unstyled?: boolean;
|
|
4752
4761
|
}
|
|
4753
4762
|
|
|
4763
|
+
/** Portuguese (Brazil) preset for {@link SgConfigProvider} `locale`. */
|
|
4764
|
+
export declare const pt_BR: SgLocale;
|
|
4765
|
+
|
|
4754
4766
|
export declare interface RadioGroupProps {
|
|
4755
4767
|
/** v-model binding (Vue idiom). */
|
|
4756
4768
|
modelValue?: string | number;
|
|
@@ -5569,12 +5581,12 @@ rowIndex: number;
|
|
|
5569
5581
|
}>, {
|
|
5570
5582
|
height: number | string;
|
|
5571
5583
|
loading: boolean;
|
|
5584
|
+
width: number | string;
|
|
5572
5585
|
emptyText: string;
|
|
5573
5586
|
rowSelection: boolean;
|
|
5574
5587
|
striped: boolean;
|
|
5575
5588
|
highlightOnHover: boolean;
|
|
5576
5589
|
rowHeight: number;
|
|
5577
|
-
width: number | string;
|
|
5578
5590
|
overscan: number;
|
|
5579
5591
|
headerHeight: number;
|
|
5580
5592
|
showRowNumber: boolean;
|
|
@@ -5734,17 +5746,17 @@ export declare const SgList: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_s
|
|
|
5734
5746
|
item: T;
|
|
5735
5747
|
index: number;
|
|
5736
5748
|
}): unknown;
|
|
5737
|
-
header(props: Record<string, never>): unknown;
|
|
5738
|
-
footer(props: Record<string, never>): unknown;
|
|
5739
|
-
loadMore(props: Record<string, never>): unknown;
|
|
5749
|
+
header?(props: Record<string, never>): unknown;
|
|
5750
|
+
footer?(props: Record<string, never>): unknown;
|
|
5751
|
+
loadMore?(props: Record<string, never>): unknown;
|
|
5740
5752
|
}> & {
|
|
5741
5753
|
default(props: {
|
|
5742
5754
|
item: T;
|
|
5743
5755
|
index: number;
|
|
5744
5756
|
}): unknown;
|
|
5745
|
-
header(props: Record<string, never>): unknown;
|
|
5746
|
-
footer(props: Record<string, never>): unknown;
|
|
5747
|
-
loadMore(props: Record<string, never>): unknown;
|
|
5757
|
+
header?(props: Record<string, never>): unknown;
|
|
5758
|
+
footer?(props: Record<string, never>): unknown;
|
|
5759
|
+
loadMore?(props: Record<string, never>): unknown;
|
|
5748
5760
|
};
|
|
5749
5761
|
emit: {
|
|
5750
5762
|
(e: "selectionChange", keys: number[], items: T[]): void;
|