@policystudio/policy-studio-ui-vue 1.2.0-access.48 → 1.2.0-access.49
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.
|
@@ -2985,7 +2985,7 @@ video {
|
|
|
2985
2985
|
.psui-el-button.layout-solid.disabled .icon-right-side, .psui-el-button.layout-primary.disabled .icon-left-side,
|
|
2986
2986
|
.psui-el-button.layout-primary.disabled .icon-right-side {
|
|
2987
2987
|
--tw-text-opacity: 1;
|
|
2988
|
-
color: rgb(
|
|
2988
|
+
color: rgb(81, 94, 106, var(--tw-text-opacity, 1));
|
|
2989
2989
|
}
|
|
2990
2990
|
.psui-el-button.layout-outline, .psui-el-button.layout-secondary {
|
|
2991
2991
|
border-width: 1px;
|
package/package.json
CHANGED
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
2
|
+
<figure class="psui-el-testimonial">
|
|
3
3
|
<div class="psui-el-testimonial-icon">
|
|
4
4
|
<PsIcon
|
|
5
5
|
icon="format_quote"
|
|
6
6
|
size="40"
|
|
7
7
|
color="psui-text-white"
|
|
8
|
+
tabindex="-1"
|
|
9
|
+
aria-hidden="true"
|
|
8
10
|
display="flex"
|
|
9
11
|
/>
|
|
10
12
|
</div>
|
|
11
|
-
<
|
|
13
|
+
<blockquote class="psui-el-testimonial-description">
|
|
12
14
|
{{ description }}
|
|
13
|
-
</
|
|
14
|
-
<
|
|
15
|
+
</blockquote>
|
|
16
|
+
<figcaption class="psui-el-testimonial-info">
|
|
15
17
|
<span class="psui-el-testimonial-info-user">{{ user }}</span>
|
|
16
18
|
<span class="psui-el-testimonial-info-position">{{ position }}</span>
|
|
17
19
|
<span class="psui-el-testimonial-info-jurisdiction">{{ jurisdiction }}</span>
|
|
18
|
-
</
|
|
19
|
-
</
|
|
20
|
+
</figcaption>
|
|
21
|
+
</figure>
|
|
20
22
|
</template>
|
|
21
23
|
|
|
22
24
|
<script setup>
|