@fkui/vue 5.37.2 → 5.37.3

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.
@@ -545,10 +545,6 @@ export { _default_3 as FRadioGroupField }
545
545
  */
546
546
  export declare function dispatchComponentValidityEvent(element: Element, detail: ComponentValidityEvent): void;
547
547
 
548
- /* Excluded from this release type: EmptyTableRow */
549
-
550
- /* Excluded from this release type: emptyTableRow */
551
-
552
548
  /**
553
549
  * @public
554
550
  */
@@ -2070,17 +2066,15 @@ default: boolean;
2070
2066
  scroll: {
2071
2067
  type: PropType<TableScroll>;
2072
2068
  default: TableScroll;
2073
- validator: (value: string) => boolean;
2069
+ validator(value: string): boolean;
2074
2070
  };
2075
2071
  }, FSortFilterDatasetInterface, {
2076
2072
  columns: FTableColumnData[];
2077
- emptyRow: Record<string, unknown>;
2078
2073
  }, {
2079
2074
  hasCaption(): boolean;
2080
2075
  tableClasses(): string[];
2081
2076
  isEmpty(): boolean;
2082
2077
  visibleColumns(): FTableColumnData[];
2083
- hasInitiateColumns(): boolean;
2084
2078
  wrapperClasses(): string[];
2085
2079
  tabindex(): number | undefined;
2086
2080
  }, {
@@ -2128,7 +2122,7 @@ default: boolean;
2128
2122
  scroll: {
2129
2123
  type: PropType<TableScroll>;
2130
2124
  default: TableScroll;
2131
- validator: (value: string) => boolean;
2125
+ validator(value: string): boolean;
2132
2126
  };
2133
2127
  }>>, {
2134
2128
  scroll: TableScroll;
@@ -3857,7 +3851,6 @@ default: undefined;
3857
3851
  }, FSortFilterDatasetInterface & ActivateItemInterface & ExpandableTable, FInteractiveTableData, {
3858
3852
  hasCaption(): boolean;
3859
3853
  hasCheckboxDescription(): boolean;
3860
- hasInitiateColumns(): boolean;
3861
3854
  isEmpty(): boolean;
3862
3855
  visibleColumns(): FTableColumnData[];
3863
3856
  tableClasses(): string[];
@@ -3986,7 +3979,6 @@ expandableDescribedby: string;
3986
3979
  export declare interface FInteractiveTableData {
3987
3980
  activeRow: ListItem | undefined;
3988
3981
  columns: FTableColumnData[];
3989
- emptyRow: Record<string, unknown>;
3990
3982
  selectedRows: ListArray;
3991
3983
  tr: HTMLElement[];
3992
3984
  }
@@ -6987,6 +6979,14 @@ export declare interface FTableInterface {
6987
6979
  * Used to hide label (sr-only) and enable `IPopupError`, for inputfields enclosed by a table.
6988
6980
  */
6989
6981
  textFieldTableMode: boolean;
6982
+ /**
6983
+ * Enables/Disables rendering of column content.
6984
+ *
6985
+ * - When enabled the column will be rendered as normal
6986
+ * - When disabled the column will be registered in the table component but
6987
+ * no actual content will be rendered.
6988
+ */
6989
+ readonly renderColumns: boolean;
6990
6990
  }
6991
6991
 
6992
6992
  export declare const FTextareaField: DefineComponent< {
@@ -1300,6 +1300,10 @@ module.exports = defineMetadata({
1300
1300
  flow: true,
1301
1301
  permittedContent: ["f-wizard-step", "@flow"],
1302
1302
  attributes: {
1303
+ "disable-initial-focus": {
1304
+ required: false,
1305
+ boolean: true,
1306
+ },
1303
1307
  "header-tag": {
1304
1308
  required: true,
1305
1309
  enum: ["h1", "h2", "h3", "h4", "h5", "h6"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fkui/vue",
3
- "version": "5.37.2",
3
+ "version": "5.37.3",
4
4
  "description": "Vue implementation of FKUI components",
5
5
  "keywords": [
6
6
  "fkui",
@@ -75,7 +75,7 @@
75
75
  "devDependencies": {
76
76
  "@fkui/css-variables": "5.37.2",
77
77
  "@fkui/date": "5.37.2",
78
- "@fkui/design": "5.37.2",
78
+ "@fkui/design": "5.37.3",
79
79
  "@fkui/icon-lib-default": "5.37.0",
80
80
  "@fkui/logic": "5.37.2",
81
81
  "@fkui/test-utils": "5.37.0",
@@ -109,5 +109,5 @@
109
109
  "node": ">= 20",
110
110
  "npm": ">= 7"
111
111
  },
112
- "gitHead": "58ab8a4ceea399b130d5eb98b946bd117699d23b"
112
+ "gitHead": "4854b4508f6e20b96392a7fcda6c76e5d6217fc2"
113
113
  }