arengibook 2.4.604 → 2.4.605
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/dist/index.js +8 -14
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -36128,6 +36128,8 @@ var Dropdown = function Dropdown(_ref) {
|
|
|
36128
36128
|
var styleLabel = {
|
|
36129
36129
|
marginLeft: '10px'
|
|
36130
36130
|
};
|
|
36131
|
+
var virtualscroll = document.querySelector('.p-virtualscroller.p-dropdown-items-wrapper');
|
|
36132
|
+
if (virtualscroll) virtualscroll.style.height = "auto";
|
|
36131
36133
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
36132
36134
|
className: "flex align-items-center",
|
|
36133
36135
|
style: {
|
|
@@ -36237,7 +36239,7 @@ var Dropdown = function Dropdown(_ref) {
|
|
|
36237
36239
|
_context2.p = 5;
|
|
36238
36240
|
setLoading(false);
|
|
36239
36241
|
virtualscroll = document.querySelector('.p-virtualscroller.p-dropdown-items-wrapper');
|
|
36240
|
-
virtualscroll.style.height = "auto";
|
|
36242
|
+
if (virtualscroll) virtualscroll.style.height = "auto";
|
|
36241
36243
|
return _context2.f(5);
|
|
36242
36244
|
case 6:
|
|
36243
36245
|
return _context2.a(2);
|
|
@@ -36434,19 +36436,11 @@ var optionsWithColors = [{
|
|
|
36434
36436
|
label: 'Vert',
|
|
36435
36437
|
value: 'vert',
|
|
36436
36438
|
color: '#00FF00'
|
|
36437
|
-
}
|
|
36438
|
-
|
|
36439
|
-
|
|
36440
|
-
|
|
36441
|
-
|
|
36442
|
-
label: 'Jaune',
|
|
36443
|
-
value: 'jaune',
|
|
36444
|
-
color: '#FFFF00'
|
|
36445
|
-
}, {
|
|
36446
|
-
label: 'Cyan',
|
|
36447
|
-
value: 'cyan',
|
|
36448
|
-
color: '#00FFFF'
|
|
36449
|
-
}];
|
|
36439
|
+
}
|
|
36440
|
+
// { label: 'Bleu', value: 'bleu', color: '#0000FF' },
|
|
36441
|
+
// { label: 'Jaune', value: 'jaune', color: '#FFFF00' },
|
|
36442
|
+
// { label: 'Cyan', value: 'cyan', color: '#00FFFF' },
|
|
36443
|
+
];
|
|
36450
36444
|
var createFakeOptions = function createFakeOptions(start, length) {
|
|
36451
36445
|
var options = [];
|
|
36452
36446
|
for (var i = start; i < length; i++) {
|