@nextclaw/ui 0.3.1 → 0.3.3
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.
- package/.eslintrc.cjs +3 -1
- package/CHANGELOG.md +12 -0
- package/dist/assets/index-JpepB1WI.js +225 -0
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/src/api/config.ts +10 -0
- package/src/api/types.ts +32 -0
- package/src/components/config/ChannelForm.tsx +24 -8
- package/src/components/config/ChannelsList.tsx +10 -2
- package/src/components/config/ModelConfig.tsx +25 -8
- package/src/components/config/ProviderForm.tsx +25 -10
- package/src/components/config/ProvidersList.tsx +7 -4
- package/src/hooks/useConfig.ts +16 -1
- package/src/lib/config-hints.ts +43 -0
- package/dist/assets/index-BivRvIey.js +0 -225
package/.eslintrc.cjs
CHANGED
|
@@ -23,6 +23,8 @@ module.exports = {
|
|
|
23
23
|
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
|
|
24
24
|
"react-hooks/rules-of-hooks": "error",
|
|
25
25
|
"react-hooks/exhaustive-deps": "warn",
|
|
26
|
-
"react-hooks/set-state-in-effect": "off"
|
|
26
|
+
"react-hooks/set-state-in-effect": "off",
|
|
27
|
+
"max-lines": ["warn", { "max": 800, "skipBlankLines": true, "skipComments": true }],
|
|
28
|
+
"max-lines-per-function": ["warn", { "max": 150, "skipBlankLines": true, "skipComments": true, "IIFEs": true }]
|
|
27
29
|
}
|
|
28
30
|
};
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @nextclaw/ui
|
|
2
2
|
|
|
3
|
+
## 0.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Align provider/channel list descriptions with config UI hints and extend schema help entries.
|
|
8
|
+
|
|
9
|
+
## 0.3.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- chore: tighten eslint line limits
|
|
14
|
+
|
|
3
15
|
## 0.3.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|