fluekit 1.5.76 → 1.5.78

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/Button.d.ts CHANGED
@@ -1,9 +1,17 @@
1
1
  import { ButtonStyle } from './ButtonStyle';
2
2
  import { Behavior } from './useGesture';
3
+ import { EdgeInsets } from './EdgeInsets';
4
+ import { BorderRadius } from './BorderRadius';
3
5
  interface Props {
4
6
  disabled?: boolean;
5
7
  behavior?: Behavior;
6
8
  style?: ButtonStyle;
9
+ variant?: "ios" | "raw";
10
+ color?: string;
11
+ disabledColor?: string;
12
+ pressedOpacity?: number;
13
+ padding?: EdgeInsets;
14
+ borderRadius?: BorderRadius;
7
15
  }
8
16
  declare function __VLS_template(): {
9
17
  attrs: Partial<{}>;
@@ -17,12 +25,20 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
25
  declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
18
26
  "long-press": () => any;
19
27
  pressed: () => any;
28
+ "tap-down": (payload: any) => any;
29
+ "tap-up": (payload: any) => any;
30
+ "tap-cancel": (payload: any) => any;
20
31
  }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
21
32
  "onLong-press"?: (() => any) | undefined;
22
33
  onPressed?: (() => any) | undefined;
34
+ "onTap-down"?: ((payload: any) => any) | undefined;
35
+ "onTap-up"?: ((payload: any) => any) | undefined;
36
+ "onTap-cancel"?: ((payload: any) => any) | undefined;
23
37
  }>, {
24
38
  disabled: boolean;
25
39
  behavior: Behavior;
40
+ disabledColor: string;
41
+ pressedOpacity: number;
26
42
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
27
43
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
28
44
  export default _default;
@@ -19,6 +19,7 @@ export interface ButtonStyle {
19
19
  side?: BorderSide;
20
20
  shape?: BorderRadius;
21
21
  alignment?: Alignment;
22
+ opacity?: number;
22
23
  }
23
24
  export declare const ButtonStyle: (style: ButtonStyle) => ButtonStyle;
24
25
  export declare function buttonStyleToStyle(style?: ButtonStyle): CSSProperties;
package/dist/Card.d.ts CHANGED
@@ -8,6 +8,7 @@ interface Props {
8
8
  margin?: EdgeInsets;
9
9
  clipBehavior?: "none" | "hardEdge" | "antiAlias" | string;
10
10
  borderOnForeground?: boolean;
11
+ variant?: "material" | "ios";
11
12
  }
12
13
  declare function __VLS_template(): {
13
14
  attrs: Partial<{}>;
@@ -23,6 +24,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
23
24
  margin: EdgeInsets;
24
25
  clipBehavior: "none" | "hardEdge" | "antiAlias" | string;
25
26
  elevation: number;
27
+ variant: "material" | "ios";
26
28
  shadowColor: string;
27
29
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
28
30
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -1,17 +1,30 @@
1
- interface Props {
2
- value: boolean;
3
- onChanged?: (value: boolean) => void;
1
+ export interface CheckboxProps<T> {
2
+ value?: T;
3
+ onChanged?: (value: T) => void;
4
4
  activeColor?: string;
5
5
  checkColor?: string;
6
+ labelPosition?: "left" | "right";
7
+ hideIcon?: boolean;
6
8
  }
7
- declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
8
- change: (value: boolean) => any;
9
- "update:value": (value: boolean) => any;
10
- }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
11
- onChange?: ((value: boolean) => any) | undefined;
12
- "onUpdate:value"?: ((value: boolean) => any) | undefined;
13
- }>, {
14
- activeColor: string;
15
- checkColor: string;
16
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
9
+ 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<{
10
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
11
+ readonly onChange?: ((value: T) => any) | undefined;
12
+ readonly "onUpdate:value"?: ((value: T) => any) | undefined;
13
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onChange" | "onUpdate:value"> & CheckboxProps<T> & Partial<{}>> & import('vue').PublicProps;
14
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
15
+ attrs: any;
16
+ slots: {
17
+ default?(_: {}): any;
18
+ default?(_: {}): any;
19
+ };
20
+ emit: {
21
+ (e: "update:value", value: T): void;
22
+ (e: "change", value: T): void;
23
+ };
24
+ }>) => import('vue').VNode & {
25
+ __ctx?: Awaited<typeof __VLS_setup>;
26
+ };
17
27
  export default _default;
28
+ type __VLS_PrettifyLocal<T> = {
29
+ [K in keyof T]: T[K];
30
+ } & {};
@@ -0,0 +1,25 @@
1
+ export interface CheckboxGroupProps<T> {
2
+ value?: T[];
3
+ disabled?: boolean;
4
+ }
5
+ 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<{
6
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
7
+ readonly onChange?: ((value: T[]) => any) | undefined;
8
+ readonly "onUpdate:value"?: ((value: T[]) => any) | undefined;
9
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onChange" | "onUpdate:value"> & CheckboxGroupProps<T> & Partial<{}>> & import('vue').PublicProps;
10
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
11
+ attrs: any;
12
+ slots: {
13
+ default?(_: {}): any;
14
+ };
15
+ emit: {
16
+ (e: "update:value", value: T[]): void;
17
+ (e: "change", value: T[]): void;
18
+ };
19
+ }>) => import('vue').VNode & {
20
+ __ctx?: Awaited<typeof __VLS_setup>;
21
+ };
22
+ export default _default;
23
+ type __VLS_PrettifyLocal<T> = {
24
+ [K in keyof T]: T[K];
25
+ } & {};
@@ -0,0 +1,7 @@
1
+ import { Ref, InjectionKey } from 'vue';
2
+ export interface CheckboxGroupContext<T = any> {
3
+ value: Ref<T[]>;
4
+ disabled: Ref<boolean>;
5
+ updateValue: (val: T) => void;
6
+ }
7
+ export declare const CheckboxGroupKey: InjectionKey<CheckboxGroupContext>;
@@ -0,0 +1,11 @@
1
+ interface Props {
2
+ radius?: number;
3
+ color?: string;
4
+ animating?: boolean;
5
+ }
6
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
7
+ color: string;
8
+ radius: number;
9
+ animating: boolean;
10
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
11
+ export default _default;
package/dist/Matrix4.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { CSSProperties } from 'vue';
2
+ import { Alignment } from './Alignment';
2
3
  declare const MATRIX4_SYMBOL: unique symbol;
