@policystudio/policy-studio-ui-vue 1.1.90-access.10 → 1.1.90-access.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.1.90-access.10",
3
+ "version": "1.1.90-access.13",
4
4
  "description": "Policy Studio UI",
5
5
  "author": "Policy Studio Team",
6
6
  "scripts": {
@@ -3,17 +3,17 @@
3
3
  class="psui-el-card-infos"
4
4
  @click="onClick()"
5
5
  >
6
- <h5 class="psui-el-card-infos-title">
6
+ <span class="psui-el-card-infos-title">
7
7
  <span :class="[titleClass, 'psui-mr-1']">{{ title }}</span>
8
8
  <slot name="subtitle">
9
9
  <span :class="subtitleClass">{{ subtitle }}</span>
10
10
  </slot>
11
- </h5>
11
+ </span>
12
12
  <div class="psui-el-card-infos-content">
13
13
  <span class="psui-el-card-infos-icon material-icons-round">{{ icon }}</span>
14
- <h5 :class="totalClass">
14
+ <span :class="totalClass">
15
15
  {{ total }}
16
- </h5>
16
+ </span>
17
17
  </div>
18
18
  </div>
19
19
  </template>
@@ -73,6 +73,14 @@
73
73
  </div>
74
74
  </template>
75
75
 
76
+ <script>
77
+
78
+ export default {
79
+ name: 'PsInput',
80
+ inheritAttrs: false
81
+ }
82
+ </script>
83
+
76
84
  <script setup>
77
85
  import PsRichTooltip from '../tooltip/PsRichTooltip.vue'
78
86
  import { ref, computed, useAttrs, getCurrentInstance } from 'vue'
@@ -169,10 +177,6 @@ const props = defineProps({
169
177
 
170
178
  const emit = defineEmits(['focus', 'blur', 'mouseenter', 'mouseleave', 'input', 'keydown', 'change'])
171
179
 
172
- defineOptions({
173
- inheritAttrs: false
174
- })
175
-
176
180
  const isFocus = ref(false)
177
181
  const attrs = useAttrs()
178
182