component-auto-docs 0.2.0 → 0.2.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.
@@ -1671,6 +1671,7 @@ const {
1671
1671
  v-else-if="isArrayProp(prop) || isObjectProp(prop)"
1672
1672
  :value="propControls[prop.name]"
1673
1673
  class="control-textarea"
1674
+ :maxlength="-1"
1674
1675
  :placeholder="prop.description || prop.name"
1675
1676
  @input="setControlValue(prop.name, $event.detail.value)"
1676
1677
  />
package/package.json CHANGED
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "name": "component-auto-docs",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Component docs automation CLI for uni-app component libraries.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "component-auto-docs": "bin/component-auto-docs.mjs"
8
8
  },
9
+ "scripts": {
10
+ "release:dry-run": "npm publish --dry-run",
11
+ "release": "npm publish"
12
+ },
9
13
  "files": [
10
14
  "bin",
11
15
  "core",