@hive-ui/style-props 0.1.0 → 0.2.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 +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -29,7 +29,7 @@ type ResponsiveValue<T, ThemeType extends Theme = RequiredTheme> = T | null | Ar
|
|
|
29
29
|
//#endregion
|
|
30
30
|
//#region src/background.d.ts
|
|
31
31
|
declare const BACKGROUND_COLOR_TOKENS: readonly ["colorBackground", "colorBackgroundAvailable", "colorBackgroundBody", "colorBackgroundBodyElevation", "colorBackgroundBodyElevationPrimary", "colorBackgroundBodyInverse", "colorBackgroundBrand", "colorBackgroundBrand10", "colorBackgroundBrand20", "colorBackgroundBrand30", "colorBackgroundBrandHighlight", "colorBackgroundBrandHighlightWeakest", "colorBackgroundBrandStrong", "colorBackgroundBrandStronger", "colorBackgroundBusy", "colorBackgroundDecorative10Weakest", "colorBackgroundDecorative20Weakest", "colorBackgroundDecorative30Weakest", "colorBackgroundDecorative40Weakest", "colorBackgroundDestructive", "colorBackgroundDestructiveStrong", "colorBackgroundDestructiveStronger", "colorBackgroundDestructiveStrongest", "colorBackgroundDestructiveWeak", "colorBackgroundDestructiveWeaker", "colorBackgroundDestructiveWeakest", "colorBackgroundElevation", "colorBackgroundError", "colorBackgroundErrorStrong", "colorBackgroundErrorStronger", "colorBackgroundErrorStrongest", "colorBackgroundErrorWeakest", "colorBackgroundInverse", "colorBackgroundInverseElevation", "colorBackgroundInverseStrong", "colorBackgroundInverseStrongElevation", "colorBackgroundInverseStronger", "colorBackgroundInverseStrongerElevation", "colorBackgroundInverseStrongest", "colorBackgroundInverseWeakElevation", "colorBackgroundNeutralWeakest", "colorBackgroundNew", "colorBackgroundNewWeakest", "colorBackgroundNotification", "colorBackgroundOffline", "colorBackgroundOverlay", "colorBackgroundPrimary", "colorBackgroundPrimaryStrong", "colorBackgroundPrimaryStronger", "colorBackgroundPrimaryStrongest", "colorBackgroundPrimaryWeak", "colorBackgroundPrimaryWeaker", "colorBackgroundPrimaryWeakest", "colorBackgroundRequired", "colorBackgroundRowStriped", "colorBackgroundStrong", "colorBackgroundStrongElevation", "colorBackgroundStronger", "colorBackgroundStrongest", "colorBackgroundSubaccount", "colorBackgroundSuccess", "colorBackgroundSuccessWeakest", "colorBackgroundTrial", "colorBackgroundUnavailable", "colorBackgroundUser", "colorBackgroundWarning", "colorBackgroundWarningWeakest", "colorBackgroundWeak", "colorBackgroundWeakElevation", "colorBackgroundWeaker", "colorBackgroundWeakerElevation", "colorBackgroundWeakest"];
|
|
32
|
-
type BackgroundColorToken = (typeof BACKGROUND_COLOR_TOKENS)[number];
|
|
32
|
+
type BackgroundColorToken = (typeof BACKGROUND_COLOR_TOKENS)[number] | "transparent" | "inherit";
|
|
33
33
|
type BackgroundColor = ResponsiveValue<BackgroundColorToken>;
|
|
34
34
|
type BackgroundImageOptions = Properties["backgroundImage"];
|
|
35
35
|
type BackgroundSizeOptions = Properties["backgroundSize"];
|