Sha256: 99f42092f467590c99b43243d368f3deab027f95dc8a6fc7f946bc1667a6eb55

Contents?: true

Size: 943 Bytes

Versions: 34

Compression:

Stored size: 943 Bytes

Contents

import React, { Fragment } from 'react';
import PropTypes from 'prop-types';
import UpdateDialog from './UpdateDialog';
import UnsavedChangesDialog from './UnsavedChangesDialog';
import InputsErrorsDialog from './InputsErrorsDialog';
import DeleteDialog from './DeleteDialog';

const Dialogs = ({
  updateDialog, unsavedChangesDialog, inputsErrorsDialog, deleteDialog,
}) => (
  <Fragment>
    <UpdateDialog {...updateDialog} />
    <UnsavedChangesDialog {...unsavedChangesDialog} />
    <InputsErrorsDialog {...inputsErrorsDialog} />
    <DeleteDialog {...deleteDialog} />
  </Fragment>
);

Dialogs.propTypes = {
  updateDialog: PropTypes.shape(UpdateDialog.propTypes).isRequired,
  unsavedChangesDialog: PropTypes.shape(UnsavedChangesDialog.propTypes).isRequired,
  inputsErrorsDialog: PropTypes.shape(InputsErrorsDialog.propTypes).isRequired,
  deleteDialog: PropTypes.shape(DeleteDialog.propTypes).isRequired,
};

export default Dialogs;

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
katello-3.16.0.rc3.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.15.2 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.16.0.rc3 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.16.0.rc2.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.16.0.rc2 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.15.1.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.16.0.rc1.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.15.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.16.0.rc1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.15.0.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.15.0 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.15.0.rc2 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.15.0.rc1.3 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.15.0.rc1.2 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.15.0.rc1.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.15.0.rc1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.14.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.13.4 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.14.0 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-3.13.3 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js