mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 19:44:21 +00:00
0.14.1
This commit is contained in:
parent
136936a97d
commit
d964d2284b
4 changed files with 475 additions and 411 deletions
868
package-lock.json
generated
868
package-lock.json
generated
File diff suppressed because it is too large
Load diff
15
package.json
15
package.json
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"private": false,
|
"private": false,
|
||||||
"name": "bluelib",
|
"name": "bluelib",
|
||||||
"version": "0.14.0",
|
"version": "0.14.1",
|
||||||
"license": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
"source": "src/index.js",
|
"source": "src/index.js",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
@ -27,15 +27,12 @@
|
||||||
"@fortawesome/free-solid-svg-icons": "^5.13.1",
|
"@fortawesome/free-solid-svg-icons": "^5.13.1",
|
||||||
"@fortawesome/react-fontawesome": "^0.1.11",
|
"@fortawesome/react-fontawesome": "^0.1.11",
|
||||||
"css-loader": "^3.6.0",
|
"css-loader": "^3.6.0",
|
||||||
"file-loader": "^5.0.2",
|
"file-loader": "^5.1.0",
|
||||||
"less": "^3.11.3",
|
"less": "^3.11.3",
|
||||||
"less-loader": "^5.0.0",
|
"less-loader": "^5.0.0",
|
||||||
"preact": "^10.4.4",
|
"preact": "^10.4.5",
|
||||||
"preact-render-to-string": "^5.1.8",
|
"preact-render-to-string": "^5.1.9",
|
||||||
"react-syntax-highlighter": "^12.2.1",
|
"process": "^0.11.10",
|
||||||
"showdown": "^1.9.1",
|
"style-loader": "^1.1.4"
|
||||||
"style-loader": "^1.2.1",
|
|
||||||
"use-deep-compare-effect": "^1.3.1",
|
|
||||||
"webpack": "^4.43.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { concatClass } from 'bluelib';
|
import concatClass from '../../utils/concatClass';
|
||||||
import style from './BaseLink.less';
|
import style from './BaseLink.less';
|
||||||
import { useContext } from 'preact/hooks';
|
import { useContext } from 'preact/hooks';
|
||||||
import CurrentPage from '../../contexts/CurrentPage';
|
import CurrentPage from '../../contexts/CurrentPage';
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
import concatClass from "../../utils/concatClass";
|
import concatClass from "../../utils/concatClass";
|
||||||
import style from "./FormRow.less";
|
import style from "./FormRow.less";
|
||||||
import theme from "../../styles/theme.less"
|
import theme from "../../styles/theme.less"
|
||||||
import ValidityStatus from "../../enums/Validity";
|
|
||||||
|
|
||||||
export default function (props) {
|
export default function (props) {
|
||||||
let color = null;
|
let color = null;
|
||||||
|
|
Loading…
Reference in a new issue