@openeuropa/bcl-base-templates 0.21.0 → 0.22.0
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/data/content-page.js +23 -0
- package/data/layout.js +5 -0
- package/data/listing-page.js +7 -0
- package/package.json +11 -11
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import banner from "@openeuropa/bcl-content-banner/data/data";
|
|
2
|
+
import pageBanner from "@openeuropa/bcl-banner/data/data--image";
|
|
3
|
+
import simpleBanner from "@openeuropa/bcl-content-banner/data/data--simple";
|
|
4
|
+
import fileThumbnail from "@openeuropa/bcl-file/data/data--card";
|
|
5
|
+
import file from "@openeuropa/bcl-file/data/data";
|
|
6
|
+
import blockquote from "@openeuropa/bcl-data-blockquote/data";
|
|
7
|
+
import featuredItem from "@openeuropa/bcl-featured-media/data/data--featured-item";
|
|
8
|
+
import accordion from "@openeuropa/bcl-data-accordion/data";
|
|
9
|
+
import timeline from "@openeuropa/bcl-timeline/data";
|
|
10
|
+
import sidebar from "@openeuropa/bcl-inpage-navigation/data/data--simple";
|
|
11
|
+
|
|
12
|
+
export {
|
|
13
|
+
banner,
|
|
14
|
+
fileThumbnail,
|
|
15
|
+
file,
|
|
16
|
+
blockquote,
|
|
17
|
+
featuredItem,
|
|
18
|
+
accordion,
|
|
19
|
+
timeline,
|
|
20
|
+
pageBanner,
|
|
21
|
+
simpleBanner,
|
|
22
|
+
sidebar,
|
|
23
|
+
};
|
package/data/layout.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import filterButton from "@openeuropa/bcl-data-button/data--filter";
|
|
2
|
+
import pagination from "@openeuropa/bcl-data-pagination/data--listing";
|
|
3
|
+
import sortSelect from "@openeuropa/bcl-data-select/data--sort";
|
|
4
|
+
import listingDate from "@openeuropa/bcl-listing/data/listing--date";
|
|
5
|
+
import listingProfiles from "@openeuropa/bcl-listing/data/listing--profiles";
|
|
6
|
+
|
|
7
|
+
export { filterButton, pagination, sortSelect, listingDate, listingProfiles };
|
package/package.json
CHANGED
|
@@ -2,21 +2,21 @@
|
|
|
2
2
|
"name": "@openeuropa/bcl-base-templates",
|
|
3
3
|
"author": "European Commission",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.22.0",
|
|
6
6
|
"description": "OE - BCL base templates",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@openeuropa/bcl-badge": "^0.
|
|
12
|
-
"@openeuropa/bcl-button": "^0.
|
|
13
|
-
"@openeuropa/bcl-content-banner": "^0.
|
|
14
|
-
"@openeuropa/bcl-footer": "^0.
|
|
15
|
-
"@openeuropa/bcl-header": "^0.
|
|
16
|
-
"@openeuropa/bcl-listing": "^0.
|
|
17
|
-
"@openeuropa/bcl-offcanvas": "^0.
|
|
18
|
-
"@openeuropa/bcl-pagination": "^0.
|
|
19
|
-
"@openeuropa/bcl-select": "^0.
|
|
11
|
+
"@openeuropa/bcl-badge": "^0.22.0",
|
|
12
|
+
"@openeuropa/bcl-button": "^0.22.0",
|
|
13
|
+
"@openeuropa/bcl-content-banner": "^0.22.0",
|
|
14
|
+
"@openeuropa/bcl-footer": "^0.22.0",
|
|
15
|
+
"@openeuropa/bcl-header": "^0.22.0",
|
|
16
|
+
"@openeuropa/bcl-listing": "^0.22.0",
|
|
17
|
+
"@openeuropa/bcl-offcanvas": "^0.22.0",
|
|
18
|
+
"@openeuropa/bcl-pagination": "^0.22.0",
|
|
19
|
+
"@openeuropa/bcl-select": "^0.22.0"
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"design-system",
|
|
33
33
|
"twig"
|
|
34
34
|
],
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "57304ad94ae3c234f2f2b904208ce540a7a53f23"
|
|
36
36
|
}
|