Options
All
  • Public
  • Public/Protected
  • All
Menu

Module "wordpress-packages/real-product-manager-wp-client/lib/components/pluginUpdate/licenseList"

Index

Variables

Const PluginUpdateLicenseList

PluginUpdateLicenseList: FC<{ onDeactivate?: ComponentProps<typeof PluginUpdateLicenseListItem>["onDeactivate"]; pluginUpdate: PluginUpdate }> = observer(({ onDeactivate, pluginUpdate }) => {const { licensedEntries } = pluginUpdate;return (<><List<typeof licensedEntries[0]>itemLayout="vertical"size="small"dataSource={licensedEntries}renderItem={(license) => <PluginUpdateLicenseListItem license={license} onDeactivate={onDeactivate} />}/><p style={{ textAlign: "right" }}><Checkboxdisabled={pluginUpdate.busy}checked={pluginUpdate.announcementsActive}onChange={(e) => pluginUpdate.setAnnouncementActive(e.target.checked)}>{__("Show announcements for this plugin")}</Checkbox></p></>);})

Generated using TypeDoc