-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed for string data * watchable data attribute * logger right in the box * ready for bower
- Loading branch information
Pankaj Patel
committed
Aug 5, 2017
1 parent
80e11a4
commit 663edf5
Showing
8 changed files
with
51 additions
and
7 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 |
---|---|---|
|
@@ -45,5 +45,4 @@ typings/ | |
# dotenv environment variables file | ||
.env | ||
|
||
dist/ | ||
.DS_Store |
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "inspecter-component", | ||
"version": "0.0.0", | ||
"version": "0.1.0", | ||
"description": "Inspecter webcomponent based on react-inspector", | ||
"license": "MIT", | ||
"main": "dist/inspecter-component.js", | ||
|
@@ -9,9 +9,16 @@ | |
], | ||
"ignore": [ | ||
"**/.*", | ||
"bower_components" | ||
"bower_components", | ||
"node_modules", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"custom-elements": "^1.0.3" | ||
} | ||
}, | ||
"homepage": "https://github.com/pankajpatel/inspector-component", | ||
"authors": [ | ||
"Pankaj Patel <[email protected]> (http://pankaj.pro)" | ||
] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
<script src="./dist/inspector-component.js"></script> | ||
</head> | ||
<body> | ||
<inspector-component data="Hello World"></inspector-component> | ||
<inspector-component data='["56dcf573b09c217d39fd7621", "Hello World"]'></inspector-component> | ||
<inspector-component data='{"_id":"56dcf573b09c217d39fd7621", "name":"Hello World"}'></inspector-component> | ||
<inspector-component data='{"_id":"56dcf573b09c217d39fd7621","name":"Howard Christensen","email":"[email protected]","phone":"+1 (830) 529-3176","address":"511 Royce Street, Hilltop, Tennessee, 9712","friends":[{"_id":"56dcf573b09c217d39fd7621","name":"Howard Christensen","email":"[email protected]","phone":"+1 (830) 529-3176","address":"511 Royce Street, Hilltop, Tennessee, 9712"}]}'></inspector-component> | ||
|
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
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
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