File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11export { TemplateInstance } from './template-instance.js'
22export { parse } from './template-string-parser.js'
33export { AttributeTemplatePart , AttributeValueSetter } from './attribute-template-part.js'
4+ export { InnerTemplatePart } from './inner-template-part.js'
45export { NodeTemplatePart } from './node-template-part.js'
56export {
67 createProcessor ,
Original file line number Diff line number Diff line change 11import { 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'
610
711describe ( 'template-instance' , ( ) => {
812 it ( 'applies data to templated text nodes' , ( ) => {
You can’t perform that action at this time.
0 commit comments