@fkui/vue-labs 6.36.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.
@@ -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< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
552
+ IComboboxToggleButton: DefineComponent< {
553
+ isOpen: boolean;
554
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
553
555
  toggle: () => any;
554
- }, string, PublicProps, Readonly<{}> & Readonly<{
556
+ }, string, PublicProps, Readonly<{
557
+ isOpen: boolean;
558
+ }> & Readonly<{
555
559
  onToggle?: (() => any) | undefined;
556
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
560
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
557
561
  }, {}, string, ComponentProvideOptions, true, {}, any>, {}, string, PublicProps, Readonly<ExtractPropTypes< {
558
562
  formatter: {
559
563
  type: PropType<FormatFunction<HoursMinutesString>>;
@@ -840,6 +844,7 @@ export declare interface TableColumnNumber<T, K extends keyof T> extends TableCo
840
844
  label?(this: void, row: T): string;
841
845
  tnum?: boolean;
842
846
  align?: "left" | "right";
847
+ attributes?: Record<string, string | number | boolean | undefined> | ((this: void, row: T) => Record<string, string | number | boolean | undefined>);
843
848
  value?(this: void, row: T): string | number;
844
849
  update?(this: void, row: T, newValue: number | string, oldValue: number | string): void;
845
850
  editable?: boolean | ((this: void, row: T) => boolean);
@@ -913,6 +918,7 @@ export declare interface TableColumnText<T, K extends keyof T> extends TableColu
913
918
  label?(this: void, row: T): string;
914
919
  tnum?: boolean;
915
920
  align?: "left" | "right";
921
+ attributes?: Record<string, string | number | boolean | undefined> | ((this: void, row: T) => Record<string, string | number | boolean | undefined>);
916
922
  value?(this: void, row: T): string;
917
923
  update?(this: void, row: T, newValue: string, oldValue: string): void;
918
924
  editable?: boolean | ((this: void, row: T) => boolean);
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.56.0"
8
+ "packageVersion": "7.56.3"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fkui/vue-labs",
3
- "version": "6.36.0",
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",
@@ -60,9 +59,9 @@
60
59
  },
61
60
  "peerDependencies": {
62
61
  "@fkui/date": "^6.36.0",
63
- "@fkui/design": "^6.36.0",
64
- "@fkui/logic": "^6.36.0",
65
- "@fkui/vue": "^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": "b5bbd381af90d68b52b3a60e3b5e6a46972cd62c"
77
+ "gitHead": "f7a483a5b7d9d82393aa117e737ac75f8a6b3010"
79
78
  }