pull/7362/head
Cagatay Civici 2025-03-03 16:56:31 +03:00
commit f6ec835528
298 changed files with 568 additions and 516 deletions

View File

@ -1 +0,0 @@
# Labs

View File

@ -1,16 +0,0 @@
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" lang="script" />
</template>
<script>
export default {
data() {
return {
code: `
import SelectButton from '@/plex/selectbutton';
`
};
}
};
</script>

View File

@ -1,16 +0,0 @@
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" lang="script" />
</template>
<script>
export default {
data() {
return {
code: `
import Timeline from '@/plex/timeline';
`
};
}
};
</script>

View File

@ -1,16 +0,0 @@
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" lang="script" />
</template>
<script>
export default {
data() {
return {
code: `
import ToggleButton from '@/plex/togglebutton';
`
};
}
};
</script>

View File

@ -1,16 +0,0 @@
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" lang="script" />
</template>
<script>
export default {
data() {
return {
code: `
import ToggleSwitch from '@/plex/toggleswitch';
`
};
}
};
</script>

View File

@ -120,12 +120,12 @@ export default defineConfig({
},
'tailwind.config.js': {
content: `/** @type {import('tailwindcss').Config} */
const primeui = require('tailwindcss-primeui');
import PrimeUI from 'tailwindcss-primeui';
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: ['selector', '[class="p-dark"]'],
plugins: [primeui]
plugins: [PrimeUI]
};
`
},

View File

@ -736,7 +736,7 @@
"name": "as",
"optional": true,
"readonly": false,
"type": "string | Component<any, any, any, ComputedOptions, MethodOptions, Object, any>",
"type": "string | Component",
"default": "DIV",
"description": "Use to change the HTML tag of root element."
},
@ -1830,7 +1830,7 @@
"name": "as",
"optional": true,
"readonly": false,
"type": "string | Component<any, any, any, ComputedOptions, MethodOptions, Object, any>",
"type": "string | Component",
"default": "DIV",
"description": "Use to change the HTML tag of root element."
},
@ -2117,7 +2117,7 @@
"name": "as",
"optional": true,
"readonly": false,
"type": "string | Component<any, any, any, ComputedOptions, MethodOptions, Object, any>",
"type": "string | Component",
"default": "BUTTON",
"description": "Use to change the HTML tag of root element."
},
@ -2418,7 +2418,7 @@
"name": "as",
"optional": true,
"readonly": false,
"type": "string | Component<any, any, any, ComputedOptions, MethodOptions, Object, any>",
"type": "string | Component",
"default": "DIV",
"description": "Use to change the HTML tag of root element."
},
@ -8303,7 +8303,7 @@
"name": "as",
"optional": true,
"readonly": false,
"type": "string | Component<any, any, any, ComputedOptions, MethodOptions, Object, any>",
"type": "string | Component",
"default": "BUTTON",
"description": "Use to change the HTML tag of root element."
},
@ -64096,7 +64096,7 @@
"name": "as",
"optional": true,
"readonly": false,
"type": "string | Component<any, any, any, ComputedOptions, MethodOptions, Object, any>",
"type": "string | Component",
"default": "BUTTON",
"description": "Use to change the HTML tag of root element."
},
@ -64869,7 +64869,7 @@
"name": "as",
"optional": true,
"readonly": false,
"type": "string | Component<any, any, any, ComputedOptions, MethodOptions, Object, any>",
"type": "string | Component",
"default": "BUTTON",
"description": "Use to change the HTML tag of root element."
},
@ -66369,7 +66369,7 @@
"name": "as",
"optional": true,
"readonly": false,
"type": "string | Component<any, any, any, ComputedOptions, MethodOptions, Object, any>",
"type": "string | Component",
"default": "BUTTON",
"description": "Use to change the HTML tag of root element."
},
@ -67535,7 +67535,7 @@
"name": "as",
"optional": true,
"readonly": false,
"type": "string | Component<any, any, any, ComputedOptions, MethodOptions, Object, any>",
"type": "string | Component",
"default": "DIV",
"description": "Use to change the HTML tag of root element."
},
@ -80007,4 +80007,4 @@
}
}
}
}
}

View File

@ -30,7 +30,7 @@ export default defineNuxtConfig({
vite: {
optimizeDeps: {
noDiscovery: true,
include: ['quill']
include: ['quill', 'yup']
},
resolve: {
dedupe: ['vue', '@primeuix/styles', '@primeuix/themes', '@primeuix/utils'],

View File

@ -4,6 +4,7 @@
"author": "PrimeTek Informatics",
"description": "",
"homepage": "https://primevue.org/",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
@ -34,8 +35,8 @@
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"build:prebuild": "node ./scripts/prebuild.js",
"build:apidoc": "node ./scripts/build-apidoc.js"
"build:prebuild": "node ./scripts/prebuild.mjs",
"build:apidoc": "node ./scripts/build-apidoc.cjs"
},
"dependencies": {
"@docsearch/js": "catalog:app",
@ -62,7 +63,7 @@
"sass-loader": "catalog:app",
"tailwindcss": "^3",
"tailwindcss-primeui": "catalog:",
"typedoc": "0.27.9",
"typedoc": "0.23.23",
"vite": "catalog:app"
}
}

View File

@ -1,20 +0,0 @@
const fs = require('fs');
const path = require('path');
const rootDir = path.resolve(__dirname, '../');
const workspaceDir = path.resolve(__dirname, '../../../');
const pkg = path.resolve(rootDir, 'package.json');
const pkgJson = require(pkg);
const packageJson = require(path.resolve(workspaceDir, 'package.json'));
pkgJson.version = packageJson.version;
pkgJson.author = packageJson.author;
pkgJson.homepage = packageJson.homepage;
pkgJson.license = packageJson.license;
pkgJson.repository = { ...pkgJson.repository, ...packageJson.repository };
pkgJson.bugs = { ...pkgJson.bugs, ...packageJson.bugs };
pkgJson.engines = { ...pkgJson.engines, ...packageJson.engines };
fs.writeFileSync(pkg, JSON.stringify(pkgJson, null, 4));

View File

@ -0,0 +1,25 @@
import fs from 'fs';
import path, { dirname } from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const rootDir = path.resolve(__dirname, '../');
const workspaceDir = path.resolve(__dirname, '../../../');
const pkgPath = path.resolve(rootDir, 'package.json');
const packageJsonPath = path.resolve(workspaceDir, 'package.json');
const pkgJson = JSON.parse(fs.readFileSync(pkgPath, { encoding: 'utf-8' }));
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, { encoding: 'utf-8' }));
pkgJson.version = packageJson.version;
pkgJson.author = packageJson.author;
pkgJson.homepage = packageJson.homepage;
pkgJson.license = packageJson.license;
pkgJson.repository = { ...pkgJson.repository, ...packageJson.repository };
pkgJson.bugs = { ...pkgJson.bugs, ...packageJson.bugs };
pkgJson.engines = { ...pkgJson.engines, ...packageJson.engines };
fs.writeFileSync(pkgPath, JSON.stringify(pkgJson, null, 4));

1
apps/volt/README.md Normal file
View File

@ -0,0 +1 @@
# Volt

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 49 KiB

Some files were not shown because too many files have changed in this diff Show More