quasar-ui-danx 0.0.48 → 0.0.50
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.
package/package.json
CHANGED
@@ -24,11 +24,13 @@
|
|
24
24
|
/>
|
25
25
|
</div>
|
26
26
|
</div>
|
27
|
+
<TitleColumnFormat v-if="column.titleColumns" :row="row" :columns="column.titleColumns()" />
|
27
28
|
</q-td>
|
28
29
|
</template>
|
29
30
|
<script setup>
|
30
31
|
import { computed } from 'vue';
|
31
32
|
import { RenderVnode } from '../Utility';
|
33
|
+
import { TitleColumnFormat } from './Columns';
|
32
34
|
import { ActionMenu } from './index';
|
33
35
|
|
34
36
|
const props = defineProps({
|
@@ -1,4 +1,4 @@
|
|
1
1
|
export { default as ColumnListItem } from "./ColumnListItem.vue";
|
2
2
|
export { default as ColumnSettingsDialog } from "./ColumnSettingsDialog.vue";
|
3
|
-
export { default as TitleColumnFormat } from "./
|
3
|
+
export { default as TitleColumnFormat } from "./TitleColumnFormat.vue";
|
4
4
|
export { default as VisibleColumnsToggleButtons } from "./VisibleColumnsToggleButtons.vue";
|
File without changes
|