@ansible/ansible-ui-framework 0.0.264 → 0.0.266
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.
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
|
+
if (k2 === undefined) k2 = k;
|
|
8
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
9
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
10
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
11
|
+
}
|
|
12
|
+
Object.defineProperty(o, k2, desc);
|
|
13
|
+
}) : (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
o[k2] = m[k];
|
|
16
|
+
}));
|
|
17
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
18
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
19
|
+
}) : function(o, v) {
|
|
20
|
+
o["default"] = v;
|
|
21
|
+
});
|
|
22
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
23
|
+
if (mod && mod.__esModule) return mod;
|
|
24
|
+
var result = {};
|
|
25
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
26
|
+
__setModuleDefault(result, mod);
|
|
27
|
+
return result;
|
|
28
|
+
};
|
|
29
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
|
+
exports.RunningIcon = void 0;
|
|
31
|
+
var react_icons_1 = require("@patternfly/react-icons");
|
|
32
|
+
var styled_components_1 = __importStar(require("styled-components"));
|
|
33
|
+
var Spin = (0, styled_components_1.keyframes)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n from {\n transform: rotate(0);\n }\n to {\n transform: rotate(1turn);\n }\n"], ["\n from {\n transform: rotate(0);\n }\n to {\n transform: rotate(1turn);\n }\n"])));
|
|
34
|
+
exports.RunningIcon = (0, styled_components_1.default)(react_icons_1.SyncAltIcon)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n animation: ", " 1.75s linear infinite;\n"], ["\n animation: ", " 1.75s linear infinite;\n"])), Spin);
|
|
35
|
+
exports.RunningIcon.displayName = 'RunningIcon';
|
|
36
|
+
var templateObject_1, templateObject_2;
|
package/cjs/index.d.ts
CHANGED
|
@@ -6,6 +6,8 @@ export * from './components/Help';
|
|
|
6
6
|
export * from './components/patternfly-colors';
|
|
7
7
|
export * from './components/useBreakPoint';
|
|
8
8
|
export * from './PageAlertToaster';
|
|
9
|
+
export * from './components/Help';
|
|
10
|
+
export * from './components/icons/RunningIcon';
|
|
9
11
|
export * from './PageBody';
|
|
10
12
|
export * from './PageCells';
|
|
11
13
|
export * from './PageDataList';
|
package/cjs/index.js
CHANGED
|
@@ -22,6 +22,8 @@ __exportStar(require("./components/Help"), exports);
|
|
|
22
22
|
__exportStar(require("./components/patternfly-colors"), exports);
|
|
23
23
|
__exportStar(require("./components/useBreakPoint"), exports);
|
|
24
24
|
__exportStar(require("./PageAlertToaster"), exports);
|
|
25
|
+
__exportStar(require("./components/Help"), exports);
|
|
26
|
+
__exportStar(require("./components/icons/RunningIcon"), exports);
|
|
25
27
|
__exportStar(require("./PageBody"), exports);
|
|
26
28
|
__exportStar(require("./PageCells"), exports);
|
|
27
29
|
__exportStar(require("./PageDataList"), exports);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ansible/ansible-ui-framework",
|
|
3
3
|
"description": "Framework for building consistent responsive web applications using PatternFly.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.266",
|
|
5
5
|
"author": "Red Hat",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -18,14 +18,12 @@
|
|
|
18
18
|
"@patternfly/react-icons": "^4.0.0",
|
|
19
19
|
"@patternfly/react-table": "^4.0.0",
|
|
20
20
|
"@react-hook/resize-observer": "^1.0.0",
|
|
21
|
-
"@types/debounce": "^1.0.0",
|
|
22
21
|
"@types/json-schema": "^7.0.0",
|
|
23
|
-
"@types/luxon": "^3.0.0",
|
|
24
22
|
"debounce": "^1.0.0",
|
|
25
23
|
"luxon": "^3.0.0",
|
|
26
24
|
"p-limit": "^4.0.0",
|
|
27
|
-
"react": "^17.0.0",
|
|
28
|
-
"react
|
|
29
|
-
"
|
|
25
|
+
"react": "^17.0.0 || ^18.0.0 ",
|
|
26
|
+
"@types/react": "^17.0.0 || ^18.0.0 ",
|
|
27
|
+
"react-hook-form": "^7.0.0"
|
|
30
28
|
}
|
|
31
29
|
}
|