@nocobase/client 0.9.3-alpha.1 → 0.9.4-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/es/acl/ACLProvider.js +2 -2
- package/es/acl/Configuration/RoleConfigure.js +15 -8
- package/es/api-client/APIClient.d.ts +2 -0
- package/es/api-client/APIClient.js +11 -0
- package/es/block-provider/BlockProvider.js +58 -17
- package/es/block-provider/hooks/index.js +81 -60
- package/es/collection-manager/CollectionField.js +3 -3
- package/es/collection-manager/CollectionFieldProvider.js +2 -1
- package/es/collection-manager/Configuration/AddFieldAction.js +3 -3
- package/es/collection-manager/Configuration/CollectionFields.d.ts +1 -1
- package/es/collection-manager/Configuration/CollectionFields.js +1 -3
- package/es/collection-manager/Configuration/ConfigurationTabs.js +7 -6
- package/es/collection-manager/hooks/useCollection.d.ts +1 -1
- package/es/collection-manager/hooks/useCollectionDataSource.js +4 -4
- package/es/collection-manager/interfaces/m2m.js +1 -1
- package/es/collection-manager/interfaces/m2o.js +1 -1
- package/es/collection-manager/interfaces/o2m.js +1 -1
- package/es/collection-manager/interfaces/o2o.js +2 -2
- package/es/collection-manager/templates/expression.js +1 -1
- package/es/filter-provider/utils.js +1 -1
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/locale/en_US.d.ts +16 -1
- package/es/locale/en_US.js +17 -2
- package/es/locale/es_ES.d.ts +692 -0
- package/es/locale/es_ES.js +691 -0
- package/es/locale/ja_JP.d.ts +5 -1
- package/es/locale/ja_JP.js +6 -2
- package/es/locale/pt_BR.d.ts +5 -1
- package/es/locale/pt_BR.js +6 -2
- package/es/locale/ru_RU.d.ts +5 -1
- package/es/locale/ru_RU.js +6 -2
- package/es/locale/tr_TR.d.ts +5 -1
- package/es/locale/tr_TR.js +6 -2
- package/es/locale/zh_CN.d.ts +25 -2
- package/es/locale/zh_CN.js +26 -3
- package/es/pm/PluginManagerLink.js +22 -14
- package/es/record-provider/index.d.ts +4 -0
- package/es/record-provider/index.js +3 -0
- package/es/schema-component/antd/action/Action.Designer.js +6 -3
- package/es/schema-component/antd/action/Action.Drawer.js +5 -2
- package/es/schema-component/antd/action/Action.js +2 -2
- package/es/schema-component/antd/action/ActionBar.js +25 -18
- package/es/schema-component/antd/association-field/AssociationFieldProvider.d.ts +2 -2
- package/es/schema-component/antd/association-field/AssociationFieldProvider.js +62 -9
- package/es/schema-component/antd/association-field/AssociationSelect.js +10 -65
- package/es/schema-component/antd/association-field/Editable.d.ts +1 -1
- package/es/schema-component/antd/association-field/Editable.js +32 -40
- package/es/schema-component/antd/association-field/InternalNester.js +4 -3
- package/es/schema-component/antd/association-field/InternalPicker.js +29 -60
- package/es/schema-component/antd/association-field/InternalViewer.js +9 -12
- package/es/schema-component/antd/association-field/Nester.js +19 -21
- package/es/schema-component/antd/association-field/ReadPretty.d.ts +1 -1
- package/es/schema-component/antd/association-field/ReadPretty.js +9 -25
- package/es/schema-component/antd/association-field/components/CreateRecordAction.d.ts +2 -0
- package/es/schema-component/antd/association-field/components/CreateRecordAction.js +61 -0
- package/es/schema-component/antd/association-field/context.d.ts +5 -2
- package/es/schema-component/antd/association-field/context.js +1 -1
- package/es/schema-component/antd/association-field/hooks.d.ts +3 -0
- package/es/schema-component/antd/association-field/hooks.js +10 -10
- package/es/schema-component/antd/association-filter/AssociationFilter.Item.js +3 -3
- package/es/schema-component/antd/association-select/AssociationSelect.js +49 -231
- package/es/schema-component/antd/association-select/useServiceOptions.js +2 -2
- package/es/schema-component/antd/collection-select/CollectionSelect.js +5 -0
- package/es/schema-component/antd/filter/FilterAction.js +2 -2
- package/es/schema-component/antd/form/Form.js +4 -4
- package/es/schema-component/antd/form-item/FormItem.js +126 -145
- package/es/schema-component/antd/form-item/SchemaSettingOptions.js +3 -3
- package/es/schema-component/antd/form-v2/Form.Designer.js +1 -0
- package/es/schema-component/antd/form-v2/Templates.d.ts +20 -0
- package/es/schema-component/antd/form-v2/Templates.js +42 -12
- package/es/schema-component/antd/grid/Grid.js +34 -24
- package/es/schema-component/antd/grid-card/GridCard.Decorator.d.ts +5 -0
- package/es/schema-component/antd/grid-card/GridCard.Decorator.js +65 -0
- package/es/schema-component/antd/grid-card/GridCard.Designer.d.ts +1 -0
- package/es/schema-component/antd/grid-card/GridCard.Designer.js +243 -0
- package/es/schema-component/antd/grid-card/GridCard.Item.d.ts +1 -0
- package/es/schema-component/antd/grid-card/GridCard.Item.js +18 -0
- package/es/schema-component/antd/grid-card/GridCard.d.ts +8 -0
- package/es/schema-component/antd/grid-card/GridCard.js +103 -0
- package/es/schema-component/antd/grid-card/hooks.d.ts +4 -0
- package/es/schema-component/antd/grid-card/hooks.js +9 -0
- package/es/schema-component/antd/grid-card/index.d.ts +1 -0
- package/es/schema-component/antd/grid-card/index.js +1 -0
- package/es/schema-component/antd/grid-card/options.d.ts +20 -0
- package/es/schema-component/antd/grid-card/options.js +20 -0
- package/es/schema-component/antd/icon-picker/IconPicker.js +2 -2
- package/es/schema-component/antd/index.d.ts +2 -0
- package/es/schema-component/antd/index.js +2 -0
- package/es/schema-component/antd/input/EllipsisWithTooltip.js +2 -2
- package/es/schema-component/antd/list/List.Decorator.d.ts +5 -0
- package/es/schema-component/antd/list/List.Decorator.js +59 -0
- package/es/schema-component/antd/list/List.Designer.d.ts +1 -0
- package/es/schema-component/antd/list/List.Designer.js +205 -0
- package/es/schema-component/antd/list/List.Item.d.ts +1 -0
- package/es/schema-component/antd/list/List.Item.js +15 -0
- package/es/schema-component/antd/list/List.d.ts +8 -0
- package/es/schema-component/antd/list/List.js +83 -0
- package/es/schema-component/antd/list/hooks.d.ts +4 -0
- package/es/schema-component/antd/list/hooks.js +9 -0
- package/es/schema-component/antd/list/index.d.ts +1 -0
- package/es/schema-component/antd/list/index.js +1 -0
- package/es/schema-component/antd/remote-select/RemoteSelect.js +12 -10
- package/es/schema-component/antd/select/Select.js +15 -4
- package/es/schema-component/antd/table/Table.Void.Designer.js +1 -0
- package/es/schema-component/antd/table-v2/TableBlockDesigner.js +2 -1
- package/es/schema-component/antd/table-v2/TableSelectorDesigner.js +1 -0
- package/es/schema-component/antd/table-v2/hooks/useUserVariable.d.ts +22 -0
- package/es/schema-component/antd/table-v2/hooks/useUserVariable.js +65 -0
- package/es/schema-component/antd/variable/Input.js +6 -3
- package/es/schema-component/common/dnd-context/index.js +2 -2
- package/es/schema-component/common/sortable-item/SortableItem.js +3 -4
- package/es/schema-component/core/SchemaComponentProvider.js +2 -2
- package/es/schema-initializer/SchemaInitializerProvider.d.ts +1 -0
- package/es/schema-initializer/SchemaInitializerProvider.js +23 -10
- package/es/schema-initializer/buttons/BlockInitializers.js +10 -0
- package/es/schema-initializer/buttons/CustomFormItemInitializers.js +4 -2
- package/es/schema-initializer/buttons/FormActionInitializers.d.ts +0 -116
- package/es/schema-initializer/buttons/FormActionInitializers.js +106 -100
- package/es/schema-initializer/buttons/GanttActionInitializers.d.ts +0 -19
- package/es/schema-initializer/buttons/GridCardActionInitializers.d.ts +195 -0
- package/es/schema-initializer/buttons/GridCardActionInitializers.js +278 -0
- package/es/schema-initializer/buttons/ListActionInitializers.d.ts +195 -0
- package/es/schema-initializer/buttons/ListActionInitializers.js +278 -0
- package/es/schema-initializer/buttons/TableActionColumnInitializers.js +1 -1
- package/es/schema-initializer/buttons/TableActionInitializers.d.ts +0 -20
- package/es/schema-initializer/buttons/TableActionInitializers.js +29 -35
- package/es/schema-initializer/buttons/TableColumnInitializers.js +4 -1
- package/es/schema-initializer/buttons/index.d.ts +3 -0
- package/es/schema-initializer/buttons/index.js +3 -0
- package/es/schema-initializer/components/BulkEditField.js +7 -5
- package/es/schema-initializer/components/CreateRecordAction.d.ts +1 -0
- package/es/schema-initializer/components/CreateRecordAction.js +51 -30
- package/es/schema-initializer/components/DeletedField.d.ts +1 -0
- package/es/schema-initializer/components/DeletedField.js +11 -0
- package/es/schema-initializer/components/assigned-field/AssignedField.js +35 -23
- package/es/schema-initializer/items/GridCardBlockInitializer.d.ts +1 -0
- package/es/schema-initializer/items/GridCardBlockInitializer.js +47 -0
- package/es/schema-initializer/items/ListBlockInitializer.d.ts +1 -0
- package/es/schema-initializer/items/ListBlockInitializer.js +47 -0
- package/es/schema-initializer/items/index.d.ts +3 -1
- package/es/schema-initializer/items/index.js +4 -2
- package/es/schema-initializer/utils.d.ts +112 -0
- package/es/schema-initializer/utils.js +206 -32
- package/es/schema-items/GeneralSchemaItems.d.ts +4 -0
- package/es/schema-items/GeneralSchemaItems.js +148 -0
- package/es/schema-items/index.d.ts +1 -0
- package/es/schema-items/index.js +2 -1
- package/es/schema-settings/DataTemplates/FormDataTemplates.d.ts +1 -0
- package/es/schema-settings/DataTemplates/FormDataTemplates.js +117 -42
- package/es/schema-settings/DataTemplates/components/AsDefaultTemplate.js +1 -1
- package/es/schema-settings/DataTemplates/components/DataTemplateTitle.js +9 -13
- package/es/schema-settings/DataTemplates/components/Designer.d.ts +7 -0
- package/es/schema-settings/DataTemplates/components/Designer.js +179 -0
- package/es/schema-settings/DataTemplates/hooks/useCollectionState.d.ts +6 -1
- package/es/schema-settings/DataTemplates/hooks/useCollectionState.js +204 -96
- package/es/schema-settings/GeneralSchemaDesigner.js +19 -15
- package/es/schema-settings/SchemaSettings.d.ts +1 -1
- package/es/schema-settings/SchemaSettings.js +54 -30
- package/es/schema-settings/VariableInput/hooks/useUserVariable.js +1 -1
- package/es/schema-settings/hooks/useIsShowMultipleSwitch.d.ts +4 -0
- package/es/schema-settings/hooks/useIsShowMultipleSwitch.js +18 -0
- package/es/schema-templates/BlockTemplateDetails.js +1 -1
- package/es/settings-form/SettingsForm.js +2 -2
- package/es/user/CurrentUser.js +120 -12
- package/lib/acl/ACLProvider.js +2 -2
- package/lib/acl/Configuration/RoleConfigure.js +15 -8
- package/lib/api-client/APIClient.d.ts +2 -0
- package/lib/api-client/APIClient.js +11 -0
- package/lib/block-provider/BlockProvider.js +57 -16
- package/lib/block-provider/hooks/index.js +80 -59
- package/lib/collection-manager/CollectionField.js +3 -3
- package/lib/collection-manager/CollectionFieldProvider.js +2 -1
- package/lib/collection-manager/Configuration/AddFieldAction.js +2 -2
- package/lib/collection-manager/Configuration/CollectionFields.d.ts +1 -1
- package/lib/collection-manager/Configuration/CollectionFields.js +1 -3
- package/lib/collection-manager/Configuration/ConfigurationTabs.js +7 -6
- package/lib/collection-manager/hooks/useCollection.d.ts +1 -1
- package/lib/collection-manager/hooks/useCollectionDataSource.js +4 -4
- package/lib/collection-manager/interfaces/m2m.js +1 -1
- package/lib/collection-manager/interfaces/m2o.js +1 -1
- package/lib/collection-manager/interfaces/o2m.js +1 -1
- package/lib/collection-manager/interfaces/o2o.js +2 -2
- package/lib/collection-manager/templates/expression.js +1 -1
- package/lib/filter-provider/utils.js +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +11 -0
- package/lib/locale/en_US.d.ts +16 -1
- package/lib/locale/en_US.js +17 -2
- package/lib/locale/es_ES.d.ts +692 -0
- package/lib/locale/es_ES.js +698 -0
- package/lib/locale/ja_JP.d.ts +5 -1
- package/lib/locale/ja_JP.js +6 -2
- package/lib/locale/pt_BR.d.ts +5 -1
- package/lib/locale/pt_BR.js +6 -2
- package/lib/locale/ru_RU.d.ts +5 -1
- package/lib/locale/ru_RU.js +6 -2
- package/lib/locale/tr_TR.d.ts +5 -1
- package/lib/locale/tr_TR.js +6 -2
- package/lib/locale/zh_CN.d.ts +25 -2
- package/lib/locale/zh_CN.js +26 -3
- package/lib/pm/PluginManagerLink.js +21 -13
- package/lib/record-provider/index.d.ts +4 -0
- package/lib/record-provider/index.js +5 -1
- package/lib/schema-component/antd/action/Action.Designer.js +6 -3
- package/lib/schema-component/antd/action/Action.Drawer.js +5 -2
- package/lib/schema-component/antd/action/Action.js +2 -2
- package/lib/schema-component/antd/action/ActionBar.js +23 -16
- package/lib/schema-component/antd/association-field/AssociationFieldProvider.d.ts +2 -2
- package/lib/schema-component/antd/association-field/AssociationFieldProvider.js +62 -8
- package/lib/schema-component/antd/association-field/AssociationSelect.js +9 -66
- package/lib/schema-component/antd/association-field/Editable.d.ts +1 -1
- package/lib/schema-component/antd/association-field/Editable.js +33 -42
- package/lib/schema-component/antd/association-field/InternalNester.js +2 -2
- package/lib/schema-component/antd/association-field/InternalPicker.js +25 -56
- package/lib/schema-component/antd/association-field/InternalViewer.js +7 -10
- package/lib/schema-component/antd/association-field/Nester.js +19 -21
- package/lib/schema-component/antd/association-field/ReadPretty.d.ts +1 -1
- package/lib/schema-component/antd/association-field/ReadPretty.js +10 -27
- package/lib/schema-component/antd/association-field/components/CreateRecordAction.d.ts +2 -0
- package/lib/schema-component/antd/association-field/components/CreateRecordAction.js +71 -0
- package/lib/schema-component/antd/association-field/context.d.ts +5 -2
- package/lib/schema-component/antd/association-field/context.js +1 -1
- package/lib/schema-component/antd/association-field/hooks.d.ts +3 -0
- package/lib/schema-component/antd/association-field/hooks.js +10 -10
- package/lib/schema-component/antd/association-filter/AssociationFilter.Item.js +3 -3
- package/lib/schema-component/antd/association-select/AssociationSelect.js +49 -231
- package/lib/schema-component/antd/association-select/useServiceOptions.js +2 -2
- package/lib/schema-component/antd/collection-select/CollectionSelect.js +5 -0
- package/lib/schema-component/antd/filter/FilterAction.js +2 -2
- package/lib/schema-component/antd/form/Form.js +4 -4
- package/lib/schema-component/antd/form-item/FormItem.js +122 -141
- package/lib/schema-component/antd/form-item/SchemaSettingOptions.js +3 -3
- package/lib/schema-component/antd/form-v2/Form.Designer.js +1 -0
- package/lib/schema-component/antd/form-v2/Templates.d.ts +20 -0
- package/lib/schema-component/antd/form-v2/Templates.js +41 -11
- package/lib/schema-component/antd/grid/Grid.js +33 -23
- package/lib/schema-component/antd/grid-card/GridCard.Decorator.d.ts +5 -0
- package/lib/schema-component/antd/grid-card/GridCard.Decorator.js +77 -0
- package/lib/schema-component/antd/grid-card/GridCard.Designer.d.ts +1 -0
- package/lib/schema-component/antd/grid-card/GridCard.Designer.js +253 -0
- package/lib/schema-component/antd/grid-card/GridCard.Item.d.ts +1 -0
- package/lib/schema-component/antd/grid-card/GridCard.Item.js +26 -0
- package/lib/schema-component/antd/grid-card/GridCard.d.ts +8 -0
- package/lib/schema-component/antd/grid-card/GridCard.js +112 -0
- package/lib/schema-component/antd/grid-card/hooks.d.ts +4 -0
- package/lib/schema-component/antd/grid-card/hooks.js +16 -0
- package/lib/schema-component/antd/grid-card/index.d.ts +1 -0
- package/lib/schema-component/antd/grid-card/index.js +16 -0
- package/lib/schema-component/antd/grid-card/options.d.ts +20 -0
- package/lib/schema-component/antd/grid-card/options.js +31 -0
- package/lib/schema-component/antd/icon-picker/IconPicker.js +2 -2
- package/lib/schema-component/antd/index.d.ts +2 -0
- package/lib/schema-component/antd/index.js +22 -0
- package/lib/schema-component/antd/input/EllipsisWithTooltip.js +2 -2
- package/lib/schema-component/antd/list/List.Decorator.d.ts +5 -0
- package/lib/schema-component/antd/list/List.Decorator.js +71 -0
- package/lib/schema-component/antd/list/List.Designer.d.ts +1 -0
- package/lib/schema-component/antd/list/List.Designer.js +213 -0
- package/lib/schema-component/antd/list/List.Item.d.ts +1 -0
- package/lib/schema-component/antd/list/List.Item.js +23 -0
- package/lib/schema-component/antd/list/List.d.ts +8 -0
- package/lib/schema-component/antd/list/List.js +92 -0
- package/lib/schema-component/antd/list/hooks.d.ts +4 -0
- package/lib/schema-component/antd/list/hooks.js +16 -0
- package/lib/schema-component/antd/list/index.d.ts +1 -0
- package/lib/schema-component/antd/list/index.js +16 -0
- package/lib/schema-component/antd/remote-select/RemoteSelect.js +11 -9
- package/lib/schema-component/antd/select/Select.js +14 -3
- package/lib/schema-component/antd/table/Table.Void.Designer.js +1 -0
- package/lib/schema-component/antd/table-v2/TableBlockDesigner.js +2 -1
- package/lib/schema-component/antd/table-v2/TableSelectorDesigner.js +1 -0
- package/lib/schema-component/antd/table-v2/hooks/useUserVariable.d.ts +22 -0
- package/lib/schema-component/antd/table-v2/hooks/useUserVariable.js +73 -0
- package/lib/schema-component/antd/variable/Input.js +6 -3
- package/lib/schema-component/common/dnd-context/index.js +2 -2
- package/lib/schema-component/common/sortable-item/SortableItem.js +3 -4
- package/lib/schema-component/core/SchemaComponentProvider.js +2 -2
- package/lib/schema-initializer/SchemaInitializerProvider.d.ts +1 -0
- package/lib/schema-initializer/SchemaInitializerProvider.js +22 -9
- package/lib/schema-initializer/buttons/BlockInitializers.js +10 -0
- package/lib/schema-initializer/buttons/CustomFormItemInitializers.js +4 -2
- package/lib/schema-initializer/buttons/FormActionInitializers.d.ts +0 -116
- package/lib/schema-initializer/buttons/FormActionInitializers.js +106 -100
- package/lib/schema-initializer/buttons/GanttActionInitializers.d.ts +0 -19
- package/lib/schema-initializer/buttons/GridCardActionInitializers.d.ts +195 -0
- package/lib/schema-initializer/buttons/GridCardActionInitializers.js +285 -0
- package/lib/schema-initializer/buttons/ListActionInitializers.d.ts +195 -0
- package/lib/schema-initializer/buttons/ListActionInitializers.js +285 -0
- package/lib/schema-initializer/buttons/TableActionColumnInitializers.js +1 -1
- package/lib/schema-initializer/buttons/TableActionInitializers.d.ts +0 -20
- package/lib/schema-initializer/buttons/TableActionInitializers.js +29 -35
- package/lib/schema-initializer/buttons/TableColumnInitializers.js +4 -1
- package/lib/schema-initializer/buttons/index.d.ts +3 -0
- package/lib/schema-initializer/buttons/index.js +22 -0
- package/lib/schema-initializer/components/BulkEditField.js +7 -5
- package/lib/schema-initializer/components/CreateRecordAction.d.ts +1 -0
- package/lib/schema-initializer/components/CreateRecordAction.js +54 -32
- package/lib/schema-initializer/components/DeletedField.d.ts +1 -0
- package/lib/schema-initializer/components/DeletedField.js +19 -0
- package/lib/schema-initializer/components/assigned-field/AssignedField.js +34 -22
- package/lib/schema-initializer/items/GridCardBlockInitializer.d.ts +1 -0
- package/lib/schema-initializer/items/GridCardBlockInitializer.js +55 -0
- package/lib/schema-initializer/items/ListBlockInitializer.d.ts +1 -0
- package/lib/schema-initializer/items/ListBlockInitializer.js +55 -0
- package/lib/schema-initializer/items/index.d.ts +3 -1
- package/lib/schema-initializer/items/index.js +33 -11
- package/lib/schema-initializer/utils.d.ts +112 -0
- package/lib/schema-initializer/utils.js +209 -33
- package/lib/schema-items/GeneralSchemaItems.d.ts +4 -0
- package/lib/schema-items/GeneralSchemaItems.js +156 -0
- package/lib/schema-items/index.d.ts +1 -0
- package/lib/schema-items/index.js +11 -0
- package/lib/schema-settings/DataTemplates/FormDataTemplates.d.ts +1 -0
- package/lib/schema-settings/DataTemplates/FormDataTemplates.js +119 -41
- package/lib/schema-settings/DataTemplates/components/AsDefaultTemplate.js +1 -1
- package/lib/schema-settings/DataTemplates/components/DataTemplateTitle.js +10 -14
- package/lib/schema-settings/DataTemplates/components/Designer.d.ts +7 -0
- package/lib/schema-settings/DataTemplates/components/Designer.js +188 -0
- package/lib/schema-settings/DataTemplates/hooks/useCollectionState.d.ts +6 -1
- package/lib/schema-settings/DataTemplates/hooks/useCollectionState.js +204 -95
- package/lib/schema-settings/GeneralSchemaDesigner.js +21 -15
- package/lib/schema-settings/SchemaSettings.d.ts +1 -1
- package/lib/schema-settings/SchemaSettings.js +53 -29
- package/lib/schema-settings/VariableInput/hooks/useUserVariable.js +1 -1
- package/lib/schema-settings/hooks/useIsShowMultipleSwitch.d.ts +4 -0
- package/lib/schema-settings/hooks/useIsShowMultipleSwitch.js +24 -0
- package/lib/settings-form/SettingsForm.js +2 -2
- package/lib/user/CurrentUser.js +118 -10
- package/package.json +5 -5
- package/tsconfig.json +8 -0
|
@@ -242,21 +242,25 @@ var wrapColSchema = function wrapColSchema(schema) {
|
|
|
242
242
|
};
|
|
243
243
|
var useRowProperties = function useRowProperties() {
|
|
244
244
|
var fieldSchema = (0, _react.useFieldSchema)();
|
|
245
|
-
return
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
245
|
+
return (0, _react2.useMemo)(function () {
|
|
246
|
+
return fieldSchema.reduceProperties(function (buf, s) {
|
|
247
|
+
if (s['x-component'] === 'Grid.Row' && !s['x-hidden']) {
|
|
248
|
+
buf.push(s);
|
|
249
|
+
}
|
|
250
|
+
return buf;
|
|
251
|
+
}, []);
|
|
252
|
+
}, [Object.keys(fieldSchema.properties || {}).join(',')]);
|
|
251
253
|
};
|
|
252
254
|
var useColProperties = function useColProperties() {
|
|
253
255
|
var fieldSchema = (0, _react.useFieldSchema)();
|
|
254
|
-
return
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
256
|
+
return (0, _react2.useMemo)(function () {
|
|
257
|
+
return fieldSchema.reduceProperties(function (buf, s) {
|
|
258
|
+
if (s['x-component'] === 'Grid.Col' && !s['x-hidden']) {
|
|
259
|
+
buf.push(s);
|
|
260
|
+
}
|
|
261
|
+
return buf;
|
|
262
|
+
}, []);
|
|
263
|
+
}, [Object.keys(fieldSchema.properties || {}).join(',')]);
|
|
260
264
|
};
|
|
261
265
|
var DndWrapper = function DndWrapper(props) {
|
|
262
266
|
if (props.dndContext === false) {
|
|
@@ -277,7 +281,8 @@ var Grid = (0, _react.observer)(function (props) {
|
|
|
277
281
|
var field = (0, _react.useField)();
|
|
278
282
|
var fieldSchema = (0, _react.useFieldSchema)();
|
|
279
283
|
var _useSchemaInitializer = (0, _.useSchemaInitializer)(fieldSchema['x-initializer']),
|
|
280
|
-
render = _useSchemaInitializer.render
|
|
284
|
+
render = _useSchemaInitializer.render,
|
|
285
|
+
InitializerComponent = _useSchemaInitializer.InitializerComponent;
|
|
281
286
|
var addr = field.address.toString();
|
|
282
287
|
var rows = useRowProperties();
|
|
283
288
|
var _useFormBlockContext = (0, _.useFormBlockContext)(),
|
|
@@ -289,7 +294,8 @@ var Grid = (0, _react.observer)(function (props) {
|
|
|
289
294
|
value: {
|
|
290
295
|
ref: gridRef,
|
|
291
296
|
fieldSchema: fieldSchema,
|
|
292
|
-
renderSchemaInitializer: render
|
|
297
|
+
renderSchemaInitializer: render,
|
|
298
|
+
InitializerComponent: InitializerComponent
|
|
293
299
|
}
|
|
294
300
|
}, /*#__PURE__*/_react2.default.createElement("div", {
|
|
295
301
|
className: 'nb-grid',
|
|
@@ -311,7 +317,7 @@ var Grid = (0, _react.observer)(function (props) {
|
|
|
311
317
|
}
|
|
312
318
|
}), rows.map(function (schema, index) {
|
|
313
319
|
return /*#__PURE__*/_react2.default.createElement(_react2.default.Fragment, {
|
|
314
|
-
key:
|
|
320
|
+
key: index
|
|
315
321
|
}, /*#__PURE__*/_react2.default.createElement(_react.RecursionField, {
|
|
316
322
|
name: schema.name,
|
|
317
323
|
schema: schema
|
|
@@ -326,7 +332,7 @@ var Grid = (0, _react.observer)(function (props) {
|
|
|
326
332
|
schema: schema
|
|
327
333
|
}
|
|
328
334
|
}));
|
|
329
|
-
})),
|
|
335
|
+
})), /*#__PURE__*/_react2.default.createElement(InitializerComponent, null)));
|
|
330
336
|
});
|
|
331
337
|
exports.Grid = Grid;
|
|
332
338
|
Grid.Row = (0, _react.observer)(function () {
|
|
@@ -353,7 +359,7 @@ Grid.Row = (0, _react.observer)(function () {
|
|
|
353
359
|
}
|
|
354
360
|
}), cols.map(function (schema, index) {
|
|
355
361
|
return /*#__PURE__*/_react2.default.createElement(_react2.default.Fragment, {
|
|
356
|
-
key:
|
|
362
|
+
key: index
|
|
357
363
|
}, /*#__PURE__*/_react2.default.createElement(_react.RecursionField, {
|
|
358
364
|
name: schema.name,
|
|
359
365
|
schema: schema
|
|
@@ -372,17 +378,21 @@ Grid.Row = (0, _react.observer)(function () {
|
|
|
372
378
|
})));
|
|
373
379
|
});
|
|
374
380
|
Grid.Col = (0, _react.observer)(function (props) {
|
|
381
|
+
var _schema$xComponentP2;
|
|
375
382
|
var _useContext = (0, _react2.useContext)(GridRowContext),
|
|
376
383
|
_useContext$cols = _useContext.cols,
|
|
377
384
|
cols = _useContext$cols === void 0 ? [] : _useContext$cols;
|
|
378
385
|
var schema = (0, _react.useFieldSchema)();
|
|
379
386
|
var field = (0, _react.useField)();
|
|
380
|
-
var width =
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
387
|
+
var width = (0, _react2.useMemo)(function () {
|
|
388
|
+
var width = '';
|
|
389
|
+
if (cols === null || cols === void 0 ? void 0 : cols.length) {
|
|
390
|
+
var _schema$xComponentP;
|
|
391
|
+
var w = (schema === null || schema === void 0 ? void 0 : (_schema$xComponentP = schema['x-component-props']) === null || _schema$xComponentP === void 0 ? void 0 : _schema$xComponentP['width']) || 100 / cols.length;
|
|
392
|
+
width = "calc(".concat(w, "% - var(--nb-spacing) * ").concat((cols.length + 1) / cols.length, ")");
|
|
393
|
+
}
|
|
394
|
+
return width;
|
|
395
|
+
}, [cols === null || cols === void 0 ? void 0 : cols.length, schema === null || schema === void 0 ? void 0 : (_schema$xComponentP2 = schema['x-component-props']) === null || _schema$xComponentP2 === void 0 ? void 0 : _schema$xComponentP2['width']]);
|
|
386
396
|
var _useDroppable3 = (0, _core.useDroppable)({
|
|
387
397
|
id: field.address.toString(),
|
|
388
398
|
data: {
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const GridCardBlockContext: React.Context<any>;
|
|
3
|
+
export declare const GridCardBlockProvider: (props: any) => JSX.Element;
|
|
4
|
+
export declare const useGridCardBlockContext: () => any;
|
|
5
|
+
export declare const useGridCardItemProps: () => {};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.useGridCardItemProps = exports.useGridCardBlockContext = exports.GridCardBlockProvider = exports.GridCardBlockContext = void 0;
|
|
8
|
+
var _core = require("@formily/core");
|
|
9
|
+
var _react = require("@formily/react");
|
|
10
|
+
var _react2 = _interopRequireWildcard(require("react"));
|
|
11
|
+
var _blockProvider = require("../../../block-provider");
|
|
12
|
+
var _antd = require("@formily/antd");
|
|
13
|
+
var _css = require("@emotion/css");
|
|
14
|
+
var _hooks = require("../../../block-provider/hooks");
|
|
15
|
+
var _templateObject;
|
|
16
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
17
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
18
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
19
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
20
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
21
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
22
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
23
|
+
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
24
|
+
var GridCardBlockContext = /*#__PURE__*/(0, _react2.createContext)({});
|
|
25
|
+
exports.GridCardBlockContext = GridCardBlockContext;
|
|
26
|
+
var InternalGridCardBlockProvider = function InternalGridCardBlockProvider(props) {
|
|
27
|
+
var _service$data2;
|
|
28
|
+
var _useBlockRequestConte = (0, _blockProvider.useBlockRequestContext)(),
|
|
29
|
+
resource = _useBlockRequestConte.resource,
|
|
30
|
+
service = _useBlockRequestConte.service;
|
|
31
|
+
var field = (0, _react.useField)();
|
|
32
|
+
var form = (0, _react2.useMemo)(function () {
|
|
33
|
+
return (0, _core.createForm)({
|
|
34
|
+
readPretty: true
|
|
35
|
+
});
|
|
36
|
+
}, []);
|
|
37
|
+
(0, _react2.useEffect)(function () {
|
|
38
|
+
if (!(service === null || service === void 0 ? void 0 : service.loading)) {
|
|
39
|
+
var _service$data;
|
|
40
|
+
form.setValuesIn(field.address.concat('list').toString(), service === null || service === void 0 ? void 0 : (_service$data = service.data) === null || _service$data === void 0 ? void 0 : _service$data.data);
|
|
41
|
+
}
|
|
42
|
+
}, [service === null || service === void 0 ? void 0 : (_service$data2 = service.data) === null || _service$data2 === void 0 ? void 0 : _service$data2.data, service === null || service === void 0 ? void 0 : service.loading]);
|
|
43
|
+
return /*#__PURE__*/_react2.default.createElement(GridCardBlockContext.Provider, {
|
|
44
|
+
value: {
|
|
45
|
+
service: service,
|
|
46
|
+
resource: resource,
|
|
47
|
+
columnCount: props.columnCount
|
|
48
|
+
}
|
|
49
|
+
}, /*#__PURE__*/_react2.default.createElement(_react.FormContext.Provider, {
|
|
50
|
+
value: form
|
|
51
|
+
}, /*#__PURE__*/_react2.default.createElement(_antd.FormLayout, {
|
|
52
|
+
layout: 'vertical'
|
|
53
|
+
}, /*#__PURE__*/_react2.default.createElement("div", {
|
|
54
|
+
className: (0, _css.css)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n & > .nb-block-item {\n margin-bottom: var(--nb-spacing);\n & > .nb-action-bar:has(:first-child:not(:empty)) {\n padding: var(--nb-spacing);\n background: #fff;\n }\n .ant-list-pagination {\n padding: var(--nb-spacing);\n background: #fff;\n }\n }\n "])))
|
|
55
|
+
}, props.children))));
|
|
56
|
+
};
|
|
57
|
+
var GridCardBlockProvider = function GridCardBlockProvider(props) {
|
|
58
|
+
var params = _objectSpread({}, props.params);
|
|
59
|
+
var collection = props.collection;
|
|
60
|
+
var _useAssociationNames = (0, _hooks.useAssociationNames)(collection),
|
|
61
|
+
appends = _useAssociationNames.appends;
|
|
62
|
+
if (!Object.keys(params).includes('appends')) {
|
|
63
|
+
params['appends'] = appends;
|
|
64
|
+
}
|
|
65
|
+
return /*#__PURE__*/_react2.default.createElement(_blockProvider.BlockProvider, _objectSpread(_objectSpread({}, props), {}, {
|
|
66
|
+
params: params
|
|
67
|
+
}), /*#__PURE__*/_react2.default.createElement(InternalGridCardBlockProvider, _objectSpread({}, props)));
|
|
68
|
+
};
|
|
69
|
+
exports.GridCardBlockProvider = GridCardBlockProvider;
|
|
70
|
+
var useGridCardBlockContext = function useGridCardBlockContext() {
|
|
71
|
+
return (0, _react2.useContext)(GridCardBlockContext);
|
|
72
|
+
};
|
|
73
|
+
exports.useGridCardBlockContext = useGridCardBlockContext;
|
|
74
|
+
var useGridCardItemProps = function useGridCardItemProps() {
|
|
75
|
+
return {};
|
|
76
|
+
};
|
|
77
|
+
exports.useGridCardItemProps = useGridCardItemProps;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const GridCardDesigner: () => JSX.Element;
|
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.GridCardDesigner = void 0;
|
|
7
|
+
var _react = require("@formily/react");
|
|
8
|
+
var _react2 = _interopRequireWildcard(require("react"));
|
|
9
|
+
var _antd = require("@formily/antd");
|
|
10
|
+
var _antd2 = require("antd");
|
|
11
|
+
var _lodash = _interopRequireDefault(require("lodash"));
|
|
12
|
+
var _reactI18next = require("react-i18next");
|
|
13
|
+
var _collectionManager = require("../../../collection-manager");
|
|
14
|
+
var _schemaSettings = require("../../../schema-settings");
|
|
15
|
+
var _schemaTemplates = require("../../../schema-templates");
|
|
16
|
+
var _hooks = require("../../hooks");
|
|
17
|
+
var _filter = require("../filter");
|
|
18
|
+
var _FilterDynamicComponent = require("../table-v2/FilterDynamicComponent");
|
|
19
|
+
var _core = require("../../core");
|
|
20
|
+
var _options = require("./options");
|
|
21
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
22
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
23
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
24
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
25
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
26
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
27
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
28
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
29
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
30
|
+
_antd2.Slider;
|
|
31
|
+
var columnCountMarks = [1, 2, 3, 4, 6, 8, 12, 24].reduce(function (obj, cur) {
|
|
32
|
+
obj[cur] = cur;
|
|
33
|
+
return obj;
|
|
34
|
+
}, {});
|
|
35
|
+
var GridCardDesigner = function GridCardDesigner() {
|
|
36
|
+
var _fieldSchema$xDecora, _fieldSchema$xDecora$, _fieldSchema$xDecora2, _fieldSchema$xDecora3, _fieldSchema$xDecora4, _field$decoratorProps, _field$decoratorProps2;
|
|
37
|
+
var _useCollection = (0, _collectionManager.useCollection)(),
|
|
38
|
+
name = _useCollection.name,
|
|
39
|
+
title = _useCollection.title;
|
|
40
|
+
var template = (0, _schemaTemplates.useSchemaTemplate)();
|
|
41
|
+
var _useTranslation = (0, _reactI18next.useTranslation)(),
|
|
42
|
+
t = _useTranslation.t;
|
|
43
|
+
var fieldSchema = (0, _react.useFieldSchema)();
|
|
44
|
+
var field = (0, _react.useField)();
|
|
45
|
+
var dataSource = (0, _collectionManager.useCollectionFilterOptions)(name);
|
|
46
|
+
var _useDesignable = (0, _hooks.useDesignable)(),
|
|
47
|
+
dn = _useDesignable.dn;
|
|
48
|
+
var sortFields = (0, _collectionManager.useSortFields)(name);
|
|
49
|
+
var defaultFilter = (fieldSchema === null || fieldSchema === void 0 ? void 0 : (_fieldSchema$xDecora = fieldSchema['x-decorator-props']) === null || _fieldSchema$xDecora === void 0 ? void 0 : (_fieldSchema$xDecora$ = _fieldSchema$xDecora.params) === null || _fieldSchema$xDecora$ === void 0 ? void 0 : _fieldSchema$xDecora$.filter) || {};
|
|
50
|
+
var defaultSort = (fieldSchema === null || fieldSchema === void 0 ? void 0 : (_fieldSchema$xDecora2 = fieldSchema['x-decorator-props']) === null || _fieldSchema$xDecora2 === void 0 ? void 0 : (_fieldSchema$xDecora3 = _fieldSchema$xDecora2.params) === null || _fieldSchema$xDecora3 === void 0 ? void 0 : _fieldSchema$xDecora3.sort) || [];
|
|
51
|
+
var defaultResource = fieldSchema === null || fieldSchema === void 0 ? void 0 : (_fieldSchema$xDecora4 = fieldSchema['x-decorator-props']) === null || _fieldSchema$xDecora4 === void 0 ? void 0 : _fieldSchema$xDecora4.resource;
|
|
52
|
+
var columnCount = field.decoratorProps.columnCount || _options.defaultColumnCount;
|
|
53
|
+
var columnCountSchema = (0, _react2.useMemo)(function () {
|
|
54
|
+
return {
|
|
55
|
+
'x-component': 'Slider',
|
|
56
|
+
'x-decorator': 'FormItem',
|
|
57
|
+
'x-component-props': {
|
|
58
|
+
min: 1,
|
|
59
|
+
max: 24,
|
|
60
|
+
marks: columnCountMarks,
|
|
61
|
+
tooltip: {
|
|
62
|
+
formatter: function formatter(value) {
|
|
63
|
+
return "".concat(value).concat(t('Column'));
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
step: null
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
}, [t]);
|
|
70
|
+
var columnCountProperties = (0, _react2.useMemo)(function () {
|
|
71
|
+
return _options.gridSizes.reduce(function (o, k) {
|
|
72
|
+
o[k] = _objectSpread(_objectSpread({}, columnCountSchema), {}, {
|
|
73
|
+
title: t(_options.screenSizeTitleMaps[k]),
|
|
74
|
+
description: "".concat(t('Screen size'), " ").concat(_options.screenSizeMaps[k], " ").concat(t('pixels'))
|
|
75
|
+
});
|
|
76
|
+
return o;
|
|
77
|
+
}, {});
|
|
78
|
+
}, [columnCountSchema, t]);
|
|
79
|
+
var sort = defaultSort === null || defaultSort === void 0 ? void 0 : defaultSort.map(function (item) {
|
|
80
|
+
return item.startsWith('-') ? {
|
|
81
|
+
field: item.substring(1),
|
|
82
|
+
direction: 'desc'
|
|
83
|
+
} : {
|
|
84
|
+
field: item,
|
|
85
|
+
direction: 'asc'
|
|
86
|
+
};
|
|
87
|
+
});
|
|
88
|
+
return /*#__PURE__*/_react2.default.createElement(_schemaSettings.GeneralSchemaDesigner, {
|
|
89
|
+
template: template,
|
|
90
|
+
title: title || name
|
|
91
|
+
}, /*#__PURE__*/_react2.default.createElement(_core.SchemaComponentOptions, {
|
|
92
|
+
components: {
|
|
93
|
+
Slider: _antd2.Slider
|
|
94
|
+
}
|
|
95
|
+
}, /*#__PURE__*/_react2.default.createElement(_schemaSettings.SchemaSettings.BlockTitleItem, null), /*#__PURE__*/_react2.default.createElement(_schemaSettings.SchemaSettings.ModalItem, {
|
|
96
|
+
title: t('Set the count of columns displayed in a row'),
|
|
97
|
+
initialValues: columnCount,
|
|
98
|
+
schema: {
|
|
99
|
+
type: 'object',
|
|
100
|
+
title: t('Set the count of columns displayed in a row'),
|
|
101
|
+
properties: columnCountProperties
|
|
102
|
+
},
|
|
103
|
+
onSubmit: function onSubmit(columnCount) {
|
|
104
|
+
var _schema;
|
|
105
|
+
_lodash.default.set(fieldSchema, 'x-decorator-props.columnCount', columnCount);
|
|
106
|
+
field.decoratorProps.columnCount = columnCount;
|
|
107
|
+
dn.emit('patch', {
|
|
108
|
+
schema: (_schema = {}, _defineProperty(_schema, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema, 'x-decorator-props', fieldSchema['x-decorator-props']), _schema)
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
}), /*#__PURE__*/_react2.default.createElement(_schemaSettings.SchemaSettings.ModalItem, {
|
|
112
|
+
title: t('Set the data scope'),
|
|
113
|
+
schema: {
|
|
114
|
+
type: 'object',
|
|
115
|
+
title: t('Set the data scope'),
|
|
116
|
+
properties: {
|
|
117
|
+
filter: {
|
|
118
|
+
default: defaultFilter,
|
|
119
|
+
// title: '数据范围',
|
|
120
|
+
enum: dataSource,
|
|
121
|
+
'x-component': 'Filter',
|
|
122
|
+
'x-component-props': {
|
|
123
|
+
dynamicComponent: function dynamicComponent(props) {
|
|
124
|
+
return (0, _FilterDynamicComponent.FilterDynamicComponent)(_objectSpread({}, props));
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
onSubmit: function onSubmit(_ref) {
|
|
131
|
+
var _schema2;
|
|
132
|
+
var filter = _ref.filter;
|
|
133
|
+
filter = (0, _filter.removeNullCondition)(filter);
|
|
134
|
+
_lodash.default.set(fieldSchema, 'x-decorator-props.params.filter', filter);
|
|
135
|
+
field.decoratorProps.params = _objectSpread({}, fieldSchema['x-decorator-props'].params);
|
|
136
|
+
dn.emit('patch', {
|
|
137
|
+
schema: (_schema2 = {}, _defineProperty(_schema2, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema2, 'x-decorator-props', fieldSchema['x-decorator-props']), _schema2)
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
}), /*#__PURE__*/_react2.default.createElement(_schemaSettings.SchemaSettings.ModalItem, {
|
|
141
|
+
title: t('Set default sorting rules'),
|
|
142
|
+
components: {
|
|
143
|
+
ArrayItems: _antd.ArrayItems
|
|
144
|
+
},
|
|
145
|
+
schema: {
|
|
146
|
+
type: 'object',
|
|
147
|
+
title: t('Set default sorting rules'),
|
|
148
|
+
properties: {
|
|
149
|
+
sort: {
|
|
150
|
+
type: 'array',
|
|
151
|
+
default: sort,
|
|
152
|
+
'x-component': 'ArrayItems',
|
|
153
|
+
'x-decorator': 'FormItem',
|
|
154
|
+
items: {
|
|
155
|
+
type: 'object',
|
|
156
|
+
properties: {
|
|
157
|
+
space: {
|
|
158
|
+
type: 'void',
|
|
159
|
+
'x-component': 'Space',
|
|
160
|
+
properties: {
|
|
161
|
+
sort: {
|
|
162
|
+
type: 'void',
|
|
163
|
+
'x-decorator': 'FormItem',
|
|
164
|
+
'x-component': 'ArrayItems.SortHandle'
|
|
165
|
+
},
|
|
166
|
+
field: {
|
|
167
|
+
type: 'string',
|
|
168
|
+
enum: sortFields,
|
|
169
|
+
required: true,
|
|
170
|
+
'x-decorator': 'FormItem',
|
|
171
|
+
'x-component': 'Select',
|
|
172
|
+
'x-component-props': {
|
|
173
|
+
style: {
|
|
174
|
+
width: 260
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
direction: {
|
|
179
|
+
type: 'string',
|
|
180
|
+
'x-decorator': 'FormItem',
|
|
181
|
+
'x-component': 'Radio.Group',
|
|
182
|
+
'x-component-props': {
|
|
183
|
+
optionType: 'button'
|
|
184
|
+
},
|
|
185
|
+
enum: [{
|
|
186
|
+
label: t('ASC'),
|
|
187
|
+
value: 'asc'
|
|
188
|
+
}, {
|
|
189
|
+
label: t('DESC'),
|
|
190
|
+
value: 'desc'
|
|
191
|
+
}]
|
|
192
|
+
},
|
|
193
|
+
remove: {
|
|
194
|
+
type: 'void',
|
|
195
|
+
'x-decorator': 'FormItem',
|
|
196
|
+
'x-component': 'ArrayItems.Remove'
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
properties: {
|
|
203
|
+
add: {
|
|
204
|
+
type: 'void',
|
|
205
|
+
title: t('Add sort field'),
|
|
206
|
+
'x-component': 'ArrayItems.Addition'
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
onSubmit: function onSubmit(_ref2) {
|
|
213
|
+
var _schema3;
|
|
214
|
+
var sort = _ref2.sort;
|
|
215
|
+
var sortArr = sort.map(function (item) {
|
|
216
|
+
return item.direction === 'desc' ? "-".concat(item.field) : item.field;
|
|
217
|
+
});
|
|
218
|
+
_lodash.default.set(fieldSchema, 'x-decorator-props.params.sort', sortArr);
|
|
219
|
+
field.decoratorProps.params = _objectSpread({}, fieldSchema['x-decorator-props'].params);
|
|
220
|
+
dn.emit('patch', {
|
|
221
|
+
schema: (_schema3 = {}, _defineProperty(_schema3, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema3, 'x-decorator-props', fieldSchema['x-decorator-props']), _schema3)
|
|
222
|
+
});
|
|
223
|
+
}
|
|
224
|
+
}), /*#__PURE__*/_react2.default.createElement(_schemaSettings.SchemaSettings.SelectItem, {
|
|
225
|
+
title: t('Records per page'),
|
|
226
|
+
value: ((_field$decoratorProps = field.decoratorProps) === null || _field$decoratorProps === void 0 ? void 0 : (_field$decoratorProps2 = _field$decoratorProps.params) === null || _field$decoratorProps2 === void 0 ? void 0 : _field$decoratorProps2.pageSize) || 20,
|
|
227
|
+
options: _options.pageSizeOptions.map(function (v) {
|
|
228
|
+
return {
|
|
229
|
+
value: v
|
|
230
|
+
};
|
|
231
|
+
}),
|
|
232
|
+
onChange: function onChange(pageSize) {
|
|
233
|
+
var _schema4;
|
|
234
|
+
_lodash.default.set(fieldSchema, 'x-decorator-props.params.pageSize', pageSize);
|
|
235
|
+
field.decoratorProps.params = _objectSpread(_objectSpread({}, fieldSchema['x-decorator-props'].params), {}, {
|
|
236
|
+
page: 1
|
|
237
|
+
});
|
|
238
|
+
dn.emit('patch', {
|
|
239
|
+
schema: (_schema4 = {}, _defineProperty(_schema4, 'x-uid', fieldSchema['x-uid']), _defineProperty(_schema4, 'x-decorator-props', fieldSchema['x-decorator-props']), _schema4)
|
|
240
|
+
});
|
|
241
|
+
}
|
|
242
|
+
}), /*#__PURE__*/_react2.default.createElement(_schemaSettings.SchemaSettings.Template, {
|
|
243
|
+
componentName: 'GridCard',
|
|
244
|
+
collectionName: name,
|
|
245
|
+
resourceName: defaultResource
|
|
246
|
+
}), /*#__PURE__*/_react2.default.createElement(_schemaSettings.SchemaSettings.Divider, null), /*#__PURE__*/_react2.default.createElement(_schemaSettings.SchemaSettings.Remove, {
|
|
247
|
+
removeParentsIfNoChildren: true,
|
|
248
|
+
breakRemoveOn: {
|
|
249
|
+
'x-component': 'Grid'
|
|
250
|
+
}
|
|
251
|
+
})));
|
|
252
|
+
};
|
|
253
|
+
exports.GridCardDesigner = GridCardDesigner;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const GridCardItem: (props: any) => JSX.Element;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.GridCardItem = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _antd = require("antd");
|
|
9
|
+
var _css = require("@emotion/css");
|
|
10
|
+
var _react2 = require("@formily/react");
|
|
11
|
+
var _recordProvider = require("../../../record-provider");
|
|
12
|
+
var _templateObject, _templateObject2;
|
|
13
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
14
|
+
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
15
|
+
var itemCss = (0, _css.css)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n width: 100%;\n height: 100%;\n flex-direction: column;\n justify-content: space-between;\n gap: 8px;\n"])));
|
|
16
|
+
var GridCardItem = function GridCardItem(props) {
|
|
17
|
+
var field = (0, _react2.useField)();
|
|
18
|
+
return /*#__PURE__*/_react.default.createElement(_antd.Card, {
|
|
19
|
+
className: (0, _css.css)(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n &,\n & .ant-card-body {\n height: 100%;\n }\n "])))
|
|
20
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
21
|
+
className: itemCss
|
|
22
|
+
}, /*#__PURE__*/_react.default.createElement(_recordProvider.RecordSimpleProvider, {
|
|
23
|
+
value: field.value
|
|
24
|
+
}, props.children)));
|
|
25
|
+
};
|
|
26
|
+
exports.GridCardItem = GridCardItem;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { GridCardItem } from './GridCard.Item';
|
|
2
|
+
import { GridCardBlockProvider } from './GridCard.Decorator';
|
|
3
|
+
import { GridCardDesigner } from './GridCard.Designer';
|
|
4
|
+
export declare const GridCard: ((props: any) => JSX.Element) & {
|
|
5
|
+
Item: typeof GridCardItem;
|
|
6
|
+
Designer: typeof GridCardDesigner;
|
|
7
|
+
Decorator: typeof GridCardBlockProvider;
|
|
8
|
+
};
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.GridCard = void 0;
|
|
8
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
9
|
+
var _react2 = require("@formily/react");
|
|
10
|
+
var _css = require("@emotion/css");
|
|
11
|
+
var _antd = require("antd");
|
|
12
|
+
var _hooks = require("./hooks");
|
|
13
|
+
var _common = require("../../common");
|
|
14
|
+
var _core = require("../../core");
|
|
15
|
+
var _hooks2 = require("../../hooks");
|
|
16
|
+
var _GridCard = require("./GridCard.Item");
|
|
17
|
+
var _GridCard2 = require("./GridCard.Decorator");
|
|
18
|
+
var _GridCard3 = require("./GridCard.Designer");
|
|
19
|
+
var _options = require("./options");
|
|
20
|
+
var _templateObject;
|
|
21
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
22
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
24
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
25
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
26
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
27
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
28
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
29
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
30
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
31
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
32
|
+
function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i.return && (_r = _i.return(), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } }
|
|
33
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
34
|
+
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
35
|
+
var rowGutter = {
|
|
36
|
+
md: 16,
|
|
37
|
+
sm: 8,
|
|
38
|
+
xs: 8
|
|
39
|
+
};
|
|
40
|
+
var designerCss = (0, _css.css)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n width: 100%;\n &:hover {\n > .general-schema-designer {\n display: block;\n }\n }\n\n > .general-schema-designer {\n position: absolute;\n z-index: 999;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n display: none;\n background: rgba(241, 139, 98, 0.06);\n border: 0;\n pointer-events: none;\n > .general-schema-designer-icons {\n position: absolute;\n right: 2px;\n top: 2px;\n line-height: 16px;\n pointer-events: all;\n .ant-space-item {\n background-color: #f18b62;\n color: #fff;\n line-height: 16px;\n width: 16px;\n padding-left: 1px;\n }\n }\n }\n"])));
|
|
41
|
+
var InternalGridCard = function InternalGridCard(props) {
|
|
42
|
+
var _service$data;
|
|
43
|
+
var _useGridCardBlockCont = (0, _GridCard2.useGridCardBlockContext)(),
|
|
44
|
+
service = _useGridCardBlockCont.service,
|
|
45
|
+
_useGridCardBlockCont2 = _useGridCardBlockCont.columnCount,
|
|
46
|
+
columnCount = _useGridCardBlockCont2 === void 0 ? _options.defaultColumnCount : _useGridCardBlockCont2;
|
|
47
|
+
var run = service.run,
|
|
48
|
+
params = service.params;
|
|
49
|
+
var meta = service === null || service === void 0 ? void 0 : (_service$data = service.data) === null || _service$data === void 0 ? void 0 : _service$data.meta;
|
|
50
|
+
var fieldSchema = (0, _react2.useFieldSchema)();
|
|
51
|
+
var field = (0, _react2.useField)();
|
|
52
|
+
var Designer = (0, _hooks2.useDesigner)();
|
|
53
|
+
var _useState = (0, _react.useState)(new Map()),
|
|
54
|
+
_useState2 = _slicedToArray(_useState, 1),
|
|
55
|
+
schemaMap = _useState2[0];
|
|
56
|
+
var getSchema = (0, _react.useCallback)(function (key) {
|
|
57
|
+
if (!schemaMap.has(key)) {
|
|
58
|
+
schemaMap.set(key, new _react2.Schema({
|
|
59
|
+
type: 'object',
|
|
60
|
+
properties: _defineProperty({}, key, fieldSchema.properties['item'])
|
|
61
|
+
}));
|
|
62
|
+
}
|
|
63
|
+
return schemaMap.get(key);
|
|
64
|
+
}, [fieldSchema.properties, schemaMap]);
|
|
65
|
+
var onPaginationChange = (0, _react.useCallback)(function (page, pageSize) {
|
|
66
|
+
run(_objectSpread(_objectSpread({}, params === null || params === void 0 ? void 0 : params[0]), {}, {
|
|
67
|
+
page: page,
|
|
68
|
+
pageSize: pageSize
|
|
69
|
+
}));
|
|
70
|
+
}, [run, params]);
|
|
71
|
+
return /*#__PURE__*/_react.default.createElement(_core.SchemaComponentOptions, {
|
|
72
|
+
scope: {
|
|
73
|
+
useGridCardItemProps: _GridCard2.useGridCardItemProps,
|
|
74
|
+
useGridCardActionBarProps: _hooks.useGridCardActionBarProps
|
|
75
|
+
}
|
|
76
|
+
}, /*#__PURE__*/_react.default.createElement(_common.SortableItem, {
|
|
77
|
+
className: (0, _css.cx)('nb-card-list', designerCss)
|
|
78
|
+
}, /*#__PURE__*/_react.default.createElement(_antd.List, {
|
|
79
|
+
pagination: !meta || meta.count <= meta.pageSize ? false : {
|
|
80
|
+
onChange: onPaginationChange,
|
|
81
|
+
total: (meta === null || meta === void 0 ? void 0 : meta.count) || 0,
|
|
82
|
+
pageSize: (meta === null || meta === void 0 ? void 0 : meta.pageSize) || 10,
|
|
83
|
+
current: (meta === null || meta === void 0 ? void 0 : meta.page) || 1,
|
|
84
|
+
pageSizeOptions: _options.pageSizeOptions
|
|
85
|
+
},
|
|
86
|
+
dataSource: field.value,
|
|
87
|
+
grid: _objectSpread(_objectSpread({}, columnCount), {}, {
|
|
88
|
+
sm: columnCount.xs,
|
|
89
|
+
xl: columnCount.lg,
|
|
90
|
+
gutter: [rowGutter, rowGutter]
|
|
91
|
+
}),
|
|
92
|
+
renderItem: function renderItem(item, index) {
|
|
93
|
+
return /*#__PURE__*/_react.default.createElement(_antd.Col, {
|
|
94
|
+
style: {
|
|
95
|
+
height: '100%'
|
|
96
|
+
}
|
|
97
|
+
}, /*#__PURE__*/_react.default.createElement(_react2.RecursionField, {
|
|
98
|
+
key: index,
|
|
99
|
+
basePath: field.address,
|
|
100
|
+
name: index,
|
|
101
|
+
onlyRenderProperties: true,
|
|
102
|
+
schema: getSchema(index)
|
|
103
|
+
}));
|
|
104
|
+
},
|
|
105
|
+
loading: service === null || service === void 0 ? void 0 : service.loading
|
|
106
|
+
}), /*#__PURE__*/_react.default.createElement(Designer, null)));
|
|
107
|
+
};
|
|
108
|
+
var GridCard = InternalGridCard;
|
|
109
|
+
exports.GridCard = GridCard;
|
|
110
|
+
GridCard.Item = _GridCard.GridCardItem;
|
|
111
|
+
GridCard.Designer = _GridCard3.GridCardDesigner;
|
|
112
|
+
GridCard.Decorator = _GridCard2.GridCardBlockProvider;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.useGridCardActionBarProps = void 0;
|
|
7
|
+
var spaceProps = {
|
|
8
|
+
size: ['large', 'small'],
|
|
9
|
+
wrap: true
|
|
10
|
+
};
|
|
11
|
+
var useGridCardActionBarProps = function useGridCardActionBarProps() {
|
|
12
|
+
return {
|
|
13
|
+
spaceProps: spaceProps
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
exports.useGridCardActionBarProps = useGridCardActionBarProps;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './GridCard';
|