@wlloyalty/wll-react-sdk 1.0.65 → 1.0.67
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/index.d.ts +10 -9
- package/dist/native.js +3635 -20940
- package/dist/native.js.map +1 -1
- package/dist/types/components/atoms/Icon/index.d.ts +2 -2
- package/dist/types/components/hoc/withTileFetching.d.ts +1 -1
- package/dist/types/components/molecules/Grid/index.d.ts +1 -2
- package/dist/types/components/organisms/BadgeTile/index.d.ts +1 -2
- package/dist/types/components/organisms/BannerTile/index.d.ts +1 -2
- package/dist/types/components/organisms/ContentTile/index.d.ts +1 -2
- package/dist/types/components/organisms/PointsTile/index.d.ts +1 -2
- package/dist/types/components/organisms/RewardCategoryTile/index.d.ts +1 -2
- package/dist/types/components/organisms/RewardTile/index.d.ts +1 -2
- package/dist/types/context/ResponsiveContext.d.ts +2 -2
- package/dist/web.js +2227 -699
- package/dist/web.js.map +1 -1
- package/package.json +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as LucideReactIcons from 'lucide-react';
|
|
2
2
|
import * as react_native from 'react-native';
|
|
3
3
|
import { ViewProps, ImageSourcePropType, StyleProp, ViewStyle, TextProps as TextProps$1, TextStyle, ImageProps } from 'react-native';
|
|
4
4
|
import * as React$1 from 'react';
|
|
5
5
|
import React__default from 'react';
|
|
6
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
7
|
|
|
7
8
|
declare const sizes: {
|
|
8
9
|
readonly borderRadiusSm: 15;
|
|
@@ -303,7 +304,7 @@ type ButtonProps = {
|
|
|
303
304
|
};
|
|
304
305
|
declare const Button: ({ title, onPress, variant, disabled, accessibilityLabel, accessibilityHint, testID, }: ButtonProps) => JSX.Element;
|
|
305
306
|
|
|
306
|
-
type IconName = keyof typeof
|
|
307
|
+
type IconName = keyof typeof LucideReactIcons;
|
|
307
308
|
type IconProps = {
|
|
308
309
|
name: IconName;
|
|
309
310
|
color?: string;
|
|
@@ -531,7 +532,7 @@ declare const Carousel: ({ section }: CarouselProps) => JSX.Element | null;
|
|
|
531
532
|
type GridProps = {
|
|
532
533
|
section: TSection;
|
|
533
534
|
};
|
|
534
|
-
declare const Grid: ({ section }: GridProps) =>
|
|
535
|
+
declare const Grid: ({ section }: GridProps) => react_jsx_runtime.JSX.Element | null;
|
|
535
536
|
|
|
536
537
|
type ProgressIndicatorProps = {
|
|
537
538
|
currentPoints: number;
|
|
@@ -556,17 +557,17 @@ type WithTileFetchingProps = {
|
|
|
556
557
|
type BadgeTileProps = {
|
|
557
558
|
tile: Tile;
|
|
558
559
|
};
|
|
559
|
-
declare const _default$5: (props: Omit<BadgeTileProps, "tile"> & WithTileFetchingProps) =>
|
|
560
|
+
declare const _default$5: (props: Omit<BadgeTileProps, "tile"> & WithTileFetchingProps) => react_jsx_runtime.JSX.Element;
|
|
560
561
|
|
|
561
562
|
type BannerTileProps = {
|
|
562
563
|
tile: Tile;
|
|
563
564
|
};
|
|
564
|
-
declare const _default$4: (props: Omit<BannerTileProps, "tile"> & WithTileFetchingProps) =>
|
|
565
|
+
declare const _default$4: (props: Omit<BannerTileProps, "tile"> & WithTileFetchingProps) => react_jsx_runtime.JSX.Element;
|
|
565
566
|
|
|
566
567
|
type ContentTileProps = {
|
|
567
568
|
tile: Tile;
|
|
568
569
|
};
|
|
569
|
-
declare const _default$3: (props: Omit<ContentTileProps, "tile"> & WithTileFetchingProps) =>
|
|
570
|
+
declare const _default$3: (props: Omit<ContentTileProps, "tile"> & WithTileFetchingProps) => react_jsx_runtime.JSX.Element;
|
|
570
571
|
|
|
571
572
|
type TGroup = {
|
|
572
573
|
name: string;
|
|
@@ -597,17 +598,17 @@ declare const Group: ({ id }: GroupProps) => JSX.Element | null;
|
|
|
597
598
|
type PointsTileProps = {
|
|
598
599
|
tile: Tile;
|
|
599
600
|
};
|
|
600
|
-
declare const _default$2: (props: Omit<PointsTileProps, "tile"> & WithTileFetchingProps) =>
|
|
601
|
+
declare const _default$2: (props: Omit<PointsTileProps, "tile"> & WithTileFetchingProps) => react_jsx_runtime.JSX.Element;
|
|
601
602
|
|
|
602
603
|
type RewardCategoryTileProps = {
|
|
603
604
|
tile: Tile;
|
|
604
605
|
};
|
|
605
|
-
declare const _default$1: (props: Omit<RewardCategoryTileProps, "tile"> & WithTileFetchingProps) =>
|
|
606
|
+
declare const _default$1: (props: Omit<RewardCategoryTileProps, "tile"> & WithTileFetchingProps) => react_jsx_runtime.JSX.Element;
|
|
606
607
|
|
|
607
608
|
type RewardTileProps = {
|
|
608
609
|
tile: Tile;
|
|
609
610
|
};
|
|
610
|
-
declare const _default: (props: Omit<RewardTileProps, "tile"> & WithTileFetchingProps) =>
|
|
611
|
+
declare const _default: (props: Omit<RewardTileProps, "tile"> & WithTileFetchingProps) => react_jsx_runtime.JSX.Element;
|
|
611
612
|
|
|
612
613
|
type SectionProps = {
|
|
613
614
|
section?: TSection;
|