@praxis-kit/tailwind 0.7.0-beta.1 → 0.7.0-beta.2
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/dist/index.js +5 -4
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
// ../shared/src/guards/foundational/is-string.ts
|
|
2
|
+
function isString(value) {
|
|
3
|
+
return typeof value === "string";
|
|
4
|
+
}
|
|
5
|
+
|
|
1
6
|
// ../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs
|
|
2
7
|
function r(e) {
|
|
3
8
|
var t, f, n = "";
|
|
@@ -194,9 +199,6 @@ function createClassPipeline(resolved) {
|
|
|
194
199
|
};
|
|
195
200
|
}
|
|
196
201
|
|
|
197
|
-
// ../core/src/utils/index.ts
|
|
198
|
-
import { COMPONENT_ID, isComponent, isTag } from "@praxis-kit/shared/guards/children";
|
|
199
|
-
|
|
200
202
|
// src/class-builder.ts
|
|
201
203
|
var ClassBuilder = class {
|
|
202
204
|
build(tokens) {
|
|
@@ -378,7 +380,6 @@ var LayoutState = class {
|
|
|
378
380
|
};
|
|
379
381
|
|
|
380
382
|
// src/create-tailwind-pipeline.ts
|
|
381
|
-
import { isString } from "@praxis-kit/shared";
|
|
382
383
|
var DEV = process.env.NODE_ENV !== "production";
|
|
383
384
|
var pendingAsyncWarns = /* @__PURE__ */ new Set();
|
|
384
385
|
var asyncWarnScheduled = false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxis-kit/tailwind",
|
|
3
|
-
"version": "0.7.0-beta.
|
|
3
|
+
"version": "0.7.0-beta.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"exports": {
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
}
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"type-fest": "^5.6.0"
|
|
14
|
-
"@praxis-kit/shared": "3.0.1"
|
|
13
|
+
"type-fest": "^5.6.0"
|
|
15
14
|
},
|
|
16
15
|
"devDependencies": {
|
|
17
16
|
"tsup": "^8.5.1",
|
|
18
17
|
"vitest": "^4.1.8",
|
|
19
|
-
"@praxis-kit/core": "3.0.1"
|
|
18
|
+
"@praxis-kit/core": "3.0.1",
|
|
19
|
+
"@praxis-kit/shared": "3.0.1"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|