@baseline-ui/tokens 0.5.1 → 0.6.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/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +4 -1
package/dist/index.d.mts
CHANGED
|
@@ -1435,9 +1435,9 @@ declare const createLayerSprinkles: (layer: string) => ((props: {
|
|
|
1435
1435
|
};
|
|
1436
1436
|
type Sprinkles = ReturnType<typeof createLayerSprinkles>;
|
|
1437
1437
|
/**
|
|
1438
|
-
*
|
|
1439
|
-
*
|
|
1440
|
-
*
|
|
1438
|
+
* Use `Unstable_Sprinkles` instead. This will be removed in the next major
|
|
1439
|
+
* version. `Unstable_Sprinkles` takes care of all the layering for you so that
|
|
1440
|
+
* you do not run into issues with specificity.
|
|
1441
1441
|
*/
|
|
1442
1442
|
declare const sprinkles: Sprinkles;
|
|
1443
1443
|
declare const Unstable_Sprinkles: Unstable_SprinklesInterface;
|
package/dist/index.d.ts
CHANGED
|
@@ -1435,9 +1435,9 @@ declare const createLayerSprinkles: (layer: string) => ((props: {
|
|
|
1435
1435
|
};
|
|
1436
1436
|
type Sprinkles = ReturnType<typeof createLayerSprinkles>;
|
|
1437
1437
|
/**
|
|
1438
|
-
*
|
|
1439
|
-
*
|
|
1440
|
-
*
|
|
1438
|
+
* Use `Unstable_Sprinkles` instead. This will be removed in the next major
|
|
1439
|
+
* version. `Unstable_Sprinkles` takes care of all the layering for you so that
|
|
1440
|
+
* you do not run into issues with specificity.
|
|
1441
1441
|
*/
|
|
1442
1442
|
declare const sprinkles: Sprinkles;
|
|
1443
1443
|
declare const Unstable_Sprinkles: Unstable_SprinklesInterface;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baseline-ui/tokens",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
"just-kebab-case": "^4.2.0",
|
|
25
25
|
"style-dictionary": "3.9.1"
|
|
26
26
|
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
27
30
|
"scripts": {
|
|
28
31
|
"build": "pnpm run build:themes && tsup src/index.ts --minify --format cjs,esm --dts",
|
|
29
32
|
"build:themes": "rm -rf build && mkdir -p build && ./scripts/buildTheme.ts"
|