jobdone-shared-files 0.0.1-beta.64 → 0.0.1-beta.65
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
CHANGED
|
@@ -34,12 +34,11 @@
|
|
|
34
34
|
用法說明 `("isLoading" => 自定義變數)` :
|
|
35
35
|
| 步驟 | 說明 | 範例 |
|
|
36
36
|
|------|-------------------|----------------------------------------------|
|
|
37
|
-
| 1. |
|
|
38
|
-
| 2. |
|
|
39
|
-
| 3. |
|
|
40
|
-
| 4. | loading
|
|
41
|
-
| 5. |
|
|
42
|
-
| 6. | 關閉loading | `isLoading.value = false;` |
|
|
37
|
+
| 1. | 在js或.vue中import | `import Loading from "../../node_modules/jobdone-shared-files/vueLoadingOverlay.vue";` |
|
|
38
|
+
| 2. | 畫面中放上Component | `<Loading :is-active="isLoading"></Loading>` |
|
|
39
|
+
| 3. | loading 初始化 | `const isLoading = ref(false);` |
|
|
40
|
+
| 4. | 開啟loading | `isLoading.value = true;` |
|
|
41
|
+
| 5. | 關閉loading | `isLoading.value = false;` |
|
|
43
42
|
|
|
44
43
|
|
|
45
44
|
|
package/lightboxWithOverview.vue
CHANGED
package/package.json
CHANGED
|
@@ -597,7 +597,7 @@ th, td{
|
|
|
597
597
|
|
|
598
598
|
// modal ------------------------------------------
|
|
599
599
|
.modal{
|
|
600
|
-
backdrop-filter: blur
|
|
600
|
+
backdrop-filter: var(--backdrop-blur);
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
.modal-md{
|
|
@@ -977,6 +977,12 @@ a.navbar-line-item{
|
|
|
977
977
|
|
|
978
978
|
|
|
979
979
|
// sweet alert ------------------------------------------
|
|
980
|
+
.swal2-container{
|
|
981
|
+
.swal2-backdrop-show, .swal2-noanimation{
|
|
982
|
+
backdrop-filter: var(--backdrop-blur);
|
|
983
|
+
}
|
|
984
|
+
}
|
|
985
|
+
|
|
980
986
|
div:where(.swal2-container){
|
|
981
987
|
.swal2-html-container{
|
|
982
988
|
font-size: 1rem !important;
|