hplx-react-elements-dev 1.1.2 → 1.1.4
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/esm/carousel/imageCarousel.d.ts +5 -0
- package/dist/esm/index.css +78 -0
- package/dist/esm/index.d.ts +2 -0
- package/dist/esm/index.js +2518 -669
- package/dist/esm/types.d.ts +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { CarouselProps } from "../types";
|
|
3
|
+
import "../carousel/imageCarousel.css";
|
|
4
|
+
declare const ImageCarousel: ({ imageList, isNextPrev, caroselLeftIcon, caroselRightIcon, timeInterval, autoPlay, carouselIndicator }: CarouselProps) => JSX.Element;
|
|
5
|
+
export default ImageCarousel;
|
package/dist/esm/index.css
CHANGED
|
@@ -1540,3 +1540,81 @@
|
|
|
1540
1540
|
color: #849095;
|
|
1541
1541
|
padding: 0.833em;
|
|
1542
1542
|
}
|
|
1543
|
+
|
|
1544
|
+
.slider {
|
|
1545
|
+
position: relative;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
.image {
|
|
1549
|
+
width: 100%;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
.right-arrow {
|
|
1553
|
+
position: absolute;
|
|
1554
|
+
top: 50%;
|
|
1555
|
+
right: 32px;
|
|
1556
|
+
font-size: 2rem;
|
|
1557
|
+
color: #fff;
|
|
1558
|
+
z-index: 10;
|
|
1559
|
+
cursor: pointer;
|
|
1560
|
+
-webkit-user-select: none;
|
|
1561
|
+
user-select: none;
|
|
1562
|
+
background: rgba(0, 0, 0, 0.2);
|
|
1563
|
+
opacity: 0.2;
|
|
1564
|
+
border-radius: 50%;
|
|
1565
|
+
width: 50px;
|
|
1566
|
+
height: 50px;
|
|
1567
|
+
text-align: center;
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
.left-arrow {
|
|
1571
|
+
position: absolute;
|
|
1572
|
+
top: 50%;
|
|
1573
|
+
left: 32px;
|
|
1574
|
+
font-size: 2rem;
|
|
1575
|
+
color: #fff;
|
|
1576
|
+
z-index: 10;
|
|
1577
|
+
cursor: pointer;
|
|
1578
|
+
-webkit-user-select: none;
|
|
1579
|
+
user-select: none;
|
|
1580
|
+
background: rgba(0, 0, 0, 0.2);
|
|
1581
|
+
border-radius: 50%;
|
|
1582
|
+
width: 50px;
|
|
1583
|
+
height: 50px;
|
|
1584
|
+
text-align: center;
|
|
1585
|
+
}
|
|
1586
|
+
.left-arrow:hover,
|
|
1587
|
+
.right-arrow:hover {
|
|
1588
|
+
background: rgba(0, 0, 0, 0.8);
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
.slide {
|
|
1592
|
+
opacity: 0;
|
|
1593
|
+
transition-duration: 2s;
|
|
1594
|
+
transition-timing-function: ease;
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.slide.active {
|
|
1598
|
+
opacity: 1;
|
|
1599
|
+
transition-duration: 1s;
|
|
1600
|
+
transform: scale(1);
|
|
1601
|
+
}
|
|
1602
|
+
.carousel-indicators li {
|
|
1603
|
+
width: 10px;
|
|
1604
|
+
height: 10px;
|
|
1605
|
+
border-radius: 100%;
|
|
1606
|
+
float: left;
|
|
1607
|
+
background: rgba(255, 255, 255, 0.5);
|
|
1608
|
+
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
1609
|
+
margin: 0px 5px;
|
|
1610
|
+
cursor: pointer;
|
|
1611
|
+
}
|
|
1612
|
+
.carousel-indicators li.active {
|
|
1613
|
+
background: #fff;
|
|
1614
|
+
border: 1px solid #fff;
|
|
1615
|
+
}
|
|
1616
|
+
.carousel-indicators {
|
|
1617
|
+
position: absolute;
|
|
1618
|
+
left: 50%;
|
|
1619
|
+
bottom: 5%;
|
|
1620
|
+
}
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -29,3 +29,5 @@ export { default as DoubleInput } from "./doubleInput/DoubleInput";
|
|
|
29
29
|
export { default as InputTag } from "./inputTag/InputTag";
|
|
30
30
|
export { default as InputTagDropdownItem } from "./inputTag/InputTagDropdownItem";
|
|
31
31
|
export { default as CalendarView } from "./calendarView/CalendarView";
|
|
32
|
+
export { default as PopUpModal } from "./popUpModal/PopUpModal";
|
|
33
|
+
export { default as ImageCarousel } from "./carousel/imageCarousel";
|