Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
blidblid committed Oct 24, 2023
1 parent 49f330d commit ddcd3a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export const BERG_LAYOUT_BOTTOM_BELOW_LEFT_CLASS =
'berg-layout-bottom-below-left';
export const BERG_LAYOUT_BOTTOM_BELOW_RIGHT_CLASS =
'berg-layout-bottom-below-right';
export const BERG_LAYOUT_RESIZE_TOGGLE_CLASS = 'berg-layout-resize-toggle';
export const BERG_LAYOUT_RESIZING_VERTICAL_CLASS =
'berg-layout-resizing-vertical';
export const BERG_LAYOUT_RESIZING_HORIZONTAL_CLASS =
Expand Down
6 changes: 3 additions & 3 deletions libs/core/src/lib/components/layout/layout.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { fromEvent, merge, Observable } from 'rxjs';
import { coerceBooleanProperty, coerceNumberProperty } from '../../util';
import { BergPanelSlot } from '../panel';
import { BERG_PANEL_RESIZE_TOGGLE_CLASS } from '../panel/panel-config-private';
import { WebComponent } from '../web-component';
import {
BERG_LAYOUT_ATTRIBUTE_BY_INPUT,
Expand All @@ -14,7 +15,6 @@ import {
BERG_LAYOUT_CLASS,
BERG_LAYOUT_OVERFLOW_X_CLASS,
BERG_LAYOUT_OVERFLOW_Y_CLASS,
BERG_LAYOUT_RESIZE_TOGGLE_CLASS,
BERG_LAYOUT_TOP_ABOVE_LEFT_CLASS,
BERG_LAYOUT_TOP_ABOVE_RIGHT_CLASS,
} from './layout-config-private';
Expand Down Expand Up @@ -305,8 +305,8 @@ export class BergLayoutElement extends WebComponent<BergLayoutInputs> {
const div = document.createElement('div');

div.classList.add(
BERG_LAYOUT_RESIZE_TOGGLE_CLASS,
`${BERG_LAYOUT_RESIZE_TOGGLE_CLASS}-${slot}`
BERG_PANEL_RESIZE_TOGGLE_CLASS,
`${BERG_PANEL_RESIZE_TOGGLE_CLASS}-${slot}`
);

return div;
Expand Down
1 change: 1 addition & 0 deletions libs/core/src/lib/components/panel/panel-config-private.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const BERG_PANEL_HORIZONTAL_CLASS = 'berg-panel-horizontal';
export const BERG_PANEL_PREVIEWING_CLASS = 'berg-panel-previewing';
export const BERG_PANEL_RESIZE_DISABLED_CLASS = 'berg-panel-resize-disabled';
export const BERG_PANEL_RESIZING_CLASS = 'berg-panel-resizing';
export const BERG_PANEL_RESIZE_TOGGLE_CLASS = 'berg-panel-resize-toggle';
export const BERG_PANEL_CLASS = 'berg-panel';
export const BERG_PANEL_VERTICAL_CLASS = 'berg-panel-vertical';
export const BERG_PANEL_NO_TRANSITION_CLASS = 'berg-panel-no-transition';
Expand Down

0 comments on commit ddcd3a2

Please sign in to comment.