feat(docs): change readme, pump 1.0.1

This commit is contained in:
Nan72 2025-02-14 14:08:02 +07:00
parent 62b6376d34
commit 89e3421f7e
No known key found for this signature in database
4 changed files with 12 additions and 61 deletions

View File

@ -1,43 +1,12 @@
# template-ext-worker
## 0.0.8
# template-ext-string-utils
## 1.0.1
### Patch Changes
- Updated dependencies
- @kksh/api@0.1.2
- Update README
## 0.0.7
## 1.0.0
### Patch Changes
- Updated dependencies
- @kksh/api@0.1.1
## 0.0.6
### Patch Changes
- Updated dependencies
- @kksh/api@0.1.0
## 0.0.5
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.53
## 0.0.4
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.0.3
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.47
- Initial release

View File

@ -1,28 +1,10 @@
# Kunkun Template UI Extension
# Kunkun String Utils Extension
This is a template for a template UI extension. (UI follows pre-defined template)
This is an extension for [Kunkun](https://docs.kunkun.sh/) that provides a set of string utility functions.
[./src/index.ts](./src/index.ts) is the default entrypoint for the extension. You can import any other files in this file, but the build process will bundle them into a single file.
Currently supported functions:
## Pros and Cons
This type of extension is suitable for simple use cases, such as a list or form. All components are pre-defined, so there is not much room for customization. If you want more flexibility on the UI, consider using [Custom UI Extension](https://docs.kunkun.sh/extensions/custom-ui-ext/), which requires some frontend knowledge but gives you full control over the UI.
Read documentation at https://docs.kunkun.sh/extensions/worker-template/
Make sure you understand what this type of extension is capable of.
### Pros
- Simple to develop, no need for any frontend knowledge.
- Small bundle size (~40KB)
- [Custom UI Extension](https://docs.kunkun.sh/extensions/custom-ui-ext/) are usually larger than 300KB.
### Cons
- Limited UI customization. Not suitable for complex use cases.
Consider [Custom UI Extension](https://docs.kunkun.sh/extensions/custom-ui-ext/) if you need more complex UI.
![image](./image.png)
## Development
@ -85,5 +67,6 @@ npx kksh@latest verify --publish # Verify some basic settings before publishing
See [Documentation](https://docs.kunkun.sh/guides/extensions/publish/design/) for more details on how to publish your extension. You will need to publish your extension package to npm or jsr first with GitHub actioin, then register it on Kunkun's website.
# TODO
[ ] padding
[ ] Truncate

BIN
functions.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -1,7 +1,7 @@
{
"$schema": "https://schema.kunkun.sh",
"name": "kunkun-ext-string-utils",
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",
"type": "module",
"repository": "https://github.com/NaN72dev/kunkun-ext-string-utils",
@ -74,8 +74,7 @@
},
"scripts": {
"dev": "bun build.ts dev",
"build": "bun build.ts",
"publish": "npm publish --provenance"
"build": "bun build.ts"
},
"dependencies": {
"@kksh/api": "0.1.3",