@sellgar/kit 0.0.79 → 0.0.81

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sellgar/kit",
3
3
  "type": "module",
4
- "version": "0.0.79",
4
+ "version": "0.0.81",
5
5
  "description": "Storybook",
6
6
  "main": "./dist/index.cjs",
7
7
  "module": "./dist/index.js",
@@ -5,6 +5,7 @@ declare const Middle: React.FC<React.PropsWithChildren>;
5
5
  declare const Bottom: React.FC<React.PropsWithChildren>;
6
6
  declare const Cell: React.FC<React.PropsWithChildren>;
7
7
  declare const Additional: React.FC<React.PropsWithChildren>;
8
+ declare const Block: React.FC<React.PropsWithChildren>;
8
9
  declare const Divider: React.FC;
9
10
  type TSidebar = typeof SidebarComponent & {
10
11
  Top: typeof Top;
@@ -13,6 +14,7 @@ type TSidebar = typeof SidebarComponent & {
13
14
  Divider: typeof Divider;
14
15
  Cell: typeof Cell;
15
16
  Additional: typeof Additional;
17
+ Block: typeof Block;
16
18
  };
17
19
  export declare const Sidebar: TSidebar;
18
20
  export {};