rbro-tat-uds 2.2.0 → 2.2.2
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/build/cjs/components/Illustration/Illustrations.cjs +3 -1
- package/build/cjs/components/Illustration/illustrations/s-regular-investment.svg.cjs +757 -0
- package/build/cjs/components/UnitlinkGraph/UnitlinkGraph.cjs +25 -3
- package/build/cjs/index.cjs +1734 -982
- package/build/esm/components/Illustration/Illustrations.js +3 -1
- package/build/esm/components/Illustration/illustrations/s-regular-investment.svg.js +734 -0
- package/build/esm/components/UnitlinkGraph/UnitlinkGraph.js +25 -3
- package/build/esm/index.js +1734 -982
- package/build/types/components/Illustration/Illustrations.d.ts +1 -0
- package/package.json +1 -1
@@ -11,6 +11,7 @@ import SvgMNoFees from './illustrations/m-no-fees.svg.js';
|
|
11
11
|
import SvgMQuickMoney from './illustrations/m-quick-money.svg.js';
|
12
12
|
import SvgMCelebrationRaiffeisen from './illustrations/m-celebration-raiffeisen.svg.js';
|
13
13
|
import SvgSHousingLoan from './illustrations/s-housing-loan.svg.js';
|
14
|
+
import SvgSRegularInvestment from './illustrations/s-regular-investment.svg.js';
|
14
15
|
|
15
16
|
const illustrations = {
|
16
17
|
"m-investing-money": SvgMInvestingMoney,
|
@@ -22,7 +23,8 @@ const illustrations = {
|
|
22
23
|
"m-no-fees": SvgMNoFees,
|
23
24
|
"m-quick-money": SvgMQuickMoney,
|
24
25
|
"m-celebration-raiffeisen": SvgMCelebrationRaiffeisen,
|
25
|
-
"s-housing-loan": SvgSHousingLoan
|
26
|
+
"s-housing-loan": SvgSHousingLoan,
|
27
|
+
"s-regular-investment": SvgSRegularInvestment
|
26
28
|
};
|
27
29
|
|
28
30
|
export { illustrations };
|