@vaneui/ui 0.2.1-alpha.20250901145733.e9c8d4d → 0.2.1-alpha.20250904211915.5efd1b4

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.
Files changed (29) hide show
  1. package/dist/components/ui/theme/appearance/genericVariantTheme.d.ts +0 -1
  2. package/dist/components/ui/theme/layout/borderTheme.d.ts +0 -1
  3. package/dist/components/ui/theme/layout/directionTheme.d.ts +0 -1
  4. package/dist/components/ui/theme/layout/displayTheme.d.ts +0 -1
  5. package/dist/components/ui/theme/layout/hideTheme.d.ts +0 -1
  6. package/dist/components/ui/theme/layout/itemsTheme.d.ts +0 -1
  7. package/dist/components/ui/theme/layout/justifyTheme.d.ts +0 -1
  8. package/dist/components/ui/theme/layout/overflowTheme.d.ts +0 -1
  9. package/dist/components/ui/theme/layout/positionTheme.d.ts +0 -1
  10. package/dist/components/ui/theme/layout/ringTheme.d.ts +0 -1
  11. package/dist/components/ui/theme/layout/wrapTheme.d.ts +0 -1
  12. package/dist/components/ui/theme/list/listStyleTheme.d.ts +0 -1
  13. package/dist/components/ui/theme/size/breakpointTheme.d.ts +0 -1
  14. package/dist/components/ui/theme/size/gapTheme.d.ts +0 -1
  15. package/dist/components/ui/theme/size/paddingTheme.d.ts +0 -1
  16. package/dist/components/ui/theme/size/plTheme.d.ts +0 -1
  17. package/dist/components/ui/theme/size/pxTheme.d.ts +0 -1
  18. package/dist/components/ui/theme/size/pyTheme.d.ts +0 -1
  19. package/dist/components/ui/theme/typography/fontFamilyTheme.d.ts +0 -1
  20. package/dist/components/ui/theme/typography/fontStyleTheme.d.ts +0 -1
  21. package/dist/components/ui/theme/typography/fontWeightTheme.d.ts +0 -1
  22. package/dist/components/ui/theme/typography/textAlignTheme.d.ts +0 -1
  23. package/dist/components/ui/theme/typography/textDecorationTheme.d.ts +0 -1
  24. package/dist/components/ui/theme/typography/textTransformTheme.d.ts +0 -1
  25. package/dist/index.esm.js +146 -182
  26. package/dist/index.esm.js.map +1 -1
  27. package/dist/index.js +146 -182
  28. package/dist/index.js.map +1 -1
  29. package/package.json +1 -1
@@ -17,7 +17,6 @@ export declare class GenericVariantTheme<T extends BaseTheme> extends BaseTheme
17
17
  static createBgAppearanceTheme(): GenericVariantTheme<AppearanceTheme>;
18
18
  static createCheckboxBgAppearanceTheme(): GenericVariantTheme<AppearanceTheme>;
19
19
  static createUIElementBgAppearanceTheme(): GenericVariantTheme<AppearanceTheme>;
20
- static createSimpleBgAppearanceTheme(): GenericVariantTheme<AppearanceTheme>;
21
20
  static createSimpleUIElementBgAppearanceTheme(): GenericVariantTheme<AppearanceTheme>;
22
21
  static createAccentColorAppearanceTheme(): GenericVariantTheme<AppearanceTheme>;
23
22
  static createCheckedAppearanceTheme(): GenericVariantTheme<AppearanceTheme>;
@@ -4,7 +4,6 @@ import { ModeKey } from "../../props";
4
4
  export interface BorderTheme extends Record<ModeKey, string> {
5
5
  }
