@snapbox/pkg-ui 1.0.1 → 1.0.3
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/index.d.ts +9 -0
- package/dist/index.js +9 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
1
|
export * from "./components/AppIcon";
|
|
2
2
|
export * from "./components/CustomNavigationBar";
|
|
3
3
|
export * from "./theme/colors";
|
|
4
|
+
import { AppIcon } from "./components/AppIcon";
|
|
5
|
+
import { CustomNavigationBar } from "./components/CustomNavigationBar";
|
|
6
|
+
import { generateThemeColors } from "./theme/colors";
|
|
7
|
+
declare const UI: {
|
|
8
|
+
AppIcon: typeof AppIcon;
|
|
9
|
+
CustomNavigationBar: typeof CustomNavigationBar;
|
|
10
|
+
generateThemeColors: typeof generateThemeColors;
|
|
11
|
+
};
|
|
12
|
+
export default UI;
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
1
|
export * from "./components/AppIcon";
|
|
2
2
|
export * from "./components/CustomNavigationBar";
|
|
3
3
|
export * from "./theme/colors";
|
|
4
|
+
import { AppIcon } from "./components/AppIcon";
|
|
5
|
+
import { CustomNavigationBar } from "./components/CustomNavigationBar";
|
|
6
|
+
import { generateThemeColors } from "./theme/colors";
|
|
7
|
+
const UI = {
|
|
8
|
+
AppIcon,
|
|
9
|
+
CustomNavigationBar,
|
|
10
|
+
generateThemeColors,
|
|
11
|
+
};
|
|
12
|
+
export default UI;
|