@bagelink/vue 1.2.69 → 1.2.73
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/components/Carousel.vue.d.ts +2 -2
- package/dist/components/Slider.vue.d.ts +89 -0
- package/dist/components/Slider.vue.d.ts.map +1 -0
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs +1269 -1269
- package/dist/index.mjs +1270 -1270
- package/dist/style.css +29 -29
- package/package.json +1 -1
- package/src/components/index.ts +1 -1
- /package/src/components/{Carousel2.vue → Slider.vue} +0 -0
package/dist/style.css
CHANGED
|
@@ -726,35 +726,6 @@ to {
|
|
|
726
726
|
padding: 0;
|
|
727
727
|
}
|
|
728
728
|
|
|
729
|
-
.carousel-wrapper[data-v-6de4176c] {
|
|
730
|
-
position: relative;
|
|
731
|
-
width: 100%;
|
|
732
|
-
}
|
|
733
|
-
.carousel-container[data-v-6de4176c] {
|
|
734
|
-
margin: 0 auto;
|
|
735
|
-
overflow: hidden;
|
|
736
|
-
}
|
|
737
|
-
.carousel-dots[data-v-6de4176c] {
|
|
738
|
-
display: flex;
|
|
739
|
-
justify-content: center;
|
|
740
|
-
gap: 8px;
|
|
741
|
-
margin-top: 16px;
|
|
742
|
-
}
|
|
743
|
-
.carousel-dot[data-v-6de4176c] {
|
|
744
|
-
width: 12px;
|
|
745
|
-
height: 12px;
|
|
746
|
-
border-radius: 50px;
|
|
747
|
-
background-color: #ccc;
|
|
748
|
-
border: none;
|
|
749
|
-
padding: 0;
|
|
750
|
-
cursor: pointer;
|
|
751
|
-
transition: all 0.3s ease-in-out;
|
|
752
|
-
}
|
|
753
|
-
.carousel-dot.active[data-v-6de4176c] {
|
|
754
|
-
background-color: #333;
|
|
755
|
-
width: 26px;
|
|
756
|
-
}
|
|
757
|
-
|
|
758
729
|
.BglCarousel[data-v-406c405d] {
|
|
759
730
|
position: relative;
|
|
760
731
|
width: 100%;
|
|
@@ -4427,6 +4398,35 @@ body:has(.bg-dark.is-active) {
|
|
|
4427
4398
|
background: transparent;
|
|
4428
4399
|
}
|
|
4429
4400
|
|
|
4401
|
+
.carousel-wrapper[data-v-bf496bff] {
|
|
4402
|
+
position: relative;
|
|
4403
|
+
width: 100%;
|
|
4404
|
+
}
|
|
4405
|
+
.carousel-container[data-v-bf496bff] {
|
|
4406
|
+
margin: 0 auto;
|
|
4407
|
+
overflow: hidden;
|
|
4408
|
+
}
|
|
4409
|
+
.carousel-dots[data-v-bf496bff] {
|
|
4410
|
+
display: flex;
|
|
4411
|
+
justify-content: center;
|
|
4412
|
+
gap: 8px;
|
|
4413
|
+
margin-top: 16px;
|
|
4414
|
+
}
|
|
4415
|
+
.carousel-dot[data-v-bf496bff] {
|
|
4416
|
+
width: 12px;
|
|
4417
|
+
height: 12px;
|
|
4418
|
+
border-radius: 50px;
|
|
4419
|
+
background-color: #ccc;
|
|
4420
|
+
border: none;
|
|
4421
|
+
padding: 0;
|
|
4422
|
+
cursor: pointer;
|
|
4423
|
+
transition: all 0.3s ease-in-out;
|
|
4424
|
+
}
|
|
4425
|
+
.carousel-dot.active[data-v-bf496bff] {
|
|
4426
|
+
background-color: #333;
|
|
4427
|
+
width: 26px;
|
|
4428
|
+
}
|
|
4429
|
+
|
|
4430
4430
|
.stickyTop[data-v-857ccb8b]{
|
|
4431
4431
|
position: sticky;
|
|
4432
4432
|
top: -0.125rem;
|
package/package.json
CHANGED
package/src/components/index.ts
CHANGED
|
@@ -8,7 +8,6 @@ export { default as BglVideo } from './BglVideo.vue'
|
|
|
8
8
|
export { default as Btn } from './Btn.vue'
|
|
9
9
|
export { default as Calendar } from './calendar/Index.vue'
|
|
10
10
|
export { default as Card } from './Card.vue'
|
|
11
|
-
export { default as Carousel2 } from './Carousel2.vue'
|
|
12
11
|
export { default as Carousel } from './Carousel.vue'
|
|
13
12
|
export * from './dashboard'
|
|
14
13
|
export { default as DataPreview } from './DataPreview.vue'
|
|
@@ -35,6 +34,7 @@ export { default as NavBar } from './NavBar.vue'
|
|
|
35
34
|
export { default as PageTitle } from './PageTitle.vue'
|
|
36
35
|
export { default as Pill } from './Pill.vue'
|
|
37
36
|
export { default as RouterWrapper } from './RouterWrapper.vue'
|
|
37
|
+
export { default as Slider } from './Slider.vue'
|
|
38
38
|
export { default as Spreadsheet } from './Spreadsheet/Index.vue'
|
|
39
39
|
export { default as Title } from './Title.vue'
|
|
40
40
|
export { default as ToolBar } from './ToolBar.vue'
|
|
File without changes
|