rbro-tat-uds 2.2.26 → 2.2.28
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/ConfigurationProcessInfo/ConfigurationProcessInfo.cjs +73 -0
- package/build/cjs/components/ConfigurationProcessInfo/index.cjs +12 -0
- package/build/cjs/components/GraficContributieUnitlinked/GraficContributieUnitlinked.cjs +2 -2
- package/build/cjs/components/index.cjs +2 -0
- package/build/cjs/index.cjs +62 -2
- package/build/esm/components/ConfigurationProcessInfo/ConfigurationProcessInfo.js +69 -0
- package/build/esm/components/ConfigurationProcessInfo/index.js +8 -0
- package/build/esm/components/GraficContributieUnitlinked/GraficContributieUnitlinked.js +2 -2
- package/build/esm/components/index.js +1 -0
- package/build/esm/index.js +62 -3
- package/build/types/components/ConfigurationProcessInfo/ConfigurationProcessInfo.d.ts +11 -0
- package/build/types/components/ConfigurationProcessInfo/index.d.ts +6 -0
- package/build/types/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
"use client";
|
|
3
|
+
|
|
4
|
+
'use strict';
|
|
5
|
+
|
|
6
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
7
|
+
|
|
8
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
9
|
+
var utils = require('../../utils');
|
|
10
|
+
require('react');
|
|
11
|
+
var styled = require('styled-components');
|
|
12
|
+
var Button = require('../Button/Button.cjs');
|
|
13
|
+
|
|
14
|
+
const ConfigurationProcessInfoStyled = styled.div`
|
|
15
|
+
border-radius: 16px;
|
|
16
|
+
background-color: ${utils.colors.gray_60};
|
|
17
|
+
height: 48px;
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
gap: 16px;
|
|
21
|
+
padding: 0px 16px 0px 8px;
|
|
22
|
+
width: fit-content;
|
|
23
|
+
|
|
24
|
+
& > div {
|
|
25
|
+
display: flex;
|
|
26
|
+
flex-direction: column;
|
|
27
|
+
gap: 2px;
|
|
28
|
+
|
|
29
|
+
& > span:first-child {
|
|
30
|
+
font-size: 12px;
|
|
31
|
+
font-weight: 400;
|
|
32
|
+
line-height: 120%;
|
|
33
|
+
color: ${utils.colors.gray_700};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
& > span:last-child {
|
|
37
|
+
font-size: 14px;
|
|
38
|
+
font-weight: 400;
|
|
39
|
+
line-height: 120%;
|
|
40
|
+
color: ${utils.colors.gray_950};
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
`;
|
|
44
|
+
const ConfigurationProcessInfo = ({
|
|
45
|
+
date = "N/A",
|
|
46
|
+
branchName = "",
|
|
47
|
+
buttonOnClick,
|
|
48
|
+
...rest
|
|
49
|
+
}) => {
|
|
50
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(ConfigurationProcessInfoStyled, { ...rest, children: [
|
|
51
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
52
|
+
Button.default,
|
|
53
|
+
{
|
|
54
|
+
leftIcon: "trash",
|
|
55
|
+
intent: "danger",
|
|
56
|
+
variant: "secondaryOutlined",
|
|
57
|
+
size: "small",
|
|
58
|
+
onClick: buttonOnClick,
|
|
59
|
+
label: "Anuleaza procesul"
|
|
60
|
+
}
|
|
61
|
+
),
|
|
62
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
63
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Proces din data" }),
|
|
64
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: date.length ? date : "N/A" })
|
|
65
|
+
] }),
|
|
66
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
67
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Initializat din sucursala" }),
|
|
68
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: branchName ? branchName : "-" })
|
|
69
|
+
] })
|
|
70
|
+
] });
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
exports.default = ConfigurationProcessInfo;
|
|
@@ -135,7 +135,7 @@ const GraficContributieUnitlinked = ({
|
|
|
135
135
|
className: "limit_label_main",
|
|
136
136
|
textAnchor: "end",
|
|
137
137
|
x: configuration.limitBottomX - 12,
|
|
138
|
-
y: height -
|
|
138
|
+
y: height - 25,
|
|
139
139
|
children: limitBottomLabel
|
|
140
140
|
}
|
|
141
141
|
),
|
|
@@ -145,7 +145,7 @@ const GraficContributieUnitlinked = ({
|
|
|
145
145
|
className: "limit_label_secondary",
|
|
146
146
|
textAnchor: "end",
|
|
147
147
|
x: configuration.limitBottomX - 12,
|
|
148
|
-
y: height,
|
|
148
|
+
y: height - 5,
|
|
149
149
|
children: RO.format(limitBottom) + " " + currency
|
|
150
150
|
}
|
|
151
151
|
)
|
|
@@ -97,6 +97,7 @@ var Textarea = require('./Textarea/Textarea.cjs');
|
|
|
97
97
|
var FeedbackCard = require('./FeedbackCard/FeedbackCard.cjs');
|
|
98
98
|
var ConfigurationStickyBar = require('./ConfigurationStickyBar/ConfigurationStickyBar.cjs');
|
|
99
99
|
var PropunereUniqaProtect = require('./PropunereUniqaProtect/PropunereUniqaProtect.cjs');
|
|
100
|
+
var ConfigurationProcessInfo = require('./ConfigurationProcessInfo/ConfigurationProcessInfo.cjs');
|
|
100
101
|
|
|
101
102
|
|
|
102
103
|
|
|
@@ -194,3 +195,4 @@ exports.Textarea = Textarea.default;
|
|
|
194
195
|
exports.FeedbackCard = FeedbackCard.default;
|
|
195
196
|
exports.ConfigurationStickyBar = ConfigurationStickyBar.default;
|
|
196
197
|
exports.PropunereUniqaProtect = PropunereUniqaProtect.default;
|
|
198
|
+
exports.ConfigurationProcessInfo = ConfigurationProcessInfo.default;
|
package/build/cjs/index.cjs
CHANGED
|
@@ -67020,7 +67020,7 @@ const GraficContributieUnitlinked = ({
|
|
|
67020
67020
|
className: "limit_label_main",
|
|
67021
67021
|
textAnchor: "end",
|
|
67022
67022
|
x: configuration.limitBottomX - 12,
|
|
67023
|
-
y: height -
|
|
67023
|
+
y: height - 25,
|
|
67024
67024
|
children: limitBottomLabel
|
|
67025
67025
|
}
|
|
67026
67026
|
),
|
|
@@ -67030,7 +67030,7 @@ const GraficContributieUnitlinked = ({
|
|
|
67030
67030
|
className: "limit_label_secondary",
|
|
67031
67031
|
textAnchor: "end",
|
|
67032
67032
|
x: configuration.limitBottomX - 12,
|
|
67033
|
-
y: height,
|
|
67033
|
+
y: height - 5,
|
|
67034
67034
|
children: RO.format(limitBottom) + " " + currency
|
|
67035
67035
|
}
|
|
67036
67036
|
)
|
|
@@ -82960,6 +82960,65 @@ const PropunereUniqaProtect = ({
|
|
|
82960
82960
|
const ContentSlot = ({ children }) => children;
|
|
82961
82961
|
PropunereUniqaProtect.ContentSlot = ContentSlot;
|
|
82962
82962
|
|
|
82963
|
+
const ConfigurationProcessInfoStyled = styled__default.default.div`
|
|
82964
|
+
border-radius: 16px;
|
|
82965
|
+
background-color: ${utils.colors.gray_60};
|
|
82966
|
+
height: 48px;
|
|
82967
|
+
display: flex;
|
|
82968
|
+
align-items: center;
|
|
82969
|
+
gap: 16px;
|
|
82970
|
+
padding: 0px 16px 0px 8px;
|
|
82971
|
+
width: fit-content;
|
|
82972
|
+
|
|
82973
|
+
& > div {
|
|
82974
|
+
display: flex;
|
|
82975
|
+
flex-direction: column;
|
|
82976
|
+
gap: 2px;
|
|
82977
|
+
|
|
82978
|
+
& > span:first-child {
|
|
82979
|
+
font-size: 12px;
|
|
82980
|
+
font-weight: 400;
|
|
82981
|
+
line-height: 120%;
|
|
82982
|
+
color: ${utils.colors.gray_700};
|
|
82983
|
+
}
|
|
82984
|
+
|
|
82985
|
+
& > span:last-child {
|
|
82986
|
+
font-size: 14px;
|
|
82987
|
+
font-weight: 400;
|
|
82988
|
+
line-height: 120%;
|
|
82989
|
+
color: ${utils.colors.gray_950};
|
|
82990
|
+
}
|
|
82991
|
+
}
|
|
82992
|
+
`;
|
|
82993
|
+
const ConfigurationProcessInfo = ({
|
|
82994
|
+
date = "N/A",
|
|
82995
|
+
branchName = "",
|
|
82996
|
+
buttonOnClick,
|
|
82997
|
+
...rest
|
|
82998
|
+
}) => {
|
|
82999
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(ConfigurationProcessInfoStyled, { ...rest, children: [
|
|
83000
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
83001
|
+
Button,
|
|
83002
|
+
{
|
|
83003
|
+
leftIcon: "trash",
|
|
83004
|
+
intent: "danger",
|
|
83005
|
+
variant: "secondaryOutlined",
|
|
83006
|
+
size: "small",
|
|
83007
|
+
onClick: buttonOnClick,
|
|
83008
|
+
label: "Anuleaza procesul"
|
|
83009
|
+
}
|
|
83010
|
+
),
|
|
83011
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
83012
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Proces din data" }),
|
|
83013
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: date.length ? date : "N/A" })
|
|
83014
|
+
] }),
|
|
83015
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
83016
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Initializat din sucursala" }),
|
|
83017
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: branchName ? branchName : "-" })
|
|
83018
|
+
] })
|
|
83019
|
+
] });
|
|
83020
|
+
};
|
|
83021
|
+
|
|
82963
83022
|
exports.Accordion = Accordion;
|
|
82964
83023
|
exports.Alert = Alert;
|
|
82965
83024
|
exports.AppBranding = AppBranding;
|
|
@@ -82972,6 +83031,7 @@ exports.ButtonLink = ButtonLink;
|
|
|
82972
83031
|
exports.Card = Card;
|
|
82973
83032
|
exports.Checkbox = Checkbox;
|
|
82974
83033
|
exports.CityPicker = CityPicker;
|
|
83034
|
+
exports.ConfigurationProcessInfo = ConfigurationProcessInfo;
|
|
82975
83035
|
exports.ConfigurationSaveInfo = ConfigurationSaveInfo;
|
|
82976
83036
|
exports.ConfigurationStickyBar = ConfigurationStickyBar;
|
|
82977
83037
|
exports.Container = Container;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
"use client";
|
|
3
|
+
|
|
4
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
5
|
+
import { colors } from '../../utils';
|
|
6
|
+
import 'react';
|
|
7
|
+
import styled from 'styled-components';
|
|
8
|
+
import Button from '../Button/Button.js';
|
|
9
|
+
|
|
10
|
+
const ConfigurationProcessInfoStyled = styled.div`
|
|
11
|
+
border-radius: 16px;
|
|
12
|
+
background-color: ${colors.gray_60};
|
|
13
|
+
height: 48px;
|
|
14
|
+
display: flex;
|
|
15
|
+
align-items: center;
|
|
16
|
+
gap: 16px;
|
|
17
|
+
padding: 0px 16px 0px 8px;
|
|
18
|
+
width: fit-content;
|
|
19
|
+
|
|
20
|
+
& > div {
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: column;
|
|
23
|
+
gap: 2px;
|
|
24
|
+
|
|
25
|
+
& > span:first-child {
|
|
26
|
+
font-size: 12px;
|
|
27
|
+
font-weight: 400;
|
|
28
|
+
line-height: 120%;
|
|
29
|
+
color: ${colors.gray_700};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
& > span:last-child {
|
|
33
|
+
font-size: 14px;
|
|
34
|
+
font-weight: 400;
|
|
35
|
+
line-height: 120%;
|
|
36
|
+
color: ${colors.gray_950};
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
`;
|
|
40
|
+
const ConfigurationProcessInfo = ({
|
|
41
|
+
date = "N/A",
|
|
42
|
+
branchName = "",
|
|
43
|
+
buttonOnClick,
|
|
44
|
+
...rest
|
|
45
|
+
}) => {
|
|
46
|
+
return /* @__PURE__ */ jsxs(ConfigurationProcessInfoStyled, { ...rest, children: [
|
|
47
|
+
/* @__PURE__ */ jsx(
|
|
48
|
+
Button,
|
|
49
|
+
{
|
|
50
|
+
leftIcon: "trash",
|
|
51
|
+
intent: "danger",
|
|
52
|
+
variant: "secondaryOutlined",
|
|
53
|
+
size: "small",
|
|
54
|
+
onClick: buttonOnClick,
|
|
55
|
+
label: "Anuleaza procesul"
|
|
56
|
+
}
|
|
57
|
+
),
|
|
58
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
59
|
+
/* @__PURE__ */ jsx("span", { children: "Proces din data" }),
|
|
60
|
+
/* @__PURE__ */ jsx("span", { children: date.length ? date : "N/A" })
|
|
61
|
+
] }),
|
|
62
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
63
|
+
/* @__PURE__ */ jsx("span", { children: "Initializat din sucursala" }),
|
|
64
|
+
/* @__PURE__ */ jsx("span", { children: branchName ? branchName : "-" })
|
|
65
|
+
] })
|
|
66
|
+
] });
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
export { ConfigurationProcessInfo as default };
|
|
@@ -131,7 +131,7 @@ const GraficContributieUnitlinked = ({
|
|
|
131
131
|
className: "limit_label_main",
|
|
132
132
|
textAnchor: "end",
|
|
133
133
|
x: configuration.limitBottomX - 12,
|
|
134
|
-
y: height -
|
|
134
|
+
y: height - 25,
|
|
135
135
|
children: limitBottomLabel
|
|
136
136
|
}
|
|
137
137
|
),
|
|
@@ -141,7 +141,7 @@ const GraficContributieUnitlinked = ({
|
|
|
141
141
|
className: "limit_label_secondary",
|
|
142
142
|
textAnchor: "end",
|
|
143
143
|
x: configuration.limitBottomX - 12,
|
|
144
|
-
y: height,
|
|
144
|
+
y: height - 5,
|
|
145
145
|
children: RO.format(limitBottom) + " " + currency
|
|
146
146
|
}
|
|
147
147
|
)
|
|
@@ -95,3 +95,4 @@ export { default as Textarea } from './Textarea/Textarea.js';
|
|
|
95
95
|
export { default as FeedbackCard } from './FeedbackCard/FeedbackCard.js';
|
|
96
96
|
export { default as ConfigurationStickyBar } from './ConfigurationStickyBar/ConfigurationStickyBar.js';
|
|
97
97
|
export { default as PropunereUniqaProtect } from './PropunereUniqaProtect/PropunereUniqaProtect.js';
|
|
98
|
+
export { default as ConfigurationProcessInfo } from './ConfigurationProcessInfo/ConfigurationProcessInfo.js';
|
package/build/esm/index.js
CHANGED
|
@@ -66997,7 +66997,7 @@ const GraficContributieUnitlinked = ({
|
|
|
66997
66997
|
className: "limit_label_main",
|
|
66998
66998
|
textAnchor: "end",
|
|
66999
66999
|
x: configuration.limitBottomX - 12,
|
|
67000
|
-
y: height -
|
|
67000
|
+
y: height - 25,
|
|
67001
67001
|
children: limitBottomLabel
|
|
67002
67002
|
}
|
|
67003
67003
|
),
|
|
@@ -67007,7 +67007,7 @@ const GraficContributieUnitlinked = ({
|
|
|
67007
67007
|
className: "limit_label_secondary",
|
|
67008
67008
|
textAnchor: "end",
|
|
67009
67009
|
x: configuration.limitBottomX - 12,
|
|
67010
|
-
y: height,
|
|
67010
|
+
y: height - 5,
|
|
67011
67011
|
children: RO.format(limitBottom) + " " + currency
|
|
67012
67012
|
}
|
|
67013
67013
|
)
|
|
@@ -82937,4 +82937,63 @@ const PropunereUniqaProtect = ({
|
|
|
82937
82937
|
const ContentSlot = ({ children }) => children;
|
|
82938
82938
|
PropunereUniqaProtect.ContentSlot = ContentSlot;
|
|
82939
82939
|
|
|
82940
|
-
|
|
82940
|
+
const ConfigurationProcessInfoStyled = styled.div`
|
|
82941
|
+
border-radius: 16px;
|
|
82942
|
+
background-color: ${colors.gray_60};
|
|
82943
|
+
height: 48px;
|
|
82944
|
+
display: flex;
|
|
82945
|
+
align-items: center;
|
|
82946
|
+
gap: 16px;
|
|
82947
|
+
padding: 0px 16px 0px 8px;
|
|
82948
|
+
width: fit-content;
|
|
82949
|
+
|
|
82950
|
+
& > div {
|
|
82951
|
+
display: flex;
|
|
82952
|
+
flex-direction: column;
|
|
82953
|
+
gap: 2px;
|
|
82954
|
+
|
|
82955
|
+
& > span:first-child {
|
|
82956
|
+
font-size: 12px;
|
|
82957
|
+
font-weight: 400;
|
|
82958
|
+
line-height: 120%;
|
|
82959
|
+
color: ${colors.gray_700};
|
|
82960
|
+
}
|
|
82961
|
+
|
|
82962
|
+
& > span:last-child {
|
|
82963
|
+
font-size: 14px;
|
|
82964
|
+
font-weight: 400;
|
|
82965
|
+
line-height: 120%;
|
|
82966
|
+
color: ${colors.gray_950};
|
|
82967
|
+
}
|
|
82968
|
+
}
|
|
82969
|
+
`;
|
|
82970
|
+
const ConfigurationProcessInfo = ({
|
|
82971
|
+
date = "N/A",
|
|
82972
|
+
branchName = "",
|
|
82973
|
+
buttonOnClick,
|
|
82974
|
+
...rest
|
|
82975
|
+
}) => {
|
|
82976
|
+
return /* @__PURE__ */ jsxs(ConfigurationProcessInfoStyled, { ...rest, children: [
|
|
82977
|
+
/* @__PURE__ */ jsx(
|
|
82978
|
+
Button,
|
|
82979
|
+
{
|
|
82980
|
+
leftIcon: "trash",
|
|
82981
|
+
intent: "danger",
|
|
82982
|
+
variant: "secondaryOutlined",
|
|
82983
|
+
size: "small",
|
|
82984
|
+
onClick: buttonOnClick,
|
|
82985
|
+
label: "Anuleaza procesul"
|
|
82986
|
+
}
|
|
82987
|
+
),
|
|
82988
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
82989
|
+
/* @__PURE__ */ jsx("span", { children: "Proces din data" }),
|
|
82990
|
+
/* @__PURE__ */ jsx("span", { children: date.length ? date : "N/A" })
|
|
82991
|
+
] }),
|
|
82992
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
82993
|
+
/* @__PURE__ */ jsx("span", { children: "Initializat din sucursala" }),
|
|
82994
|
+
/* @__PURE__ */ jsx("span", { children: branchName ? branchName : "-" })
|
|
82995
|
+
] })
|
|
82996
|
+
] });
|
|
82997
|
+
};
|
|
82998
|
+
|
|
82999
|
+
export { Accordion, Alert, AppBranding, AutosaveStatus, Bar, BreadcrumbItem, Breadcrumbs, Button, ButtonLink, Card, Checkbox, CityPicker, ConfigurationProcessInfo, ConfigurationSaveInfo, ConfigurationStickyBar, Container, Content, ContentDropdown, CreditCard, DashboardCard, DashboardCategory, DashboardSmallShortcut, Datepicker, Divider, DonutGraph, Dropdown, FeedbackCard, Flex, FormField, GraficConfiguratiePensii, GraficContributieUnitlinked, GraficFondInvestitii, GraficFondInvestitiiInflatie, GraficPensii, GraficPlanInvestitii, GraficPropunerePensii, Icon$1 as Icon, IconButton, IconCard, Illustration, ImageCard, InPageTab, InvestmentFundItem, LabeledText, LabeledTextInLine, Layout, Logo, Modal, ObjectiveCard, ObjectiveCardSmall, OfferCard, OperationsDashboardCard, OperationsDashboardCategory, PageMessage, PageTitle, Pill, PlanFinanciarAUMBar, PlanFinanciarAUMGraph, PlanulFinanciarTeaser, ProductTeaser, ProductTeaserButton, ProductTeaserParameters, ProductTeaserStep, ProposalPensii, ProposalUnitlinked, PropunereAsigurareLocuinta, PropunereAsigurariCalatorie, PropunereFlexicredit, PropunereFondInvestitii, PropunuerePlanInvestitii as PropunerePlanInvestitii, PropunereUniqaProtect, Radio, RatesCalculator, Section, SegmentedTabs, SelectionAppCard, SelectionButton, SelectionPill, ShortcutCard, Sidebar, SidebarItem, Slider, Spinner, StepTab, StepsBar, Switch, Tab, TextInput, Textarea, TimedButton, TimelineSteps, TimelineStepsItem, Timer, UnitLinkGraph as UnitlinkGraph, VerticalHeat };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React, { HTMLAttributes } from 'react';
|
|
2
|
+
|
|
3
|
+
interface ConfigurationProcessInfoProps extends HTMLAttributes<HTMLDivElement> {
|
|
4
|
+
date?: string;
|
|
5
|
+
branchName?: string;
|
|
6
|
+
buttonOnClick?(): void;
|
|
7
|
+
}
|
|
8
|
+
declare const ConfigurationProcessInfo: React.FC<ConfigurationProcessInfoProps>;
|
|
9
|
+
|
|
10
|
+
export { ConfigurationProcessInfo as default };
|
|
11
|
+
export type { ConfigurationProcessInfoProps };
|
package/build/types/index.d.ts
CHANGED
|
@@ -93,3 +93,4 @@ export { default as Textarea, TextareaProps } from './components/Textarea/Textar
|
|
|
93
93
|
export { default as FeedbackCard, FeedbackCardProps } from './components/FeedbackCard/FeedbackCard.js';
|
|
94
94
|
export { default as ConfigurationStickyBar, ConfigurationStickyBarProps } from './components/ConfigurationStickyBar/ConfigurationStickyBar.js';
|
|
95
95
|
export { default as PropunereUniqaProtect, PropunereUniqaProtectProps } from './components/PropunereUniqaProtect/PropunereUniqaProtect.js';
|
|
96
|
+
export { default as ConfigurationProcessInfo, ConfigurationProcessInfoProps } from './components/ConfigurationProcessInfo/ConfigurationProcessInfo.js';
|