@mikezimm/fps-library-v2 1.0.118 → 1.0.120

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
@@ -5,12 +5,19 @@ npm run build
5
5
  npm version major/minor/patch
6
6
  npm publish --access=public
7
7
 
8
- npm install @mikezimm/fps-library-v2@1.0.118
8
+ npm install @mikezimm/fps-library-v2@1.0.120
9
9
 
10
10
  # Changelog
11
11
 
12
12
  NOTE: TURN BACK ON STRICT NULL CHECKS - turned off for PropPaneCols
13
13
 
14
+ ## 1.0.120 - 2023-Feb-09: Compliance, ALVFM
15
+ - create StdFileKeys, StdFileSearchTypes in src/components/molecules/SearchPage/StandardTypes
16
+ - create StdSharePointKeys, StdSharePointSearchTypes in src/components/molecules/SearchPage/StandardTypes
17
+
18
+ ## 1.0.119 - 2023-Feb-09: Compliance, ALVFM
19
+ - migrate ISearchType and ISearchTypes to src/components/molecules/SearchPage/ISearchTypes from ALVFinMan
20
+
14
21
  ## 1.0.118 - 2023-Feb-09: PivotTiles
15
22
  - add libraryColumnsMeta from libraryColumns but for PivotTiles MetaInfo property
16
23
 
@@ -22,8 +29,8 @@ NOTE: TURN BACK ON STRICT NULL CHECKS - turned off for PropPaneCols
22
29
  NOTE: These were moved from epTypes and ALVFinMan ISource files to new common location
23
30
 
24
31
  - move ModernSitePagesColumnsPivotTiles, createPivotTilesPagesSource to src/pnpjs/SourceItems/SitePages/createPivotTilesPagesSource
25
- - create IAnySourceItem ( based on ALVFinMan IAnySource) in src\components\molecules\SourceList\IAnyContent.ts
26
- - add libraryColumns to src\pnpjs\SourceItems\FileInterface.ts from ALVFinMan/ISource
32
+ - create IAnySourceItem ( based on ALVFinMan IAnySource) in src/components/molecules/SourceList/IAnyContent.ts
33
+ - add libraryColumns to src/pnpjs/SourceItems/FileInterface.ts from ALVFinMan/ISource
27
34
 
28
35
  - shortened gitRepoCompliance desc to just Compliance Ops
29
36
 
@@ -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":""}
@@ -0,0 +1,6 @@
1
+ import { ISearchType } from "./ISearchTypes";
2
+ export declare const StdFileKeys: string[];
3
+ export declare const StdFileSearchTypes: ISearchType[];
4
+ export declare const StdSharePointKeys: string[];
5
+ export declare const StdSharePointSearchTypes: ISearchType[];
6
+ //# sourceMappingURL=StandardTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StandardTypes.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/SearchPage/StandardTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAG7C,eAAO,MAAM,WAAW,EAAE,MAAM,EAM/B,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,WAAW,EAiB3C,CAAC;AAGF,eAAO,MAAM,iBAAiB,EAAE,MAAM,EAErC,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,WAAW,EAGjD,CAAC"}
@@ -0,0 +1,30 @@
1
+ // Keys must be in same order as in StdFileSearchTypes
2
+ export const StdFileKeys = [
3
+ "pdf",
4
+ "ppt", "pptx",
5
+ "xls", "xlsm", "xlsx",
6
+ "doc", "docx", "rtf", "txt",
7
+ "msg",
8
+ ];
9
+ export const StdFileSearchTypes = [
10
+ { key: "pdf", title: "pdf", icon: "PDF", style: "", count: 0 },
11
+ { key: "ppt", title: "ppt", icon: "PowerPointDocument", style: "", count: 0 },
12
+ { key: "pptx", title: "ppt", icon: "PowerPointDocument", style: "", count: 0, adjust: -1 },
13
+ { key: "xls", title: "xls", icon: "ExcelDocument", style: "", count: 0 },
14
+ { key: "xlsm", title: "xls", icon: "ExcelDocument", style: "", count: 0, adjust: -1 },
15
+ { key: "xlsx", title: "xls", icon: "ExcelDocument", style: "", count: 0, adjust: -2 },
16
+ { key: "doc", title: "doc", icon: "WordDocument", style: "", count: 0 },
17
+ { key: "docx", title: "doc", icon: "WordDocument", style: "", count: 0, adjust: -1 },
18
+ { key: "rtf", title: "rtf", icon: "AlignLeft", style: "", count: 0 },
19
+ { key: "txt", title: "txt", icon: "WordDocument", style: "", count: 0, adjust: -1 },
20
+ { key: "msg", title: "msg", icon: "Read", style: "", count: 0 },
21
+ ];
22
+ // Keys must be in same order as in StdSharePointSearchTypes
23
+ export const StdSharePointKeys = [
24
+ "page", "news",
25
+ ];
26
+ export const StdSharePointSearchTypes = [
27
+ { key: "page", title: "page", icon: "KnowledgeArticle", style: "", count: 0 },
28
+ { key: "news", title: "news", icon: "News", style: "", count: 0 },
29
+ ];
30
+ //# sourceMappingURL=StandardTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StandardTypes.js","sourceRoot":"","sources":["../../../../src/components/molecules/SearchPage/StandardTypes.ts"],"names":[],"mappings":"AAEA,sDAAsD;AACtD,MAAM,CAAC,MAAM,WAAW,GAAc;IACpC,KAAK;IACL,KAAK,EAAE,MAAM;IACb,KAAK,EAAE,MAAM,EAAG,MAAM;IACtB,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK;IAC3B,KAAK;CACN,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAkB;IAC/C,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE;IAE9D,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,oBAAoB,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE;IAC7E,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,oBAAoB,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,EAAE;IAE1F,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,eAAe,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE;IACxE,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,eAAe,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,EAAE;IACrF,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,eAAe,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,EAAE;IAErF,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,cAAc,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE;IACvE,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,cAAc,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,EAAE;IACpF,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE;IACpE,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,cAAc,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,EAAE;IAEnF,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE;CAEhE,CAAC;AAEF,4DAA4D;AAC5D,MAAM,CAAC,MAAM,iBAAiB,GAAc;IAC1C,MAAM,EAAE,MAAM;CACf,CAAC;AAEF,MAAM,CAAC,MAAM,wBAAwB,GAAkB;IACrD,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,kBAAkB,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE;IAC7E,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE;CAClE,CAAC"}
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.120",
4
4
  "description": "Library of reusable typescript/javascript functions, interfaces and constants",
5
5
  "license": "MIT",
6
6
  "main": "./lib/index.js",