md-components-mdigial-azamat 0.0.7 → 0.0.9
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/SwiperList/SwiperList.js +3227 -0
- package/dist/SwiperList/components/Bullet/Bullet.js +44 -0
- package/dist/SwiperList/components/Bullet/index.js +4 -0
- package/dist/SwiperList/components/Slide/Slide.js +28 -0
- package/dist/SwiperList/components/Slide/index.js +4 -0
- package/dist/SwiperList/index.js +4 -0
- package/dist/SwiperList/types.js +1 -0
- package/dist/assets/Slide.css +1 -0
- package/dist/assets/SwiperList.css +1 -0
- package/dist/assets/index.css +1 -1
- package/dist/main.d.ts +39 -0
- package/package.json +5 -7
package/dist/main.d.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
export { Banner } from './Banner';
|
|
3
|
+
export { BannerAndText } from './BannerAndText';
|
|
4
|
+
export { Stepper } from './Stepper';
|
|
5
|
+
export { Segments } from './Segments';
|
|
6
|
+
export { VideoFull } from './Video';
|
|
7
|
+
export { ContentCardList } from './ContentCardList';
|
|
8
|
+
export { CardIconList } from './CardIconList';
|
|
9
|
+
export { MultiCards } from './MultiCards';
|
|
10
|
+
export { Partners } from './Partners';
|
|
11
|
+
export { CardImageList } from './CardImageList';
|
|
12
|
+
export { MainBanner } from './MainBanner';
|
|
13
|
+
export { Faq } from './Faq';
|
|
14
|
+
export { HtmlContent } from './HtmlContent';
|
|
15
|
+
export { InstructionList } from './InstructionList';
|
|
16
|
+
export { HeroPossibilityBanner } from './HeroPossibilityBanner';
|
|
17
|
+
export { PartnersColors } from './PartnersColors';
|
|
18
|
+
export { PreviewList } from './PreviewList';
|
|
19
|
+
export { CardImage } from './Cards/CardImage';
|
|
20
|
+
export { ContentCard } from './Cards/ContentCard';
|
|
21
|
+
export { WarningCard } from './Cards/WarningCard';
|
|
22
|
+
export { ColoredCard } from './Cards/ColoredCard';
|
|
23
|
+
export { FeaturesCard } from './Cards/FeaturesCard';
|
|
24
|
+
export { DownloadFileBanner } from './DownloadFile/components/DownloadFileBanner';
|
|
25
|
+
export { DownloadFileFull } from './DownloadFile/components/DownloadFileFull';
|
|
26
|
+
export { DownloadFileHalf } from './DownloadFile/components/DownloadFileHalf';
|
|
27
|
+
export { DownloadFileMini } from './DownloadFile/components/DownloadFileMini';
|
|
28
|
+
export { Collapse } from './Faq/components/Collapse';
|
|
29
|
+
export { FeedbackForm } from './Faq/components/FeedbackForm';
|
|
30
|
+
export { PlusMinusIcon } from './Faq/components/PlusMinusIcon';
|
|
31
|
+
export { InstructionCard } from './InstructionList/components/InstructionCard';
|
|
32
|
+
export { InstructionModal } from './InstructionList/components/InstructionModal';
|
|
33
|
+
export { PartnerCard } from './PartnersColors/components/PartnerCard';
|
|
34
|
+
export { PartnerTab } from './PartnersColors/components/PartnerTab';
|
|
35
|
+
export { PreviewCard } from './PreviewList/components/PreviewCard';
|
|
36
|
+
export { VideoPlayer } from './Video/components/VideoPlayer';
|
|
37
|
+
export { VideoList } from './Video/VideoList';
|
|
38
|
+
export { VideoListMini } from './Video/VideoListMini';
|
|
39
|
+
export { ConfigProvider } from './ConfigProvider';
|
package/package.json
CHANGED
|
@@ -2,17 +2,14 @@
|
|
|
2
2
|
"name": "md-components-mdigial-azamat",
|
|
3
3
|
"author": "Azamat Raimbekov",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.9",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"main": "dist/
|
|
8
|
-
"types": "dist/
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"style": "dist/styles.css",
|
|
9
10
|
"files": [
|
|
10
11
|
"dist"
|
|
11
12
|
],
|
|
12
|
-
"style": "dist/assets/index.css",
|
|
13
|
-
"sideEffects": [
|
|
14
|
-
"**/*.css"
|
|
15
|
-
],
|
|
16
13
|
"repository": {
|
|
17
14
|
"type": "git",
|
|
18
15
|
"url": "https://github.com/receter/my-component-library"
|
|
@@ -62,6 +59,7 @@
|
|
|
62
59
|
"clsx": "^2.1.1",
|
|
63
60
|
"react-hook-form": "^7.58.1",
|
|
64
61
|
"react-youtube": "^10.1.0",
|
|
62
|
+
"swiper": "^11.2.10",
|
|
65
63
|
"tailwind-merge": "^3.3.0"
|
|
66
64
|
}
|
|
67
65
|
}
|