Skip to content

Commit

Permalink
fix: add missing exports to core, input-iban, localize
Browse files Browse the repository at this point in the history
  • Loading branch information
daKmoR committed Apr 27, 2019
1 parent c4e7a16 commit f5fd18c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
22 changes: 20 additions & 2 deletions packages/core/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
// lit-html
export { html, render, nothing, isDirective } from 'lit-html';
export {
html,
svg,
render,
noChange,
nothing,
directive,
isDirective,
TemplateResult,
SVGTemplateResult,
} from 'lit-html';
export { render as renderShady } from 'lit-html/lib/shady-render.js';
export { asyncAppend } from 'lit-html/directives/async-append.js';
export { asyncReplace } from 'lit-html/directives/async-replace.js';
Expand All @@ -12,7 +22,15 @@ export { styleMap } from 'lit-html/directives/style-map.js';
export { unsafeHTML } from 'lit-html/directives/unsafe-html.js';
export { until } from 'lit-html/directives/until.js';
// lit-element
export { css, LitElement, UpdatingElement } from 'lit-element';
export {
css,
LitElement,
UpdatingElement,
unsafeCSS,
CSSResult,
defaultConverter,
notEqual,
} from 'lit-element';
// ours
export { dedupeMixin } from './src/dedupeMixin.js';
export { DelegateMixin } from './src/DelegateMixin.js';
Expand Down
8 changes: 8 additions & 0 deletions packages/input-iban/index.js
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
export { LionInputIban } from './src/LionInputIban.js';
export { formatIBAN } from './src/formatters.js';
export { parseIBAN } from './src/parsers.js';
export {
isCountryIBAN,
isCountryIBANValidator,
isIBAN,
isIBANValidator,
} from './src/validators.js';
2 changes: 1 addition & 1 deletion packages/localize/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ export {
getDecimalSeparator,
getGroupSeparator,
} from './src/formatNumber.js';
export { localize } from './src/localize.js';
export { localize, setLocalize } from './src/localize.js';
export { LocalizeManager } from './src/LocalizeManager.js';
export { LocalizeMixin } from './src/LocalizeMixin.js';

0 comments on commit f5fd18c

Please sign in to comment.