Skip to content
Closed
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
2 changes: 0 additions & 2 deletions .npmrc

This file was deleted.

10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# d-naive
# @bgottsch/d-naive

## Overview

`d-naive` is a Vue library designed to enhance Naive UI components with additional functionalities for complex data handling and user input management. It includes a robust `DDataTable` component and a versatile `DInput` component, making it suitable for a wide range of applications.
`@bgottsch/d-naive` is a Vue library designed to enhance Naive UI components with additional functionalities for complex data handling and user input management. It includes a robust `DDataTable` component and a versatile `DInput` component, making it suitable for a wide range of applications.

> **Note**: This is a fork of the original `d-naive` package, maintained by bgottsch with additional features and Nuxt v4 compatibility.

## Installation

Install `d-naive` with npm:
Install `@bgottsch/d-naive` with npm:

```bash
npm install d-naive
npm install @bgottsch/d-naive
```
## Components

Expand Down
21,190 changes: 8,970 additions & 12,220 deletions package-lock.json

Large diffs are not rendered by default.

42 changes: 22 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "d-naive",
"version": "1.8.7",
"name": "@bgottsch/d-naive",
"version": "1.8.8",
"description": "Vue library designed to enhance Naive UI components with additional functionalities for complex data handling and user input management",
"repository": "mdoreto/d-naive",
"repository": {
"type": "git",
"url": "git+https://github.com/bgottsch/d-naive.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
"types": "./dist/module.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
Expand All @@ -28,18 +28,20 @@
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.13.0"
"@nuxt/kit": "^3.13.0 || ^4.0.0"
},
"devDependencies": {
"@nuxt/devtools": "^1.4.1",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.13.0",
"@nuxt/test-utils": "^3.14.1",
"@types/node": "^20.16.2",
"changelogen": "^0.5.5",
"eslint": "^8.57.0",
"nuxt": "^3.13.0",
"vitest": "^1.6.0"
"@nuxt/devtools": "^3.1.0",
"@nuxt/eslint-config": "^1.10.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.2.1",
"@nuxt/test-utils": "^3.20.1",
"@types/node": "^24.10.1",
"changelogen": "^0.6.2",
"eslint": "^9.13.0",
"nuxt": "^3.14.0 || ^4.2.1",
"typescript": "^5.9.3",
"vitest": "^4.0.9",
"vue-tsc": "^3.1.4"
}
}
}
Loading