-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Element add * Changes in atropos.js and main.css * chore: fix component children lookup * Props changed (to an object) and adoptedStyleSheets * Get Value from changed attribute * Added Element in src, scripts and changed styles * Build-element refactored (ESM,ESM Browser,UMD) * build-element refactored * chore: update terser * Changes in minifiedCode (only in prod) * package.json added, main.js import changed and roll up refactored * path exports changed in package * chore: tweak element build * chore: move defaults to common object * Update atropos.less * Update package.json * Props[key] (number) changed --------- Co-authored-by: Vladimir Kharlampidi <[email protected]>
- Loading branch information
1 parent
c279eab
commit cef009b
Showing
22 changed files
with
601 additions
and
75 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,7 @@ | ||
{ | ||
"name": "atropos/element", | ||
"private": true, | ||
"type": "module", | ||
"exports": "./atropos-element.esm.js", | ||
"sideEffects": false | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,10 @@ | ||
{ | ||
"name": "atropos/element", | ||
"private": true, | ||
"type": "module", | ||
"exports": { | ||
"./element": "./atropos-element.esm.js", | ||
"./element/browser": "./atropos-element.esm.min.js" | ||
}, | ||
"sideEffects": false | ||
} |
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
Oops, something went wrong.