rbro-tat-uds 2.2.17 → 2.2.19
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/assets/icons/docs.svg.cjs +41 -0
- package/build/cjs/assets/icons/tractor.svg.cjs +37 -0
- package/build/cjs/components/Button/Button.cjs +2 -0
- package/build/cjs/components/Icon/IconsList.cjs +5 -1
- package/build/cjs/components/IconButton/IconButton.cjs +2 -0
- package/build/cjs/components/PageMessage/PageMessage.cjs +2 -0
- package/build/cjs/components/PropunereAsigurareLocuinta/PropunereAsigurareLocuinta.cjs +146 -195
- package/build/cjs/components/TextInput/TextInput.cjs +2 -0
- package/build/cjs/index.cjs +855 -872
- package/build/esm/assets/icons/docs.svg.js +20 -0
- package/build/esm/assets/icons/tractor.svg.js +16 -0
- package/build/esm/components/Button/Button.js +2 -0
- package/build/esm/components/Icon/IconsList.js +5 -1
- package/build/esm/components/IconButton/IconButton.js +2 -0
- package/build/esm/components/PageMessage/PageMessage.js +2 -0
- package/build/esm/components/PropunereAsigurareLocuinta/PropunereAsigurareLocuinta.js +145 -194
- package/build/esm/components/TextInput/TextInput.js +2 -0
- package/build/esm/index.js +855 -872
- package/build/types/components/Icon/Icon.types.d.ts +1 -1
- package/build/types/components/Icon/IconsList.d.ts +2 -0
- package/build/types/components/PropunereAsigurareLocuinta/PropunereAsigurareLocuinta.d.ts +3 -7
- package/package.json +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
|
|
5
|
+
function _interopNamespaceDefault(e) {
|
|
6
|
+
var n = Object.create(null);
|
|
7
|
+
if (e) {
|
|
8
|
+
Object.keys(e).forEach(function (k) {
|
|
9
|
+
if (k !== 'default') {
|
|
10
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
11
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return e[k]; }
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
n.default = e;
|
|
19
|
+
return Object.freeze(n);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
var React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
|
|
23
|
+
|
|
24
|
+
var _path, _path2, _path3;
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var SvgDocs = function SvgDocs(props) {
|
|
27
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
viewBox: "0 0 24 24"
|
|
30
|
+
}, props), _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
31
|
+
d: "M3 1a1 1 0 0 0-1 1v16h2V3h13V1z"
|
|
32
|
+
})), _path2 || (_path2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
33
|
+
d: "M10 9h8v2h-8z"
|
|
34
|
+
})), _path3 || (_path3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
35
|
+
fillRule: "evenodd",
|
|
36
|
+
d: "M7 5a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1zm1 16V7h12v14z",
|
|
37
|
+
clipRule: "evenodd"
|
|
38
|
+
})));
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
module.exports = SvgDocs;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
|
|
5
|
+
function _interopNamespaceDefault(e) {
|
|
6
|
+
var n = Object.create(null);
|
|
7
|
+
if (e) {
|
|
8
|
+
Object.keys(e).forEach(function (k) {
|
|
9
|
+
if (k !== 'default') {
|
|
10
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
11
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return e[k]; }
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
n.default = e;
|
|
19
|
+
return Object.freeze(n);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
var React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
|
|
23
|
+
|
|
24
|
+
var _path;
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var SvgTractor = function SvgTractor(props) {
|
|
27
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
viewBox: "0 0 24 24"
|
|
30
|
+
}, props), _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
31
|
+
fillRule: "evenodd",
|
|
32
|
+
d: "M12 4a1 1 0 0 0-.928.629L9.323 9H7V6h1V4H4v2h1v3H4a1 1 0 0 0-1 1v5.05A3.5 3.5 0 1 0 8.663 19H13a5 5 0 1 0 8-6V5a1 1 0 0 0-1-1zM5 14.035V11h5a1 1 0 0 0 .928-.629L12.678 6H19v5.416A5 5 0 0 0 12.1 17H8.965A3.5 3.5 0 0 0 5 14.035M14 16a3 3 0 1 1 6 0 3 3 0 0 1-6 0M4 17.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0m13-.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2",
|
|
33
|
+
clipRule: "evenodd"
|
|
34
|
+
})));
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
module.exports = SvgTractor;
|
|
@@ -155,6 +155,8 @@ require('../../assets/icons/house-wap.svg.cjs');
|
|
|
155
155
|
require('../../assets/icons/bulb.svg.cjs');
|
|
156
156
|
require('../../assets/icons/face-neutral.svg.cjs');
|
|
157
157
|
require('../../assets/icons/face-sad.svg.cjs');
|
|
158
|
+
require('../../assets/icons/docs.svg.cjs');
|
|
159
|
+
require('../../assets/icons/tractor.svg.cjs');
|
|
158
160
|
var Icon = require('../Icon/Icon.cjs');
|
|
159
161
|
var Spinner = require('../Spinner/Spinner.cjs');
|
|
160
162
|
var utils = require('../../utils');
|
|
@@ -152,6 +152,8 @@ var HouseWapIcon = require('../../assets/icons/house-wap.svg.cjs');
|
|
|
152
152
|
var BulbIcon = require('../../assets/icons/bulb.svg.cjs');
|
|
153
153
|
var FaceNeutralIcon = require('../../assets/icons/face-neutral.svg.cjs');
|
|
154
154
|
var FaceSadIcon = require('../../assets/icons/face-sad.svg.cjs');
|
|
155
|
+
var DocsIcon = require('../../assets/icons/docs.svg.cjs');
|
|
156
|
+
var TractorIcon = require('../../assets/icons/tractor.svg.cjs');
|
|
155
157
|
|
|
156
158
|
const IconsList = {
|
|
157
159
|
asterix: AsterixIcon,
|
|
@@ -300,7 +302,9 @@ const IconsList = {
|
|
|
300
302
|
"house-wap": HouseWapIcon,
|
|
301
303
|
bulb: BulbIcon,
|
|
302
304
|
"face-neutral": FaceNeutralIcon,
|
|
303
|
-
"face-sad": FaceSadIcon
|
|
305
|
+
"face-sad": FaceSadIcon,
|
|
306
|
+
docs: DocsIcon,
|
|
307
|
+
tractor: TractorIcon
|
|
304
308
|
};
|
|
305
309
|
|
|
306
310
|
exports.default = IconsList;
|
|
@@ -154,6 +154,8 @@ require('../../assets/icons/house-wap.svg.cjs');
|
|
|
154
154
|
require('../../assets/icons/bulb.svg.cjs');
|
|
155
155
|
require('../../assets/icons/face-neutral.svg.cjs');
|
|
156
156
|
require('../../assets/icons/face-sad.svg.cjs');
|
|
157
|
+
require('../../assets/icons/docs.svg.cjs');
|
|
158
|
+
require('../../assets/icons/tractor.svg.cjs');
|
|
157
159
|
var styled = require('styled-components');
|
|
158
160
|
var Icon = require('../Icon/Icon.cjs');
|
|
159
161
|
var Spinner = require('../Spinner/Spinner.cjs');
|
|
@@ -154,6 +154,8 @@ require('../../assets/icons/house-wap.svg.cjs');
|
|
|
154
154
|
require('../../assets/icons/bulb.svg.cjs');
|
|
155
155
|
require('../../assets/icons/face-neutral.svg.cjs');
|
|
156
156
|
require('../../assets/icons/face-sad.svg.cjs');
|
|
157
|
+
require('../../assets/icons/docs.svg.cjs');
|
|
158
|
+
require('../../assets/icons/tractor.svg.cjs');
|
|
157
159
|
var styled = require('styled-components');
|
|
158
160
|
var Icon = require('../Icon/Icon.cjs');
|
|
159
161
|
var utils = require('../../utils');
|
|
@@ -17,7 +17,7 @@ const PropunereAsigurareLocuintaStyled = styled.div`
|
|
|
17
17
|
border: 1px solid
|
|
18
18
|
${({ $featured, $selected }) => $selected ? utils.colors.purple_500 : $featured ? utils.colors.accent_600 : utils.colors.gray_200};
|
|
19
19
|
overflow: hidden;
|
|
20
|
-
min-height: ${({ $hideButton }) => $hideButton ? "
|
|
20
|
+
min-height: ${({ $hideButton }) => $hideButton ? "290px" : "330px"};
|
|
21
21
|
box-sizing: border-box;
|
|
22
22
|
height: 100%;
|
|
23
23
|
width: 100%;
|
|
@@ -43,171 +43,119 @@ const PropunereAsigurareLocuintaStyled = styled.div`
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
& > div:nth-child(2) {
|
|
46
|
+
box-sizing: border-box;
|
|
46
47
|
display: flex;
|
|
47
48
|
flex-direction: column;
|
|
49
|
+
gap: 2px;
|
|
50
|
+
padding: 8px 16px 12px 16px;
|
|
51
|
+
height: 82px;
|
|
52
|
+
background-color: ${props.$refused ? utils.colors.gray_30 : props.$selected ? utils.colors.purple_50 : props.$featured ? utils.colors.accent_100 : "transparent"};
|
|
48
53
|
|
|
49
|
-
& >
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
gap: 8px;
|
|
55
|
-
padding: 8px 16px 12px 16px;
|
|
56
|
-
height: 60px;
|
|
57
|
-
background-color: ${props.$refused ? utils.colors.gray_30 : props.$selected ? utils.colors.purple_50 : props.$featured ? utils.colors.accent_100 : "transparent"};
|
|
58
|
-
|
|
59
|
-
& > div {
|
|
60
|
-
display: flex;
|
|
61
|
-
flex-direction: column;
|
|
62
|
-
gap: 2px;
|
|
63
|
-
flex: 1;
|
|
64
|
-
|
|
65
|
-
& > span:first-of-type {
|
|
66
|
-
font-size: 14px;
|
|
67
|
-
font-weight: 400;
|
|
68
|
-
color: ${({ $refused }) => $refused ? utils.colors.gray_200 : utils.colors.gray_700};
|
|
69
|
-
}
|
|
54
|
+
& > span:first-of-type {
|
|
55
|
+
font-size: 14px;
|
|
56
|
+
font-weight: ${({ $includePad }) => $includePad ? 700 : 400};
|
|
57
|
+
color: ${({ $refused }) => $refused ? utils.colors.gray_200 : utils.colors.gray_700};
|
|
58
|
+
}
|
|
70
59
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
}
|
|
76
|
-
}
|
|
60
|
+
& > span:nth-of-type(2) {
|
|
61
|
+
font-size: 20px;
|
|
62
|
+
font-weight: 700;
|
|
63
|
+
color: ${({ $refused }) => $refused ? utils.colors.gray_300 : utils.colors.gray_950};
|
|
77
64
|
}
|
|
78
65
|
|
|
79
|
-
& > div
|
|
80
|
-
box-sizing: border-box;
|
|
66
|
+
& > div {
|
|
81
67
|
display: flex;
|
|
82
|
-
|
|
83
|
-
gap:
|
|
84
|
-
padding: 8px 16px 12px 16px;
|
|
85
|
-
min-height: 82px;
|
|
86
|
-
height: 100%;
|
|
87
|
-
background-color: ${props.$refused ? utils.colors.gray_30 : props.$selected ? utils.colors.purple_50 : props.$featured ? utils.colors.accent_100 : "transparent"};
|
|
88
|
-
|
|
89
|
-
& > span:first-of-type {
|
|
90
|
-
font-size: 14px;
|
|
91
|
-
font-weight: 400;
|
|
92
|
-
color: ${({ $refused }) => $refused ? utils.colors.gray_200 : utils.colors.gray_700};
|
|
93
|
-
}
|
|
68
|
+
align-items: center;
|
|
69
|
+
gap: 4px;
|
|
94
70
|
|
|
95
|
-
& > span
|
|
96
|
-
font-size:
|
|
97
|
-
font-weight: 700;
|
|
98
|
-
color: ${({ $refused }) => $refused ? utils.colors.
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
& > div {
|
|
102
|
-
display: flex;
|
|
103
|
-
align-items: center;
|
|
104
|
-
gap: 4px;
|
|
105
|
-
|
|
106
|
-
& > span {
|
|
107
|
-
font-size: 12px;
|
|
108
|
-
font-weight: 400;
|
|
109
|
-
color: ${({ $refused }) => $refused ? utils.colors.gray_300 : utils.colors.gray_700};
|
|
110
|
-
}
|
|
71
|
+
& > span {
|
|
72
|
+
font-size: 12px;
|
|
73
|
+
font-weight: ${({ $includePad }) => $includePad ? 700 : 400};
|
|
74
|
+
color: ${({ $refused }) => $refused ? utils.colors.gray_200 : utils.colors.gray_700};
|
|
111
75
|
}
|
|
112
76
|
}
|
|
113
77
|
}
|
|
114
78
|
|
|
115
79
|
& > div:last-child {
|
|
116
|
-
box-sizing: border-box;
|
|
117
|
-
border-top: 1px solid ${utils.colors.gray_200};
|
|
118
|
-
border-bottom: 1px solid ${utils.colors.gray_200};
|
|
119
80
|
display: flex;
|
|
120
|
-
|
|
121
|
-
|
|
81
|
+
flex-direction: column;
|
|
82
|
+
|
|
83
|
+
& > div:first-of-type {
|
|
84
|
+
border-top: 1px solid ${utils.colors.gray_200};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
& > div:last-of-type {
|
|
88
|
+
border-top: 1px solid ${utils.colors.gray_200};
|
|
89
|
+
border-bottom: 1px solid ${utils.colors.gray_200};
|
|
90
|
+
}
|
|
122
91
|
|
|
123
92
|
& > div {
|
|
124
|
-
|
|
93
|
+
box-sizing: border-box;
|
|
125
94
|
display: flex;
|
|
126
|
-
align-items:
|
|
127
|
-
|
|
95
|
+
align-items: stretch;
|
|
96
|
+
height: 59px;
|
|
128
97
|
|
|
129
98
|
& > div {
|
|
99
|
+
flex: 1;
|
|
130
100
|
display: flex;
|
|
131
101
|
align-items: flex-start;
|
|
132
|
-
|
|
102
|
+
padding: 12px 16px;
|
|
133
103
|
|
|
134
104
|
& > div {
|
|
135
105
|
display: flex;
|
|
136
|
-
|
|
137
|
-
gap:
|
|
138
|
-
|
|
139
|
-
& >
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
& > span:nth-of-type(4) {
|
|
158
|
-
font-size: 14px;
|
|
159
|
-
font-weight: 400;
|
|
160
|
-
line-height: 120%;
|
|
106
|
+
align-items: flex-start;
|
|
107
|
+
gap: 8px;
|
|
108
|
+
|
|
109
|
+
& > div {
|
|
110
|
+
display: flex;
|
|
111
|
+
flex-direction: column;
|
|
112
|
+
gap: 2px;
|
|
113
|
+
|
|
114
|
+
& > span:first-of-type {
|
|
115
|
+
font-size: 12px;
|
|
116
|
+
font-weight: 400;
|
|
117
|
+
line-height: 120%;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& > span:nth-of-type(2) {
|
|
121
|
+
font-size: 14px;
|
|
122
|
+
font-weight: 700;
|
|
123
|
+
line-height: 120%;
|
|
124
|
+
}
|
|
161
125
|
}
|
|
162
126
|
}
|
|
163
127
|
}
|
|
164
|
-
}
|
|
165
128
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
129
|
+
& > div:first-of-type {
|
|
130
|
+
border-right: 0.5px solid ${utils.colors.gray_200};
|
|
131
|
+
background-color: ${props.$refused ? utils.colors.gray_60 : props.$featured ? utils.colors.white : utils.colors.gray_30};
|
|
169
132
|
|
|
170
|
-
& > div {
|
|
171
133
|
& > div {
|
|
172
|
-
& >
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
& > span:nth-of-type(3) {
|
|
181
|
-
color: ${({ $refused }) => $refused ? utils.colors.gray_300 : utils.colors.info_800};
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
& > span:nth-of-type(4) {
|
|
185
|
-
color: ${({ $refused }) => $refused ? utils.colors.gray_300 : utils.colors.info_800};
|
|
134
|
+
& > div {
|
|
135
|
+
& > span:first-of-type {
|
|
136
|
+
color: ${({ $refused }) => $refused ? utils.colors.gray_300 : utils.colors.gray_700};
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
& > span:nth-of-type(2) {
|
|
140
|
+
color: ${({ $refused }) => $refused ? utils.colors.gray_300 : utils.colors.gray_950};
|
|
141
|
+
}
|
|
186
142
|
}
|
|
187
143
|
}
|
|
188
144
|
}
|
|
189
|
-
}
|
|
190
145
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
146
|
+
& > div:last-of-type {
|
|
147
|
+
border-left: 0.5px solid ${utils.colors.gray_200};
|
|
148
|
+
background-color: ${(props2) => props2.$refused ? utils.colors.gray_60 : utils.colors.gray_30};
|
|
194
149
|
|
|
195
|
-
& > div {
|
|
196
150
|
& > div {
|
|
197
|
-
& >
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
& > span:nth-of-type(3) {
|
|
206
|
-
color: ${({ $refused }) => $refused ? utils.colors.gray_300 : utils.colors.info_800};
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
& > span:nth-of-type(4) {
|
|
210
|
-
color: ${({ $refused }) => $refused ? utils.colors.gray_300 : utils.colors.info_800};
|
|
151
|
+
& > div {
|
|
152
|
+
& > span:first-of-type {
|
|
153
|
+
color: ${({ $refused }) => $refused ? utils.colors.gray_300 : utils.colors.gray_700};
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
& > span:nth-of-type(2) {
|
|
157
|
+
color: ${({ $refused }) => $refused ? utils.colors.gray_300 : utils.colors.gray_950};
|
|
158
|
+
}
|
|
211
159
|
}
|
|
212
160
|
}
|
|
213
161
|
}
|
|
@@ -268,14 +216,10 @@ const PropunereAsigurareLocuintaStyled = styled.div`
|
|
|
268
216
|
`;
|
|
269
217
|
const PropunereAsigurareLocuinta = ({
|
|
270
218
|
title = "Fix ce ai cerut!",
|
|
219
|
+
totalDePlataAnual = "",
|
|
271
220
|
valoareAsigurataImobil = "",
|
|
272
|
-
primaAsigurareImobilPeAn = "",
|
|
273
221
|
valoareAsigurataBunuri = "",
|
|
274
|
-
|
|
275
|
-
totalDePlataAnual = "",
|
|
276
|
-
primaAsigurareAnexeImobil = "",
|
|
277
|
-
valoareAsigurataAnexeImobil = "",
|
|
278
|
-
primaAsigurareEchipamente = "",
|
|
222
|
+
valoareAsigurataAnexe = "",
|
|
279
223
|
valoareAsigurataEchipamente = "",
|
|
280
224
|
includePad = false,
|
|
281
225
|
featured = false,
|
|
@@ -306,6 +250,7 @@ const PropunereAsigurareLocuinta = ({
|
|
|
306
250
|
$disabled: disabled,
|
|
307
251
|
$refused: refused,
|
|
308
252
|
$hideButton: hideButton,
|
|
253
|
+
$includePad: includePad,
|
|
309
254
|
...rest,
|
|
310
255
|
children: !empty ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
311
256
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
@@ -314,7 +259,7 @@ const PropunereAsigurareLocuinta = ({
|
|
|
314
259
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
315
260
|
IconButton.default,
|
|
316
261
|
{
|
|
317
|
-
onClick:
|
|
262
|
+
onClick: iconButtonOnClick,
|
|
318
263
|
icon: "new_tab",
|
|
319
264
|
intent: "accent",
|
|
320
265
|
variant: "tertiary",
|
|
@@ -325,75 +270,81 @@ const PropunereAsigurareLocuinta = ({
|
|
|
325
270
|
)
|
|
326
271
|
] }),
|
|
327
272
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
273
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Total de plata anual" }),
|
|
274
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: totalDePlataAnual || "-" }),
|
|
328
275
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
329
|
-
/* @__PURE__ */ jsxRuntime.
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
276
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
277
|
+
Icon.default,
|
|
278
|
+
{
|
|
279
|
+
icon: "info_filled",
|
|
280
|
+
color: refused ? utils.colors.gray_200 : utils.colors.gray_500,
|
|
281
|
+
size: 14
|
|
282
|
+
}
|
|
283
|
+
),
|
|
284
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Include PAD" })
|
|
285
|
+
] })
|
|
286
|
+
] }),
|
|
287
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
338
288
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
339
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
340
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
289
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
290
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
291
|
+
Icon.default,
|
|
292
|
+
{
|
|
293
|
+
icon: "house-wap",
|
|
294
|
+
size: 16,
|
|
295
|
+
color: refused ? utils.colors.gray_200 : utils.colors.gray_500
|
|
296
|
+
}
|
|
297
|
+
),
|
|
298
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
299
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Valoare asigurata imobil" }),
|
|
300
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: valoareAsigurataImobil || "-" })
|
|
301
|
+
] })
|
|
302
|
+
] }) }),
|
|
303
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
304
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
305
|
+
Icon.default,
|
|
306
|
+
{
|
|
307
|
+
icon: "bulb",
|
|
308
|
+
size: 16,
|
|
309
|
+
color: refused ? utils.colors.gray_200 : utils.colors.gray_500
|
|
310
|
+
}
|
|
311
|
+
),
|
|
312
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
313
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Valoare asigurare bunuri" }),
|
|
314
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: valoareAsigurataBunuri || "-" })
|
|
315
|
+
] })
|
|
316
|
+
] }) })
|
|
347
317
|
] }),
|
|
348
318
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
349
|
-
/* @__PURE__ */ jsxRuntime.jsx("
|
|
350
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { children: totalDePlataAnual || "-" }),
|
|
351
|
-
includePad && /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
319
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
352
320
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
353
321
|
Icon.default,
|
|
354
322
|
{
|
|
355
|
-
icon: "
|
|
356
|
-
size:
|
|
323
|
+
icon: "docs",
|
|
324
|
+
size: 16,
|
|
357
325
|
color: refused ? utils.colors.gray_200 : utils.colors.gray_500
|
|
358
326
|
}
|
|
359
327
|
),
|
|
360
|
-
/* @__PURE__ */ jsxRuntime.
|
|
361
|
-
|
|
328
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
329
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Valoare asigurata anexe" }),
|
|
330
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: valoareAsigurataAnexe || "-" })
|
|
331
|
+
] })
|
|
332
|
+
] }) }),
|
|
333
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
334
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
335
|
+
Icon.default,
|
|
336
|
+
{
|
|
337
|
+
icon: "tractor",
|
|
338
|
+
size: 16,
|
|
339
|
+
color: refused ? utils.colors.gray_200 : utils.colors.gray_500
|
|
340
|
+
}
|
|
341
|
+
),
|
|
342
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
343
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Valoare asigurata echipamente" }),
|
|
344
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: valoareAsigurataEchipamente || "-" })
|
|
345
|
+
] })
|
|
346
|
+
] }) })
|
|
362
347
|
] })
|
|
363
|
-
] }),
|
|
364
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
365
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
366
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
367
|
-
Icon.default,
|
|
368
|
-
{
|
|
369
|
-
icon: "house-wap",
|
|
370
|
-
size: 16,
|
|
371
|
-
color: refused ? utils.colors.gray_200 : utils.colors.gray_500
|
|
372
|
-
}
|
|
373
|
-
),
|
|
374
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
375
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Prima asigurare anexe imobil" }),
|
|
376
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { children: primaAsigurareAnexeImobil || "-" }),
|
|
377
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Valoare asigurata" }),
|
|
378
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { children: valoareAsigurataAnexeImobil || "-" })
|
|
379
|
-
] })
|
|
380
|
-
] }) }),
|
|
381
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
382
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
383
|
-
Icon.default,
|
|
384
|
-
{
|
|
385
|
-
icon: "bulb",
|
|
386
|
-
size: 16,
|
|
387
|
-
color: refused ? utils.colors.gray_200 : utils.colors.gray_500
|
|
388
|
-
}
|
|
389
|
-
),
|
|
390
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
391
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Prima asigurare echipamente" }),
|
|
392
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { children: primaAsigurareEchipamente || "-" }),
|
|
393
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Valoare asigurata" }),
|
|
394
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { children: valoareAsigurataEchipamente || "-" })
|
|
395
|
-
] })
|
|
396
|
-
] }) })
|
|
397
348
|
] })
|
|
398
349
|
] }),
|
|
399
350
|
/* @__PURE__ */ jsxRuntime.jsx("div", { children: _contentSlot }),
|
|
@@ -155,6 +155,8 @@ require('../../assets/icons/house-wap.svg.cjs');
|
|
|
155
155
|
require('../../assets/icons/bulb.svg.cjs');
|
|
156
156
|
require('../../assets/icons/face-neutral.svg.cjs');
|
|
157
157
|
require('../../assets/icons/face-sad.svg.cjs');
|
|
158
|
+
require('../../assets/icons/docs.svg.cjs');
|
|
159
|
+
require('../../assets/icons/tractor.svg.cjs');
|
|
158
160
|
var reactDom = require('react-dom');
|
|
159
161
|
var Icon = require('../Icon/Icon.cjs');
|
|
160
162
|
var Numpad = require('../Numpad/Numpad.cjs');
|