@porscheinformatik/clr-addons 19.2.0 → 19.3.0
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/fesm2022/clr-addons.mjs +21 -9
- package/fesm2022/clr-addons.mjs.map +1 -1
- package/icons/shapes.d.ts +10 -4
- package/package.json +1 -1
package/icons/shapes.d.ts
CHANGED
|
@@ -47,10 +47,13 @@ export declare const PartAvailabilityNoShape: string;
|
|
|
47
47
|
export declare const PartAvailabilityUnknownShape: string;
|
|
48
48
|
export declare const PartAvailabilityWarningShape: string;
|
|
49
49
|
export declare const PartAvailabilityYesShape: string;
|
|
50
|
-
export declare const
|
|
51
|
-
export declare const
|
|
52
|
-
export declare const
|
|
53
|
-
export declare const
|
|
50
|
+
export declare const PartSuccessorShape: string;
|
|
51
|
+
export declare const PartPredecessorShape: string;
|
|
52
|
+
export declare const PartSuccessorPredecessorShape: string;
|
|
53
|
+
export declare const PartIdenticalShape: string;
|
|
54
|
+
export declare const PartIdenticalPredecessorShape: string;
|
|
55
|
+
export declare const PartIdenticalSuccessorShape: string;
|
|
56
|
+
export declare const PartIdenticalSuccpredecessorShape: string;
|
|
54
57
|
export declare const PaintMaterialShape: string;
|
|
55
58
|
export declare const PaintMaterialForwardShape: string;
|
|
56
59
|
export declare const ItemsReceiveShape: string;
|
|
@@ -582,6 +585,9 @@ export declare const partAvailabilityNoIcon: IconShapeTuple;
|
|
|
582
585
|
export declare const partAvailabilityUnknownIcon: IconShapeTuple;
|
|
583
586
|
export declare const partAvailabilityWarningIcon: IconShapeTuple;
|
|
584
587
|
export declare const partAvailabilityYesIcon: IconShapeTuple;
|
|
588
|
+
export declare const partSuccessorIcon: IconShapeTuple;
|
|
589
|
+
export declare const partPredecessorIcon: IconShapeTuple;
|
|
590
|
+
export declare const partSuccessorPredecessorIcon: IconShapeTuple;
|
|
585
591
|
export declare const partIdenticalIcon: IconShapeTuple;
|
|
586
592
|
export declare const partIdenticalPredecessorIcon: IconShapeTuple;
|
|
587
593
|
export declare const partIdenticalSuccessorIcon: IconShapeTuple;
|
package/package.json
CHANGED