@mikezimm/fps-library-v2 1.0.161 → 1.0.162
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.161
|
|
|
11
11
|
|
|
12
12
|
NOTE: TURN BACK ON STRICT NULL CHECKS - turned off for PropPaneCols
|
|
13
13
|
|
|
14
|
+
## 1.0.162 - 2023-Apr-05: IExtendedWordObject and IExtendedWordSummary
|
|
15
|
+
- add interface IExtendedWordObject and IExtendedWordSummary for Compliance so add related items to word objects
|
|
16
|
+
|
|
14
17
|
## 1.0.161 - 2023-Apr-05: modifiedAge, createdAge, publishedAge
|
|
15
18
|
- add modifiedAge, createdAge, publishedAge to IAnySourceItem in src\components\molecules\SourceList\IAnyContent.ts
|
|
16
19
|
- modify addSearchMeta1 > addDateTimeFileInfoSearch to include modifiedAge, createdAge, publishedAge
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IPerformanceOp } from "../../molecules/Performance/IPerformance";
|
|
2
|
+
import { IAnySourceItem } from "../../molecules/SourceList/IAnyContent";
|
|
2
3
|
export interface IWordSummary {
|
|
3
4
|
words: string[];
|
|
4
5
|
searchTextLC: string[];
|
|
@@ -16,4 +17,12 @@ export interface IWordObject {
|
|
|
16
17
|
avg?: number;
|
|
17
18
|
originalIndex?: number;
|
|
18
19
|
}
|
|
20
|
+
export interface IExtendedWordSummary extends IWordSummary {
|
|
21
|
+
wordObjs: IExtendedWordObject[];
|
|
22
|
+
}
|
|
23
|
+
export interface IExtendedWordObject extends IWordObject {
|
|
24
|
+
related1: IAnySourceItem;
|
|
25
|
+
related2: IAnySourceItem;
|
|
26
|
+
related3: IAnySourceItem;
|
|
27
|
+
}
|
|
19
28
|
//# sourceMappingURL=IWordSummary.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IWordSummary.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/WordSummary/IWordSummary.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,0CAA0C,CAAC;
|
|
1
|
+
{"version":3,"file":"IWordSummary.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/WordSummary/IWordSummary.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,0CAA0C,CAAC;AAC1E,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AAExE,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,QAAQ,EAAE,WAAW,EAAE,CAAC;IACxB,WAAW,EAAE,cAAc,CAAC;IAC5B,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAGD,MAAM,WAAW,oBAAqB,SAAQ,YAAY;IACxD,QAAQ,EAAE,mBAAmB,EAAE,CAAC;CACjC;AAGD,MAAM,WAAW,mBAAoB,SAAQ,WAAW;IACtD,QAAQ,EAAE,cAAc,CAAC;IACzB,QAAQ,EAAE,cAAc,CAAC;IACzB,QAAQ,EAAE,cAAc,CAAC;CAC1B"}
|