3
4
  export interface Matrix4 {
4
5
  _storage: Float32Array;
@@ -25,5 +26,5 @@ export declare namespace Matrix4 {
25
26
  var skewX: (alpha: number) => Matrix4;
26
27
  var skewY: (beta: number) => Matrix4;
27
28
  }
28
- export declare function matrix4ToCSSStyle(transform?: Matrix4): CSSProperties;
29
+ export declare function matrix4ToCSSStyle(transform?: Matrix4, alignment?: Alignment): CSSProperties;
29
30
  export {};
package/dist/Radio.d.ts CHANGED
@@ -1,8 +1,11 @@
1
1
  export interface RadioProps<T> {
2
2
  value: T;
3
- groupValue: T;
3
+ groupValue?: T;
4
4
  onChanged?: (value: T) => void;
5
5
  activeColor?: string;
6
+ fillColor?: string;
7
+ labelPosition?: "left" | "right";
8
+ hideIcon?: boolean;
6
9
  }
7
10
  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
11
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
@@ -11,7 +14,10 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
11
14
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onChange" | "onUpdate:groupValue"> & RadioProps<T> & Partial<{}>> & import('vue').PublicProps;
12
15
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
13
16
  attrs: any;
14
- slots: {};
17
+ slots: {
18
+ default?(_: {}): any;
19
+ default?(_: {}): any;
20
+ };
15
21
  emit: {
16
22
  (e: "update:groupValue", value: T): void;
17
23
  (e: "change", value: T): void;
@@ -0,0 +1,26 @@
1
+ export interface RadioGroupProps<T> {
2
+ value?: T;
3
+ activeColor?: string;
4
+ disabled?: boolean;
5
+ }
6
+ 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<{
7
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
8
+ readonly onChange?: ((value: T) => any) | undefined;
9
+ readonly "onUpdate:value"?: ((value: T) => any) | undefined;
10
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onChange" | "onUpdate:value"> & RadioGroupProps<T> & Partial<{}>> & import('vue').PublicProps;
11
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
12
+ attrs: any;
13
+ slots: {
14
+ default?(_: {}): any;
15
+ };
16
+ emit: {
17
+ (e: "update:value", value: T): void;
18
+ (e: "change", value: T): void;
19
+ };
20
+ }>) => import('vue').VNode & {
21
+ __ctx?: Awaited<typeof __VLS_setup>;
22
+ };
23
+ export default _default;
24
+ type __VLS_PrettifyLocal<T> = {
25
+ [K in keyof T]: T[K];
26
+ } & {};
@@ -0,0 +1,43 @@
1
+ import { EdgeInsets } from './EdgeInsets';
2
+ export interface RadioListTileProps<T> {
3
+ value: T;
4
+ groupValue: T;
5
+ onChanged?: (value: T) => void;
6
+ activeColor?: string;
7
+ fillColor?: string;
8
+ title?: string;
9
+ subtitle?: string;
10
+ secondary?: any;
11
+ controlAffinity?: "leading" | "trailing";
12
+ contentPadding?: EdgeInsets;
13
+ tileColor?: string;
14
+ selected?: boolean;
15
+ selectedColor?: string;
16
+ enabled?: boolean;
17
+ dense?: boolean;
18
+ hideIcon?: boolean;
19
+ }
20
+ 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<{
21
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
22
+ readonly onChange?: ((value: T) => any) | undefined;
23
+ readonly "onUpdate:groupValue"?: ((value: T) => any) | undefined;
24
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onChange" | "onUpdate:groupValue"> & RadioListTileProps<T> & Partial<{}>> & import('vue').PublicProps;
25
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
26
+ attrs: any;
27
+ slots: {
28
+ secondary?(_: {}): any;
29
+ secondary?(_: {}): any;
30
+ title?(_: {}): any;
31
+ subtitle?(_: {}): any;
32
+ };
33
+ emit: {
34
+ (e: "update:groupValue", value: T): void;
35
+ (e: "change", value: T): void;
36
+ };
37
+ }>) => import('vue').VNode & {
38
+ __ctx?: Awaited<typeof __VLS_setup>;
39
+ };
40
+ export default _default;
41
+ type __VLS_PrettifyLocal<T> = {
42
+ [K in keyof T]: T[K];
43
+ } & {};
@@ -0,0 +1,8 @@
1
+ import { Ref, InjectionKey } from 'vue';
2
+ export interface RadioGroupContext<T = any> {
3
+ groupValue: Ref<T | undefined>;
4
+ updateValue: (val: T) => void;
5
+ activeColor?: Ref<string | undefined>;
6
+ disabled?: Ref<boolean>;
7
+ }
8
+ export declare const RadioGroupKey: InjectionKey<RadioGroupContext>;
@@ -0,0 +1,30 @@
1
+ export interface RangeValues {
2
+ start: number;
3
+ end: number;
4
+ }
5
+ interface Props {
6
+ value: RangeValues;
7
+ min?: number;
8
+ max?: number;
9
+ activeColor?: string;
10
+ inactiveColor?: string;
11
+ thumbColor?: string;
12
+ variant?: "material" | "ios";
13
+ }
14
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
15
+ change: (value: RangeValues) => any;
16
+ "update:value": (value: RangeValues) => any;
17
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
18
+ onChange?: ((value: RangeValues) => any) | undefined;
19
+ "onUpdate:value"?: ((value: RangeValues) => any) | undefined;
20
+ }>, {
21
+ min: number;
22
+ max: number;
23
+ variant: "material" | "ios";
24
+ activeColor: string;
25
+ inactiveColor: string;
26
+ thumbColor: string;
27
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
28
+ trackRef: HTMLDivElement;
29
+ }, HTMLDivElement>;
30
+ export default _default;
package/dist/Slider.d.ts CHANGED
@@ -2,10 +2,10 @@ interface Props {
2
2
  value: number;
3
3
  min?: number;
4
4
  max?: number;
5
- onChanged?: (value: number) => void;
6
5
  activeColor?: string;
7
6
  inactiveColor?: string;
8
7
  thumbColor?: string;
8
+ variant?: "material" | "ios";
9
9
  }
