@meursyphus/flitter 2.0.0 → 2.0.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/README.md +133 -138
- package/index.cjs +734 -18
- package/index.d.cts +391 -36
- package/index.d.ts +391 -36
- package/index.global.js +740 -28
- package/index.js +733 -17
- package/package.json +2 -2
package/index.d.cts
CHANGED
|
@@ -3124,6 +3124,7 @@ declare class RenderGestureDetector extends SingleChildRenderObject {
|
|
|
3124
3124
|
}): boolean;
|
|
3125
3125
|
updateZOrder(value: number): void;
|
|
3126
3126
|
accept(visitor: RenderObjectVisitor): void;
|
|
3127
|
+
invokeCallback(type: "onClick" | "onMouseDown" | "onMouseMove" | "onMouseUp" | "onMouseOver" | "onMouseEnter" | "onMouseLeave" | "onDragStart" | "onDragMove" | "onDragEnd" | "onWheel", e: MouseEvent | WheelEvent): void;
|
|
3127
3128
|
}
|
|
3128
3129
|
type MouseEventCallback = (event: MouseEvent) => void;
|
|
3129
3130
|
|
|
@@ -3133,14 +3134,14 @@ interface RenderObjectVisitor {
|
|
|
3133
3134
|
visitGestureDetector(gestureDetector: RenderGestureDetector): void;
|
|
3134
3135
|
}
|
|
3135
3136
|
|
|
3136
|
-
type EventHandlerType = "onClick" | "onMouseMove" | "onMouseUp" | "onMouseDown" | "
|
|
3137
|
+
type EventHandlerType = "onClick" | "onMouseMove" | "onMouseUp" | "onMouseDown" | "onWheel" | "onMouseEnter" | "onMouseLeave";
|
|
3137
3138
|
declare class HitTestDispatcher {
|
|
3138
3139
|
#private;
|
|
3139
3140
|
init({ renderContext }: {
|
|
3140
3141
|
renderContext: RenderContext;
|
|
3141
3142
|
}): void;
|
|
3142
3143
|
traceHitPosition(e: MouseEvent): void;
|
|
3143
|
-
hitTest: (e: Wrapped<MouseEvent>, type: EventHandlerType) => void;
|
|
3144
|
+
hitTest: (e: Wrapped<MouseEvent | WheelEvent>, type: EventHandlerType) => void;
|
|
3144
3145
|
didZOrderChange(): void;
|
|
3145
3146
|
addDetector(detector: RenderGestureDetector): void;
|
|
3146
3147
|
removeDetector(detector: RenderGestureDetector): void;
|
|
@@ -3172,6 +3173,10 @@ declare class RenderContext {
|
|
|
3172
3173
|
height: number;
|
|
3173
3174
|
};
|
|
3174
3175
|
});
|
|
3176
|
+
/**
|
|
3177
|
+
* @deprecated
|
|
3178
|
+
* This method is deprecated and will be removed in future versions.
|
|
3179
|
+
*/
|
|
3175
3180
|
setViewport({ translation, scale, }: {
|
|
3176
3181
|
translation: {
|
|
3177
3182
|
x: number;
|
|
@@ -3324,7 +3329,7 @@ declare class Curve {
|
|
|
3324
3329
|
transform(value: number): number;
|
|
3325
3330
|
}
|
|
3326
3331
|
|
|
3327
|
-
declare const _default$
|
|
3332
|
+
declare const _default$x: {
|
|
3328
3333
|
linear: Curve;
|
|
3329
3334
|
easeIn: Curve;
|
|
3330
3335
|
easeInOut: Curve;
|
|
@@ -3770,6 +3775,347 @@ declare enum ToolTipPosition {
|
|
|
3770
3775
|
centerRight = "centerRight"
|
|
3771
3776
|
}
|
|
3772
3777
|
|
|
3778
|
+
declare const inherit = "inherit";
|
|
3779
|
+
declare const transparent = "transparent";
|
|
3780
|
+
declare const black = "#000";
|
|
3781
|
+
declare const white = "#fff";
|
|
3782
|
+
declare const slate: {
|
|
3783
|
+
50: string;
|
|
3784
|
+
100: string;
|
|
3785
|
+
200: string;
|
|
3786
|
+
300: string;
|
|
3787
|
+
400: string;
|
|
3788
|
+
500: string;
|
|
3789
|
+
600: string;
|
|
3790
|
+
700: string;
|
|
3791
|
+
800: string;
|
|
3792
|
+
900: string;
|
|
3793
|
+
950: string;
|
|
3794
|
+
};
|
|
3795
|
+
declare const gray: {
|
|
3796
|
+
50: string;
|
|
3797
|
+
100: string;
|
|
3798
|
+
200: string;
|
|
3799
|
+
300: string;
|
|
3800
|
+
400: string;
|
|
3801
|
+
500: string;
|
|
3802
|
+
600: string;
|
|
3803
|
+
700: string;
|
|
3804
|
+
800: string;
|
|
3805
|
+
900: string;
|
|
3806
|
+
950: string;
|
|
3807
|
+
};
|
|
3808
|
+
declare const zinc: {
|
|
3809
|
+
50: string;
|
|
3810
|
+
100: string;
|
|
3811
|
+
200: string;
|
|
3812
|
+
300: string;
|
|
3813
|
+
400: string;
|
|
3814
|
+
500: string;
|
|
3815
|
+
600: string;
|
|
3816
|
+
700: string;
|
|
3817
|
+
800: string;
|
|
3818
|
+
900: string;
|
|
3819
|
+
950: string;
|
|
3820
|
+
};
|
|
3821
|
+
declare const neutral: {
|
|
3822
|
+
50: string;
|
|
3823
|
+
100: string;
|
|
3824
|
+
200: string;
|
|
3825
|
+
300: string;
|
|
3826
|
+
400: string;
|
|
3827
|
+
500: string;
|
|
3828
|
+
600: string;
|
|
3829
|
+
700: string;
|
|
3830
|
+
800: string;
|
|
3831
|
+
900: string;
|
|
3832
|
+
950: string;
|
|
3833
|
+
};
|
|
3834
|
+
declare const stone: {
|
|
3835
|
+
50: string;
|
|
3836
|
+
100: string;
|
|
3837
|
+
200: string;
|
|
3838
|
+
300: string;
|
|
3839
|
+
400: string;
|
|
3840
|
+
500: string;
|
|
3841
|
+
600: string;
|
|
3842
|
+
700: string;
|
|
3843
|
+
800: string;
|
|
3844
|
+
900: string;
|
|
3845
|
+
950: string;
|
|
3846
|
+
};
|
|
3847
|
+
declare const red: {
|
|
3848
|
+
50: string;
|
|
3849
|
+
100: string;
|
|
3850
|
+
200: string;
|
|
3851
|
+
300: string;
|
|
3852
|
+
400: string;
|
|
3853
|
+
500: string;
|
|
3854
|
+
600: string;
|
|
3855
|
+
700: string;
|
|
3856
|
+
800: string;
|
|
3857
|
+
900: string;
|
|
3858
|
+
950: string;
|
|
3859
|
+
};
|
|
3860
|
+
declare const orange: {
|
|
3861
|
+
50: string;
|
|
3862
|
+
100: string;
|
|
3863
|
+
200: string;
|
|
3864
|
+
300: string;
|
|
3865
|
+
400: string;
|
|
3866
|
+
500: string;
|
|
3867
|
+
600: string;
|
|
3868
|
+
700: string;
|
|
3869
|
+
800: string;
|
|
3870
|
+
900: string;
|
|
3871
|
+
950: string;
|
|
3872
|
+
};
|
|
3873
|
+
declare const amber: {
|
|
3874
|
+
50: string;
|
|
3875
|
+
100: string;
|
|
3876
|
+
200: string;
|
|
3877
|
+
300: string;
|
|
3878
|
+
400: string;
|
|
3879
|
+
500: string;
|
|
3880
|
+
600: string;
|
|
3881
|
+
700: string;
|
|
3882
|
+
800: string;
|
|
3883
|
+
900: string;
|
|
3884
|
+
950: string;
|
|
3885
|
+
};
|
|
3886
|
+
declare const yellow: {
|
|
3887
|
+
50: string;
|
|
3888
|
+
100: string;
|
|
3889
|
+
200: string;
|
|
3890
|
+
300: string;
|
|
3891
|
+
400: string;
|
|
3892
|
+
500: string;
|
|
3893
|
+
600: string;
|
|
3894
|
+
700: string;
|
|
3895
|
+
800: string;
|
|
3896
|
+
900: string;
|
|
3897
|
+
950: string;
|
|
3898
|
+
};
|
|
3899
|
+
declare const lime: {
|
|
3900
|
+
50: string;
|
|
3901
|
+
100: string;
|
|
3902
|
+
200: string;
|
|
3903
|
+
300: string;
|
|
3904
|
+
400: string;
|
|
3905
|
+
500: string;
|
|
3906
|
+
600: string;
|
|
3907
|
+
700: string;
|
|
3908
|
+
800: string;
|
|
3909
|
+
900: string;
|
|
3910
|
+
950: string;
|
|
3911
|
+
};
|
|
3912
|
+
declare const green: {
|
|
3913
|
+
50: string;
|
|
3914
|
+
100: string;
|
|
3915
|
+
200: string;
|
|
3916
|
+
300: string;
|
|
3917
|
+
400: string;
|
|
3918
|
+
500: string;
|
|
3919
|
+
600: string;
|
|
3920
|
+
700: string;
|
|
3921
|
+
800: string;
|
|
3922
|
+
900: string;
|
|
3923
|
+
950: string;
|
|
3924
|
+
};
|
|
3925
|
+
declare const emerald: {
|
|
3926
|
+
50: string;
|
|
3927
|
+
100: string;
|
|
3928
|
+
200: string;
|
|
3929
|
+
300: string;
|
|
3930
|
+
400: string;
|
|
3931
|
+
500: string;
|
|
3932
|
+
600: string;
|
|
3933
|
+
700: string;
|
|
3934
|
+
800: string;
|
|
3935
|
+
900: string;
|
|
3936
|
+
950: string;
|
|
3937
|
+
};
|
|
3938
|
+
declare const teal: {
|
|
3939
|
+
50: string;
|
|
3940
|
+
100: string;
|
|
3941
|
+
200: string;
|
|
3942
|
+
300: string;
|
|
3943
|
+
400: string;
|
|
3944
|
+
500: string;
|
|
3945
|
+
600: string;
|
|
3946
|
+
700: string;
|
|
3947
|
+
800: string;
|
|
3948
|
+
900: string;
|
|
3949
|
+
950: string;
|
|
3950
|
+
};
|
|
3951
|
+
declare const cyan: {
|
|
3952
|
+
50: string;
|
|
3953
|
+
100: string;
|
|
3954
|
+
200: string;
|
|
3955
|
+
300: string;
|
|
3956
|
+
400: string;
|
|
3957
|
+
500: string;
|
|
3958
|
+
600: string;
|
|
3959
|
+
700: string;
|
|
3960
|
+
800: string;
|
|
3961
|
+
900: string;
|
|
3962
|
+
950: string;
|
|
3963
|
+
};
|
|
3964
|
+
declare const sky: {
|
|
3965
|
+
50: string;
|
|
3966
|
+
100: string;
|
|
3967
|
+
200: string;
|
|
3968
|
+
300: string;
|
|
3969
|
+
400: string;
|
|
3970
|
+
500: string;
|
|
3971
|
+
600: string;
|
|
3972
|
+
700: string;
|
|
3973
|
+
800: string;
|
|
3974
|
+
900: string;
|
|
3975
|
+
950: string;
|
|
3976
|
+
};
|
|
3977
|
+
declare const blue: {
|
|
3978
|
+
50: string;
|
|
3979
|
+
100: string;
|
|
3980
|
+
200: string;
|
|
3981
|
+
300: string;
|
|
3982
|
+
400: string;
|
|
3983
|
+
500: string;
|
|
3984
|
+
600: string;
|
|
3985
|
+
700: string;
|
|
3986
|
+
800: string;
|
|
3987
|
+
900: string;
|
|
3988
|
+
950: string;
|
|
3989
|
+
};
|
|
3990
|
+
declare const indigo: {
|
|
3991
|
+
50: string;
|
|
3992
|
+
100: string;
|
|
3993
|
+
200: string;
|
|
3994
|
+
300: string;
|
|
3995
|
+
400: string;
|
|
3996
|
+
500: string;
|
|
3997
|
+
600: string;
|
|
3998
|
+
700: string;
|
|
3999
|
+
800: string;
|
|
4000
|
+
900: string;
|
|
4001
|
+
950: string;
|
|
4002
|
+
};
|
|
4003
|
+
declare const violet: {
|
|
4004
|
+
50: string;
|
|
4005
|
+
100: string;
|
|
4006
|
+
200: string;
|
|
4007
|
+
300: string;
|
|
4008
|
+
400: string;
|
|
4009
|
+
500: string;
|
|
4010
|
+
600: string;
|
|
4011
|
+
700: string;
|
|
4012
|
+
800: string;
|
|
4013
|
+
900: string;
|
|
4014
|
+
950: string;
|
|
4015
|
+
};
|
|
4016
|
+
declare const purple: {
|
|
4017
|
+
50: string;
|
|
4018
|
+
100: string;
|
|
4019
|
+
200: string;
|
|
4020
|
+
300: string;
|
|
4021
|
+
400: string;
|
|
4022
|
+
500: string;
|
|
4023
|
+
600: string;
|
|
4024
|
+
700: string;
|
|
4025
|
+
800: string;
|
|
4026
|
+
900: string;
|
|
4027
|
+
950: string;
|
|
4028
|
+
};
|
|
4029
|
+
declare const fuchsia: {
|
|
4030
|
+
50: string;
|
|
4031
|
+
100: string;
|
|
4032
|
+
200: string;
|
|
4033
|
+
300: string;
|
|
4034
|
+
400: string;
|
|
4035
|
+
500: string;
|
|
4036
|
+
600: string;
|
|
4037
|
+
700: string;
|
|
4038
|
+
800: string;
|
|
4039
|
+
900: string;
|
|
4040
|
+
950: string;
|
|
4041
|
+
};
|
|
4042
|
+
declare const pink: {
|
|
4043
|
+
50: string;
|
|
4044
|
+
100: string;
|
|
4045
|
+
200: string;
|
|
4046
|
+
300: string;
|
|
4047
|
+
400: string;
|
|
4048
|
+
500: string;
|
|
4049
|
+
600: string;
|
|
4050
|
+
700: string;
|
|
4051
|
+
800: string;
|
|
4052
|
+
900: string;
|
|
4053
|
+
950: string;
|
|
4054
|
+
};
|
|
4055
|
+
declare const rose: {
|
|
4056
|
+
50: string;
|
|
4057
|
+
100: string;
|
|
4058
|
+
200: string;
|
|
4059
|
+
300: string;
|
|
4060
|
+
400: string;
|
|
4061
|
+
500: string;
|
|
4062
|
+
600: string;
|
|
4063
|
+
700: string;
|
|
4064
|
+
800: string;
|
|
4065
|
+
900: string;
|
|
4066
|
+
950: string;
|
|
4067
|
+
};
|
|
4068
|
+
|
|
4069
|
+
declare const colors_amber: typeof amber;
|
|
4070
|
+
declare const colors_black: typeof black;
|
|
4071
|
+
declare const colors_blue: typeof blue;
|
|
4072
|
+
declare const colors_cyan: typeof cyan;
|
|
4073
|
+
declare const colors_emerald: typeof emerald;
|
|
4074
|
+
declare const colors_fuchsia: typeof fuchsia;
|
|
4075
|
+
declare const colors_gray: typeof gray;
|
|
4076
|
+
declare const colors_green: typeof green;
|
|
4077
|
+
declare const colors_indigo: typeof indigo;
|
|
4078
|
+
declare const colors_inherit: typeof inherit;
|
|
4079
|
+
declare const colors_lime: typeof lime;
|
|
4080
|
+
declare const colors_neutral: typeof neutral;
|
|
4081
|
+
declare const colors_orange: typeof orange;
|
|
4082
|
+
declare const colors_pink: typeof pink;
|
|
4083
|
+
declare const colors_purple: typeof purple;
|
|
4084
|
+
declare const colors_red: typeof red;
|
|
4085
|
+
declare const colors_rose: typeof rose;
|
|
4086
|
+
declare const colors_sky: typeof sky;
|
|
4087
|
+
declare const colors_slate: typeof slate;
|
|
4088
|
+
declare const colors_stone: typeof stone;
|
|
4089
|
+
declare const colors_teal: typeof teal;
|
|
4090
|
+
declare const colors_transparent: typeof transparent;
|
|
4091
|
+
declare const colors_violet: typeof violet;
|
|
4092
|
+
declare const colors_white: typeof white;
|
|
4093
|
+
declare const colors_yellow: typeof yellow;
|
|
4094
|
+
declare const colors_zinc: typeof zinc;
|
|
4095
|
+
declare namespace colors {
|
|
4096
|
+
export { colors_amber as amber, colors_black as black, colors_blue as blue, colors_cyan as cyan, colors_emerald as emerald, colors_fuchsia as fuchsia, colors_gray as gray, colors_green as green, colors_indigo as indigo, colors_inherit as inherit, colors_lime as lime, colors_neutral as neutral, colors_orange as orange, colors_pink as pink, colors_purple as purple, colors_red as red, colors_rose as rose, colors_sky as sky, colors_slate as slate, colors_stone as stone, colors_teal as teal, colors_transparent as transparent, colors_violet as violet, colors_white as white, colors_yellow as yellow, colors_zinc as zinc };
|
|
4097
|
+
}
|
|
4098
|
+
|
|
4099
|
+
declare enum ObjectFit {
|
|
4100
|
+
fill = "fill",
|
|
4101
|
+
contain = "contain",
|
|
4102
|
+
cover = "cover",
|
|
4103
|
+
none = "none",
|
|
4104
|
+
scaleDown = "scale-down"
|
|
4105
|
+
}
|
|
4106
|
+
|
|
4107
|
+
declare enum ObjectPosition {
|
|
4108
|
+
center = "center",
|
|
4109
|
+
top = "top",
|
|
4110
|
+
right = "right",
|
|
4111
|
+
bottom = "bottom",
|
|
4112
|
+
left = "left",
|
|
4113
|
+
topLeft = "top left",
|
|
4114
|
+
topRight = "top right",
|
|
4115
|
+
bottomLeft = "bottom left",
|
|
4116
|
+
bottomRight = "bottom right"
|
|
4117
|
+
}
|
|
4118
|
+
|
|
3773
4119
|
declare class RenderObject {
|
|
3774
4120
|
#private;
|
|
3775
4121
|
readonly runtimeType: string;
|
|
@@ -3949,7 +4295,7 @@ declare class ChangeNotifierProviderState extends State<ChangeNotifierProvider>
|
|
|
3949
4295
|
initState(_: BuildContext): void;
|
|
3950
4296
|
build(_: BuildContext): Widget;
|
|
3951
4297
|
}
|
|
3952
|
-
declare const _default$
|
|
4298
|
+
declare const _default$w: (props_0: {
|
|
3953
4299
|
child: Widget;
|
|
3954
4300
|
create: () => ChangeNotifier;
|
|
3955
4301
|
key?: string;
|
|
@@ -4054,7 +4400,7 @@ type ContainerProps = {
|
|
|
4054
4400
|
transformAlignment?: Alignment;
|
|
4055
4401
|
key?: any;
|
|
4056
4402
|
};
|
|
4057
|
-
declare const _default$
|
|
4403
|
+
declare const _default$v: (args_0: ContainerProps) => any;
|
|
4058
4404
|
|
|
4059
4405
|
declare class Padding$1 extends SingleChildRenderObjectWidget {
|
|
4060
4406
|
padding: EdgeInsets;
|
|
@@ -4094,7 +4440,7 @@ declare class _Builder extends StatelessWidget {
|
|
|
4094
4440
|
build(context: BuildContext): Widget;
|
|
4095
4441
|
}
|
|
4096
4442
|
|
|
4097
|
-
declare const _default$
|
|
4443
|
+
declare const _default$u: (args_0: {
|
|
4098
4444
|
key?: any;
|
|
4099
4445
|
child?: Widget;
|
|
4100
4446
|
alignment?: Alignment;
|
|
@@ -4211,7 +4557,7 @@ declare namespace Grid {
|
|
|
4211
4557
|
var Px: typeof GridTemplate.Px;
|
|
4212
4558
|
}
|
|
4213
4559
|
|
|
4214
|
-
declare const _default$
|
|
4560
|
+
declare const _default$t: (args_0?: {
|
|
4215
4561
|
flex?: number;
|
|
4216
4562
|
child?: Widget;
|
|
4217
4563
|
fit?: "tight" | "loose";
|
|
@@ -4317,7 +4663,7 @@ interface PositionedFunction {
|
|
|
4317
4663
|
}
|
|
4318
4664
|
declare const Positioned: PositionedFunction;
|
|
4319
4665
|
|
|
4320
|
-
declare const _default$
|
|
4666
|
+
declare const _default$s: (args_0: {
|
|
4321
4667
|
key?: any;
|
|
4322
4668
|
child?: Widget;
|
|
4323
4669
|
clipper: (size: Size) => Path;
|
|
@@ -4338,7 +4684,7 @@ declare function ClipOval$1({ child, clipper, clipped, key, }: {
|
|
|
4338
4684
|
key?: any;
|
|
4339
4685
|
}): any;
|
|
4340
4686
|
|
|
4341
|
-
declare const _default$
|
|
4687
|
+
declare const _default$r: (args_0: {
|
|
4342
4688
|
child?: Widget;
|
|
4343
4689
|
constraints: Constraints;
|
|
4344
4690
|
key?: any;
|
|
@@ -4371,7 +4717,7 @@ declare function UnconstrainedBox({ alignment, clipped, child, textDirection, co
|
|
|
4371
4717
|
key?: any;
|
|
4372
4718
|
}): any;
|
|
4373
4719
|
|
|
4374
|
-
declare const _default$
|
|
4720
|
+
declare const _default$q: (args_0: {
|
|
4375
4721
|
minWidth?: number;
|
|
4376
4722
|
maxWidth?: number;
|
|
4377
4723
|
minHeight?: number;
|
|
@@ -4381,7 +4727,7 @@ declare const _default$p: (args_0: {
|
|
|
4381
4727
|
key?: any;
|
|
4382
4728
|
}) => any;
|
|
4383
4729
|
|
|
4384
|
-
declare const _default$
|
|
4730
|
+
declare const _default$p: (args_0: {
|
|
4385
4731
|
child?: Widget;
|
|
4386
4732
|
maxWidth?: number;
|
|
4387
4733
|
maxHeight?: number;
|
|
@@ -4393,7 +4739,7 @@ declare function Spacer({ flex, key }?: {
|
|
|
4393
4739
|
key?: any;
|
|
4394
4740
|
}): any;
|
|
4395
4741
|
|
|
4396
|
-
declare const _default$
|
|
4742
|
+
declare const _default$o: (args_0: {
|
|
4397
4743
|
child?: Widget;
|
|
4398
4744
|
alignment?: Alignment;
|
|
4399
4745
|
widthFactor?: number;
|
|
@@ -4412,17 +4758,17 @@ declare function Flex({ children, mainAxisAlignment, crossAxisAlignment, directi
|
|
|
4412
4758
|
key?: any;
|
|
4413
4759
|
}): any;
|
|
4414
4760
|
|
|
4415
|
-
declare const _default$
|
|
4761
|
+
declare const _default$n: (args_0?: {
|
|
4416
4762
|
child?: Widget;
|
|
4417
4763
|
key?: any;
|
|
4418
4764
|
}) => any;
|
|
4419
4765
|
|
|
4420
|
-
declare const _default$
|
|
4766
|
+
declare const _default$m: (args_0?: {
|
|
4421
4767
|
child?: Widget;
|
|
4422
4768
|
key?: any;
|
|
4423
4769
|
}) => any;
|
|
4424
4770
|
|
|
4425
|
-
declare const _default$
|
|
4771
|
+
declare const _default$l: (args_0: {
|
|
4426
4772
|
child?: Widget;
|
|
4427
4773
|
translation: {
|
|
4428
4774
|
x: number;
|
|
@@ -4431,13 +4777,13 @@ declare const _default$k: (args_0: {
|
|
|
4431
4777
|
key?: any;
|
|
4432
4778
|
}) => any;
|
|
4433
4779
|
|
|
4434
|
-
declare const _default$
|
|
4780
|
+
declare const _default$k: (args_0: {
|
|
4435
4781
|
child?: Widget;
|
|
4436
4782
|
opacity: number;
|
|
4437
4783
|
key?: any;
|
|
4438
4784
|
}) => any;
|
|
4439
4785
|
|
|
4440
|
-
declare const _default$
|
|
4786
|
+
declare const _default$j: (args_0: {
|
|
4441
4787
|
child?: Widget;
|
|
4442
4788
|
aspectRatio: number;
|
|
4443
4789
|
key?: string;
|
|
@@ -4452,7 +4798,7 @@ declare function IndexedStack({ clipped, children, alignment, sizing, index, key
|
|
|
4452
4798
|
key?: any;
|
|
4453
4799
|
}): any;
|
|
4454
4800
|
|
|
4455
|
-
declare const _default$
|
|
4801
|
+
declare const _default$i: (args_0: {
|
|
4456
4802
|
color: string;
|
|
4457
4803
|
child?: Widget;
|
|
4458
4804
|
key?: any;
|
|
@@ -4466,7 +4812,7 @@ declare function ClipOval({ child, borderRadius, clipped, clipper, key, }: {
|
|
|
4466
4812
|
key?: any;
|
|
4467
4813
|
}): any;
|
|
4468
4814
|
|
|
4469
|
-
declare const _default$
|
|
4815
|
+
declare const _default$h: (args_0: {
|
|
4470
4816
|
decoration: BoxDecoration;
|
|
4471
4817
|
child?: Widget;
|
|
4472
4818
|
key?: any;
|
|
@@ -4484,7 +4830,7 @@ type RichTextProps = {
|
|
|
4484
4830
|
textPainter?: TextPainter;
|
|
4485
4831
|
};
|
|
4486
4832
|
|
|
4487
|
-
declare const _default$
|
|
4833
|
+
declare const _default$g: (args_0: RichTextProps & {
|
|
4488
4834
|
key?: any;
|
|
4489
4835
|
}) => any;
|
|
4490
4836
|
|
|
@@ -4532,14 +4878,14 @@ declare class RenderCustomPaint<T extends Record<string, SVGElement> = Record<st
|
|
|
4532
4878
|
protected createCanvasPainter(): CanvasPainter;
|
|
4533
4879
|
}
|
|
4534
4880
|
|
|
4535
|
-
declare const _default$
|
|
4881
|
+
declare const _default$f: (args_0: {
|
|
4536
4882
|
child?: Widget;
|
|
4537
4883
|
size?: Size;
|
|
4538
4884
|
painter: Painter<Record<string, SVGElement>, any>;
|
|
4539
4885
|
key?: any;
|
|
4540
4886
|
}) => any;
|
|
4541
4887
|
|
|
4542
|
-
declare const _default$
|
|
4888
|
+
declare const _default$e: (args_0: {
|
|
4543
4889
|
child?: Widget;
|
|
4544
4890
|
onClick?: (e: MouseEvent) => void;
|
|
4545
4891
|
onMouseUp?: (e: MouseEvent) => void;
|
|
@@ -4569,7 +4915,7 @@ declare const _default$d: (args_0: {
|
|
|
4569
4915
|
}>;
|
|
4570
4916
|
}) => any;
|
|
4571
4917
|
|
|
4572
|
-
declare const _default$
|
|
4918
|
+
declare const _default$d: (args_0: {
|
|
4573
4919
|
key?: any;
|
|
4574
4920
|
child?: Widget;
|
|
4575
4921
|
curve?: Curve;
|
|
@@ -4579,7 +4925,7 @@ declare const _default$c: (args_0: {
|
|
|
4579
4925
|
alignment: Alignment;
|
|
4580
4926
|
}) => any;
|
|
4581
4927
|
|
|
4582
|
-
declare const _default$
|
|
4928
|
+
declare const _default$c: (args_0: {
|
|
4583
4929
|
key?: any;
|
|
4584
4930
|
child?: Widget;
|
|
4585
4931
|
curve?: Curve;
|
|
@@ -4587,7 +4933,7 @@ declare const _default$b: (args_0: {
|
|
|
4587
4933
|
opacity: number;
|
|
4588
4934
|
}) => any;
|
|
4589
4935
|
|
|
4590
|
-
declare const _default$
|
|
4936
|
+
declare const _default$b: (args_0: {
|
|
4591
4937
|
key?: any;
|
|
4592
4938
|
child?: Widget;
|
|
4593
4939
|
curve?: Curve;
|
|
@@ -4595,7 +4941,7 @@ declare const _default$a: (args_0: {
|
|
|
4595
4941
|
padding?: EdgeInsetsGeometry;
|
|
4596
4942
|
}) => any;
|
|
4597
4943
|
|
|
4598
|
-
declare const _default$
|
|
4944
|
+
declare const _default$a: (args_0: {
|
|
4599
4945
|
key?: any;
|
|
4600
4946
|
child?: Widget;
|
|
4601
4947
|
curve?: Curve;
|
|
@@ -4604,7 +4950,7 @@ declare const _default$9: (args_0: {
|
|
|
4604
4950
|
alignment?: Alignment;
|
|
4605
4951
|
}) => any;
|
|
4606
4952
|
|
|
4607
|
-
declare const _default$
|
|
4953
|
+
declare const _default$9: (args_0: {
|
|
4608
4954
|
key?: any;
|
|
4609
4955
|
child?: Widget;
|
|
4610
4956
|
curve?: Curve;
|
|
@@ -4614,7 +4960,7 @@ declare const _default$8: (args_0: {
|
|
|
4614
4960
|
alignment?: Alignment;
|
|
4615
4961
|
}) => any;
|
|
4616
4962
|
|
|
4617
|
-
declare const _default$
|
|
4963
|
+
declare const _default$8: (args_0: {
|
|
4618
4964
|
key?: any;
|
|
4619
4965
|
child?: Widget;
|
|
4620
4966
|
curve?: Curve;
|
|
@@ -4627,7 +4973,7 @@ declare const _default$7: (args_0: {
|
|
|
4627
4973
|
bottom?: number;
|
|
4628
4974
|
}) => any;
|
|
4629
4975
|
|
|
4630
|
-
declare const _default$
|
|
4976
|
+
declare const _default$7: (args_0: {
|
|
4631
4977
|
key?: any;
|
|
4632
4978
|
child?: Widget;
|
|
4633
4979
|
curve?: Curve;
|
|
@@ -4636,7 +4982,7 @@ declare const _default$6: (args_0: {
|
|
|
4636
4982
|
turns: number;
|
|
4637
4983
|
}) => any;
|
|
4638
4984
|
|
|
4639
|
-
declare const _default$
|
|
4985
|
+
declare const _default$6: (args_0: {
|
|
4640
4986
|
key?: any;
|
|
4641
4987
|
child?: Widget;
|
|
4642
4988
|
curve?: Curve;
|
|
@@ -4645,7 +4991,7 @@ declare const _default$5: (args_0: {
|
|
|
4645
4991
|
offset: Offset$1;
|
|
4646
4992
|
}) => any;
|
|
4647
4993
|
|
|
4648
|
-
declare const _default$
|
|
4994
|
+
declare const _default$5: (args_0: {
|
|
4649
4995
|
key?: any;
|
|
4650
4996
|
child?: Widget;
|
|
4651
4997
|
curve?: Curve;
|
|
@@ -4663,7 +5009,7 @@ declare const _default$4: (args_0: {
|
|
|
4663
5009
|
transformAlignment?: Alignment;
|
|
4664
5010
|
}) => any;
|
|
4665
5011
|
|
|
4666
|
-
declare const _default$
|
|
5012
|
+
declare const _default$4: (args_0: {
|
|
4667
5013
|
onDragUpdate?: (event: {
|
|
4668
5014
|
delta: Offset$1;
|
|
4669
5015
|
}) => void;
|
|
@@ -4673,14 +5019,14 @@ declare const _default$3: (args_0: {
|
|
|
4673
5019
|
}) => any;
|
|
4674
5020
|
|
|
4675
5021
|
type TooltipPosition = "topLeft" | "topRight" | "topCenter" | "bottomCenter" | "bottomLeft" | "bottomRight" | "center" | "centerLeft" | "centerRight";
|
|
4676
|
-
declare const _default$
|
|
5022
|
+
declare const _default$3: (args_0: {
|
|
4677
5023
|
key?: any;
|
|
4678
5024
|
child: Widget;
|
|
4679
5025
|
tooltip: Widget;
|
|
4680
5026
|
position?: TooltipPosition;
|
|
4681
5027
|
}) => any;
|
|
4682
5028
|
|
|
4683
|
-
declare const _default$
|
|
5029
|
+
declare const _default$2: (args_0: {
|
|
4684
5030
|
key?: any;
|
|
4685
5031
|
child?: Widget;
|
|
4686
5032
|
zIndex: number;
|
|
@@ -4702,7 +5048,16 @@ type TextFieldProps = {
|
|
|
4702
5048
|
height?: number;
|
|
4703
5049
|
focusedBorder?: Border;
|
|
4704
5050
|
};
|
|
4705
|
-
declare const _default: (text: string, args_1?: TextFieldProps) => any;
|
|
5051
|
+
declare const _default$1: (text: string, args_1?: TextFieldProps) => any;
|
|
5052
|
+
|
|
5053
|
+
declare const _default: (args_0: {
|
|
5054
|
+
key?: any;
|
|
5055
|
+
src: string;
|
|
5056
|
+
width?: number;
|
|
5057
|
+
height?: number;
|
|
5058
|
+
objectFit?: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
5059
|
+
objectPosition?: "left" | "top" | "right" | "bottom" | "center" | "top left" | "top right" | "bottom left" | "bottom right";
|
|
5060
|
+
}) => any;
|
|
4706
5061
|
|
|
4707
5062
|
declare class Utils {
|
|
4708
5063
|
static sumReducer: (acc: number, value: number) => number;
|
|
@@ -4715,4 +5070,4 @@ declare class Utils {
|
|
|
4715
5070
|
static lerp<T extends Calculable | number>(a: T, b: T, t: number): T;
|
|
4716
5071
|
}
|
|
4717
5072
|
|
|
4718
|
-
export { _default$
|
|
5073
|
+
export { _default$u as Align, Alignment, _default$d as AnimatedAlign, AnimatedBaseWidgetState, _default$5 as AnimatedContainer, _default$9 as AnimatedFractionallySizedBox, _default$c as AnimatedOpacity, _default$b as AnimatedPadding, _default$8 as AnimatedPositioned, _default$7 as AnimatedRotation, _default$a as AnimatedScale, _default$6 as AnimatedSlide, Animation, AnimationController, AppRunner, _default$j as AspectRatio, Axis, Border, BorderRadius, BorderRadiusGeometry, BorderSide, BorderStyle$1 as BorderStyle, type BoxBorder, BoxDecoration, BoxShadow, BuildContext, BuildOwner, Builder, Calculable, CalculableTween, CanvasPainter, CanvasPaintingContext, Center, ChangeNotifier, _default$w as ChangeNotifierProvider, ClipOval$1 as ClipOval, _default$s as ClipPath, ClipOval as ClipRRect, ClipRect, Color, _default$i as ColoredBox, colors as Colors, Column, ComponentElement, StatelessWidget as ComponentWidget, _default$r as ConstrainedBox, Constraints, ConstraintsTransformBox, _default$v as Container, CrossAxisAlignment, Curve, CurvedAnimation, _default$x as Curves, _default$f as CustomPaint, Data, _default$h as DecoratedBox, type Decoration, _default$4 as Draggable, EdgeInsets, Element, Expanded, Flex, _default$t as Flexible, _default$l as FractionalTranslation, _default$o as FractionallySizedBox, Gap, _default$e as GestureDetector, GlobalKey, Grid, _default as Image, ImplicitlyAnimatedWidget, ImplicitlyAnimatedWidgetState, IndexedStack, _default$n as IntrinsicHeight, _default$m as IntrinsicWidth, _default$p as LimitedBox, Listenable, MainAxisAlignment, MainAxisSize, Matrix3, Matrix4, MultiChildRenderObject, MultiChildRenderObjectWidget, type Nullable, ObjectFit, ObjectPosition, Offset$1 as Offset, _default$k as Opacity, _default$q as OverflowBox, Padding, BaseCustomPaint as Painter, Paragraph, Path, Positioned, ProviderFn as Provider, RRect, Radius$1 as Radius, ReactiveChangeNotifier, Rect, RenderAligningShiftedBox, RenderBox, RenderFrameDispatcher, RenderObject, RenderObjectElement, RenderObjectToWidgetAdapter, RenderObjectWidget, RenderPipeline, RenderPipelineProvider, RenderView, _default$g as RichText, Row, Scheduler, SingleChildRenderObject, SingleChildRenderObjectWidget, Size, SizedBox, Spacer, Stack, StackFit, State, StatefulElement, StatefulWidget, StatelessElement, StatelessWidget, type SvgPaintContext, SvgPainter, Text, TextAlign, TextBaseline, TextDirection, _default$1 as TextField, TextOverflow, TextPainter, TextSpan, TextStyle, TextWidthBasis, ToolTipPosition, _default$3 as Tooltip, Transform, Tween, UnconstrainedBox, Utils, Vector2, Vector3, Vector4, VerticalDirection, type VoidCallback, Widget, _default$2 as ZIndex };
|