@cloudtower/eagle 0.27.92 → 0.27.93
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/cjs/core/Avatar/index.js +37 -0
- package/dist/cjs/core/Nav/index.js +37 -0
- package/dist/cjs/core/Nav/style.js +13 -0
- package/dist/cjs/core/index.js +24 -24
- package/dist/cjs/index.js +250 -246
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +1292 -1292
- package/dist/esm/core/Avatar/index.js +31 -0
- package/dist/esm/core/Nav/index.js +30 -0
- package/dist/esm/core/Nav/style.js +10 -0
- package/dist/esm/index.js +3 -1
- package/dist/esm/stats1.html +1 -1
- package/dist/src/core/index.d.ts +3 -3
- package/dist/style.css +1080 -1080
- package/package.json +4 -4
package/dist/src/core/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./AccordionCard";
|
|
2
2
|
export * from "./Alert";
|
|
3
|
+
export * from "./Antd5Dropdown";
|
|
3
4
|
export * from "./Arch";
|
|
4
5
|
export * from "./Badge";
|
|
5
6
|
export * from "./BaseIcon";
|
|
@@ -83,9 +84,6 @@ export * from "./Tooltip";
|
|
|
83
84
|
export * from "./Truncate";
|
|
84
85
|
export * from "./Typo";
|
|
85
86
|
export * from "./Units";
|
|
86
|
-
export * from "./Avatar";
|
|
87
|
-
export * from "./Nav";
|
|
88
|
-
export * from "./Antd5Dropdown";
|
|
89
87
|
export declare const units: {
|
|
90
88
|
Percent: import("./Units").PercentFn;
|
|
91
89
|
Byte: import("./Units").UnitFn;
|
|
@@ -100,6 +98,7 @@ export { units as Units };
|
|
|
100
98
|
export { default as AccordionCard } from "./AccordionCard";
|
|
101
99
|
export { default as Alert } from "./Alert";
|
|
102
100
|
export { default as Arch } from "./Arch";
|
|
101
|
+
export { default as Avatar } from "./Avatar";
|
|
103
102
|
export { default as Badge } from "./Badge";
|
|
104
103
|
export { default as BaseIcon } from "./BaseIcon";
|
|
105
104
|
export { default as Bit } from "./Bit";
|
|
@@ -138,6 +137,7 @@ export { default as message } from "./message";
|
|
|
138
137
|
export { default as Metric } from "./Metric";
|
|
139
138
|
export { default as Modal } from "./Modal";
|
|
140
139
|
export { default as ModalStack } from "./ModalStack";
|
|
140
|
+
export { default as Nav } from "./Nav";
|
|
141
141
|
export { default as Overflow } from "./Overflow";
|
|
142
142
|
export { default as Pagination } from "./Pagination";
|
|
143
143
|
export { default as Percent } from "./Percent";
|