@baseline-ui/tokens 0.3.0 → 0.5.0
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 +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -8
package/dist/index.d.mts
CHANGED
|
@@ -1455,6 +1455,10 @@ declare const breakpoints: {
|
|
|
1455
1455
|
};
|
|
1456
1456
|
type Breakpoint = keyof typeof breakpoints;
|
|
1457
1457
|
type CSSProps = Omit<StyleRule, "@media" | "@supports">;
|
|
1458
|
+
declare const queries: {
|
|
1459
|
+
tablet: string;
|
|
1460
|
+
desktop: string;
|
|
1461
|
+
};
|
|
1458
1462
|
interface ResponsiveStyle {
|
|
1459
1463
|
mobile?: CSSProps;
|
|
1460
1464
|
tablet?: CSSProps;
|
|
@@ -1603,4 +1607,4 @@ interface Elevation {
|
|
|
1603
1607
|
medium: string;
|
|
1604
1608
|
}
|
|
1605
1609
|
|
|
1606
|
-
export { type Breakpoint, Layers, type Sprinkles, type Theme, Unstable_Sprinkles, type Unstable_SprinklesInterface, breakpoints, dark as darkTheme, light as lightTheme, responsiveStyle, sprinkles, themeContract, themeVars };
|
|
1610
|
+
export { type Breakpoint, Layers, type Sprinkles, type Theme, Unstable_Sprinkles, type Unstable_SprinklesInterface, breakpoints, dark as darkTheme, light as lightTheme, queries, responsiveStyle, sprinkles, themeContract, themeVars };
|
package/dist/index.d.ts
CHANGED
|
@@ -1455,6 +1455,10 @@ declare const breakpoints: {
|
|
|
1455
1455
|
};
|
|
1456
1456
|
type Breakpoint = keyof typeof breakpoints;
|
|
1457
1457
|
type CSSProps = Omit<StyleRule, "@media" | "@supports">;
|
|
1458
|
+
declare const queries: {
|
|
1459
|
+
tablet: string;
|
|
1460
|
+
desktop: string;
|
|
1461
|
+
};
|
|
1458
1462
|
interface ResponsiveStyle {
|
|
1459
1463
|
mobile?: CSSProps;
|
|
1460
1464
|
tablet?: CSSProps;
|
|
@@ -1603,4 +1607,4 @@ interface Elevation {
|
|
|
1603
1607
|
medium: string;
|
|
1604
1608
|
}
|
|
1605
1609
|
|
|
1606
|
-
export { type Breakpoint, Layers, type Sprinkles, type Theme, Unstable_Sprinkles, type Unstable_SprinklesInterface, breakpoints, dark as darkTheme, light as lightTheme, responsiveStyle, sprinkles, themeContract, themeVars };
|
|
1610
|
+
export { type Breakpoint, Layers, type Sprinkles, type Theme, Unstable_Sprinkles, type Unstable_SprinklesInterface, breakpoints, dark as darkTheme, light as lightTheme, queries, responsiveStyle, sprinkles, themeContract, themeVars };
|