rbro-tat-uds 2.2.29 → 2.2.30

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.
@@ -45,6 +45,7 @@ const ConfigurationProcessInfo = ({
45
45
  date = "N/A",
46
46
  branchName = "",
47
47
  buttonOnClick,
48
+ disabled = false,
48
49
  ...rest
49
50
  }) => {
50
51
  return /* @__PURE__ */ jsxRuntime.jsxs(ConfigurationProcessInfoStyled, { ...rest, children: [
@@ -56,7 +57,8 @@ const ConfigurationProcessInfo = ({
56
57
  variant: "secondaryOutlined",
57
58
  size: "small",
58
59
  onClick: buttonOnClick,
59
- label: "Anuleaza procesul"
60
+ label: "Anuleaza procesul",
61
+ disabled
60
62
  }
61
63
  ),
62
64
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
@@ -82994,6 +82994,7 @@ const ConfigurationProcessInfo = ({
82994
82994
  date = "N/A",
82995
82995
  branchName = "",
82996
82996
  buttonOnClick,
82997
+ disabled = false,
82997
82998
  ...rest
82998
82999
  }) => {
82999
83000
  return /* @__PURE__ */ jsxRuntime.jsxs(ConfigurationProcessInfoStyled, { ...rest, children: [
@@ -83005,7 +83006,8 @@ const ConfigurationProcessInfo = ({
83005
83006
  variant: "secondaryOutlined",
83006
83007
  size: "small",
83007
83008
  onClick: buttonOnClick,
83008
- label: "Anuleaza procesul"
83009
+ label: "Anuleaza procesul",
83010
+ disabled
83009
83011
  }
83010
83012
  ),
83011
83013
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
@@ -41,6 +41,7 @@ const ConfigurationProcessInfo = ({
41
41
  date = "N/A",
42
42
  branchName = "",
43
43
  buttonOnClick,
44
+ disabled = false,
44
45
  ...rest
45
46
  }) => {
46
47
  return /* @__PURE__ */ jsxs(ConfigurationProcessInfoStyled, { ...rest, children: [
@@ -52,7 +53,8 @@ const ConfigurationProcessInfo = ({
52
53
  variant: "secondaryOutlined",
53
54
  size: "small",
54
55
  onClick: buttonOnClick,
55
- label: "Anuleaza procesul"
56
+ label: "Anuleaza procesul",
57
+ disabled
56
58
  }
57
59
  ),
58
60
  /* @__PURE__ */ jsxs("div", { children: [
@@ -82971,6 +82971,7 @@ const ConfigurationProcessInfo = ({
82971
82971
  date = "N/A",
82972
82972
  branchName = "",
82973
82973
  buttonOnClick,
82974
+ disabled = false,
82974
82975
  ...rest
82975
82976
  }) => {
82976
82977
  return /* @__PURE__ */ jsxs(ConfigurationProcessInfoStyled, { ...rest, children: [
@@ -82982,7 +82983,8 @@ const ConfigurationProcessInfo = ({
82982
82983
  variant: "secondaryOutlined",
82983
82984
  size: "small",
82984
82985
  onClick: buttonOnClick,
82985
- label: "Anuleaza procesul"
82986
+ label: "Anuleaza procesul",
82987
+ disabled
82986
82988
  }
82987
82989
  ),
82988
82990
  /* @__PURE__ */ jsxs("div", { children: [
@@ -4,6 +4,7 @@ interface ConfigurationProcessInfoProps extends HTMLAttributes<HTMLDivElement> {
4
4
  date?: string;
5
5
  branchName?: string;
6
6
  buttonOnClick?(): void;
7
+ disabled?: boolean;
7
8
  }
8
9
  declare const ConfigurationProcessInfo: React.FC<ConfigurationProcessInfoProps>;
9
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rbro-tat-uds",
3
- "version": "2.2.29",
3
+ "version": "2.2.30",
4
4
  "type": "module",
5
5
  "main": "build/cjs/index.cjs",
6
6
  "module": "build/esm/index.js",