@vixoniccom/modules 2.20.0-dev.0 → 2.20.0-dev.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [2.20.0-dev.1](https://bitbucket.org/vixonic_dev/modules/compare/v2.20.0-dev.0...v2.20.0-dev.1) (2025-01-29)
6
+
7
+
8
+ ### Features
9
+
10
+ * add description prop to RedirectButton component ([9d7dbce](https://bitbucket.org/vixonic_dev/modules/commit/9d7dbce06324c03320283984af28a8b991fbc23d))
11
+
5
12
  ## [2.20.0-dev.0](https://bitbucket.org/vixonic_dev/modules/compare/v2.17.0...v2.20.0-dev.0) (2025-01-29)
6
13
 
7
14
 
@@ -1,5 +1,8 @@
1
1
  import { Input, IInput } from '../base';
2
2
  import { ValueError } from '../errors';
3
+ export interface IRedirectButton extends IInput {
4
+ description?: string;
5
+ }
3
6
  export declare namespace RedirectButton {
4
7
  type Error = ValueError.InvalidValue;
5
8
  type Value = string;
@@ -7,9 +10,10 @@ export declare namespace RedirectButton {
7
10
  export declare class RedirectButton extends Input<RedirectButton.Value> {
8
11
  static type: string;
9
12
  type: string;
10
- constructor(options: IInput);
13
+ readonly description?: string;
14
+ constructor(options: IRedirectButton);
11
15
  validateInput(value: RedirectButton.Value): ValueError.InvalidValue[];
12
16
  isValidValue(v: any): v is RedirectButton.Value;
13
- static fromJSON: (value: IInput) => RedirectButton;
17
+ static fromJSON: (value: IRedirectButton) => RedirectButton;
14
18
  valueTypeDef: () => string;
15
19
  }
@@ -26,6 +26,7 @@ var RedirectButton = /** @class */ (function (_super) {
26
26
  _this.valueTypeDef = function () {
27
27
  return 'string';
28
28
  };
29
+ _this.description = options.description;
29
30
  return _this;
30
31
  }
31
32
  RedirectButton.prototype.validateInput = function (value) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vixoniccom/modules",
3
- "version": "2.20.0-dev.0",
3
+ "version": "2.20.0-dev.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",