6
6
  export declare class BorderTheme extends BaseTheme {
7
- readonly defaultClasses: Record<ModeKey, string>;
8
7
  constructor(initial?: Partial<Record<ModeKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface DirectionTheme extends Record<FlexDirectionKey, string> {
5
5
  }
6
6
  export declare class DirectionTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<FlexDirectionKey, string>;
8
7
  constructor(initial?: Partial<Record<FlexDirectionKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface DisplayTheme extends Record<DisplayKey, string> {
5
5
  }
6
6
  export declare class DisplayTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<DisplayKey, string>;
8
7
  constructor(initialConfig?: Partial<Record<DisplayKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface HideTheme extends Record<HideKey, string> {
5
5
  }
6
6
  export declare class HideTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<HideKey, string>;
8
7
  constructor(initialConfig?: Partial<Record<HideKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface ItemsTheme extends Record<ItemsKey, string> {
5
5
  }
6
6
  export declare class ItemsTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<ItemsKey, string>;
8
7
  constructor(initialConfig?: Partial<Record<ItemsKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface JustifyTheme extends Record<JustifyKey, string> {
5
5
  }
6
6
  export declare class JustifyTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<JustifyKey, string>;
8
7
  constructor(initialConfig?: Partial<Record<JustifyKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface OverflowTheme extends Record<OverflowKey, string> {
5
5
  }
6
6
  export declare class OverflowTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<OverflowKey, string>;
8
7
  constructor(initialConfig?: Partial<Record<OverflowKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface PositionTheme extends Record<PositionKey, string> {
5
5
  }
6
6
  export declare class PositionTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<PositionKey, string>;
8
7
  constructor(initialConfig?: Partial<Record<PositionKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import { ModeKey } from "../../props";
4
4
  export interface RingTheme extends Record<ModeKey, string> {
5
5
  }
6
6
  export declare class RingTheme extends BaseTheme {
7
- readonly defaultClasses: Record<ModeKey, string>;
8
7
  constructor(initial?: Partial<Record<ModeKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface WrapTheme extends Record<WrapKey, string> {
5
5
  }
6
6
  export declare class WrapTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<WrapKey, string>;
8
7
  constructor(initialConfig?: Partial<Record<WrapKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -5,6 +5,5 @@ export interface ListStyleTheme extends Record<ListStyleKey, string> {
5
5
  }
6
6
  export declare class ListStyleTheme extends BaseTheme {
7
7
  constructor(initial?: Partial<Record<ListStyleKey, string>>);
8
- private getDefaultClass;
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import { BreakpointKey } from "../../props";
4
4
  export interface BreakpointTheme extends Record<BreakpointKey, string> {
5
5
  }
6
6
  export declare class BreakpointTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<BreakpointKey, string>;
8
7
  constructor(initial?: Partial<Record<BreakpointKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface GapTheme extends Record<SizeKey, string> {
5
5
  }
6
6
  export declare class GapTheme extends BaseTheme {
7
- readonly defaultClasses: Record<SizeKey, string>;
8
7
  constructor(sizeMap?: Record<SizeKey, string>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface PaddingTheme extends Record<SizeKey, string> {
5
5
  }
6
6
  export declare class PaddingTheme extends BaseTheme {
7
- readonly defaultClasses: Record<SizeKey, string>;
8
7
  constructor(initial?: Partial<Record<SizeKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -3,6 +3,5 @@ import { PaddingTheme } from "./paddingTheme";
3
3
  export interface PlTheme extends Record<SizeKey, string> {
4
4
  }
5
5
  export declare class PlTheme extends PaddingTheme {
6
- readonly defaultClasses: Record<SizeKey, string>;
7
6
  constructor(sizeMap?: Record<SizeKey, string>);
8
7
  }
@@ -3,6 +3,5 @@ import { PaddingTheme } from "./paddingTheme";
3
3
  export interface PxTheme extends Record<SizeKey, string> {
4
4
  }
5
5
  export declare class PxTheme extends PaddingTheme {
6
- readonly defaultClasses: Record<SizeKey, string>;
7
6
  constructor(sizeMap?: Record<SizeKey, string>);
8
7
  }
@@ -3,6 +3,5 @@ import { PaddingTheme } from "./paddingTheme";
3
3
  export interface PyTheme extends Record<SizeKey, string> {
4
4
  }
5
5
  export declare class PyTheme extends PaddingTheme {
6
- readonly defaultClasses: Record<SizeKey, string>;
7
6
  constructor(sizeMap?: Record<SizeKey, string>);
8
7
  }
@@ -3,7 +3,6 @@ import { BaseTheme } from "../common/baseTheme";
3
3
  export interface FontFamilyTheme extends Record<FontFamilyKey, string> {
4
4
  }
5
5
  export declare class FontFamilyTheme extends BaseTheme {
6
- static readonly defaultClasses: Record<FontFamilyKey, string>;
7
6
  constructor(initial?: Partial<Record<FontFamilyKey, string>>);
8
7
  getClasses(extractedKeys: CategoryProps): string[];
9
8
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface FontStyleTheme extends Record<FontStyleKey, string> {
5
5
  }
6
6
  export declare class FontStyleTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<FontStyleKey, string>;
8
7
  constructor(initial?: Partial<Record<FontStyleKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface FontWeightTheme extends Record<FontWeightKey, string> {
5
5
  }
6
6
  export declare class FontWeightTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<FontWeightKey, string>;
8
7
  constructor(initial?: Partial<Record<FontWeightKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface TextAlignTheme extends Record<TextAlignKey, string> {
5
5
  }
6
6
  export declare class TextAlignTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<TextAlignKey, string>;
8
7
  constructor(initial?: Partial<Record<TextAlignKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface TextDecorationTheme extends Record<TextDecorationKey, string> {
5
5
  }
6
6
  export declare class TextDecorationTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<TextDecorationKey, string>;
8
7
  constructor(initial?: Partial<Record<TextDecorationKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }
@@ -4,7 +4,6 @@ import type { CategoryProps } from "../../props";
4
4
  export interface TextTransformTheme extends Record<TextTransformKey, string> {
5
5
  }
6
6
  export declare class TextTransformTheme extends BaseTheme {
7
- static readonly defaultClasses: Record<TextTransformKey, string>;
8
7
  constructor(initial?: Partial<Record<TextTransformKey, string>>);
9
8
  getClasses(extractedKeys: CategoryProps): string[];
10
9
  }