@a11d/lit 0.0.8 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +0 -18
- package/dist/index.js +16 -18
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,24 +1,6 @@
|
|
|
1
1
|
export * from 'lit';
|
|
2
2
|
export { InternalPropertyDeclaration, QueryAssignedElementsOptions, QueryAssignedNodesOptions, eventOptions, queryAssignedElements, queryAssignedNodes, queryAsync } from 'lit/decorators.js';
|
|
3
3
|
export * from 'lit-html';
|
|
4
|
-
export * from 'lit/directive.js';
|
|
5
|
-
export * from 'lit/directives/repeat.js';
|
|
6
|
-
export * from 'lit/directives/cache.js';
|
|
7
|
-
export * from 'lit/directives/if-defined.js';
|
|
8
|
-
export * from 'lit/directives/until.js';
|
|
9
|
-
export * from 'lit/directives/live.js';
|
|
10
|
-
export * from 'lit/directives/style-map.js';
|
|
11
|
-
export * from 'lit/directives/class-map.js';
|
|
12
|
-
export * from 'lit/directives/choose.js';
|
|
13
|
-
export * from 'lit/directives/join.js';
|
|
14
|
-
export * from 'lit/directives/async-append.js';
|
|
15
|
-
export * from 'lit/directives/async-replace.js';
|
|
16
|
-
export * from 'lit/directives/ref.js';
|
|
17
|
-
export * from 'lit/directives/unsafe-html.js';
|
|
18
|
-
export * from 'lit/directives/unsafe-svg.js';
|
|
19
|
-
export * from 'lit/directives/when.js';
|
|
20
|
-
export * from 'lit/directives/async-append.js';
|
|
21
|
-
export * from 'lit/directives/template-content.js';
|
|
22
4
|
import './types';
|
|
23
5
|
export { Component, nothing, component } from './Component';
|
|
24
6
|
export * from './Controller';
|
package/dist/index.js
CHANGED
|
@@ -2,24 +2,22 @@
|
|
|
2
2
|
export * from 'lit';
|
|
3
3
|
export { eventOptions, queryAssignedElements, queryAssignedNodes, queryAsync } from 'lit/decorators.js';
|
|
4
4
|
export * from 'lit-html';
|
|
5
|
-
export * from 'lit/directive.js'
|
|
6
|
-
export * from 'lit/directives/repeat.js'
|
|
7
|
-
export * from 'lit/directives/cache.js'
|
|
8
|
-
export * from 'lit/directives/if-defined.js'
|
|
9
|
-
export * from 'lit/directives/until.js'
|
|
10
|
-
export * from 'lit/directives/live.js'
|
|
11
|
-
export * from 'lit/directives/style-map.js'
|
|
12
|
-
export * from 'lit/directives/class-map.js'
|
|
13
|
-
export * from 'lit/directives/choose.js'
|
|
14
|
-
export * from 'lit/directives/join.js'
|
|
15
|
-
export * from 'lit/directives/async-append.js'
|
|
16
|
-
export * from 'lit/directives/async-replace.js'
|
|
17
|
-
export * from 'lit/directives/ref.js'
|
|
18
|
-
export * from 'lit/directives/unsafe-html.js'
|
|
19
|
-
export * from 'lit/directives/unsafe-svg.js'
|
|
20
|
-
export * from 'lit/directives/when.js'
|
|
21
|
-
export * from 'lit/directives/async-append.js';
|
|
22
|
-
export * from 'lit/directives/template-content.js';
|
|
5
|
+
// export * from 'lit/directive.js'
|
|
6
|
+
// export * from 'lit/directives/repeat.js'
|
|
7
|
+
// export * from 'lit/directives/cache.js'
|
|
8
|
+
// export * from 'lit/directives/if-defined.js'
|
|
9
|
+
// export * from 'lit/directives/until.js'
|
|
10
|
+
// export * from 'lit/directives/live.js'
|
|
11
|
+
// export * from 'lit/directives/style-map.js'
|
|
12
|
+
// export * from 'lit/directives/class-map.js'
|
|
13
|
+
// export * from 'lit/directives/choose.js'
|
|
14
|
+
// export * from 'lit/directives/join.js'
|
|
15
|
+
// export * from 'lit/directives/async-append.js'
|
|
16
|
+
// export * from 'lit/directives/async-replace.js'
|
|
17
|
+
// export * from 'lit/directives/ref.js'
|
|
18
|
+
// export * from 'lit/directives/unsafe-html.js'
|
|
19
|
+
// export * from 'lit/directives/unsafe-svg.js'
|
|
20
|
+
// export * from 'lit/directives/when.js'
|
|
23
21
|
import './types';
|
|
24
22
|
export { Component, nothing, component } from './Component';
|
|
25
23
|
export * from './Controller';
|