edvoyui-component-library-test-flight 0.0.174 → 0.0.175

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.
@@ -1,5 +1,5 @@
1
1
  export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/modal/EUIModal.vue?vue&type=script&lang.ts";
2
- import "/Volumes/work/repos/edvoy-ui-v2/src/components/modal/EUIModal.vue?vue&type=style&index=0&scoped=37ff37a3&lang.scss";
2
+ import "/Volumes/work/repos/edvoy-ui-v2/src/components/modal/EUIModal.vue?vue&type=style&index=0&scoped=63fa538d&lang.scss";
3
3
  declare const _default: any;
4
4
  export default _default;
5
5
  //# sourceMappingURL=EUIModal.vue.d.ts.map
@@ -1,5 +1,5 @@
1
1
  export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/slideover/EUISlideover.vue?vue&type=script&lang.ts";
2
- import "/Volumes/work/repos/edvoy-ui-v2/src/components/slideover/EUISlideover.vue?vue&type=style&index=0&scoped=4785fc78&lang.scss";
2
+ import "/Volumes/work/repos/edvoy-ui-v2/src/components/slideover/EUISlideover.vue?vue&type=style&index=0&scoped=694773f1&lang.scss";
3
3
  declare const _default: any;
4
4
  export default _default;
5
5
  //# sourceMappingURL=EUISlideover.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EUISlideover.vue.d.ts","sourceRoot":"","sources":["../../src/components/slideover/EUISlideover.vue"],"names":[],"mappings":"AACA,cAAc,mGAAmG,CAAC;AA2GlH,OAAO,4HAA4H,CAAC;;AAEpI,wBAAmH"}
1
+ {"version":3,"file":"EUISlideover.vue.d.ts","sourceRoot":"","sources":["../../src/components/slideover/EUISlideover.vue"],"names":[],"mappings":"AACA,cAAc,mGAAmG,CAAC;AA4GlH,OAAO,4HAA4H,CAAC;;AAEpI,wBAAmH"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "edvoyui-component-library-test-flight",
3
3
  "private": false,
4
- "version": "0.0.174",
4
+ "version": "0.0.175",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist/",
@@ -14,7 +14,7 @@
14
14
  @click.self="closeModal"
15
15
  >
16
16
  <div
17
- class="backdrop fixed inset-0 z-[-1] w-screen h-screen bg-black/35 pointer-events-none overflow-hidden cursor-auto backdrop-blur-md"
17
+ class="backdrop fixed inset-0 z-[-1] w-screen h-screen bg-black/25 pointer-events-none overflow-hidden cursor-auto backdrop-blur-md"
18
18
  ></div>
19
19
  <div
20
20
  :class="[
@@ -10,12 +10,13 @@
10
10
  @click.self="closeSlideover"
11
11
  >
12
12
  <div
13
- class="backdrop fixed inset-0 z-[-1] w-screen h-screen bg-black/35 pointer-events-auto overflow-hidden cursor-auto backdrop-blur-md"
13
+ class="backdrop fixed inset-0 z-[-1] w-screen h-screen bg-black/25 pointer-events-auto overflow-hidden cursor-auto backdrop-blur-md"
14
14
  ></div>
15
15
  <div
16
16
  :class="[
17
- 'relative flex flex-col justify-between w-full overflow-hidden bg-white divide-gray-200 divide-y shadow-lg h-full',
17
+ 'relative flex flex-col justify-between w-full overflow-hidden bg-white divide-gray-200 divide-y shadow-lg h-full slideover-container',
18
18
  slideClass.width,
19
+ slideoverClass,
19
20
  ]"
20
21
  >
21
22
  <template v-if="$slots.header">
@@ -59,7 +60,7 @@
59
60
  </template>
60
61
  <div
61
62
  v-else
62
- class="flex-1 p-4 max-h-[calc(100vh-3rem)] overflow-y-auto"
63
+ class="flex-1 p-4 max-h-[calc(100vh-3rem)] overflow-y-auto slideover-body"
63
64
  >
64
65
  <slot></slot>
65
66
  </div>
@@ -118,6 +119,10 @@ export default defineComponent({
118
119
  type: String as PropType<"xs" | "sm" | "md" | "lg" | "full">,
119
120
  default: "xs",
120
121
  },
122
+ slideoverClass: {
123
+ type: String,
124
+ default: "",
125
+ },
121
126
  },
122
127
  emits: ["update:isVisible", "confirm"],
123
128
  methods: {