vueless 1.0.2-beta.55 → 1.0.2-beta.57
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/bin/commands/copy.js
CHANGED
|
@@ -7,8 +7,8 @@ import { cp, readFile, writeFile, rename } from "node:fs/promises";
|
|
|
7
7
|
import { styleText } from "node:util";
|
|
8
8
|
|
|
9
9
|
import { getDirFiles } from "../../utils/node/helper.js";
|
|
10
|
-
import { replaceRelativeImports } from "../utils/
|
|
11
|
-
import { getStorybookId, getStoryMetaKeyIndex } from "../utils/
|
|
10
|
+
import { replaceRelativeImports } from "../utils/format.js";
|
|
11
|
+
import { getStorybookId, getStoryMetaKeyIndex } from "../utils/data.js";
|
|
12
12
|
|
|
13
13
|
import { SRC_COMPONENTS_PATH, COMPONENTS_PATH } from "../constants.js";
|
|
14
14
|
import { COMPONENTS, VUELESS_PACKAGE_DIR, VUELESS_LOCAL_DIR } from "../../constants.js";
|
package/bin/commands/create.js
CHANGED
|
@@ -7,8 +7,8 @@ import { readFile, writeFile, rename, mkdir, readdir, copyFile } from "node:fs/p
|
|
|
7
7
|
import { styleText } from "node:util";
|
|
8
8
|
|
|
9
9
|
import { getDirFiles } from "../../utils/node/helper.js";
|
|
10
|
-
import { replaceRelativeImports } from "../utils/
|
|
11
|
-
import { getStorybookId } from "../utils/
|
|
10
|
+
import { replaceRelativeImports } from "../utils/format.js";
|
|
11
|
+
import { getStorybookId } from "../utils/data.js";
|
|
12
12
|
|
|
13
13
|
import { SRC_COMPONENTS_PATH, COMPONENTS_PATH } from "../constants.js";
|
|
14
14
|
|
package/package.json
CHANGED
|
@@ -15,9 +15,7 @@ export default /*tw*/ {
|
|
|
15
15
|
listboxInput: {
|
|
16
16
|
base: "{UInputSearch} sticky top-0 pt-1 bg-default z-10",
|
|
17
17
|
searchInput: {
|
|
18
|
-
wrapper: "rounded-small focus-within:outline-0 hover:focus-within:border-lifted focus-within:border-lifted",
|
|
19
|
-
input: "pl-2",
|
|
20
|
-
rightSlot: "pr-1",
|
|
18
|
+
wrapper: "px-2 rounded-small focus-within:outline-0 hover:focus-within:border-lifted focus-within:border-lifted",
|
|
21
19
|
},
|
|
22
20
|
},
|
|
23
21
|
selectIcon: {
|
|
File without changes
|
|
File without changes
|