-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update custom elements manifest (#50)
* ignore non-public class members * added jsdoc strings for slots * added description at top level js doc comment * added jsdoc strings for css variables * added summary, mv note outside of jsdoc string * ignore non-exported modules * cleaned up src/index * updated npm script analyze: - target only desired modules * recreated custom elements manifest json * updated package.json files field: - include custom-elements.json - exclude build/test/ dir
- Loading branch information
Showing
8 changed files
with
195 additions
and
430 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
import { ColorLegendElement } from "./color-legend-element"; | ||
import { Renderer } from "./renderer"; | ||
import { AxisTicksSetter } from "./x-scale-axis"; | ||
import { ColorScaleSetter } from "./color-scale"; | ||
export * from "./types"; | ||
export { ColorLegendElement, ColorScaleSetter, AxisTicksSetter, Renderer }; | ||
export type { Interpolator, TickFormatter, MarkType, ScaleType } from "./types"; | ||
export { ColorLegendElement }; | ||
export default ColorLegendElement; |
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