@scm-manager/ui-buttons 2.40.2-SNAPSHOT → 2.41.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.
Files changed (2) hide show
  1. package/build/index.d.ts +13 -4
  2. package/package.json +5 -5
package/build/index.d.ts CHANGED
@@ -1,7 +1,10 @@
1
1
  import React from 'react';
2
2
  import { LinkProps } from 'react-router-dom';
3
3
 
4
- /** @Beta */
4
+ /**
5
+ * @beta
6
+ * @since 2.41.0
7
+ */
5
8
  declare const ButtonVariants: {
6
9
  readonly PRIMARY: "primary";
7
10
  readonly SECONDARY: "secondary";
@@ -16,17 +19,23 @@ declare type BaseButtonProps = {
16
19
  };
17
20
  /**
18
21
  * Styled html button
19
- * @Beta
22
+ *
23
+ * @beta
24
+ * @since 2.41.0
20
25
  */
21
26
  declare const Button: React.ForwardRefExoticComponent<BaseButtonProps & React.ButtonHTMLAttributes<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>;
22
27
  /**
23
28
  * Styled react router link
24
- * @Beta
29
+ *
30
+ * @beta
31
+ * @since 2.41.0
25
32
  */
26
33
  declare const LinkButton: React.ForwardRefExoticComponent<BaseButtonProps & LinkProps<unknown> & React.RefAttributes<HTMLAnchorElement>>;
27
34
  /**
28
35
  * Styled html anchor
29
- * @Beta
36
+ *
37
+ * @beta
38
+ * @since 2.41.0
30
39
  */
31
40
  declare const ExternalLinkButton: React.ForwardRefExoticComponent<BaseButtonProps & React.AnchorHTMLAttributes<HTMLAnchorElement> & React.RefAttributes<HTMLAnchorElement>>;
32
41
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scm-manager/ui-buttons",
3
- "version": "2.40.2-SNAPSHOT",
3
+ "version": "2.41.0",
4
4
  "private": false,
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.mjs",
@@ -24,11 +24,11 @@
24
24
  "react-dom": "^17.0.1",
25
25
  "react-router-dom": "^5.3.1",
26
26
  "classnames": "^2.2.6",
27
- "@scm-manager/ui-components": "2.40.2-SNAPSHOT"
27
+ "@scm-manager/ui-components": "2.41.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@scm-manager/prettier-config": "^2.11.1",
31
- "@scm-manager/ui-api": "2.40.2-SNAPSHOT",
31
+ "@scm-manager/ui-api": "2.41.0",
32
32
  "@scm-manager/eslint-config": "^2.17.0",
33
33
  "@babel/core": "^7.17.8",
34
34
  "@scm-manager/tsconfig": "^2.12.0",
@@ -79,6 +79,6 @@
79
79
  "extends": "@scm-manager/eslint-config"
80
80
  },
81
81
  "publishConfig": {
82
- "access": "restricted"
82
+ "access": "public"
83
83
  }
84
- }
84
+ }