@fkui/vue 6.34.1 → 6.36.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.
@@ -211,6 +211,13 @@ type: PropType<"submit" | "reset" | "button">;
211
211
  default: string;
212
212
  validator(value: string): boolean;
213
213
  };
214
+ /**
215
+ * Disable the button.
216
+ */
217
+ disabled: {
218
+ type: BooleanConstructor;
219
+ required: false;
220
+ };
214
221
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
215
222
  /**
216
223
  * Type of button, can be one of:
@@ -293,6 +300,13 @@ type: PropType<"submit" | "reset" | "button">;
293
300
  default: string;
294
301
  validator(value: string): boolean;
295
302
  };
303
+ /**
304
+ * Disable the button.
305
+ */
306
+ disabled: {
307
+ type: BooleanConstructor;
308
+ required: false;
309
+ };
296
310
  }>> & Readonly<{}>, {
297
311
  type: "button" | "submit" | "reset";
298
312
  variant: "primary" | "secondary" | "tertiary";
@@ -303,6 +317,7 @@ iconLibrary: string;
303
317
  tertiaryStyle: "inverted" | "standard" | "black";
304
318
  alignText: boolean;
305
319
  mobileFullWidth: boolean;
320
+ disabled: boolean;
306
321
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
307
322
 
308
323
  declare const __VLS_base_3: DefineComponent<ExtractPropTypes< {
@@ -671,7 +686,7 @@ required: false;
671
686
  default: string;
672
687
  };
673
688
  /**
674
- * Set to `true`, empty string `""` or string `"disabled"` to disable this field.
689
+ * Disables the date picker.
675
690
  */
676
691
  disabled: {
677
692
  type: BooleanConstructor;
@@ -772,7 +787,7 @@ required: false;
772
787
  default: string;
773
788
  };
774
789
  /**
775
- * Set to `true`, empty string `""` or string `"disabled"` to disable this field.
790
+ * Disables the date picker.
776
791
  */
777
792
  disabled: {
778
793
  type: BooleanConstructor;
@@ -6455,7 +6470,7 @@ valueText: string;
6455
6470
 
6456
6471
  declare const __VLS_export_44: DefineComponent<ExtractPropTypes< {
6457
6472
  /**
6458
- * Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
6473
+ * Disables the radio button.
6459
6474
  */
6460
6475
  disabled: {
6461
6476
  type: BooleanConstructor;
@@ -6519,7 +6534,7 @@ afterEnter(element: Element): void;
6519
6534
  leave(element: Element): void;
6520
6535
  }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
6521
6536
  /**
6522
- * Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
6537
+ * Disables the radio button.
6523
6538
  */
6524
6539
  disabled: {
6525
6540
  type: BooleanConstructor;
@@ -11140,7 +11155,7 @@ parser: ParseFunction<number>;
11140
11155
 
11141
11156
  declare const __VLS_export_6: DefineComponent<ExtractPropTypes< {
11142
11157
  /**
11143
- * Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
11158
+ * Disables the checkbox.
11144
11159
  */
11145
11160
  disabled: {
11146
11161
  type: BooleanConstructor;
@@ -11208,7 +11223,7 @@ afterEnter(element: Element): void;
11208
11223
  leave(element: Element): void;
11209
11224
  }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", PublicProps, Readonly<ExtractPropTypes< {
11210
11225
  /**
11211
- * Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
11226
+ * Disables the checkbox.
11212
11227
  */
11213
11228
  disabled: {
11214
11229
  type: BooleanConstructor;
@@ -13859,7 +13874,7 @@ required: false;
13859
13874
  default: () => undefined;
13860
13875
  };
13861
13876
  /**
13862
- * Set to `true`, empty string `""` or string `"disabled"` to disable this field.
13877
+ * Disables the text field.
13863
13878
  */
13864
13879
  disabled: {
13865
13880
  type: BooleanConstructor;
@@ -14018,7 +14033,7 @@ required: false;
14018
14033
  default: () => undefined;
14019
14034
  };
14020
14035
  /**
14021
- * Set to `true`, empty string `""` or string `"disabled"` to disable this field.
14036
+ * Disables the text field.
14022
14037
  */
14023
14038
  disabled: {
14024
14039
  type: BooleanConstructor;
@@ -17311,6 +17326,10 @@ declare type __VLS_Props_5 = {
17311
17326
  * When set to an icon name an icon is displayed next to the label.
17312
17327
  */
17313
17328
  icon?: string;
17329
+ /**
17330
+ * The icon library to use when rendering an icon. If not set, the default icon library will be used.
17331
+ */
17332
+ iconLibrary?: string;
17314
17333
  /**
17315
17334
  * By default the label is visually hidden. When this prop is enabled the
17316
17335
  * label is rendered visually as well.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.55.2"
8
+ "packageVersion": "7.56.0"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fkui/vue",
3
- "version": "6.34.1",
3
+ "version": "6.36.0",
4
4
  "description": "Vue implementation of FKUI components",
5
5
  "keywords": [
6
6
  "fkui",
@@ -66,9 +66,9 @@
66
66
  "unit:watch": "jest --watch"
67
67
  },
68
68
  "peerDependencies": {
69
- "@fkui/date": "^6.34.1",
70
- "@fkui/design": "^6.34.1",
71
- "@fkui/logic": "^6.34.1",
69
+ "@fkui/date": "^6.36.0",
70
+ "@fkui/design": "^6.36.0",
71
+ "@fkui/logic": "^6.36.0",
72
72
  "fk-icons": "^4.30.1",
73
73
  "html-validate": ">= 7.9.0",
74
74
  "vue": "^3.5.0"
@@ -85,5 +85,5 @@
85
85
  "node": ">= 20",
86
86
  "npm": ">= 7"
87
87
  },
88
- "gitHead": "0dd21494f3870c35b228551fafdae85c64a14a67"
88
+ "gitHead": "b5bbd381af90d68b52b3a60e3b5e6a46972cd62c"
89
89
  }