forked from Workiva/over_react
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOCS: Commit build/ dir for gh-pages push
- Loading branch information
1 parent
ff894b3
commit 9dc2e8b
Showing
38 changed files
with
27,300 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
const String demoMountNodeSelectorPrefix = '.component-demo__mount'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Transformer Diff - web/demos/constants.dart</title> | ||
<style> | ||
.diff-unmodified { | ||
color: #444; | ||
} | ||
.diff-removal { | ||
color: #a00; | ||
background-color: #fee; | ||
text-decoration: line-through; | ||
} | ||
.diff-addition { | ||
color: #0a0; | ||
background-color: #efe; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<code> | ||
<pre><span class="diff-unmodified">const String demoMountNodeSelectorPrefix = '.component-demo__mount'; | ||
</span></pre> | ||
</code> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
library over_react.web.demos; | ||
|
||
// Imports | ||
import 'package:react/react_client.dart'; | ||
import 'package:over_react/over_react.dart'; | ||
import '../src/demo_components.dart'; | ||
|
||
// Parts | ||
part 'list-group/list-group-basic.dart'; | ||
part 'list-group/list-group-tags.dart'; | ||
part 'list-group/list-group-anchors-and-buttons.dart'; | ||
part 'list-group/list-group-contextual.dart'; | ||
part 'list-group/list-group-header.dart'; | ||
|
||
part 'tag/tag-basic.dart'; | ||
part 'tag/tag-contextual.dart'; | ||
part 'tag/tag-pills.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Transformer Diff - web/demos/demos.dart</title> | ||
<style> | ||
.diff-unmodified { | ||
color: #444; | ||
} | ||
.diff-removal { | ||
color: #a00; | ||
background-color: #fee; | ||
text-decoration: line-through; | ||
} | ||
.diff-addition { | ||
color: #0a0; | ||
background-color: #efe; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<code> | ||
<pre><span class="diff-unmodified">library over_react.web.demos; | ||
|
||
// Imports | ||
import 'package:react/react_client.dart'; | ||
import 'package:over_react/over_react.dart'; | ||
import '../src/demo_components.dart'; | ||
|
||
// Parts | ||
part 'list-group/list-group-basic.dart'; | ||
part 'list-group/list-group-tags.dart'; | ||
part 'list-group/list-group-anchors-and-buttons.dart'; | ||
part 'list-group/list-group-contextual.dart'; | ||
part 'list-group/list-group-header.dart'; | ||
|
||
part 'tag/tag-basic.dart'; | ||
part 'tag/tag-contextual.dart'; | ||
part 'tag/tag-pills.dart'; | ||
</span></pre> | ||
</code> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import 'dart:html'; | ||
import 'package:react/react.dart' as react; | ||
import 'package:react/react_dom.dart' as react_dom; | ||
import 'package:react/react_client.dart'; | ||
import 'package:over_react/over_react.dart'; | ||
|
||
import '../demos.dart'; | ||
import '../constants.dart'; | ||
|
||
main() { | ||
setClientConfiguration(); | ||
|
||
react_dom.render(listGroupBasicDemo(), | ||
querySelector('$demoMountNodeSelectorPrefix--list-group-basic')); | ||
|
||
react_dom.render(listGroupTagsDemo(), | ||
querySelector('$demoMountNodeSelectorPrefix--list-group-tags')); | ||
|
||
react_dom.render(listGroupAnchorsAndButtonsDemo(), | ||
querySelector('$demoMountNodeSelectorPrefix--list-group-anchors-and-buttons')); | ||
|
||
react_dom.render(listGroupContextualSkinDemo(), | ||
querySelector('$demoMountNodeSelectorPrefix--list-group-contextual')); | ||
|
||
react_dom.render(listGroupHeaderDemo(), | ||
querySelector('$demoMountNodeSelectorPrefix--list-group-header')); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Transformer Diff - web/demos/list-group/index.dart</title> | ||
<style> | ||
.diff-unmodified { | ||
color: #444; | ||
} | ||
.diff-removal { | ||
color: #a00; | ||
background-color: #fee; | ||
text-decoration: line-through; | ||
} | ||
.diff-addition { | ||
color: #0a0; | ||
background-color: #efe; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<code> | ||
<pre><span class="diff-unmodified">import 'dart:html'; | ||
import 'package:react/react.dart' as react; | ||
import 'package:react/react_dom.dart' as react_dom; | ||
import 'package:react/react_client.dart'; | ||
import 'package:over_react/over_react.dart'; | ||
|
||
import '../demos.dart'; | ||
import '../constants.dart'; | ||
|
||
main() { | ||
setClientConfiguration(); | ||
|
||
react_dom.render(listGroupBasicDemo(), | ||
querySelector('$demoMountNodeSelectorPrefix--list-group-basic')); | ||
|
||
react_dom.render(listGroupTagsDemo(), | ||
querySelector('$demoMountNodeSelectorPrefix--list-group-tags')); | ||
|
||
react_dom.render(listGroupAnchorsAndButtonsDemo(), | ||
querySelector('$demoMountNodeSelectorPrefix--list-group-anchors-and-buttons')); | ||
|
||
react_dom.render(listGroupContextualSkinDemo(), | ||
querySelector('$demoMountNodeSelectorPrefix--list-group-contextual')); | ||
|
||
react_dom.render(listGroupHeaderDemo(), | ||
querySelector('$demoMountNodeSelectorPrefix--list-group-header')); | ||
} | ||
</span></pre> | ||
</code> | ||
</body> | ||
</html> | ||
|
Oops, something went wrong.