@aiconomy/aico-components 0.0.164 → 0.0.174
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/aico-components/aico-components.esm.js +1 -1
- package/dist/aico-components/{p-d4f3c776.entry.js → p-020898a6.entry.js} +2 -2
- package/dist/aico-components/p-253097be.js +3 -0
- package/dist/aico-components/p-253097be.js.map +1 -0
- package/dist/aico-components/{p-0d563d4f.entry.js → p-25cf4b75.entry.js} +2 -2
- package/dist/aico-components/{p-43d0546f.entry.js → p-c4d3fd22.entry.js} +4 -4
- package/dist/aico-components/p-c4d3fd22.entry.js.map +1 -0
- package/dist/cjs/aico-album-content_27.cjs.entry.js +29 -5
- package/dist/cjs/aico-album-content_27.cjs.entry.js.map +1 -1
- package/dist/cjs/aico-asking-list-content.cjs.entry.js +1 -1
- package/dist/cjs/aico-collection-content.cjs.entry.js +1 -1
- package/dist/cjs/aico-components.cjs.js +1 -1
- package/dist/cjs/{index-e52034b7.js → index-0ce53322.js} +60 -2
- package/dist/cjs/index-0ce53322.js.map +1 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/aico-article-detail/aico-article-detail.js +5 -2
- package/dist/collection/components/aico-article-detail/aico-article-detail.js.map +1 -1
- package/dist/collection/components/aico-news-list/aico-news-list.js +1 -1
- package/dist/collection/components/aico-news-list/aico-news-list.js.map +1 -1
- package/dist/collection/components/aico-news-list-item/aico-news-list-item.js +22 -1
- package/dist/collection/components/aico-news-list-item/aico-news-list-item.js.map +1 -1
- package/dist/collection/model/Article.js.map +1 -1
- package/dist/components/aico-article-detail2.js +5 -2
- package/dist/components/aico-article-detail2.js.map +1 -1
- package/dist/components/aico-news-list-item2.js +22 -1
- package/dist/components/aico-news-list-item2.js.map +1 -1
- package/dist/components/aico-news-list.js +1 -1
- package/dist/components/aico-news-list.js.map +1 -1
- package/dist/esm/aico-album-content_27.entry.js +29 -5
- package/dist/esm/aico-album-content_27.entry.js.map +1 -1
- package/dist/esm/aico-asking-list-content.entry.js +1 -1
- package/dist/esm/aico-collection-content.entry.js +1 -1
- package/dist/esm/aico-components.js +2 -2
- package/dist/esm/{index-4621a8ba.js → index-1498b9e7.js} +60 -3
- package/dist/esm/index-1498b9e7.js.map +1 -0
- package/dist/esm/loader.js +2 -2
- package/dist/types/components/aico-news-list-item/aico-news-list-item.d.ts +4 -0
- package/dist/types/model/Article.d.ts +1 -0
- package/package.json +1 -1
- package/dist/aico-components/p-43d0546f.entry.js.map +0 -1
- package/dist/aico-components/p-ae20e789.js +0 -3
- package/dist/aico-components/p-ae20e789.js.map +0 -1
- package/dist/cjs/index-e52034b7.js.map +0 -1
- package/dist/esm/index-4621a8ba.js.map +0 -1
- /package/dist/aico-components/{p-d4f3c776.entry.js.map → p-020898a6.entry.js.map} +0 -0
- /package/dist/aico-components/{p-0d563d4f.entry.js.map → p-25cf4b75.entry.js.map} +0 -0
package/dist/esm/loader.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { b as bootstrapLazy } from './index-1498b9e7.js';
|
|
2
|
+
export { s as setNonce } from './index-1498b9e7.js';
|
|
3
3
|
|
|
4
4
|
const defineCustomElements = (win, options) => {
|
|
5
5
|
if (typeof window === 'undefined') return undefined;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '../../stencil-public-runtime';
|
|
2
2
|
import { Article } from '../../model/Article';
|
|
3
3
|
export declare class AicoNewsListItem {
|
|
4
|
+
thisHtml: HTMLElement;
|
|
4
5
|
article: Article;
|
|
5
6
|
articleIndex: number;
|
|
6
7
|
articleClick?: EventEmitter<Article>;
|
|
@@ -10,5 +11,8 @@ export declare class AicoNewsListItem {
|
|
|
10
11
|
* If the locale specified is not present in the article's translations, most content will not be shown.
|
|
11
12
|
*/
|
|
12
13
|
locale: string;
|
|
14
|
+
private imageObserver?;
|
|
15
|
+
componentDidLoad(): void;
|
|
16
|
+
private onIntersection;
|
|
13
17
|
render(): any;
|
|
14
18
|
}
|