simplestyle-js 5.3.1-beta.1 → 5.3.1-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/cjs/astro/index.cjs
CHANGED
|
@@ -8,9 +8,9 @@ Object.defineProperty(exports, "makeCssFuncs", {
|
|
|
8
8
|
return makeCssFuncs;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
const _makeStyles = require("
|
|
12
|
-
const _SimpleStyleProvider = require("
|
|
13
|
-
const _simpleStyleRegistry = require("
|
|
11
|
+
const _makeStyles = require("../makeStyles.cjs");
|
|
12
|
+
const _SimpleStyleProvider = require("../SimpleStyleProvider.cjs");
|
|
13
|
+
const _simpleStyleRegistry = require("../simpleStyleRegistry.cjs");
|
|
14
14
|
const makeCssFuncs = (...args)=>{
|
|
15
15
|
const [opts, ...rest] = args;
|
|
16
16
|
const { registry: providedRegistry } = opts;
|
package/dist/cjs/next/index.cjs
CHANGED
|
@@ -8,9 +8,9 @@ Object.defineProperty(exports, "makeCssFuncs", {
|
|
|
8
8
|
return makeCssFuncs;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
const _makeStyles = require("
|
|
12
|
-
const _SimpleStyleProvider = require("
|
|
13
|
-
const _simpleStyleRegistry = require("
|
|
11
|
+
const _makeStyles = require("../makeStyles.cjs");
|
|
12
|
+
const _SimpleStyleProvider = require("../SimpleStyleProvider.cjs");
|
|
13
|
+
const _simpleStyleRegistry = require("../simpleStyleRegistry.cjs");
|
|
14
14
|
const makeCssFuncs = (...args)=>{
|
|
15
15
|
const [opts, ...rest] = args;
|
|
16
16
|
const { registry: providedRegistry } = opts;
|
package/dist/esm/astro/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { makeCssFuncs as _makeCssFuncs } from '
|
|
2
|
-
import { makeSimpleStyleProvider } from '
|
|
3
|
-
import { SimpleStyleRegistry } from '
|
|
1
|
+
import { makeCssFuncs as _makeCssFuncs } from '../makeStyles.mjs';
|
|
2
|
+
import { makeSimpleStyleProvider } from '../SimpleStyleProvider.mjs';
|
|
3
|
+
import { SimpleStyleRegistry } from '../simpleStyleRegistry.mjs';
|
|
4
4
|
export const makeCssFuncs = (...args)=>{
|
|
5
5
|
const [opts, ...rest] = args;
|
|
6
6
|
const { registry: providedRegistry } = opts;
|
package/dist/esm/next/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { makeCssFuncs as _makeCssFuncs } from '
|
|
2
|
-
import { makeSimpleStyleProvider } from '
|
|
3
|
-
import { SimpleStyleRegistry } from '
|
|
1
|
+
import { makeCssFuncs as _makeCssFuncs } from '../makeStyles.mjs';
|
|
2
|
+
import { makeSimpleStyleProvider } from '../SimpleStyleProvider.mjs';
|
|
3
|
+
import { SimpleStyleRegistry } from '../simpleStyleRegistry.mjs';
|
|
4
4
|
export const makeCssFuncs = (...args)=>{
|
|
5
5
|
const [opts, ...rest] = args;
|
|
6
6
|
const { registry: providedRegistry } = opts;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simplestyle-js",
|
|
3
|
-
"version": "5.3.1-beta.
|
|
3
|
+
"version": "5.3.1-beta.2",
|
|
4
4
|
"description": "An incredibly straightforward and simple CSS-in-JS solution with zero runtime dependencies, and out-of-the-box TypeScript support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -209,4 +209,4 @@
|
|
|
209
209
|
"trustedDependencies": [
|
|
210
210
|
"@swc/core"
|
|
211
211
|
]
|
|
212
|
-
}
|
|
212
|
+
}
|