You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** If no primary panel is designated, both panels will resize proportionally when the host element is resized. If a primary panel is designated, it will maintain its size and the other panel will grow or shrink as needed when the panels component is resized */
10
10
primary?:'start'|'end';
11
11
12
-
/** The minimum allowed size of the primary panel. Accepts CSS like `"15px"` or `"5em"` */
13
-
min?:string;
14
-
15
-
/** The maximum allowed size of the primary panel. Accepts CSS like `"15px"` or `"5em"` */
16
-
max?:string;
17
-
18
-
/** The invisible region around the divider where dragging can occur. This is usually wider than the divider to facilitate easier dragging. */
12
+
/** The invisible region around the divider where dragging can occur. This is usually wider than the divider to facilitate easier dragging. CSS value */
19
13
dividerHitArea?:string;
20
14
21
15
/** Whether the size v-model should be in relative percentages or absolute pixels */
22
16
sizeUnit?:'%'|'px';
23
17
24
18
/** Disable the manual resizing of the panels */
25
19
disabled?:boolean;
20
+
21
+
/** The minimum allowed size of the primary panel. Accepts CSS like `"15px"` or `"5em"` */
22
+
minSize?:string;
23
+
24
+
/** The maximum allowed size of the primary panel. Accepts CSS like `"15px"` or `"5em"` */
25
+
maxSize?:string;
26
+
27
+
/** Whether to allow the primary panel to be collapsed on enter key on divider or when the collapse threshold is met */
0 commit comments