@pantograph/vue 0.33.2 → 0.33.3

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,4 @@
1
+ import { _ as f } from "./index-WVq-uSZI.js";
2
+ export {
3
+ f as default
4
+ };
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-uBC8jNlu.js");exports.default=e._sfc_main;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-Dfhs4Ees.js");exports.default=e._sfc_main;
@@ -1,3 +1,4 @@
1
1
  import { default as ConfigProvider, provideConfigContext, injectConfigContext, useConfig, FlipOnDir, Direction, ConfigProviderProps } from './ConfigProvider';
2
2
  declare const ConfigProviderPlugin: import('vue').Plugin;
3
3
  export { ConfigProvider, ConfigProviderPlugin, provideConfigContext, injectConfigContext, useConfig, type FlipOnDir, type Direction, type ConfigProviderProps, };
4
+ export * from './utils';
@@ -1,3 +1,4 @@
1
1
  import { default as GraphicalObject, GraphicalObjectProps } from './GraphicalObject';
2
2
  declare const GraphicalObjectPlugin: import('vue').Plugin;
3
3
  export { GraphicalObject, GraphicalObjectPlugin, type GraphicalObjectProps };
4
+ export * from './GraphicalObject.model';
@@ -1,4 +1,3 @@
1
- import { PropType } from 'vue';
2
1
  import { IndentLevelShowLine, IndentLevelSize } from './IndentLevel.model';
3
2
  import { ClassValue } from 'clsx';
4
3
  import { Direction } from '../ConfigProvider';
@@ -14,7 +13,7 @@ export interface IndentLevelProps {
14
13
  /**
15
14
  * Controls the visibility and placement of lines indicating hierarchical relationships
16
15
  */
17
- showLine?: IndentLevelShowLine | number | false;
16
+ showLine?: IndentLevelShowLine | string | number | false;
18
17
  /**
19
18
  * Whether the current level contains nested or child elements
20
19
  */
@@ -59,61 +58,11 @@ declare function __VLS_template(): {
59
58
  rootEl: HTMLDivElement;
60
59
  };
61
60
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
62
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
63
- size: {
64
- type: PropType<IndentLevelSize>;
65
- default: string;
66
- };
67
- showLine: {
68
- type: PropType<IndentLevelShowLine | number | false>;
69
- validator: (value: any) => boolean;
70
- };
71
- children: BooleanConstructor;
72
- level: {
73
- type: PropType<number | string>;
74
- default: number;
75
- };
76
- expanded: BooleanConstructor;
77
- dir: PropType<Direction>;
78
- loading: BooleanConstructor;
79
- class: PropType<ClassValue>;
80
- branchIcon: {
81
- type: StringConstructor;
82
- default: string;
83
- };
84
- noRotateBranch: BooleanConstructor;
85
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
86
- size: {
87
- type: PropType<IndentLevelSize>;
88
- default: string;
89
- };
90
- showLine: {
91
- type: PropType<IndentLevelShowLine | number | false>;
92
- validator: (value: any) => boolean;
93
- };
94
- children: BooleanConstructor;
95
- level: {
96
- type: PropType<number | string>;
97
- default: number;
98
- };
99
- expanded: BooleanConstructor;
100
- dir: PropType<Direction>;
101
- loading: BooleanConstructor;
102
- class: PropType<ClassValue>;
103
- branchIcon: {
104
- type: StringConstructor;
105
- default: string;
106
- };
107
- noRotateBranch: BooleanConstructor;
108
- }>> & Readonly<{}>, {
109
- children: boolean;
110
- size: "2xsm" | "xsm" | "sm";
111
- loading: boolean;
112
- expanded: boolean;
61
+ declare const __VLS_component: import('vue').DefineComponent<IndentLevelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IndentLevelProps> & Readonly<{}>, {
62
+ size: IndentLevelSize;
113
63
  branchIcon: string;
114
- level: string | number;
115
- noRotateBranch: boolean;
116
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
64
+ level: number | string;
65
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
117
66
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
118
67
  export default _default;
119
68
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -4,3 +4,4 @@ export { Popover, PopoverPlugin, type PopoverProps, };
4
4
  export type { PopoverSlots, PopoverEmits } from './type';
5
5
  export type { GetPopupContainer } from '../utils/popupContext';
6
6
  export * from './Popover.model';
7
+ export * from './utils';
@@ -4,3 +4,4 @@ declare const TreePlugin: import('vue').Plugin;
4
4
  declare const TreeNodePlugin: import('vue').Plugin;
5
5
  export { Tree, TreePlugin, Node as TreeNode, TreeNodePlugin, };
6
6
  export * from './Tree.model';
7
+ export * from './utils';