Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@apollosproject/ui-fragments

Package Overview
Dependencies
Maintainers
3
Versions
425
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@apollosproject/ui-fragments - npm Package Compare versions

Comparing version 1.3.0-alpha.19 to 1.3.0-alpha.23

4

package.json
{
"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,
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc