@everymatrix/blog-articles-grid 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.
Files changed (47) hide show
  1. package/dist/blog-articles-grid/blog-articles-grid.esm.js +1 -0
  2. package/dist/blog-articles-grid/index.esm.js +0 -0
  3. package/dist/blog-articles-grid/p-73f0e79a.entry.js +1 -0
  4. package/dist/blog-articles-grid/p-f6930cad.js +1 -0
  5. package/dist/cjs/blog-articles-grid.cjs.entry.js +168 -0
  6. package/dist/cjs/blog-articles-grid.cjs.js +19 -0
  7. package/dist/cjs/index-2ef46f05.js +1177 -0
  8. package/dist/cjs/index.cjs.js +2 -0
  9. package/dist/cjs/loader.cjs.js +21 -0
  10. package/dist/collection/collection-manifest.json +12 -0
  11. package/dist/collection/components/blog-articles-grid/blog-articles-grid.css +126 -0
  12. package/dist/collection/components/blog-articles-grid/blog-articles-grid.js +425 -0
  13. package/dist/collection/index.js +1 -0
  14. package/dist/collection/utils/locale.utils.js +24 -0
  15. package/dist/collection/utils/utils.js +0 -0
  16. package/dist/components/blog-articles-grid.d.ts +11 -0
  17. package/dist/components/blog-articles-grid.js +200 -0
  18. package/dist/components/index.d.ts +26 -0
  19. package/dist/components/index.js +1 -0
  20. package/dist/esm/blog-articles-grid.entry.js +164 -0
  21. package/dist/esm/blog-articles-grid.js +17 -0
  22. package/dist/esm/index-3cf2add0.js +1151 -0
  23. package/dist/esm/index.js +1 -0
  24. package/dist/esm/loader.js +17 -0
  25. package/dist/esm/polyfills/core-js.js +11 -0
  26. package/dist/esm/polyfills/css-shim.js +1 -0
  27. package/dist/esm/polyfills/dom.js +79 -0
  28. package/dist/esm/polyfills/es5-html-element.js +1 -0
  29. package/dist/esm/polyfills/index.js +34 -0
  30. package/dist/esm/polyfills/system.js +6 -0
  31. package/dist/index.cjs.js +1 -0
  32. package/dist/index.js +1 -0
  33. package/dist/stencil.config.js +22 -0
  34. package/dist/types/Users/adrian.pripon/Documents/Work/stencil/widgets-stencil/packages/blog-articles-grid/.stencil/packages/blog-articles-grid/stencil.config.d.ts +2 -0
  35. package/dist/types/components/blog-articles-grid/blog-articles-grid.d.ts +74 -0
  36. package/dist/types/components.d.ts +150 -0
  37. package/dist/types/index.d.ts +1 -0
  38. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  39. package/dist/types/utils/locale.utils.d.ts +1 -0
  40. package/dist/types/utils/utils.d.ts +0 -0
  41. package/loader/cdn.js +3 -0
  42. package/loader/index.cjs.js +3 -0
  43. package/loader/index.d.ts +12 -0
  44. package/loader/index.es2017.js +3 -0
  45. package/loader/index.js +4 -0
  46. package/loader/package.json +10 -0
  47. package/package.json +23 -0
@@ -0,0 +1,150 @@
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 BlogArticlesGrid {
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 shome more button
28
+ */
29
+ "handleClick": string;
30
+ /**
31
+ * Language of the widget
32
+ */
33
+ "language": string;
34
+ /**
35
+ * Event name to be sent when the button is clicked
36
+ */
37
+ "postMessageEvent": string;
38
+ /**
39
+ * Property used to display the button
40
+ */
41
+ "showButton": boolean;
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
+ * Property used to display the button
60
+ */
61
+ "showVerticalGrid": boolean;
62
+ /**
63
+ * Use postMessage event to communicate
64
+ */
65
+ "usePostmessage": boolean;
66
+ }
67
+ }
68
+ declare global {
69
+ interface HTMLBlogArticlesGridElement extends Components.BlogArticlesGrid, HTMLStencilElement {
70
+ }
71
+ var HTMLBlogArticlesGridElement: {
72
+ prototype: HTMLBlogArticlesGridElement;
73
+ new (): HTMLBlogArticlesGridElement;
74
+ };
75
+ interface HTMLElementTagNameMap {
76
+ "blog-articles-grid": HTMLBlogArticlesGridElement;
77
+ }
78
+ }
79
+ declare namespace LocalJSX {
80
+ interface BlogArticlesGrid {
81
+ /**
82
+ * Client custom styling via string
83
+ */
84
+ "clientStyling"?: string;
85
+ /**
86
+ * Client custom styling via url content
87
+ */
88
+ "clientStylingUrlContent"?: string;
89
+ /**
90
+ * Client custom styling via url
91
+ */
92
+ "clientStylingurl"?: string;
93
+ /**
94
+ * Endpoint URL for the source of data
95
+ */
96
+ "cmsEndpoint"?: string;
97
+ /**
98
+ * Handle when you click on shome more button
99
+ */
100
+ "handleClick"?: string;
101
+ /**
102
+ * Language of the widget
103
+ */
104
+ "language"?: string;
105
+ "onArticleActionButton"?: (event: CustomEvent<Object>) => void;
106
+ /**
107
+ * Event name to be sent when the button is clicked
108
+ */
109
+ "postMessageEvent"?: string;
110
+ /**
111
+ * Property used to display the button
112
+ */
113
+ "showButton"?: boolean;
114
+ /**
115
+ * Property used to display the description
116
+ */
117
+ "showContent"?: boolean;
118
+ /**
119
+ * Property used to display the image
120
+ */
121
+ "showImage"?: boolean;
122
+ /**
123
+ * Property used to display the publishing date
124
+ */
125
+ "showPublishingDate"?: boolean;
126
+ /**
127
+ * Property used to display the image
128
+ */
129
+ "showTitle"?: boolean;
130
+ /**
131
+ * Property used to display the button
132
+ */
133
+ "showVerticalGrid"?: boolean;
134
+ /**
135
+ * Use postMessage event to communicate
136
+ */
137
+ "usePostmessage": boolean;
138
+ }
139
+ interface IntrinsicElements {
140
+ "blog-articles-grid": BlogArticlesGrid;
141
+ }
142
+ }
143
+ export { LocalJSX as JSX };
144
+ declare module "@stencil/core" {
145
+ export namespace JSX {
146
+ interface IntrinsicElements {
147
+ "blog-articles-grid": LocalJSX.BlogArticlesGrid & JSXBase.HTMLAttributes<HTMLBlogArticlesGridElement>;
148
+ }
149
+ }
150
+ }
@@ -0,0 +1 @@
1
+ export * from './components';