@fkui/vue 5.45.0 → 5.45.1
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/cjs/index.cjs.js +95 -43
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/index.esm.js +95 -43
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +42 -4
- package/dist/types/tsdoc-metadata.json +1 -1
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -1002,7 +1002,6 @@ export declare interface ExpandableTable {
|
|
|
1002
1002
|
isExpanded(row: ListItem): boolean;
|
|
1003
1003
|
rowAriaExpanded(row: ListItem): boolean | undefined;
|
|
1004
1004
|
expandableRowClasses(row: ListItem, index: number): string[];
|
|
1005
|
-
expandableColumnClasses(column: FTableColumnData, index: number): string[];
|
|
1006
1005
|
getExpandableDescribedby(row: ListItem): string | undefined;
|
|
1007
1006
|
expandableRows(row: ListItem): ListArray | undefined;
|
|
1008
1007
|
hasExpandableContent(row: ListItem): boolean;
|
|
@@ -10049,7 +10048,25 @@ type: PropType<ListArray | undefined>;
|
|
|
10049
10048
|
required: false;
|
|
10050
10049
|
default: undefined;
|
|
10051
10050
|
};
|
|
10052
|
-
|
|
10051
|
+
/**
|
|
10052
|
+
* Enable showing the active row.
|
|
10053
|
+
*/
|
|
10054
|
+
showActive: {
|
|
10055
|
+
type: BooleanConstructor;
|
|
10056
|
+
required: false;
|
|
10057
|
+
default: boolean;
|
|
10058
|
+
};
|
|
10059
|
+
/**
|
|
10060
|
+
* V-model will bind to value containing the current active row.
|
|
10061
|
+
*/
|
|
10062
|
+
active: {
|
|
10063
|
+
type: PropType<ListItem | undefined>;
|
|
10064
|
+
required: false;
|
|
10065
|
+
default: () => undefined;
|
|
10066
|
+
};
|
|
10067
|
+
}>, FSortFilterDatasetInterface & ActivateItemInterface & ExpandableTable, FInteractiveTableData & {
|
|
10068
|
+
tbodyKey: number;
|
|
10069
|
+
}, {
|
|
10053
10070
|
hasCaption(): boolean;
|
|
10054
10071
|
hasCheckboxDescription(): boolean;
|
|
10055
10072
|
isEmpty(): boolean;
|
|
@@ -10079,7 +10096,9 @@ callbackSortableColumns(columnNames: string[]): void;
|
|
|
10079
10096
|
callbackAfterItemAdd(item: ListItem): void;
|
|
10080
10097
|
callbackBeforeItemDelete(item: ListItem): void;
|
|
10081
10098
|
escapeNewlines(value: string): string;
|
|
10082
|
-
|
|
10099
|
+
updateActiveRowFromVModel(): void;
|
|
10100
|
+
setActiveRow(row: ListItem | undefined): void;
|
|
10101
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "select" | "collapse" | "update:modelValue" | "expand" | "update" | "unselect" | "update:active")[], "change" | "click" | "select" | "collapse" | "update:modelValue" | "expand" | "update" | "unselect" | "update:active", PublicProps, Readonly<ExtractPropTypes< {
|
|
10083
10102
|
/**
|
|
10084
10103
|
* The rows to be listed.
|
|
10085
10104
|
* The rows will be listed in the given array order.
|
|
@@ -10155,6 +10174,22 @@ type: PropType<ListArray | undefined>;
|
|
|
10155
10174
|
required: false;
|
|
10156
10175
|
default: undefined;
|
|
10157
10176
|
};
|
|
10177
|
+
/**
|
|
10178
|
+
* Enable showing the active row.
|
|
10179
|
+
*/
|
|
10180
|
+
showActive: {
|
|
10181
|
+
type: BooleanConstructor;
|
|
10182
|
+
required: false;
|
|
10183
|
+
default: boolean;
|
|
10184
|
+
};
|
|
10185
|
+
/**
|
|
10186
|
+
* V-model will bind to value containing the current active row.
|
|
10187
|
+
*/
|
|
10188
|
+
active: {
|
|
10189
|
+
type: PropType<ListItem | undefined>;
|
|
10190
|
+
required: false;
|
|
10191
|
+
default: () => undefined;
|
|
10192
|
+
};
|
|
10158
10193
|
}>> & Readonly<{
|
|
10159
10194
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
10160
10195
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
@@ -10164,6 +10199,7 @@ onUpdate?: ((...args: any[]) => any) | undefined;
|
|
|
10164
10199
|
onCollapse?: ((...args: any[]) => any) | undefined;
|
|
10165
10200
|
onExpand?: ((...args: any[]) => any) | undefined;
|
|
10166
10201
|
onUnselect?: ((...args: any[]) => any) | undefined;
|
|
10202
|
+
"onUpdate:active"?: ((...args: any[]) => any) | undefined;
|
|
10167
10203
|
}>, {
|
|
10168
10204
|
scroll: TableScroll;
|
|
10169
10205
|
modelValue: ListArray | undefined;
|
|
@@ -10172,6 +10208,8 @@ hover: boolean;
|
|
|
10172
10208
|
expandableAttribute: string;
|
|
10173
10209
|
expandableDescribedby: string;
|
|
10174
10210
|
selectable: boolean;
|
|
10211
|
+
showActive: boolean;
|
|
10212
|
+
active: UnknownItem | undefined;
|
|
10175
10213
|
}, {}, {
|
|
10176
10214
|
FCheckboxField: DefineComponent<ExtractPropTypes< {
|
|
10177
10215
|
disabled: {
|
|
@@ -18072,7 +18110,7 @@ required: false;
|
|
|
18072
18110
|
default: FTableColumnType;
|
|
18073
18111
|
validator(value: string): value is FTableColumnType;
|
|
18074
18112
|
};
|
|
18075
|
-
}>, FTableInterface, {}, {
|
|
18113
|
+
}>, Omit<FTableInterface, "textFieldTableMode">, {}, {
|
|
18076
18114
|
classes(): string[];
|
|
18077
18115
|
scope(): "row" | null;
|
|
18078
18116
|
tagName(): "td" | "th";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/vue",
|
|
3
|
-
"version": "5.45.
|
|
3
|
+
"version": "5.45.1",
|
|
4
4
|
"description": "Vue implementation of FKUI components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"node": ">= 20",
|
|
80
80
|
"npm": ">= 7"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "a8c1f1f7408460f91d9d56e97902be8f1485ceb8"
|
|
83
83
|
}
|