vueless 0.0.478-beta.2 → 0.0.478-beta.3
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 +2 -2
- package/ui.data-table/UTable.vue +1 -1
- package/ui.image-icon/UIcon.vue +2 -2
- package/ui.text-file/UFile.vue +0 -1
- package/utils/utilUI.js +1 -1
- package/web-types.json +0 -9580
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vueless",
|
|
3
|
-
"version": "0.0.478-beta.
|
|
3
|
+
"version": "0.0.478-beta.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
|
|
6
6
|
"keywords": [
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"build": "npx @vueless/web-types && node prepare.icons && storybook build --docs",
|
|
33
33
|
"preview": "vite preview --host --outDir=storybook-static",
|
|
34
34
|
"ts:check": "vue-tsc --build --force",
|
|
35
|
-
"release:prepare": "
|
|
35
|
+
"release:prepare": "node prepare.icons && rm -rf dist && mkdir -p dist && cp -r src/. package.json LICENSE README.md dist/ && node prepare.package",
|
|
36
36
|
"release:beta": "release-it --ci --npm.publish --preRelease=beta --increment=prerelease",
|
|
37
37
|
"release:patch": "release-it patch --ci --npm.publish",
|
|
38
38
|
"release:minor": "release-it minor --ci --npm.publish --git.tag --github.release",
|
package/ui.data-table/UTable.vue
CHANGED
|
@@ -703,7 +703,7 @@ function onChangeSelectedRows(selectedRows) {
|
|
|
703
703
|
if (selectedRows.length) {
|
|
704
704
|
canSelectAll.value = false;
|
|
705
705
|
|
|
706
|
-
isCheckedMoreOneTableItems.value
|
|
706
|
+
isCheckedMoreOneTableItems.value && setFooterCellWidth();
|
|
707
707
|
} else {
|
|
708
708
|
nextTick(setHeaderCellWidth);
|
|
709
709
|
}
|
package/ui.image-icon/UIcon.vue
CHANGED
|
@@ -164,7 +164,7 @@ const dynamicComponent = computed(() => {
|
|
|
164
164
|
return component;
|
|
165
165
|
}
|
|
166
166
|
|
|
167
|
-
/* eslint-disable
|
|
167
|
+
/* eslint-disable prettier/prettier */
|
|
168
168
|
const libraries = {
|
|
169
169
|
"vueless": async () => {
|
|
170
170
|
return import.meta.env.PROD
|
|
@@ -197,7 +197,7 @@ const dynamicComponent = computed(() => {
|
|
|
197
197
|
: import(/* @vite-ignore */ `/node_modules/${library}/24/${fillType}/${name}.svg?component`);
|
|
198
198
|
},
|
|
199
199
|
};
|
|
200
|
-
/* eslint-enable
|
|
200
|
+
/* eslint-enable prettier/prettier */
|
|
201
201
|
|
|
202
202
|
return defineAsyncComponent(libraries[library]);
|
|
203
203
|
});
|
package/ui.text-file/UFile.vue
CHANGED