-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirectives.js
31 lines (30 loc) · 1.17 KB
/
directives.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*********************************************
* VIEW DIRECTIVES (from lit-html >= v0.14.0)
*********************************************/
import { directive, nothing } from '../../generated/lit-html/lit-html.js';
import { asyncAppend } from '../../generated/lit-html/directives/async-append.js';
import { asyncReplace } from '../../generated/lit-html/directives/async-replace.js';
import { cache } from '../../generated/lit-html/directives/cache.js';
import { classMap } from '../../generated/lit-html/directives/class-map.js';
import { guard } from '../../generated/lit-html/directives/guard.js';
import { ifDefined } from '../../generated/lit-html/directives/if-defined.js';
import { repeat } from '../../generated/lit-html/directives/repeat.js';
import { styleMap } from '../../generated/lit-html/directives/style-map.js';
import { unsafeHTML } from '../../generated/lit-html/directives/unsafe-html.js';
import { until } from '../../generated/lit-html/directives/until.js';
/* Export it!
*************/
export default {
asyncAppend,
asyncReplace,
cache,
classMap,
directive,
guard,
ifDefined,
nothing,
repeat,
styleMap,
unsafeHTML,
until
};