@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(162, 172, 183, var(--tw-text-opacity, 1));
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.2.0-access.48",
3
+ "version": "1.2.0-access.49",
4
4
  "description": "Policy Studio UI",
5
5
  "author": "Policy Studio Team",
6
6
  "scripts": {
@@ -102,7 +102,7 @@
102
102
 
103
103
  .icon-left-side,
104
104
  .icon-right-side {
105
- @apply psui-text-gray-40;
105
+ @apply psui-text-gray-60;
106
106
  }
107
107
  }
108
108
  }
@@ -1,22 +1,24 @@
1
1
  <template>
2
- <div class="psui-el-testimonial">
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
- <p class="psui-el-testimonial-description">
13
+ <blockquote class="psui-el-testimonial-description">
12
14
  {{ description }}
13
- </p>
14
- <div class="psui-el-testimonial-info">
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
- </div>
19
- </div>
20
+ </figcaption>
21
+ </figure>
20
22
  </template>
21
23
 
22
24
  <script setup>