@sb1/ffe-buttons-react 14.0.12 → 14.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/ExpandButton.js +1 -1
- package/es/InlineExpandButton.js +1 -1
- package/es/ShortcutButton.js +1 -1
- package/package.json +6 -12
package/es/ExpandButton.js
CHANGED
|
@@ -9,7 +9,7 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
9
9
|
import React, { Fragment } from 'react';
|
|
10
10
|
import { bool, func, oneOfType, string, node, object, shape, elementType } from 'prop-types';
|
|
11
11
|
import classNames from 'classnames';
|
|
12
|
-
import KryssIkon from
|
|
12
|
+
import KryssIkon from "@sb1/ffe-icons-react/es/kryss-ikon";
|
|
13
13
|
|
|
14
14
|
var ExpandButton = function ExpandButton(props) {
|
|
15
15
|
var children = props.children,
|
package/es/InlineExpandButton.js
CHANGED
|
@@ -8,7 +8,7 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
8
8
|
|
|
9
9
|
import React from 'react';
|
|
10
10
|
import { bool, func, node, oneOfType, object, shape } from 'prop-types';
|
|
11
|
-
import ChevronIkon from
|
|
11
|
+
import ChevronIkon from "@sb1/ffe-icons-react/es/chevron-ikon";
|
|
12
12
|
import InlineButton from './InlineBaseButton';
|
|
13
13
|
|
|
14
14
|
var InlineExpandButton = function InlineExpandButton(props) {
|
package/es/ShortcutButton.js
CHANGED
|
@@ -2,7 +2,7 @@ function _extends() { _extends = Object.assign || function (target) { for (var i
|
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { bool, func, node, string, oneOfType, object, shape, elementType } from 'prop-types';
|
|
5
|
-
import ChevronIkon from
|
|
5
|
+
import ChevronIkon from "@sb1/ffe-icons-react/es/chevron-ikon";
|
|
6
6
|
import Button from './BaseButton';
|
|
7
7
|
|
|
8
8
|
var ShortcutButton = function ShortcutButton(props) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sb1/ffe-buttons-react",
|
|
3
|
-
"version": "14.0
|
|
3
|
+
"version": "14.1.0",
|
|
4
4
|
"description": "React implementation of ffe-buttons",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ffe"
|
|
@@ -24,23 +24,17 @@
|
|
|
24
24
|
"build": "ffe-buildtool babel",
|
|
25
25
|
"watch": "ffe-buildtool babel-watch",
|
|
26
26
|
"lint": "eslint src",
|
|
27
|
-
"test": "jest",
|
|
28
|
-
"test:watch": "jest --watch"
|
|
29
|
-
},
|
|
30
|
-
"jest": {
|
|
31
|
-
"setupTestFrameworkScriptFile": "../../test-setup.js"
|
|
27
|
+
"test": "ffe-buildtool jest",
|
|
28
|
+
"test:watch": "ffe-buildtool jest --watch"
|
|
32
29
|
},
|
|
33
30
|
"dependencies": {
|
|
34
|
-
"@sb1/ffe-icons-react": "^7.
|
|
31
|
+
"@sb1/ffe-icons-react": "^7.3.0",
|
|
35
32
|
"classnames": "^2.3.1",
|
|
36
33
|
"prop-types": "^15.7.2"
|
|
37
34
|
},
|
|
38
35
|
"devDependencies": {
|
|
39
|
-
"@sb1/ffe-buildtool": "^0.
|
|
40
|
-
"enzyme": "^3.7.0",
|
|
41
|
-
"enzyme-adapter-react-16": "^1.7.0",
|
|
36
|
+
"@sb1/ffe-buildtool": "^0.4.0",
|
|
42
37
|
"eslint": "^5.9.0",
|
|
43
|
-
"jest": "^26.0.0",
|
|
44
38
|
"react": "^16.9.0",
|
|
45
39
|
"react-collapse": "^4.0.3",
|
|
46
40
|
"react-dom": "^16.9.0"
|
|
@@ -52,5 +46,5 @@
|
|
|
52
46
|
"publishConfig": {
|
|
53
47
|
"access": "public"
|
|
54
48
|
},
|
|
55
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "a5570de7abf831ca6ee16a6b569aebabf6278dbb"
|
|
56
50
|
}
|