@everymatrix/blog-article-details 1.10.6
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/blog-article-details/blog-article-details.esm.js +1 -0
- package/dist/blog-article-details/index.esm.js +0 -0
- package/dist/blog-article-details/p-6214f0ca.entry.js +1 -0
- package/dist/blog-article-details/p-7187d97f.js +1 -0
- package/dist/cjs/blog-article-details.cjs.entry.js +146 -0
- package/dist/cjs/blog-article-details.cjs.js +19 -0
- package/dist/cjs/index-df694837.js +1122 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/blog-article-details/blog-article-details.css +51 -0
- package/dist/collection/components/blog-article-details/blog-article-details.js +350 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/locale.utils.js +20 -0
- package/dist/collection/utils/utils.js +0 -0
- package/dist/components/blog-article-details.d.ts +11 -0
- package/dist/components/blog-article-details.js +176 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/esm/blog-article-details.entry.js +142 -0
- package/dist/esm/blog-article-details.js +17 -0
- package/dist/esm/index-c07b2186.js +1097 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/stencil.config.js +22 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/stencil/widgets-stencil/packages/blog-article-details/.stencil/packages/blog-article-details/stencil.config.d.ts +2 -0
- package/dist/types/components/blog-article-details/blog-article-details.d.ts +61 -0
- package/dist/types/components.d.ts +133 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/utils/locale.utils.d.ts +1 -0
- package/dist/types/utils/utils.d.ts +0 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +23 -0
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/**
|
|
4
|
+
* This is an autogenerated file created by the Stencil compiler.
|
|
5
|
+
* It contains typing information for all components that exist in this project.
|
|
6
|
+
*/
|
|
7
|
+
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
+
export namespace Components {
|
|
9
|
+
interface BlogArticleDetails {
|
|
10
|
+
/**
|
|
11
|
+
* Client custom styling via string
|
|
12
|
+
*/
|
|
13
|
+
"clientStyling": string;
|
|
14
|
+
/**
|
|
15
|
+
* Client custom styling via url content
|
|
16
|
+
*/
|
|
17
|
+
"clientStylingUrlContent": string;
|
|
18
|
+
/**
|
|
19
|
+
* Client custom styling via url
|
|
20
|
+
*/
|
|
21
|
+
"clientStylingurl": string;
|
|
22
|
+
/**
|
|
23
|
+
* Endpoint URL for the source of data
|
|
24
|
+
*/
|
|
25
|
+
"cmsEndpoint": string;
|
|
26
|
+
/**
|
|
27
|
+
* Handle when you click on show more button
|
|
28
|
+
*/
|
|
29
|
+
"handleClick": string;
|
|
30
|
+
/**
|
|
31
|
+
* Language of the widget
|
|
32
|
+
*/
|
|
33
|
+
"language": string;
|
|
34
|
+
/**
|
|
35
|
+
* Showing post ID parameter
|
|
36
|
+
*/
|
|
37
|
+
"postId": number;
|
|
38
|
+
/**
|
|
39
|
+
* Event name to be sent when the button is clicked
|
|
40
|
+
*/
|
|
41
|
+
"postMessageEvent": string;
|
|
42
|
+
/**
|
|
43
|
+
* Property used to display the description
|
|
44
|
+
*/
|
|
45
|
+
"showContent": boolean;
|
|
46
|
+
/**
|
|
47
|
+
* Property used to display the image
|
|
48
|
+
*/
|
|
49
|
+
"showImage": boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Property used to display the publishing date
|
|
52
|
+
*/
|
|
53
|
+
"showPublishingDate": boolean;
|
|
54
|
+
/**
|
|
55
|
+
* Property used to display the image
|
|
56
|
+
*/
|
|
57
|
+
"showTitle": boolean;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
declare global {
|
|
61
|
+
interface HTMLBlogArticleDetailsElement extends Components.BlogArticleDetails, HTMLStencilElement {
|
|
62
|
+
}
|
|
63
|
+
var HTMLBlogArticleDetailsElement: {
|
|
64
|
+
prototype: HTMLBlogArticleDetailsElement;
|
|
65
|
+
new (): HTMLBlogArticleDetailsElement;
|
|
66
|
+
};
|
|
67
|
+
interface HTMLElementTagNameMap {
|
|
68
|
+
"blog-article-details": HTMLBlogArticleDetailsElement;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
declare namespace LocalJSX {
|
|
72
|
+
interface BlogArticleDetails {
|
|
73
|
+
/**
|
|
74
|
+
* Client custom styling via string
|
|
75
|
+
*/
|
|
76
|
+
"clientStyling"?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Client custom styling via url content
|
|
79
|
+
*/
|
|
80
|
+
"clientStylingUrlContent"?: string;
|
|
81
|
+
/**
|
|
82
|
+
* Client custom styling via url
|
|
83
|
+
*/
|
|
84
|
+
"clientStylingurl"?: string;
|
|
85
|
+
/**
|
|
86
|
+
* Endpoint URL for the source of data
|
|
87
|
+
*/
|
|
88
|
+
"cmsEndpoint"?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Handle when you click on show more button
|
|
91
|
+
*/
|
|
92
|
+
"handleClick"?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Language of the widget
|
|
95
|
+
*/
|
|
96
|
+
"language"?: string;
|
|
97
|
+
/**
|
|
98
|
+
* Showing post ID parameter
|
|
99
|
+
*/
|
|
100
|
+
"postId": number;
|
|
101
|
+
/**
|
|
102
|
+
* Event name to be sent when the button is clicked
|
|
103
|
+
*/
|
|
104
|
+
"postMessageEvent"?: string;
|
|
105
|
+
/**
|
|
106
|
+
* Property used to display the description
|
|
107
|
+
*/
|
|
108
|
+
"showContent"?: boolean;
|
|
109
|
+
/**
|
|
110
|
+
* Property used to display the image
|
|
111
|
+
*/
|
|
112
|
+
"showImage"?: boolean;
|
|
113
|
+
/**
|
|
114
|
+
* Property used to display the publishing date
|
|
115
|
+
*/
|
|
116
|
+
"showPublishingDate"?: boolean;
|
|
117
|
+
/**
|
|
118
|
+
* Property used to display the image
|
|
119
|
+
*/
|
|
120
|
+
"showTitle"?: boolean;
|
|
121
|
+
}
|
|
122
|
+
interface IntrinsicElements {
|
|
123
|
+
"blog-article-details": BlogArticleDetails;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
export { LocalJSX as JSX };
|
|
127
|
+
declare module "@stencil/core" {
|
|
128
|
+
export namespace JSX {
|
|
129
|
+
interface IntrinsicElements {
|
|
130
|
+
"blog-article-details": LocalJSX.BlogArticleDetails & JSXBase.HTMLAttributes<HTMLBlogArticleDetailsElement>;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|