@octans/ui 1.6.0 → 1.6.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.
@@ -45,6 +45,17 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
45
45
  helpLink: {
46
46
  type: PropType<string | false | null>;
47
47
  };
48
+ /**
49
+ * The icon drawn for `helpLink` — any name the `Icon` component takes.
50
+ * Defaults to an information symbol.
51
+ */
52
+ helpLinkIcon: {
53
+ type: StringConstructor;
54
+ };
55
+ /** Text shown on hovering the `helpLink` icon. */
56
+ helpLinkTooltip: {
57
+ type: StringConstructor;
58
+ };
48
59
  /**
49
60
  * Marks the field as required: an asterisk after the label, and
50
61
  * `aria-required` on the control.
@@ -394,6 +405,17 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
394
405
  helpLink: {
395
406
  type: PropType<string | false | null>;
396
407
  };
408
+ /**
409
+ * The icon drawn for `helpLink` — any name the `Icon` component takes.
410
+ * Defaults to an information symbol.
411
+ */
412
+ helpLinkIcon: {
413
+ type: StringConstructor;
414
+ };
415
+ /** Text shown on hovering the `helpLink` icon. */
416
+ helpLinkTooltip: {
417
+ type: StringConstructor;
418
+ };
397
419
  /**
398
420
  * Marks the field as required: an asterisk after the label, and
399
421
  * `aria-required` on the control.
@@ -751,6 +773,14 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
751
773
  type: PropType<string | false | null>;
752
774
  required: false;
753
775
  };
776
+ helpLinkIcon: {
777
+ type: StringConstructor;
778
+ default: string;
779
+ };
780
+ helpLinkTooltip: {
781
+ type: StringConstructor;
782
+ required: false;
783
+ };
754
784
  required: {
755
785
  type: BooleanConstructor;
756
786
  required: false;
@@ -778,12 +808,21 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
778
808
  type: PropType<string | false | null>;
779
809
  required: false;
780
810
  };
811
+ helpLinkIcon: {
812
+ type: StringConstructor;
813
+ default: string;
814
+ };
815
+ helpLinkTooltip: {
816
+ type: StringConstructor;
817
+ required: false;
818
+ };
781
819
  required: {
782
820
  type: BooleanConstructor;
783
821
  required: false;
784
822
  };
785
823
  }>> & Readonly<{}>, {
786
824
  required: boolean;
825
+ helpLinkIcon: string;
787
826
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
788
827
  Tag: {
789
828
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../Tag/Tag.vue').TagProps> & Readonly<{
@@ -21,6 +21,13 @@ export interface TextFieldProps {
21
21
  * Renders a help icon next to the label which links to an external page.
22
22
  */
23
23
  helpLink?: string | false;
24
+ /**
25
+ * The icon drawn for `helpLink` — any name the `Icon` component takes.
26
+ * Defaults to an information symbol.
27
+ */
28
+ helpLinkIcon?: string;
29
+ /** Text shown on hovering the `helpLink` icon. */
30
+ helpLinkTooltip?: string;
24
31
  /**
25
32
  * The control value.
26
33
  */
@@ -21,6 +21,13 @@ export interface TimePickerProps {
21
21
  * Renders a help icon next to the label which links to an external page.
22
22
  */
23
23
  helpLink?: string | false;
24
+ /**
25
+ * The icon drawn for `helpLink` — any name the `Icon` component takes.
26
+ * Defaults to an information symbol.
27
+ */
28
+ helpLinkIcon?: string;
29
+ /** Text shown on hovering the `helpLink` icon. */
30
+ helpLinkTooltip?: string;
24
31
  /**
25
32
  * Hint to display in the input when it is empty. Defaults to a format mask,
26
33
  * e.g. `"--:-- --"` (12 hour) or `"--:--"` (24 hour).
@@ -9,6 +9,13 @@ export interface TimezonePickerProps {
9
9
  helpTextHtml?: string;
10
10
  /** Renders a help icon next to the label which links to an external page. */
11
11
  helpLink?: string;
12
+ /**
13
+ * The icon drawn for `helpLink` — any name the `Icon` component takes.
14
+ * Defaults to an information symbol.
15
+ */
16
+ helpLinkIcon?: string;
17
+ /** Text shown on hovering the `helpLink` icon. */
18
+ helpLinkTooltip?: string;
12
19
  disabled?: boolean;
13
20
  readonly?: boolean;
14
21
  /**
@@ -23,6 +23,13 @@ export interface ToggleSwitchProps {
23
23
  * Renders a help icon next to the label which links to an external page.
24
24
  */
25
25
  helpLink?: string | false | null;
26
+ /**
27
+ * The icon drawn for `helpLink` — any name the `Icon` component takes.
28
+ * Defaults to an information symbol.
29
+ */
30
+ helpLinkIcon?: string;
31
+ /** Text shown on hovering the `helpLink` icon. */
32
+ helpLinkTooltip?: string;
26
33
  /**
27
34
  * Marks the field as required: an asterisk after the label, and
28
35
  * `aria-required` on the switch.