@everymatrix/blog-articles-grid 1.31.2 → 1.32.4

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 (50) hide show
  1. package/LICENSE +21 -0
  2. package/package.json +4 -3
  3. package/dist/blog-articles-grid/blog-articles-grid.esm.js +0 -1
  4. package/dist/blog-articles-grid/index.esm.js +0 -0
  5. package/dist/blog-articles-grid/p-13642dde.js +0 -1
  6. package/dist/blog-articles-grid/p-7c092ee4.entry.js +0 -1
  7. package/dist/cjs/blog-articles-grid.cjs.js +0 -19
  8. package/dist/cjs/blog-articles-grid_2.cjs.entry.js +0 -673
  9. package/dist/cjs/index-a88a1a42.js +0 -1352
  10. package/dist/cjs/index.cjs.js +0 -2
  11. package/dist/cjs/loader.cjs.js +0 -21
  12. package/dist/collection/collection-manifest.json +0 -19
  13. package/dist/collection/components/blog-articles-grid/blog-articles-grid.css +0 -164
  14. package/dist/collection/components/blog-articles-grid/blog-articles-grid.js +0 -773
  15. package/dist/collection/index.js +0 -1
  16. package/dist/collection/utils/locale.utils.js +0 -40
  17. package/dist/collection/utils/utils.js +0 -59
  18. package/dist/components/blog-articles-grid.d.ts +0 -11
  19. package/dist/components/blog-articles-grid.js +0 -474
  20. package/dist/components/helper-pagination.js +0 -6
  21. package/dist/components/helper-pagination2.js +0 -288
  22. package/dist/components/index.d.ts +0 -26
  23. package/dist/components/index.js +0 -1
  24. package/dist/esm/blog-articles-grid.js +0 -17
  25. package/dist/esm/blog-articles-grid_2.entry.js +0 -668
  26. package/dist/esm/index-3600ba1b.js +0 -1326
  27. package/dist/esm/index.js +0 -1
  28. package/dist/esm/loader.js +0 -17
  29. package/dist/esm/polyfills/core-js.js +0 -11
  30. package/dist/esm/polyfills/css-shim.js +0 -1
  31. package/dist/esm/polyfills/dom.js +0 -79
  32. package/dist/esm/polyfills/es5-html-element.js +0 -1
  33. package/dist/esm/polyfills/index.js +0 -34
  34. package/dist/esm/polyfills/system.js +0 -6
  35. package/dist/index.cjs.js +0 -1
  36. package/dist/index.js +0 -1
  37. package/dist/stencil.config.js +0 -22
  38. package/dist/types/Users/dragos.bodea/Documents/everymatrix-prjs/emfe-widgets/widgets-stencil/packages/blog-articles-grid/.stencil/packages/blog-articles-grid/stencil.config.d.ts +0 -2
  39. package/dist/types/components/blog-articles-grid/blog-articles-grid.d.ts +0 -116
  40. package/dist/types/components.d.ts +0 -198
  41. package/dist/types/index.d.ts +0 -1
  42. package/dist/types/stencil-public-runtime.d.ts +0 -1565
  43. package/dist/types/utils/locale.utils.d.ts +0 -1
  44. package/dist/types/utils/utils.d.ts +0 -4
  45. package/loader/cdn.js +0 -3
  46. package/loader/index.cjs.js +0 -3
  47. package/loader/index.d.ts +0 -12
  48. package/loader/index.es2017.js +0 -3
  49. package/loader/index.js +0 -4
  50. package/loader/package.json +0 -10
