Sha256: c57d6ece83c59697617a5916742aea9ac61f693018edfffed3089af322f37945

Contents?: true

Size: 849 Bytes

Versions: 130

Compression:

Stored size: 849 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({}).isRequired,
  unsavedChangesDialog: PropTypes.shape({}).isRequired,
  inputsErrorsDialog: PropTypes.shape({}).isRequired,
  deleteDialog: PropTypes.shape({}).isRequired,
};

export default Dialogs;

Version data entries

130 entries across 130 versions & 1 rubygems

Version Path
katello-4.7.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.6.2.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.6.2 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.7.0 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.6.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.7.0.rc2 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.7.0.rc1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.4.2.2 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.4.2.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.4.2 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.5.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.6.0 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.6.0.rc2 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.6.0.rc1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.5.0 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.5.0.rc2 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.4.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.5.0.rc1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.4.0.2 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js
katello-4.4.0.1 webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/index.js