nuxt-nightly 4.1.2-29293755.13aef2ae → 4.1.2-29293784.656066cd
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.
|
@@ -64,7 +64,7 @@ export default defineComponent({
|
|
|
64
64
|
height: `${props.height}px`,
|
|
65
65
|
opacity: isLoading.value ? 1 : 0,
|
|
66
66
|
background: error.value ? props.errorColor : props.color || void 0,
|
|
67
|
-
backgroundSize: `${100 / progress.value * 100}% auto`,
|
|
67
|
+
backgroundSize: `${progress.value > 0 ? 100 / progress.value * 100 : 0}% auto`,
|
|
68
68
|
transform: `scaleX(${progress.value}%)`,
|
|
69
69
|
transformOrigin: "left",
|
|
70
70
|
transition: "transform 0.1s, height 0.4s, opacity 0.4s",
|
package/dist/index.mjs
CHANGED
|
@@ -2278,9 +2278,6 @@ async function scanComponents(dirs, srcDir) {
|
|
|
2278
2278
|
const filePaths = /* @__PURE__ */ new Set();
|
|
2279
2279
|
const scannedPaths = [];
|
|
2280
2280
|
for (const dir of dirs) {
|
|
2281
|
-
if (dir.enabled === false) {
|
|
2282
|
-
continue;
|
|
2283
|
-
}
|
|
2284
2281
|
const resolvedNames = /* @__PURE__ */ new Map();
|
|
2285
2282
|
const files = (await glob(dir.pattern, { cwd: dir.path, ignore: dir.ignore })).sort();
|
|
2286
2283
|
if (files.length) {
|
|
@@ -3423,8 +3420,6 @@ const componentsModule = defineNuxtModule({
|
|
|
3423
3420
|
dirs.push({
|
|
3424
3421
|
global: moduleOptions.global,
|
|
3425
3422
|
...dirOptions,
|
|
3426
|
-
// TODO: https://github.com/nuxt/framework/pull/251
|
|
3427
|
-
enabled: true,
|
|
3428
3423
|
path: dirPath,
|
|
3429
3424
|
extensions,
|
|
3430
3425
|
pattern: dirOptions.pattern || (extensions.length > 1 ? `**/*.{${extensions.join(",")}}` : `**/*.${extensions[0] || "*"}`),
|
|
@@ -3816,7 +3811,7 @@ function addDeclarationTemplates(ctx, options) {
|
|
|
3816
3811
|
});
|
|
3817
3812
|
}
|
|
3818
3813
|
|
|
3819
|
-
const version = "4.1.2-
|
|
3814
|
+
const version = "4.1.2-29293784.656066cd";
|
|
3820
3815
|
|
|
3821
3816
|
const createImportProtectionPatterns = (nuxt, options) => {
|
|
3822
3817
|
const patterns = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-nightly",
|
|
3
|
-
"version": "4.1.2-
|
|
3
|
+
"version": "4.1.2-29293784.656066cd",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
"@nuxt/cli": "npm:@nuxt/cli-nightly@latest",
|
|
68
68
|
"@nuxt/devalue": "^2.0.2",
|
|
69
69
|
"@nuxt/devtools": "^2.6.3",
|
|
70
|
-
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.1.2-
|
|
71
|
-
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.1.2-
|
|
70
|
+
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.1.2-29293784.656066cd",
|
|
71
|
+
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.1.2-29293784.656066cd",
|
|
72
72
|
"@nuxt/telemetry": "^2.6.6",
|
|
73
|
-
"@nuxt/vite-builder": "npm:@nuxt/vite-builder-nightly@4.1.2-
|
|
73
|
+
"@nuxt/vite-builder": "npm:@nuxt/vite-builder-nightly@4.1.2-29293784.656066cd",
|
|
74
74
|
"@unhead/vue": "^2.0.14",
|
|
75
75
|
"@vue/shared": "^3.5.21",
|
|
76
76
|
"c12": "^3.2.0",
|