@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/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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.314",
4
+ "version": "0.0.316",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -28,3 +28,4 @@ export { default as Carousel } from './Carousel.vue';
28
28
  export * from './form';
29
29
  export * from './dashboard';
30
30
  export * from './whatsapp';
31
+ export * from './layout';
@@ -0,0 +1,2 @@
1
+ export { default as Layout } from './Layout.vue';
2
+ export { default as SidebarMenu } from './SidebarMenu.vue';
@@ -1,6 +0,0 @@
1
- <template>
2
- <div/>
3
- </template>
4
-
5
- <style scoped>
6
- </style>