@vixoniccom/modules 2.25.0-dev.30 → 2.25.0-dev.31

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,16 +6,6 @@ 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
19
9
 
20
10
  jobs:
21
11
  build:
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.25.0-dev.31](https://github.com/Vixonic/store-modules/compare/v2.25.0-dev.30...v2.25.0-dev.31) (2026-08-07)
6
+
7
+
8
+ ### Features
9
+
10
+ * **select-asset-kna:** allow declaring a target image size ([1e845e5](https://github.com/Vixonic/store-modules/commit/1e845e5e2ae857f8856edf733b8926f9af322874))
11
+
5
12
  ## [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
13
 
7
14
 
@@ -5,7 +5,7 @@ export interface ISelectAssetKna extends IInput {
5
5
  required?: boolean;
6
6
  extensions?: string[];
7
7
  multiple?: boolean;
8
- imageSize?: number;
8
+ optimizedSize?: number;
9
9
  }
10
10
  export declare namespace SelectAssetKna {
11
11
  type Error = ValueError.Required | {
@@ -27,7 +27,7 @@ export declare class SelectAssetKna extends Input<SelectAssetKna.Value, SelectAs
27
27
  readonly required?: boolean;
28
28
  readonly extensions?: string[];
29
29
  readonly multiple: boolean;
30
- readonly imageSize?: number;
30
+ readonly optimizedSize?: number;
31
31
  constructor(options: ISelectAssetKna);
32
32
  validateInput(value: SelectAssetKna.Value): SelectAssetKna.Error[];
33
33
  isValidValue(v: any): v is SelectAssetKna.Value;
@@ -30,7 +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
+ _this.optimizedSize = options.optimizedSize;
34
34
  return _this;
35
35
  }
36
36
  SelectAssetKna.prototype.validateInput = function (value) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vixoniccom/modules",
3
- "version": "2.25.0-dev.30",
3
+ "version": "2.25.0-dev.31",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",