@milaboratories/uikit 2.2.27 → 2.2.28
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/CHANGELOG.md +6 -0
- package/dist/pl-uikit.js +1 -1
- package/dist/pl-uikit.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/assets/base-btn.scss +5 -2
- package/src/components/PlNotificationAlert/PlNotificationAlert.vue +1 -1
package/package.json
CHANGED
package/src/assets/base-btn.scss
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
--active-shadow: 0 0 0 0 transparent;
|
|
12
12
|
--main-padding: 0 12px;
|
|
13
13
|
|
|
14
|
+
text-transform: capitalize;
|
|
14
15
|
position: relative;
|
|
15
16
|
overflow: hidden;
|
|
16
17
|
display: flex;
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
--border-radius: 8px;
|
|
66
67
|
--font-size: 16px;
|
|
67
68
|
--main-padding: 0 18px;
|
|
69
|
+
|
|
68
70
|
.mask {
|
|
69
71
|
--mask-size: 24px;
|
|
70
72
|
}
|
|
@@ -72,6 +74,7 @@
|
|
|
72
74
|
|
|
73
75
|
&:disabled {
|
|
74
76
|
--color-text: var(--color-dis-00);
|
|
77
|
+
|
|
75
78
|
* {
|
|
76
79
|
color: var(--color-text);
|
|
77
80
|
}
|
|
@@ -120,7 +123,7 @@
|
|
|
120
123
|
flex-direction: row-reverse;
|
|
121
124
|
}
|
|
122
125
|
|
|
123
|
-
>
|
|
126
|
+
>span {
|
|
124
127
|
display: inline-flex;
|
|
125
128
|
}
|
|
126
|
-
}
|
|
129
|
+
}
|
|
@@ -22,7 +22,7 @@ function closeAlert() {
|
|
|
22
22
|
|
|
23
23
|
<template>
|
|
24
24
|
<div v-if="model" :class="type" :style="{ width: `${width}` }" class="pl-notification-alert d-flex flex-column gap-16">
|
|
25
|
-
<div class="pl-notification-alert__wrapper d-flex">
|
|
25
|
+
<div class="pl-notification-alert__wrapper d-flex text-s">
|
|
26
26
|
<div class="pl-notification-alert__content flex-grow-1">
|
|
27
27
|
<slot />
|
|
28
28
|
</div>
|