@tenerife.music/ui 1.0.12 → 1.0.13
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/README.md +12 -8
- package/dist/{colors-DPNI96bB.d.cts → colors-CVA7_16U.d.cts} +1 -1
- package/dist/{colors-DPNI96bB.d.ts → colors-CVA7_16U.d.ts} +1 -1
- package/dist/index-BgXvioll.d.cts +6845 -0
- package/dist/index-Bv4wWj9I.d.ts +6845 -0
- package/dist/index.cjs +4920 -4140
- package/dist/index.d.cts +755 -461
- package/dist/index.d.ts +755 -461
- package/dist/index.mjs +4884 -4123
- package/dist/theme/index.cjs +0 -13
- package/dist/theme/index.d.cts +3 -78
- package/dist/theme/index.d.ts +3 -78
- package/dist/theme/index.mjs +1 -11
- package/dist/tokens/index.cjs +526 -1
- package/dist/tokens/index.d.cts +2 -5488
- package/dist/tokens/index.d.ts +2 -5488
- package/dist/tokens/index.mjs +526 -2
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -72,14 +72,18 @@ export default function App() {
|
|
|
72
72
|
|
|
73
73
|
## 📚 Documentation
|
|
74
74
|
|
|
75
|
-
| Document
|
|
76
|
-
|
|
|
77
|
-
| **[Complete Guide](./docs/GETTING_STARTED.md)**
|
|
78
|
-
| [Quick Start](./docs/QUICK_START.md)
|
|
79
|
-
| [API Reference](./docs/public-api.md)
|
|
80
|
-
| [Tokens Guide](./docs/TOKENS_GUIDE.md)
|
|
81
|
-
| [Theme Guide](./docs/THEME_GUIDE.md)
|
|
82
|
-
| [
|
|
75
|
+
| Document | Description |
|
|
76
|
+
| ------------------------------------------------------------------------- | ------------------------------------------------------------- |
|
|
77
|
+
| **[Complete Guide](./docs/GETTING_STARTED.md)** | Comprehensive guide for installation, setup, and usage |
|
|
78
|
+
| [Quick Start](./docs/QUICK_START.md) | Get started in 30 seconds |
|
|
79
|
+
| [API Reference](./docs/public-api.md) | Complete API documentation for all components |
|
|
80
|
+
| [Tokens Guide](./docs/TOKENS_GUIDE.md) | Working with design tokens |
|
|
81
|
+
| [Theme Guide](./docs/THEME_GUIDE.md) | Theme setup and customization |
|
|
82
|
+
| **[Architecture Lock](./docs/architecture/TUI_ARCHITECTURE_LOCK.md)** | 🔒 Foundation architecture lock and rules |
|
|
83
|
+
| **[Final Foundation Lock](./docs/architecture/FINAL_FOUNDATION_LOCK.md)** | 🔒 **Authoritative Foundation lock** (single source of truth) |
|
|
84
|
+
| [Storybook](https://Tureckiy-zart.github.io/tenerife-ui/) | Interactive examples of all components |
|
|
85
|
+
|
|
86
|
+
> 🔒 **Architecture Lock:** The UI foundation architecture is **locked** and **immutable**. See [Final Foundation Lock](./docs/architecture/FINAL_FOUNDATION_LOCK.md) for the authoritative Foundation lock document (single source of truth), or [Architecture Lock](./docs/architecture/TUI_ARCHITECTURE_LOCK.md) for detailed architecture rules and guidelines.
|
|
83
87
|
|
|
84
88
|
---
|
|
85
89
|
|
|
@@ -286,4 +286,4 @@ declare const tailwindThemeColors: {
|
|
|
286
286
|
};
|
|
287
287
|
};
|
|
288
288
|
|
|
289
|
-
export { type BaseColorTokens as B, type ColorScale as C, type Mode as M, type SurfaceColors as S, type TextColors as T, type
|
|
289
|
+
export { type BaseColorTokens as B, type ColorScale as C, type Mode as M, type SurfaceColors as S, type TextColors as T, type SemanticColors as a, type ChartColors as b, type ColorTokens as c, cssVariableColorTokens as d, accentColors as e, baseColors as f, chartColors as g, colorCSSVariables as h, semanticColors as i, surfaceColors as j, textColors as k, primaryColors as p, secondaryColors as s, tailwindThemeColors as t };
|
|
@@ -286,4 +286,4 @@ declare const tailwindThemeColors: {
|
|
|
286
286
|
};
|
|
287
287
|
};
|
|
288
288
|
|
|
289
|
-
export { type BaseColorTokens as B, type ColorScale as C, type Mode as M, type SurfaceColors as S, type TextColors as T, type
|
|
289
|
+
export { type BaseColorTokens as B, type ColorScale as C, type Mode as M, type SurfaceColors as S, type TextColors as T, type SemanticColors as a, type ChartColors as b, type ColorTokens as c, cssVariableColorTokens as d, accentColors as e, baseColors as f, chartColors as g, colorCSSVariables as h, semanticColors as i, surfaceColors as j, textColors as k, primaryColors as p, secondaryColors as s, tailwindThemeColors as t };
|