@fkui/vue-labs 6.35.0 → 6.36.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 +1436 -1412
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/index.esm.js +1438 -1414
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +13 -3
- package/dist/types/tsdoc-metadata.json +1 -1
- package/package.json +6 -7
package/dist/types/index.d.ts
CHANGED
|
@@ -549,11 +549,15 @@ inputNode: HTMLInputElement;
|
|
|
549
549
|
onSelect?: ((option: string) => any) | undefined;
|
|
550
550
|
onClose?: (() => any) | undefined;
|
|
551
551
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
552
|
-
IComboboxToggleButton: DefineComponent< {
|
|
552
|
+
IComboboxToggleButton: DefineComponent< {
|
|
553
|
+
isOpen: boolean;
|
|
554
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
553
555
|
toggle: () => any;
|
|
554
|
-
}, string, PublicProps, Readonly<{
|
|
556
|
+
}, string, PublicProps, Readonly<{
|
|
557
|
+
isOpen: boolean;
|
|
558
|
+
}> & Readonly<{
|
|
555
559
|
onToggle?: (() => any) | undefined;
|
|
556
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions,
|
|
560
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
557
561
|
}, {}, string, ComponentProvideOptions, true, {}, any>, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
558
562
|
formatter: {
|
|
559
563
|
type: PropType<FormatFunction<HoursMinutesString>>;
|
|
@@ -798,6 +802,10 @@ export declare interface TableColumnButton<T, K extends keyof T> extends TableCo
|
|
|
798
802
|
onClick?(this: void, row: T): void;
|
|
799
803
|
enabled?: boolean | ((this: void, row: T) => boolean);
|
|
800
804
|
icon?: string;
|
|
805
|
+
/**
|
|
806
|
+
* The icon library to use when rendering an icon. If not set, the default icon library will be used.
|
|
807
|
+
*/
|
|
808
|
+
iconLibrary?: string;
|
|
801
809
|
}
|
|
802
810
|
|
|
803
811
|
/**
|
|
@@ -836,6 +844,7 @@ export declare interface TableColumnNumber<T, K extends keyof T> extends TableCo
|
|
|
836
844
|
label?(this: void, row: T): string;
|
|
837
845
|
tnum?: boolean;
|
|
838
846
|
align?: "left" | "right";
|
|
847
|
+
attributes?: Record<string, string | number | boolean | undefined> | ((this: void, row: T) => Record<string, string | number | boolean | undefined>);
|
|
839
848
|
value?(this: void, row: T): string | number;
|
|
840
849
|
update?(this: void, row: T, newValue: number | string, oldValue: number | string): void;
|
|
841
850
|
editable?: boolean | ((this: void, row: T) => boolean);
|
|
@@ -909,6 +918,7 @@ export declare interface TableColumnText<T, K extends keyof T> extends TableColu
|
|
|
909
918
|
label?(this: void, row: T): string;
|
|
910
919
|
tnum?: boolean;
|
|
911
920
|
align?: "left" | "right";
|
|
921
|
+
attributes?: Record<string, string | number | boolean | undefined> | ((this: void, row: T) => Record<string, string | number | boolean | undefined>);
|
|
912
922
|
value?(this: void, row: T): string;
|
|
913
923
|
update?(this: void, row: T, newValue: string, oldValue: string): void;
|
|
914
924
|
editable?: boolean | ((this: void, row: T) => boolean);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/vue-labs",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.36.1",
|
|
4
4
|
"description": "Experimental and unstable FKUI components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
@@ -44,7 +44,6 @@
|
|
|
44
44
|
"prebuild": "run-s clean",
|
|
45
45
|
"build": "run-s build:lib build:pageobjects build:dts build:api",
|
|
46
46
|
"build:api": "fk-api-extractor --patch-augmentations api-extractor.*.json",
|
|
47
|
-
"build:docs": "node generate-docs.mjs",
|
|
48
47
|
"build:dts": "vue-tsc -b",
|
|
49
48
|
"build:lib": "fk-build-vue-lib",
|
|
50
49
|
"build:pageobjects": "node build-pageobjects.mjs",
|
|
@@ -59,10 +58,10 @@
|
|
|
59
58
|
"unit:watch": "jest --watch"
|
|
60
59
|
},
|
|
61
60
|
"peerDependencies": {
|
|
62
|
-
"@fkui/date": "^6.
|
|
63
|
-
"@fkui/design": "^6.
|
|
64
|
-
"@fkui/logic": "^6.
|
|
65
|
-
"@fkui/vue": "^6.
|
|
61
|
+
"@fkui/date": "^6.36.0",
|
|
62
|
+
"@fkui/design": "^6.36.1",
|
|
63
|
+
"@fkui/logic": "^6.36.1",
|
|
64
|
+
"@fkui/vue": "^6.36.1",
|
|
66
65
|
"html-validate": ">= 7.9.0",
|
|
67
66
|
"vue": "^3.5.0"
|
|
68
67
|
},
|
|
@@ -75,5 +74,5 @@
|
|
|
75
74
|
"node": ">= 20",
|
|
76
75
|
"npm": ">= 7"
|
|
77
76
|
},
|
|
78
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "f7a483a5b7d9d82393aa117e737ac75f8a6b3010"
|
|
79
78
|
}
|