@akinon/pz-akifast 1.42.0-rc.1 → 1.42.0-rc.11
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +28 -0
- package/README.md +11 -1
- package/package.json +1 -1
- package/src/views/QuickLoginButton.tsx +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,33 @@
|
|
1
1
|
# @akinon/pz-akifast
|
2
2
|
|
3
|
+
## 1.42.0-rc.11
|
4
|
+
|
5
|
+
## 1.42.0-rc.10
|
6
|
+
|
7
|
+
## 1.42.0-rc.9
|
8
|
+
|
9
|
+
## 1.42.0-rc.8
|
10
|
+
|
11
|
+
## 1.42.0-rc.7
|
12
|
+
|
13
|
+
### Minor Changes
|
14
|
+
|
15
|
+
- 50b9069: ZERO-2767: update plugin readme files
|
16
|
+
|
17
|
+
## 1.42.0-rc.6
|
18
|
+
|
19
|
+
### Minor Changes
|
20
|
+
|
21
|
+
- 146ea39: ZERO-2774: Update imports
|
22
|
+
|
23
|
+
## 1.42.0-rc.5
|
24
|
+
|
25
|
+
## 1.42.0-rc.4
|
26
|
+
|
27
|
+
## 1.42.0-rc.3
|
28
|
+
|
29
|
+
## 1.42.0-rc.2
|
30
|
+
|
3
31
|
## 1.42.0-rc.1
|
4
32
|
|
5
33
|
## 1.42.0-rc.0
|
package/README.md
CHANGED
@@ -1,4 +1,14 @@
|
|
1
|
-
# pz-akifast
|
1
|
+
# @akinon/pz-akifast
|
2
|
+
|
3
|
+
### Install the npm package
|
4
|
+
|
5
|
+
```bash
|
6
|
+
# For latest version
|
7
|
+
yarn add @akinon/pz-akifast
|
8
|
+
|
9
|
+
# Preferred installation method
|
10
|
+
npx @akinon/projectzero@latest --plugins
|
11
|
+
```
|
2
12
|
|
3
13
|
### Setting the Visibility of Buttons
|
4
14
|
(all buttons are visible by default)
|
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import { Button } from '
|
2
|
+
import { Button } from '@akinon/next/components';
|
3
3
|
import { PluginModuleComponentProps } from '@akinon/next/types';
|
4
4
|
|
5
5
|
interface QuickLoginButtonProps extends PluginModuleComponentProps {
|