@dovetail-v2/refine 0.3.19-alpha.2 → 0.3.20-alpha.0
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/components/Dropdowns/K8sDropdown/index.d.ts +1 -4
- package/dist/components/Form/FormModal.d.ts +1 -1
- package/dist/components/Form/RefineFormContainer.d.ts +1 -1
- package/dist/components/Form/RefineFormContent.d.ts +1 -1
- package/dist/components/Form/YamlForm.d.ts +1 -1
- package/dist/components/Form/YamlFormContainer.d.ts +2 -2
- package/dist/components/Form/type.d.ts +1 -1
- package/dist/components/Form/useFieldsConfig.d.ts +1 -1
- package/dist/components/Form/useRefineForm.d.ts +1 -1
- package/dist/components/PVCDistributeStorage/index.d.ts +5 -1
- package/dist/components/ResourceCRUD/create/index.d.ts +1 -1
- package/dist/components/ShowContent/fields.d.ts +7 -1
- package/dist/hooks/useEagleTable/useEagleTable.d.ts +11 -10
- package/dist/hooks/useOpenForm.d.ts +1 -1
- package/dist/hooks/useRefineFilters.d.ts +1 -3
- package/dist/refine.cjs +152 -135
- package/dist/refine.js +152 -135
- package/dist/style.css +5 -5
- package/dist/utils/form.d.ts +1 -1
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1400,9 +1400,6 @@
|
|
|
1400
1400
|
border-radius: 4px;
|
|
1401
1401
|
background: rgba(237, 241, 250, 0.6);
|
|
1402
1402
|
}
|
|
1403
|
-
.c8jy7dc:not(:last-of-type) {
|
|
1404
|
-
margin-bottom: 8px;
|
|
1405
|
-
}
|
|
1406
1403
|
|
|
1407
1404
|
.k2sddxl {
|
|
1408
1405
|
color: rgba(44, 56, 82, 0.75);
|
|
@@ -3508,7 +3505,7 @@
|
|
|
3508
3505
|
height: 100%;
|
|
3509
3506
|
display: flex;
|
|
3510
3507
|
flex-direction: column;
|
|
3511
|
-
background:
|
|
3508
|
+
background: white;
|
|
3512
3509
|
}
|
|
3513
3510
|
|
|
3514
3511
|
.b13d603q {
|
|
@@ -3627,7 +3624,10 @@
|
|
|
3627
3624
|
margin: auto 0;
|
|
3628
3625
|
margin-right: 8px;
|
|
3629
3626
|
border: 1px solid rgba(172, 186, 211, 0.6);
|
|
3630
|
-
background-color: white;
|
|
3627
|
+
background-color: white !important;
|
|
3628
|
+
padding: 2px 5px;
|
|
3629
|
+
height: 22px;
|
|
3630
|
+
color: #1D326C !important;
|
|
3631
3631
|
}
|
|
3632
3632
|
|
|
3633
3633
|
.cxd8k68 {
|
package/dist/utils/form.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ResourceModel } from 'src/models';
|
|
2
2
|
import { ResourceConfig } from 'src/types';
|
|
3
|
-
export declare function getInitialValues<Model extends ResourceModel = ResourceModel>(
|
|
3
|
+
export declare function getInitialValues<Model extends ResourceModel = ResourceModel>(resourceConfig: Pick<ResourceConfig<Model>, 'apiVersion' | 'kind' | 'initValue'>): Record<string, unknown>;
|