@blueprint-chart/ui 0.1.9 → 0.1.12

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.
@@ -1,10 +1,13 @@
1
1
  type __VLS_Props = {
2
2
  placeholder: string;
3
3
  shortcutLabel: string;
4
+ collapsed?: boolean;
4
5
  };
5
6
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
6
7
  click: () => any;
7
8
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
8
9
  onClick?: (() => any) | undefined;
9
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ }>, {
11
+ collapsed: boolean;
12
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
13
  export default _default;
@@ -0,0 +1,14 @@
1
+ type __VLS_Slots = {
2
+ 'brand'?: () => unknown;
3
+ 'actions'?: () => unknown;
4
+ 'cta-primary'?: () => unknown;
5
+ 'cta-secondary'?: () => unknown;
6
+ };
7
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
8
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
9
+ export default _default;
10
+ type __VLS_WithSlots<T, S> = T & {
11
+ new (): {
12
+ $slots: S;
13
+ };
14
+ };
@@ -0,0 +1,15 @@
1
+ type __VLS_Slots = {
2
+ 'brand'?: () => unknown;
3
+ 'menu'?: () => unknown;
4
+ 'actions'?: () => unknown;
5
+ 'cta-secondary'?: () => unknown;
6
+ 'cta-primary'?: () => unknown;
7
+ };
8
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
9
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
10
+ export default _default;
11
+ type __VLS_WithSlots<T, S> = T & {
12
+ new (): {
13
+ $slots: S;
14
+ };
15
+ };
@@ -0,0 +1,14 @@
1
+ export interface NavigationSectionDropdownSection {
2
+ text: string;
3
+ link: string;
4
+ }
5
+ type __VLS_Props = {
6
+ sections: ReadonlyArray<NavigationSectionDropdownSection>;
7
+ activeLink?: string;
8
+ triggerLabel?: string;
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
11
+ activeLink: string;
12
+ triggerLabel: string;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
14
+ export default _default;
@@ -0,0 +1,14 @@
1
+ export interface NavigationSectionTabsSection {
2
+ text: string;
3
+ link: string;
4
+ }
5
+ type __VLS_Props = {
6
+ sections: ReadonlyArray<NavigationSectionTabsSection>;
7
+ activeLink?: string;
8
+ ariaLabel?: string;
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
11
+ ariaLabel: string;
12
+ activeLink: string;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
14
+ export default _default;
package/dist/index.d.ts CHANGED
@@ -67,10 +67,16 @@ export { default as NavigationStepperChevron } from './components/Navigation/Nav
67
67
  export { default as NavigationToggle } from './components/Navigation/NavigationToggle/NavigationToggle.vue';
68
68
  export { default as NavigationToggleOption } from './components/Navigation/NavigationToggle/NavigationToggleOption.vue';
69
69
  export { default as NavigationCommandBar } from './components/Navigation/NavigationCommandBar/NavigationCommandBar.vue';
70
+ export { default as NavigationDocsBar } from './components/Navigation/NavigationDocsBar/NavigationDocsBar.vue';
70
71
  export { default as NavigationIconRail } from './components/Navigation/NavigationIconRail/NavigationIconRail.vue';
71
72
  export { default as NavigationIconRailEntry } from './components/Navigation/NavigationIconRail/NavigationIconRailEntry.vue';
72
73
  export { default as NavigationLink } from './components/Navigation/NavigationLink/NavigationLink.vue';
74
+ export { default as NavigationMarketingBar } from './components/Navigation/NavigationMarketingBar/NavigationMarketingBar.vue';
73
75
  export { default as NavigationSearchPill } from './components/Navigation/NavigationSearchPill/NavigationSearchPill.vue';
76
+ export { default as NavigationSectionTabs } from './components/Navigation/NavigationSectionTabs/NavigationSectionTabs.vue';
77
+ export type { NavigationSectionTabsSection } from './components/Navigation/NavigationSectionTabs/NavigationSectionTabs.vue';
78
+ export { default as NavigationSectionDropdown } from './components/Navigation/NavigationSectionDropdown/NavigationSectionDropdown.vue';
79
+ export type { NavigationSectionDropdownSection } from './components/Navigation/NavigationSectionDropdown/NavigationSectionDropdown.vue';
74
80
  export { default as NavigationSidebar } from './components/Navigation/NavigationSidebar/NavigationSidebar.vue';
75
81
  export { default as NavigationSidebarGroup } from './components/Navigation/NavigationSidebarGroup/NavigationSidebarGroup.vue';
76
82
  export { default as NavigationSidebarItem } from './components/Navigation/NavigationSidebarItem/NavigationSidebarItem.vue';