Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ const App = defineComponent({
<button @click="addPanel">Add Tab</button>
</div>
<dockview-vue
class="example-dock ${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
class="example-dock"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
:overflow="{ mode: 'dropdown', search: { placeholder: 'Search tabs…' }, mru: true }"
@ready="onReady"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
:dockToEdgeGroups="true"
:autoHideEdgeGroups="true"
@ready="onReady"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
:autoHideEdgeGroups="true"
@ready="onReady"
>
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/templates/dockview/basic/vue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%; height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
>
</dockview-vue>`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const App = defineComponent({
},
template: `
<dockview-vue
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
style="width: 100%; height: 100%;">
</dockview-vue>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
:getTabContextMenuItems="getTabContextMenuItems"
/>`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
>
</dockview-vue>`,
Expand Down
3 changes: 2 additions & 1 deletion packages/docs/templates/dockview/dnd-events/vue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ const App = defineComponent({
</button>
</div>
<dockview-vue
class="example-dock ${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
class="example-dock"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady">
</dockview-vue>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ const App = defineComponent({
</template>
</div>
<dockview-vue
class="example-dock ${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
class="example-dock"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
:dnd-edges="{ size: { value: 100, type: 'pixels' }, activationSize: { value: 5, type: 'percentage' } }"
@ready="onReady"
@didDrop="onDidDrop">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
:dndGuide="true"
@ready="onReady"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%; height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
rightHeaderActionsComponent="rightAction"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,8 @@ const App = defineComponent({
<button @click="onToggleEnabled">{{ (disableFloatingGroups ? 'Enable' : 'Disable') + ' floating groups' }}</button>
</div>
<dockview-vue
class="example-dock ${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
class="example-dock"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
:floatingGroupBounds="bounds"
:disableFloatingGroups="disableFloatingGroups"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
single-tab-mode="fullwidth"
@ready="onReady"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
leftHeaderActionsComponent="leftAction"
rightHeaderActionsComponent="rightAction"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const App = defineComponent({
},
template: `
<dockview-vue
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
defaultHeaderPosition="bottom"
@ready="onReady"
style="width: 100%; height: 100%;">
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/templates/dockview/iframe/vue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
>
</dockview-vue>`,
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/templates/dockview/keyboard/vue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
:keyboardNavigation="keyboardNavigation"
@ready="onReady"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ const App = defineComponent({
<button @click="addPanel">Add Panel</button>
</div>
<dockview-vue
class="example-dock ${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
class="example-dock"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
:layoutHistory="{ enabled: true, undoableProgrammaticMutations: true }"
@ready="onReady"
>
Expand Down
3 changes: 2 additions & 1 deletion packages/docs/templates/dockview/layout/vue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ const App = defineComponent({
<button @click="clearLayout">Reset Layout</button>
</div>
<dockview-vue
class="example-dock ${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
class="example-dock"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
watermarkComponent="watermark"
@ready="onReady"
>
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/templates/dockview/locked/vue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
:locked="true"
></dockview-vue>`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
leftHeaderActionsComponent="leftAction"
rightHeaderActionsComponent="rightAction"
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/templates/dockview/nested/vue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
></dockview-vue>`,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
:pinnedTabs="pinnedTabs"
@ready="onReady"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const App = defineComponent({
<div class="example-dock">
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
:floatingGroupBounds="bounds"
leftHeaderActionsComponent="leftAction"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
></dockview-vue>`,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const App = defineComponent({
<div :style="styleObject">
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
:disableFloatingGroups=true
></dockview-vue>
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/templates/dockview/resize/vue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
></dockview-vue>`,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
:disableFloatingGroups="true"
></dockview-vue>`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
:smartGuides="smartGuides"
@ready="onReady"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ const App = defineComponent({
</button>
</div>
<dockview-vue
class="example-dock ${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
class="example-dock"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
:overflow="{ mode }"
:pinnedTabs="{ enabled: true }"
:getTabContextMenuItems="getTabContextMenuItems"
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/templates/dockview/tabview/vue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
:disableFloatingGroups=true
></dockview-vue>`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
></dockview-vue>`,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const App = defineComponent({
template: `
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
></dockview-vue>`,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const App = defineComponent({
<div class="example-dock">
<dockview-vue
style="width:100%;height:100%"
class="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
className="${(window as any).__dockviewThemeClass ?? 'dockview-theme-abyss'}"
@ready="onReady"
watermarkComponent="watermarkComponent"
></dockview-vue>
Expand Down
Loading