@razorwind/storybook 0.0.12 → 0.0.13
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.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Schema, Tokens } from "@razorwind/core/schema";
|
|
2
1
|
import { TokenType } from "@power-plant/dtcg-schema";
|
|
2
|
+
import { Schema, Tokens } from "@razorwind/core/schema";
|
|
3
3
|
import { formatTokenValue, toCssVar } from "@razorwind/core/utils";
|
|
4
4
|
import { GeneratorFunctionResult } from "@power-plant/core";
|
|
5
5
|
//#region src/types.d.ts
|
|
@@ -104,7 +104,7 @@ declare function generateTokenDocs(spec: Schema, options?: StorybookPluginOption
|
|
|
104
104
|
* });
|
|
105
105
|
* ```
|
|
106
106
|
*/
|
|
107
|
-
declare const _default: (options?:
|
|
107
|
+
declare const _default: (options?: StorybookPluginOptions | undefined) => import("@razorwind/core/plugin").Plugin;
|
|
108
108
|
//#endregion
|
|
109
109
|
export { type FlatToken, type StorybookPluginOptions, _default as default, flattenTokens, formatTokenValue, generateTokenDocs, resolveTokenSets, toCssVar };
|
|
110
110
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { formatTokenValue, toCssVar } from "@razorwind/core/utils";
|
|
2
|
-
import { Schema, Tokens } from "@razorwind/core/schema";
|
|
3
2
|
import { TokenType } from "@power-plant/dtcg-schema";
|
|
3
|
+
import { Schema, Tokens } from "@razorwind/core/schema";
|
|
4
4
|
import { GeneratorFunctionResult } from "@power-plant/core";
|
|
5
5
|
//#region src/types.d.ts
|
|
6
6
|
/**
|
|
@@ -104,7 +104,7 @@ declare function generateTokenDocs(spec: Schema, options?: StorybookPluginOption
|
|
|
104
104
|
* });
|
|
105
105
|
* ```
|
|
106
106
|
*/
|
|
107
|
-
declare const _default: (options?:
|
|
107
|
+
declare const _default: (options?: StorybookPluginOptions | undefined) => import("@razorwind/core/plugin").Plugin;
|
|
108
108
|
//#endregion
|
|
109
109
|
export { type FlatToken, type StorybookPluginOptions, _default as default, flattenTokens, formatTokenValue, generateTokenDocs, resolveTokenSets, toCssVar };
|
|
110
110
|
//# sourceMappingURL=index.d.mts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@razorwind/storybook",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Razorwind plugin that creates Storybook MDX token doc blocks from Razorwind design tokens.",
|
|
6
6
|
"repository": {
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@power-plant/core": "^0.0.61",
|
|
73
73
|
"@power-plant/dtcg-schema": "^0.0.1",
|
|
74
|
-
"@razorwind/core": "^0.0.
|
|
74
|
+
"@razorwind/core": "^0.0.17",
|
|
75
75
|
"@stryke/type-checks": "^0.6.32"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
@@ -90,5 +90,5 @@
|
|
|
90
90
|
"typescript": "^6.0.3"
|
|
91
91
|
},
|
|
92
92
|
"publishConfig": { "access": "public" },
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "3cc5b85aebb2434cd4395b99e9cab9b9223ff6db"
|
|
94
94
|
}
|