contentoh-components-library 21.0.16 → 21.0.18
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/CHANGELOG.md +24 -0
- package/dist/global-files/fonts.css +45 -0
- package/dist/global-files/global-styles.css +40 -0
- package/dist/index.js +189 -12
- package/package.json +3 -2
- package/src/index.js +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v21.0.17 (Tue May 03 2022)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# v21.0.17 (Tue May 03 2022)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v21.0.17 (Tue May 03 2022)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
# v21.0.17 (Tue May 03 2022)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v0.1.1 (Thu Feb 10 2022)
|
|
2
26
|
|
|
3
27
|
#### 🐛 Bug Fix
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Avenir Next";
|
|
3
|
+
src: url("../assets/fonts/avenirnext/AvenirNextLTPro-Regular.otf");
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@font-face {
|
|
7
|
+
font-family: "Lato";
|
|
8
|
+
src: url("../assets/fonts/lato/Lato-Regular.ttf");
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@font-face {
|
|
12
|
+
font-family: "Raleway";
|
|
13
|
+
src: url("../assets/fonts/raleway/Raleway-Regular.ttf");
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@font-face {
|
|
18
|
+
font-family: "Raleway-500";
|
|
19
|
+
src: url("../assets/fonts/raleway/Raleway-Medium.ttf");
|
|
20
|
+
font-weight: 500;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@font-face {
|
|
24
|
+
font-family: "Raleway-600";
|
|
25
|
+
src: url("../assets/fonts/raleway/Raleway-SemiBold.ttf");
|
|
26
|
+
font-weight: 600;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: "Raleway-700";
|
|
31
|
+
src: url("../assets/fonts/raleway/Raleway-Bold.ttf");
|
|
32
|
+
font-weight: 700;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@font-face {
|
|
36
|
+
font-family: "Raleway-800";
|
|
37
|
+
src: url("../assets/fonts/raleway/Raleway-ExtraBold.ttf");
|
|
38
|
+
font-weight: 800;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@font-face {
|
|
42
|
+
font-family: "Raleway-900";
|
|
43
|
+
src: url("../assets/fonts/raleway/Raleway-Black.ttf");
|
|
44
|
+
font-weight: 900;
|
|
45
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
@import "./fonts.css";
|
|
2
|
+
|
|
3
|
+
*,
|
|
4
|
+
*::after,
|
|
5
|
+
*::before {
|
|
6
|
+
padding: 0;
|
|
7
|
+
margin: 0;
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
body.sb-main-padded.sb-show-main {
|
|
12
|
+
padding: 0;
|
|
13
|
+
height: 100vh;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.sb-main-padded.sb-show-main #root {
|
|
17
|
+
height: 100%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/* width */
|
|
21
|
+
::-webkit-scrollbar {
|
|
22
|
+
width: 6px;
|
|
23
|
+
height: 6px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/* Track */
|
|
27
|
+
::-webkit-scrollbar-track {
|
|
28
|
+
background: white;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/* Handle */
|
|
32
|
+
::-webkit-scrollbar-thumb {
|
|
33
|
+
border-radius: 15px;
|
|
34
|
+
background: #f0eef2;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/* Handle on hover */
|
|
38
|
+
::-webkit-scrollbar-thumb:hover {
|
|
39
|
+
background: #d4d1d7;
|
|
40
|
+
}
|
package/dist/index.js
CHANGED
|
@@ -1,13 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
|
+
|
|
3
5
|
Object.defineProperty(exports, "__esModule", {
|
|
4
6
|
value: true
|
|
5
7
|
});
|
|
8
|
+
var _exportNames = {
|
|
9
|
+
fonts: true,
|
|
10
|
+
globalStyles: true,
|
|
11
|
+
variables: true
|
|
12
|
+
};
|
|
13
|
+
exports.variables = exports.globalStyles = exports.fonts = void 0;
|
|
14
|
+
|
|
15
|
+
var fonts = _interopRequireWildcard(require("./global-files/fonts"));
|
|
16
|
+
|
|
17
|
+
exports.fonts = fonts;
|
|
18
|
+
|
|
19
|
+
var globalStyles = _interopRequireWildcard(require("./global-files/global-styles"));
|
|
20
|
+
|
|
21
|
+
exports.globalStyles = globalStyles;
|
|
22
|
+
|
|
23
|
+
var variables = _interopRequireWildcard(require("./global-files/variables"));
|
|
24
|
+
|
|
25
|
+
exports.variables = variables;
|
|
6
26
|
|
|
7
27
|
var _index = require("./components/atoms/ActivedFilter/index");
|
|
8
28
|
|
|
9
29
|
Object.keys(_index).forEach(function (key) {
|
|
10
30
|
if (key === "default" || key === "__esModule") return;
|
|
31
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
11
32
|
if (key in exports && exports[key] === _index[key]) return;
|
|
12
33
|
Object.defineProperty(exports, key, {
|
|
13
34
|
enumerable: true,
|
|
@@ -21,6 +42,7 @@ var _index2 = require("./components/atoms/AsignationOption/index");
|
|
|
21
42
|
|
|
22
43
|
Object.keys(_index2).forEach(function (key) {
|
|
23
44
|
if (key === "default" || key === "__esModule") return;
|
|
45
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
24
46
|
if (key in exports && exports[key] === _index2[key]) return;
|
|
25
47
|
Object.defineProperty(exports, key, {
|
|
26
48
|
enumerable: true,
|
|
@@ -34,6 +56,7 @@ var _index3 = require("./components/atoms/AtomList/index");
|
|
|
34
56
|
|
|
35
57
|
Object.keys(_index3).forEach(function (key) {
|
|
36
58
|
if (key === "default" || key === "__esModule") return;
|
|
59
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
37
60
|
if (key in exports && exports[key] === _index3[key]) return;
|
|
38
61
|
Object.defineProperty(exports, key, {
|
|
39
62
|
enumerable: true,
|
|
@@ -47,6 +70,7 @@ var _index4 = require("./components/atoms/Avatar/index");
|
|
|
47
70
|
|
|
48
71
|
Object.keys(_index4).forEach(function (key) {
|
|
49
72
|
if (key === "default" || key === "__esModule") return;
|
|
73
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
50
74
|
if (key in exports && exports[key] === _index4[key]) return;
|
|
51
75
|
Object.defineProperty(exports, key, {
|
|
52
76
|
enumerable: true,
|
|
@@ -60,6 +84,7 @@ var _index5 = require("./components/atoms/CheckBox/index");
|
|
|
60
84
|
|
|
61
85
|
Object.keys(_index5).forEach(function (key) {
|
|
62
86
|
if (key === "default" || key === "__esModule") return;
|
|
87
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
63
88
|
if (key in exports && exports[key] === _index5[key]) return;
|
|
64
89
|
Object.defineProperty(exports, key, {
|
|
65
90
|
enumerable: true,
|
|
@@ -73,6 +98,7 @@ var _index6 = require("./components/atoms/CustomerTypeImage/index");
|
|
|
73
98
|
|
|
74
99
|
Object.keys(_index6).forEach(function (key) {
|
|
75
100
|
if (key === "default" || key === "__esModule") return;
|
|
101
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
76
102
|
if (key in exports && exports[key] === _index6[key]) return;
|
|
77
103
|
Object.defineProperty(exports, key, {
|
|
78
104
|
enumerable: true,
|
|
@@ -86,6 +112,7 @@ var _index7 = require("./components/atoms/DropDownButton/index");
|
|
|
86
112
|
|
|
87
113
|
Object.keys(_index7).forEach(function (key) {
|
|
88
114
|
if (key === "default" || key === "__esModule") return;
|
|
115
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
89
116
|
if (key in exports && exports[key] === _index7[key]) return;
|
|
90
117
|
Object.defineProperty(exports, key, {
|
|
91
118
|
enumerable: true,
|
|
@@ -99,6 +126,7 @@ var _index8 = require("./components/atoms/FeatureTag/index");
|
|
|
99
126
|
|
|
100
127
|
Object.keys(_index8).forEach(function (key) {
|
|
101
128
|
if (key === "default" || key === "__esModule") return;
|
|
129
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
102
130
|
if (key in exports && exports[key] === _index8[key]) return;
|
|
103
131
|
Object.defineProperty(exports, key, {
|
|
104
132
|
enumerable: true,
|
|
@@ -112,6 +140,7 @@ var _index9 = require("./components/atoms/GeneralButton/index");
|
|
|
112
140
|
|
|
113
141
|
Object.keys(_index9).forEach(function (key) {
|
|
114
142
|
if (key === "default" || key === "__esModule") return;
|
|
143
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
115
144
|
if (key in exports && exports[key] === _index9[key]) return;
|
|
116
145
|
Object.defineProperty(exports, key, {
|
|
117
146
|
enumerable: true,
|
|
@@ -125,6 +154,7 @@ var _index10 = require("./components/atoms/GeneralInput/index");
|
|
|
125
154
|
|
|
126
155
|
Object.keys(_index10).forEach(function (key) {
|
|
127
156
|
if (key === "default" || key === "__esModule") return;
|
|
157
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
128
158
|
if (key in exports && exports[key] === _index10[key]) return;
|
|
129
159
|
Object.defineProperty(exports, key, {
|
|
130
160
|
enumerable: true,
|
|
@@ -138,6 +168,7 @@ var _index11 = require("./components/atoms/GeneralTextBox/index");
|
|
|
138
168
|
|
|
139
169
|
Object.keys(_index11).forEach(function (key) {
|
|
140
170
|
if (key === "default" || key === "__esModule") return;
|
|
171
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
141
172
|
if (key in exports && exports[key] === _index11[key]) return;
|
|
142
173
|
Object.defineProperty(exports, key, {
|
|
143
174
|
enumerable: true,
|
|
@@ -151,6 +182,7 @@ var _index12 = require("./components/atoms/GradientPanel/index");
|
|
|
151
182
|
|
|
152
183
|
Object.keys(_index12).forEach(function (key) {
|
|
153
184
|
if (key === "default" || key === "__esModule") return;
|
|
185
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
154
186
|
if (key in exports && exports[key] === _index12[key]) return;
|
|
155
187
|
Object.defineProperty(exports, key, {
|
|
156
188
|
enumerable: true,
|
|
@@ -164,6 +196,7 @@ var _index13 = require("./components/atoms/PriorityFlag/index");
|
|
|
164
196
|
|
|
165
197
|
Object.keys(_index13).forEach(function (key) {
|
|
166
198
|
if (key === "default" || key === "__esModule") return;
|
|
199
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
167
200
|
if (key in exports && exports[key] === _index13[key]) return;
|
|
168
201
|
Object.defineProperty(exports, key, {
|
|
169
202
|
enumerable: true,
|
|
@@ -177,6 +210,7 @@ var _index14 = require("./components/atoms/ProductImage/index");
|
|
|
177
210
|
|
|
178
211
|
Object.keys(_index14).forEach(function (key) {
|
|
179
212
|
if (key === "default" || key === "__esModule") return;
|
|
213
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
180
214
|
if (key in exports && exports[key] === _index14[key]) return;
|
|
181
215
|
Object.defineProperty(exports, key, {
|
|
182
216
|
enumerable: true,
|
|
@@ -190,6 +224,7 @@ var _index15 = require("./components/atoms/ProgressBar/index");
|
|
|
190
224
|
|
|
191
225
|
Object.keys(_index15).forEach(function (key) {
|
|
192
226
|
if (key === "default" || key === "__esModule") return;
|
|
227
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
193
228
|
if (key in exports && exports[key] === _index15[key]) return;
|
|
194
229
|
Object.defineProperty(exports, key, {
|
|
195
230
|
enumerable: true,
|
|
@@ -203,6 +238,7 @@ var _index16 = require("./components/atoms/ScreenHeader/index");
|
|
|
203
238
|
|
|
204
239
|
Object.keys(_index16).forEach(function (key) {
|
|
205
240
|
if (key === "default" || key === "__esModule") return;
|
|
241
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
206
242
|
if (key in exports && exports[key] === _index16[key]) return;
|
|
207
243
|
Object.defineProperty(exports, key, {
|
|
208
244
|
enumerable: true,
|
|
@@ -216,6 +252,7 @@ var _index17 = require("./components/atoms/SideMenuButton/index");
|
|
|
216
252
|
|
|
217
253
|
Object.keys(_index17).forEach(function (key) {
|
|
218
254
|
if (key === "default" || key === "__esModule") return;
|
|
255
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
219
256
|
if (key in exports && exports[key] === _index17[key]) return;
|
|
220
257
|
Object.defineProperty(exports, key, {
|
|
221
258
|
enumerable: true,
|
|
@@ -229,6 +266,7 @@ var _index18 = require("./components/atoms/StatusTag/index");
|
|
|
229
266
|
|
|
230
267
|
Object.keys(_index18).forEach(function (key) {
|
|
231
268
|
if (key === "default" || key === "__esModule") return;
|
|
269
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
232
270
|
if (key in exports && exports[key] === _index18[key]) return;
|
|
233
271
|
Object.defineProperty(exports, key, {
|
|
234
272
|
enumerable: true,
|
|
@@ -242,6 +280,7 @@ var _index19 = require("./components/atoms/TabSection/index");
|
|
|
242
280
|
|
|
243
281
|
Object.keys(_index19).forEach(function (key) {
|
|
244
282
|
if (key === "default" || key === "__esModule") return;
|
|
283
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
245
284
|
if (key in exports && exports[key] === _index19[key]) return;
|
|
246
285
|
Object.defineProperty(exports, key, {
|
|
247
286
|
enumerable: true,
|
|
@@ -255,6 +294,7 @@ var _index20 = require("./components/atoms/ValidationPanel/index");
|
|
|
255
294
|
|
|
256
295
|
Object.keys(_index20).forEach(function (key) {
|
|
257
296
|
if (key === "default" || key === "__esModule") return;
|
|
297
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
258
298
|
if (key in exports && exports[key] === _index20[key]) return;
|
|
259
299
|
Object.defineProperty(exports, key, {
|
|
260
300
|
enumerable: true,
|
|
@@ -268,6 +308,7 @@ var _index21 = require("./components/molecules/AvatarAndValidation/index");
|
|
|
268
308
|
|
|
269
309
|
Object.keys(_index21).forEach(function (key) {
|
|
270
310
|
if (key === "default" || key === "__esModule") return;
|
|
311
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
271
312
|
if (key in exports && exports[key] === _index21[key]) return;
|
|
272
313
|
Object.defineProperty(exports, key, {
|
|
273
314
|
enumerable: true,
|
|
@@ -277,10 +318,25 @@ Object.keys(_index21).forEach(function (key) {
|
|
|
277
318
|
});
|
|
278
319
|
});
|
|
279
320
|
|
|
321
|
+
var _CarouselImagesLogin = require("./components/molecules/CarouselImagesLogin");
|
|
322
|
+
|
|
323
|
+
Object.keys(_CarouselImagesLogin).forEach(function (key) {
|
|
324
|
+
if (key === "default" || key === "__esModule") return;
|
|
325
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
326
|
+
if (key in exports && exports[key] === _CarouselImagesLogin[key]) return;
|
|
327
|
+
Object.defineProperty(exports, key, {
|
|
328
|
+
enumerable: true,
|
|
329
|
+
get: function get() {
|
|
330
|
+
return _CarouselImagesLogin[key];
|
|
331
|
+
}
|
|
332
|
+
});
|
|
333
|
+
});
|
|
334
|
+
|
|
280
335
|
var _index22 = require("./components/molecules/EditionActiveImage/index");
|
|
281
336
|
|
|
282
337
|
Object.keys(_index22).forEach(function (key) {
|
|
283
338
|
if (key === "default" || key === "__esModule") return;
|
|
339
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
284
340
|
if (key in exports && exports[key] === _index22[key]) return;
|
|
285
341
|
Object.defineProperty(exports, key, {
|
|
286
342
|
enumerable: true,
|
|
@@ -294,6 +350,7 @@ var _index23 = require("./components/molecules/FeaturesBar/index");
|
|
|
294
350
|
|
|
295
351
|
Object.keys(_index23).forEach(function (key) {
|
|
296
352
|
if (key === "default" || key === "__esModule") return;
|
|
353
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
297
354
|
if (key in exports && exports[key] === _index23[key]) return;
|
|
298
355
|
Object.defineProperty(exports, key, {
|
|
299
356
|
enumerable: true,
|
|
@@ -307,6 +364,7 @@ var _index24 = require("./components/molecules/GalleryElement/index");
|
|
|
307
364
|
|
|
308
365
|
Object.keys(_index24).forEach(function (key) {
|
|
309
366
|
if (key === "default" || key === "__esModule") return;
|
|
367
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
310
368
|
if (key in exports && exports[key] === _index24[key]) return;
|
|
311
369
|
Object.defineProperty(exports, key, {
|
|
312
370
|
enumerable: true,
|
|
@@ -320,6 +378,7 @@ var _index25 = require("./components/molecules/HeaderTop/index");
|
|
|
320
378
|
|
|
321
379
|
Object.keys(_index25).forEach(function (key) {
|
|
322
380
|
if (key === "default" || key === "__esModule") return;
|
|
381
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
323
382
|
if (key in exports && exports[key] === _index25[key]) return;
|
|
324
383
|
Object.defineProperty(exports, key, {
|
|
325
384
|
enumerable: true,
|
|
@@ -333,6 +392,7 @@ var _index26 = require("./components/molecules/ImageSelector/index");
|
|
|
333
392
|
|
|
334
393
|
Object.keys(_index26).forEach(function (key) {
|
|
335
394
|
if (key === "default" || key === "__esModule") return;
|
|
395
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
336
396
|
if (key in exports && exports[key] === _index26[key]) return;
|
|
337
397
|
Object.defineProperty(exports, key, {
|
|
338
398
|
enumerable: true,
|
|
@@ -342,10 +402,25 @@ Object.keys(_index26).forEach(function (key) {
|
|
|
342
402
|
});
|
|
343
403
|
});
|
|
344
404
|
|
|
405
|
+
var _LoginPasswordStrength = require("./components/molecules/LoginPasswordStrength");
|
|
406
|
+
|
|
407
|
+
Object.keys(_LoginPasswordStrength).forEach(function (key) {
|
|
408
|
+
if (key === "default" || key === "__esModule") return;
|
|
409
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
410
|
+
if (key in exports && exports[key] === _LoginPasswordStrength[key]) return;
|
|
411
|
+
Object.defineProperty(exports, key, {
|
|
412
|
+
enumerable: true,
|
|
413
|
+
get: function get() {
|
|
414
|
+
return _LoginPasswordStrength[key];
|
|
415
|
+
}
|
|
416
|
+
});
|
|
417
|
+
});
|
|
418
|
+
|
|
345
419
|
var _index27 = require("./components/molecules/PlanSelection/index");
|
|
346
420
|
|
|
347
421
|
Object.keys(_index27).forEach(function (key) {
|
|
348
422
|
if (key === "default" || key === "__esModule") return;
|
|
423
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
349
424
|
if (key in exports && exports[key] === _index27[key]) return;
|
|
350
425
|
Object.defineProperty(exports, key, {
|
|
351
426
|
enumerable: true,
|
|
@@ -359,6 +434,7 @@ var _index28 = require("./components/molecules/ProductNameHeader/index");
|
|
|
359
434
|
|
|
360
435
|
Object.keys(_index28).forEach(function (key) {
|
|
361
436
|
if (key === "default" || key === "__esModule") return;
|
|
437
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
362
438
|
if (key in exports && exports[key] === _index28[key]) return;
|
|
363
439
|
Object.defineProperty(exports, key, {
|
|
364
440
|
enumerable: true,
|
|
@@ -372,6 +448,7 @@ var _index29 = require("./components/molecules/StatusAsignationInfo/index");
|
|
|
372
448
|
|
|
373
449
|
Object.keys(_index29).forEach(function (key) {
|
|
374
450
|
if (key === "default" || key === "__esModule") return;
|
|
451
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
375
452
|
if (key in exports && exports[key] === _index29[key]) return;
|
|
376
453
|
Object.defineProperty(exports, key, {
|
|
377
454
|
enumerable: true,
|
|
@@ -385,6 +462,7 @@ var _index30 = require("./components/molecules/TableHeader/index");
|
|
|
385
462
|
|
|
386
463
|
Object.keys(_index30).forEach(function (key) {
|
|
387
464
|
if (key === "default" || key === "__esModule") return;
|
|
465
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
388
466
|
if (key in exports && exports[key] === _index30[key]) return;
|
|
389
467
|
Object.defineProperty(exports, key, {
|
|
390
468
|
enumerable: true,
|
|
@@ -398,6 +476,7 @@ var _index31 = require("./components/molecules/TableRow/index");
|
|
|
398
476
|
|
|
399
477
|
Object.keys(_index31).forEach(function (key) {
|
|
400
478
|
if (key === "default" || key === "__esModule") return;
|
|
479
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
401
480
|
if (key in exports && exports[key] === _index31[key]) return;
|
|
402
481
|
Object.defineProperty(exports, key, {
|
|
403
482
|
enumerable: true,
|
|
@@ -411,6 +490,7 @@ var _index32 = require("./components/molecules/TabsMenu/index");
|
|
|
411
490
|
|
|
412
491
|
Object.keys(_index32).forEach(function (key) {
|
|
413
492
|
if (key === "default" || key === "__esModule") return;
|
|
493
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
414
494
|
if (key in exports && exports[key] === _index32[key]) return;
|
|
415
495
|
Object.defineProperty(exports, key, {
|
|
416
496
|
enumerable: true,
|
|
@@ -424,6 +504,7 @@ var _index33 = require("./components/molecules/TagAndInput/index");
|
|
|
424
504
|
|
|
425
505
|
Object.keys(_index33).forEach(function (key) {
|
|
426
506
|
if (key === "default" || key === "__esModule") return;
|
|
507
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
427
508
|
if (key in exports && exports[key] === _index33[key]) return;
|
|
428
509
|
Object.defineProperty(exports, key, {
|
|
429
510
|
enumerable: true,
|
|
@@ -433,10 +514,11 @@ Object.keys(_index33).forEach(function (key) {
|
|
|
433
514
|
});
|
|
434
515
|
});
|
|
435
516
|
|
|
436
|
-
var _index34 = require("./components/
|
|
517
|
+
var _index34 = require("./components/organisms/Fullplan/index");
|
|
437
518
|
|
|
438
519
|
Object.keys(_index34).forEach(function (key) {
|
|
439
520
|
if (key === "default" || key === "__esModule") return;
|
|
521
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
440
522
|
if (key in exports && exports[key] === _index34[key]) return;
|
|
441
523
|
Object.defineProperty(exports, key, {
|
|
442
524
|
enumerable: true,
|
|
@@ -446,10 +528,11 @@ Object.keys(_index34).forEach(function (key) {
|
|
|
446
528
|
});
|
|
447
529
|
});
|
|
448
530
|
|
|
449
|
-
var _index35 = require("./components/organisms/
|
|
531
|
+
var _index35 = require("./components/organisms/FullProductNameHeader/index");
|
|
450
532
|
|
|
451
533
|
Object.keys(_index35).forEach(function (key) {
|
|
452
534
|
if (key === "default" || key === "__esModule") return;
|
|
535
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
453
536
|
if (key in exports && exports[key] === _index35[key]) return;
|
|
454
537
|
Object.defineProperty(exports, key, {
|
|
455
538
|
enumerable: true,
|
|
@@ -459,10 +542,11 @@ Object.keys(_index35).forEach(function (key) {
|
|
|
459
542
|
});
|
|
460
543
|
});
|
|
461
544
|
|
|
462
|
-
var _index36 = require("./components/organisms/
|
|
545
|
+
var _index36 = require("./components/organisms/FullTabsMenu/index");
|
|
463
546
|
|
|
464
547
|
Object.keys(_index36).forEach(function (key) {
|
|
465
548
|
if (key === "default" || key === "__esModule") return;
|
|
549
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
466
550
|
if (key in exports && exports[key] === _index36[key]) return;
|
|
467
551
|
Object.defineProperty(exports, key, {
|
|
468
552
|
enumerable: true,
|
|
@@ -472,10 +556,11 @@ Object.keys(_index36).forEach(function (key) {
|
|
|
472
556
|
});
|
|
473
557
|
});
|
|
474
558
|
|
|
475
|
-
var _index37 = require("./components/organisms/
|
|
559
|
+
var _index37 = require("./components/organisms/ImageDataTable/index");
|
|
476
560
|
|
|
477
561
|
Object.keys(_index37).forEach(function (key) {
|
|
478
562
|
if (key === "default" || key === "__esModule") return;
|
|
563
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
479
564
|
if (key in exports && exports[key] === _index37[key]) return;
|
|
480
565
|
Object.defineProperty(exports, key, {
|
|
481
566
|
enumerable: true,
|
|
@@ -485,10 +570,11 @@ Object.keys(_index37).forEach(function (key) {
|
|
|
485
570
|
});
|
|
486
571
|
});
|
|
487
572
|
|
|
488
|
-
var _index38 = require("./components/organisms/
|
|
573
|
+
var _index38 = require("./components/organisms/ImagePreviewer/index");
|
|
489
574
|
|
|
490
575
|
Object.keys(_index38).forEach(function (key) {
|
|
491
576
|
if (key === "default" || key === "__esModule") return;
|
|
577
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
492
578
|
if (key in exports && exports[key] === _index38[key]) return;
|
|
493
579
|
Object.defineProperty(exports, key, {
|
|
494
580
|
enumerable: true,
|
|
@@ -498,10 +584,11 @@ Object.keys(_index38).forEach(function (key) {
|
|
|
498
584
|
});
|
|
499
585
|
});
|
|
500
586
|
|
|
501
|
-
var _index39 = require("./components/organisms/
|
|
587
|
+
var _index39 = require("./components/organisms/ImagesGroup/index");
|
|
502
588
|
|
|
503
589
|
Object.keys(_index39).forEach(function (key) {
|
|
504
590
|
if (key === "default" || key === "__esModule") return;
|
|
591
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
505
592
|
if (key in exports && exports[key] === _index39[key]) return;
|
|
506
593
|
Object.defineProperty(exports, key, {
|
|
507
594
|
enumerable: true,
|
|
@@ -511,10 +598,11 @@ Object.keys(_index39).forEach(function (key) {
|
|
|
511
598
|
});
|
|
512
599
|
});
|
|
513
600
|
|
|
514
|
-
var _index40 = require("./components/organisms/
|
|
601
|
+
var _index40 = require("./components/organisms/InputGroup/index");
|
|
515
602
|
|
|
516
603
|
Object.keys(_index40).forEach(function (key) {
|
|
517
604
|
if (key === "default" || key === "__esModule") return;
|
|
605
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
518
606
|
if (key in exports && exports[key] === _index40[key]) return;
|
|
519
607
|
Object.defineProperty(exports, key, {
|
|
520
608
|
enumerable: true,
|
|
@@ -524,10 +612,11 @@ Object.keys(_index40).forEach(function (key) {
|
|
|
524
612
|
});
|
|
525
613
|
});
|
|
526
614
|
|
|
527
|
-
var _index41 = require("./components/organisms/
|
|
615
|
+
var _index41 = require("./components/organisms/ProductImageModal/index");
|
|
528
616
|
|
|
529
617
|
Object.keys(_index41).forEach(function (key) {
|
|
530
618
|
if (key === "default" || key === "__esModule") return;
|
|
619
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
531
620
|
if (key in exports && exports[key] === _index41[key]) return;
|
|
532
621
|
Object.defineProperty(exports, key, {
|
|
533
622
|
enumerable: true,
|
|
@@ -537,15 +626,30 @@ Object.keys(_index41).forEach(function (key) {
|
|
|
537
626
|
});
|
|
538
627
|
});
|
|
539
628
|
|
|
540
|
-
var
|
|
629
|
+
var _ChangePasswordLogin = require("./components/pages/ChangePasswordLogin");
|
|
630
|
+
|
|
631
|
+
Object.keys(_ChangePasswordLogin).forEach(function (key) {
|
|
632
|
+
if (key === "default" || key === "__esModule") return;
|
|
633
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
634
|
+
if (key in exports && exports[key] === _ChangePasswordLogin[key]) return;
|
|
635
|
+
Object.defineProperty(exports, key, {
|
|
636
|
+
enumerable: true,
|
|
637
|
+
get: function get() {
|
|
638
|
+
return _ChangePasswordLogin[key];
|
|
639
|
+
}
|
|
640
|
+
});
|
|
641
|
+
});
|
|
642
|
+
|
|
643
|
+
var _CustomerLogin = require("./components/pages/CustomerLogin");
|
|
541
644
|
|
|
542
|
-
Object.keys(
|
|
645
|
+
Object.keys(_CustomerLogin).forEach(function (key) {
|
|
543
646
|
if (key === "default" || key === "__esModule") return;
|
|
544
|
-
if (
|
|
647
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
648
|
+
if (key in exports && exports[key] === _CustomerLogin[key]) return;
|
|
545
649
|
Object.defineProperty(exports, key, {
|
|
546
650
|
enumerable: true,
|
|
547
651
|
get: function get() {
|
|
548
|
-
return
|
|
652
|
+
return _CustomerLogin[key];
|
|
549
653
|
}
|
|
550
654
|
});
|
|
551
655
|
});
|
|
@@ -554,6 +658,7 @@ var _CustomerType = require("./components/pages/CustomerType");
|
|
|
554
658
|
|
|
555
659
|
Object.keys(_CustomerType).forEach(function (key) {
|
|
556
660
|
if (key === "default" || key === "__esModule") return;
|
|
661
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
557
662
|
if (key in exports && exports[key] === _CustomerType[key]) return;
|
|
558
663
|
Object.defineProperty(exports, key, {
|
|
559
664
|
enumerable: true,
|
|
@@ -563,10 +668,25 @@ Object.keys(_CustomerType).forEach(function (key) {
|
|
|
563
668
|
});
|
|
564
669
|
});
|
|
565
670
|
|
|
671
|
+
var _EmailResetPassword = require("./components/pages/EmailResetPassword");
|
|
672
|
+
|
|
673
|
+
Object.keys(_EmailResetPassword).forEach(function (key) {
|
|
674
|
+
if (key === "default" || key === "__esModule") return;
|
|
675
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
676
|
+
if (key in exports && exports[key] === _EmailResetPassword[key]) return;
|
|
677
|
+
Object.defineProperty(exports, key, {
|
|
678
|
+
enumerable: true,
|
|
679
|
+
get: function get() {
|
|
680
|
+
return _EmailResetPassword[key];
|
|
681
|
+
}
|
|
682
|
+
});
|
|
683
|
+
});
|
|
684
|
+
|
|
566
685
|
var _OnboardPlan = require("./components/pages/OnboardPlan");
|
|
567
686
|
|
|
568
687
|
Object.keys(_OnboardPlan).forEach(function (key) {
|
|
569
688
|
if (key === "default" || key === "__esModule") return;
|
|
689
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
570
690
|
if (key in exports && exports[key] === _OnboardPlan[key]) return;
|
|
571
691
|
Object.defineProperty(exports, key, {
|
|
572
692
|
enumerable: true,
|
|
@@ -576,10 +696,53 @@ Object.keys(_OnboardPlan).forEach(function (key) {
|
|
|
576
696
|
});
|
|
577
697
|
});
|
|
578
698
|
|
|
699
|
+
var _RegistrationLoginFirstStep = require("./components/pages/RegistrationLoginFirstStep");
|
|
700
|
+
|
|
701
|
+
Object.keys(_RegistrationLoginFirstStep).forEach(function (key) {
|
|
702
|
+
if (key === "default" || key === "__esModule") return;
|
|
703
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
704
|
+
if (key in exports && exports[key] === _RegistrationLoginFirstStep[key]) return;
|
|
705
|
+
Object.defineProperty(exports, key, {
|
|
706
|
+
enumerable: true,
|
|
707
|
+
get: function get() {
|
|
708
|
+
return _RegistrationLoginFirstStep[key];
|
|
709
|
+
}
|
|
710
|
+
});
|
|
711
|
+
});
|
|
712
|
+
|
|
713
|
+
var _RegistrationLoginSecondStep = require("./components/pages/RegistrationLoginSecondStep");
|
|
714
|
+
|
|
715
|
+
Object.keys(_RegistrationLoginSecondStep).forEach(function (key) {
|
|
716
|
+
if (key === "default" || key === "__esModule") return;
|
|
717
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
718
|
+
if (key in exports && exports[key] === _RegistrationLoginSecondStep[key]) return;
|
|
719
|
+
Object.defineProperty(exports, key, {
|
|
720
|
+
enumerable: true,
|
|
721
|
+
get: function get() {
|
|
722
|
+
return _RegistrationLoginSecondStep[key];
|
|
723
|
+
}
|
|
724
|
+
});
|
|
725
|
+
});
|
|
726
|
+
|
|
727
|
+
var _RegistrationLoginThirdStep = require("./components/pages/RegistrationLoginThirdStep");
|
|
728
|
+
|
|
729
|
+
Object.keys(_RegistrationLoginThirdStep).forEach(function (key) {
|
|
730
|
+
if (key === "default" || key === "__esModule") return;
|
|
731
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
732
|
+
if (key in exports && exports[key] === _RegistrationLoginThirdStep[key]) return;
|
|
733
|
+
Object.defineProperty(exports, key, {
|
|
734
|
+
enumerable: true,
|
|
735
|
+
get: function get() {
|
|
736
|
+
return _RegistrationLoginThirdStep[key];
|
|
737
|
+
}
|
|
738
|
+
});
|
|
739
|
+
});
|
|
740
|
+
|
|
579
741
|
var _RetailerProductEdition = require("./components/pages/RetailerProductEdition");
|
|
580
742
|
|
|
581
743
|
Object.keys(_RetailerProductEdition).forEach(function (key) {
|
|
582
744
|
if (key === "default" || key === "__esModule") return;
|
|
745
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
583
746
|
if (key in exports && exports[key] === _RetailerProductEdition[key]) return;
|
|
584
747
|
Object.defineProperty(exports, key, {
|
|
585
748
|
enumerable: true,
|
|
@@ -587,4 +750,18 @@ Object.keys(_RetailerProductEdition).forEach(function (key) {
|
|
|
587
750
|
return _RetailerProductEdition[key];
|
|
588
751
|
}
|
|
589
752
|
});
|
|
753
|
+
});
|
|
754
|
+
|
|
755
|
+
var _VerificationCodeResetPassword = require("./components/pages/VerificationCodeResetPassword");
|
|
756
|
+
|
|
757
|
+
Object.keys(_VerificationCodeResetPassword).forEach(function (key) {
|
|
758
|
+
if (key === "default" || key === "__esModule") return;
|
|
759
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
760
|
+
if (key in exports && exports[key] === _VerificationCodeResetPassword[key]) return;
|
|
761
|
+
Object.defineProperty(exports, key, {
|
|
762
|
+
enumerable: true,
|
|
763
|
+
get: function get() {
|
|
764
|
+
return _VerificationCodeResetPassword[key];
|
|
765
|
+
}
|
|
766
|
+
});
|
|
590
767
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contentoh-components-library",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.18",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@babel/runtime": "^7.17.2",
|
|
6
6
|
"@storybook/addon-postcss": "^2.0.0",
|
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"start": "start-storybook -p 6006",
|
|
24
24
|
"build": "cross-env BABEL_ENV=production babel src -d dist",
|
|
25
|
-
"chromatic": "npx chromatic --project-token=d7bb0c8ba831"
|
|
25
|
+
"chromatic": "npx chromatic --project-token=d7bb0c8ba831",
|
|
26
|
+
"release": "auto shipit --base-branch=main"
|
|
26
27
|
},
|
|
27
28
|
"eslintConfig": {
|
|
28
29
|
"extends": [
|
package/src/index.js
CHANGED
|
@@ -28,11 +28,13 @@ export * from "./components/atoms/ValidationPanel/index";
|
|
|
28
28
|
|
|
29
29
|
//molecules
|
|
30
30
|
export * from "./components/molecules/AvatarAndValidation/index";
|
|
31
|
+
export * from "./components/molecules/CarouselImagesLogin"
|
|
31
32
|
export * from "./components/molecules/EditionActiveImage/index";
|
|
32
33
|
export * from "./components/molecules/FeaturesBar/index";
|
|
33
34
|
export * from "./components/molecules/GalleryElement/index";
|
|
34
35
|
export * from "./components/molecules/HeaderTop/index";
|
|
35
36
|
export * from "./components/molecules/ImageSelector/index";
|
|
37
|
+
export * from "./components/molecules/LoginPasswordStrength"
|
|
36
38
|
export * from "./components/molecules/PlanSelection/index";
|
|
37
39
|
export * from "./components/molecules/ProductNameHeader/index";
|
|
38
40
|
export * from "./components/molecules/StatusAsignationInfo/index";
|
|
@@ -40,7 +42,6 @@ export * from "./components/molecules/TableHeader/index";
|
|
|
40
42
|
export * from "./components/molecules/TableRow/index";
|
|
41
43
|
export * from "./components/molecules/TabsMenu/index";
|
|
42
44
|
export * from "./components/molecules/TagAndInput/index";
|
|
43
|
-
export * from "./components/molecules/TextAndGradient/index";
|
|
44
45
|
|
|
45
46
|
//organisms
|
|
46
47
|
export * from "./components/organisms/Fullplan/index";
|
|
@@ -53,6 +54,13 @@ export * from "./components/organisms/InputGroup/index";
|
|
|
53
54
|
export * from "./components/organisms/ProductImageModal/index";
|
|
54
55
|
|
|
55
56
|
//pages
|
|
57
|
+
export * from "./components/pages/ChangePasswordLogin"
|
|
58
|
+
export * from "./components/pages/CustomerLogin"
|
|
56
59
|
export * from "./components/pages/CustomerType";
|
|
60
|
+
export * from "./components/pages/EmailResetPassword"
|
|
57
61
|
export * from "./components/pages/OnboardPlan";
|
|
62
|
+
export * from "./components/pages/RegistrationLoginFirstStep"
|
|
63
|
+
export * from "./components/pages/RegistrationLoginSecondStep"
|
|
64
|
+
export * from "./components/pages/RegistrationLoginThirdStep"
|
|
58
65
|
export * from "./components/pages/RetailerProductEdition";
|
|
66
|
+
export * from "./components/pages/VerificationCodeResetPassword"
|