@sellgar/kit 0.0.90 → 0.0.92
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
|
@@ -4,6 +4,7 @@ declare const Top: React.FC<React.PropsWithChildren>;
|
|
|
4
4
|
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
|
+
declare const SubCells: React.FC<React.PropsWithChildren>;
|
|
7
8
|
declare const Additional: React.FC<React.PropsWithChildren>;
|
|
8
9
|
declare const Block: React.FC<React.PropsWithChildren>;
|
|
9
10
|
declare const Divider: React.FC;
|
|
@@ -13,6 +14,7 @@ type TSidebar = typeof SidebarComponent & {
|
|
|
13
14
|
Bottom: typeof Bottom;
|
|
14
15
|
Divider: typeof Divider;
|
|
15
16
|
Cell: typeof Cell;
|
|
17
|
+
SubCells: typeof SubCells;
|
|
16
18
|
Additional: typeof Additional;
|
|
17
19
|
Block: typeof Block;
|
|
18
20
|
};
|