fluekit 1.4.1 → 1.5.2
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/dist/AlertDialog.d.ts +33 -0
- package/dist/Border.d.ts +9 -1
- package/dist/BottomSheet.d.ts +38 -0
- package/dist/Box.d.ts +45 -0
- package/dist/Card.d.ts +34 -0
- package/dist/Checkbox.d.ts +15 -0
- package/dist/ClipOval.d.ts +22 -0
- package/dist/ClipRRect.d.ts +24 -0
- package/dist/Divider.d.ts +17 -0
- package/dist/InkWell.d.ts +25 -0
- package/dist/ListTile.d.ts +42 -0
- package/dist/Radio.d.ts +21 -0
- package/dist/Slider.d.ts +23 -0
- package/dist/SnackBar.d.ts +8 -0
- package/dist/SnackBarComponent.d.ts +11 -0
- package/dist/Spacer.d.ts +7 -0
- package/dist/Switch.d.ts +19 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +16 -1
- package/dist/index.js +1283 -535
- package/package.json +7 -6
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
visible: boolean;
|
|
3
|
+
title?: string;
|
|
4
|
+
content?: string;
|
|
5
|
+
barrierDismissible?: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
actions?(_: {}): any;
|
|
12
|
+
};
|
|
13
|
+
refs: {};
|
|
14
|
+
rootEl: any;
|
|
15
|
+
};
|
|
16
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
18
|
+
close: () => any;
|
|
19
|
+
"update:visible": (value: boolean) => any;
|
|
20
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
21
|
+
onClose?: (() => any) | undefined;
|
|
22
|
+
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
23
|
+
}>, {
|
|
24
|
+
visible: boolean;
|
|
25
|
+
barrierDismissible: boolean;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
package/dist/Border.d.ts
CHANGED
|
@@ -16,7 +16,15 @@ export interface Borders {
|
|
|
16
16
|
[BORDERS_SYMBOL]?: true;
|
|
17
17
|
}
|
|
18
18
|
export declare function BorderSide(side: Omit<BorderSide, typeof BORDER_SIDE_SYMBOL>): BorderSide;
|
|
19
|
-
export
|
|
19
|
+
export interface BorderFunction {
|
|
20
|
+
(side: Omit<BorderSide, typeof BORDER_SIDE_SYMBOL>): BorderSide;
|
|
21
|
+
all: (options?: {
|
|
22
|
+
color?: string;
|
|
23
|
+
width?: number | string;
|
|
24
|
+
style?: BorderStyleType;
|
|
25
|
+
}) => Borders;
|
|
26
|
+
}
|
|
27
|
+
export declare const Border: BorderFunction;
|
|
20
28
|
/**
|
|
21
29
|
* 类型守卫:检查对象是否通过 Border 构造函数创建(单个边框边)
|
|
22
30
|
*/
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { BorderRadius } from './BorderRadius';
|
|
2
|
+
import { EdgeInsets } from './EdgeInsets';
|
|
3
|
+
interface Props {
|
|
4
|
+
visible: boolean;
|
|
5
|
+
barrierDismissible?: boolean;
|
|
6
|
+
backgroundColor?: string;
|
|
7
|
+
elevation?: number;
|
|
8
|
+
shape?: BorderRadius;
|
|
9
|
+
padding?: EdgeInsets;
|
|
10
|
+
}
|
|
11
|
+
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
13
|
+
slots: {
|
|
14
|
+
default?(_: {}): any;
|
|
15
|
+
};
|
|
16
|
+
refs: {};
|
|
17
|
+
rootEl: any;
|
|
18
|
+
};
|
|
19
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
21
|
+
close: () => any;
|
|
22
|
+
"update:visible": (value: boolean) => any;
|
|
23
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
24
|
+
onClose?: (() => any) | undefined;
|
|
25
|
+
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
26
|
+
}>, {
|
|
27
|
+
visible: boolean;
|
|
28
|
+
backgroundColor: string;
|
|
29
|
+
elevation: number;
|
|
30
|
+
barrierDismissible: boolean;
|
|
31
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
32
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
33
|
+
export default _default;
|
|
34
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
35
|
+
new (): {
|
|
36
|
+
$slots: S;
|
|
37
|
+
};
|
|
38
|
+
};
|
package/dist/Box.d.ts
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { BoxShape } from './BoxDecoration';
|
|
2
|
+
import { BoxConstraints } from './BoxConstraints';
|
|
3
|
+
import { Alignment } from './Alignment';
|
|
4
|
+
import { EdgeInsets } from './EdgeInsets';
|
|
5
|
+
import { Borders } from './Border';
|
|
6
|
+
import { BorderRadius } from './BorderRadius';
|
|
7
|
+
import { BoxShadow } from './BoxShadow';
|
|
8
|
+
interface Props {
|
|
9
|
+
width?: number | string;
|
|
10
|
+
height?: number | string;
|
|
11
|
+
padding?: EdgeInsets;
|
|
12
|
+
margin?: EdgeInsets;
|
|
13
|
+
alignment?: Alignment;
|
|
14
|
+
transform?: string;
|
|
15
|
+
transformAlignment?: Alignment;
|
|
16
|
+
constraints?: BoxConstraints;
|
|
17
|
+
clipBehavior?: "none" | "hardEdge" | "antiAlias" | string;
|
|
18
|
+
color?: string;
|
|
19
|
+
border?: Borders;
|
|
20
|
+
borderRadius?: BorderRadius;
|
|
21
|
+
boxShadow?: BoxShadow[];
|
|
22
|
+
gradient?: string;
|
|
23
|
+
image?: any;
|
|
24
|
+
shape?: BoxShape;
|
|
25
|
+
}
|
|
26
|
+
declare function __VLS_template(): {
|
|
27
|
+
attrs: Partial<{}>;
|
|
28
|
+
slots: {
|
|
29
|
+
default?(_: {}): any;
|
|
30
|
+
};
|
|
31
|
+
refs: {};
|
|
32
|
+
rootEl: any;
|
|
33
|
+
};
|
|
34
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
35
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
36
|
+
shape: BoxShape;
|
|
37
|
+
clipBehavior: "none" | "hardEdge" | "antiAlias" | string;
|
|
38
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
39
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
40
|
+
export default _default;
|
|
41
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|
package/dist/Card.d.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { BorderRadius } from './BorderRadius';
|
|
2
|
+
import { EdgeInsets } from './EdgeInsets';
|
|
3
|
+
interface Props {
|
|
4
|
+
color?: string;
|
|
5
|
+
shadowColor?: string;
|
|
6
|
+
elevation?: number;
|
|
7
|
+
shape?: BorderRadius;
|
|
8
|
+
margin?: EdgeInsets;
|
|
9
|
+
clipBehavior?: "none" | "hardEdge" | "antiAlias" | string;
|
|
10
|
+
borderOnForeground?: boolean;
|
|
11
|
+
}
|
|
12
|
+
declare function __VLS_template(): {
|
|
13
|
+
attrs: Partial<{}>;
|
|
14
|
+
slots: {
|
|
15
|
+
default?(_: {}): any;
|
|
16
|
+
};
|
|
17
|
+
refs: {};
|
|
18
|
+
rootEl: any;
|
|
19
|
+
};
|
|
20
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
22
|
+
color: string;
|
|
23
|
+
margin: EdgeInsets;
|
|
24
|
+
clipBehavior: "none" | "hardEdge" | "antiAlias" | string;
|
|
25
|
+
elevation: number;
|
|
26
|
+
shadowColor: string;
|
|
27
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
29
|
+
export default _default;
|
|
30
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
value: boolean;
|
|
3
|
+
onChanged?: (value: boolean) => void;
|
|
4
|
+
activeColor?: string;
|
|
5
|
+
checkColor?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
8
|
+
"update:value": (value: boolean) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
10
|
+
"onUpdate:value"?: ((value: boolean) => any) | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
activeColor: string;
|
|
13
|
+
checkColor: string;
|
|
14
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
clipBehavior?: "none" | "hardEdge" | "antiAlias" | "antiAliasWithSaveLayer";
|
|
3
|
+
}
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
rootEl: any;
|
|
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<{}>, {
|
|
14
|
+
clipBehavior: "none" | "hardEdge" | "antiAlias" | "antiAliasWithSaveLayer";
|
|
15
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { BorderRadius } from './BorderRadius';
|
|
2
|
+
interface Props {
|
|
3
|
+
borderRadius?: BorderRadius;
|
|
4
|
+
clipBehavior?: "none" | "hardEdge" | "antiAlias" | "antiAliasWithSaveLayer";
|
|
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
|
+
clipBehavior: "none" | "hardEdge" | "antiAlias" | "antiAliasWithSaveLayer";
|
|
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
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
height?: number;
|
|
3
|
+
thickness?: number;
|
|
4
|
+
indent?: number;
|
|
5
|
+
endIndent?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
vertical?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
10
|
+
height: number;
|
|
11
|
+
color: string;
|
|
12
|
+
vertical: boolean;
|
|
13
|
+
thickness: number;
|
|
14
|
+
indent: number;
|
|
15
|
+
endIndent: number;
|
|
16
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
onTap?: () => void;
|
|
3
|
+
splashColor?: string;
|
|
4
|
+
highlightColor?: string;
|
|
5
|
+
borderRadius?: string;
|
|
6
|
+
}
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: any;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
17
|
+
splashColor: string;
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
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,42 @@
|
|
|
1
|
+
import { EdgeInsets } from './EdgeInsets';
|
|
2
|
+
interface Props {
|
|
3
|
+
leading?: any;
|
|
4
|
+
title?: string;
|
|
5
|
+
subtitle?: string;
|
|
6
|
+
trailing?: any;
|
|
7
|
+
onTap?: () => void;
|
|
8
|
+
onLongPress?: () => void;
|
|
9
|
+
enabled?: boolean;
|
|
10
|
+
selected?: boolean;
|
|
11
|
+
tileColor?: string;
|
|
12
|
+
selectedColor?: string;
|
|
13
|
+
iconColor?: string;
|
|
14
|
+
textColor?: string;
|
|
15
|
+
contentPadding?: EdgeInsets;
|
|
16
|
+
dense?: boolean;
|
|
17
|
+
}
|
|
18
|
+
declare function __VLS_template(): {
|
|
19
|
+
attrs: Partial<{}>;
|
|
20
|
+
slots: {
|
|
21
|
+
leading?(_: {}): any;
|
|
22
|
+
title?(_: {}): any;
|
|
23
|
+
subtitle?(_: {}): any;
|
|
24
|
+
trailing?(_: {}): any;
|
|
25
|
+
};
|
|
26
|
+
refs: {};
|
|
27
|
+
rootEl: any;
|
|
28
|
+
};
|
|
29
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
30
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
31
|
+
dense: boolean;
|
|
32
|
+
enabled: boolean;
|
|
33
|
+
selected: boolean;
|
|
34
|
+
selectedColor: string;
|
|
35
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
36
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
37
|
+
export default _default;
|
|
38
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
|
+
new (): {
|
|
40
|
+
$slots: S;
|
|
41
|
+
};
|
|
42
|
+
};
|
package/dist/Radio.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface RadioProps<T> {
|
|
2
|
+
value: T;
|
|
3
|
+
groupValue: T;
|
|
4
|
+
onChanged?: (value: T) => void;
|
|
5
|
+
activeColor?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
8
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
9
|
+
readonly "onUpdate:groupValue"?: ((value: T) => any) | undefined;
|
|
10
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:groupValue"> & RadioProps<T> & Partial<{}>> & import('vue').PublicProps;
|
|
11
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
12
|
+
attrs: any;
|
|
13
|
+
slots: {};
|
|
14
|
+
emit: (e: "update:groupValue", value: T) => void;
|
|
15
|
+
}>) => import('vue').VNode & {
|
|
16
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
17
|
+
};
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_PrettifyLocal<T> = {
|
|
20
|
+
[K in keyof T]: T[K];
|
|
21
|
+
} & {};
|
package/dist/Slider.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
value: number;
|
|
3
|
+
min?: number;
|
|
4
|
+
max?: number;
|
|
5
|
+
onChanged?: (value: number) => void;
|
|
6
|
+
activeColor?: string;
|
|
7
|
+
inactiveColor?: string;
|
|
8
|
+
thumbColor?: string;
|
|
9
|
+
}
|
|
10
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11
|
+
"update:value": (value: number) => any;
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
13
|
+
"onUpdate:value"?: ((value: number) => any) | undefined;
|
|
14
|
+
}>, {
|
|
15
|
+
activeColor: string;
|
|
16
|
+
min: number;
|
|
17
|
+
max: number;
|
|
18
|
+
inactiveColor: string;
|
|
19
|
+
thumbColor: string;
|
|
20
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
21
|
+
trackRef: HTMLDivElement;
|
|
22
|
+
}, HTMLDivElement>;
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
content: string;
|
|
3
|
+
actionLabel?: string;
|
|
4
|
+
onAction?: () => void;
|
|
5
|
+
onClose: () => void;
|
|
6
|
+
duration?: number;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
9
|
+
duration: number;
|
|
10
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
11
|
+
export default _default;
|
package/dist/Spacer.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
flex?: number;
|
|
3
|
+
}
|
|
4
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
5
|
+
flex: number;
|
|
6
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
package/dist/Switch.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
value: boolean;
|
|
3
|
+
onChanged?: (value: boolean) => void;
|
|
4
|
+
activeColor?: string;
|
|
5
|
+
activeTrackColor?: string;
|
|
6
|
+
inactiveThumbColor?: string;
|
|
7
|
+
inactiveTrackColor?: string;
|
|
8
|
+
}
|
|
9
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
10
|
+
"update:value": (value: boolean) => any;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
12
|
+
"onUpdate:value"?: ((value: boolean) => any) | undefined;
|
|
13
|
+
}>, {
|
|
14
|
+
activeColor: string;
|
|
15
|
+
activeTrackColor: string;
|
|
16
|
+
inactiveThumbColor: string;
|
|
17
|
+
inactiveTrackColor: string;
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
export default _default;
|
package/dist/index.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
.fluekit-button[data-v-a5efef4c]{appearance:none;cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit;text-align:inherit;box-sizing:border-box;background:0 0;border:0;outline:0;margin:0;padding:0}.fluekit-button[data-v-a5efef4c]:disabled{cursor:default}.fluekit-image[data-v-
|
|
1
|
+
.fluekit-button[data-v-a5efef4c]{appearance:none;cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit;text-align:inherit;box-sizing:border-box;background:0 0;border:0;outline:0;margin:0;padding:0}.fluekit-button[data-v-a5efef4c]:disabled{cursor:default}.fluekit-image[data-v-ce382550]{display:block}.flutter-list-view[data-v-7ba20c73]{flex-direction:column;display:flex}.list-view-shrink-wrap[data-v-7ba20c73]{flex:none}.flutter-stack[data-v-aefe47c2]>*{grid-area:1/1/2/2}.fluekit-text-field[data-v-40723984]{margin-top:16px;font-family:inherit;position:relative}.fluekit-input-container[data-v-40723984]{box-sizing:border-box;width:100%}.fluekit-input-element[data-v-40723984]{width:100%;color:inherit;resize:none;background:0 0;border:none;outline:none;flex:1;margin:0;padding:0;font-family:inherit;font-size:16px}.fluekit-input-label[data-v-40723984]{z-index:1}.fluekit-input-footer[data-v-40723984]{justify-content:space-between;margin-top:4px;display:flex}.fluekit-input-helper[data-v-40723984]{color:#666;font-size:12px}.fluekit-input-helper-spacer[data-v-40723984]{flex:1}.fluekit-input-counter[data-v-40723984]{color:#666;margin-left:auto;font-size:12px}.fluekit-input-helper.is-error[data-v-40723984]{color:#f44336}.flutter-transform[data-v-7e66ebaa]{box-sizing:border-box}.ink-well[data-v-290d8278]{cursor:pointer;display:block;position:relative;overflow:hidden}.ink-well.disabled[data-v-290d8278]{cursor:default}.ripple[data-v-290d8278]{pointer-events:none;border-radius:50%;animation:.6s linear ripple-290d8278;position:absolute;transform:scale(0)}@keyframes ripple-290d8278{to{opacity:0;transform:scale(4)}}.slider-container[data-v-422f79d9]{width:100%;position:relative}.dialog-overlay[data-v-0f7e54cc]{z-index:9999;background-color:#0000008a;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.bottom-sheet-overlay[data-v-94a8f810]{z-index:9999;background-color:#0000008a;justify-content:center;align-items:flex-end;display:flex;position:fixed;inset:0}.snackbar-overlay[data-v-ecad7f1a]{z-index:9999;pointer-events:none;justify-content:center;display:flex;position:fixed;bottom:0;left:0;right:0}.snackbar-overlay[data-v-ecad7f1a]>*{pointer-events:auto}
|
|
2
2
|
/*$vite$:1*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export { default as Align } from './Align';
|
|
2
2
|
export { default as AnimatedContainer } from './AnimatedContainer';
|
|
3
3
|
export { default as AnimatedOpacity } from './AnimatedOpacity';
|
|
4
|
+
export { default as Box } from './Box';
|
|
4
5
|
export { default as Button } from './Button';
|
|
6
|
+
export { default as Card } from './Card';
|
|
5
7
|
export { default as Center } from './Center';
|
|
6
8
|
export { default as Column } from './Column';
|
|
7
9
|
export { default as Container } from './Container';
|
|
@@ -26,6 +28,19 @@ export { default as TextArea } from './TextArea';
|
|
|
26
28
|
export { default as TextField } from './TextField';
|
|
27
29
|
export { default as Transform } from './Transform';
|
|
28
30
|
export { default as Wrap } from './Wrap';
|
|
31
|
+
export { default as Divider } from './Divider';
|
|
32
|
+
export { default as Spacer } from './Spacer';
|
|
33
|
+
export { default as ClipRRect } from './ClipRRect';
|
|
34
|
+
export { default as ClipOval } from './ClipOval';
|
|
35
|
+
export { default as ListTile } from './ListTile';
|
|
36
|
+
export { default as InkWell } from './InkWell';
|
|
37
|
+
export { default as Switch } from './Switch';
|
|
38
|
+
export { default as Checkbox } from './Checkbox';
|
|
39
|
+
export { default as Radio } from './Radio';
|
|
40
|
+
export { default as Slider } from './Slider';
|
|
41
|
+
export { default as AlertDialog } from './AlertDialog';
|
|
42
|
+
export { default as BottomSheet } from './BottomSheet';
|
|
43
|
+
export { SnackBar } from './SnackBar';
|
|
29
44
|
export * from './Border';
|
|
30
45
|
export * from './BoxConstraints';
|
|
31
46
|
export * from './BoxDecoration';
|
|
@@ -34,7 +49,7 @@ export * from './BoxShadow';
|
|
|
34
49
|
export * from './ButtonStyle';
|
|
35
50
|
export * from './EdgeInsets';
|
|
36
51
|
export { Alignment as Alignment } from './FlexProps';
|
|
37
|
-
export { StackFit } from './FlexProps';
|
|
52
|
+
export { StackFit, CrossAxisAlignment, MainAxisAlignment } from './FlexProps';
|
|
38
53
|
export * from './Gradient';
|
|
39
54
|
export * from './ImageProvider';
|
|
40
55
|
export * from './InputDecoration';
|