@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/LICENSE +673 -673
- package/README.md +19 -19
- package/dist/components/Alert/Alert.vue.d.ts +1 -1
- package/dist/components/CopyClipboard/CopyClipboard.vue.d.ts +1 -1
- package/dist/components/Dropdown/Dropdown.vue.d.ts +2 -2
- package/dist/components/Modal/Modal.vue.d.ts +1 -1
- package/dist/components/Popout/Popout.vue.d.ts +1 -1
- package/dist/components/Sheet/Sheet.vue.d.ts +1 -1
- package/dist/components/Tooltip/Tooltip.vue.d.ts +4 -0
- package/dist/vui.css +1 -1
- package/dist/vui.js +663 -659
- package/package.json +74 -74
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
|
|
@@ -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 | "
|
|
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 | "
|
|
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: {
|
|
@@ -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<{}>;
|