Fixed #3802 - Improve folder structure for nuxt configurations

This commit is contained in:
mertsincan 2023-03-26 06:22:57 +01:00
parent 851950270b
commit f5fe822afb
563 changed files with 1703 additions and 1095 deletions

44
components/lib/row/Row.d.ts vendored Executable file
View file

@ -0,0 +1,44 @@
/**
* Row component is a helper component used to create grouping structures in DataTable.
*
* [Live Demo](https://www.primevue.org/datatable/)
*
* @module row
*/
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
/**
* Defines valid properties in Row component.
*/
export interface RowProps {}
/**
* Defines valid slots in Row component.
*/
export interface RowSlots {}
/**
* Defines valid emits in Row component.
*/
export interface RowEmits {}
/**
* **PrimeVue - Row**
*
* _Row component is a helper component used to create grouping structures in DataTable._
*
* [Live Demo](https://www.primevue.org/datatable/)
* --- ---
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group Component
*/
declare class Row extends ClassComponent<RowProps, RowSlots, RowEmits> {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
Row: GlobalComponentConstructor<Row>;
}
}
export default Row;

8
components/lib/row/Row.vue Executable file
View file

@ -0,0 +1,8 @@
<script>
export default {
name: 'Row',
render() {
return null;
}
};
</script>

View file

@ -0,0 +1,9 @@
{
"main": "./row.cjs.js",
"module": "./row.esm.js",
"unpkg": "./row.min.js",
"types": "./Row.d.ts",
"browser": {
"./sfc": "./Row.vue"
}
}