@matteoaliano/forest-ui 0.4.4 → 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/{chunk-IWYN6REP.mjs → chunk-TECEHFAG.mjs} +1023 -238
- package/dist/chunk-TECEHFAG.mjs.map +1 -0
- package/dist/index.d.mts +225 -4
- package/dist/index.d.ts +225 -4
- package/dist/index.js +2606 -721
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1245 -245
- package/dist/index.mjs.map +1 -1
- package/dist/theme.d.mts +3 -1
- package/dist/theme.d.ts +3 -1
- package/dist/theme.js +1093 -283
- package/dist/theme.js.map +1 -1
- package/dist/theme.mjs +96 -2
- package/dist/theme.mjs.map +1 -1
- package/package.json +1 -1
- package/skills/forest-agency/SKILL.md +21 -9
- package/skills/forest-agency/references/components.md +156 -48
- package/skills/forest-agency/references/patterns.md +2 -5
- package/skills/forest-alkemy-plus/SKILL.md +94 -0
- package/skills/forest-alkemy-plus/references/components.md +202 -0
- package/skills/forest-alkemy-plus/references/patterns.md +326 -0
- package/skills/forest-external/SKILL.md +21 -9
- package/skills/forest-external/references/components.md +156 -48
- package/skills/forest-external/references/patterns.md +2 -5
- package/skills/forest-internal/SKILL.md +21 -9
- package/skills/forest-internal/references/components.md +156 -48
- package/skills/forest-internal/references/patterns.md +2 -5
- package/dist/chunk-IWYN6REP.mjs.map +0 -1
package/dist/theme.d.mts
CHANGED
|
@@ -757,6 +757,8 @@ declare const forestAgencyPreset: ThemePreset;
|
|
|
757
757
|
|
|
758
758
|
declare const forestInternalPreset: ThemePreset;
|
|
759
759
|
|
|
760
|
+
declare const forestAlkemyPlusPreset: ThemePreset;
|
|
761
|
+
|
|
760
762
|
/** Get a preset by name. Returns `undefined` if not found. */
|
|
761
763
|
declare function getPreset(name: string): ThemePreset | undefined;
|
|
762
764
|
/** Register a custom preset (or override a built-in one). */
|
|
@@ -767,4 +769,4 @@ declare function getAvailablePresets(): string[];
|
|
|
767
769
|
declare const forestTheme: _mui_material.Theme;
|
|
768
770
|
declare const forestThemeOptions: _mui_material.ThemeOptions;
|
|
769
771
|
|
|
770
|
-
export { type DesignTokens, type PresetVariantConfig, type ThemePreset, alpha, avatarColors, base, bg, border, breadcrumbColors, buildTheme, buildThemeOptions, buttonColors, chartColors, container, display, error, fg, focusRings, fontFamily, fontFamilyMono, fontSize, fontWeight, forestAgencyPreset, forestExternalPreset, forestInternalPreset, forestTheme, forestThemeOptions, getAvailablePresets, getPreset, gray, iconColors, info, lineHeight, magenta, misc, navColors, radius, red, registerPreset, shadows, sliderColors, spacing, success, text, toggleColors, violet, warning, widths };
|
|
772
|
+
export { type DesignTokens, type PresetVariantConfig, type ThemePreset, alpha, avatarColors, base, bg, border, breadcrumbColors, buildTheme, buildThemeOptions, buttonColors, chartColors, container, display, error, fg, focusRings, fontFamily, fontFamilyMono, fontSize, fontWeight, forestAgencyPreset, forestAlkemyPlusPreset, forestExternalPreset, forestInternalPreset, forestTheme, forestThemeOptions, getAvailablePresets, getPreset, gray, iconColors, info, lineHeight, magenta, misc, navColors, radius, red, registerPreset, shadows, sliderColors, spacing, success, text, toggleColors, violet, warning, widths };
|
package/dist/theme.d.ts
CHANGED
|
@@ -757,6 +757,8 @@ declare const forestAgencyPreset: ThemePreset;
|
|
|
757
757
|
|
|
758
758
|
declare const forestInternalPreset: ThemePreset;
|
|
759
759
|
|
|
760
|
+
declare const forestAlkemyPlusPreset: ThemePreset;
|
|
761
|
+
|
|
760
762
|
/** Get a preset by name. Returns `undefined` if not found. */
|
|
761
763
|
declare function getPreset(name: string): ThemePreset | undefined;
|
|
762
764
|
/** Register a custom preset (or override a built-in one). */
|
|
@@ -767,4 +769,4 @@ declare function getAvailablePresets(): string[];
|
|
|
767
769
|
declare const forestTheme: _mui_material.Theme;
|
|
768
770
|
declare const forestThemeOptions: _mui_material.ThemeOptions;
|
|
769
771
|
|
|
770
|
-
export { type DesignTokens, type PresetVariantConfig, type ThemePreset, alpha, avatarColors, base, bg, border, breadcrumbColors, buildTheme, buildThemeOptions, buttonColors, chartColors, container, display, error, fg, focusRings, fontFamily, fontFamilyMono, fontSize, fontWeight, forestAgencyPreset, forestExternalPreset, forestInternalPreset, forestTheme, forestThemeOptions, getAvailablePresets, getPreset, gray, iconColors, info, lineHeight, magenta, misc, navColors, radius, red, registerPreset, shadows, sliderColors, spacing, success, text, toggleColors, violet, warning, widths };
|
|
772
|
+
export { type DesignTokens, type PresetVariantConfig, type ThemePreset, alpha, avatarColors, base, bg, border, breadcrumbColors, buildTheme, buildThemeOptions, buttonColors, chartColors, container, display, error, fg, focusRings, fontFamily, fontFamilyMono, fontSize, fontWeight, forestAgencyPreset, forestAlkemyPlusPreset, forestExternalPreset, forestInternalPreset, forestTheme, forestThemeOptions, getAvailablePresets, getPreset, gray, iconColors, info, lineHeight, magenta, misc, navColors, radius, red, registerPreset, shadows, sliderColors, spacing, success, text, toggleColors, violet, warning, widths };
|