@aakaar/global 0.0.2 → 0.0.4
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/.turbo/turbo-build.log +2 -2
- package/.turbo/turbo-ts.log +1 -1
- package/dist/index.d.mts +30 -0
- package/dist/index.mjs +22 -0
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @aakaar/global@0.0.
|
|
3
|
+
> @aakaar/global@0.0.4 build /Users/navjotahuja/Projects/aakaar/packages/global
|
|
4
4
|
> tsup src/index.ts
|
|
5
5
|
|
|
6
6
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -9,4 +9,4 @@
|
|
|
9
9
|
[34mCLI[39m Target: es2022
|
|
10
10
|
[34mCJS[39m Build start
|
|
11
11
|
[32mCJS[39m [1mdist/index.js [22m[32m1.77 KB[39m
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 18ms
|
package/.turbo/turbo-ts.log
CHANGED
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
type PackageManager = "npm" | "yarn" | "pnpm" | "bun" | "deno";
|
|
2
|
+
type RegistryFile = {
|
|
3
|
+
name: string;
|
|
4
|
+
content: string;
|
|
5
|
+
};
|
|
6
|
+
type ComponentRegistry = {
|
|
7
|
+
name: string;
|
|
8
|
+
dependencies?: string[];
|
|
9
|
+
files: RegistryFile[];
|
|
10
|
+
};
|
|
11
|
+
declare enum AakaarComponent {
|
|
12
|
+
accordion = "accordion",
|
|
13
|
+
avatar = "avatar",
|
|
14
|
+
breadcrumb = "breadcrumb",
|
|
15
|
+
button = "button",
|
|
16
|
+
card = "card",
|
|
17
|
+
checkbox = "checkbox",
|
|
18
|
+
dialog = "dialog",
|
|
19
|
+
input = "input",
|
|
20
|
+
label = "label",
|
|
21
|
+
popover = "popover",
|
|
22
|
+
radio = "radio",
|
|
23
|
+
select = "select",
|
|
24
|
+
switch = "switch",
|
|
25
|
+
tabs = "tabs",
|
|
26
|
+
textarea = "textarea"
|
|
27
|
+
}
|
|
28
|
+
type AakaarComponentName = keyof typeof AakaarComponent;
|
|
29
|
+
|
|
30
|
+
export { AakaarComponent, type AakaarComponentName, type ComponentRegistry, type PackageManager, type RegistryFile };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
var AakaarComponent = /* @__PURE__ */ ((AakaarComponent2) => {
|
|
3
|
+
AakaarComponent2["accordion"] = "accordion";
|
|
4
|
+
AakaarComponent2["avatar"] = "avatar";
|
|
5
|
+
AakaarComponent2["breadcrumb"] = "breadcrumb";
|
|
6
|
+
AakaarComponent2["button"] = "button";
|
|
7
|
+
AakaarComponent2["card"] = "card";
|
|
8
|
+
AakaarComponent2["checkbox"] = "checkbox";
|
|
9
|
+
AakaarComponent2["dialog"] = "dialog";
|
|
10
|
+
AakaarComponent2["input"] = "input";
|
|
11
|
+
AakaarComponent2["label"] = "label";
|
|
12
|
+
AakaarComponent2["popover"] = "popover";
|
|
13
|
+
AakaarComponent2["radio"] = "radio";
|
|
14
|
+
AakaarComponent2["select"] = "select";
|
|
15
|
+
AakaarComponent2["switch"] = "switch";
|
|
16
|
+
AakaarComponent2["tabs"] = "tabs";
|
|
17
|
+
AakaarComponent2["textarea"] = "textarea";
|
|
18
|
+
return AakaarComponent2;
|
|
19
|
+
})(AakaarComponent || {});
|
|
20
|
+
export {
|
|
21
|
+
AakaarComponent
|
|
22
|
+
};
|