@kopexa/sidebar 17.0.14 → 17.1.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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +34 -0
- package/dist/index.mjs +34 -0
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Sidebar, SidebarProps, SidebarProvider, SidebarProviderProps, SidebarTriggerProps, useSidebar } from './sidebar.mjs';
|
|
1
|
+
export { Sidebar, SidebarContent, SidebarContentProps, SidebarFooter, SidebarFooterProps, SidebarGroup, SidebarGroupAction, SidebarGroupActionProps, SidebarGroupContent, SidebarGroupContentProps, SidebarGroupLabel, SidebarGroupLabelProps, SidebarGroupProps, SidebarHeader, SidebarHeaderProps, SidebarInput, SidebarInputProps, SidebarInset, SidebarInsetProps, SidebarMenu, SidebarMenuAction, SidebarMenuActionProps, SidebarMenuButton, SidebarMenuButtonProps, SidebarMenuItem, SidebarMenuItemProps, SidebarMenuProps, SidebarProps, SidebarProvider, SidebarProviderProps, SidebarRail, SidebarRailProps, SidebarRoot, SidebarSeparator, SidebarSeparatorProps, SidebarTrigger, SidebarTriggerProps, useSidebar } from './sidebar.mjs';
|
|
2
2
|
import 'react/jsx-runtime';
|
|
3
3
|
import '@kopexa/button';
|
|
4
4
|
import '@kopexa/input';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Sidebar, SidebarProps, SidebarProvider, SidebarProviderProps, SidebarTriggerProps, useSidebar } from './sidebar.js';
|
|
1
|
+
export { Sidebar, SidebarContent, SidebarContentProps, SidebarFooter, SidebarFooterProps, SidebarGroup, SidebarGroupAction, SidebarGroupActionProps, SidebarGroupContent, SidebarGroupContentProps, SidebarGroupLabel, SidebarGroupLabelProps, SidebarGroupProps, SidebarHeader, SidebarHeaderProps, SidebarInput, SidebarInputProps, SidebarInset, SidebarInsetProps, SidebarMenu, SidebarMenuAction, SidebarMenuActionProps, SidebarMenuButton, SidebarMenuButtonProps, SidebarMenuItem, SidebarMenuItemProps, SidebarMenuProps, SidebarProps, SidebarProvider, SidebarProviderProps, SidebarRail, SidebarRailProps, SidebarRoot, SidebarSeparator, SidebarSeparatorProps, SidebarTrigger, SidebarTriggerProps, useSidebar } from './sidebar.js';
|
|
2
2
|
import 'react/jsx-runtime';
|
|
3
3
|
import '@kopexa/button';
|
|
4
4
|
import '@kopexa/input';
|
package/dist/index.js
CHANGED
|
@@ -22,7 +22,24 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
22
22
|
var index_exports = {};
|
|
23
23
|
__export(index_exports, {
|
|
24
24
|
Sidebar: () => Sidebar,
|
|
25
|
+
SidebarContent: () => SidebarContent,
|
|
26
|
+
SidebarFooter: () => SidebarFooter,
|
|
27
|
+
SidebarGroup: () => SidebarGroup,
|
|
28
|
+
SidebarGroupAction: () => SidebarGroupAction,
|
|
29
|
+
SidebarGroupContent: () => SidebarGroupContent,
|
|
30
|
+
SidebarGroupLabel: () => SidebarGroupLabel,
|
|
31
|
+
SidebarHeader: () => SidebarHeader,
|
|
32
|
+
SidebarInput: () => SidebarInput,
|
|
33
|
+
SidebarInset: () => SidebarInset,
|
|
34
|
+
SidebarMenu: () => SidebarMenu,
|
|
35
|
+
SidebarMenuAction: () => SidebarMenuAction,
|
|
36
|
+
SidebarMenuButton: () => SidebarMenuButton,
|
|
37
|
+
SidebarMenuItem: () => SidebarMenuItem,
|
|
25
38
|
SidebarProvider: () => SidebarProvider,
|
|
39
|
+
SidebarRail: () => SidebarRail,
|
|
40
|
+
SidebarRoot: () => SidebarRoot,
|
|
41
|
+
SidebarSeparator: () => SidebarSeparator,
|
|
42
|
+
SidebarTrigger: () => SidebarTrigger,
|
|
26
43
|
useSidebar: () => useSidebar
|
|
27
44
|
});
|
|
28
45
|
module.exports = __toCommonJS(index_exports);
|
|
@@ -493,6 +510,23 @@ var Sidebar = Object.assign(SidebarRoot, {
|
|
|
493
510
|
// Annotate the CommonJS export names for ESM import in node:
|
|
494
511
|
0 && (module.exports = {
|
|
495
512
|
Sidebar,
|
|
513
|
+
SidebarContent,
|
|
514
|
+
SidebarFooter,
|
|
515
|
+
SidebarGroup,
|
|
516
|
+
SidebarGroupAction,
|
|
517
|
+
SidebarGroupContent,
|
|
518
|
+
SidebarGroupLabel,
|
|
519
|
+
SidebarHeader,
|
|
520
|
+
SidebarInput,
|
|
521
|
+
SidebarInset,
|
|
522
|
+
SidebarMenu,
|
|
523
|
+
SidebarMenuAction,
|
|
524
|
+
SidebarMenuButton,
|
|
525
|
+
SidebarMenuItem,
|
|
496
526
|
SidebarProvider,
|
|
527
|
+
SidebarRail,
|
|
528
|
+
SidebarRoot,
|
|
529
|
+
SidebarSeparator,
|
|
530
|
+
SidebarTrigger,
|
|
497
531
|
useSidebar
|
|
498
532
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -1,11 +1,45 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
Sidebar,
|
|
4
|
+
SidebarContent,
|
|
5
|
+
SidebarFooter,
|
|
6
|
+
SidebarGroup,
|
|
7
|
+
SidebarGroupAction,
|
|
8
|
+
SidebarGroupContent,
|
|
9
|
+
SidebarGroupLabel,
|
|
10
|
+
SidebarHeader,
|
|
11
|
+
SidebarInput,
|
|
12
|
+
SidebarInset,
|
|
13
|
+
SidebarMenu,
|
|
14
|
+
SidebarMenuAction,
|
|
15
|
+
SidebarMenuButton,
|
|
16
|
+
SidebarMenuItem,
|
|
4
17
|
SidebarProvider,
|
|
18
|
+
SidebarRail,
|
|
19
|
+
SidebarRoot,
|
|
20
|
+
SidebarSeparator,
|
|
21
|
+
SidebarTrigger,
|
|
5
22
|
useSidebar
|
|
6
23
|
} from "./chunk-FPVGSRAX.mjs";
|
|
7
24
|
export {
|
|
8
25
|
Sidebar,
|
|
26
|
+
SidebarContent,
|
|
27
|
+
SidebarFooter,
|
|
28
|
+
SidebarGroup,
|
|
29
|
+
SidebarGroupAction,
|
|
30
|
+
SidebarGroupContent,
|
|
31
|
+
SidebarGroupLabel,
|
|
32
|
+
SidebarHeader,
|
|
33
|
+
SidebarInput,
|
|
34
|
+
SidebarInset,
|
|
35
|
+
SidebarMenu,
|
|
36
|
+
SidebarMenuAction,
|
|
37
|
+
SidebarMenuButton,
|
|
38
|
+
SidebarMenuItem,
|
|
9
39
|
SidebarProvider,
|
|
40
|
+
SidebarRail,
|
|
41
|
+
SidebarRoot,
|
|
42
|
+
SidebarSeparator,
|
|
43
|
+
SidebarTrigger,
|
|
10
44
|
useSidebar
|
|
11
45
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/sidebar",
|
|
3
|
-
"version": "17.0
|
|
3
|
+
"version": "17.1.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sidebar"
|
|
@@ -28,19 +28,19 @@
|
|
|
28
28
|
"motion": ">=12.23.6",
|
|
29
29
|
"react": ">=19.0.0-rc.0",
|
|
30
30
|
"react-dom": ">=19.0.0-rc.0",
|
|
31
|
-
"@kopexa/theme": "17.8.
|
|
31
|
+
"@kopexa/theme": "17.8.2"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@radix-ui/react-slot": "^1.2.4",
|
|
35
|
-
"@kopexa/button": "17.0.
|
|
36
|
-
"@kopexa/drawer": "17.0.
|
|
37
|
-
"@kopexa/
|
|
38
|
-
"@kopexa/input": "17.0.
|
|
39
|
-
"@kopexa/
|
|
40
|
-
"@kopexa/
|
|
41
|
-
"@kopexa/
|
|
42
|
-
"@kopexa/
|
|
43
|
-
"@kopexa/use-is-mobile": "17.0.
|
|
35
|
+
"@kopexa/button": "17.0.16",
|
|
36
|
+
"@kopexa/drawer": "17.0.16",
|
|
37
|
+
"@kopexa/react-utils": "17.0.16",
|
|
38
|
+
"@kopexa/input": "17.0.16",
|
|
39
|
+
"@kopexa/shared-utils": "17.0.16",
|
|
40
|
+
"@kopexa/tooltip": "17.0.16",
|
|
41
|
+
"@kopexa/separator": "17.0.16",
|
|
42
|
+
"@kopexa/icons": "17.2.4",
|
|
43
|
+
"@kopexa/use-is-mobile": "17.0.16"
|
|
44
44
|
},
|
|
45
45
|
"clean-package": "../../../clean-package.config.json",
|
|
46
46
|
"module": "dist/index.mjs",
|