react-albus
Version:
React component library for building declarative multi-step flows.
51 lines (36 loc) • 2.51 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.wizardShape = exports.withWizard = exports.Steps = exports.Wizard = exports.WithWizard = exports.Step = undefined;
var _createWizardComponent = require('./components/createWizardComponent');
var _createWizardComponent2 = _interopRequireDefault(_createWizardComponent);
var _Wizard2 = require('./components/Wizard');
var _Wizard3 = _interopRequireDefault(_Wizard2);
var _Steps2 = require('./components/Steps');
var _Steps3 = _interopRequireDefault(_Steps2);
var _withWizard2 = require('./withWizard');
var _withWizard3 = _interopRequireDefault(_withWizard2);
var _wizardShape2 = require('./wizardShape');
var _wizardShape3 = _interopRequireDefault(_wizardShape2);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var Step = (0, _createWizardComponent2.default)('Step'); /*
* Copyright (c) 2017 American Express Travel Related Services Company, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
var WithWizard = (0, _createWizardComponent2.default)('WithWizard');
exports.Step = Step;
exports.WithWizard = WithWizard;
exports.Wizard = _Wizard3.default;
exports.Steps = _Steps3.default;
exports.withWizard = _withWizard3.default;
exports.wizardShape = _wizardShape3.default;