@fox-dls/carousels 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,6 @@
2
2
  export declare const CarouselContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
3
3
  export declare const CarouselSwiper: import("styled-components").StyledComponent<import("react").FunctionComponent<import("swiper/react").SwiperProps>, any, {}, never>;
4
4
  export declare const CarouselPill: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("@mui/core/ButtonUnstyled").ButtonUnstyledOwnProps & Omit<any, keyof import("@mui/core/ButtonUnstyled").ButtonUnstyledOwnProps> & {
5
- component?: import("react").ElementType<any>;
5
+ component?: import("react").ElementType<any> | undefined;
6
6
  }, string | number | symbol> & import("react").RefAttributes<any>>, any, {}, never>;
7
7
  export declare const CarouselPillSvg: import("styled-components").StyledComponent<"svg", any, {}, never>;
@@ -3,5 +3,5 @@ export declare const CarouselContainer: import("styled-components").StyledCompon
3
3
  export declare const CarouselSwiper: import("styled-components").StyledComponent<import("react").FunctionComponent<import("swiper/react").SwiperProps>, any, {}, never>;
4
4
  export declare const CarouselPillContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
5
5
  export declare const CarouselPill: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("@mui/core/ButtonUnstyled").ButtonUnstyledOwnProps & Omit<any, keyof import("@mui/core/ButtonUnstyled").ButtonUnstyledOwnProps> & {
6
- component?: import("react").ElementType<any>;
6
+ component?: import("react").ElementType<any> | undefined;
7
7
  }, string | number | symbol> & import("react").RefAttributes<any>>, any, any, never>;
@@ -9,7 +9,7 @@ export declare const NavbarControlsSpace: import("styled-components").StyledComp
9
9
  export declare const ArrowsContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
10
10
  export declare const ArrowsFlex: import("styled-components").StyledComponent<"div", any, {}, never>;
11
11
  export declare const ArrowsButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("@mui/core/ButtonUnstyled").ButtonUnstyledOwnProps & Omit<any, keyof import("@mui/core/ButtonUnstyled").ButtonUnstyledOwnProps> & {
12
- component?: import("react").ElementType<any>;
12
+ component?: import("react").ElementType<any> | undefined;
13
13
  }, string | number | symbol> & import("react").RefAttributes<any>>, any, any, never>;
14
14
  export declare const ArrowsDivider: import("styled-components").StyledComponent<"span", any, {}, never>;
15
15
  export declare const ArrowsIconClip: import("styled-components").StyledComponent<"span", any, {}, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fox-dls/carousels",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -5,6 +5,7 @@
5
5
  "target": "esnext",
6
6
  "module": "esnext",
7
7
  "jsx": "react-jsx",
8
+ "typeRoots": ["styled.d.ts", "types"],
8
9
  "jsxFactory": "",
9
10
  "jsxFragmentFactory": ""
10
11
  }
package/tsconfig.json CHANGED
@@ -2,10 +2,15 @@
2
2
  "compilerOptions": {
3
3
  "baseUrl": "./src",
4
4
  "target": "esnext",
5
- "lib": ["dom", "dom.iterable", "esnext"],
5
+ "lib": ["dom", "dom.iterable", "esnext", "es2017"],
6
6
  "module": "esnext",
7
7
  "jsx": "react-jsx",
8
- "jsxImportSource": "@emotion/react",
8
+ "typeRoots": ["../../styled.d.ts", "types"],
9
+ "sourceMap": true,
10
+ "declaration": false,
11
+ "emitDecoratorMetadata": true,
12
+ "experimentalDecorators": true,
13
+
9
14
  "noEmit": false,
10
15
  "composite": false,
11
16
  "incremental": true,