@amogads/ui 1.0.2 → 1.1.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/README.md +86 -78
- package/dist/index.d.ts +1 -952
- package/dist/index.js +2527 -1406
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2443 -1296
- package/dist/index.mjs.map +1 -1
- package/dist/pages.d.ts +16 -0
- package/dist/pages.js +39982 -0
- package/dist/pages.js.map +1 -0
- package/dist/pages.mjs +40273 -0
- package/dist/pages.mjs.map +1 -0
- package/dist/sdk.d.ts +1 -0
- package/dist/sdk.js +520 -0
- package/dist/sdk.js.map +1 -0
- package/dist/sdk.mjs +476 -0
- package/dist/sdk.mjs.map +1 -0
- package/dist/server.d.ts +20 -0
- package/dist/server.js +2713 -0
- package/dist/server.js.map +1 -0
- package/dist/server.mjs +2662 -0
- package/dist/server.mjs.map +1 -0
- package/dist/services.d.ts +1 -0
- package/dist/services.js +2042 -0
- package/dist/services.js.map +1 -0
- package/dist/services.mjs +1983 -0
- package/dist/services.mjs.map +1 -0
- package/dist/stores.d.ts +1 -0
- package/dist/stores.js +559 -0
- package/dist/stores.js.map +1 -0
- package/dist/stores.mjs +531 -0
- package/dist/stores.mjs.map +1 -0
- package/dist/tokens.d.ts +1 -56
- package/dist/tokens.js +0 -1
- package/dist/tokens.js.map +1 -1
- package/package.json +26 -1
- package/dist/index.d.mts +0 -952
- package/dist/tokens.d.mts +0 -56
package/dist/tokens.d.mts
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Amoga Design System — Tokens Module
|
|
3
|
-
*
|
|
4
|
-
* Exposes design token constants and metadata for TypeScript usage.
|
|
5
|
-
*/
|
|
6
|
-
declare const SEMANTIC_TOKENS: {
|
|
7
|
-
readonly background: "var(--background)";
|
|
8
|
-
readonly foreground: "var(--foreground)";
|
|
9
|
-
readonly card: "var(--card)";
|
|
10
|
-
readonly cardForeground: "var(--card-foreground)";
|
|
11
|
-
readonly popover: "var(--popover)";
|
|
12
|
-
readonly popoverForeground: "var(--popover-foreground)";
|
|
13
|
-
readonly primary: "var(--primary)";
|
|
14
|
-
readonly primaryForeground: "var(--primary-foreground)";
|
|
15
|
-
readonly secondary: "var(--secondary)";
|
|
16
|
-
readonly secondaryForeground: "var(--secondary-foreground)";
|
|
17
|
-
readonly muted: "var(--muted)";
|
|
18
|
-
readonly mutedForeground: "var(--muted-foreground)";
|
|
19
|
-
readonly accent: "var(--accent)";
|
|
20
|
-
readonly accentForeground: "var(--accent-foreground)";
|
|
21
|
-
readonly destructive: "var(--destructive)";
|
|
22
|
-
readonly destructiveForeground: "var(--destructive-foreground)";
|
|
23
|
-
readonly success: "var(--success)";
|
|
24
|
-
readonly successForeground: "var(--success-foreground)";
|
|
25
|
-
readonly warning: "var(--warning)";
|
|
26
|
-
readonly warningForeground: "var(--warning-foreground)";
|
|
27
|
-
readonly info: "var(--info)";
|
|
28
|
-
readonly infoForeground: "var(--info-foreground)";
|
|
29
|
-
readonly border: "var(--border)";
|
|
30
|
-
readonly input: "var(--input)";
|
|
31
|
-
readonly ring: "var(--ring)";
|
|
32
|
-
readonly radius: "var(--radius)";
|
|
33
|
-
readonly radiusSm: "var(--radius-sm)";
|
|
34
|
-
readonly radiusMd: "var(--radius-md)";
|
|
35
|
-
readonly radiusLg: "var(--radius-lg)";
|
|
36
|
-
readonly radiusXl: "var(--radius-xl)";
|
|
37
|
-
};
|
|
38
|
-
declare const CHART_TOKENS: {
|
|
39
|
-
readonly chart1: "var(--chart-1)";
|
|
40
|
-
readonly chart2: "var(--chart-2)";
|
|
41
|
-
readonly chart3: "var(--chart-3)";
|
|
42
|
-
readonly chart4: "var(--chart-4)";
|
|
43
|
-
readonly chart5: "var(--chart-5)";
|
|
44
|
-
};
|
|
45
|
-
declare const SIDEBAR_TOKENS: {
|
|
46
|
-
readonly sidebar: "var(--sidebar)";
|
|
47
|
-
readonly sidebarForeground: "var(--sidebar-foreground)";
|
|
48
|
-
readonly sidebarPrimary: "var(--sidebar-primary)";
|
|
49
|
-
readonly sidebarPrimaryForeground: "var(--sidebar-primary-foreground)";
|
|
50
|
-
readonly sidebarAccent: "var(--sidebar-accent)";
|
|
51
|
-
readonly sidebarAccentForeground: "var(--sidebar-accent-foreground)";
|
|
52
|
-
readonly sidebarBorder: "var(--sidebar-border)";
|
|
53
|
-
readonly sidebarRing: "var(--sidebar-ring)";
|
|
54
|
-
};
|
|
55
|
-
|
|
56
|
-
export { CHART_TOKENS, SEMANTIC_TOKENS, SIDEBAR_TOKENS };
|