@front10/utils
Advanced tools
Comparing version 0.76.2 to 0.79.0
@@ -0,9 +1,26 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
# [0.79.0](https://gitlab.com/front10-dev/front10-helpers/compare/v0.78.3...v0.79.0) (2020-11-17) | ||
**Note:** Version bump only for package @front10/utils | ||
# @front10/utils | ||
## 0.2.0 | ||
## 0.77.0 | ||
### Minor Changes | ||
- 10aa2b9: Add events that allow to notify the iframe that it should fill the entire viewport or return to ist preferred size. | ||
## 0.2.0 | ||
### Minor Changes | ||
## 0.1.0 | ||
@@ -10,0 +27,0 @@ |
{ | ||
"name": "@front10/utils", | ||
"version": "0.76.2", | ||
"version": "0.79.0", | ||
"description": "Helpers for front10 components", | ||
@@ -11,4 +11,3 @@ "author": "Front10", | ||
"homepage": "https://gitlab.com/front10-dev/front10-helpers#readme", | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"main": "dist/utils.cjs.js", | ||
"files": [ | ||
@@ -22,6 +21,6 @@ "dist", | ||
"scripts": { | ||
"start": "tsdx watch", | ||
"build": "tsdx build", | ||
"test": "tsdx test --passWithNoTests", | ||
"lint": "tsdx lint" | ||
"start": "preconstruct watch", | ||
"build": "tsc && preconstruct build", | ||
"test": "jest --passWithNoTests", | ||
"lint": "eslint src/" | ||
}, | ||
@@ -49,5 +48,4 @@ "repository": { | ||
"react-dom": "^16.13.1", | ||
"tsdx": "^0.13.3", | ||
"tslib": "^1.11.1", | ||
"typescript": "^3.8.3" | ||
"typescript": "^4.0.0" | ||
}, | ||
@@ -57,6 +55,7 @@ "dependencies": { | ||
"loglevel": "^1.6.8", | ||
"nanoid": "^2.0.0", | ||
"react-query": "^2.25.2", | ||
"stylis-rtl": "^1.0.1" | ||
}, | ||
"gitHead": "d3068959acd009d32efb9bea8e659e89f8fe0833" | ||
"gitHead": "4bec7626a620646b6e8fe00d3cdc5ee45f511586" | ||
} |
@@ -1021,3 +1021,3 @@ import { canIExecuteClientCode } from "./canI"; | ||
const styles = JSON.parse(JSON.stringify(props["cmp-styles"])); | ||
Object.keys(styles).map((p) => { | ||
Object.keys(styles).forEach((p) => { | ||
const prop = p | ||
@@ -1065,3 +1065,3 @@ .replace(/--space--/g, " ") | ||
const valueFromPath = getValueFromPath(path, tokenTheme) || {}; | ||
Object.keys(valueFromPath).map((k) => { | ||
Object.keys(valueFromPath).forEach((k) => { | ||
result += `${k}:${valueFromPath[k]};`; | ||
@@ -1068,0 +1068,0 @@ }); |
@@ -5,2 +5,3 @@ export * from "./UseStyles"; | ||
export { Context, ContextProvider } from "./Context"; | ||
export type { ContextValue } from "./Context"; | ||
export { initTheme } from "./ThemeBuilder"; | ||
@@ -14,1 +15,2 @@ export * from "./utils"; | ||
export * from "./events"; | ||
export * from "./viewport"; |
Sorry, the diff of this file is too big to display
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
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
9
7888
1
332220
6
45
+ Addednanoid@^2.0.0
+ Addednanoid@2.1.11(transitive)