@sb1/ffe-buttons-react 17.0.2 → 17.0.3
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/README.md +15 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -8,10 +8,23 @@ npm install --save @sb1/ffe-buttons-react
|
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
or see the markdown files next to the component code in `src/`.
|
|
11
|
+
Full documentation on button usage is available at https://design.sparebank1.no/komponenter/knapper/.
|
|
13
12
|
|
|
14
13
|
## TypeScript definition files
|
|
15
14
|
|
|
16
15
|
This component supports TypeScript - please update `index.d.ts` if you change any
|
|
17
16
|
of the external methods or properties in this component.
|
|
17
|
+
|
|
18
|
+
## Development
|
|
19
|
+
|
|
20
|
+
To start a local development server, run the following from the designsystem root folder:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install
|
|
24
|
+
npm run build
|
|
25
|
+
npm start
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
A local instance of `component-overview` with live reloading will run at http://localhost:1234/.
|
|
29
|
+
|
|
30
|
+
Example implementations using the latest versions of all components are also available at https://sparebank1.github.io/designsystem.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sb1/ffe-buttons-react",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.0.3",
|
|
4
4
|
"description": "React implementation of ffe-buttons",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ffe"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@sb1/ffe-buttons": "^17.0.2",
|
|
32
|
-
"@sb1/ffe-icons-react": "^7.3.
|
|
32
|
+
"@sb1/ffe-icons-react": "^7.3.5",
|
|
33
33
|
"classnames": "^2.3.1",
|
|
34
34
|
"prop-types": "^15.7.2"
|
|
35
35
|
},
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "8cbf828bcc67fe4a402abfca9a133061e3d2c37e"
|
|
50
50
|
}
|