@scm-manager/ui-components 2.30.2-20220031-151012 → 2.30.2-20220101-084238
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scm-manager/ui-components",
|
|
3
|
-
"version": "2.30.2-
|
|
3
|
+
"version": "2.30.2-20220101-084238",
|
|
4
4
|
"description": "UI Components for SCM-Manager and its plugins",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"files": [
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@scm-manager/jest-preset": "^2.13.0",
|
|
26
26
|
"@scm-manager/prettier-config": "^2.10.1",
|
|
27
27
|
"@scm-manager/tsconfig": "^2.12.0",
|
|
28
|
-
"@scm-manager/ui-tests": "^2.30.2-
|
|
28
|
+
"@scm-manager/ui-tests": "^2.30.2-20220101-084238",
|
|
29
29
|
"@storybook/addon-actions": "^6.3.12",
|
|
30
30
|
"@storybook/addon-storyshots": "^6.3.12",
|
|
31
31
|
"@storybook/builder-webpack5": "^6.3.12",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@headlessui/react": "^1.4.3",
|
|
69
|
-
"@scm-manager/ui-api": "^2.30.2-
|
|
70
|
-
"@scm-manager/ui-extensions": "^2.30.2-
|
|
71
|
-
"@scm-manager/ui-types": "^2.30.2-
|
|
69
|
+
"@scm-manager/ui-api": "^2.30.2-20220101-084238",
|
|
70
|
+
"@scm-manager/ui-extensions": "^2.30.2-20220101-084238",
|
|
71
|
+
"@scm-manager/ui-types": "^2.30.2-20220101-084238",
|
|
72
72
|
"classnames": "^2.2.6",
|
|
73
73
|
"date-fns": "^2.4.1",
|
|
74
74
|
"deepmerge": "^4.2.2",
|
|
@@ -22,13 +22,16 @@
|
|
|
22
22
|
* SOFTWARE.
|
|
23
23
|
*/
|
|
24
24
|
import React, { FC } from "react";
|
|
25
|
+
import classNames from "classnames";
|
|
25
26
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
<div className="loader-wrapper">
|
|
29
|
-
<div className="loader is-loading" />
|
|
30
|
-
</div>
|
|
31
|
-
);
|
|
27
|
+
type Props = {
|
|
28
|
+
className?: string;
|
|
32
29
|
};
|
|
33
30
|
|
|
31
|
+
const SmallLoadingSpinner: FC<Props> = ({ className }) => (
|
|
32
|
+
<div className={classNames("loader-wrapper", className)}>
|
|
33
|
+
<div className="loader is-loading" />
|
|
34
|
+
</div>
|
|
35
|
+
);
|
|
36
|
+
|
|
34
37
|
export default SmallLoadingSpinner;
|