@meatech/payblend_app_ui_component 1.1.32 → 1.1.34
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/components/SnapImageCarousel/SnapImageCarousel.tsx +5 -5
- package/components/SnapImageCarousel/types.ts +3 -3
- package/components/Switch/type.ts +1 -0
- package/dist/components/SkeletonLoader/SkeletonLoader.js +1 -1
- package/dist/components/SnapImageCarousel/SnapImageCarousel.d.ts +1 -3
- package/dist/components/SnapImageCarousel/SnapImageCarousel.d.ts.map +1 -1
- package/dist/components/SnapImageCarousel/SnapImageCarousel.js +5 -5
- package/dist/components/SnapImageCarousel/SnapImageCarousel.js.map +1 -1
- package/dist/components/SnapImageCarousel/types.d.ts +2 -10
- package/dist/components/SnapImageCarousel/types.d.ts.map +1 -1
- package/dist/components/Switch/type.d.ts +1 -0
- package/dist/components/Switch/type.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { StyleSheet, View } from "react-native";
|
|
2
|
+
import { StyleSheet, View, forwardRef } from "react-native";
|
|
3
3
|
import Carousel, { CarouselProps } from "react-native-snap-carousel";
|
|
4
4
|
import { useSharedValue } from "react-native-reanimated";
|
|
5
5
|
import { PaginationItem } from "./PaginationItem";
|
|
@@ -8,15 +8,14 @@ import { THUMBNAIL_HEIGHT } from "./consts";
|
|
|
8
8
|
import { deviceWidth, metrics } from "@ui/themes";
|
|
9
9
|
import { SnapImageCarouselProps, TSnapImageCarouselItem } from "./types";
|
|
10
10
|
|
|
11
|
-
export const SnapImageCarousel = <T
|
|
11
|
+
export const SnapImageCarousel = forwardRef<TSnapImageCarouselItem, SnapImageCarouselProps<T>>(({
|
|
12
12
|
cardList,
|
|
13
13
|
hidePagination,
|
|
14
14
|
isLoading,
|
|
15
15
|
onCreate,
|
|
16
16
|
...props
|
|
17
|
-
}
|
|
17
|
+
}, ref) => {
|
|
18
18
|
const animation = useSharedValue<number>(0);
|
|
19
|
-
|
|
20
19
|
const handleSnapToItem: CarouselProps<string>["onScroll"] = (event) => {
|
|
21
20
|
const index = Math.round(
|
|
22
21
|
event.nativeEvent.contentOffset.x / (deviceWidth() * 0.55)
|
|
@@ -66,6 +65,7 @@ export const SnapImageCarousel = <T extends unknown>({
|
|
|
66
65
|
<>
|
|
67
66
|
<View style={styles.carousel}>
|
|
68
67
|
<Carousel<TSnapImageCarouselItem<T>>
|
|
68
|
+
ref={ref}
|
|
69
69
|
data={cardList}
|
|
70
70
|
renderItem={renderItem}
|
|
71
71
|
sliderWidth={deviceWidth()}
|
|
@@ -85,7 +85,7 @@ export const SnapImageCarousel = <T extends unknown>({
|
|
|
85
85
|
)}
|
|
86
86
|
</>
|
|
87
87
|
);
|
|
88
|
-
};
|
|
88
|
+
});
|
|
89
89
|
|
|
90
90
|
const styles = StyleSheet.create({
|
|
91
91
|
carousel: {
|
|
@@ -4,12 +4,12 @@ import { CarouselProps } from 'react-native-snap-carousel';
|
|
|
4
4
|
import { ECardThumbnailType } from './consts';
|
|
5
5
|
import { StyleProp, ViewStyle } from 'react-native';
|
|
6
6
|
|
|
7
|
-
export type TSnapImageCarouselItem<T> = Pick<
|
|
7
|
+
export type TSnapImageCarouselItem<T = unknown> = Pick<
|
|
8
8
|
CardStatusThumbnailProps<T>,
|
|
9
9
|
'photo' | 'type' | 'balance' | 'unit' | 'onCreate'
|
|
10
10
|
>;
|
|
11
11
|
|
|
12
|
-
export interface SnapImageCarouselProps<T>
|
|
12
|
+
export interface SnapImageCarouselProps<T = unknown>
|
|
13
13
|
extends Pick<
|
|
14
14
|
CarouselProps<string>,
|
|
15
15
|
| 'onSnapToItem'
|
|
@@ -29,7 +29,7 @@ export interface PaginationItemProps {
|
|
|
29
29
|
animation: SharedValue<number>;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
export interface CardStatusThumbnailProps<T> {
|
|
32
|
+
export interface CardStatusThumbnailProps<T = unknown> {
|
|
33
33
|
style?: StyleProp<ViewStyle>;
|
|
34
34
|
type?: ECardThumbnailType;
|
|
35
35
|
photo: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { useEffect } from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { View, StyleSheet } from 'react-native';
|
|
4
4
|
import Animated, { useSharedValue, withRepeat, withTiming, useAnimatedStyle } from 'react-native-reanimated';
|
|
5
5
|
import LinearGradient from 'react-native-linear-gradient';
|
|
6
6
|
import '../../themes/base/styles.js';
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
declare const SnapImageCarousel: <T extends unknown>({ cardList, hidePagination, isLoading, onCreate, ...props }: SnapImageCarouselProps<T>) => any;
|
|
1
|
+
declare const SnapImageCarousel: any;
|
|
4
2
|
|
|
5
3
|
export { SnapImageCarousel };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SnapImageCarousel.d.ts","sourceRoot":"","sources":["../../../components/SnapImageCarousel/SnapImageCarousel.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SnapImageCarousel.d.ts","sourceRoot":"","sources":["../../../components/SnapImageCarousel/SnapImageCarousel.tsx"],"names":[],"mappings":"AAUA,eAAO,MAAM,iBAAiB,KA6E5B,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { forwardRef, View, StyleSheet } from 'react-native';
|
|
3
3
|
import Carousel from 'react-native-snap-carousel';
|
|
4
4
|
import { useSharedValue } from 'react-native-reanimated';
|
|
5
5
|
import { PaginationItem } from './PaginationItem.js';
|
|
@@ -7,10 +7,10 @@ import { CardStatusThumbnail } from './CardStatusThumbnail.js';
|
|
|
7
7
|
import { THUMBNAIL_HEIGHT } from './consts.js';
|
|
8
8
|
import '../../themes/base/styles.js';
|
|
9
9
|
import '../../themes/images.js';
|
|
10
|
-
import {
|
|
10
|
+
import { deviceWidth, metrics } from '../../themes/metrics.js';
|
|
11
11
|
import '../../themes/stats.js';
|
|
12
12
|
|
|
13
|
-
const SnapImageCarousel = ({ cardList, hidePagination, isLoading, onCreate, ...props }) => {
|
|
13
|
+
const SnapImageCarousel = forwardRef(({ cardList, hidePagination, isLoading, onCreate, ...props }, ref) => {
|
|
14
14
|
const animation = useSharedValue(0);
|
|
15
15
|
const handleSnapToItem = (event) => {
|
|
16
16
|
const index = Math.round(event.nativeEvent.contentOffset.x / (deviceWidth() * 0.55));
|
|
@@ -32,9 +32,9 @@ const SnapImageCarousel = ({ cardList, hidePagination, isLoading, onCreate, ...p
|
|
|
32
32
|
// }
|
|
33
33
|
return (React__default.createElement(React__default.Fragment, null,
|
|
34
34
|
React__default.createElement(View, { style: styles.carousel },
|
|
35
|
-
React__default.createElement(Carousel, { data: cardList, renderItem: renderItem, sliderWidth: deviceWidth(), sliderHeight: THUMBNAIL_HEIGHT, itemWidth: deviceWidth() * 0.55, itemHeight: THUMBNAIL_HEIGHT, inactiveSlideScale: 1, inactiveSlideOpacity: 1, onScroll: handleSnapToItem, ...props })),
|
|
35
|
+
React__default.createElement(Carousel, { ref: ref, data: cardList, renderItem: renderItem, sliderWidth: deviceWidth(), sliderHeight: THUMBNAIL_HEIGHT, itemWidth: deviceWidth() * 0.55, itemHeight: THUMBNAIL_HEIGHT, inactiveSlideScale: 1, inactiveSlideOpacity: 1, onScroll: handleSnapToItem, ...props })),
|
|
36
36
|
!hidePagination && cardList.length > 0 && (React__default.createElement(View, { style: styles.pagination }, cardList.map(renderPaginationItem)))));
|
|
37
|
-
};
|
|
37
|
+
});
|
|
38
38
|
const styles = StyleSheet.create({
|
|
39
39
|
carousel: {
|
|
40
40
|
height: THUMBNAIL_HEIGHT,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SnapImageCarousel.js","sources":["../../../../components/SnapImageCarousel/SnapImageCarousel.tsx"],"sourcesContent":["import React from \"react\";\nimport { StyleSheet, View } from \"react-native\";\nimport Carousel, { CarouselProps } from \"react-native-snap-carousel\";\nimport { useSharedValue } from \"react-native-reanimated\";\nimport { PaginationItem } from \"./PaginationItem\";\nimport { CardStatusThumbnail } from \"./CardStatusThumbnail\";\nimport { THUMBNAIL_HEIGHT } from \"./consts\";\nimport { deviceWidth, metrics } from \"@ui/themes\";\nimport { SnapImageCarouselProps, TSnapImageCarouselItem } from \"./types\";\n\nexport const SnapImageCarousel = <T
|
|
1
|
+
{"version":3,"file":"SnapImageCarousel.js","sources":["../../../../components/SnapImageCarousel/SnapImageCarousel.tsx"],"sourcesContent":["import React from \"react\";\nimport { StyleSheet, View, forwardRef } from \"react-native\";\nimport Carousel, { CarouselProps } from \"react-native-snap-carousel\";\nimport { useSharedValue } from \"react-native-reanimated\";\nimport { PaginationItem } from \"./PaginationItem\";\nimport { CardStatusThumbnail } from \"./CardStatusThumbnail\";\nimport { THUMBNAIL_HEIGHT } from \"./consts\";\nimport { deviceWidth, metrics } from \"@ui/themes\";\nimport { SnapImageCarouselProps, TSnapImageCarouselItem } from \"./types\";\n\nexport const SnapImageCarousel = forwardRef<TSnapImageCarouselItem, SnapImageCarouselProps<T>>(({\n cardList,\n hidePagination,\n isLoading,\n onCreate,\n ...props\n}, ref) => {\n const animation = useSharedValue<number>(0);\n const handleSnapToItem: CarouselProps<string>[\"onScroll\"] = (event) => {\n const index = Math.round(\n event.nativeEvent.contentOffset.x / (deviceWidth() * 0.55)\n );\n if (index >= 0) {\n animation.value = index;\n }\n };\n\n const renderItem = ({\n item,\n index,\n }: {\n item: TSnapImageCarouselItem<T>;\n index: number;\n }) => (\n <CardStatusThumbnail\n key={index.toString()}\n animation={animation}\n index={index}\n onCreate={onCreate}\n isLoading={isLoading}\n {...item}\n />\n );\n\n const renderPaginationItem = (_: unknown, index: number) => (\n <PaginationItem\n key={index.toString()}\n animation={animation}\n index={index}\n />\n );\n\n // if (cardList?.length === 0) {\n // return (\n // <CardStatusThumbnail<T>\n // style={styles.carousel}\n // type={ECardThumbnailType.NOT_ISSUED}\n // photo={thumbnailDefault}\n // onCreate={onCreate}\n // />\n // );\n // }\n\n return (\n <>\n <View style={styles.carousel}>\n <Carousel<TSnapImageCarouselItem<T>>\n ref={ref}\n data={cardList}\n renderItem={renderItem}\n sliderWidth={deviceWidth()}\n sliderHeight={THUMBNAIL_HEIGHT}\n itemWidth={deviceWidth() * 0.55}\n itemHeight={THUMBNAIL_HEIGHT}\n inactiveSlideScale={1}\n inactiveSlideOpacity={1}\n onScroll={handleSnapToItem}\n {...props}\n />\n </View>\n {!hidePagination && cardList.length > 0 && (\n <View style={styles.pagination}>\n {cardList.map(renderPaginationItem)}\n </View>\n )}\n </>\n );\n});\n\nconst styles = StyleSheet.create({\n carousel: {\n height: THUMBNAIL_HEIGHT,\n marginTop: metrics.height.spacingBase,\n },\n pagination: {\n flexDirection: \"row\",\n justifyContent: \"center\",\n gap: metrics.width.spacingExtraSmall,\n paddingVertical: metrics.height.spacingTiny,\n marginTop: metrics.height.spacingSlightlySmall,\n },\n});\n"],"names":["React"],"mappings":";;;;;;;;;;;;MAUa,iBAAiB,GAAG,UAAU,CAAoD,CAAC,EAC9F,QAAQ,EACR,cAAc,EACd,SAAS,EACT,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,GAAG,KAAI;AACR,IAAA,MAAM,SAAS,GAAG,cAAc,CAAS,CAAC,CAAC;AAC3C,IAAA,MAAM,gBAAgB,GAAsC,CAAC,KAAK,KAAI;QACpE,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CACtB,KAAK,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,IAAI,WAAW,EAAE,GAAG,IAAI,CAAC,CAC3D;AACD,QAAA,IAAI,KAAK,IAAI,CAAC,EAAE;AACd,YAAA,SAAS,CAAC,KAAK,GAAG,KAAK;;AAE3B,KAAC;AAED,IAAA,MAAM,UAAU,GAAG,CAAC,EAClB,IAAI,EACJ,KAAK,GAIN,MACCA,cAAC,CAAA,aAAA,CAAA,mBAAmB,IAClB,GAAG,EAAE,KAAK,CAAC,QAAQ,EAAE,EACrB,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,QAAQ,EAClB,SAAS,EAAE,SAAS,KAChB,IAAI,EAAA,CACR,CACH;AAED,IAAA,MAAM,oBAAoB,GAAG,CAAC,CAAU,EAAE,KAAa,MACrDA,cAAC,CAAA,aAAA,CAAA,cAAc,EACb,EAAA,GAAG,EAAE,KAAK,CAAC,QAAQ,EAAE,EACrB,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,KAAK,EAAA,CACZ,CACH;;;;;;;;;;;AAaD,IAAA,QACEA,cAAA,CAAA,aAAA,CAAAA,cAAA,CAAA,QAAA,EAAA,IAAA;AACE,QAAAA,cAAA,CAAA,aAAA,CAAC,IAAI,EAAC,EAAA,KAAK,EAAE,MAAM,CAAC,QAAQ,EAAA;YAC1BA,cAAC,CAAA,aAAA,CAAA,QAAQ,IACP,GAAG,EAAE,GAAG,EACR,IAAI,EAAE,QAAQ,EACd,UAAU,EAAE,UAAU,EACtB,WAAW,EAAE,WAAW,EAAE,EAC1B,YAAY,EAAE,gBAAgB,EAC9B,SAAS,EAAE,WAAW,EAAE,GAAG,IAAI,EAC/B,UAAU,EAAE,gBAAgB,EAC5B,kBAAkB,EAAE,CAAC,EACrB,oBAAoB,EAAE,CAAC,EACvB,QAAQ,EAAE,gBAAgB,EAAA,GACtB,KAAK,EAAA,CACT,CACG;AACN,QAAA,CAAC,cAAc,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,KACrCA,cAAA,CAAA,aAAA,CAAC,IAAI,EAAA,EAAC,KAAK,EAAE,MAAM,CAAC,UAAU,EAAA,EAC3B,QAAQ,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAC9B,CACR,CACA;AAEP,CAAC;AAED,MAAM,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;AAC/B,IAAA,QAAQ,EAAE;AACR,QAAA,MAAM,EAAE,gBAAgB;AACxB,QAAA,SAAS,EAAE,OAAO,CAAC,MAAM,CAAC,WAAW;AACtC,KAAA;AACD,IAAA,UAAU,EAAE;AACV,QAAA,aAAa,EAAE,KAAK;AACpB,QAAA,cAAc,EAAE,QAAQ;AACxB,QAAA,GAAG,EAAE,OAAO,CAAC,KAAK,CAAC,iBAAiB;AACpC,QAAA,eAAe,EAAE,OAAO,CAAC,MAAM,CAAC,WAAW;AAC3C,QAAA,SAAS,EAAE,OAAO,CAAC,MAAM,CAAC,oBAAoB;AAC/C,KAAA;AACF,CAAA,CAAC;;;;"}
|
|
@@ -1,17 +1,9 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
2
|
import { SharedValue } from 'react-native-reanimated';
|
|
3
|
-
import { CarouselProps } from 'react-native-snap-carousel';
|
|
4
3
|
import { ECardThumbnailType } from './consts.js';
|
|
5
4
|
import { StyleProp, ViewStyle } from 'react-native';
|
|
6
5
|
|
|
7
|
-
|
|
8
|
-
interface SnapImageCarouselProps<T> extends Pick<CarouselProps<string>, 'onSnapToItem' | 'firstItem' | 'initialNumToRender' | 'loop' | 'loopClonesPerSide'> {
|
|
9
|
-
cardList: Array<TSnapImageCarouselItem<T>>;
|
|
10
|
-
hidePagination?: boolean;
|
|
11
|
-
isLoading?: boolean;
|
|
12
|
-
onCreate?: (item: T) => void;
|
|
13
|
-
}
|
|
14
|
-
interface CardStatusThumbnailProps<T> {
|
|
6
|
+
interface CardStatusThumbnailProps<T = unknown> {
|
|
15
7
|
style?: StyleProp<ViewStyle>;
|
|
16
8
|
type?: ECardThumbnailType;
|
|
17
9
|
photo: string;
|
|
@@ -27,4 +19,4 @@ interface CardStatusThumbnailProps<T> {
|
|
|
27
19
|
isLoading?: boolean;
|
|
28
20
|
}
|
|
29
21
|
|
|
30
|
-
export type { CardStatusThumbnailProps
|
|
22
|
+
export type { CardStatusThumbnailProps };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../components/SnapImageCarousel/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClC,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEpD,MAAM,MAAM,sBAAsB,CAAC,CAAC,IAAI,IAAI,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../components/SnapImageCarousel/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClC,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEpD,MAAM,MAAM,sBAAsB,CAAC,CAAC,GAAG,OAAO,IAAI,IAAI,CACpD,wBAAwB,CAAC,CAAC,CAAC,EAC3B,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,CACnD,CAAC;AAEF,MAAM,WAAW,sBAAsB,CAAC,CAAC,GAAG,OAAO,CACjD,SAAQ,IAAI,CACV,aAAa,CAAC,MAAM,CAAC,EACnB,cAAc,GACd,WAAW,GACX,oBAAoB,GACpB,MAAM,GACN,mBAAmB,CACtB;IACD,QAAQ,EAAE,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC;IAC3C,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,IAAI,CAAC;CAC9B;AAED,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;CAChC;AAED,MAAM,WAAW,wBAAwB,CAAC,CAAC,GAAG,OAAO;IACnD,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,IAAI,CAAC,EAAE,kBAAkB,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAChC,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,IAAI,CAAC;IAC7B,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,QAAQ,CAAC,EAAE,CAAC,CAAC;IACb,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../components/Switch/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../components/Switch/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC"}
|