@inseefr/lunatic 0.4.10-v2 → 0.4.13-v2

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.
@@ -11,6 +11,8 @@ var _commons = require("../../commons");
11
11
 
12
12
  var _commons2 = require("../commons");
13
13
 
14
+ require("./checkbox.scss");
15
+
14
16
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
15
17
 
16
18
  function onClick() {}
@@ -70,10 +72,7 @@ function CheckboxGroup(_ref3) {
70
72
  var labelId = "lunatic-checkbox-label-".concat(id, "-").concat(name);
71
73
  return /*#__PURE__*/_react["default"].createElement(CheckboxGroupContainer, {
72
74
  key: checkboxId
73
- }, /*#__PURE__*/_react["default"].createElement(_commons.Label, {
74
- id: labelId,
75
- htmlFor: checkboxId
76
- }, label), /*#__PURE__*/_react["default"].createElement(CheckBoxOptionWrapper, {
75
+ }, /*#__PURE__*/_react["default"].createElement(CheckBoxOptionWrapper, {
77
76
  checkboxId: checkboxId,
78
77
  labelId: labelId,
79
78
  checked: optionValue,
@@ -81,7 +80,10 @@ function CheckboxGroup(_ref3) {
81
80
  onKeyDown: onClick,
82
81
  response: response,
83
82
  handleChange: handleChange
84
- }));
83
+ }), /*#__PURE__*/_react["default"].createElement(_commons.Label, {
84
+ id: labelId,
85
+ htmlFor: checkboxId
86
+ }, label));
85
87
  }
86
88
  }
87
89
 
@@ -0,0 +1,3 @@
1
+ .lunatic-checkbox-group-option {
2
+ display: flex;
3
+ }
@@ -1,4 +1,4 @@
1
1
  .lunatic-icon {
2
2
  display: flex;
3
- justify-content: center;
3
+ // justify-content: center;
4
4
  }
@@ -61,7 +61,7 @@
61
61
  padding: 0;
62
62
  font-size: 0.75rem;
63
63
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
64
- line-height: 0.75rem;
64
+ // line-height: 0.75rem;
65
65
  font-weight: bold;
66
66
  margin-bottom: 0.375rem;
67
67
  }
@@ -121,13 +121,11 @@
121
121
  display: inline;
122
122
  }
123
123
 
124
-
125
124
  .field {
126
125
  width: 100%;
127
126
  position: relative;
128
127
  }
129
128
 
