itube-specs 0.0.734 → 0.0.736

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.734",
4
+ "version": "0.0.736",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {
@@ -7,6 +7,7 @@ export interface IGroupedParameterItem {
7
7
  }[]
8
8
  isFilter: boolean
9
9
  kind: 'range' | 'select' | 'chips' | 'radio'
10
+ icon: string
10
11
  }
11
12
 
12
13
  export interface IGroupedParameter {
@@ -12,4 +12,5 @@ export interface IParameterModel {
12
12
  group: IModelGroup
13
13
  is_filter: boolean
14
14
  kind: 'range' | 'select' | 'radio' | 'chips'
15
+ icon: string
15
16
  }