@fkui/vue-labs 6.37.0 → 6.38.0

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.
@@ -10,6 +10,7 @@ import { ParseFunction } from '@fkui/vue';
10
10
  import { PropType } from 'vue';
11
11
  import { PublicProps } from 'vue';
12
12
  import { Ref } from 'vue';
13
+ import { ShallowRef } from 'vue';
13
14
  import { ShallowUnwrapRef } from 'vue';
14
15
  import { UnwrapRefSimple } from '@vue/reactivity';
15
16
  import { ValidatorConfig } from '@fkui/logic';
@@ -26,6 +27,7 @@ declare const __VLS_export: <T, KeyAttribute extends keyof T = keyof T, Expandab
26
27
  keyAttribute?: KeyAttribute;
27
28
  expandableAttribute?: ExpandableAttribute;
28
29
  striped?: boolean;
30
+ disableDividers?: boolean;
29
31
  selectable?: "single" | "multi";
30
32
  } & {
31
33
  selectedRows?: T[];
@@ -627,7 +629,7 @@ export declare const FTable: typeof __VLS_export;
627
629
  *
628
630
  * @public
629
631
  */
630
- declare interface FTableApi {
632
+ export declare interface FTableApi {
631
633
  /**
632
634
  * Alters tabstop behaviour during action.
633
635
  * Typically used during single row removal to put focus on cell nearby.
@@ -636,6 +638,18 @@ declare interface FTableApi {
636
638
  withTabstopBehaviour(behaviour: "default" | "row-removal", action: () => void | Promise<void>): Promise<void>;
637
639
  }
638
640
 
641
+ /**
642
+ * {@link FTable} optional cell api. Expose in cell component.
643
+ *
644
+ * @public
645
+ */
646
+ export declare interface FTableCellApi {
647
+ /**
648
+ * Preferred tabstop element when other than default (`td`).
649
+ */
650
+ tabstopEl: Readonly<ShallowRef<HTMLElement | null>>;
651
+ }
652
+
639
653
  /**
640
654
  * @public
641
655
  */
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.56.3"
8
+ "packageVersion": "7.57.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.37.0",
3
+ "version": "6.38.0",
4
4
  "description": "Experimental and unstable FKUI components",
5
5
  "keywords": [
6
6
  "fkui",
@@ -59,10 +59,10 @@
59
59
  "unit:watch": "jest --watch"
60
60
  },
61
61
  "peerDependencies": {
62
- "@fkui/date": "^6.37.0",
63
- "@fkui/design": "^6.37.0",
64
- "@fkui/logic": "^6.37.0",
65
- "@fkui/vue": "^6.37.0",
62
+ "@fkui/date": "^6.38.0",
63
+ "@fkui/design": "^6.38.0",
64
+ "@fkui/logic": "^6.38.0",
65
+ "@fkui/vue": "^6.38.0",
66
66
  "html-validate": ">= 7.9.0",
67
67
  "vue": "^3.5.0"
68
68
  },
@@ -75,5 +75,5 @@
75
75
  "node": ">= 20",
76
76
  "npm": ">= 7"
77
77
  },
78
- "gitHead": "15bcc047ba64657946b3e429cbf68abae064ebcc"
78
+ "gitHead": "ea8e50d8567159581a628106e93ac0e7c1d43a1b"
79
79
  }