@primeui/texteditor-core 1.0.0-beta.1 → 1.0.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE.md +35 -0
  2. package/README.md +12 -0
  3. package/package.json +6 -10
  4. package/LICENSE +0 -23
package/LICENSE.md ADDED
@@ -0,0 +1,35 @@
1
+ # PrimeUI Pro License
2
+
3
+ This package is a **PrimeUI Pro** component by PrimeTek Informatics — an advanced, framework-independent UI component.
4
+
5
+ PrimeUI Pro components are commercial software. They are not available under the MIT license or a free Community license. A valid commercial license is required.
6
+
7
+ ## How PrimeUI Pro May Be Used
8
+
9
+ This component may be used under either of the following:
10
+
11
+ ### Standalone Commercial License
12
+
13
+ Purchased individually, licensed per developer, perpetual, with one year of updates. The component is framework-independent and may be used with any UI library, including PrimeNG, PrimeReact, PrimeVue, or others.
14
+
15
+ ### Included with PrimeUI Commercial Suite
16
+
17
+ PrimeUI Commercial Suite license holders receive access to all PrimeUI Pro components released within their update period at no additional cost.
18
+
19
+ ## License Key
20
+
21
+ A valid license key is required to use this software. License verification is performed offline, with no telemetry and no remote connection. A missing, invalid, or expired key may cause the software to display a license notice.
22
+
23
+ ## Full Terms
24
+
25
+ The complete license terms, pricing, and renewal information are available at:
26
+
27
+ **https://primeui.dev/licenses/commercial**
28
+
29
+ ## Restrictions
30
+
31
+ This software is distributed as a compiled package. You may not reverse-engineer, decompile, or extract its source code, redistribute it as a component library or development tool, or remove its license mechanisms. Redistributing the component so that third parties can develop with it requires a separate OEM License. See the full terms for details.
32
+
33
+ ---
34
+
35
+ © 2026 PrimeTek Informatics. All rights reserved.
package/README.md CHANGED
@@ -1 +1,13 @@
1
1
  # PrimeUI TextEditor Core
2
+
3
+ `@primeui/texteditor-core` is the framework-agnostic rich text editor API for PrimeUI. It provides the ProseMirror-based document model, extension system, plugin registry, and toolbar API consumed by framework-specific text editor packages.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pnpm add @primeui/texteditor-core
9
+ ```
10
+
11
+ ## License
12
+
13
+ Licensed under the [PrimeUI Pro License](https://primeui.dev/licenses/commercial) - Copyright (c) [PrimeTek Informatics](https://www.primetek.com.tr)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primeui/texteditor-core",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-rc.1",
4
4
  "author": "PrimeTek Informatics",
5
5
  "description": "TextEditor API for PrimeUI.",
6
6
  "keywords": [
@@ -8,13 +8,8 @@
8
8
  "primeui"
9
9
  ],
10
10
  "license": "SEE LICENSE IN LICENSE.md",
11
- "repository": {
12
- "type": "git",
13
- "url": "git+https://github.com/primefaces/primeui.git",
14
- "directory": "packages/components/texteditor/texteditor-core"
15
- },
16
11
  "bugs": {
17
- "url": "https://github.com/primefaces/primeui/issues"
12
+ "url": "https://support.primeui.dev"
18
13
  },
19
14
  "main": "./dist/index.mjs",
20
15
  "exports": {
@@ -41,7 +36,8 @@
41
36
  "files": [
42
37
  "dist",
43
38
  "README.md",
44
- "LICENSE"
39
+ "LICENSE.md",
40
+ "THIRD-PARTY-NOTICES.md"
45
41
  ],
46
42
  "dependencies": {
47
43
  "prosemirror-commands": "^1.7.1",
@@ -56,8 +52,8 @@
56
52
  "prosemirror-tables": "^1.8.5",
57
53
  "prosemirror-transform": "^1.12.0",
58
54
  "prosemirror-view": "^1.41.7",
59
- "@primeui/core": "1.0.0-beta.1",
60
- "@primeui/texteditor-types": "1.0.0-beta.1"
55
+ "@primeui/core": "1.0.0-rc.1",
56
+ "@primeui/texteditor-types": "1.0.0-rc.1"
61
57
  },
62
58
  "scripts": {
63
59
  "build": "cross-env NODE_ENV=production INPUT_DIR=src/ OUTPUT_DIR=dist/ pnpm run build:package",
package/LICENSE DELETED
@@ -1,23 +0,0 @@
1
- # License
2
-
3
- MIT License
4
-
5
- Copyright (c) 2026 PrimeTek
6
-
7
- Permission is hereby granted, free of charge, to any person obtaining a copy
8
- of this software and associated documentation files (the "Software"), to deal
9
- in the Software without restriction, including without limitation the rights
10
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
- copies of the Software, and to permit persons to whom the Software is
12
- furnished to do so, subject to the following conditions:
13
-
14
- The above copyright notice and this permission notice shall be included in all
15
- copies or substantial portions of the Software.
16
-
17
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
- SOFTWARE.