@dolanske/vui 1.5.11 → 1.5.12

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.
@@ -9,8 +9,18 @@ interface Props {
9
9
  * Use strong color
10
10
  */
11
11
  filled?: boolean;
12
+ /**
13
+ * Fill with a strong saturated color
14
+ */
12
15
  filledStrong?: boolean;
16
+ /**
17
+ * Additional text rendered under the title
18
+ */
13
19
  description?: string;
20
+ /**
21
+ * Vertical alignment of the ivon
22
+ */
23
+ iconAlign?: 'top' | 'center' | 'bottom';
14
24
  }
15
25
  declare function __VLS_template(): {
16
26
  attrs: Partial<{}>;
@@ -16,6 +16,12 @@ interface Props {
16
16
  * Tooltip position. Default is top
17
17
  */
18
18
  confirmPlacement?: Placement;
19
+ /**
20
+ * By default, elements with transition already use a default fade transition. This can be replaced by a custom vue transition class name.
21
+ *
22
+ * Setting the value to `none` will not apply any transition
23
+ */
24
+ transitionName?: string | 'disabled';
19
25
  }
20
26
  declare function __VLS_template(): {
21
27
  attrs: Partial<{}>;
@@ -46,6 +46,7 @@ declare function __VLS_template(): {
46
46
  readonly placement?: Placement | undefined;
47
47
  readonly offset?: number | undefined;
48
48
  readonly visible: boolean;
49
+ readonly transitionName?: string | "disabled" | undefined;
49
50
  readonly onClickOutside?: (() => any) | undefined;
50
51
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
51
52
  $attrs: {
@@ -124,6 +125,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
124
125
  readonly placement?: Placement | undefined;
125
126
  readonly offset?: number | undefined;
126
127
  readonly visible: boolean;
128
+ readonly transitionName?: string | "disabled" | undefined;
127
129
  readonly onClickOutside?: (() => any) | undefined;
128
130
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
129
131
  $attrs: {
@@ -26,6 +26,12 @@ export interface ModalProps {
26
26
  * Wether modal can be closed by clicking the X button
27
27
  */
28
28
  canDismiss?: boolean;
29
+ /**
30
+ * By default, elements with transition already use a default fade transition. This can be replaced by a custom vue transition class name.
31
+ *
32
+ * Setting the value to `none` will not apply any transition
33
+ */
34
+ transitionName?: string | 'disabled';
29
35
  }
30
36
  declare function __VLS_template(): {
31
37
  attrs: Partial<{}>;
@@ -16,6 +16,12 @@ export interface Props {
16
16
  * Set the visibility of the dropdown
17
17
  */
18
18
  visible: boolean;
19
+ /**
20
+ * By default, elements with transition already use a default fade transition. This can be replaced by a custom vue transition class name.
21
+ *
22
+ * Setting the value to `none` will not apply any transition
23
+ */
24
+ transitionName?: string | 'disabled';
19
25
  }
20
26
  declare function __VLS_template(): {
21
27
  attrs: Partial<{}>;
@@ -17,6 +17,12 @@ interface Props {
17
17
  * into the <Card /> component.
18
18
  */
19
19
  card?: CardProps;
20
+ /**
21
+ * By default, elements with transition already use a default fade transition. This can be replaced by a custom vue transition class name.
22
+ *
23
+ * Setting the value to `none` will not apply any transition
24
+ */
25
+ transitionName?: string | 'disabled';
20
26
  }
21
27
  declare function __VLS_template(): {
22
28
  attrs: Partial<{}>;