File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
export { TemplateInstance } from './template-instance.js'
2
2
export { parse } from './template-string-parser.js'
3
3
export { AttributeTemplatePart , AttributeValueSetter } from './attribute-template-part.js'
4
+ export { InnerTemplatePart } from './inner-template-part.js'
4
5
export { NodeTemplatePart } from './node-template-part.js'
5
6
export {
6
7
createProcessor ,
Original file line number Diff line number Diff line change 1
1
import { expect } from '@open-wc/testing'
2
- import { TemplateInstance } from '../src/template-instance'
3
- import { NodeTemplatePart } from '../src/node-template-part'
4
- import { InnerTemplatePart } from '../src/inner-template-part'
5
- import { processPropertyIdentity , propertyIdentityOrBooleanAttribute , createProcessor } from '../src/processors'
2
+ import {
3
+ TemplateInstance ,
4
+ NodeTemplatePart ,
5
+ InnerTemplatePart ,
6
+ processPropertyIdentity ,
7
+ propertyIdentityOrBooleanAttribute ,
8
+ createProcessor ,
9
+ } from '../src/index'
6
10
7
11
describe ( 'template-instance' , ( ) => {
8
12
it ( 'applies data to templated text nodes' , ( ) => {
You can’t perform that action at this time.
0 commit comments