Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
bb42e39
Add working rollup
martindale May 10, 2022
28ea603
Add compiled output
martindale May 10, 2022
3924c83
Add necessary files, module.js
martindale May 10, 2022
e289795
Migrate to ES6 module as export
martindale May 10, 2022
962224a
Update build, add package-lock.json
martindale May 10, 2022
5fa9e09
build: add rollup
victorwu May 11, 2022
0d2a55c
feature: add SeedEntryForm
victorwu May 11, 2022
3d472a3
fix: compilation using commonjs, builtin dependencies
victorwu May 13, 2022
c184ed5
build: compiled assets
victorwu May 13, 2022
303aec0
fix: imports with @fabric/core
victorwu May 16, 2022
225c83c
fix: bip39 issue
victorwu May 17, 2022
12c2e3d
build: fabric-zmq
victorwu May 17, 2022
cc5892d
feature: add FabricIdentityManager
victorwu May 26, 2022
1433003
fix: add FabricIdentityManager to module
victorwu May 26, 2022
8d6219c
feature: add FabricBridge
victorwu Jun 1, 2022
58aa3b7
build: update output.globals to use external dependencies
victorwu Jun 1, 2022
a767355
build: built files, clean codebase
victorwu Jun 1, 2022
4b6f9f6
Change to appropriate Fabric version
martindale Jun 1, 2022
d360a72
build: add to modules export
victorwu Jun 1, 2022
0dab06e
build: fix ordering, add bundled helper option
victorwu Jun 2, 2022
42bbb32
build: upgrade @rollup/plugin-node-resolve and @rollup/plugin-commonjs
victorwu Jun 3, 2022
4b9ce52
build: remove @fabric/core
victorwu Jun 3, 2022
fb6b185
build: package-lock.json
victorwu Jun 3, 2022
5ace2a5
Merge branch 'feature/node-16' into build/clean
victorwu Jun 3, 2022
75ea729
fix: add unresolved dependencies & missing global variables
victorwu Jun 6, 2022
37a8138
Prepare for test work, merge upstream
martindale Jun 7, 2022
d815558
Sketch interface for SPA compatibility
martindale Jun 9, 2022
c0acae0
Use Identity from Fabric
martindale Jun 9, 2022
fc15b41
Upgrade mocha, add React, ReactDOM to peer dependencies
martindale Jun 9, 2022
d88f1c6
Change module location to assets
martindale Oct 19, 2022
22fc77a
Update Fabric dependencies, pin to specific versions
martindale Oct 19, 2022
16fc239
General sweep of latest changes
martindale May 3, 2023
4150ef3
Migrate to types/fabric.js
martindale May 6, 2023
64b7d6e
Remove rollup configuration
martindale May 6, 2023
6491230
Add GitHub Actions
martindale May 6, 2023
bda0309
Add .nvmrc
martindale May 6, 2023
3edb6c0
Add JSX, cleanup tests
martindale May 6, 2023
ca27e64
Add missing npm scripts
martindale May 6, 2023
ac7a0ae
Add coverage script
martindale May 6, 2023
50bdedc
Add install report
martindale May 6, 2023
ce62049
Add Interface component
martindale May 6, 2023
d381ea8
Add snapshot of outstanding work
martindale Apr 28, 2026
14545e0
Merge pull request #6 from FabricLabs/eric/develop
martindale Apr 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: npm test
on:
pull_request:
branches:
- '**'
push:
branches:
- master
jobs:
test:
name: Run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Install Node.js on ${{ matrix.os }}
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Generate coverage report
run: npm run report:coverage
- name: Send coverage report
uses: codecov/codecov-action@v3.1.1
with:
directory: ./reports/
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,5 @@ dist

# TernJS port file
.tern-port

.DS_Store
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16.17.1
12 changes: 12 additions & 0 deletions DEVELOPERS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Developers
## Using `@fabric/react`

```js
import { Component } from '@fabric/react';

export default class Application extends Component {
constructor (settings = {}) {

}
}
```
24 changes: 21 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# fabric-react
Fabric integration for React
# fabric-react
# `@fabric/react`
Fabric integration for React applications.

## Quick Start
```js
import React from 'react';
import { Container, Header } from 'semantic-ui-react';

class App extends Component {
render () {
return (
<Container>
<Header>
<h1>Hello, world!</h1>
</Header>
</Container>
);
}
}
export default App;
```
6 changes: 6 additions & 0 deletions assets/bundles/browser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/
/******/
/******/ })()
;
Loading
Loading