@dovetail-v2/refine 0.1.11-alpha.0 → 0.1.11-alpha.2
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/dist/{MonacoYamlDiffEditor-adaa32ac.js → MonacoYamlDiffEditor-42ab72d2.js} +1 -1
- package/dist/{index-906cb61f.js → index-8ae38abf.js} +602 -615
- package/dist/refine.js +66 -64
- package/dist/refine.umd.cjs +533 -546
- package/dist/style.css +8 -6
- package/lib/components/ResourceSelect/index.d.ts +2 -2
- package/lib/components/index.d.ts +1 -0
- package/package.json +5 -5
package/dist/style.css
CHANGED
|
@@ -321,17 +321,21 @@
|
|
|
321
321
|
.egn3dbn.list .title {
|
|
322
322
|
color: rgba(44, 56, 82, 0.6);
|
|
323
323
|
}
|
|
324
|
+
.egn3dbn.card {
|
|
325
|
+
padding: 15px 0;
|
|
326
|
+
}
|
|
324
327
|
.egn3dbn.card .title {
|
|
325
|
-
display: flex;
|
|
326
|
-
align-items: center;
|
|
327
|
-
height: 96px;
|
|
328
328
|
color: rgba(0, 21, 64, 0.3);
|
|
329
329
|
}
|
|
330
|
+
.egn3dbn.card .error-content {
|
|
331
|
+
height: 96px;
|
|
332
|
+
}
|
|
330
333
|
|
|
331
334
|
.e136jgy8 {
|
|
332
335
|
display: flex;
|
|
333
336
|
flex-direction: column;
|
|
334
337
|
align-items: center;
|
|
338
|
+
justify-content: center;
|
|
335
339
|
}
|
|
336
340
|
.e136jgy8 .title {
|
|
337
341
|
margin-bottom: 8px;
|
|
@@ -1229,13 +1233,11 @@
|
|
|
1229
1233
|
overflow: auto;
|
|
1230
1234
|
width: calc(100% - 48px);
|
|
1231
1235
|
max-width: 1592px;
|
|
1236
|
+
margin-bottom: 24px;
|
|
1232
1237
|
}
|
|
1233
1238
|
.ge26ou0:first-of-type {
|
|
1234
1239
|
margin-top: 16px;
|
|
1235
1240
|
}
|
|
1236
|
-
.ge26ou0:not(:last-of-type) {
|
|
1237
|
-
margin-bottom: 24px;
|
|
1238
|
-
}
|
|
1239
1241
|
.ge26ou0 .pagination-wrapper {
|
|
1240
1242
|
padding-top: 12px;
|
|
1241
1243
|
padding-bottom: 0;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
2
|
+
import { KitSelectProps } from '@cloudtower/eagle';
|
|
3
3
|
type ResourceSelectProps = {
|
|
4
4
|
resource: string;
|
|
5
5
|
resourceBasePath: string;
|
|
6
6
|
kind: string;
|
|
7
7
|
value: string;
|
|
8
8
|
onChange: (...params: unknown[]) => void;
|
|
9
|
-
selectProps?:
|
|
9
|
+
selectProps?: KitSelectProps;
|
|
10
10
|
};
|
|
11
11
|
export declare function ResourceSelect(props: ResourceSelectProps): JSX.Element;
|
|
12
12
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dovetail-v2/refine",
|
|
3
|
-
"version": "0.1.11-alpha.
|
|
3
|
+
"version": "0.1.11-alpha.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"module": "./dist/refine.js",
|
|
11
11
|
"types": "./lib/index.d.ts",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@cloudtower/eagle": "^0.31.
|
|
14
|
-
"@cloudtower/icons-react": "^0.31.
|
|
13
|
+
"@cloudtower/eagle": "^0.31.18",
|
|
14
|
+
"@cloudtower/icons-react": "^0.31.18",
|
|
15
15
|
"@patternfly/react-core": "^5.1.1",
|
|
16
16
|
"@patternfly/react-log-viewer": "^5.0.0",
|
|
17
17
|
"@refinedev/core": "^4.47.2",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"vite-plugin-commonjs": "^0.10.0"
|
|
84
84
|
},
|
|
85
85
|
"peerDependencies": {
|
|
86
|
-
"@cloudtower/eagle": "^0.31.
|
|
87
|
-
"@cloudtower/icons-react": "^0.31.
|
|
86
|
+
"@cloudtower/eagle": "^0.31.18",
|
|
87
|
+
"@cloudtower/icons-react": "^0.31.18",
|
|
88
88
|
"@refinedev/core": "^4.47.2",
|
|
89
89
|
"antd": "4.5.0",
|
|
90
90
|
"i18next": "^23.2.3",
|