@gravity-ui/navigation 0.8.0 → 0.9.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.0](https://github.com/gravity-ui/navigation/compare/v0.8.1...v0.9.0) (2023-07-04)
4
+
5
+
6
+ ### Features
7
+
8
+ * added new stories for ActionBar ([#64](https://github.com/gravity-ui/navigation/issues/64)) ([96dbcf3](https://github.com/gravity-ui/navigation/commit/96dbcf39863aea6ea781a224636b4abc6f5a64e5))
9
+ * added type exports for ActionBar ([#66](https://github.com/gravity-ui/navigation/issues/66)) ([f911bd6](https://github.com/gravity-ui/navigation/commit/f911bd645aad36b453c7a9c49974f0bc790bea5d))
10
+
11
+ ## [0.8.1](https://github.com/gravity-ui/navigation/compare/v0.8.0...v0.8.1) (2023-06-23)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **MobileHeader:** add export ([#61](https://github.com/gravity-ui/navigation/issues/61)) ([15523f5](https://github.com/gravity-ui/navigation/commit/15523f5e114cc5d2f9842775ce064a9f9b1daa86))
17
+
3
18
  ## [0.8.0](https://github.com/gravity-ui/navigation/compare/v0.7.0...v0.8.0) (2023-06-09)
4
19
 
5
20
 
@@ -42,3 +42,24 @@ export declare const Showcase: ComponentStory<{
42
42
  displayName: string;
43
43
  };
44
44
  }>;
45
+ export declare const SingleSection: ComponentStory<{
46
+ ({ children, className, "aria-label": ariaLabel }: import("../ActionBar").Props): JSX.Element;
47
+ displayName: string;
48
+ } & {
49
+ Section: {
50
+ ({ children, type }: import("..").ActionBarSectionProps): JSX.Element;
51
+ displayName: string;
52
+ };
53
+ Group: {
54
+ ({ children, className, pull }: import("..").ActionBarGroupProps): JSX.Element;
55
+ displayName: string;
56
+ };
57
+ Item: {
58
+ ({ children, className, pull, spacing }: import("..").ActionBarItemProps): JSX.Element;
59
+ displayName: string;
60
+ };
61
+ Separator: {
62
+ (): JSX.Element;
63
+ displayName: string;
64
+ };
65
+ }>;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function ActionBarSingleSection(): JSX.Element;
@@ -1,8 +1,9 @@
1
- export { ActionBar } from './ActionBar';
2
1
  export { AsideHeader, AsideHeaderProps } from './AsideHeader/AsideHeader';
3
2
  export { Drawer, DrawerProps, DrawerItemProps, DrawerItem } from './Drawer/Drawer';
4
3
  export { FooterItem, FooterItemProps } from './FooterItem/FooterItem';
4
+ export * from './ActionBar';
5
5
  export * from './Title';
6
6
  export * from './HotkeysPanel';
7
7
  export * from './Settings';
8
+ export * from './MobileHeader';
8
9
  export * from './types';