Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ on:
branches: [main]

env:
NODE_VERSION: "18"
NODE_VERSION: "20"

jobs:
full-code-check:
runs-on: ubuntu-latest
steps:
- name: Full-check repository
uses: actions/checkout@v3
- uses: actions/setup-node@v2.5.1
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
check-latest: true
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Docs build and deploy
on:
push
# paths: ["src/**"] # Trigger the action only when files change in the folders defined here
on: push

env:
NODE_VERSION: "20"

jobs:
build-and-deploy:
runs-on: ubuntu-latest
Expand All @@ -10,6 +12,11 @@ jobs:
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Node.js 📦
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
check-latest: true
- name: Install and Build 🔧
run: | # Install packages and build the demo project
yarn install
Expand Down
4 changes: 2 additions & 2 deletions lib/ContentEditable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ const ContentEditable: React.FC<ContentEditableProps> = ({
return (
<div
className={containerClassName}
style={{ display: "flex", alignItems: "center" }}
style={{ display: "flex", alignItems: "center", position: "relative" }}
>
<div
ref={divRef}
Expand All @@ -280,7 +280,7 @@ const ContentEditable: React.FC<ContentEditableProps> = ({
aria-label={placeholder ?? ""}
className={contentEditableClassName}
style={{
padding: "calc((1.5rem * 1.3125)/2) 0 calc((1.5rem * 1.3125)/2) 1rem",
padding: "0.85rem",
overflow: "auto",
height: "auto",
textAlign: "initial",
Expand Down
29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-basic-contenteditable",
"description": "React 18 contenteditable component. Super-customizable!",
"version": "1.0.2",
"description": "React contenteditable component. Super-customizable!",
"version": "1.0.3",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
Expand Down Expand Up @@ -40,20 +40,21 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.11.17",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.2.2",
"vite": "^5.1.0",
"vite-plugin-dts": "^3.7.2"
"eslint-plugin-react-refresh": "^0.4.16",
"glob": "^11.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vite-plugin-dts": "^4.4.0"
},
"bugs": {
"url": "https://github.com/ChrisUser/react-basic-contenteditable/issues"
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from "vite"
import { extname, relative, resolve } from "path"
import { fileURLToPath } from "node:url"
import glob from "glob"
import { glob } from "glob"
import react from "@vitejs/plugin-react-swc"
import dts from "vite-plugin-dts"

Expand Down
Loading
Loading