@fox-dls/carousels 1.0.8 → 1.1.3
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/.ultra.cache.json +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/lib/card/styles/index.d.ts +1 -0
- package/dist/lib/free/styles/index.d.ts +1 -0
- package/dist/lib/pagination/styles/index.d.ts +1 -0
- package/dist/lib/pills/styles/index.d.ts +1 -0
- package/dist/lib/styles/index.d.ts +1 -0
- package/package.json +14 -11
- package/src/index.ts +8 -6
package/.ultra.cache.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"files":{"dist":"
|
|
1
|
+
{"files":{"dist":"1638920116755.6956","node_modules":"1638911966002.3093",".babelrc":"f03d0ca709d39fade7fd0a5ff24f9384b515b5b6",".eslintrc.json":"6a0edde9387ee5887d1e599f7a99f09362754acd","CHANGELOG.md":"938ca134a8f27f19d16eafbc8064d38ea166b934","README.md":"87a167329bff7478ccaa650e3d382475d8115cb1","package.json":"8512485560e1085b1d0365303d0dfa2ffc86681a.1638920062004.3477","src/index.ts":"1666f11be8aaf18be8a632f73ad0e73d407aae26.1638920053704.4468","src/lib/card/index.tsx":"52c971cf55cfeb66bdb2f5be883f9a3a2fb62a37","src/lib/card/styles/index.tsx":"0e2c3284b69f0e5c3eabfcbaac81864ff10e5969","src/lib/free/index.tsx":"31d5d59052261c935edb986a1817ee7f273bbbd4","src/lib/free/styles/index.tsx":"5265cb7c9d6bf16b5b09c82bbac9d6aa8d32d798","src/lib/pagination/index.tsx":"561112dbc7d2eeb6e18037ca090a81a6dbe7ac07","src/lib/pagination/styles/index.tsx":"457b030d259318e0431b4d585406078e7ee4faab","src/lib/pills/index.tsx":"c472c9de1791a116bd7e5c1dbe650c3256f6128a","src/lib/pills/styles/index.tsx":"5b249d5b210dd9e81edff8a3412d4b7b9e2ad9a2","src/lib/styles/index.tsx":"276419cd5a78d7b7e027c6f2dc459ea3e81bb85d","tsconfig.build.json":"269572b997c81ac83266026b6b5a2c8699709823.1638868730151.85","tsconfig.json":"af31a7a31827eeec44ed853b8c3000c67f639047.del"},"deps":{"@fox-dls/layout":1638911545138.9343}}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
1
|
+
export { PillsCarousel } from './lib/pills/index';
|
|
2
|
+
export { CardCarousel } from './lib/card/index';
|
|
3
|
+
export { FreeCarousel } from './lib/free/index';
|
|
4
|
+
export { PaginationCarousel } from './lib/pagination/index';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
export declare const CarouselContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
3
|
export declare const CarouselSwiper: import("styled-components").StyledComponent<import("react").FunctionComponent<import("swiper/react").SwiperProps>, any, {}, never>;
|
|
3
4
|
export declare const CarouselPill: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("@mui/core/ButtonUnstyled").ButtonUnstyledOwnProps & Pick<any, string | number | symbol> & {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
export declare const CarouselContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
3
|
export declare const CarouselSwiper: import("styled-components").StyledComponent<import("react").FunctionComponent<import("swiper/react").SwiperProps>, any, {}, never>;
|
|
3
4
|
export declare const CarouselPillContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
export declare const CarouselContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
3
|
export declare const CarouselNavbar: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
4
|
export declare const NavbarTitleContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fox-dls/carousels",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/core.esm.js",
|
|
@@ -13,23 +13,23 @@
|
|
|
13
13
|
"prepublish": "npm run build"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@fox-dls/layout": "1.0.0",
|
|
17
|
-
"@material-ui/styled-engine": "npm:@material-ui/styled-engine-sc@next",
|
|
18
|
-
"@mui/core": "^5.0.0-alpha.54",
|
|
19
|
-
"@mui/lab": "^5.0.0-alpha.58",
|
|
20
|
-
"@mui/material": "^5.2.2",
|
|
21
|
-
"@types/uuid": "^8.3.3",
|
|
22
|
-
"swiper": "^7.3.1",
|
|
23
|
-
"tslib": "^2.0.0",
|
|
24
16
|
"@babel/core": "^7.16.0",
|
|
25
17
|
"@babel/runtime": "^7.16.3",
|
|
18
|
+
"@fox-dls/layout": "1.0.9",
|
|
19
|
+
"@material-ui/styled-engine": "npm:@material-ui/styled-engine-sc@next",
|
|
20
|
+
"@mui/core": "^5.0.0-alpha.54",
|
|
21
|
+
"@mui/lab": "^5.0.0-alpha.59",
|
|
22
|
+
"@mui/material": "^5.2.3",
|
|
26
23
|
"@types/eslint": "8.2.1",
|
|
27
24
|
"@types/react": "17.0.37",
|
|
28
25
|
"@types/react-dom": "17.0.11",
|
|
29
26
|
"@types/react-is": "17.0.3",
|
|
30
|
-
"@types/styled-components": "^5.1.
|
|
27
|
+
"@types/styled-components": "^5.1.17",
|
|
28
|
+
"@types/uuid": "^8.3.3",
|
|
31
29
|
"babel-plugin-styled-components": "^2.0.2",
|
|
32
|
-
"styled-components": "^5.3.3"
|
|
30
|
+
"styled-components": "^5.3.3",
|
|
31
|
+
"swiper": "^7.3.1",
|
|
32
|
+
"tslib": "^2.3.1"
|
|
33
33
|
},
|
|
34
34
|
"resolutions": {
|
|
35
35
|
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest"
|
|
@@ -37,5 +37,8 @@
|
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": "^17.0.2",
|
|
39
39
|
"styled-components": "^5.3.3"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/styled-components": "^5.1.17"
|
|
40
43
|
}
|
|
41
44
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
import type {} from 'styled-components/cssprop';
|
|
1
|
+
/// <reference types="styled-components/cssprop" />
|
|
3
2
|
|
|
4
|
-
export
|
|
5
|
-
|
|
6
|
-
export
|
|
7
|
-
|
|
3
|
+
export { PillsCarousel } from './lib/pills/index';
|
|
4
|
+
|
|
5
|
+
export { CardCarousel } from './lib/card/index';
|
|
6
|
+
|
|
7
|
+
export { FreeCarousel } from './lib/free/index';
|
|
8
|
+
|
|
9
|
+
export { PaginationCarousel } from './lib/pagination/index';
|