🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

flutter-ui

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flutter-ui - npm Package Compare versions

Comparing version
1.0.2
to
1.0.4
+1
-1
dist/PageScaffold.js

@@ -14,3 +14,3 @@ "use strict";

var styled_components_1 = require("styled-components");
var GlobalStyle = styled_components_1.createGlobalStyle(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n color:", ";\n background:", ";\n"], ["\n color:", ";\n background:", ";\n"])), function (props) { return props.color; }, function (props) { return props.background; });
var GlobalStyle = styled_components_1.createGlobalStyle(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n body {\n color:", ";\n background:", " !important;\n }\n"], ["\n body {\n color:", ";\n background:", " !important;\n }\n"])), function (props) { return props.color; }, function (props) { return props.background; });
exports.PageScaffold = function (props) {

@@ -17,0 +17,0 @@ var _a;

{
"name": "flutter-ui",
"version": "1.0.2",
"version": "1.0.4",
"main": "./dist/index.js",

@@ -5,0 +5,0 @@ "types": "./dist/index.d.ts",

@@ -6,4 +6,6 @@ import React from 'react'

const GlobalStyle = createGlobalStyle<{ color: string; background: string }>`
color:${props => props.color};
background:${props => props.background};
body {
color:${props => props.color};
background:${props => props.background} !important;
}
`

@@ -10,0 +12,0 @@