Comparing version 0.7.0-beta11 to 0.7.0-beta12
## 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). |
{ | ||
"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
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
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
5565656
1089
3
77
+ Addedajv@6.12.6(transitive)
+ Addedaws-sign2@0.7.0(transitive)
+ Addedbinstall@1.2.1(transitive)
+ Addedcaseless@0.12.0(transitive)
+ Addedfast-deep-equal@3.1.3(transitive)
+ Addedfast-json-stable-stringify@2.1.0(transitive)
+ Addedfind-elm-dependencies@2.0.0(transitive)
+ Addedform-data@2.3.3(transitive)
+ Addedhar-schema@2.0.0(transitive)
+ Addedhar-validator@5.1.5(transitive)
+ Addedhttp-signature@1.2.0(transitive)
+ Addedjson-schema-traverse@0.4.1(transitive)
+ Addedlodash@4.17.104.17.11(transitive)
+ Addednode-elm-compiler@5.0.1(transitive)
+ Addedoauth-sign@0.9.0(transitive)
+ Addedperformance-now@2.1.0(transitive)
+ Addedpsl@1.15.0(transitive)
+ Addedpunycode@2.3.1(transitive)
+ Addedqs@6.5.3(transitive)
+ Addedrequest@2.88.0(transitive)
+ Addedsafe-buffer@5.2.1(transitive)
+ Addedtough-cookie@2.4.3(transitive)
+ Addedtunnel-agent@0.6.0(transitive)
+ Addeduri-js@4.4.1(transitive)
- Removedansi-regex@2.1.1(transitive)
- Removedansi-styles@2.2.1(transitive)
- Removedassert-plus@0.2.0(transitive)
- Removedaws-sign2@0.6.0(transitive)
- Removedbinstall@1.2.0(transitive)
- Removedboom@2.10.1(transitive)
- Removedcaseless@0.11.0(transitive)
- Removedchalk@1.1.3(transitive)
- Removedcryptiles@2.0.5(transitive)
- Removedfind-elm-dependencies@1.0.2(transitive)
- Removedform-data@2.1.4(transitive)
- Removedgenerate-function@2.3.1(transitive)
- Removedgenerate-object-property@1.2.0(transitive)
- Removedhar-validator@2.0.6(transitive)
- Removedhas-ansi@2.0.0(transitive)
- Removedhawk@3.1.3(transitive)
- Removedhoek@2.16.3(transitive)
- Removedhttp-signature@1.1.1(transitive)
- Removedis-my-ip-valid@1.0.1(transitive)
- Removedis-my-json-valid@2.20.6(transitive)
- Removedis-property@1.0.2(transitive)
- Removedjsonpointer@5.0.1(transitive)
- Removedlodash@4.14.24.17.4(transitive)
- Removednode-elm-compiler@4.3.3(transitive)
- Removedoauth-sign@0.8.2(transitive)
- Removedpinkie@2.0.4(transitive)
- Removedpinkie-promise@2.0.1(transitive)
- Removedqs@6.3.3(transitive)
- Removedrequest@2.79.0(transitive)
- Removedsntp@1.0.9(transitive)
- Removedstringstream@0.0.6(transitive)
- Removedstrip-ansi@3.0.1(transitive)
- Removedsupports-color@2.0.0(transitive)
- Removedtough-cookie@2.3.4(transitive)
- Removedtunnel-agent@0.4.3(transitive)
- Removedxtend@4.0.2(transitive)
Updatedbinstall@1.2.1
Updatedlodash@4.17.11
Updatednode-elm-compiler@5.0.1