@7365admin1/layer-common 3.0.1 → 3.0.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @iservice365/layer-common
2
2
 
3
+ ## 3.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 7fbfe35: Update Layer Common Version
8
+ - 16114ea: Update Layer Common Version
9
+
3
10
  ## 3.0.1
4
11
 
5
12
  ### Patch Changes
@@ -162,7 +162,6 @@ const emit = defineEmits(["saved", "close"]);
162
162
 
163
163
  const props = defineProps({
164
164
  action: { type: String, default: "checkIn" }, // "checkIn" or "checkOut"
165
- serviceType: { type: String, default: "" },
166
165
  });
167
166
 
168
167
  const formRef = ref<any>(null);
@@ -0,0 +1,18 @@
1
+ <template>
2
+ <div
3
+ class="d-flex flex-column align-center justify-center text-center text-blue-grey-lighten-1"
4
+ :style="{ minHeight: compact ? '72px' : '140px', gap: '8px' }"
5
+ >
6
+ <v-icon icon="mdi-database-search-outline" size="28" />
7
+ <span class="text-caption font-weight-bold">No data to display</span>
8
+ </div>
9
+ </template>
10
+
11
+ <script setup lang="ts">
12
+ defineProps({
13
+ compact: {
14
+ type: Boolean,
15
+ default: false,
16
+ },
17
+ });
18
+ </script>