@schemavaults/theme 0.22.14 → 0.23.1
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/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
# @schemavaults/theme
|
|
1
|
+
# 🎨 @schemavaults/theme
|
|
2
2
|
|
|
3
|
-
## About
|
|
3
|
+
## About 🎨
|
|
4
4
|
|
|
5
|
-
Package containing code for building TailwindCSS themes that contain SchemaVaults branding colors and shared styles.
|
|
5
|
+
Package containing code for building opionated TailwindCSS themes/configurations that contain SchemaVaults branding colors and shared styles.
|
|
6
|
+
|
|
7
|
+
To see the theme in action you can check out the [`@schemavaults/ui` preview site](https://ui.schemavaults.com) showcasing some styled React.js components and the features available in this theme.
|
|
6
8
|
|
|
7
9
|
## Usage
|
|
8
10
|
|
|
@@ -11,6 +13,7 @@ Package containing code for building TailwindCSS themes that contain SchemaVault
|
|
|
11
13
|
The generated TailwindCSS config sets colors based on CSS variables. It's important that `globals.css` is imported, so that these colors can be resolved. E.g. `var(--foreground)` and `var(--card)` become functional after this CSS import.
|
|
12
14
|
|
|
13
15
|
```javascript
|
|
16
|
+
// within App.jsx / layout.jsx
|
|
14
17
|
import "@schemavaults/theme/globals.css"
|
|
15
18
|
```
|
|
16
19
|
|
|
@@ -18,6 +21,7 @@ import "@schemavaults/theme/globals.css"
|
|
|
18
21
|
|
|
19
22
|
#### Simple Example
|
|
20
23
|
```typescript
|
|
24
|
+
// tailwind.config.ts
|
|
21
25
|
import { SchemaVaultsTailwindConfigFactory } from "@schemavaults/theme";
|
|
22
26
|
const config = new SchemaVaultsTailwindConfigFactory().createConfig({
|
|
23
27
|
content: [
|
|
@@ -30,23 +34,12 @@ export default config;
|
|
|
30
34
|
|
|
31
35
|
#### More complex example
|
|
32
36
|
```typescript
|
|
37
|
+
// tailwind.config.ts
|
|
38
|
+
|
|
33
39
|
// Import the config factory
|
|
34
40
|
import { SchemaVaultsTailwindConfigFactory } from "@schemavaults/theme";
|
|
35
41
|
import { join } from "path";
|
|
36
|
-
import { lstatSync,
|
|
37
|
-
|
|
38
|
-
function node_modules(): string {
|
|
39
|
-
const currentDirectory: string = import.meta.dirname;
|
|
40
|
-
|
|
41
|
-
let node_modules_path: string;
|
|
42
|
-
if (currentDirectory.endsWith("/src") || currentDirectory.endsWith("/dist")) {
|
|
43
|
-
node_modules_path = join(currentDirectory, "..", "node_modules");
|
|
44
|
-
} else {
|
|
45
|
-
node_modules_path = join(currentDirectory, "node_modules");
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
return node_modules_path;
|
|
49
|
-
}
|
|
42
|
+
import { lstatSync, existsSync, type Stats } from "fs";
|
|
50
43
|
|
|
51
44
|
function isdir(path: string): boolean {
|
|
52
45
|
if (!existsSync(path)) return false;
|
|
@@ -62,13 +55,8 @@ function isdir(path: string): boolean {
|
|
|
62
55
|
return lstatResult.isDirectory();
|
|
63
56
|
}
|
|
64
57
|
|
|
65
|
-
if (!isdir(node_modules())) {
|
|
66
|
-
throw new Error("Failed to resolve node_modules/ directory for test!");
|
|
67
|
-
}
|
|
68
|
-
|
|
69
58
|
// Initialize the config factory
|
|
70
59
|
const configFactory = new SchemaVaultsTailwindConfigFactory({
|
|
71
|
-
node_modules,
|
|
72
60
|
isdir,
|
|
73
61
|
join,
|
|
74
62
|
scope: 'schemavaults'
|
|
@@ -88,7 +76,8 @@ export default config;
|
|
|
88
76
|
|
|
89
77
|
You may wish to also dig deeper on the options passed to the factory / `createConfig` in order to customize the final Tailwind configuration generated. Notably, the `content` parameter to `createConfig`, if the code for styles to be generated from is not found within `./src/**/*.ts|tsx|js|jsx`!
|
|
90
78
|
|
|
91
|
-
```
|
|
79
|
+
```typescript
|
|
80
|
+
// tailwind.config.ts
|
|
92
81
|
// ... initialize the factory somewhere
|
|
93
82
|
|
|
94
83
|
// An example demonstrating customization of where Tailwind searches for classnames
|
|
@@ -5,10 +5,10 @@ type OsJoinFn = (path_segment: string, ...remaining_path_segments: string[]) =>
|
|
|
5
5
|
export interface ISchemaVaultsTailwindConfigFactoryInitOptions {
|
|
6
6
|
debug?: boolean;
|
|
7
7
|
join?: OsJoinFn;
|
|
8
|
-
node_modules?: string | (() => string);
|
|
9
8
|
isdir?: (path: string) => boolean;
|
|
10
9
|
scope?: string;
|
|
11
10
|
fileExtensions?: readonly string[];
|
|
11
|
+
project_root?: string;
|
|
12
12
|
}
|
|
13
13
|
export interface ISchemaVaultsTailwindConfigCreationOptions {
|
|
14
14
|
content: readonly string[];
|
|
@@ -22,14 +22,13 @@ type ThemeValue = ThemeExtension[string];
|
|
|
22
22
|
export declare class SchemaVaultsTailwindConfigFactory implements ISchemaVaultsTailwindConfigFactory {
|
|
23
23
|
protected readonly debug: boolean;
|
|
24
24
|
protected readonly join: OsJoinFn;
|
|
25
|
-
protected readonly node_modules_path: string | undefined;
|
|
26
25
|
protected readonly isdir: (path: string) => boolean;
|
|
27
26
|
protected readonly scope: string;
|
|
27
|
+
protected readonly project_root: string;
|
|
28
28
|
protected static readonly defaultFileExtensionsToSearch: readonly ["js", "jsx", "ts", "tsx"];
|
|
29
29
|
protected readonly fileExtensionsToIncludeInTailwindClassNamesSearch: readonly string[];
|
|
30
30
|
private static defaultJoinImplementation;
|
|
31
31
|
private static defaultIsDirImplementation;
|
|
32
|
-
private static getDefaultResolveNodeModulesDirectoryPathImplementation;
|
|
33
32
|
constructor(opts?: ISchemaVaultsTailwindConfigFactoryInitOptions);
|
|
34
33
|
/**
|
|
35
34
|
* @description Load TailwindCSS plugins to use in theme configuration
|
|
@@ -41,9 +40,7 @@ export declare class SchemaVaultsTailwindConfigFactory implements ISchemaVaultsT
|
|
|
41
40
|
protected get brandColors(): ThemeValue;
|
|
42
41
|
protected get screenSizes(): Record<ScreenBreakpointID, `${number}px`>;
|
|
43
42
|
protected get themeExtension(): ThemeExtension;
|
|
44
|
-
protected
|
|
45
|
-
get node_modules(): string;
|
|
46
|
-
protected resolveSchemaVaultsPackagePath(pkg_blob_string: string): string;
|
|
43
|
+
protected resolveOrganizationScopedPackagePath(pkg_blob_string: string): string;
|
|
47
44
|
private static possibleBuildDirectories;
|
|
48
45
|
createConfig(opts?: ISchemaVaultsTailwindConfigCreationOptions): TailwindConfig;
|
|
49
46
|
}
|
|
@@ -5,12 +5,13 @@ import { getScreenBreakpoint, listScreenBreakpoints, } from "./ScreenBreakpoints
|
|
|
5
5
|
import { existsSync, lstatSync } from "fs";
|
|
6
6
|
// TailwindCSS Plugins:
|
|
7
7
|
import tailwindAnimatePlugin from "./plugins/tailwindcss-animate";
|
|
8
|
+
import * as resolve from "resolve";
|
|
8
9
|
export class SchemaVaultsTailwindConfigFactory {
|
|
9
10
|
debug;
|
|
10
11
|
join;
|
|
11
|
-
node_modules_path;
|
|
12
12
|
isdir;
|
|
13
13
|
scope;
|
|
14
|
+
project_root;
|
|
14
15
|
static defaultFileExtensionsToSearch = [
|
|
15
16
|
"js",
|
|
16
17
|
"jsx",
|
|
@@ -31,23 +32,6 @@ export class SchemaVaultsTailwindConfigFactory {
|
|
|
31
32
|
}
|
|
32
33
|
return lstatSync(maybeDirPath).isDirectory();
|
|
33
34
|
}
|
|
34
|
-
static getDefaultResolveNodeModulesDirectoryPathImplementation(join, isdir) {
|
|
35
|
-
const cwd = process.cwd();
|
|
36
|
-
if (isdir(join(cwd, "node_modules"))) {
|
|
37
|
-
return () => join(cwd, "node_modules");
|
|
38
|
-
}
|
|
39
|
-
else if (isdir(join(cwd, "..", "node_modules"))) {
|
|
40
|
-
return () => join(cwd, "..", "node_modules");
|
|
41
|
-
}
|
|
42
|
-
else if (isdir(join(cwd, "..", "..", "node_modules"))) {
|
|
43
|
-
return () => join(cwd, "..", "..", "node_modules");
|
|
44
|
-
}
|
|
45
|
-
else {
|
|
46
|
-
console.error("Failed to resolve path to 'node_modules' directory from SchemaVaultsTailwindConfigFactory!");
|
|
47
|
-
console.error("You can pass a custom resolver function to the config factory constructor to fix this!");
|
|
48
|
-
process.exit(1);
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
35
|
constructor(opts) {
|
|
52
36
|
this.debug = opts?.debug ?? false;
|
|
53
37
|
if (this.debug) {
|
|
@@ -61,12 +45,6 @@ export class SchemaVaultsTailwindConfigFactory {
|
|
|
61
45
|
typeof opts?.isdir === "function"
|
|
62
46
|
? opts.isdir
|
|
63
47
|
: SchemaVaultsTailwindConfigFactory.defaultIsDirImplementation;
|
|
64
|
-
this.node_modules_path =
|
|
65
|
-
typeof opts?.node_modules === "string"
|
|
66
|
-
? opts.node_modules
|
|
67
|
-
: typeof opts?.node_modules === "function"
|
|
68
|
-
? opts.node_modules()
|
|
69
|
-
: SchemaVaultsTailwindConfigFactory.getDefaultResolveNodeModulesDirectoryPathImplementation(this.join, this.isdir)();
|
|
70
48
|
this.scope = opts?.scope ?? DefaultOrgScope;
|
|
71
49
|
if (this.scope.startsWith("@")) {
|
|
72
50
|
throw new Error("Don't pass the @ in the scope, we'll handle adding passing that!");
|
|
@@ -74,6 +52,7 @@ export class SchemaVaultsTailwindConfigFactory {
|
|
|
74
52
|
this.fileExtensionsToIncludeInTailwindClassNamesSearch = Array.isArray(opts?.fileExtensions)
|
|
75
53
|
? opts.fileExtensions
|
|
76
54
|
: SchemaVaultsTailwindConfigFactory.defaultFileExtensionsToSearch;
|
|
55
|
+
this.project_root = opts?.project_root ?? process.cwd();
|
|
77
56
|
if (this.debug) {
|
|
78
57
|
console.log(`[SchemaVaultsTailwindConfigFactory] Initialized '@${this.scope}' config factory`);
|
|
79
58
|
}
|
|
@@ -118,21 +97,7 @@ export class SchemaVaultsTailwindConfigFactory {
|
|
|
118
97
|
};
|
|
119
98
|
return extend;
|
|
120
99
|
}
|
|
121
|
-
|
|
122
|
-
if (typeof this.node_modules_path === "string") {
|
|
123
|
-
return this.node_modules_path;
|
|
124
|
-
}
|
|
125
|
-
throw new Error("Failed to resolve path to node_modules/ directory!");
|
|
126
|
-
}
|
|
127
|
-
// Get the path to the node_modules/ directory
|
|
128
|
-
get node_modules() {
|
|
129
|
-
const path = this.resolveNodeModulesDirectoryPath();
|
|
130
|
-
if (!this.isdir(path)) {
|
|
131
|
-
throw new Error("Expected result of node_modules getter to be the path to a directory!");
|
|
132
|
-
}
|
|
133
|
-
return path;
|
|
134
|
-
}
|
|
135
|
-
resolveSchemaVaultsPackagePath(pkg_blob_string) {
|
|
100
|
+
resolveOrganizationScopedPackagePath(pkg_blob_string) {
|
|
136
101
|
const scope = this.scope;
|
|
137
102
|
if (!pkg_blob_string.startsWith(`@${scope}/`)) {
|
|
138
103
|
throw new Error(`This method should only be called if content path starts with @${scope}/...`);
|
|
@@ -144,13 +109,24 @@ export class SchemaVaultsTailwindConfigFactory {
|
|
|
144
109
|
throw new TypeError("Failed to resolve package name from package blob string");
|
|
145
110
|
}
|
|
146
111
|
const package_name = pkg_blob_parts[1];
|
|
147
|
-
const
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
112
|
+
const org_package_identifier = `@${scope}/${package_name}`;
|
|
113
|
+
let package_path;
|
|
114
|
+
try {
|
|
115
|
+
package_path = resolve.sync(org_package_identifier, {
|
|
116
|
+
basedir: this.project_root, // resolve from where tailwind.config.ts is running from
|
|
117
|
+
});
|
|
118
|
+
if (typeof package_path !== "string") {
|
|
119
|
+
throw new TypeError("Failed to resolve package path; result not a string!");
|
|
120
|
+
}
|
|
121
|
+
if (!this.isdir(package_path)) {
|
|
122
|
+
throw new Error(`Expected there to be a directory for package '@${scope}/${package_name}' at path '${package_path}'!`);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
catch (e) {
|
|
126
|
+
console.error(`Failed to resolve path to package '@${scope}/${package_name}':`, e);
|
|
151
127
|
throw new Error(`Failed to resolve path to package: '@${scope}/${package_name}'!`);
|
|
152
128
|
}
|
|
153
|
-
return
|
|
129
|
+
return package_path;
|
|
154
130
|
}
|
|
155
131
|
static possibleBuildDirectories = [
|
|
156
132
|
"dist",
|
|
@@ -175,7 +151,7 @@ export class SchemaVaultsTailwindConfigFactory {
|
|
|
175
151
|
content_input.forEach((content_path_input) => {
|
|
176
152
|
const content_length_at_start = content.length;
|
|
177
153
|
if (content_path_input.startsWith(`@${scope}/`)) {
|
|
178
|
-
const package_path = this.
|
|
154
|
+
const package_path = this.resolveOrganizationScopedPackagePath(content_path_input);
|
|
179
155
|
SchemaVaultsTailwindConfigFactory.possibleBuildDirectories.forEach((possible_build_dir) => {
|
|
180
156
|
const buildSubdirPath = this.join(package_path, possible_build_dir);
|
|
181
157
|
let hasBuildSubdirectory;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TailwindConfigFactory.js","sourceRoot":"","sources":["../src/TailwindConfigFactory.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,eAAe,MAAM,mBAAmB,CAAC,CAAC,wCAAwC;AACzF,OAAO,EACL,mBAAmB,EACnB,qBAAqB,GAEtB,MAAM,qBAAqB,CAAC;AAM7B,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,IAAI,CAAC;AAE3C,uBAAuB;AACvB,OAAO,qBAAqB,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"TailwindConfigFactory.js","sourceRoot":"","sources":["../src/TailwindConfigFactory.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schemavaults/theme",
|
|
3
3
|
"description": "TailwindCSS theme shared by different SchemaVaults applications",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.23.1",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"repository": {
|
|
@@ -13,13 +13,15 @@
|
|
|
13
13
|
"react": "19.0.0"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"tailwindcss-animate": "1.0.7"
|
|
16
|
+
"tailwindcss-animate": "1.0.7",
|
|
17
|
+
"resolve": "1.22.11"
|
|
17
18
|
},
|
|
18
19
|
"devDependencies": {
|
|
19
20
|
"@types/react": "19.0.0",
|
|
20
21
|
"@types/react-dom": "19.0.0",
|
|
22
|
+
"@types/resolve": "1.20.6",
|
|
21
23
|
"tsc-alias": "1.8.16",
|
|
22
|
-
"bun-types": "1.
|
|
24
|
+
"bun-types": "1.3.3",
|
|
23
25
|
"typescript": "5.9.3",
|
|
24
26
|
"ignore-loader": "0.1.2",
|
|
25
27
|
"tailwindcss": "3.4.17"
|
|
@@ -34,7 +36,8 @@
|
|
|
34
36
|
"build": "bun run build:js",
|
|
35
37
|
"postbuild": "bun run build:cleanup",
|
|
36
38
|
"clean": "rm -rf ./dist",
|
|
37
|
-
"test": "NODE_ENV=test bun test"
|
|
39
|
+
"test:unit": "NODE_ENV=test bun test",
|
|
40
|
+
"test": "bun run test:unit"
|
|
38
41
|
},
|
|
39
42
|
"exports": {
|
|
40
43
|
"./globals.css": {
|
|
@@ -81,5 +84,5 @@
|
|
|
81
84
|
"publishConfig": {
|
|
82
85
|
"access": "public"
|
|
83
86
|
},
|
|
84
|
-
"packageManager": "bun@1.
|
|
87
|
+
"packageManager": "bun@1.3.3"
|
|
85
88
|
}
|