@jetshop/template-trend 5.12.2 → 5.12.3
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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.preventBodyScrollStyle_p1chftlb{overflow:hidden;}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetshop/template-trend",
|
|
3
|
-
"version": "5.12.
|
|
3
|
+
"version": "5.12.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "react-scripts build",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@jetshop/core": "^5.12.
|
|
48
|
+
"@jetshop/core": "^5.12.3",
|
|
49
49
|
"@jetshop/flight-shortcodes": "^2.0.10",
|
|
50
|
-
"@jetshop/intl": "^5.12.
|
|
51
|
-
"@jetshop/react-scripts": "^5.12.
|
|
52
|
-
"@jetshop/ui": "^5.12.
|
|
50
|
+
"@jetshop/intl": "^5.12.3",
|
|
51
|
+
"@jetshop/react-scripts": "^5.12.3",
|
|
52
|
+
"@jetshop/ui": "^5.12.3",
|
|
53
53
|
"@react-google-maps/api": "~1.7.0",
|
|
54
54
|
"prop-types": "^15.6.2",
|
|
55
55
|
"react": "^16.9.0",
|
package/schema.graphql
CHANGED
|
@@ -890,6 +890,11 @@ type MultiListFilterList {
|
|
|
890
890
|
items: [ListFilterItem]!
|
|
891
891
|
}
|
|
892
892
|
|
|
893
|
+
type MultipleContent {
|
|
894
|
+
notFoundIds: [ID]!
|
|
895
|
+
content: [Content]!
|
|
896
|
+
}
|
|
897
|
+
|
|
893
898
|
type Mutation {
|
|
894
899
|
subscribeToStockNotifications(email: String!, articleNumber: String!): Boolean
|
|
895
900
|
|
|
@@ -1856,6 +1861,11 @@ type Query {
|
|
|
1856
1861
|
"""Get information on person by Key(personal id number or phone number)"""
|
|
1857
1862
|
personLookup(key: String!): PersonLookup
|
|
1858
1863
|
|
|
1864
|
+
"""
|
|
1865
|
+
Returns Content found by list of its IDs. Also not found Content IDs are listed.
|
|
1866
|
+
"""
|
|
1867
|
+
content(ids: [String]!): MultipleContent
|
|
1868
|
+
|
|
1859
1869
|
"""get channel by id, null gets default channel"""
|
|
1860
1870
|
channel(id: String): Channel
|
|
1861
1871
|
|