@trackunit/react-components 0.1.335 → 0.1.336
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/index.cjs.js
CHANGED
|
@@ -1749,6 +1749,7 @@ const Collapsible = ({ children, expanded, id }) => {
|
|
|
1749
1749
|
* @param {CompletionStatusIndicatorProps} props - The properties for the indicator.
|
|
1750
1750
|
* @param {boolean} props.loading - Indicates if the process is in a loading state.
|
|
1751
1751
|
* @param {boolean} props.error - Indicates if an error has occurred.
|
|
1752
|
+
* @param {boolean} props.warning - Indicates if the process has a warning.
|
|
1752
1753
|
* @param {boolean} props.success - Indicates if the process was successful.
|
|
1753
1754
|
*/
|
|
1754
1755
|
const CompletionStatusIndicator = (_a) => {
|
package/index.esm.js
CHANGED
|
@@ -1717,6 +1717,7 @@ const Collapsible = ({ children, expanded, id }) => {
|
|
|
1717
1717
|
* @param {CompletionStatusIndicatorProps} props - The properties for the indicator.
|
|
1718
1718
|
* @param {boolean} props.loading - Indicates if the process is in a loading state.
|
|
1719
1719
|
* @param {boolean} props.error - Indicates if an error has occurred.
|
|
1720
|
+
* @param {boolean} props.warning - Indicates if the process has a warning.
|
|
1720
1721
|
* @param {boolean} props.success - Indicates if the process was successful.
|
|
1721
1722
|
*/
|
|
1722
1723
|
const CompletionStatusIndicator = (_a) => {
|
package/package.json
CHANGED
|
@@ -15,6 +15,7 @@ export interface CompletionStatusIndicatorProps extends CommonProps {
|
|
|
15
15
|
* @param {CompletionStatusIndicatorProps} props - The properties for the indicator.
|
|
16
16
|
* @param {boolean} props.loading - Indicates if the process is in a loading state.
|
|
17
17
|
* @param {boolean} props.error - Indicates if an error has occurred.
|
|
18
|
+
* @param {boolean} props.warning - Indicates if the process has a warning.
|
|
18
19
|
* @param {boolean} props.success - Indicates if the process was successful.
|
|
19
20
|
*/
|
|
20
21
|
export declare const CompletionStatusIndicator: ({ loading, error, success, ...rest }: CompletionStatusIndicatorProps) => JSX.Element | null;
|