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

elm-css

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elm-css - npm Package Compare versions

Comparing version 0.7.0-beta11 to 0.7.0-beta12

.github/ISSUE_TEMPLATE.md

5

CHANGELOG.md
## Releases
| Version | Notes |
| ------- | ----- |
| [**14.0.0** (unreleased)](https://github.com/rtfeldman/elm-css/tree/14.0.0) | Remove `asPairs`, `Css.Namespace`, and arithmetic operators. Don't report warnings, just emit CSS. Make `Property` opaque and more efficient. Fix `withMedia` nesting bug. (#352) Fix bug in `borderBottomWidth` functions. (#380)
| [**15.0.0** (unreleased)](https://github.com/rtfeldman/elm-css/tree/15.0.0) | Add first-class animation keyframes support. (#431) Remove `asPairs`, `Css.Namespace`, and arithmetic operators. Don't report warnings, just emit CSS. Make `Property` opaque and more efficient. Fix `withMedia` nesting bug. (#352) Rename `Css.Foreign` to `Css.Global`. (#360) Remove `Css.Colors`. (#358) Remove experimental border properties. (#438) Remove experimental `dir` pseudo-class. (#442) Change `class`, `id`, and `animationName` to accept a `String`.
| [**14.0.0**](https://github.com/rtfeldman/elm-css/tree/14.0.0) | Remove `Css.asPairsDEPRECATED` in favor of `DEPRECATED.Css.asPairs`. (#352) Fix bug in `borderBottomWidth` functions. (#380) Make `styled` more flexible. (#420) Add `pointerEvents` (#377). Add `Css.Transitions`.
| [**13.1.1**](https://github.com/rtfeldman/elm-css/tree/13.1.1) | Fix `AngleOrDirection` bug (#356)
| [**13.1.0**](https://github.com/rtfeldman/elm-css/tree/13.1.0) | Add program, programWithFlags, and beginnerProgram to Html.Styled. (#381)
| [**13.1.0**](https://github.com/rtfeldman/elm-css/tree/13.1.0) | Add program, programWithFlags, and beginnerProgram to Html.Styled. (#381) Add `withAttribute`. (#389)
| [**13.0.1**](https://github.com/rtfeldman/elm-css/tree/13.0.1) | Remove extraneous Debug.log

@@ -8,0 +9,0 @@ | [**13.0.0**](https://github.com/rtfeldman/elm-css/tree/13.0.0) | Disallow using multiple `css` attributes in same element, to fix #337. Fix Html.Styled.Lazy (#348). Add Svg.Styled (#339). Improve docs for Css.Foreign (#353).

16

elm-package.json
{
"version": "13.1.0",
"version": "15.1.0",
"summary": "Typed CSS in Elm.",

@@ -7,10 +7,10 @@ "repository": "https://github.com/rtfeldman/elm-css.git",

"source-directories": [
"src"
"0.18-src"
],
"exposed-modules": [
"Css",
"Css.Animations",
"Css.Global",
"Css.Media",
"Css.Transitions",
"Css.Media",
"Css.Foreign",
"Css.Colors",
"Html.Styled",

@@ -25,6 +25,3 @@ "Html.Styled.Attributes",

"Svg.Styled.Keyed",
"Svg.Styled.Lazy",
"DEPRECATED.Css",
"DEPRECATED.Css.File",
"DEPRECATED.Css.Namespace"
"Svg.Styled.Lazy"
],

@@ -35,3 +32,2 @@ "dependencies": {

"elm-lang/virtual-dom": "2.0.0 <= v < 3.0.0",
"rtfeldman/elm-css-util": "1.0.2 <= v < 2.0.0",
"rtfeldman/hex": "1.0.0 <= v < 2.0.0"

@@ -38,0 +34,0 @@ },

@@ -89,3 +89,3 @@ //@flow

"DEPRECATED.Css.File.UniqueSvgClass",
"Css.Foreign.Snippet"
"Css.Global.Snippet"
],

@@ -92,0 +92,0 @@ readElmiPath,

@@ -35,3 +35,3 @@ //@flow

"Css",
"Css.Foreign",
"Css.Global",
"DEPRECATED.Css.File",

@@ -67,3 +67,3 @@ "Platform",

" }\n\n\n" +
"classToSnippet : String -> a -> Css.Foreign.Snippet\n" +
"classToSnippet : String -> a -> Css.Global.Snippet\n" +
"classToSnippet str class =\n" +

@@ -82,3 +82,3 @@ " classToSnippet str class\n\n\n" + // This is just to make type-checking pass. We'll splice in a useful implementation after emitting.

switch (value.signature) {
case "Css.Foreign.Snippet":
case "Css.Global.Snippet":
return modul.name + "." + value.name;

@@ -85,0 +85,0 @@ case "DEPRECATED.Css.File.UniqueClass":

@@ -22,3 +22,3 @@ //@flow

namespacer +
"Main$classToSnippet = F2(function(className, styles) { return A2(_rtfeldman$elm_css$Css_Foreign$class, className, styles._0); });";
"Main$classToSnippet = F2(function(className, styles) { return A2(_rtfeldman$elm_css$Css_Global$class, className, styles._0); });";

@@ -25,0 +25,0 @@ const newMain = [

{
"name": "elm-css",
"version": "0.7.0-beta11",
"version": "0.7.0-beta12",
"description": "Elm-based CSS Preprocessor",

@@ -14,3 +14,3 @@ "main": "index.js",

"test": "elm-test",
"format": "elm-format --elm-version=0.18 src tests examples readme-example"
"format": "elm-format src tests examples readme-example"
},

@@ -35,3 +35,3 @@ "repository": {

"dependencies": {
"binstall": "1.2.0",
"binstall": "1.2.1",
"chalk": "2.1.0",

@@ -43,10 +43,11 @@ "commander": "2.9.0",

"glob": "7.1.2",
"lodash": "4.17.4",
"lodash": "4.17.11",
"mkdirp": "0.5.1",
"node-elm-compiler": "4.3.3",
"node-elm-compiler": "5.0.1",
"tmp": "0.0.28"
},
"devDependencies": {
"elm-format": "^0.7.0-exp",
"chai": "3.4.1"
"chai": "3.4.1",
"elm-format": "0.8.0",
"elm-test": "0.18.13-beta3"
},

@@ -53,0 +54,0 @@ "engineStrict": true,

@@ -8,3 +8,3 @@ {

".",
"../src",
"../0.18-src",
"../readme-example/src"

@@ -11,0 +11,0 @@ ],

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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