@policystudio/policy-studio-ui-vue 1.2.0-access.52 → 1.2.0-access.53
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.
|
@@ -3160,7 +3160,7 @@ video {
|
|
|
3160
3160
|
}
|
|
3161
3161
|
.psui-el-card-infos-title {
|
|
3162
3162
|
--tw-text-opacity: 1;
|
|
3163
|
-
color: rgb(
|
|
3163
|
+
color: rgb(40, 50, 59, var(--tw-text-opacity, 1));
|
|
3164
3164
|
}
|
|
3165
3165
|
.psui-el-card-infos-content {
|
|
3166
3166
|
display: flex;
|
|
@@ -3178,6 +3178,10 @@ video {
|
|
|
3178
3178
|
font-size: 16px;
|
|
3179
3179
|
line-height: 24px;
|
|
3180
3180
|
}
|
|
3181
|
+
.psui-el-card-infos-content {
|
|
3182
|
+
--tw-text-opacity: 1;
|
|
3183
|
+
color: rgb(40, 50, 59, var(--tw-text-opacity, 1));
|
|
3184
|
+
}
|
|
3181
3185
|
.psui-el-card-infos-icon {
|
|
3182
3186
|
margin-right: 0.25rem;
|
|
3183
3187
|
}
|
package/package.json
CHANGED
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
&-title {
|
|
17
|
-
@apply psui-flex psui-text-xsmall psui-text-gray-
|
|
17
|
+
@apply psui-flex psui-text-xsmall psui-text-gray-80 psui-mb-1;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
&-content {
|
|
21
|
-
@apply psui-w-full psui-flex psui-justify-end psui-items-center psui-text-16;
|
|
21
|
+
@apply psui-w-full psui-flex psui-justify-end psui-items-center psui-text-16 psui-text-gray-80;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
&-icon {
|
|
@@ -57,14 +57,14 @@ defineProps({
|
|
|
57
57
|
*/
|
|
58
58
|
titleClass: {
|
|
59
59
|
type: String,
|
|
60
|
-
default: 'psui-text-gray-
|
|
60
|
+
default: 'psui-text-gray-80 psui-font-bold',
|
|
61
61
|
},
|
|
62
62
|
/**
|
|
63
63
|
* It sets the class for the subtitle text (color, font-weight, font-size, etc.).
|
|
64
64
|
*/
|
|
65
65
|
subtitleClass: {
|
|
66
66
|
type: String,
|
|
67
|
-
default: 'psui-text-gray-
|
|
67
|
+
default: 'psui-text-gray-80',
|
|
68
68
|
},
|
|
69
69
|
/**
|
|
70
70
|
* It sets the class for the total text (color, font-weight, font-size, etc.).
|
|
@@ -124,7 +124,7 @@ const focusFirstElement = async () => {
|
|
|
124
124
|
await nextTick()
|
|
125
125
|
if (PSDropdownFloating.value) {
|
|
126
126
|
const focusable = PSDropdownFloating.value.querySelector(
|
|
127
|
-
'button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])',
|
|
127
|
+
'button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"]), [role="combobox"], [tabindex="0"]',
|
|
128
128
|
)
|
|
129
129
|
focusable?.focus()
|
|
130
130
|
}
|