@mezzanine-ui/react 0.7.3 → 0.7.4
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/index.d.ts +1 -2
- package/index.js +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -43,8 +43,7 @@ export { DropdownProps, default as Dropdown, } from './Dropdown';
|
|
|
43
43
|
export { NavigationItem, NavigationItemProps, NavigationSubMenu, NavigationSubMenuProps, NavigationSubMenuChild, NavigationSubMenuChildren, NavigationChild, NavigationChildren, NavigationProps, default as Navigation, } from './Navigation';
|
|
44
44
|
export { AppBarChild, AppBarChildren, AppBarBrand, AppBarBrandProps, AppBarMain, AppBarMainProps, AppBarSupport, AppBarSupportProps, default as AppBar, } from './AppBar';
|
|
45
45
|
export { PageFooterProps, default as PageFooter, } from './PageFooter';
|
|
46
|
-
export { StepProps, default as
|
|
47
|
-
export { StepperProps, default as Stepper, } from './Stepper';
|
|
46
|
+
export { StepProps, StepperProps, Step, default as Stepper, } from './Stepper';
|
|
48
47
|
/**
|
|
49
48
|
* Data Display
|
|
50
49
|
*/
|
package/index.js
CHANGED
|
@@ -45,7 +45,8 @@ export { default as AppBarMain } from './AppBar/AppBarMain.js';
|
|
|
45
45
|
export { default as AppBarSupport } from './AppBar/AppBarSupport.js';
|
|
46
46
|
export { default as AppBar } from './AppBar/AppBar.js';
|
|
47
47
|
export { default as PageFooter } from './PageFooter/PageFooter.js';
|
|
48
|
-
export { default as Step
|
|
48
|
+
export { default as Step } from './Stepper/Step.js';
|
|
49
|
+
export { default as Stepper } from './Stepper/Stepper.js';
|
|
49
50
|
export { default as AccordionSummary } from './Accordion/AccordionSummary.js';
|
|
50
51
|
export { default as AccordionDetails } from './Accordion/AccordionDetails.js';
|
|
51
52
|
export { default as Accordion } from './Accordion/Accordion.js';
|