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
Copy file name to clipboardExpand all lines: src_app/app/component/doc/doc.route.component.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -39,8 +39,8 @@ export class DocComponent {
39
39
{name: 'gutterStep',type: 'number',default: '1',details: `Gutter step while moving in pixels.`},
40
40
{name: 'restrictMove',type: 'boolean',default: 'false',details: 'Set to <code>true</code> if you want to limit gutter move to adjacent areas.'},
41
41
{name: 'disabled',type: 'boolean',default: 'false',details: 'Disable the dragging feature (remove cursor/image on gutters). <code>(gutterClick)</code> still emits.'},
42
-
{name: 'useTransition',type: 'boolean',default: 'false',details: 'Add transition when toggling visibility using <code>[visible]</code> or <code>[size]</code>.<br><u>Warning: Transitions are not working for <a href="https://github.com/philipwalton/flexbugs#flexbug-16">IE/Edge/Safari</a></u>'},
43
42
{name: 'dir',type: 'string',default: '"ltr"',details: 'Indicates the directionality of the areas: <code>"ltr"</code> (left to right) or <code>"rtl"</code> (right to left).'},
43
+
{name: 'useTransition',type: 'boolean',default: 'false',details: 'Add transition when toggling visibility using <code>[visible]</code> or <code>[size]</code>.<br><u>Warning: Transitions are not working for <a href="https://github.com/philipwalton/flexbugs#flexbug-16">IE/Edge/Safari</a></u>'},
44
44
],
45
45
outputs: [
46
46
{name: 'dragStart',value: '{gutterNum: number, sizes: Array<number>}',details: 'Emit when drag starts.'},
@@ -57,7 +57,7 @@ export class DocComponent {
57
57
58
58
readonlysplitAreaDoc={
59
59
inputs: [
60
-
{name: 'size',type: 'number',default: '-',details: `Size of the area in selected unit (<code>percent</code>/<code>pixel</code>).<br>Percent mode: If not provided or if all areas sizes not equal to 100, all areas will have the same size.<br>Pixel mode: An area with <code>[size]="'*'"</code> is mandatory (only one) and can't have <code>minSize</code>/<code>maxSize</code>/<code>lockSize</code>.`},
60
+
{name: 'size',type: 'number',default: '-',details: `Size of the area in selected unit (<code>percent</code>/<code>pixel</code>).<br><u>Percent mode:</u> If not provided or if all areas sizes not equal to 100, all areas will have the same size.<br><u>Pixel mode:</u> An area with <code>[size]="'*'"</code> is mandatory (only one) and can't have <code>minSize</code>/<code>maxSize</code>/<code>lockSize</code>.`},
61
61
{name: 'minSize',type: 'number',default: 'null',details: 'Minimum pixel or percent size, can\'t be smaller than provided <code>size</code>.'},
62
62
{name: 'maxSize',type: 'number',default: 'null',details: 'Maximum pixel or percent size, can\'t be bigger than provided <code>size</code>.'},
63
63
{name: 'lockSize',type: 'boolean',default: 'false',details: 'Lock area size, same as <code>minSize</code> = <code>maxSize</code> = <code>size</code>.'},
0 commit comments