@sps-woodland/tokens 7.2.0 → 7.2.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/lib/css/tokens.css +1 -1
- package/lib/css/utils.css +1 -1
- package/lib/font.css +21 -21
- package/lib/index.cjs.js +1 -1
- package/lib/index.es.js +767 -766
- package/lib/scss/tokens.scss +1 -1
- package/lib/scss/utils.scss +1 -1
- package/lib/types.d.ts +3 -3
- package/lib/vanilla-extract/properties/grid.css.d.ts +1 -1
- package/lib/vanilla-extract/properties/padding.css.d.ts +4 -4
- package/lib/vanilla-extract/sprinkles.css.d.ts +667 -5257
- package/package.json +23 -10
- package/tsconfig.json +1 -1
package/lib/scss/tokens.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Tue, 31 Jan 2023 14:02:01 GMT
|
|
4
4
|
|
|
5
5
|
$asset-font-source-sans-pro-400-normal: "fonts/source-sans-pro-v9-latin-regular";
|
|
6
6
|
$asset-font-source-sans-pro-400-italic: "fonts/source-sans-pro-v9-latin-italic";
|
package/lib/scss/utils.scss
CHANGED
package/lib/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { sprinkleValues } from "./vanilla-extract/sprinkleValues";
|
|
2
2
|
import type { Tokens } from "./tokens";
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
3
|
+
export type Color = keyof typeof sprinkleValues.colors;
|
|
4
|
+
export type IconName = keyof typeof Tokens.icon;
|
|
5
|
+
export type IconSize = keyof typeof Tokens.size.icon;
|
|
@@ -288,22 +288,22 @@ export declare const paddingProperties: {
|
|
|
288
288
|
} & {
|
|
289
289
|
styles: {
|
|
290
290
|
padding: {
|
|
291
|
-
mappings: ("
|
|
291
|
+
mappings: ("paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop")[];
|
|
292
292
|
};
|
|
293
293
|
paddingX: {
|
|
294
294
|
mappings: ("paddingLeft" | "paddingRight")[];
|
|
295
295
|
};
|
|
296
296
|
paddingY: {
|
|
297
|
-
mappings: ("
|
|
297
|
+
mappings: ("paddingBottom" | "paddingTop")[];
|
|
298
298
|
};
|
|
299
299
|
p: {
|
|
300
|
-
mappings: ("
|
|
300
|
+
mappings: ("paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop")[];
|
|
301
301
|
};
|
|
302
302
|
px: {
|
|
303
303
|
mappings: ("paddingLeft" | "paddingRight")[];
|
|
304
304
|
};
|
|
305
305
|
py: {
|
|
306
|
-
mappings: ("
|
|
306
|
+
mappings: ("paddingBottom" | "paddingTop")[];
|
|
307
307
|
};
|
|
308
308
|
pt: {
|
|
309
309
|
mappings: "paddingTop"[];
|