@dolanske/vui 1.5.13 → 1.5.14

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.
package/README.md CHANGED
@@ -1,19 +1,19 @@
1
- # VUI
2
-
3
- 1. `npm i @dolanske/vui`
4
- 2. In your main app entry,`import "@dolanske/vui/style` to import the global CSS
5
- 3. Build your thing bro
6
-
7
- ---
8
-
9
- ## TODO
10
-
11
- - [ ] Bump target from ES2022 whenever vite-plugin-dts is fixed
12
- - [ ] Carousel (slider)
13
- - [ ] CodeBlock
14
- - [ ] Code highlighting
15
- - [ ] Copy code
16
- - [ ] Type, padding, etc
17
- - [ ] Use this https://shiki.style/guide/install
18
- - [ ] Command menu
19
- - [ ] Documentation site using my own template
1
+ # VUI
2
+
3
+ 1. `npm i @dolanske/vui`
4
+ 2. In your main app entry,`import "@dolanske/vui/style` to import the global CSS
5
+ 3. Build your thing bro
6
+
7
+ ---
8
+
9
+ ## TODO
10
+
11
+ - [ ] Bump target from ES2022 whenever vite-plugin-dts is fixed
12
+ - [ ] Carousel (slider)
13
+ - [ ] CodeBlock
14
+ - [ ] Code highlighting
15
+ - [ ] Copy code
16
+ - [ ] Type, padding, etc
17
+ - [ ] Use this https://shiki.style/guide/install
18
+ - [ ] Command menu
19
+ - [ ] Documentation site using my own template
@@ -18,7 +18,7 @@ interface Props {
18
18
  */
19
19
  description?: string;
20
20
  /**
21
- * Vertical alignment of the ivon
21
+ * Vertical alignment of the icon
22
22
  */
23
23
  iconAlign?: 'start' | 'center' | 'end';
24
24
  }
@@ -21,7 +21,7 @@ interface Props {
21
21
  *
22
22
  * Setting the value to `none` will not apply any transition
23
23
  */
24
- transitionName?: string | 'disabled';
24
+ transitionName?: string | 'none';
25
25
  }
26
26
  declare function __VLS_template(): {
27
27
  attrs: Partial<{}>;
@@ -46,7 +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
+ readonly transitionName?: string | "none" | undefined;
50
50
  readonly onClickOutside?: (() => any) | undefined;
51
51
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
52
52
  $attrs: {
@@ -125,7 +125,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
125
125
  readonly placement?: Placement | undefined;
126
126
  readonly offset?: number | undefined;
127
127
  readonly visible: boolean;
128
- readonly transitionName?: string | "disabled" | undefined;
128
+ readonly transitionName?: string | "none" | undefined;
129
129
  readonly onClickOutside?: (() => any) | undefined;
130
130
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
131
131
  $attrs: {
@@ -31,7 +31,7 @@ export interface ModalProps {
31
31
  *
32
32
  * Setting the value to `none` will not apply any transition
33
33
  */
34
- transitionName?: string | 'disabled';
34
+ transitionName?: string | 'none';
35
35
  }
36
36
  declare function __VLS_template(): {
37
37
  attrs: Partial<{}>;
@@ -21,7 +21,7 @@ export interface Props {
21
21
  *
22
22
  * Setting the value to `none` will not apply any transition
23
23
  */
24
- transitionName?: string | 'disabled';
24
+ transitionName?: string | 'none';
25
25
  }
26
26
  declare function __VLS_template(): {
27
27
  attrs: Partial<{}>;
@@ -22,7 +22,7 @@ interface Props {
22
22
  *
23
23
  * Setting the value to `none` will not apply any transition
24
24
  */
25
- transitionName?: string | 'disabled';
25
+ transitionName?: string | 'none';
26
26
  }
27
27
  declare function __VLS_template(): {
28
28
  attrs: Partial<{}>;
@@ -8,6 +8,10 @@ interface Props {
8
8
  * Amount of time user should hover the anchor until the tooltip shows up
9
9
  */
10
10
  delay?: number;
11
+ /**
12
+ * If set to true, tooltip will not be rendered
13
+ */
14
+ disabled?: boolean;
11
15
  }
12
16
  declare function __VLS_template(): {
13
17
  attrs: Partial<{}>;