@slexn/codecenter-ui 1.0.0 → 1.0.1

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.
@@ -0,0 +1,27 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ export type RailSide = "left" | "right";
3
+ export interface RailProps {
4
+ as?: string;
5
+ class?: HTMLAttributes["class"];
6
+ side?: RailSide;
7
+ }
8
+ declare function __VLS_template(): {
9
+ attrs: Partial<{}>;
10
+ slots: {
11
+ default?(_: {}): any;
12
+ };
13
+ refs: {};
14
+ rootEl: any;
15
+ };
16
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
+ declare const __VLS_component: import('vue').DefineComponent<RailProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<RailProps> & Readonly<{}>, {
18
+ as: string;
19
+ side: RailSide;
20
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
21
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
22
+ export default _default;
23
+ type __VLS_WithTemplateSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
@@ -0,0 +1,2 @@
1
+ export { default as Rail } from './Rail.vue';
2
+ export type { RailProps, RailSide } from './Rail.vue';
package/dist/index.d.ts CHANGED
@@ -32,6 +32,7 @@ export { PromptInput, type PromptInputAddAction, type PromptInputAddActionKey, t
32
32
  export { Progress, type ProgressProps, type ProgressSize, type ProgressTone, type ProgressValue, type ProgressValueFormatter, type ProgressValueFormatterContext, } from './components/ui/progress';
33
33
  export { Profile, ProfileGroup, type ProfileBadgePlacement, type ProfileBadgeVariant, type ProfileGroupItem, type ProfileSize, } from './components/ui/profile';
34
34
  export { RadioGroup, RadioGroupItem, RadioGroupOption, } from './components/ui/radio-group';
35
+ export { Rail, type RailProps, type RailSide, } from './components/ui/rail';
35
36
  export { Reasoning, type ReasoningDuration, type ReasoningProps, type ReasoningStatus, type ReasoningStep, type ReasoningStepStatus, } from './components/ui/reasoning';
36
37
  export { Select, SelectContent, SelectGroup, SelectItem, SelectItemText, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, } from './components/ui/select';
37
38
  export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SIDEBAR_KEYBOARD_SHORTCUT, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuButtonChild, sidebarMenuButtonVariants, type SidebarMenuButtonVariants, SidebarMenuItem, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, type SidebarCollapsible, type SidebarProps, type SidebarSide, type SidebarState, SIDEBAR_STORAGE_KEY, SidebarTrigger, type SidebarVariant, SIDEBAR_WIDTH, SIDEBAR_WIDTH_ICON, SIDEBAR_WIDTH_MOBILE, useOptionalSidebar, useSidebar, } from './components/ui/sidebar';