vueless 1.1.1-beta.56 → 1.1.1-beta.58

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 vuelessjs
3
+ Copyright (c) 2025 vuelessjs
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -6,7 +6,7 @@ import { cwd } from "node:process";
6
6
  import { cp, readFile, writeFile, rename } from "node:fs/promises";
7
7
  import { styleText } from "node:util";
8
8
 
9
- import { getDirFiles } from "../../utils/node/helper";
9
+ import { getDirFiles } from "../../utils/node/helper.js";
10
10
  import { replaceRelativeImports } from "../utils/format.js";
11
11
  import { getStorybookId, getStoryMetaKeyIndex } from "../utils/data.js";
12
12
 
@@ -6,7 +6,7 @@ import { cwd } from "node:process";
6
6
  import { readFile, writeFile, rename, mkdir, readdir, copyFile } from "node:fs/promises";
7
7
  import { styleText } from "node:util";
8
8
 
9
- import { getDirFiles } from "../../utils/node/helper";
9
+ import { getDirFiles } from "../../utils/node/helper.js";
10
10
  import { replaceRelativeImports } from "../utils/format.js";
11
11
  import { getStorybookId } from "../utils/data.js";
12
12
 
package/bin/utils/data.js CHANGED
@@ -3,7 +3,7 @@ import { cwd } from "node:process";
3
3
  import path from "node:path";
4
4
  import { readFile } from "node:fs/promises";
5
5
 
6
- import { getDirFiles } from "../../utils/node/helper";
6
+ import { getDirFiles } from "../../utils/node/helper.js";
7
7
 
8
8
  import { SRC_COMPONENTS_PATH, COMPONENTS_PATH } from "../constants.js";
9
9
  import { VUELESS_PACKAGE_DIR } from "../../constants.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "1.1.1-beta.56",
3
+ "version": "1.1.1-beta.58",
4
4
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
5
5
  "author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
6
6
  "homepage": "https://vueless.com",
@@ -65,7 +65,7 @@ const { getDataTest, config, passwordInputAttrs, passwordIconAttrs, passwordIcon
65
65
 
66
66
  <template>
67
67
  <UInput
68
- :id="id"
68
+ :id="elementId"
69
69
  v-model="localValue"
70
70
  :type="inputType"
71
71
  :label="label"
@@ -472,6 +472,7 @@ const {
472
472
  <template>
473
473
  <ULabel
474
474
  ref="labelComponent"
475
+ :for="elementId"
475
476
  :size="size"
476
477
  :label="label"
477
478
  :error="error"
@@ -3,10 +3,10 @@ import path from "node:path";
3
3
  import { cwd } from "node:process";
4
4
  import { pathToFileURL } from "node:url";
5
5
  import { defineConfig } from "cva";
6
- import { createGetMergedConfig } from "./mergeConfigs.js";
7
6
  import { merge } from "lodash-es";
8
7
  import { extendTailwindMerge } from "tailwind-merge";
9
8
 
9
+ import { createGetMergedConfig } from "./mergeConfigs.js";
10
10
  import { buildTSFile } from "./helper.js";
11
11
  import {
12
12
  VUELESS_CACHE_DIR,