@mikezimm/fps-library-v2 1.0.118 → 1.0.119

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
@@ -11,6 +11,9 @@ npm install @mikezimm/fps-library-v2@1.0.118
11
11
 
12
12
  NOTE: TURN BACK ON STRICT NULL CHECKS - turned off for PropPaneCols
13
13
 
14
+ ## 1.0.119 - 2023-Feb-09: Compliance, ALVFM
15
+ - migrate ISearchType and ISearchTypes to src\components\molecules\SearchPage\ISearchTypes from ALVFinMan
16
+
14
17
  ## 1.0.118 - 2023-Feb-09: PivotTiles
15
18
  - add libraryColumnsMeta from libraryColumns but for PivotTiles MetaInfo property
16
19
 
@@ -0,0 +1,13 @@
1
+ export interface ISearchType {
2
+ key: string;
3
+ title: string;
4
+ icon: string;
5
+ style: string;
6
+ count: number;
7
+ adjust?: number;
8
+ }
9
+ export interface ISearchTypes {
10
+ keys: string[];
11
+ objs: ISearchType[];
12
+ }
13
+ //# sourceMappingURL=ISearchTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ISearchTypes.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/SearchPage/ISearchTypes.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,WAAW;IAC1B,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,IAAI,EAAE,WAAW,EAAE,CAAC;CACrB"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=ISearchTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ISearchTypes.js","sourceRoot":"","sources":["../../../../src/components/molecules/SearchPage/ISearchTypes.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikezimm/fps-library-v2",
3
- "version": "1.0.118",
3
+ "version": "1.0.119",
4
4
  "description": "Library of reusable typescript/javascript functions, interfaces and constants",
5
5
  "license": "MIT",
6
6
  "main": "./lib/index.js",