@fkui/vue 6.21.0 → 6.23.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.
@@ -54,6 +54,8 @@ declare const __VLS_1: {};
54
54
 
55
55
  declare const __VLS_10: {};
56
56
 
57
+ declare const __VLS_10_2: {};
58
+
57
59
  declare const __VLS_11: {
58
60
  isOpen: boolean;
59
61
  header: "header";
@@ -93,8 +95,6 @@ declare const __VLS_8: {};
93
95
 
94
96
  declare const __VLS_8_2: {};
95
97
 
96
- declare const __VLS_9: {};
97
-
98
98
  declare const __VLS_base: DefineComponent<ExtractPropTypes< {
99
99
  /**
100
100
  * The status of the badge, can be either 'default', 'warning', 'error', 'success' or 'info'.
@@ -928,8 +928,8 @@ default: () => string;
928
928
  onClick?: ((_date: FDate) => any) | undefined;
929
929
  }>, {
930
930
  id: string;
931
- yearSelector: boolean;
932
931
  tabDate: FDate | undefined;
932
+ yearSelector: boolean;
933
933
  }, {}, {
934
934
  ICalendarNavbar: DefineComponent<ExtractPropTypes< {
935
935
  modelValue: {
@@ -2679,8 +2679,8 @@ validator(value: string): boolean;
2679
2679
  horizontal: boolean;
2680
2680
  name: string;
2681
2681
  id: string;
2682
- labelClass: string;
2683
2682
  contentClass: string;
2683
+ labelClass: string;
2684
2684
  showDetails: "always" | "never" | "when-selected";
2685
2685
  chip: boolean;
2686
2686
  border: boolean;
@@ -3875,8 +3875,8 @@ default: () => string;
3875
3875
  onClick?: ((_date: FDate) => any) | undefined;
3876
3876
  }>, {
3877
3877
  id: string;
3878
- yearSelector: boolean;
3879
3878
  tabDate: FDate | undefined;
3879
+ yearSelector: boolean;
3880
3880
  }, {}, {
3881
3881
  ICalendarNavbar: DefineComponent<ExtractPropTypes< {
3882
3882
  modelValue: {
@@ -14045,10 +14045,7 @@ declare const __VLS_export_64: DefineComponent<ExtractPropTypes< {
14045
14045
  * `FLabel` you do not need to set this prop.
14046
14046
  */
14047
14047
  attachTo: {
14048
- type: {
14049
- new (): HTMLElement;
14050
- prototype: HTMLElement;
14051
- };
14048
+ type: PropType<HTMLElement | null | undefined>;
14052
14049
  required: false;
14053
14050
  default: null;
14054
14051
  };
@@ -14109,10 +14106,7 @@ hasHeader(): boolean;
14109
14106
  * `FLabel` you do not need to set this prop.
14110
14107
  */
14111
14108
  attachTo: {
14112
- type: {
14113
- new (): HTMLElement;
14114
- prototype: HTMLElement;
14115
- };
14109
+ type: PropType<HTMLElement | null | undefined>;
14116
14110
  required: false;
14117
14111
  default: null;
14118
14112
  };
@@ -14159,7 +14153,7 @@ validator(value: string | undefined): boolean;
14159
14153
  onToggle?: ((...args: any[]) => any) | undefined;
14160
14154
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
14161
14155
  }>, {
14162
- attachTo: HTMLElement;
14156
+ attachTo: HTMLElement | null | undefined;
14163
14157
  modelValue: boolean;
14164
14158
  closeButtonText: string;
14165
14159
  headerTag: string;
@@ -17152,7 +17146,7 @@ declare type __VLS_Slots_3 = {} & {
17152
17146
  };
17153
17147
 
17154
17148
  declare type __VLS_Slots_4 = {} & {
17155
- default?: (props: typeof __VLS_9) => any;
17149
+ default?: (props: typeof __VLS_10) => any;
17156
17150
  };
17157
17151
 
17158
17152
  declare type __VLS_Slots_5 = {} & {
@@ -17166,7 +17160,7 @@ declare type __VLS_Slots_6 = {} & {
17166
17160
  };
17167
17161
 
17168
17162
  declare type __VLS_Slots_7 = {} & {
17169
- default?: (props: typeof __VLS_10) => any;
17163
+ default?: (props: typeof __VLS_10_2) => any;
17170
17164
  };
17171
17165
 
17172
17166
  declare type __VLS_Slots_8 = {} & {
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.52.13"
8
+ "packageVersion": "7.53.1"
9
9
  }
10
10
  ]
11
11
  }
@@ -18,4 +18,7 @@ module.exports = [
18
18
 
19
19
  /* FWizardStep uses an anchor with role="button" for completed steps */
20
20
  ".wizard-step__header__title",
21
+
22
+ /* FDialogueTree uses aria-label on ul element */
23
+ ".dialogue-tree__list",
21
24
  ];
@@ -1,4 +1,4 @@
1
- const { Rule, DOMTokenList } = require("html-validate");
1
+ const { DOMTokenList, Rule } = require("html-validate");
2
2
  const { getDocumentationUrl } = require("./common");
3
3
 
4
4
  /**
@@ -1,7 +1,7 @@
1
1
  const {
2
2
  Rule,
3
- classifyNodeText,
4
3
  TextClassification,
4
+ classifyNodeText,
5
5
  } = require("html-validate/node");
6
6
  const { getDocumentationUrl } = require("./common");
7
7
 
@@ -1,11 +1,11 @@
1
1
  const buttongroup = require("./buttongroup.rule");
2
2
  const classdeprecated = require("./classdeprecated.rule");
3
- const PreferFIcon = require("./prefer-ficon.rule");
4
- const requiredmaxlength = require("./requiredmaxlength.rule");
5
- const ftextfieldFormatterValidation = require("./ftextfieldFormatterValidation.rule");
6
- const NoTemplateModal = require("./no-template-modal.rule");
7
3
  const FInteractiveTableCheckboxDescription = require("./finteractivetable-checkbox-description.rule");
8
4
  const FTableColumnName = require("./ftablecolumn-name.rule");
5
+ const ftextfieldFormatterValidation = require("./ftextfieldFormatterValidation.rule");
6
+ const NoTemplateModal = require("./no-template-modal.rule");
7
+ const PreferFIcon = require("./prefer-ficon.rule");
8
+ const requiredmaxlength = require("./requiredmaxlength.rule");
9
9
 
10
10
  module.exports = {
11
11
  "fkui/button-group": buttongroup,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fkui/vue",
3
- "version": "6.21.0",
3
+ "version": "6.23.0",
4
4
  "description": "Vue implementation of FKUI components",
5
5
  "keywords": [
6
6
  "fkui",
@@ -60,9 +60,9 @@
60
60
  "unit:watch": "jest --watch"
61
61
  },
62
62
  "peerDependencies": {
63
- "@fkui/date": "^6.21.0",
64
- "@fkui/design": "^6.21.0",
65
- "@fkui/logic": "^6.21.0",
63
+ "@fkui/date": "^6.23.0",
64
+ "@fkui/design": "^6.23.0",
65
+ "@fkui/logic": "^6.23.0",
66
66
  "fk-icons": "^4.30.1",
67
67
  "html-validate": ">= 7.9.0",
68
68
  "vue": "^3.5.0"
@@ -79,5 +79,5 @@
79
79
  "node": ">= 20",
80
80
  "npm": ">= 7"
81
81
  },
82
- "gitHead": "300d22abdfd674d0d2aad5e710773cb83b38152a"
82
+ "gitHead": "fa6f480d4762eb6f01607c7fc9d9de58e2d946c0"
83
83
  }