vueless 0.0.130 → 0.0.132
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/package.json +4 -4
- package/ui.container-page/index.vue +3 -3
- package/ui.text-alert/index.vue +8 -2
- package/web-types.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vueless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.132",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Vue Styleless Component Framework.",
|
|
6
6
|
"homepage": "https://vueless.com",
|
|
@@ -25,6 +25,9 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@tailwindcss/forms": "^0.5.7",
|
|
28
|
+
"@vueless/plugin-vite": "^0.0.25",
|
|
29
|
+
"@vueless/storybook": "^0.0.27",
|
|
30
|
+
"@vueless/web-types": "^0.0.8",
|
|
28
31
|
"cva": "^1.0.0-beta.1",
|
|
29
32
|
"lodash-es": "^4.17.21",
|
|
30
33
|
"tailwind-merge": "^2.3.0",
|
|
@@ -37,9 +40,6 @@
|
|
|
37
40
|
"@release-it/bumper": "^6.0.1",
|
|
38
41
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
39
42
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
40
|
-
"@vueless/plugin-vite": "^0.0.23",
|
|
41
|
-
"@vueless/storybook": "^0.0.27",
|
|
42
|
-
"@vueless/web-types": "^0.0.8",
|
|
43
43
|
"autoprefixer": "^10.4.19",
|
|
44
44
|
"cssnano": "^6.1.2",
|
|
45
45
|
"eslint": "^8.55.0",
|
|
@@ -235,7 +235,7 @@ onMounted(() => {
|
|
|
235
235
|
});
|
|
236
236
|
</script>
|
|
237
237
|
|
|
238
|
-
|
|
238
|
+
<!--style lang="postcss" scoped>
|
|
239
239
|
/**
|
|
240
240
|
* TODO: Move this styles to global vueless config using tailwind group class and remove footer classes
|
|
241
241
|
*
|
|
@@ -258,7 +258,7 @@ onMounted(() => {
|
|
|
258
258
|
}
|
|
259
259
|
|
|
260
260
|
.dropdown-list {
|
|
261
|
-
|
|
261
|
+
@apply xmb-[calc(theme("spacing.mobile-menu-height")+3rem)];
|
|
262
262
|
}
|
|
263
263
|
}
|
|
264
264
|
|
|
@@ -289,4 +289,4 @@ onMounted(() => {
|
|
|
289
289
|
}
|
|
290
290
|
}
|
|
291
291
|
*/
|
|
292
|
-
</style
|
|
292
|
+
</style-->
|
package/ui.text-alert/index.vue
CHANGED
|
@@ -7,9 +7,15 @@
|
|
|
7
7
|
<div v-if="!hasSlotContent($slots['default'])" v-html="html" />
|
|
8
8
|
</div>
|
|
9
9
|
|
|
10
|
-
<UButton
|
|
10
|
+
<UButton
|
|
11
|
+
v-if="closeIcon"
|
|
12
|
+
size="sm"
|
|
13
|
+
variant="thirdary"
|
|
14
|
+
:color="color"
|
|
15
|
+
square
|
|
16
|
+
v-bind="buttonAttrs"
|
|
17
|
+
>
|
|
11
18
|
<UIcon
|
|
12
|
-
v-if="closeIcon"
|
|
13
19
|
internal
|
|
14
20
|
size="xs"
|
|
15
21
|
:color="color"
|