130
-
131
129
  .link-md .field-md {
132
130
  border-bottom: dashed 0.1em var(--color-primary-dark);
133
131
  &:hover {
@@ -1,7 +1,8 @@
1
1
  .lunatic-component {
2
2
  .lunatic-input,
3
3
  .lunatic-datepicker,
4
- .lunatic-textarea {
4
+ .lunatic-textarea,
5
+ .lunatic-input-number {
5
6
  font: inherit;
6
7
  border: 0;
7
8
  border-bottom: 0.125rem double rgba(0, 0, 0, 0.42);
@@ -29,14 +29,17 @@ function InputNumber(_ref) {
29
29
  labelId = _ref.labelId,
30
30
  min = _ref.min,
31
31
  max = _ref.max,
32
- step = _ref.step;
33
- var valueEffective = value !== null && value !== void 0 ? value : '';
32
+ step = _ref.step,
33
+ unit = _ref.unit;
34
+ var valueEffective = value !== null && value !== void 0 ? value : NaN;
34
35
  var handleChange = (0, _react.useCallback)(function (e) {
35
36
  var val = e.target.valueAsNumber;
36
37
  onChange(val);
37
38
  }, [onChange]);
38
- return /*#__PURE__*/_react["default"].createElement("input", {
39
- className: (0, _classnames["default"])('lunatic-input', {
39
+ return /*#__PURE__*/_react["default"].createElement("div", {
40
+ className: "lunatic-input-number-container"
41
+ }, /*#__PURE__*/_react["default"].createElement("input", {
42
+ className: (0, _classnames["default"])('lunatic-input-number', {
40
43
  disabled: disabled,
41
44
  readOnly: readOnly
42
45
  }),
@@ -49,7 +52,7 @@ function InputNumber(_ref) {
49
52
  min: min,
50
53
  max: max,
51
54
  step: step
52
- });
55
+ }), unit && /*#__PURE__*/_react["default"].createElement("span", null, unit));
53
56
  }
54
57
 
55
58
  var _default = (0, _commons.createCustomizableLunaticField)(InputNumber);
@@ -0,0 +1,7 @@
1
+ // see input.scss
2
+
3
+ .lunatic-component {
4
+ .lunatic-input-number {
5
+ display: inline-block;
6
+ }
7
+ }
@@ -71,16 +71,22 @@ function BlockForLoop(_ref) {
71
71
  custom = _ref.custom,
72
72
  paginatedLoop = _ref.paginatedLoop,
73
73
  errors = _ref.errors;
74
+ var min = lines === null || lines === void 0 ? void 0 : lines.min;
75
+ var max = lines === null || lines === void 0 ? void 0 : lines.max;
74
76
 
75
77
  var _useState = (0, _react.useState)(function () {
76
- return Number.parseInt(iterations) ? iterations : (0, _getInitLength["default"])(valueMap);
78
+ if (iterations) {
79
+ //This should be an Integer
80
+ return Number.parseInt(iterations);
81
+ }
82
+
83
+ var initLength = (0, _getInitLength["default"])(valueMap);
84
+ return Math.max(initLength, min);
77
85
  }),
78
86
  _useState2 = _slicedToArray(_useState, 2),
79
87
  nbRows = _useState2[0],
80
88
  setNbRows = _useState2[1];
81
89
 
82
- var min = lines === null || lines === void 0 ? void 0 : lines.min;
83
- var max = lines === null || lines === void 0 ? void 0 : lines.max;
84
90
  var addRow = (0, _react.useCallback)(function () {
85
91
  if (nbRows < max) {
86
92
  setNbRows(nbRows + 1);
@@ -29,10 +29,7 @@ function Radio(_ref) {
29
29
  return /*#__PURE__*/_react["default"].createElement("div", {
30
30
  key: radioId,
31
31
  className: "lunatic-radio-group-option"
32
- }, /*#__PURE__*/_react["default"].createElement(_commons.Label, {
33
- id: labelId,
34
- htmlFor: radioId
35
- }, label), /*#__PURE__*/_react["default"].createElement(_radioOption["default"], {
32
+ }, /*#__PURE__*/_react["default"].createElement(_radioOption["default"], {
36
33
  id: radioId,
37
34
  labelledBy: labelId,
38
35
  index: index,
@@ -41,7 +38,10 @@ function Radio(_ref) {
41
38
  value: valueOption,
42
39
  onKeyDown: onKeyDown,
43
40
  checkboxStyle: checkboxStyle
44
- }));
41
+ }), /*#__PURE__*/_react["default"].createElement(_commons.Label, {
42
+ id: labelId,
43
+ htmlFor: radioId
44
+ }, label));
45
45
  });
46
46
  }
47
47
 
@@ -57,3 +57,7 @@
57
57
  // margin-top: 0.325em;
58
58
  // }
59
59
  }
60
+
61
+ .lunatic-radio-group-option {
62
+ display: flex;
63
+ }
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports["default"] = exports.Default = void 0;
6
+ exports["default"] = exports.UnitEuros = exports.Default = void 0;
7
7
 
8
8
  var _react = _interopRequireDefault(require("react"));
9
9
 
@@ -13,6 +13,8 @@ var _source = _interopRequireDefault(require("./source"));
13
13
 
14
14
  var _defaultArgTypes = _interopRequireDefault(require("../utils/default-arg-types"));
15
15
 
16
+ var _sourceEuros = _interopRequireDefault(require("./source-euros"));
17
+
16
18
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
17
19
 
18
20
  var stories = {
@@ -32,4 +34,10 @@ exports.Default = Default;
32
34
  Default.args = {
33
35
  id: 'input-number',
34
36
  source: _source["default"]
37
+ };
38
+ var UnitEuros = Template.bind({});
39
+ exports.UnitEuros = UnitEuros;
40
+ UnitEuros.args = {
41
+ id: 'input-number-euro',
42
+ source: _sourceEuros["default"]
35
43
  };
@@ -0,0 +1,38 @@
1
+ {
2
+ "components": [
3
+ {
4
+ "id": "kze792d8",
5
+ "componentType": "InputNumber",
6
+ "mandatory": false,
7
+ "page": "2",
8
+ "min": 0,
9
+ "max": 10,
10
+ "decimals": 0,
11
+ "unit":"€",
12
+ "label": { "value": "\"➡ 1. \" || \"NB \"", "type": "VTL|MD" },
13
+ "conditionFilter": { "value": "true", "type": "VTL" },
14
+ "hierarchy": {
15
+ "sequence": {
16
+ "id": "ksyjs7vy",
17
+ "page": "1",
18
+ "label": { "value": "S0", "type": "VTL|MD" }
19
+ }
20
+ },
21
+ "bindingDependencies": ["NB"],
22
+ "response": { "name": "NB" }
23
+ }
24
+ ],
25
+ "variables": [
26
+ {
27
+ "variableType": "COLLECTED",
28
+ "name": "NB",
29
+ "values": {
30
+ "PREVIOUS": null,
31
+ "COLLECTED": null,
32
+ "FORCED": null,
33
+ "EDITED": null,
34
+ "INPUTED": null
35
+ }
36
+ }
37
+ ]
38
+ }