cm-reporting 0.8.13 → 0.9.1
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/README.md +1 -1
- package/dist/cm-reporting.css +1 -1
- package/dist/cm-reporting.scoped.css +1 -1
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +17 -17
- package/dist/index.js +4307 -4282
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -144,7 +144,7 @@ export declare interface CirsGpmLegacyRoundtripContext {
|
|
|
144
144
|
mineFieldStatesByIndex: Map<number, Map<string, NullableFieldState>>;
|
|
145
145
|
productLegacyIndexByInternalId: Map<string, number>;
|
|
146
146
|
productFieldStatesByIndex: Map<number, Map<string, NullableFieldState>>;
|
|
147
|
-
productLegacyKeyByInternalKeyByIndex: Map<number, Map<'
|
|
147
|
+
productLegacyKeyByInternalKeyByIndex: Map<number, Map<'partNumber' | 'partName' | 'requestPartNumber' | 'requestPartName' | 'remark', string>>;
|
|
148
148
|
amrtReasonIndexByInternalId: Map<string, number>;
|
|
149
149
|
amrtReasonFieldStatesByIndex: Map<number, Map<string, NullableFieldState>>;
|
|
150
150
|
}
|
|
@@ -494,11 +494,11 @@ declare const _default: {
|
|
|
494
494
|
"mineComments": "Comments"
|
|
495
495
|
},
|
|
496
496
|
"productPlaceholders": {
|
|
497
|
-
"
|
|
498
|
-
"
|
|
499
|
-
"
|
|
500
|
-
"
|
|
501
|
-
"
|
|
497
|
+
"partNumber": "PRD-xxxx-xxx",
|
|
498
|
+
"partName": "Product name",
|
|
499
|
+
"requestPartNumber": "Requester Product Number",
|
|
500
|
+
"requestPartName": "Requester Product Name",
|
|
501
|
+
"remark": "Comments"
|
|
502
502
|
},
|
|
503
503
|
"hints": {
|
|
504
504
|
"companyName": "Use the formal registered name; no abbreviations.",
|
|
@@ -539,8 +539,8 @@ declare const _default: {
|
|
|
539
539
|
"mineralsScopeReasonPrt": "Reasons for inclusion on the PRT",
|
|
540
540
|
"mineralsScopeReasonAmrt": "Reasons for inclusion on the AMRT",
|
|
541
541
|
"comments": "Comments",
|
|
542
|
-
"
|
|
543
|
-
"
|
|
542
|
+
"requestPartNumber": "Requester Product Number",
|
|
543
|
+
"requestPartName": "Requester Product Name",
|
|
544
544
|
"noData": "No data"
|
|
545
545
|
},
|
|
546
546
|
"actions": {
|
|
@@ -807,8 +807,8 @@ declare const _default: {
|
|
|
807
807
|
"submitContinue": "Continue",
|
|
808
808
|
"submitFix": "Fix now",
|
|
809
809
|
"andMoreErrors": "and {{count}} more errors…",
|
|
810
|
-
"globalErrorBar": "
|
|
811
|
-
"globalSuccessBar": "
|
|
810
|
+
"globalErrorBar": "{{count}} required items remain incomplete. Click to review.",
|
|
811
|
+
"globalSuccessBar": "All required items are completed.",
|
|
812
812
|
"globalErrorAction": "Go to Checker",
|
|
813
813
|
"sessionSaved": "Saved in session",
|
|
814
814
|
"sessionSavedHint": "Your data is temporarily saved in the browser session. Please export the file before closing the page to save permanently.",
|
|
@@ -1823,8 +1823,8 @@ export declare function parseSnapshot(input: unknown): ReportSnapshotV1;
|
|
|
1823
1823
|
*/
|
|
1824
1824
|
declare interface ProductListConfig {
|
|
1825
1825
|
hasRequesterColumns: boolean;
|
|
1826
|
-
|
|
1827
|
-
|
|
1826
|
+
partNumberLabelKey: I18nKey;
|
|
1827
|
+
partNameLabelKey: I18nKey;
|
|
1828
1828
|
commentLabelKey: I18nKey;
|
|
1829
1829
|
}
|
|
1830
1830
|
|
|
@@ -1853,11 +1853,11 @@ export declare interface ProductPickContext {
|
|
|
1853
1853
|
*/
|
|
1854
1854
|
export declare interface ProductRow {
|
|
1855
1855
|
id: string;
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1856
|
+
partNumber: string;
|
|
1857
|
+
partName: string;
|
|
1858
|
+
requestPartNumber?: string;
|
|
1859
|
+
requestPartName?: string;
|
|
1860
|
+
remark: string;
|
|
1861
1861
|
[key: string]: string | undefined;
|
|
1862
1862
|
}
|
|
1863
1863
|
|