New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@indoqa/style-system-demo

Package Overview
Dependencies
Maintainers
4
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@indoqa/style-system-demo - npm Package Compare versions

Comparing version 1.4.1-alpha.2 to 1.4.1-alpha.3

23

package.json
{
"name": "@indoqa/style-system-demo",
"version": "1.4.1-alpha.2",
"version": "1.4.1-alpha.3",
"description": "A demo for the Indoqa Style-System theming support and base components.",

@@ -36,9 +36,9 @@ "license": "Apache-2.0",

"dependencies": {
"@indoqa/react-app-polyfill": "^1.4.1-alpha.2",
"@indoqa/style-system": "^1.4.1-alpha.2",
"@indoqa/ui-explorer": "^1.4.1-alpha.2",
"fela": "^11.5.2",
"fela-monolithic": "^11.5.2",
"fela-plugin-named-keys": "^11.5.2",
"fela-preset-web": "^11.5.2",
"@indoqa/react-app-polyfill": "^1.4.1-alpha.3",
"@indoqa/style-system": "^1.4.1-alpha.3",
"@indoqa/ui-explorer": "^1.4.1-alpha.3",
"fela": "^11.6.0",
"fela-monolithic": "^11.6.0",
"fela-plugin-named-keys": "^11.6.0",
"fela-preset-web": "^11.6.0",
"history": "^4.10.1",

@@ -48,8 +48,9 @@ "react": "^17.0.1",

"react-dom": "^17.0.1",
"react-fela": "^11.5.2",
"react-fela": "^11.6.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^15.4.3"
"react-syntax-highlighter": "^15.4.3",
"tslib": "^2.1.0"
},
"gitHead": "3fa3a934becee4ea371b80f9e7662e13b6a8be3a"
"gitHead": "195e01d994e14ddb4874c32b985cd70fa7c78118"
}

@@ -22,3 +22,3 @@ const felaComponentSamplesCode = `const StyledDiv: React.FC = () => {

const themedElementWithChildrenCode = `const ThemedElementWithChildren: React.FC = ({children}) => {
const style: StyleFunction<Theme> = ({theme}): PStyle => ({
const style: StyleFunction<Theme> = ({theme}): IStyle => ({
backgroundColor: theme.colors.primary,

@@ -41,3 +41,3 @@ color: 'white',

const themedElementWithChildrenAndPropsCode = `const ThemedElementWithChildrenAndProps: React.FC<Props> = ({onClick, children}) => {
const style: StyleFunction<Theme> = ({theme}): PStyle => ({
const style: StyleFunction<Theme> = ({theme}): IStyle => ({
backgroundColor: theme.colors.primary,

@@ -44,0 +44,0 @@ color: 'white',

const styledDivCode = `const StyledDiv: React.FC = () => {
const {css} = useFela()
const style: PStyle = {
const style: IStyle = {
backgroundColor: 'orange',

@@ -26,3 +26,3 @@ width: 50,

const {css, theme} = useFela<Theme>()
const style: PStyle = {
const style: IStyle = {
backgroundColor: theme.colors.accent,

@@ -50,3 +50,3 @@ color: 'white',

const {css, theme} = useFela<Theme>()
const style: PStyle = {
const style: IStyle = {
backgroundColor: theme.colors.accent,

@@ -98,5 +98,5 @@ color: 'white',

const styledWithStaticRendererCode = `const RendererUsage: React.FC = () => {
const styledWithStaticRendererCode = `const RendererUsage = () => {
const {renderer} = useFela()
const style: PStyle = {
const style: IStyle = {
backgroundColor: 'green',

@@ -103,0 +103,0 @@ width: 50,

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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