@nasl/types 0.1.8-beta.2 → 0.1.8-beta.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/nasl.ui.ast.d.ts CHANGED
@@ -319,9 +319,9 @@ export interface PropDeclaration {
319
319
  */
320
320
  implicitToString?: boolean;
321
321
  /**
322
- * 不允许该组件在逻辑中设置
322
+ * 允许该组件在逻辑中设置
323
323
  */
324
- unsettable?: boolean;
324
+ settable?: boolean;
325
325
  /**
326
326
  * 该属性是否为数据源
327
327
  */
@@ -191,9 +191,9 @@
191
191
  "type": "boolean",
192
192
  "description": "是否将任意类型隐式转换成String\n\n仅在属性类型为 string(不包括字符串枚举)的情况下,且 sync 为 falsy 时可配置"
193
193
  },
194
- "unsettable": {
194
+ "settable": {
195
195
  "type": "boolean",
196
- "description": "不允许该组件在逻辑中设置"
196
+ "description": "允许该组件在逻辑中设置"
197
197
  },
198
198
  "isDataSource": {
199
199
  "type": "boolean",
@@ -180,9 +180,9 @@ declare namespace nasl.ui {
180
180
  */
181
181
  description?: string;
182
182
  /**
183
- * 不允许该组件在逻辑中设置
183
+ * 允许该组件在逻辑中设置
184
184
  */
185
- unsettable?: boolean;
185
+ settable?: boolean;
186
186
  /**
187
187
  * 该属性是否为数据源
188
188
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nasl/types",
3
- "version": "0.1.8-beta.2",
3
+ "version": "0.1.8-beta.3",
4
4
  "description": "NASL types for TypeScript Declaration",
5
5
  "main": "index.d.ts",
6
6
  "scripts": {