Commit 78d265fc authored by Patrik Meijer's avatar Patrik Meijer
Browse files

Adding files and deps for AttributeEditor

parent fe459cac
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+50 −0
Original line number Diff line number Diff line
# See https://help.github.com/ignore-files/ for more about ignoring files.

# IDE files
.idea

# dependencies
/node_modules

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

# webgme specific
blob-local-storage
server.log
server-error.log

# dss specific
outputs
scripts/py_modelica_exporter/Icons
scripts/py_modelica_exporter/components.json
scripts/py_modelica_exporter/modelica.json
simres_example.json

**/*.pyc

/src/common/comp_flat.json
/src/common/comp_stats.json

# Vagrant
deployment/.vagrant
deployment/*.log

public/**/*.js
public/**/*.css
public/**/*.svg
public/**/*.map

package-lock.json

0 → 100644
+570 −0

File added.

Preview size limit exceeded, changes collapsed.

+6 −1
Original line number Diff line number Diff line
@@ -18,5 +18,10 @@
    "material-ui"
  ],
  "author": "WebGME Dev Team",
  "license": "MIT"
  "license": "MIT",
  "dependencies": {
    "@material-ui/core": "^3.1.0",
    "@material-ui/icons": "^3.0.1",
    "blockies": "0.0.2"
  }
}
+196 −0

File added.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
export {default} from './AttributeEditor';
 No newline at end of file
Loading