@bagelink/vue 0.0.511 → 0.0.518
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/Btn.vue.d.ts +2 -0
- package/dist/components/Btn.vue.d.ts.map +1 -1
- package/dist/components/Carousel.vue.d.ts +27 -4
- package/dist/components/Carousel.vue.d.ts.map +1 -1
- package/dist/components/MapEmbed.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/CheckInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts +8 -0
- package/dist/components/form/inputs/DateInput.vue.d.ts.map +1 -1
- package/dist/components/layout/TabsNav.vue.d.ts +3 -1
- package/dist/components/layout/TabsNav.vue.d.ts.map +1 -1
- package/dist/index.cjs +141 -128
- package/dist/index.mjs +141 -128
- package/dist/style.css +188 -184
- package/package.json +1 -1
- package/src/components/Btn.vue +8 -1
- package/src/components/Carousel.vue +134 -117
- package/src/components/ListItem.vue +2 -2
- package/src/components/MapEmbed.vue +6 -4
- package/src/components/Modal.vue +1 -2
- package/src/components/TableSchema.vue +1 -1
- package/src/components/form/inputs/CheckInput.vue +46 -70
- package/src/components/form/inputs/DateInput.vue +9 -0
- package/src/components/layout/TabsNav.vue +2 -2
- package/src/styles/bagel.css +1 -1
- package/src/styles/layout.css +14 -0
- package/src/styles/mobilLayout.css +14 -0
- package/src/styles/scrollbar.css +2 -4
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import { Icon } from '@bagelink/vue'
|
|
2
|
+
import { Icon, type MaterialIcons } from '@bagelink/vue'
|
|
3
3
|
import { nextTick, onBeforeUnmount, onMounted, ref, watch } from 'vue'
|
|
4
4
|
import { useTabs } from './tabsManager'
|
|
5
5
|
|
|
6
6
|
interface TabType {
|
|
7
7
|
id?: string
|
|
8
8
|
label?: string
|
|
9
|
-
icon?:
|
|
9
|
+
icon?: MaterialIcons
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
const props = defineProps<{
|
package/src/styles/bagel.css
CHANGED
package/src/styles/layout.css
CHANGED
|
@@ -127,6 +127,20 @@
|
|
|
127
127
|
inset-inline-end: 0px;
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
+
.position-bottom-center {
|
|
131
|
+
position: absolute;
|
|
132
|
+
bottom: 0px;
|
|
133
|
+
inset-inline-start: 0px;
|
|
134
|
+
inset-inline-end: 0px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.position-center {
|
|
138
|
+
position: absolute;
|
|
139
|
+
top: 0px;
|
|
140
|
+
inset-inline-start: 0px;
|
|
141
|
+
inset-inline-end: 0px;
|
|
142
|
+
}
|
|
143
|
+
|
|
130
144
|
.positioned-full,
|
|
131
145
|
.p-all {
|
|
132
146
|
top: 0;
|
|
@@ -146,6 +146,20 @@
|
|
|
146
146
|
inset-inline-end: 0px;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
+
.m_position-bottom-center {
|
|
150
|
+
position: absolute;
|
|
151
|
+
bottom: 0px;
|
|
152
|
+
inset-inline-start: 0px;
|
|
153
|
+
inset-inline-end: 0px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.m_position-center {
|
|
157
|
+
position: absolute;
|
|
158
|
+
top: 0px;
|
|
159
|
+
inset-inline-start: 0px;
|
|
160
|
+
inset-inline-end: 0px;
|
|
161
|
+
}
|
|
162
|
+
|
|
149
163
|
.m_positioned-full {
|
|
150
164
|
top: 0;
|
|
151
165
|
bottom: 0;
|
package/src/styles/scrollbar.css
CHANGED
|
@@ -3,13 +3,11 @@
|
|
|
3
3
|
height: 0.5rem;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
::-webkit-scrollbar-track {
|
|
7
|
-
/* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
|
|
8
|
-
}
|
|
6
|
+
::-webkit-scrollbar-track {}
|
|
9
7
|
|
|
10
8
|
::-webkit-scrollbar-thumb {
|
|
11
9
|
background-color: var(--bgl-gray);
|
|
12
|
-
border-radius:
|
|
10
|
+
border-radius: 12px;
|
|
13
11
|
}
|
|
14
12
|
|
|
15
13
|
::-webkit-scrollbar-corner {
|