We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit b471ff7Copy full SHA for b471ff7
.github/workflows/gh-page.yml
@@ -0,0 +1,53 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [docs]
6
7
+permissions:
8
+ contents: write
9
+ pages: write
10
+ id-token: write
11
12
+jobs:
13
+ test:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v3
18
19
+ - name: Use Node.js
20
+ uses: actions/setup-node@v3
21
+ with:
22
+ node-version: '20'
23
24
+ - name: Install pnpm
25
+ uses: pnpm/action-setup@v2
26
27
+ version: 9
28
29
+ - name: Get pnpm store directory
30
+ id: pnpm-cache
31
+ shell: bash
32
+ run: |
33
+ echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
34
35
+ - uses: actions/cache@v3
36
+ name: Setup pnpm cache
37
38
+ path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
39
+ key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
40
+ restore-keys: |
41
+ ${{ runner.os }}-pnpm-store-
42
43
+ - name: Install dependencies
44
+ run: pnpm install
45
46
+ - name: Build the project
47
+ run: pnpm run build
48
49
+ - name: Deploy to GitHub Pages
50
+ uses: peaceiris/actions-gh-pages@v4
51
52
+ github_token: ${{ secrets.GITHUB_TOKEN }}
53
+ publish_dir: ./dist
.gitignore
@@ -0,0 +1,24 @@
+# build output
+dist/
+# generated types
+.astro/
+# dependencies
+node_modules/
+# logs
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+# environment variables
+.env
+.env.production
+# macOS-specific files
+.DS_Store
+# jetbrains setting folder
+.idea/
.vscode/extensions.json
@@ -0,0 +1,4 @@
+{
+ "recommendations": ["astro-build.astro-vscode"],
+ "unwantedRecommendations": []
+}
.vscode/launch.json
@@ -0,0 +1,11 @@
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "command": "./node_modules/.bin/astro dev",
+ "name": "Development server",
+ "request": "launch",
+ "type": "node-terminal"
+ }
+ ]
README.md
@@ -0,0 +1,2 @@
+# react-mix-tag-input docs
astro.config.mjs
@@ -0,0 +1,12 @@
+// @ts-check
+import { defineConfig } from 'astro/config';
+import react from '@astrojs/react';
+import tailwind from '@astrojs/tailwind';
+// https://astro.build/config
+export default defineConfig({
+ integrations: [react(), tailwind({
+ applyBaseStyles: false,
+ })]
+});
nyxbui.json
@@ -0,0 +1,21 @@
+ "$schema": "https://nyxbui.design/schema.json",
+ "style": "miami",
+ "rsc": false,
+ "tsx": true,
+ "tailwind": {
+ "config": "tailwind.config.mjs",
+ "css": "src/styles/global.css",
+ "baseColor": "slate",
+ "cssVariables": true,
+ "prefix": ""
+ },
+ "aliases": {
+ "components": "~/components",
+ "utils": "~/lib/utils",
+ "ui": "~/components/ui",
+ "lib": "~/lib",
+ "hooks": "~/hooks"
+ "iconLibrary": "lucide"
package.json
@@ -0,0 +1,32 @@
+ "name": "mix-input-doc",
+ "type": "module",
+ "version": "0.0.1",
+ "scripts": {
+ "dev": "astro dev",
+ "build": "astro build",
+ "preview": "astro preview",
+ "astro": "astro"
+ "dependencies": {
+ "@arif-un/react-mix-tag-input": "^1.4.1",
+ "@astrojs/react": "^4.1.2",
+ "@astrojs/tailwind": "^5.1.4",
+ "@radix-ui/react-dropdown-menu": "^2.1.4",
+ "@radix-ui/react-slot": "^1.1.1",
+ "@types/react": "^19.0.2",
+ "@types/react-dom": "^19.0.2",
+ "astro": "^5.1.2",
+ "class-variance-authority": "^0.7.1",
+ "clsx": "^2.1.1",
+ "lucide-react": "^0.471.0",
+ "prism-react-renderer": "^2.4.1",
+ "react": "^19.0.0",
+ "react-dom": "^19.0.0",
+ "react-icons": "^5.4.0",
+ "react-mix-tag-input@latest": "link:arif-un/react-mix-tag-input@latest",
+ "tailwind-merge": "^2.6.0",
+ "tailwindcss": "^3.4.17",
+ "tailwindcss-animate": "^1.0.7"
0 commit comments