@bagelink/vue 0.0.314 → 0.0.316
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/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/layout/Layout.vue.d.ts +48 -0
- package/dist/components/layout/Layout.vue.d.ts.map +1 -0
- package/dist/components/layout/SidebarMenu.vue.d.ts +41 -0
- package/dist/components/layout/SidebarMenu.vue.d.ts.map +1 -0
- package/dist/components/layout/index.d.ts +3 -0
- package/dist/components/layout/index.d.ts.map +1 -0
- package/dist/index.cjs +236 -136
- package/dist/index.mjs +237 -137
- package/dist/style.css +59 -0
- package/package.json +1 -1
- package/src/components/index.ts +1 -0
- package/src/components/layout/index.ts +2 -0
- package/src/components/layout/Column.vue +0 -6
package/dist/style.css
CHANGED
|
@@ -2297,6 +2297,65 @@ img.preview[data-v-1be8d7b1] {
|
|
|
2297
2297
|
}
|
|
2298
2298
|
}
|
|
2299
2299
|
|
|
2300
|
+
.layout {
|
|
2301
|
+
min-height: 100px;
|
|
2302
|
+
display: grid;
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
.v-popper--theme-tooltip .v-popper__inner {
|
|
2306
|
+
background: rgb(255, 255, 255) !important;
|
|
2307
|
+
color: var(--bgl-primary) !important;
|
|
2308
|
+
font-size: 15px;
|
|
2309
|
+
padding: 0.5rem 1rem;
|
|
2310
|
+
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
|
|
2311
|
+
}
|
|
2312
|
+
.wideNav .nav-button .bgl_btn-flex {
|
|
2313
|
+
justify-content: flex-start !important;
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
.nav-button.router-link-active[data-v-5d66b060] {
|
|
2317
|
+
background-color: #40b884 !important;
|
|
2318
|
+
}
|
|
2319
|
+
.bgl_sidebar[data-v-5d66b060] {
|
|
2320
|
+
background-color: var(--bgl-primary);
|
|
2321
|
+
color: var(--bgl-white);
|
|
2322
|
+
overflow: hidden;
|
|
2323
|
+
border-radius: var(--card-border-radius);
|
|
2324
|
+
margin: 0.5rem;
|
|
2325
|
+
width: calc(100% - 1rem);
|
|
2326
|
+
padding: 0.5rem;
|
|
2327
|
+
overflow-y: auto;
|
|
2328
|
+
}
|
|
2329
|
+
.wideNav .toggleNav[data-v-5d66b060] {
|
|
2330
|
+
transform: rotate(180deg);
|
|
2331
|
+
}
|
|
2332
|
+
.wideNav .nav-button[data-v-5d66b060] {
|
|
2333
|
+
padding-inline-start: 1rem !important;
|
|
2334
|
+
width: 100%;
|
|
2335
|
+
}
|
|
2336
|
+
.nav-button.bgl_btn-icon[data-v-5d66b060] {
|
|
2337
|
+
border-radius: var(--btn-border-radius) !important;
|
|
2338
|
+
}
|
|
2339
|
+
.nav-button p[data-v-5d66b060] {
|
|
2340
|
+
transition: var(--nav-tran);
|
|
2341
|
+
animation: fade-5d66b060 2s;
|
|
2342
|
+
animation-duration: 900ms;
|
|
2343
|
+
}
|
|
2344
|
+
@keyframes fade-5d66b060 {
|
|
2345
|
+
0% {
|
|
2346
|
+
opacity: 0;
|
|
2347
|
+
transform: translateX(-20px);
|
|
2348
|
+
}
|
|
2349
|
+
30% {
|
|
2350
|
+
opacity: 0;
|
|
2351
|
+
transform: translateX(-20px);
|
|
2352
|
+
}
|
|
2353
|
+
100% {
|
|
2354
|
+
opacity: 1;
|
|
2355
|
+
transform: translateX(0);
|
|
2356
|
+
}
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2300
2359
|
|
|
2301
2360
|
|
|
2302
2361
|
.grid {
|
package/package.json
CHANGED
package/src/components/index.ts
CHANGED