@apollosproject/ui-fragments
Advanced tools
Comparing version 1.3.0-alpha.19 to 1.3.0-alpha.23
{ | ||
"name": "@apollosproject/ui-fragments", | ||
"version": "1.3.0-alpha.19+16e8033", | ||
"version": "1.3.0-alpha.23+d114e1c", | ||
"homepage": "https://github.com/ApollosProject/apollos-prototype#readme", | ||
@@ -46,3 +46,3 @@ "main": "src/index.js", | ||
"license": "SEE LICENSE IN LICENSE.md", | ||
"gitHead": "16e8033ba27b8133042f1cf77a4a1982f2c48478" | ||
"gitHead": "d114e1c5e19229aa95f88e787c10f7e7be82c217" | ||
} |
@@ -28,2 +28,30 @@ import gql from 'graphql-tag'; | ||
export { TEXT_FEATURE_FRAGMENT, SCRIPTURE_FEATURE_FRAGMENT }; | ||
const FEATURES_FRAGMENT = gql` | ||
fragment FeaturesFragment on Feature { | ||
id | ||
...TextFeatureFragment | ||
...ScriptureFeatureFragment | ||
} | ||
`; | ||
const CARD_FEATURES_FRAGMENT = gql` | ||
fragment CardFeaturesFragment on ContentItem { | ||
... on ContentSeriesContentItem { | ||
features { | ||
...FeaturesFragment | ||
} | ||
} | ||
... on WeekendContentItem { | ||
features { | ||
...FeaturesFragment | ||
} | ||
} | ||
} | ||
`; | ||
export { | ||
TEXT_FEATURE_FRAGMENT, | ||
SCRIPTURE_FEATURE_FRAGMENT, | ||
CARD_FEATURES_FRAGMENT, | ||
FEATURES_FRAGMENT, | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
15914
287