-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
125 changed files
with
77,014 additions
and
15,326 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
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,2 @@ | ||
include dash_test_components/** | ||
include package.json |
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 @@ | ||
Empty |
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,6 @@ | ||
const presets = [ | ||
'@babel/preset-env', | ||
'@babel/preset-react' | ||
]; | ||
|
||
module.exports = { presets }; |
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,23 @@ | ||
import json | ||
import os as _os | ||
|
||
_basepath = _os.path.dirname(__file__) | ||
_filepath = _os.path.abspath(_os.path.join(_basepath, 'package.json')) | ||
with open(_filepath) as f: | ||
package = json.load(f) | ||
|
||
package_name = package['name'].replace(' ', '_').replace('-', '_') | ||
__version__ = package['version'] | ||
|
||
from ._imports_ import * # noqa: F401, F403 | ||
from ._imports_ import __all__ # noqa: E402 | ||
|
||
_js_dist = [ | ||
dict( | ||
relative_package_path='dash_test_components.js', | ||
namespace='dash_test_components' | ||
) | ||
] | ||
|
||
for _component in __all__: | ||
setattr(locals()[_component], '_js_dist', _js_dist) |
Oops, something went wrong.