wimui 0.2.0 → 0.4.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/WimProvider.cjs +1 -1
- package/dist/WimProvider.d.ts +9 -2
- package/dist/WimProvider.js +27 -21
- package/dist/components/layout/Footer/Footer.cjs +1 -1
- package/dist/components/layout/Footer/Footer.d.ts +2 -0
- package/dist/components/layout/Footer/Footer.js +5 -5
- package/dist/components/layout/Footer/footer.module.cjs +1 -1
- package/dist/components/layout/Footer/footer.module.js +7 -6
- package/dist/components/layout/Header/Header.cjs +1 -1
- package/dist/components/layout/Header/Header.d.ts +2 -0
- package/dist/components/layout/Header/Header.js +5 -5
- package/dist/components/layout/Header/header.module.cjs +1 -1
- package/dist/components/layout/Header/header.module.js +10 -9
- package/dist/components/layout/Navbar/Navbar.cjs +1 -1
- package/dist/components/layout/Navbar/Navbar.d.ts +2 -0
- package/dist/components/layout/Navbar/Navbar.js +7 -7
- package/dist/components/layout/Navbar/navbar.module.cjs +1 -1
- package/dist/components/layout/Navbar/navbar.module.js +15 -14
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -2
- package/dist/llms-full.txt +2941 -0
- package/dist/llms.txt +415 -0
- package/dist/preset.cjs +2 -0
- package/dist/preset.d.ts +11 -0
- package/dist/preset.js +16 -0
- package/dist/styles.css +2 -2
- package/dist/tokens/generated/presets.cjs +2 -0
- package/dist/tokens/generated/presets.d.ts +19 -0
- package/dist/tokens/generated/presets.js +21 -0
- package/dist/wimui.umd.css +1 -1
- package/dist/wimui.umd.js +2 -2
- package/package.json +20 -17
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
var e=[{name:`minimal`,label:`Minimal`,description:`Sharp corners and restrained emphasis. Keeps the default accent.`},{name:`soft`,label:`Soft`,description:`Rounded, friendly shapes with a calm violet accent.`},{name:`bold`,label:`Bold`,description:`Confident radius and a high-impact red accent.`}];exports.WIM_PRESETS=e;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly — generated by scripts/generate-presets.js.
|
|
3
|
+
* Public catalog of theme presets. Consumed by WimProvider / docs.
|
|
4
|
+
*/
|
|
5
|
+
export declare const WIM_PRESETS: readonly [{
|
|
6
|
+
readonly name: "minimal";
|
|
7
|
+
readonly label: "Minimal";
|
|
8
|
+
readonly description: "Sharp corners and restrained emphasis. Keeps the default accent.";
|
|
9
|
+
}, {
|
|
10
|
+
readonly name: "soft";
|
|
11
|
+
readonly label: "Soft";
|
|
12
|
+
readonly description: "Rounded, friendly shapes with a calm violet accent.";
|
|
13
|
+
}, {
|
|
14
|
+
readonly name: "bold";
|
|
15
|
+
readonly label: "Bold";
|
|
16
|
+
readonly description: "Confident radius and a high-impact red accent.";
|
|
17
|
+
}];
|
|
18
|
+
/** Name of a built-in theme preset. */
|
|
19
|
+
export type WimPresetName = (typeof WIM_PRESETS)[number]["name"];
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region src/tokens/generated/presets.ts
|
|
3
|
+
var e = [
|
|
4
|
+
{
|
|
5
|
+
name: "minimal",
|
|
6
|
+
label: "Minimal",
|
|
7
|
+
description: "Sharp corners and restrained emphasis. Keeps the default accent."
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
name: "soft",
|
|
11
|
+
label: "Soft",
|
|
12
|
+
description: "Rounded, friendly shapes with a calm violet accent."
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
name: "bold",
|
|
16
|
+
label: "Bold",
|
|
17
|
+
description: "Confident radius and a high-impact red accent."
|
|
18
|
+
}
|
|
19
|
+
];
|
|
20
|
+
//#endregion
|
|
21
|
+
export { e as WIM_PRESETS };
|