Skip to content

Commit f5fd18c

Browse files
committed
fix: add missing exports to core, input-iban, localize
1 parent c4e7a16 commit f5fd18c

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

packages/core/index.js

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
// lit-html
2-
export { html, render, nothing, isDirective } from 'lit-html';
2+
export {
3+
html,
4+
svg,
5+
render,
6+
noChange,
7+
nothing,
8+
directive,
9+
isDirective,
10+
TemplateResult,
11+
SVGTemplateResult,
12+
} from 'lit-html';
313
export { render as renderShady } from 'lit-html/lib/shady-render.js';
414
export { asyncAppend } from 'lit-html/directives/async-append.js';
515
export { asyncReplace } from 'lit-html/directives/async-replace.js';
@@ -12,7 +22,15 @@ export { styleMap } from 'lit-html/directives/style-map.js';
1222
export { unsafeHTML } from 'lit-html/directives/unsafe-html.js';
1323
export { until } from 'lit-html/directives/until.js';
1424
// lit-element
15-
export { css, LitElement, UpdatingElement } from 'lit-element';
25+
export {
26+
css,
27+
LitElement,
28+
UpdatingElement,
29+
unsafeCSS,
30+
CSSResult,
31+
defaultConverter,
32+
notEqual,
33+
} from 'lit-element';
1634
// ours
1735
export { dedupeMixin } from './src/dedupeMixin.js';
1836
export { DelegateMixin } from './src/DelegateMixin.js';

packages/input-iban/index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
11
export { LionInputIban } from './src/LionInputIban.js';
2+
export { formatIBAN } from './src/formatters.js';
3+
export { parseIBAN } from './src/parsers.js';
4+
export {
5+
isCountryIBAN,
6+
isCountryIBANValidator,
7+
isIBAN,
8+
isIBANValidator,
9+
} from './src/validators.js';

packages/localize/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ export {
66
getDecimalSeparator,
77
getGroupSeparator,
88
} from './src/formatNumber.js';
9-
export { localize } from './src/localize.js';
9+
export { localize, setLocalize } from './src/localize.js';
1010
export { LocalizeManager } from './src/LocalizeManager.js';
1111
export { LocalizeMixin } from './src/LocalizeMixin.js';

0 commit comments

Comments
 (0)