@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 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