@@ -1,116 +0,0 @@
1
- import { EventEmitter } from '../../stencil-public-runtime';
2
- import '@everymatrix/helper-pagination';
3
- export declare class BlogArticlesGrid {
4
- /**
5
- * Endpoint URL for the source of data
6
- */
7
- cmsEndpoint: string;
8
- /**
9
- * Language of the widget
10
- */
11
- language: string;
12
- /**
13
- * User roles
14
- */
15
- userRoles: string;
16
- /**
17
- * CMS Endpoint stage
18
- */
19
- cmsEnv: string;
20
- /**
21
- * Client custom styling via string
22
- */
23
- clientStyling: string;
24
- /**
25
- * Client custom styling via url
26
- */
27
- clientStylingUrl: string;
28
- /**
29
- * Property used to display the publishing date
30
- */
31
- showPublishingDate: boolean;
32
- /**
33
- * Property used to display the image
34
- */
35
- showImage: boolean;
36
- /**
37
- * Property used to display the image
38
- */
39
- showTitle: boolean;
40
- /**
41
- * Property used to display the description
42
- */
43
- showContent: boolean;
44
- /**
45
- * Property used to display the button
46
- */
47
- showButton: boolean;
48
- /**
49
- * Use postMessage event to communicate
50
- */
51
- usePostmessage: boolean;
52
- /**
53
- * Event name to be sent when the button is clicked
54
- */
55
- postMessageEvent: string;
56
- /**
57
- * Customize pagination: Activate pagination numbered navigation
58
- */
59
- blogsLimit: string;
60
- /**
61
- * Customize pagination: Activate pagination
62
- */
63
- paginationActive: boolean;
64
- /**
65
- * Customize pagination: Activate pagination arrows
66
- */
67
- arrowsActive: boolean;
68
- /**
69
- * Customize pagination: Activate pagination secondary arrows
70
- */
71
- secondaryArrowsActive: boolean;
72
- /**
73
- * Customize pagination: Activate pagination numbered navigation
74
- */
75
- numberedNavActive: boolean;
76
- /**
77
- * Intl date format
78
- */
79
- intlDateTimeFormat: string;
80
- /**
81
- * Page to particularly be opened on start
82
- */
83
- page: string;
84
- ArticleActionButton: EventEmitter<Object>;
85
- getArticleId(postId: number, slug: string, customPath: string): void;
86
- paginationBlogList: any;
87
- currentPage: number;
88
- hasErrors: boolean;
89
- private limitStylingAppends;
90
- private isLoading;
91
- bannerMatrixReady: boolean;
92
- nextPage: string;
93
- previousPage: string;
94
- device: string;
95
- blogData: any;
96
- totalBlogs: number;
97
- lastPage: number;
98
- handleBannerReady(): void;
99
- watchEndpoint(newValue: string, oldValue: string): void;
100
- private stylingContainer;
101
- private defaultStyling;
102
- hpPageChange(event: CustomEvent<BlogArticlesGrid>): void;
103
- connectedCallback(): void;
104
- componentDidLoad(): void;
105
- sortArticlesByDate(arr: any): any;
106
- findLatestFeatured(array: any): any;
107
- moveLatestFeatureToStart(articlesArray: any, latestFeatured: any): any;
108
- getBlogArticleGrid(page?: number): void;
109
- componentDidRender(): void;
110
- setClientStyling: () => void;
111
- setClientStylingURL: () => void;
112
- setImage: (image: any) => string;
113
- formatDate(dateString: any): string;
114
- renderContentConditionally: (content: string) => HTMLElement;
115
- render(): void;
116
- }
@@ -1,198 +0,0 @@
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
- * Customize pagination: Activate pagination arrows
12
- */
13
- "arrowsActive": boolean;
14
- /**
15
- * Customize pagination: Activate pagination numbered navigation
16
- */
17
- "blogsLimit": string;
18
- /**
19
- * Client custom styling via string
20
- */
21
- "clientStyling": string;
22
- /**
23
- * Client custom styling via url
24
- */
25
- "clientStylingUrl": string;
26
- /**
27
- * Endpoint URL for the source of data
28
- */
29
- "cmsEndpoint": string;
30
- /**
31
- * CMS Endpoint stage
32
- */
33
- "cmsEnv": string;
34
- /**
35
- * Intl date format
36
- */
37
- "intlDateTimeFormat": string;
38
- /**
39
- * Language of the widget
40
- */
41
- "language": string;
42
- /**
43
- * Customize pagination: Activate pagination numbered navigation
44
- */
45
- "numberedNavActive": boolean;
46
- /**
47
- * Page to particularly be opened on start
48
- */
49
- "page": string;
50
- /**
51
- * Customize pagination: Activate pagination
52
- */
53
- "paginationActive": boolean;
54
- /**
55
- * Event name to be sent when the button is clicked
56
- */
57
- "postMessageEvent": string;
58
- /**
59
- * Customize pagination: Activate pagination secondary arrows
60
- */
61
- "secondaryArrowsActive": boolean;
62
- /**
63
- * Property used to display the button
64
- */
65
- "showButton": boolean;
66
- /**
67
- * Property used to display the description
68
- */
69
- "showContent": boolean;
70
- /**
71
- * Property used to display the image
72
- */
73
- "showImage": boolean;
74
- /**
75
- * Property used to display the publishing date
76
- */
77
- "showPublishingDate": boolean;
78
- /**
79
- * Property used to display the image
80
- */
81
- "showTitle": boolean;
82
- /**
83
- * Use postMessage event to communicate
84
- */
85
- "usePostmessage": boolean;
86
- /**
87
- * User roles
88
- */
89
- "userRoles": string;
90
- }
91
- }
92
- declare global {
93
- interface HTMLBlogArticlesGridElement extends Components.BlogArticlesGrid, HTMLStencilElement {
94
- }
95
- var HTMLBlogArticlesGridElement: {
96
- prototype: HTMLBlogArticlesGridElement;
97
- new (): HTMLBlogArticlesGridElement;
98
- };
99
- interface HTMLElementTagNameMap {
100
- "blog-articles-grid": HTMLBlogArticlesGridElement;
101
- }
102
- }
103
- declare namespace LocalJSX {
104
- interface BlogArticlesGrid {
105
- /**
106
- * Customize pagination: Activate pagination arrows
107
- */
108
- "arrowsActive"?: boolean;
109
- /**
110
- * Customize pagination: Activate pagination numbered navigation
111
- */
112
- "blogsLimit"?: string;
113
- /**
114
- * Client custom styling via string
115
- */
116
- "clientStyling"?: string;
117
- /**
118
- * Client custom styling via url
119
- */
120
- "clientStylingUrl"?: string;
121
- /**
122
- * Endpoint URL for the source of data
123
- */
124
- "cmsEndpoint"?: string;
125
- /**
126
- * CMS Endpoint stage
127
- */
128
- "cmsEnv"?: string;
129
- /**
130
- * Intl date format
131
- */
132
- "intlDateTimeFormat"?: string;
133
- /**
134
- * Language of the widget
135
- */
136
- "language"?: string;
137
- /**
138
- * Customize pagination: Activate pagination numbered navigation
139
- */
140
- "numberedNavActive"?: boolean;
141
- "onArticleActionButton"?: (event: CustomEvent<Object>) => void;
142
- /**
143
- * Page to particularly be opened on start
144
- */
145
- "page"?: string;
146
- /**
147
- * Customize pagination: Activate pagination
148
- */
149
- "paginationActive"?: boolean;
150
- /**
151
- * Event name to be sent when the button is clicked
152
- */
153
- "postMessageEvent"?: string;
154
- /**
155
- * Customize pagination: Activate pagination secondary arrows
156
- */
157
- "secondaryArrowsActive"?: boolean;
158
- /**
159
- * Property used to display the button
160
- */
161
- "showButton"?: boolean;
162
- /**
163
- * Property used to display the description
164
- */
165
- "showContent"?: boolean;
166
- /**
167
- * Property used to display the image
168
- */
169
- "showImage"?: boolean;
170
- /**
171
- * Property used to display the publishing date
172
- */
173
- "showPublishingDate"?: boolean;
174
- /**
175
- * Property used to display the image
176
- */
177
- "showTitle"?: boolean;
178
- /**
179
- * Use postMessage event to communicate
180
- */
181
- "usePostmessage": boolean;
182
- /**
183
- * User roles
184
- */
185
- "userRoles"?: string;
186
- }
187
- interface IntrinsicElements {
188
- "blog-articles-grid": BlogArticlesGrid;
189
- }
190
- }
191
- export { LocalJSX as JSX };
192
- declare module "@stencil/core" {
193
- export namespace JSX {
194
- interface IntrinsicElements {
195
- "blog-articles-grid": LocalJSX.BlogArticlesGrid & JSXBase.HTMLAttributes<HTMLBlogArticlesGridElement>;
196
- }
197
- }
198
- }
@@ -1 +0,0 @@
1
- export * from './components';