@skyloft/windvane 0.1.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.
- package/README.md +45 -0
- package/dist/components/Badge.vue.d.ts +20 -0
- package/dist/components/Button.vue.d.ts +31 -0
- package/dist/components/ButtonToggle.vue.d.ts +15 -0
- package/dist/components/Card.vue.d.ts +22 -0
- package/dist/components/Checkbox.vue.d.ts +30 -0
- package/dist/components/Date.vue.d.ts +15 -0
- package/dist/components/DateHelpers.d.ts +3 -0
- package/dist/components/Dialog.vue.d.ts +43 -0
- package/dist/components/EllipsisText.vue.d.ts +17 -0
- package/dist/components/ExpansionItem.vue.d.ts +40 -0
- package/dist/components/Fab.vue.d.ts +26 -0
- package/dist/components/FabAction.vue.d.ts +12 -0
- package/dist/components/Header.vue.d.ts +17 -0
- package/dist/components/Icon.vue.d.ts +12 -0
- package/dist/components/Input.vue.d.ts +50 -0
- package/dist/components/MathOperationButtons.vue.d.ts +24 -0
- package/dist/components/NavMenu.vue.d.ts +20 -0
- package/dist/components/PullToRefresh.vue.d.ts +17 -0
- package/dist/components/ScrollArea.vue.d.ts +25 -0
- package/dist/components/Select.vue.d.ts +20 -0
- package/dist/components/SlideItem.vue.d.ts +36 -0
- package/dist/components/Spinner.vue.d.ts +7 -0
- package/dist/components/Stepper.vue.d.ts +20 -0
- package/dist/components/StepperStep.vue.d.ts +20 -0
- package/dist/components/Tab.vue.d.ts +22 -0
- package/dist/components/Tabs.vue.d.ts +25 -0
- package/dist/components/TestComponent.vue.d.ts +20 -0
- package/dist/components/Tooltip.vue.d.ts +2 -0
- package/dist/components/TouchNumberInput.vue.d.ts +39 -0
- package/dist/components/TransitionGroupFadeSlide.vue.d.ts +24 -0
- package/dist/index.d.ts +30 -0
- package/dist/windvane-vue.es.js +6780 -0
- package/dist/windvane-vue.umd.js +2 -0
- package/dist/windvane.css +1 -0
- package/package.json +65 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue: string | null;
|
|
3
|
+
activeColor?: string;
|
|
4
|
+
}
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
7
|
+
slots: {
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: HTMLDivElement;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
15
|
+
"update:modelValue": (value: string) => any;
|
|
16
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
17
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
19
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
buttonKey?: string;
|
|
3
|
+
}
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
rootEl: HTMLButtonElement;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue: number;
|
|
3
|
+
stepValue?: number;
|
|
4
|
+
onlyAllowEditWithButtons?: boolean;
|
|
5
|
+
readonly?: boolean;
|
|
6
|
+
disallowDecimals?: boolean;
|
|
7
|
+
min?: number;
|
|
8
|
+
max?: number;
|
|
9
|
+
wrapAround?: boolean;
|
|
10
|
+
displayFormatter?: (value: string | null) => string | null;
|
|
11
|
+
}
|
|
12
|
+
declare function __VLS_template(): {
|
|
13
|
+
attrs: Partial<{}>;
|
|
14
|
+
slots: {
|
|
15
|
+
prepend?(_: {}): any;
|
|
16
|
+
append?(_: {}): any;
|
|
17
|
+
};
|
|
18
|
+
refs: {};
|
|
19
|
+
rootEl: HTMLDivElement;
|
|
20
|
+
};
|
|
21
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
22
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
23
|
+
"update:modelValue": (value: number) => any;
|
|
24
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
25
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
26
|
+
}>, {
|
|
27
|
+
readonly: boolean;
|
|
28
|
+
stepValue: number;
|
|
29
|
+
onlyAllowEditWithButtons: boolean;
|
|
30
|
+
disallowDecimals: boolean;
|
|
31
|
+
wrapAround: boolean;
|
|
32
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
33
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
34
|
+
export default _default;
|
|
35
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
36
|
+
new (): {
|
|
37
|
+
$slots: S;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
vertical?: boolean;
|
|
3
|
+
invert?: boolean;
|
|
4
|
+
grow?: boolean;
|
|
5
|
+
}
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
16
|
+
vertical: boolean;
|
|
17
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { default as TestComponent } from './components/TestComponent.vue';
|
|
2
|
+
import { default as Badge } from './components/Badge.vue';
|
|
3
|
+
import { default as Button } from './components/Button.vue';
|
|
4
|
+
import { default as ButtonToggle } from './components/ButtonToggle.vue';
|
|
5
|
+
import { default as Card } from './components/Card.vue';
|
|
6
|
+
import { default as Checkbox } from './components/Checkbox.vue';
|
|
7
|
+
import { default as Date } from './components/Date.vue';
|
|
8
|
+
import { default as Dialog } from './components/Dialog.vue';
|
|
9
|
+
import { default as EllipsisText } from './components/EllipsisText.vue';
|
|
10
|
+
import { default as ExpansionItem } from './components/ExpansionItem.vue';
|
|
11
|
+
import { default as Fab } from './components/Fab.vue';
|
|
12
|
+
import { default as FabAction } from './components/FabAction.vue';
|
|
13
|
+
import { default as Header } from './components/Header.vue';
|
|
14
|
+
import { default as Icon } from './components/Icon.vue';
|
|
15
|
+
import { default as Input } from './components/Input.vue';
|
|
16
|
+
import { default as MathOperationButtons } from './components/MathOperationButtons.vue';
|
|
17
|
+
import { default as NavMenu } from './components/NavMenu.vue';
|
|
18
|
+
import { default as PullToRefresh } from './components/PullToRefresh.vue';
|
|
19
|
+
import { default as ScrollArea } from './components/ScrollArea.vue';
|
|
20
|
+
import { default as Select } from './components/Select.vue';
|
|
21
|
+
import { default as SlideItem } from './components/SlideItem.vue';
|
|
22
|
+
import { default as Spinner } from './components/Spinner.vue';
|
|
23
|
+
import { default as Stepper } from './components/Stepper.vue';
|
|
24
|
+
import { default as StepperStep } from './components/StepperStep.vue';
|
|
25
|
+
import { default as Tab } from './components/Tab.vue';
|
|
26
|
+
import { default as Tabs } from './components/Tabs.vue';
|
|
27
|
+
import { default as Tooltip } from './components/Tooltip.vue';
|
|
28
|
+
import { default as TouchNumberInput } from './components/TouchNumberInput.vue';
|
|
29
|
+
import { default as TransitionGroupFadeSlide } from './components/TransitionGroupFadeSlide.vue';
|
|
30
|
+
export { TestComponent, Badge, Button, ButtonToggle, Card, Checkbox, Date, Dialog, EllipsisText, ExpansionItem, Fab, FabAction, Header, Icon, Input, MathOperationButtons, NavMenu, PullToRefresh, ScrollArea, Select, SlideItem, Spinner, Stepper, StepperStep, Tab, Tabs, Tooltip, TouchNumberInput, TransitionGroupFadeSlide, };
|