@clerk/types 4.59.3 → 4.60.0-snapshot.v20250529201021
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 +9 -1
- package/dist/index.d.ts +9 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3968,7 +3968,15 @@ type WaitlistTheme = Theme;
|
|
|
3968
3968
|
type PricingTableTheme = Theme;
|
|
3969
3969
|
type CheckoutTheme = Theme;
|
|
3970
3970
|
type PlanDetailTheme = Theme;
|
|
3971
|
-
type
|
|
3971
|
+
type GlobalAppearanceOptions = {
|
|
3972
|
+
/**
|
|
3973
|
+
* The name of the CSS layer for Clerk component styles.
|
|
3974
|
+
* This is useful for advanced CSS customization, allowing you to control the cascade and prevent style conflicts by isolating Clerk's styles within a specific layer.
|
|
3975
|
+
* For more information on CSS layers, see the [MDN documentation on @layer](https://developer.mozilla.org/en-US/docs/Web/CSS/@layer).
|
|
3976
|
+
*/
|
|
3977
|
+
cssLayerName?: string;
|
|
3978
|
+
};
|
|
3979
|
+
type Appearance<T = Theme> = T & GlobalAppearanceOptions & {
|
|
3972
3980
|
/**
|
|
3973
3981
|
* Theme overrides that only apply to the `<SignIn/>` component
|
|
3974
3982
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -3968,7 +3968,15 @@ type WaitlistTheme = Theme;
|
|
|
3968
3968
|
type PricingTableTheme = Theme;
|
|
3969
3969
|
type CheckoutTheme = Theme;
|
|
3970
3970
|
type PlanDetailTheme = Theme;
|
|
3971
|
-
type
|
|
3971
|
+
type GlobalAppearanceOptions = {
|
|
3972
|
+
/**
|
|
3973
|
+
* The name of the CSS layer for Clerk component styles.
|
|
3974
|
+
* This is useful for advanced CSS customization, allowing you to control the cascade and prevent style conflicts by isolating Clerk's styles within a specific layer.
|
|
3975
|
+
* For more information on CSS layers, see the [MDN documentation on @layer](https://developer.mozilla.org/en-US/docs/Web/CSS/@layer).
|
|
3976
|
+
*/
|
|
3977
|
+
cssLayerName?: string;
|
|
3978
|
+
};
|
|
3979
|
+
type Appearance<T = Theme> = T & GlobalAppearanceOptions & {
|
|
3972
3980
|
/**
|
|
3973
3981
|
* Theme overrides that only apply to the `<SignIn/>` component
|
|
3974
3982
|
*/
|