@wishbone-media/spark 0.8.0 → 0.8.6
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/README.md +0 -11
- package/dist/index.js +2 -2
- package/package.json +5 -1
- package/src/components/SparkModalContainer.vue +2 -2
package/README.md
CHANGED
|
@@ -17,14 +17,3 @@ alias spark.public='pnpm remove @wishbone-media/spark && pnpm i @wishbone-media/
|
|
|
17
17
|
# spark.rebuild
|
|
18
18
|
rm -rf node_modules && pnpm i && pnpm build
|
|
19
19
|
```
|
|
20
|
-
|
|
21
|
-
## Release new build
|
|
22
|
-
|
|
23
|
-
```
|
|
24
|
-
# First commit and push
|
|
25
|
-
|
|
26
|
-
# Then relelease:
|
|
27
|
-
pn release:patch
|
|
28
|
-
pn release:minor
|
|
29
|
-
pn release:major
|
|
30
|
-
```
|
package/dist/index.js
CHANGED
|
@@ -506,7 +506,7 @@ const R = new kt(), Ct = { class: "fixed inset-0 z-10 w-screen overflow-y-auto"
|
|
|
506
506
|
}, {
|
|
507
507
|
default: _(() => [
|
|
508
508
|
m(d(Z), {
|
|
509
|
-
class: "relative z-
|
|
509
|
+
class: "relative z-200",
|
|
510
510
|
onClose: d(R).hide
|
|
511
511
|
}, {
|
|
512
512
|
default: _(() => [
|
|
@@ -536,7 +536,7 @@ const R = new kt(), Ct = { class: "fixed inset-0 z-10 w-screen overflow-y-auto"
|
|
|
536
536
|
"leave-to": "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
537
537
|
}, {
|
|
538
538
|
default: _(() => [
|
|
539
|
-
m(d(K), { class: "relative transform overflow-hidden rounded-lg bg-white text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-
|
|
539
|
+
m(d(K), { class: "relative transform overflow-hidden rounded-lg bg-white text-left shadow-xl transition-all sm:my-8 sm:w-full sm:min-w-lg sm:max-w-max" }, {
|
|
540
540
|
default: _(() => [
|
|
541
541
|
(l(), B(E(d(R).state.content), j(d(R).state.props, P(d(R).state.eventHandlers)), null, 16))
|
|
542
542
|
]),
|
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wishbone-media/spark",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/wishbone-media/spark.git"
|
|
10
|
+
},
|
|
7
11
|
"files": [
|
|
8
12
|
"dist",
|
|
9
13
|
"src",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<TransitionRoot as="template" :show="sparkModalService.state.isVisible">
|
|
3
|
-
<Dialog class="relative z-
|
|
3
|
+
<Dialog class="relative z-200" @close="sparkModalService.hide">
|
|
4
4
|
<TransitionChild
|
|
5
5
|
as="template"
|
|
6
6
|
enter="ease-out duration-300"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
leave-from="opacity-100 translate-y-0 sm:scale-100"
|
|
25
25
|
leave-to="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
26
26
|
>
|
|
27
|
-
<DialogPanel class="relative transform overflow-hidden rounded-lg bg-white text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-
|
|
27
|
+
<DialogPanel class="relative transform overflow-hidden rounded-lg bg-white text-left shadow-xl transition-all sm:my-8 sm:w-full sm:min-w-lg sm:max-w-max">
|
|
28
28
|
<!-- Render dynamic component -->
|
|
29
29
|
<component
|
|
30
30
|
:is="sparkModalService.state.content"
|