@stylable/runtime
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -38,3 +38,3 @@ "use strict"; | ||
// tslint:disable-next-line: max-line-length | ||
return "" + namespace + stateWithParamDelimiter + stateName + param.length + stateMiddleDelimiter + param.replace(/\s/gm, '_'); | ||
return "" + namespace + stateWithParamDelimiter + stateName + stateMiddleDelimiter + param.length + stateMiddleDelimiter + param.replace(/\s/gm, '_'); | ||
} | ||
@@ -41,0 +41,0 @@ function createStateClass(stateName, stateValue) { |
{ | ||
"name": "@stylable/runtime", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Stylable runtime DOM integration", | ||
@@ -34,3 +34,3 @@ "main": "cjs/index.js", | ||
"license": "BSD-3-Clause", | ||
"gitHead": "29404c70e6801fedf67b9982ef1632750a798b57" | ||
"gitHead": "6d47e4728f9164f1fb9d1425f4a0409de0a9b857" | ||
} |
@@ -1,2 +0,2 @@ | ||
/* runtime version: 2.0.1 */ | ||
/* runtime version: 2.0.2 */ | ||
function StylableRuntime(exports){ | ||
@@ -205,3 +205,3 @@ exports = exports || {}; | ||
// tslint:disable-next-line: max-line-length | ||
return "" + namespace + stateWithParamDelimiter + stateName + param.length + stateMiddleDelimiter + param.replace(/\s/gm, '_'); | ||
return "" + namespace + stateWithParamDelimiter + stateName + stateMiddleDelimiter + param.length + stateMiddleDelimiter + param.replace(/\s/gm, '_'); | ||
} | ||
@@ -208,0 +208,0 @@ function createStateClass(stateName, stateValue) { |
@@ -57,3 +57,3 @@ import { RuntimeRenderer } from './css-runtime-renderer'; | ||
// tslint:disable-next-line: max-line-length | ||
return `${namespace}${stateWithParamDelimiter}${stateName}${param.length}${stateMiddleDelimiter}${param.replace(/\s/gm, '_')}`; | ||
return `${namespace}${stateWithParamDelimiter}${stateName}${stateMiddleDelimiter}${param.length}${stateMiddleDelimiter}${param.replace(/\s/gm, '_')}`; | ||
} | ||
@@ -60,0 +60,0 @@ |
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
51376