@policystudio/policy-studio-ui-vue 1.0.55 → 1.0.58

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.
@@ -17689,6 +17689,7 @@ html {
17689
17689
  transition-property: opacity;
17690
17690
  transition-duration: 300ms;
17691
17691
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
17692
+ z-index: 10;
17692
17693
  transition-delay: 0.4s;
17693
17694
  }
17694
17695
 
@@ -19835,7 +19836,7 @@ html {
19835
19836
  }
19836
19837
 
19837
19838
  .psui-el-tab-header button.status-disabled {
19838
- cursor: not-allowed
19839
+ cursor: not-allowed;
19839
19840
  }
19840
19841
 
19841
19842
  .psui-el-tab-header button:focus {
@@ -19857,6 +19858,10 @@ html {
19857
19858
  border-radius: 0.375rem;
19858
19859
  }
19859
19860
 
19861
+ .psui-el-tab-header.layout-standard .psui-el-tooltip:not(:last-child) {
19862
+ margin-right: 20px;
19863
+ }
19864
+
19860
19865
  .psui-el-tab-header.layout-standard button {
19861
19866
  --bg-opacity: 1;
19862
19867
  background-color: #F3F6F9;
@@ -19912,6 +19917,10 @@ html {
19912
19917
  border-color: rgba(230, 236, 242, var(--border-opacity));
19913
19918
  }
19914
19919
 
19920
+ .psui-el-tab-header.layout-underline .psui-el-tooltip:not(:last-child) {
19921
+ margin-right: 20px;
19922
+ }
19923
+
19915
19924
  .psui-el-tab-header.layout-underline button {
19916
19925
  --text-opacity: 1;
19917
19926
  color: #798490;
@@ -19948,6 +19957,10 @@ html {
19948
19957
 
19949
19958
  /* ----------------------------------------- */
19950
19959
 
19960
+ .psui-el-tab-header.layout-folder .psui-el-tooltip:not(:last-child) {
19961
+ margin-right: 20px;
19962
+ }
19963
+
19951
19964
  .psui-el-tab-header.layout-folder button {
19952
19965
  --bg-opacity: 1;
19953
19966
  background-color: #F3F6F9;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.0.55",
3
+ "version": "1.0.58",
4
4
  "description": "Policy Studio UI",
5
5
  "main": "src/index.js",
6
6
  "author": "Policy Studio Team",
@@ -6,7 +6,7 @@
6
6
  button {
7
7
  @apply transition-default psui-text-small;
8
8
  &.status-disabled {
9
- @apply cursor-not-allowed
9
+ @apply cursor-not-allowed;
10
10
  }
11
11
 
12
12
  &:focus {
@@ -24,6 +24,12 @@
24
24
  /* ----------------------------------------- */
25
25
  &.layout-standard {
26
26
  @apply psui-rounded-md;
27
+
28
+ .psui-el-tooltip{
29
+ &:not(:last-child) {
30
+ margin-right: 20px;
31
+ }
32
+ }
27
33
 
28
34
  button {
29
35
  @apply psui-bg-gray-10 psui-text-gray-60;
@@ -63,6 +69,12 @@
63
69
  &.layout-underline {
64
70
  @apply psui-border-b psui-border-gray-20;
65
71
 
72
+ .psui-el-tooltip{
73
+ &:not(:last-child) {
74
+ margin-right: 20px;
75
+ }
76
+ }
77
+
66
78
  button {
67
79
  @apply psui-text-gray-50 psui-font-bold;
68
80
  border-bottom: 3px solid transparent;
@@ -91,6 +103,13 @@
91
103
  /* Layout Folder */
92
104
  /* ----------------------------------------- */
93
105
  &.layout-folder {
106
+
107
+ .psui-el-tooltip{
108
+ &:not(:last-child) {
109
+ margin-right: 20px;
110
+ }
111
+ }
112
+
94
113
  button {
95
114
  @apply psui-bg-gray-10 psui-text-gray-50 psui-rounded-t;
96
115
  padding: 9px 12px;
@@ -5,7 +5,7 @@
5
5
  @apply psui-relative;
6
6
 
7
7
  .psui-el-tooltip-dialog {
8
- @apply psui-fixed psui-opacity-0 psui-transition-opacity psui-duration-300 psui-ease-in-out;
8
+ @apply psui-fixed psui-opacity-0 psui-transition-opacity psui-duration-300 psui-ease-in-out psui-z-10;
9
9
  transition-delay: 0.4s;
10
10
 
11
11
  .psui-el-tooltip-content {
@@ -1,23 +1,27 @@
1
1
  <template>
2
2
  <div class='psui-el-radio' :class="[getComponentClass, {'disabled':disabled}]" >
3
- <input
4
- :id="label"
5
- type="radio"
3
+ <input
4
+ :id="inputId"
5
+ type="radio"
6
6
  :value="inputValue"
7
7
  v-model="model"
8
8
  :disabled='disabled'
9
9
  />
10
- <label :for="label" class="psui-el-checkmark"><span>{{ label }}</span></label>
10
+ <label :for="inputId" class="psui-el-checkmark"><span>{{ label }}</span></label>
11
11
  </div>
12
-
12
+
13
13
  </template>
14
-
14
+
15
15
  <script>
16
16
  //FIGMA CONTROLS & SELECTORS https://www.figma.com/file/Tto8hrNlSfuPcwd1pfqogF/%E2%9A%A1%EF%B8%8F-Design-System?node-id=1768%3A64852
17
-
17
+
18
18
  export default {
19
19
  name: 'PsRadioButton',
20
20
  props: {
21
+ inputId: {
22
+ type: String,
23
+ default: ''
24
+ },
21
25
  /**
22
26
  * It sets the label of the radio button.
23
27
  */
@@ -64,5 +68,4 @@ export default {
64
68
  }
65
69
  },
66
70
  }
67
- </script>
68
-
71
+ </script>