10
10
  declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
11
11
  change: (value: number) => any;
@@ -16,6 +16,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
16
16
  }>, {
17
17
  min: number;
18
18
  max: number;
19
+ variant: "material" | "ios";
19
20
  activeColor: string;
20
21
  inactiveColor: string;
21
22
  thumbColor: string;
package/dist/Switch.d.ts CHANGED
@@ -5,6 +5,7 @@ interface Props {
5
5
  activeTrackColor?: string;
6
6
  inactiveThumbColor?: string;
7
7
  inactiveTrackColor?: string;
8
+ variant?: "material" | "ios";
8
9
  }
9
10
  declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
10
11
  change: (value: boolean) => any;
@@ -13,6 +14,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
13
14
  onChange?: ((value: boolean) => any) | undefined;
14
15
  "onUpdate:value"?: ((value: boolean) => any) | undefined;
15
16
  }>, {
17
+ variant: "material" | "ios";
16
18
  activeColor: string;
17
19
  activeTrackColor: string;
18
20
  inactiveThumbColor: string;
@@ -0,0 +1 @@
1
+ export {};
package/dist/index.css CHANGED
@@ -1,2 +1,2 @@
1
- .fluekit-button[data-v-04ee9025]{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-04ee9025]: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-f99c0949]{box-sizing:border-box}.ink-well[data-v-a4b9dd0e]{cursor:pointer;display:block;position:relative;overflow:hidden}.ink-well.disabled[data-v-a4b9dd0e]{cursor:default}.ripple[data-v-a4b9dd0e]{pointer-events:none;border-radius:50%;animation:.6s linear ripple-a4b9dd0e;position:absolute;transform:scale(0)}@keyframes ripple-a4b9dd0e{to{opacity:0;transform:scale(4)}}.slider-container[data-v-bccfa37a]{width:100%;position:relative}.bottom-sheet-overlay[data-v-6948b23d]{z-index:9999;background-color:#0000008a;justify-content:center;align-items:flex-end;display:flex;position:fixed;inset:0}.snackbar-overlay[data-v-d8abf3ed]{z-index:9999;pointer-events:none;justify-content:center;display:flex;position:fixed;bottom:0;left:0;right:0}.snackbar-overlay[data-v-d8abf3ed]>*{pointer-events:auto}
1
+ .fluekit-button[data-v-2bc95a68]{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-2bc95a68]: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-daef18e4]{margin-top:16px;font-family:inherit;position:relative}.fluekit-input-container[data-v-daef18e4]{box-sizing:border-box;width:100%}.fluekit-input-element[data-v-daef18e4]{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-daef18e4]{z-index:1}.fluekit-input-footer[data-v-daef18e4]{justify-content:space-between;margin-top:4px;display:flex}.fluekit-input-helper[data-v-daef18e4]{color:#666;font-size:12px}.fluekit-input-helper-spacer[data-v-daef18e4]{flex:1}.fluekit-input-counter[data-v-daef18e4]{color:#666;margin-left:auto;font-size:12px}.fluekit-input-helper.is-error[data-v-daef18e4]{color:#f44336}.flutter-transform[data-v-c4ab6ce1]{box-sizing:border-box}.ink-well[data-v-a4b9dd0e]{cursor:pointer;display:block;position:relative;overflow:hidden}.ink-well.disabled[data-v-a4b9dd0e]{cursor:default}.ripple[data-v-a4b9dd0e]{pointer-events:none;border-radius:50%;animation:.6s linear ripple-a4b9dd0e;position:absolute;transform:scale(0)}@keyframes ripple-a4b9dd0e{to{opacity:0;transform:scale(4)}}.slider-container[data-v-715d86f8],.range-slider-container[data-v-f10382ff]{width:100%;position:relative}.bottom-sheet-overlay[data-v-6948b23d]{z-index:9999;background-color:#0000008a;justify-content:center;align-items:flex-end;display:flex;position:fixed;inset:0}@keyframes cupertino-activity-indicator-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.snackbar-overlay[data-v-d8abf3ed]{z-index:9999;pointer-events:none;justify-content:center;display:flex;position:fixed;bottom:0;left:0;right:0}.snackbar-overlay[data-v-d8abf3ed]>*{pointer-events:auto}
2
2
  /*$vite$:1*/
package/dist/index.d.ts CHANGED
@@ -36,14 +36,19 @@ export { default as ListTile } from './ListTile';
36
36
  export { default as InkWell } from './InkWell';
37
37
  export { default as Switch } from './Switch';
38
38
  export { default as Checkbox } from './Checkbox';
39
+ export { default as CheckboxGroup } from './CheckboxGroup';
39
40
  export { default as Radio } from './Radio';
41
+ export { default as RadioGroup } from './RadioGroup';
42
+ export { default as RadioListTile } from './RadioListTile';
40
43
  export { default as Slider } from './Slider';
44
+ export { default as RangeSlider } from './RangeSlider';
41
45
  export { default as AlertDialog } from './AlertDialog';
42
46
  export { default as BottomSheet } from './BottomSheet';
43
47
  export { default as SegmentedControl } from './SegmentedControl';
44
48
  export { default as Builder } from './Builder';
45
49
  export { default as LayoutBuilder } from './LayoutBuilder';
46
50
  export { default as MediaQuery } from './MediaQuery';
51
+ export { default as CupertinoActivityIndicator } from './CupertinoActivityIndicator';
47
52
  export { SnackBar } from './SnackBar';
48
53
  export * from './Border';
49
54
  export * from './BoxConstraints';