@7365admin1/layer-common 3.2.2-staging.132 → 3.2.2-staging.133

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,13 +1,12 @@
1
1
  <template>
2
2
  <v-row no-gutters class="w-100">
3
- <v-card class="w-100">
3
+ <v-card flat class="w-100 screen-card">
4
4
  <v-card-text>
5
5
  <v-btn
6
6
  block
7
- color="primary-button"
8
7
  :height="40"
9
8
  text="Scan QR Code"
10
- class="text-capitalize"
9
+ class="screen-btn-primary"
11
10
  prepend-icon="mdi-qrcode"
12
11
  @click="handleScanQRCode"
13
12
  />
@@ -15,7 +14,7 @@
15
14
  v-model="selectedPass"
16
15
  v-model:search="passInput"
17
16
  :hide-no-data="false"
18
- class="mt-3"
17
+ class="mt-3 filter-field"
19
18
  :items="passItems"
20
19
  :rules="props.passRules"
21
20
  item-title="prefixAndName"
@@ -23,7 +22,6 @@
23
22
  label="Pass"
24
23
  variant="outlined"
25
24
  hide-details
26
- density="compact"
27
25
  persistent-hint
28
26
  small-chips
29
27
  :clearable="props.clearable"
@@ -45,7 +43,7 @@
45
43
  v-model="selectedKeys"
46
44
  v-model:search="keyInput"
47
45
  :hide-no-data="false"
48
- class="mt-3"
46
+ class="mt-3 filter-field"
49
47
  :items="keyItems"
50
48
  :rules="props.passRules"
51
49
  item-title="prefixAndName"
@@ -54,7 +52,6 @@
54
52
  multiple
55
53
  variant="outlined"
56
54
  hide-details
57
- density="compact"
58
55
  persistent-hint
59
56
  small-chips
60
57
  closable-chips
@@ -78,10 +75,10 @@
78
75
  <template v-if="selectedType">
79
76
  <v-number-input
80
77
  v-model="count"
78
+ class="filter-field"
81
79
  variant="outlined"
82
80
  :min="1"
83
81
  :precision="0"
84
- density="compact"
85
82
  :rules="countRules"
86
83
  />
87
84
  </template>
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@7365admin1/layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "3.2.2-staging.132",
5
+ "version": "3.2.2-staging.133",
6
6
  "author": "7365admin1",
7
7
  "main": "./nuxt.config.ts",
8
8
  "//files": "What a consumer extending this layer actually loads. Without this npm ships the whole working tree - the changesets, the CI workflows, the render harness in tools/ and any scratch directory that happened to exist at publish time. Nuxt resolves a layer by directory, so every runtime directory below has to stay listed; adding a new top-level runtime directory means adding it here too.",