@vixoniccom/modules 2.25.0-dev.29 → 2.25.0-dev.30
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.
|
@@ -6,6 +6,16 @@ on:
|
|
|
6
6
|
- master
|
|
7
7
|
types: [closed]
|
|
8
8
|
workflow_dispatch:
|
|
9
|
+
inputs:
|
|
10
|
+
release_type:
|
|
11
|
+
description: 'Version bump to apply'
|
|
12
|
+
type: choice
|
|
13
|
+
required: true
|
|
14
|
+
default: 'release'
|
|
15
|
+
options:
|
|
16
|
+
- release
|
|
17
|
+
- prerelease-dev
|
|
18
|
+
- prerelease-rc
|
|
9
19
|
|
|
10
20
|
jobs:
|
|
11
21
|
build:
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
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.25.0-dev.30](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.19...v2.25.0-dev.30) (2026-08-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add HoroscopeService to ServiceType union ([#36](https://github.com/Vixonic/store-modules/issues/36)) ([db749ac](https://github.com/Vixonic/store-modules/commit/db749ac721023c1669e64d7d8bdd3e3cef83bae5))
|
|
11
|
+
* add LocalCompanyDirectoryService to ServiceType union ([#37](https://github.com/Vixonic/store-modules/issues/37)) ([f5628f9](https://github.com/Vixonic/store-modules/commit/f5628f977495aee3caac0eaadc23a93060871675))
|
|
12
|
+
* **inputs:** add EphemerisService to ServiceType union ([#38](https://github.com/Vixonic/store-modules/issues/38)) ([54c1492](https://github.com/Vixonic/store-modules/commit/54c1492baf7ec1fae02360719037c125207369ae))
|
|
13
|
+
* **inputs:** add FootballService to ServiceType union ([#32](https://github.com/Vixonic/store-modules/issues/32)) ([04a7320](https://github.com/Vixonic/store-modules/commit/04a732039c5ac106281aeb1d35fb84373ab740e5))
|
|
14
|
+
* **inputs:** add GoogleCalendarService and OutlookCalendarService to ServiceType union ([#34](https://github.com/Vixonic/store-modules/issues/34)) ([3ef0c03](https://github.com/Vixonic/store-modules/commit/3ef0c039781bc4a1dd4968cef0ef3011338fe8db))
|
|
15
|
+
* **inputs:** add PowerBIService to ServiceType union ([#35](https://github.com/Vixonic/store-modules/issues/35)) ([df287cf](https://github.com/Vixonic/store-modules/commit/df287cf0ca5a6df49494c18c691349e4f5ab270e))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* durationFormula ([#31](https://github.com/Vixonic/store-modules/issues/31)) ([2ae0d30](https://github.com/Vixonic/store-modules/commit/2ae0d306dcc8d910390d8b7405c62826a1fe2df6))
|
|
21
|
+
|
|
5
22
|
## [2.25.0-dev.29](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.19...v2.25.0-dev.29) (2026-08-06)
|
|
6
23
|
|
|
7
24
|
|
|
@@ -5,6 +5,7 @@ export interface ISelectAssetKna extends IInput {
|
|
|
5
5
|
required?: boolean;
|
|
6
6
|
extensions?: string[];
|
|
7
7
|
multiple?: boolean;
|
|
8
|
+
imageSize?: number;
|
|
8
9
|
}
|
|
9
10
|
export declare namespace SelectAssetKna {
|
|
10
11
|
type Error = ValueError.Required | {
|
|
@@ -26,6 +27,7 @@ export declare class SelectAssetKna extends Input<SelectAssetKna.Value, SelectAs
|
|
|
26
27
|
readonly required?: boolean;
|
|
27
28
|
readonly extensions?: string[];
|
|
28
29
|
readonly multiple: boolean;
|
|
30
|
+
readonly imageSize?: number;
|
|
29
31
|
constructor(options: ISelectAssetKna);
|
|
30
32
|
validateInput(value: SelectAssetKna.Value): SelectAssetKna.Error[];
|
|
31
33
|
isValidValue(v: any): v is SelectAssetKna.Value;
|
|
@@ -30,6 +30,7 @@ var SelectAssetKna = /** @class */ (function (_super) {
|
|
|
30
30
|
_this.required = options.required;
|
|
31
31
|
_this.extensions = options.extensions;
|
|
32
32
|
_this.multiple = options.multiple === true;
|
|
33
|
+
_this.imageSize = options.imageSize;
|
|
33
34
|
return _this;
|
|
34
35
|
}
|
|
35
36
|
SelectAssetKna.prototype.validateInput = function (value) {
|