@everymatrix/blog-articles-grid 1.73.1 → 1.73.2
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/package.json
CHANGED
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
import { html } from "lit";
|
|
2
|
-
import "@everymatrix/blog-articles-grid";
|
|
3
|
-
const meta = {
|
|
4
|
-
title: 'Blog/Components/blog-articles-grid',
|
|
5
|
-
component: 'blog-articles-grid',
|
|
6
|
-
args: {
|
|
7
|
-
cmsEndpoint: "",
|
|
8
|
-
language: "en",
|
|
9
|
-
userRoles: "everyone",
|
|
10
|
-
cmsEnv: "stage",
|
|
11
|
-
mbSource: "",
|
|
12
|
-
clientStyling: "",
|
|
13
|
-
clientStylingUrl: "",
|
|
14
|
-
showPublishingDate: "true",
|
|
15
|
-
showImage: "true",
|
|
16
|
-
showTitle: "true",
|
|
17
|
-
showContent: "true",
|
|
18
|
-
showButton: "true",
|
|
19
|
-
usePostmessage: "",
|
|
20
|
-
postMessageEvent: "",
|
|
21
|
-
blogsLimit: "0",
|
|
22
|
-
paginationActive: "",
|
|
23
|
-
arrowsActive: "",
|
|
24
|
-
secondaryArrowsActive: "",
|
|
25
|
-
numberedNavActive: "",
|
|
26
|
-
intlDateTimeFormat: "",
|
|
27
|
-
page: "1",
|
|
28
|
-
},
|
|
29
|
-
argTypes: {
|
|
30
|
-
cmsEndpoint: { control: 'text', description: '' },
|
|
31
|
-
language: { control: 'text', description: '' },
|
|
32
|
-
userRoles: { control: 'text', description: '' },
|
|
33
|
-
cmsEnv: { control: 'text', description: '' },
|
|
34
|
-
mbSource: { control: 'text', description: '' },
|
|
35
|
-
clientStyling: { control: 'text', description: '' },
|
|
36
|
-
clientStylingUrl: { control: 'text', description: '' },
|
|
37
|
-
showPublishingDate: { control: 'text', description: '' },
|
|
38
|
-
showImage: { control: 'text', description: '' },
|
|
39
|
-
showTitle: { control: 'text', description: '' },
|
|
40
|
-
showContent: { control: 'text', description: '' },
|
|
41
|
-
showButton: { control: 'text', description: '' },
|
|
42
|
-
usePostmessage: { control: 'text', description: '' },
|
|
43
|
-
postMessageEvent: { control: 'text', description: '' },
|
|
44
|
-
blogsLimit: { control: 'text', description: '' },
|
|
45
|
-
paginationActive: { control: 'text', description: '' },
|
|
46
|
-
arrowsActive: { control: 'text', description: '' },
|
|
47
|
-
secondaryArrowsActive: { control: 'text', description: '' },
|
|
48
|
-
numberedNavActive: { control: 'text', description: '' },
|
|
49
|
-
intlDateTimeFormat: { control: 'text', description: '' },
|
|
50
|
-
page: { control: 'text', description: '' },
|
|
51
|
-
},
|
|
52
|
-
};
|
|
53
|
-
export default meta;
|
|
54
|
-
const Template = (args) => {
|
|
55
|
-
return html `<blog-articles-grid
|
|
56
|
-
cmsEndpoint="${args.cmsEndpoint}"
|
|
57
|
-
language="${args.language}"
|
|
58
|
-
userRoles="${args.userRoles}"
|
|
59
|
-
cmsEnv="${args.cmsEnv}"
|
|
60
|
-
mbSource="${args.mbSource}"
|
|
61
|
-
clientStyling="${args.clientStyling}"
|
|
62
|
-
clientStylingUrl="${args.clientStylingUrl}"
|
|
63
|
-
showPublishingDate="${args.showPublishingDate}"
|
|
64
|
-
showImage="${args.showImage}"
|
|
65
|
-
showTitle="${args.showTitle}"
|
|
66
|
-
showContent="${args.showContent}"
|
|
67
|
-
showButton="${args.showButton}"
|
|
68
|
-
usePostmessage="${args.usePostmessage}"
|
|
69
|
-
postMessageEvent="${args.postMessageEvent}"
|
|
70
|
-
blogsLimit="${args.blogsLimit}"
|
|
71
|
-
paginationActive="${args.paginationActive}"
|
|
72
|
-
arrowsActive="${args.arrowsActive}"
|
|
73
|
-
secondaryArrowsActive="${args.secondaryArrowsActive}"
|
|
74
|
-
numberedNavActive="${args.numberedNavActive}"
|
|
75
|
-
intlDateTimeFormat="${args.intlDateTimeFormat}"
|
|
76
|
-
page="${args.page}"
|
|
77
|
-
></blog-articles-grid>`;
|
|
78
|
-
};
|
|
79
|
-
export const Default = Template.bind({});
|
|
80
|
-
Default.args = {
|
|
81
|
-
cmsEndpoint: "",
|
|
82
|
-
language: "en",
|
|
83
|
-
userRoles: "everyone",
|
|
84
|
-
cmsEnv: "stage",
|
|
85
|
-
mbSource: "",
|
|
86
|
-
clientStyling: "",
|
|
87
|
-
clientStylingUrl: "",
|
|
88
|
-
showPublishingDate: "true",
|
|
89
|
-
showImage: "true",
|
|
90
|
-
showTitle: "true",
|
|
91
|
-
showContent: "true",
|
|
92
|
-
showButton: "true",
|
|
93
|
-
usePostmessage: "",
|
|
94
|
-
postMessageEvent: "",
|
|
95
|
-
blogsLimit: "0",
|
|
96
|
-
paginationActive: "",
|
|
97
|
-
arrowsActive: "",
|
|
98
|
-
secondaryArrowsActive: "",
|
|
99
|
-
numberedNavActive: "",
|
|
100
|
-
intlDateTimeFormat: "",
|
|
101
|
-
page: "1",
|
|
102
|
-
};
|