Skip to content

Commit 5e3d31d

Browse files
committed
merging data table styling
2 parents 93d6cb2 + 11e0643 commit 5e3d31d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1005
-1293
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ ASALocalRun/
480480
.mfractor/
481481

482482
# DMG File
483-
React-Proto.dmg
483+
reactype.dmg
484484
installers/
485485

486486
# End of https://www.gitignore.io/api/node,linux,macos,windows,visualstudio,yarn

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ ASALocalRun/
477477
.mfractor/
478478

479479
# DMG File
480-
React-Proto.dmg
480+
reactype.dmg
481481
installers/
482482
assets/
483483
.git/

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
# ReacType
21

2+
<p align="center">
3+
<img width="50" src="https://github.com/team-reactype/ReacType/blob/master/src/public/icons/png/256x256.png?raw=true">
4+
<h1 align="center">ReacType </h1>
5+
</p>
36

47
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/team-reactype/ReacType/pulls)
58
![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
@@ -8,7 +11,9 @@
811

912
**ReacType** allows the user to _visualize_ their application architecture dynamically, employing a _canvas display_, an _application tree_, and a _component code preview_. The user can create components and load _instances_ of these components, as well as nested HTML elements, onto the canvas. This architecture can then be _exported_ as TypeScript application files to be used as a starter template for any repository.
1013

11-
Download for [MacOS](), [Windows](), [Linux]().
14+
Download for [MacOS](https://github.com/team-reactype/ReacType/releases/tag/Mac.Version.1.0), [Windows](https://github.com/team-reactype/ReacType/releases/tag/PC.Version.1.0), [Linux](https://github.com/team-reactype/ReacType/releases/tag/Linux.Version.1.0).
15+
16+
![Image of ReacType Application](https://i.imgur.com/2sefnAk.jpg)
1217

1318
### How to use
1419

@@ -19,10 +24,12 @@
1924
- The bottom panel allows the user to toggle between 4 different views: a tree diagram of the application, a preview of the exportable code, a form to enter component props, and a form to add HTML attributes.
2025
- **_Props_** can be added to each component within its tab on bottom panel. Enter in a _key-value pair_, select its data _type_ and press the bottom 'ADD PROP'.
2126
- **_HTML Element Attributes_** of class name and ID can be added to each HTML element after an HTML element has been rendered to the canvas.
22-
- To **_delete_** a _child_ or instance from the canvas, select the desired instance and either press the _delete_ key or click the 'DELETE CHILD' button.
27+
- To **_delete_** a _child_ or instance from the canvas, select the desired instance and either press the _delete_ key.
2328
- To **_delete_** a _component_, click the 'DELETE' button of the desired component in the left panel.
2429
- To _start over_, select the blue 'CLEAR WORKSPACE' button in the left panel. This will **clear the entire application**.
2530

31+
![Image of ReacType Application 2](https://i.imgur.com/OCJ8nnw.png)
32+
2633
### To Export Files
2734

2835
- Once finished setting up the application template, press the green 'EXPORT PROJECT' button at the bottom of the left panel and choose between two options to export your files:

electron-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ linux:
77
target:
88
- AppImage
99
- deb
10-
maintainer: test@gmail.com
10+
maintainer: spincycle01@yahoo.com
1111
mac:
1212
category: public.app-category.developer-tools
1313
target: dmg

main.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
const path = require('path');
2+
13
const {
24
app,
35
BrowserWindow,
@@ -8,7 +10,11 @@ const {
810
} = require("electron");
911

1012
// Uncomment below for hot reloading during development
13+
<<<<<<< HEAD
1114
require("electron-reload")(__dirname);
15+
=======
16+
// require('electron-reload')(__dirname);
17+
>>>>>>> 11e0643d114b6c294dc2b66c3fd4727ffb173825
1218

1319
// const isDev = true;
1420
const isDev =
@@ -70,7 +76,12 @@ const createWindow = () => {
7076
zoomFactor: 0.7,
7177
"node-Integration": false
7278
},
73-
show: false
79+
show: false,
80+
icon: path.join(__dirname, '/src/public/icons/mac/icon.icns'),
81+
win: {
82+
icon: path.join(__dirname, '/src/public/icons/win/icon.ico'),
83+
target: ['portable'],
84+
},
7485
});
7586

7687
// and load the index.html of the app.

0 commit comments

Comments
 (0)