@aakaar/global 0.0.11 → 0.0.12
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 +3 -3
- package/.turbo/turbo-ts.log +1 -1
- package/dist/index.js +5 -0
- package/package.json +1 -1
- package/src/index.ts +5 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @aakaar/global@0.0.
|
|
3
|
+
> @aakaar/global@0.0.12 build /Users/navjotahuja/Projects/aakaar/packages/global
|
|
4
4
|
> tsup src/index.ts
|
|
5
5
|
|
|
6
6
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
[34mCLI[39m tsup v8.5.0
|
|
9
9
|
[34mCLI[39m Target: es2022
|
|
10
10
|
[34mCJS[39m Build start
|
|
11
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m2.20 KB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 23ms
|
package/.turbo/turbo-ts.log
CHANGED
package/dist/index.js
CHANGED
|
@@ -25,10 +25,15 @@ __export(index_exports, {
|
|
|
25
25
|
module.exports = __toCommonJS(index_exports);
|
|
26
26
|
var AakaarComponent = /* @__PURE__ */ ((AakaarComponent2) => {
|
|
27
27
|
AakaarComponent2["accordion"] = "accordion";
|
|
28
|
+
AakaarComponent2["alert"] = "alert";
|
|
28
29
|
AakaarComponent2["alertDialog"] = "alert-dialog";
|
|
30
|
+
AakaarComponent2["aspectRatio"] = "aspect-ratio";
|
|
29
31
|
AakaarComponent2["avatar"] = "avatar";
|
|
32
|
+
AakaarComponent2["badge"] = "badge";
|
|
30
33
|
AakaarComponent2["breadcrumb"] = "breadcrumb";
|
|
31
34
|
AakaarComponent2["button"] = "button";
|
|
35
|
+
AakaarComponent2["buttonGroup"] = "button-group";
|
|
36
|
+
AakaarComponent2["calendar"] = "calendar";
|
|
32
37
|
AakaarComponent2["card"] = "card";
|
|
33
38
|
AakaarComponent2["checkbox"] = "checkbox";
|
|
34
39
|
AakaarComponent2["dialog"] = "dialog";
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -16,10 +16,15 @@ export type ComponentRegistry = {
|
|
|
16
16
|
|
|
17
17
|
export enum AakaarComponent {
|
|
18
18
|
accordion = "accordion",
|
|
19
|
+
alert = "alert",
|
|
19
20
|
alertDialog = "alert-dialog",
|
|
21
|
+
aspectRatio = "aspect-ratio",
|
|
20
22
|
avatar = "avatar",
|
|
23
|
+
badge = "badge",
|
|
21
24
|
breadcrumb = "breadcrumb",
|
|
22
25
|
button = "button",
|
|
26
|
+
buttonGroup = "button-group",
|
|
27
|
+
calendar = "calendar",
|
|
23
28
|
card = "card",
|
|
24
29
|
checkbox = "checkbox",
|
|
25
30
|
dialog = "dialog",
|