@dovetail-v2/refine 0.0.63-alpha.0 → 0.0.63-alpha.1
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-b319f3df.js → MonacoYamlDiffEditor-3ed048e6.js} +1 -1
- package/dist/{index-11d0685a.js → index-d67edbe3.js} +314 -291
- package/dist/refine.js +1 -1
- package/dist/refine.umd.cjs +313 -290
- package/dist/style.css +3 -3
- package/lib/src/components/ShowContent/fields.d.ts +1 -0
- package/lib/src/models/node-model.d.ts +3 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
.h11urhaw{margin-right:8px;line-height:18px;}
|
|
31
31
|
.e1i58tpl.ant-btn.ant-btn-link{height:18px;line-height:18px;font-size:12px;}
|
|
32
32
|
.s9agep2{height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background:linear-gradient(180deg,#fff 0%,#edf0f7 100%);}.s9agep2 .ant-row{margin-right:0 !important;}
|
|
33
|
-
.bo89gfi{color:rgba(0,21,64,0.3);line-height:18px;cursor:pointer;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;}.bo89gfi:hover{color:#
|
|
33
|
+
.bo89gfi{color:rgba(0,21,64,0.3);line-height:18px;cursor:pointer;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;}.bo89gfi:hover{color:#0080ff;}
|
|
34
34
|
.t1ohe42f{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:16px 24px 8px 24px;background-color:#fff;}
|
|
35
|
-
.nqm4qz0{color:#
|
|
35
|
+
.nqm4qz0{color:#00122e;margin-right:8px;}
|
|
36
36
|
.ticl0qc{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;width:100%;}
|
|
37
37
|
.so9uwk1{width:100%;}
|
|
38
38
|
.ge26ou0{padding:12px 16px;padding-bottom:4px;border-radius:8px;border:1px solid rgba(211,218,235,0.6);box-shadow: 0px 0px 2.003px 0px rgba(107,125,153,0.15), 0px 0px 16px 0px rgba(107,125,153,0.08);background-color:#fff;margin:0 24px;overflow:auto;width:calc(100% - 48px);max-width:1592px;}.ge26ou0:first-of-type{margin-top:16px;}.ge26ou0:not(:last-of-type){margin-bottom:24px;}.ge26ou0 .pagination-wrapper{padding-top:12px;padding-bottom:0;}
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
.fykgn2i{background-color:#fff;height:100%;}
|
|
41
41
|
.fngr745{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;}
|
|
42
42
|
.t11wg61l{padding-bottom:16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-width:904px;}
|
|
43
|
-
.v1x3rivf{color:#
|
|
43
|
+
.v1x3rivf{color:#00122e;}
|
|
44
44
|
.tf5s6s.ant-tabs{-webkit-flex:1;-ms-flex:1;flex:1;min-height:0;}.tf5s6s.ant-tabs .ant-tabs-nav{margin-bottom:0;margin-right:24px;}.tf5s6s.ant-tabs .ant-tabs-nav-list{margin-left:24px;}.tf5s6s.ant-tabs .ant-tabs-content-holder{overflow:auto;}.tf5s6s.ant-tabs .ant-tabs-content-holder .ant-tabs-content,.tf5s6s.ant-tabs .ant-tabs-content-holder .ant-tabs-tabpane-active{height:100%;}
|
|
45
45
|
.b11tbgf7.ant-btn-quiet.ant-btn{color:rgba(44,56,82,0.75);}
|
|
46
46
|
.gtbyh5g{padding-bottom:12px;}
|
|
@@ -9,6 +9,7 @@ export type ShowField<Model extends ResourceModel> = {
|
|
|
9
9
|
path: string[];
|
|
10
10
|
labelWidth?: string;
|
|
11
11
|
col?: number;
|
|
12
|
+
hidden?: boolean;
|
|
12
13
|
render?: (val: unknown, record: Model, field: ShowField<Model>) => React.ReactNode | undefined;
|
|
13
14
|
renderContent?: (val: unknown, record: Model, field: ShowField<Model>) => React.ReactNode | undefined;
|
|
14
15
|
};
|
|
@@ -11,5 +11,8 @@ export declare class NodeModel extends WorkloadBaseModel {
|
|
|
11
11
|
_globalStore: GlobalStore;
|
|
12
12
|
constructor(_rawYaml: RequiredNode, _globalStore: GlobalStore);
|
|
13
13
|
get role(): NodeRole;
|
|
14
|
+
get ip(): string | undefined;
|
|
15
|
+
get nodeGroupName(): string | undefined;
|
|
16
|
+
get isControlPlane(): boolean;
|
|
14
17
|
}
|
|
15
18
|
export {};
|