flowstudio 0.0.1

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/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Shu Ding
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,62 @@
1
+ <div align="center">
2
+ <a href="https://flowstudio.vercel.app">
3
+ <picture>
4
+ <source media="(prefers-color-scheme: dark)" srcset="https://github.com/godfrednanaowusu/flowstudio/blob/main/www/public/logo.png">
5
+ <img alt="Flow Studio logo" src="https://github.com/godfrednanaowusu/flowstudio/blob/main/www/public/logo.png" height="128">
6
+ </picture>
7
+ </a>
8
+ <h1>Flow Studio</h1>
9
+
10
+ [![Bundle Size](https://img.shields.io/bundlephobia/minzip/flowstudio?logo=npm&style=for-the-badge&labelColor=0000FF)](https://npmjs.com/package/flowstudio)
11
+ [![Version](https://img.shields.io/npm/v/flowstudio?logo=npm&style=for-the-badge&labelColor=000000)](https://npmjs.com/package/flowstudio)
12
+ [![License](https://img.shields.io/npm/l/flowstudio?logo=npm&style=for-the-badge&labelColor=000000)](https://npmjs.com/package/flowstudio/LICENSE.md)
13
+ [![Downloads](https://img.shields.io/npm/dm/flowstudio?logo=npm&style=for-the-badge&labelColor=000000)](https://npmjs.com/package/flowstudio)
14
+ [![GitHub Repo stars](https://img.shields.io/github/stars/godfrednanaowusu/flowstudio?style=for-the-badge&logo=github&labelColor=000000)](https://github.com/godfrednanaowusu/flowstudio)
15
+ [![GitHub Forks](https://img.shields.io/github/forks/godfrednanaowusu/flowstudio?style=for-the-badge&logo=github&labelColor=000000)](https://github.com/godfrednanaowusu/flowstudio)
16
+
17
+ </div>
18
+
19
+ ## Getting Started
20
+
21
+ Utility that provide simple functions to improve the ease of fetching Continents, Countries, States and Cities..
22
+
23
+ - Visit our [Site](https://flowstudio.vercel.app) to learn more.
24
+
25
+ ## Documentation
26
+
27
+ Visit [https://flowstudio.vercel.app/docs](https://flowstudio.vercel.app/docs) to view the full documentation.
28
+
29
+ ## Contributing
30
+
31
+ Contributions to Flow Studio are welcome and highly appreciated. However, before you jump right into it, we would like you to review our [Contribution Guidelines](/contributing.md) to make sure you have a smooth experience contributing to Flow Studio.
32
+
33
+ ## Installation
34
+
35
+ ### with Yarn
36
+ ```sh filename="shell" copy
37
+ $ yarn add flowstudio
38
+ ```
39
+
40
+ ### with npm
41
+ ```sh filename="shell" copy
42
+ $ npm i flowstudio
43
+ ```
44
+
45
+ ### with pnpm
46
+ ```sh filename="shell" copy
47
+ $ pnpm add flowstudio
48
+ ```
49
+
50
+ ### with Bun
51
+ ```sh filename="shell" copy
52
+ $ bun add flowstudio
53
+ ````
54
+
55
+ ## Support Flow Studio
56
+
57
+ To support this project, kindly click on this link.
58
+ [[Contribute](https://opencollective.com/flowstudio/contribute)]
59
+
60
+ ## License
61
+
62
+ MIT © [Godfred Nana Owusu](https://github.com/godfrednanaowusu)
@@ -0,0 +1,2 @@
1
+ import "@radix-ui/themes/styles.css";
2
+ export default function ThemeLayout({ children }: any): import("react").JSX.Element;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = ThemeLayout;
4
+ // layouts/ThemeLayout.js
5
+ const themes_1 = require("@radix-ui/themes");
6
+ require("@radix-ui/themes/styles.css"); // Import Radix Themes styles globally
7
+ function ThemeLayout({ children }) {
8
+ return (<themes_1.Theme appearance="inherit" accentColor="gray">
9
+ {children}
10
+ </themes_1.Theme>);
11
+ }
12
+ ;
@@ -0,0 +1 @@
1
+ export default function Studio(): import("react").JSX.Element;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ // import { Card } from '@radix-ui/themes'
3
+ // import ThemeLayout from '../layouts/ThemeLayout'
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.default = Studio;
6
+ function Studio() {
7
+ return (
8
+ // <ThemeLayout>
9
+ <>
10
+ studio content
11
+ </>
12
+ // </ThemeLayout>
13
+ );
14
+ }
@@ -0,0 +1,2 @@
1
+ import Studio from './components/studio';
2
+ export { Studio };
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Studio = void 0;
7
+ const studio_1 = __importDefault(require("./components/studio"));
8
+ exports.Studio = studio_1.default;
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "flowstudio",
3
+ "version": "0.0.1",
4
+ "private": false,
5
+ "description": "Enterprise Flow Designer",
6
+ "license": "MIT",
7
+ "repository": "https://github.com/godfrednanaowusu/flowstudio",
8
+ "bugs": "https://github.com/godfrednanaowusu/flowstudio/issues",
9
+ "homepage": "https://flowstudio.vercel.app",
10
+ "main": "dist/index.js",
11
+ "types": "dist/index.d.ts",
12
+ "scripts": {
13
+ "build": "tsc",
14
+ "prepublishOnly": "npm run build"
15
+ },
16
+ "devDependencies": {
17
+ "@types/node": "latest",
18
+ "@types/react": "^19.0.12",
19
+ "react-icons": "latest",
20
+ "typescript": "latest"
21
+ },
22
+ "files": [
23
+ "dist/**/*"
24
+ ],
25
+ "keywords": [
26
+ "flow",
27
+ "designer",
28
+ "ussd",
29
+ "survey",
30
+ "chats",
31
+ "bot",
32
+ "chatbot"
33
+ ],
34
+ "packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
35
+ }