@thx/controls 19.4.0 → 19.6.0

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.
@@ -1,96 +1,145 @@
1
1
  import React from 'react';
2
+ import DatePicker from 'react-datepicker';
2
3
  import { LocalTime } from '@js-joda/core';
3
4
  import { toDate, toLocalTime } from '@thx/date';
4
- import debug from 'debug';
5
- import { Input } from 'semantic-ui-react';
6
- import DatePicker from 'react-datepicker';
7
- import '../DatePicker/styles.css.js';
8
- import { MaskedTimeInput } from './MaskedTimeInput.js';
9
5
 
10
- debug("thx.controls.date.LocalTimePicker");
6
+ function formatLocalTime(localTime) {
7
+ const hours = localTime.hour();
8
+ const minutes = localTime.minute();
9
+ const period = hours >= 12 ? "PM" : "AM";
10
+ const displayHour = hours % 12 || 12;
11
+ return `${displayHour}:${minutes.toString().padStart(2, "0")} ${period}`;
12
+ }
13
+ function parseTimeStringToLocalTime(str) {
14
+ if (!str)
15
+ return null;
16
+ let m = str.match(/^\s*(\d{1,2}):(\d{2})\s*(AM|PM)\s*$/i);
17
+ if (m) {
18
+ let hh = parseInt(m[1], 10);
19
+ const mm = parseInt(m[2], 10);
20
+ const period = m[3].toUpperCase();
21
+ if (period === "PM" && hh < 12)
22
+ hh += 12;
23
+ if (period === "AM" && hh === 12)
24
+ hh = 0;
25
+ return LocalTime.of(hh, mm);
26
+ }
27
+ const s = str.trim().toLowerCase().replace(/[.\-_,]/g, "").replace(/\s+/g, "");
28
+ m = s.match(/^([0-9]{1,4})(am|pm)$/i);
29
+ if (m) {
30
+ const digits = m[1];
31
+ const suffix = m[2].toUpperCase();
32
+ let hh = 0;
33
+ let mm = 0;
34
+ if (digits.length <= 2) {
35
+ hh = parseInt(digits, 10);
36
+ mm = 0;
37
+ } else if (digits.length === 3) {
38
+ hh = parseInt(digits.slice(0, 1), 10);
39
+ mm = parseInt(digits.slice(1), 10);
40
+ } else {
41
+ hh = parseInt(digits.slice(0, 2), 10);
42
+ mm = parseInt(digits.slice(2), 10);
43
+ }
44
+ if (mm > 59)
45
+ mm = 59;
46
+ if (hh > 23)
47
+ hh = 23;
48
+ if (suffix === "PM" && hh < 12)
49
+ hh += 12;
50
+ if (suffix === "AM" && hh === 12)
51
+ hh = 0;
52
+ return LocalTime.of(hh, mm);
53
+ }
54
+ m = s.match(/^([0-9]{1,2})(?::?([0-9]{1,2}))?(am|pm)$/i);
55
+ if (m) {
56
+ let hh = parseInt(m[1], 10);
57
+ let mm = parseInt(m[2] || "0", 10);
58
+ const suffix = m[3].toUpperCase();
59
+ if (mm > 59)
60
+ mm = 59;
61
+ if (hh > 23)
62
+ hh = 23;
63
+ if (suffix === "PM" && hh < 12)
64
+ hh += 12;
65
+ if (suffix === "AM" && hh === 12)
66
+ hh = 0;
67
+ return LocalTime.of(hh, mm);
68
+ }
69
+ m = s.match(/^([01]?\d|2[0-3]):([0-5]\d)$/);
70
+ if (m) {
71
+ const hh = parseInt(m[1], 10);
72
+ const mm = parseInt(m[2], 10);
73
+ return LocalTime.of(hh, mm);
74
+ }
75
+ m = s.match(/^([01]?\d|2[0-3])([0-5]\d)$/);
76
+ if (m)
77
+ return LocalTime.of(parseInt(m[1], 10), parseInt(m[2], 10));
78
+ m = s.match(/^(\d)(\d{2})$/);
79
+ if (m) {
80
+ let hh = parseInt(m[1], 10);
81
+ let mm = parseInt(m[2], 10);
82
+ if (hh > 23)
83
+ hh = 23;
84
+ if (mm > 59)
85
+ mm = 59;
86
+ return LocalTime.of(hh, mm);
87
+ }
88
+ m = s.match(/^([0-9]{1,2})$/);
89
+ if (m) {
90
+ let hh = parseInt(m[1], 10);
91
+ if (hh > 23)
92
+ hh = 23;
93
+ return LocalTime.of(hh, 0);
94
+ }
95
+ return null;
96
+ }
11
97
  function LocalTimePicker(props) {
12
- const {
13
- value,
14
- onChange,
15
- onBlur,
16
- as,
17
- action,
18
- actionPosition,
19
- className,
20
- error,
21
- fluid,
22
- focus,
23
- inverted,
24
- label,
25
- labelPosition,
26
- loading,
27
- size,
28
- tabIndex,
29
- transparent,
30
- startFocused,
31
- startSelected,
32
- ...rest
33
- } = props;
34
- const inputProps = {
35
- as,
36
- action,
37
- actionPosition,
38
- className: `${className || ""} icon`,
39
- error,
40
- focus,
41
- fluid,
42
- inverted,
43
- label,
44
- labelPosition,
45
- loading,
46
- size,
47
- tabIndex,
48
- transparent
49
- };
50
- const maskedInputProps = {
51
- as,
52
- action,
53
- actionPosition,
54
- className,
55
- error,
56
- focus,
57
- inverted,
58
- label,
59
- labelPosition,
60
- loading,
61
- size,
62
- tabIndex,
63
- transparent
64
- };
65
- let selected;
66
- if (typeof value === "number")
67
- selected = toDate(LocalTime.ofSecondOfDay(value));
68
- else
69
- selected = value ? toDate(value) : null;
70
- const handleDatePickerBlur = (e) => {
71
- onBlur && onBlur(e);
98
+ const { value, onChange, onBlur, placeholder, name, className, error, ...rest } = props;
99
+ const extraClass = error ? `${className ?? ""} error`.trim() : className;
100
+ const datepickerProps = {
101
+ ...rest,
102
+ className: extraClass || void 0,
103
+ "aria-invalid": error ? true : void 0,
104
+ name
72
105
  };
106
+ const selected = value ? toDate(value) : null;
73
107
  return /* @__PURE__ */ React.createElement(DatePicker, {
74
- ...rest,
108
+ ...datepickerProps,
75
109
  selected,
76
- onChange: (date) => {
77
- if (onChange)
78
- onChange(date ? toLocalTime(date) : null);
79
- },
80
110
  showTimeSelect: true,
81
111
  showTimeSelectOnly: true,
82
112
  timeIntervals: 15,
83
113
  timeCaption: "Time",
84
114
  dateFormat: "hh:mm aa",
85
- customInput: /* @__PURE__ */ React.createElement(Input, {
86
- ...inputProps
87
- }, /* @__PURE__ */ React.createElement(MaskedTimeInput, {
88
- ...maskedInputProps,
89
- onBlur: handleDatePickerBlur
90
- })),
91
- onBlur: handleDatePickerBlur
115
+ placeholderText: placeholder ?? "...9:45AM",
116
+ onChange: (date) => {
117
+ const lt = date ? toLocalTime(date) : null;
118
+ onChange?.(lt);
119
+ },
120
+ onBlur: (e) => {
121
+ const raw = e.target.value;
122
+ const parsed = parseTimeStringToLocalTime(raw);
123
+ if (parsed) {
124
+ onChange?.(parsed);
125
+ setTimeout(() => {
126
+ const synthetic = { target: { name, value: parsed } };
127
+ onBlur?.(synthetic);
128
+ }, 0);
129
+ } else {
130
+ const parentDisplay = value ? formatLocalTime(value) : "";
131
+ try {
132
+ e.target.value = parentDisplay;
133
+ } catch {
134
+ }
135
+ setTimeout(() => {
136
+ const synthetic = { target: { name, value: value ?? null } };
137
+ onBlur?.(synthetic);
138
+ }, 0);
139
+ }
140
+ }
92
141
  });
93
142
  }
94
143
 
95
- export { LocalTimePicker };
144
+ export { LocalTimePicker, parseTimeStringToLocalTime };
96
145
  //# sourceMappingURL=LocalTimePicker.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"LocalTimePicker.js","sources":["../../../../src/date/LocalTimePicker/LocalTimePicker.tsx"],"sourcesContent":["import {LocalTime} from '@js-joda/core';\nimport {toDate, toLocalTime} from '@thx/date';\nimport debug from 'debug';\nimport {type ReactElement} from 'react';\nimport type {ReactDatePickerProps} from 'react-datepicker';\nimport {Input, type InputProps} from 'semantic-ui-react';\nimport {DatePicker} from '../DatePicker/index';\nimport {MaskedTimeInput} from './MaskedTimeInput';\n\nconst d = debug('thx.controls.date.LocalTimePicker');\n\ninterface ILocalTimePicker {\n\tvalue?: LocalTime | number | null;\n\tonChange?: (value: LocalTime | null) => void;\n\tonChangeRaw?: () => void;\n}\n\ntype InputPropsOmitted = Omit<InputProps, 'onChange'>;\ntype ReactDatePickerPropsOmitted = Omit<Omit<ReactDatePickerProps, 'value'>, 'onChange'>;\nexport type LocalTimePickerProps = ILocalTimePicker & InputPropsOmitted & ReactDatePickerPropsOmitted;\n\nexport function LocalTimePicker(props: LocalTimePickerProps): ReactElement {\n\tconst {\n\t\tvalue,\n\t\tonChange,\n\t\tonBlur,\n\t\tas,\n\t\taction,\n\t\tactionPosition,\n\t\tclassName,\n\t\terror,\n\t\tfluid,\n\t\tfocus,\n\t\tinverted,\n\t\tlabel,\n\t\tlabelPosition,\n\t\tloading,\n\t\tsize,\n\t\ttabIndex,\n\t\ttransparent,\n\t\tstartFocused,\n\t\tstartSelected,\n\t\t...rest\n\t} = props;\n\n\tconst inputProps = {\n\t\tas,\n\t\taction,\n\t\tactionPosition,\n\t\tclassName: `${className || ''} icon`,\n\t\terror,\n\t\tfocus,\n\t\tfluid,\n\t\tinverted,\n\t\tlabel,\n\t\tlabelPosition,\n\t\tloading,\n\t\tsize,\n\t\ttabIndex,\n\t\ttransparent,\n\t};\n\n\tconst maskedInputProps = {\n\t\tas,\n\t\taction,\n\t\tactionPosition,\n\t\tclassName,\n\t\terror,\n\t\tfocus,\n\t\tinverted,\n\t\tlabel,\n\t\tlabelPosition,\n\t\tloading,\n\t\tsize,\n\t\ttabIndex,\n\t\ttransparent,\n\t};\n\n\tlet selected;\n\tif (typeof value === 'number') selected = toDate(LocalTime.ofSecondOfDay(value));\n\telse selected = value ? toDate(value) : null;\n\n\tconst handleDatePickerBlur = (e: React.FocusEvent<HTMLInputElement>) => {\n\t\tonBlur && onBlur(e);\n\t};\n\n\treturn (\n\t\t<DatePicker\n\t\t\t{...rest}\n\t\t\tselected={selected}\n\t\t\tonChange={date => {\n\t\t\t\tif (onChange) onChange(date ? toLocalTime(date) : null);\n\t\t\t}}\n\t\t\tshowTimeSelect\n\t\t\tshowTimeSelectOnly\n\t\t\ttimeIntervals={15}\n\t\t\ttimeCaption=\"Time\"\n\t\t\tdateFormat=\"hh:mm aa\"\n\t\t\tcustomInput={\n\t\t\t\t<Input {...inputProps}>\n\t\t\t\t\t<MaskedTimeInput {...maskedInputProps} onBlur={handleDatePickerBlur} />\n\t\t\t\t</Input>\n\t\t\t}\n\t\t\tonBlur={handleDatePickerBlur}\n\t\t/>\n\t);\n}\n"],"names":[],"mappings":";;;;;;;;;AASU,MAAM,mCAAmC,EAAA;AAY5C,SAAS,gBAAgB,KAA2C,EAAA;AAC1E,EAAM,MAAA;AAAA,IACL,KAAA;AAAA,IACA,QAAA;AAAA,IACA,MAAA;AAAA,IACA,EAAA;AAAA,IACA,MAAA;AAAA,IACA,cAAA;AAAA,IACA,SAAA;AAAA,IACA,KAAA;AAAA,IACA,KAAA;AAAA,IACA,KAAA;AAAA,IACA,QAAA;AAAA,IACA,KAAA;AAAA,IACA,aAAA;AAAA,IACA,OAAA;AAAA,IACA,IAAA;AAAA,IACA,QAAA;AAAA,IACA,WAAA;AAAA,IACA,YAAA;AAAA,IACA,aAAA;AAAA,IACG,GAAA,IAAA;AAAA,GACA,GAAA,KAAA,CAAA;AAEJ,EAAA,MAAM,UAAa,GAAA;AAAA,IAClB,EAAA;AAAA,IACA,MAAA;AAAA,IACA,cAAA;AAAA,IACA,SAAA,EAAW,GAAG,SAAa,IAAA,EAAA,CAAA,KAAA,CAAA;AAAA,IAC3B,KAAA;AAAA,IACA,KAAA;AAAA,IACA,KAAA;AAAA,IACA,QAAA;AAAA,IACA,KAAA;AAAA,IACA,aAAA;AAAA,IACA,OAAA;AAAA,IACA,IAAA;AAAA,IACA,QAAA;AAAA,IACA,WAAA;AAAA,GACD,CAAA;AAEA,EAAA,MAAM,gBAAmB,GAAA;AAAA,IACxB,EAAA;AAAA,IACA,MAAA;AAAA,IACA,cAAA;AAAA,IACA,SAAA;AAAA,IACA,KAAA;AAAA,IACA,KAAA;AAAA,IACA,QAAA;AAAA,IACA,KAAA;AAAA,IACA,aAAA;AAAA,IACA,OAAA;AAAA,IACA,IAAA;AAAA,IACA,QAAA;AAAA,IACA,WAAA;AAAA,GACD,CAAA;AAEA,EAAI,IAAA,QAAA,CAAA;AACJ,EAAA,IAAI,OAAO,KAAU,KAAA,QAAA;AAAU,IAAA,QAAA,GAAW,MAAO,CAAA,SAAA,CAAU,aAAc,CAAA,KAAK,CAAC,CAAA,CAAA;AAAA;AAC1E,IAAW,QAAA,GAAA,KAAA,GAAQ,MAAO,CAAA,KAAK,CAAI,GAAA,IAAA,CAAA;AAExC,EAAM,MAAA,oBAAA,GAAuB,CAAC,CAA0C,KAAA;AACvE,IAAA,MAAA,IAAU,OAAO,CAAC,CAAA,CAAA;AAAA,GACnB,CAAA;AAEA,EAAA,uBACE,KAAA,CAAA,aAAA,CAAA,UAAA,EAAA;AAAA,IACC,GAAG,IAAA;AAAA,IACJ,QAAA;AAAA,IACA,UAAU,CAAQ,IAAA,KAAA;AACjB,MAAI,IAAA,QAAA;AAAU,QAAA,QAAA,CAAS,IAAO,GAAA,WAAA,CAAY,IAAI,CAAA,GAAI,IAAI,CAAA,CAAA;AAAA,KACvD;AAAA,IACA,cAAc,EAAA,IAAA;AAAA,IACd,kBAAkB,EAAA,IAAA;AAAA,IAClB,aAAe,EAAA,EAAA;AAAA,IACf,WAAY,EAAA,MAAA;AAAA,IACZ,UAAW,EAAA,UAAA;AAAA,IACX,6BACE,KAAA,CAAA,aAAA,CAAA,KAAA,EAAA;AAAA,MAAO,GAAG,UAAA;AAAA,KAAA,kBACT,KAAA,CAAA,aAAA,CAAA,eAAA,EAAA;AAAA,MAAiB,GAAG,gBAAA;AAAA,MAAkB,MAAQ,EAAA,oBAAA;AAAA,KAAsB,CACtE,CAAA;AAAA,IAED,MAAQ,EAAA,oBAAA;AAAA,GACT,CAAA,CAAA;AAEF;;;;"}
1
+ {"version":3,"file":"LocalTimePicker.js","sources":["../../../../src/date/LocalTimePicker/LocalTimePicker.tsx"],"sourcesContent":["import {type ReactElement} from 'react';\nimport DatePicker, {type ReactDatePickerProps} from 'react-datepicker';\nimport {type InputProps} from 'semantic-ui-react';\nimport {LocalTime} from '@js-joda/core';\nimport {toDate, toLocalTime} from '@thx/date';\n\nfunction formatLocalTime(localTime: LocalTime): string {\n\tconst hours = localTime.hour();\n\tconst minutes = localTime.minute();\n\tconst period = hours >= 12 ? 'PM' : 'AM';\n\tconst displayHour = hours % 12 || 12;\n\treturn `${displayHour}:${minutes.toString().padStart(2, '0')} ${period}`;\n}\n\n/** Parse tolerant strings into LocalTime (supports shorthands, compact am/pm like \"334pm\", and 24h forms). */\nexport function parseTimeStringToLocalTime(str: string): LocalTime | null {\n\tif (!str) return null;\n\n\t// 1) already-normalized with AM/PM like \"9:34 PM\" or \"09:34 AM\"\n\tlet m = str.match(/^\\s*(\\d{1,2}):(\\d{2})\\s*(AM|PM)\\s*$/i);\n\tif (m) {\n\t\tlet hh = parseInt(m[1], 10);\n\t\tconst mm = parseInt(m[2], 10);\n\t\tconst period = m[3].toUpperCase();\n\t\tif (period === 'PM' && hh < 12) hh += 12;\n\t\tif (period === 'AM' && hh === 12) hh = 0;\n\t\treturn LocalTime.of(hh, mm);\n\t}\n\n\tconst s = str\n\t\t.trim()\n\t\t.toLowerCase()\n\t\t.replace(/[.\\-_,]/g, '')\n\t\t.replace(/\\s+/g, '');\n\n\t// 2) compact suffix forms: digits + am|pm, supporting 1-4 digit prefixes:\n\t// - \"5pm\" => 5:00 PM\n\t// - \"334pm\" => 3:34 PM\n\t// - \"1234am\" => 12:34 AM\n\tm = s.match(/^([0-9]{1,4})(am|pm)$/i);\n\tif (m) {\n\t\tconst digits = m[1];\n\t\tconst suffix = m[2].toUpperCase();\n\t\tlet hh = 0;\n\t\tlet mm = 0;\n\n\t\tif (digits.length <= 2) {\n\t\t\t// \"5pm\" or \"05pm\" => hour only\n\t\t\thh = parseInt(digits, 10);\n\t\t\tmm = 0;\n\t\t} else if (digits.length === 3) {\n\t\t\t// \"734pm\" => 7:34\n\t\t\thh = parseInt(digits.slice(0, 1), 10);\n\t\t\tmm = parseInt(digits.slice(1), 10);\n\t\t} else {\n\t\t\t// length === 4, \"1234pm\" => 12:34\n\t\t\thh = parseInt(digits.slice(0, 2), 10);\n\t\t\tmm = parseInt(digits.slice(2), 10);\n\t\t}\n\n\t\tif (mm > 59) mm = 59;\n\t\tif (hh > 23) hh = 23;\n\t\tif (suffix === 'PM' && hh < 12) hh += 12;\n\t\tif (suffix === 'AM' && hh === 12) hh = 0;\n\t\treturn LocalTime.of(hh, mm);\n\t}\n\n\t// 3) hh[:mm][am|pm] (e.g. \"5pm\", \"05:30am\") - fallback for colon + suffix\n\tm = s.match(/^([0-9]{1,2})(?::?([0-9]{1,2}))?(am|pm)$/i);\n\tif (m) {\n\t\tlet hh = parseInt(m[1], 10);\n\t\tlet mm = parseInt(m[2] || '0', 10);\n\t\tconst suffix = m[3].toUpperCase();\n\t\tif (mm > 59) mm = 59;\n\t\tif (hh > 23) hh = 23;\n\t\tif (suffix === 'PM' && hh < 12) hh += 12;\n\t\tif (suffix === 'AM' && hh === 12) hh = 0;\n\t\treturn LocalTime.of(hh, mm);\n\t}\n\n\t// 4) colon-separated 24h \"HH:MM\" (e.g. \"21:34\", \"09:05\")\n\tm = s.match(/^([01]?\\d|2[0-3]):([0-5]\\d)$/);\n\tif (m) {\n\t\tconst hh = parseInt(m[1], 10);\n\t\tconst mm = parseInt(m[2], 10);\n\t\treturn LocalTime.of(hh, mm);\n\t}\n\n\t// 5) Four-digit compact \"HHMM\" (e.g. \"2145\", \"0945\")\n\tm = s.match(/^([01]?\\d|2[0-3])([0-5]\\d)$/);\n\tif (m) return LocalTime.of(parseInt(m[1], 10), parseInt(m[2], 10));\n\n\t// 6) Three-digit compact like \"734\" -> 7:34\n\tm = s.match(/^(\\d)(\\d{2})$/);\n\tif (m) {\n\t\tlet hh = parseInt(m[1], 10);\n\t\tlet mm = parseInt(m[2], 10);\n\t\tif (hh > 23) hh = 23;\n\t\tif (mm > 59) mm = 59;\n\t\treturn LocalTime.of(hh, mm);\n\t}\n\n\t// 7) hour-only \"5\" -> 05:00\n\tm = s.match(/^([0-9]{1,2})$/);\n\tif (m) {\n\t\tlet hh = parseInt(m[1], 10);\n\t\tif (hh > 23) hh = 23;\n\t\treturn LocalTime.of(hh, 0);\n\t}\n\n\treturn null;\n}\n\ninterface ILocalTimePicker {\n\tvalue?: LocalTime | null;\n\tonChange?: (value: LocalTime | null) => void;\n\tonBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;\n}\n\nexport type InputPropsOmitted = Omit<InputProps, 'onChange' | 'value'>;\nexport type ReactDatePickerPropsOmitted = Omit<Omit<ReactDatePickerProps, 'value'>, 'onChange' | 'onBlur'>;\n\nexport type LocalTimePickerProps = ILocalTimePicker & InputPropsOmitted & ReactDatePickerPropsOmitted;\n\nexport function LocalTimePicker(props: LocalTimePickerProps): ReactElement {\n\tconst {value, onChange, onBlur, placeholder, name, className, error, ...rest} = props;\n\n\t// Map Semantic-UI error boolean to className + aria-invalid (avoid boolean prop on DOM)\n\tconst extraClass = error ? `${className ?? ''} error`.trim() : className;\n\tconst datepickerProps: Record<string, any> = {\n\t\t...rest,\n\t\tclassName: extraClass || undefined,\n\t\t'aria-invalid': error ? true : undefined,\n\t\tname,\n\t};\n\n\tconst selected = value ? toDate(value) : null;\n\n\treturn (\n\t\t<DatePicker\n\t\t\t{...datepickerProps}\n\t\t\tselected={selected}\n\t\t\tshowTimeSelect\n\t\t\tshowTimeSelectOnly\n\t\t\ttimeIntervals={15}\n\t\t\ttimeCaption=\"Time\"\n\t\t\tdateFormat=\"hh:mm aa\"\n\t\t\tplaceholderText={placeholder ?? '...9:45AM'}\n\t\t\tonChange={date => {\n\t\t\t\tconst lt = date ? toLocalTime(date) : null;\n\t\t\t\tonChange?.(lt);\n\t\t\t}}\n\t\t\tonBlur={(e: React.FocusEvent<HTMLInputElement>) => {\n\t\t\t\t// read raw text\n\t\t\t\tconst raw = (e.target as HTMLInputElement).value;\n\t\t\t\tconst parsed = parseTimeStringToLocalTime(raw);\n\n\t\t\t\tif (parsed) {\n\t\t\t\t\t// 1) tell parent about the parsed value (parent will call setFieldValue)\n\t\t\t\t\tonChange?.(parsed);\n\n\t\t\t\t\t// 2) call the parent's onBlur (likely Formik.handleBlur) after the current call stack,\n\t\t\t\t\t// so setFieldValue has an opportunity to update Formik state before validation runs.\n\t\t\t\t\t// Pass a small synthetic event with name and value so Formik marks touched correctly.\n\t\t\t\t\tsetTimeout(() => {\n\t\t\t\t\t\tconst synthetic: any = {target: {name, value: parsed}};\n\t\t\t\t\t\tonBlur?.(synthetic);\n\t\t\t\t\t}, 0);\n\t\t\t\t} else {\n\t\t\t\t\t// If parsing failed, revert the visible input to the last parent value immediately\n\t\t\t\t\tconst parentDisplay = value ? formatLocalTime(value) : '';\n\t\t\t\t\ttry {\n\t\t\t\t\t\t(e.target as HTMLInputElement).value = parentDisplay;\n\t\t\t\t\t} catch {\n\t\t\t\t\t\t/* ignore */\n\t\t\t\t\t}\n\n\t\t\t\t\t// Then notify parent via onBlur after a tick so validation sees the (unchanged) parent value.\n\t\t\t\t\tsetTimeout(() => {\n\t\t\t\t\t\tconst synthetic: any = {target: {name, value: value ?? null}};\n\t\t\t\t\t\tonBlur?.(synthetic);\n\t\t\t\t\t}, 0);\n\t\t\t\t}\n\t\t\t}}\n\t\t/>\n\t);\n}\n"],"names":[],"mappings":"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"}
@@ -19,6 +19,7 @@ const MaskedInput = forwardRef((props, ref) => {
19
19
  [inputRef]
20
20
  );
21
21
  return /* @__PURE__ */ React.createElement("input", {
22
+ ...props,
22
23
  disabled,
23
24
  name,
24
25
  ref: inputRef,
@@ -1 +1 @@
1
- {"version":3,"file":"MaskedInput.js","sources":["../../../../src/inputs/MaskedInput/MaskedInput.tsx"],"sourcesContent":["import debug from 'debug';\nimport {forwardRef, useImperativeHandle} from 'react';\nimport type {InputProps} from 'semantic-ui-react';\nimport {useMaskedInput, type UseMaskedInputProps} from './useMaskedInput';\n\nconst d = debug('thx.controls.inputs.MaskedInput');\n\nexport interface MaskedInputRef {\n\tfocus: () => void;\n\tselect: () => void;\n}\n\nexport type MaskedInputProps = {\n\tname?: string;\n\tonBlur?: (event: any) => void;\n} & UseMaskedInputProps &\n\tOmit<InputProps, 'onChange'>;\n\nexport const MaskedInput = forwardRef<MaskedInputRef, MaskedInputProps>((props, ref) => {\n\tconst {name, onBlur, disabled, onChange, mask, value} = props;\n\n\tconst inputRef = useMaskedInput({mask, value, onChange});\n\n\tuseImperativeHandle(\n\t\tref,\n\t\t() => ({\n\t\t\tfocus: () => {\n\t\t\t\tinputRef.current?.focus();\n\t\t\t},\n\t\t\tselect: () => {\n\t\t\t\tinputRef.current?.select();\n\t\t\t},\n\t\t}),\n\t\t[inputRef],\n\t);\n\n\treturn <input disabled={disabled} name={name} ref={inputRef} onBlur={onBlur} />;\n});\n"],"names":[],"mappings":";;;;AAKU,MAAM,iCAAiC,EAAA;AAa1C,MAAM,WAAc,GAAA,UAAA,CAA6C,CAAC,KAAA,EAAO,GAAQ,KAAA;AACvF,EAAA,MAAM,EAAC,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAU,EAAA,IAAA,EAAM,OAAS,GAAA,KAAA,CAAA;AAExD,EAAA,MAAM,WAAW,cAAe,CAAA,EAAC,IAAM,EAAA,KAAA,EAAO,UAAS,CAAA,CAAA;AAEvD,EAAA,mBAAA;AAAA,IACC,GAAA;AAAA,IACA,OAAO;AAAA,MACN,OAAO,MAAM;AACZ,QAAA,QAAA,CAAS,SAAS,KAAM,EAAA,CAAA;AAAA,OACzB;AAAA,MACA,QAAQ,MAAM;AACb,QAAA,QAAA,CAAS,SAAS,MAAO,EAAA,CAAA;AAAA,OAC1B;AAAA,KACD,CAAA;AAAA,IACA,CAAC,QAAQ,CAAA;AAAA,GACV,CAAA;AAEA,EAAA,uBAAQ,KAAA,CAAA,aAAA,CAAA,OAAA,EAAA;AAAA,IAAM,QAAA;AAAA,IAAoB,IAAA;AAAA,IAAY,GAAK,EAAA,QAAA;AAAA,IAAU,MAAA;AAAA,GAAgB,CAAA,CAAA;AAC9E,CAAC;;;;"}
1
+ {"version":3,"file":"MaskedInput.js","sources":["../../../../src/inputs/MaskedInput/MaskedInput.tsx"],"sourcesContent":["import debug from 'debug';\nimport {forwardRef, useImperativeHandle} from 'react';\nimport type {InputProps} from 'semantic-ui-react';\nimport {useMaskedInput, type UseMaskedInputProps} from './useMaskedInput';\n\nconst d = debug('thx.controls.inputs.MaskedInput');\n\nexport interface MaskedInputRef {\n\tfocus: () => void;\n\tselect: () => void;\n}\n\nexport type MaskedInputProps = {\n\tname?: string;\n\tonBlur?: (event: any) => void;\n} & UseMaskedInputProps &\n\tOmit<InputProps, 'onChange'>;\n\nexport const MaskedInput = forwardRef<MaskedInputRef, MaskedInputProps>((props, ref) => {\n\tconst {name, onBlur, disabled, onChange, mask, value} = props;\n\n\tconst inputRef = useMaskedInput({mask, value, onChange});\n\n\tuseImperativeHandle(\n\t\tref,\n\t\t() => ({\n\t\t\tfocus: () => {\n\t\t\t\tinputRef.current?.focus();\n\t\t\t},\n\t\t\tselect: () => {\n\t\t\t\tinputRef.current?.select();\n\t\t\t},\n\t\t}),\n\t\t[inputRef],\n\t);\n\n\treturn <input {...props} disabled={disabled} name={name} ref={inputRef} onBlur={onBlur} />;\n});\n"],"names":[],"mappings":";;;;AAKU,MAAM,iCAAiC,EAAA;AAa1C,MAAM,WAAc,GAAA,UAAA,CAA6C,CAAC,KAAA,EAAO,GAAQ,KAAA;AACvF,EAAA,MAAM,EAAC,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAU,EAAA,IAAA,EAAM,OAAS,GAAA,KAAA,CAAA;AAExD,EAAA,MAAM,WAAW,cAAe,CAAA,EAAC,IAAM,EAAA,KAAA,EAAO,UAAS,CAAA,CAAA;AAEvD,EAAA,mBAAA;AAAA,IACC,GAAA;AAAA,IACA,OAAO;AAAA,MACN,OAAO,MAAM;AACZ,QAAA,QAAA,CAAS,SAAS,KAAM,EAAA,CAAA;AAAA,OACzB;AAAA,MACA,QAAQ,MAAM;AACb,QAAA,QAAA,CAAS,SAAS,MAAO,EAAA,CAAA;AAAA,OAC1B;AAAA,KACD,CAAA;AAAA,IACA,CAAC,QAAQ,CAAA;AAAA,GACV,CAAA;AAEA,EAAA,uBAAQ,KAAA,CAAA,aAAA,CAAA,OAAA,EAAA;AAAA,IAAO,GAAG,KAAA;AAAA,IAAO,QAAA;AAAA,IAAoB,IAAA;AAAA,IAAY,GAAK,EAAA,QAAA;AAAA,IAAU,MAAA;AAAA,GAAgB,CAAA,CAAA;AACzF,CAAC;;;;"}
package/dist/stats.html CHANGED
@@ -4929,7 +4929,7 @@ var drawChart = (function (exports) {
4929
4929
  </script>
4930
4930
  <script>
4931
4931
  /*<!--*/
4932
- const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src/index.ts","uid":"86fe8d17-1"}]},{"name":"step/useStep.js","children":[{"name":"src/step/useStep.ts","uid":"86fe8d17-3"}]},{"name":"step/FormStep.js","children":[{"name":"src/step/FormStep.tsx","uid":"86fe8d17-5"}]},{"name":"step/Step.js","children":[{"name":"src/step/Step.tsx","uid":"86fe8d17-7"}]},{"name":"step/StepProvider.js","children":[{"name":"src/step/StepProvider.tsx","uid":"86fe8d17-9"}]},{"name":"date/LocalDatePicker/LocalDatePicker.js","children":[{"name":"src/date/LocalDatePicker/LocalDatePicker.tsx","uid":"86fe8d17-11"}]},{"name":"date/LocalMonthSelect/LocalMonthSelect.js","children":[{"name":"src/date/LocalMonthSelect/LocalMonthSelect.tsx","uid":"86fe8d17-13"}]},{"name":"date/MonthDayPicker/MonthDayPicker.js","children":[{"name":"src/date/MonthDayPicker/MonthDayPicker.tsx","uid":"86fe8d17-15"}]},{"name":"date/MonthYearPicker/MonthYearPicker.js","children":[{"name":"src/date/MonthYearPicker/MonthYearPicker.tsx","uid":"86fe8d17-17"}]},{"name":"inputs/MaskedInput/useMaskedInput.js","children":[{"name":"src/inputs/MaskedInput/useMaskedInput.ts","uid":"86fe8d17-19"}]},{"name":"date/YearSelect/YearSelect.js","children":[{"name":"src/date/YearSelect/YearSelect.tsx","uid":"86fe8d17-21"}]},{"name":"inputs/TableInput/addRowOnTab.js","children":[{"name":"src/inputs/TableInput/addRowOnTab.ts","uid":"86fe8d17-23"}]},{"name":"inputs/MaskedInput/MaskedInput.js","children":[{"name":"src/inputs/MaskedInput/MaskedInput.tsx","uid":"86fe8d17-25"}]},{"name":"date/LocalTimePicker/LocalTimePicker.js","children":[{"name":"src/date/LocalTimePicker/LocalTimePicker.tsx","uid":"86fe8d17-27"}]},{"name":"inputs/SinInput/SinInput.js","children":[{"name":"src/inputs/SinInput/SinInput.tsx","uid":"86fe8d17-29"}]},{"name":"inputs/CreditCardInput/CreditCardInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardInput.tsx","uid":"86fe8d17-31"}]},{"name":"inputs/PhoneInput/PhoneInput.js","children":[{"name":"src/inputs/PhoneInput/PhoneInput.tsx","uid":"86fe8d17-33"}]},{"name":"inputs/TableInput/TableInput.js","children":[{"name":"src/inputs/TableInput/TableInput.tsx","uid":"86fe8d17-35"}]},{"name":"inputs/TableInput/MoneyCell.js","children":[{"name":"src/inputs/TableInput/MoneyCell.tsx","uid":"86fe8d17-37"}]},{"name":"inputs/TableInput/MoneyEditCell.js","children":[{"name":"src/inputs/TableInput/MoneyEditCell.tsx","uid":"86fe8d17-39"}]},{"name":"inputs/TableInput/LocalDateCell.js","children":[{"name":"src/inputs/TableInput/LocalDateCell.tsx","uid":"86fe8d17-41"}]},{"name":"inputs/TableInput/CheckboxEditCell.js","children":[{"name":"src/inputs/TableInput/CheckboxEditCell.tsx","uid":"86fe8d17-43"}]},{"name":"inputs/TableInput/LocalDateEditCell.js","children":[{"name":"src/inputs/TableInput/LocalDateEditCell.tsx","uid":"86fe8d17-45"}]},{"name":"inputs/TableInput/LocalTimeEditCell.js","children":[{"name":"src/inputs/TableInput/LocalTimeEditCell.tsx","uid":"86fe8d17-47"}]},{"name":"inputs/TableInput/MoneySumFooter.js","children":[{"name":"src/inputs/TableInput/MoneySumFooter.tsx","uid":"86fe8d17-49"}]},{"name":"inputs/TableInput/NumberEditCell.js","children":[{"name":"src/inputs/TableInput/NumberEditCell.tsx","uid":"86fe8d17-51"}]},{"name":"inputs/TableInput/StringEditCell.js","children":[{"name":"src/inputs/TableInput/StringEditCell.tsx","uid":"86fe8d17-53"}]},{"name":"inputs/TableInput/DropdownCell.js","children":[{"name":"src/inputs/TableInput/DropdownCell.tsx","uid":"86fe8d17-55"}]},{"name":"inputs/TableInput/HoverCell.js","children":[{"name":"src/inputs/TableInput/HoverCell.tsx","uid":"86fe8d17-57"}]},{"name":"money/MoneyInput/MoneyInput.js","children":[{"name":"src/money/MoneyInput/MoneyInput.tsx","uid":"86fe8d17-59"}]},{"name":"inputs/RadioGroup/RadioGroup.js","children":[{"name":"src/inputs/RadioGroup/RadioGroup.tsx","uid":"86fe8d17-61"}]},{"name":"money/MoneyCurrencyInput/MoneyCurrencyInput.js","children":[{"name":"src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","uid":"86fe8d17-63"}]},{"name":"form/TForm/TForm.js","children":[{"name":"src/form/TForm/TForm.tsx","uid":"86fe8d17-65"}]},{"name":"form/TForm/useTForm.js","children":[{"name":"src/form/TForm/useTForm.tsx","uid":"86fe8d17-67"}]},{"name":"step/stepContext.js","children":[{"name":"src/step/stepContext.ts","uid":"86fe8d17-69"}]},{"name":"date/DatePicker/styles.css.js","children":[{"name":"src/date/DatePicker/styles.css","uid":"86fe8d17-71"}]},{"name":"inputs/CreditCardInput/styles.css.js","children":[{"name":"src/inputs/CreditCardInput/styles.css","uid":"86fe8d17-73"}]},{"name":"money/useMoneyInput.js","children":[{"name":"src/money/useMoneyInput.ts","uid":"86fe8d17-75"}]},{"name":"date/LocalDatePicker/MaskedDateInput.js","children":[{"name":"src/date/LocalDatePicker/MaskedDateInput.tsx","uid":"86fe8d17-77"}]},{"name":"inputs/CreditCardInput/CreditCardNumberInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardNumberInput.tsx","uid":"86fe8d17-79"}]},{"name":"date/LocalTimePicker/MaskedTimeInput.js","children":[{"name":"src/date/LocalTimePicker/MaskedTimeInput.tsx","uid":"86fe8d17-81"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/artemis/GitHub/thr-addons/node_modules/style-inject/dist/style-inject.es.js","uid":"86fe8d17-83"}]}],"isRoot":true},"nodeParts":{"86fe8d17-1":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"86fe8d17-0"},"86fe8d17-3":{"renderedLength":113,"gzipLength":107,"brotliLength":82,"metaUid":"86fe8d17-2"},"86fe8d17-5":{"renderedLength":440,"gzipLength":270,"brotliLength":214,"metaUid":"86fe8d17-4"},"86fe8d17-7":{"renderedLength":203,"gzipLength":155,"brotliLength":111,"metaUid":"86fe8d17-6"},"86fe8d17-9":{"renderedLength":3529,"gzipLength":1015,"brotliLength":861,"metaUid":"86fe8d17-8"},"86fe8d17-11":{"renderedLength":3161,"gzipLength":952,"brotliLength":853,"metaUid":"86fe8d17-10"},"86fe8d17-13":{"renderedLength":1135,"gzipLength":505,"brotliLength":415,"metaUid":"86fe8d17-12"},"86fe8d17-15":{"renderedLength":1965,"gzipLength":655,"brotliLength":544,"metaUid":"86fe8d17-14"},"86fe8d17-17":{"renderedLength":1229,"gzipLength":496,"brotliLength":424,"metaUid":"86fe8d17-16"},"86fe8d17-19":{"renderedLength":1487,"gzipLength":501,"brotliLength":423,"metaUid":"86fe8d17-18"},"86fe8d17-21":{"renderedLength":1553,"gzipLength":579,"brotliLength":461,"metaUid":"86fe8d17-20"},"86fe8d17-23":{"renderedLength":312,"gzipLength":199,"brotliLength":173,"metaUid":"86fe8d17-22"},"86fe8d17-25":{"renderedLength":543,"gzipLength":305,"brotliLength":252,"metaUid":"86fe8d17-24"},"86fe8d17-27":{"renderedLength":1624,"gzipLength":580,"brotliLength":482,"metaUid":"86fe8d17-26"},"86fe8d17-29":{"renderedLength":1166,"gzipLength":540,"brotliLength":469,"metaUid":"86fe8d17-28"},"86fe8d17-31":{"renderedLength":2324,"gzipLength":584,"brotliLength":495,"metaUid":"86fe8d17-30"},"86fe8d17-33":{"renderedLength":908,"gzipLength":382,"brotliLength":319,"metaUid":"86fe8d17-32"},"86fe8d17-35":{"renderedLength":2891,"gzipLength":854,"brotliLength":780,"metaUid":"86fe8d17-34"},"86fe8d17-37":{"renderedLength":257,"gzipLength":185,"brotliLength":149,"metaUid":"86fe8d17-36"},"86fe8d17-39":{"renderedLength":820,"gzipLength":397,"brotliLength":349,"metaUid":"86fe8d17-38"},"86fe8d17-41":{"renderedLength":285,"gzipLength":198,"brotliLength":170,"metaUid":"86fe8d17-40"},"86fe8d17-43":{"renderedLength":702,"gzipLength":369,"brotliLength":330,"metaUid":"86fe8d17-42"},"86fe8d17-45":{"renderedLength":695,"gzipLength":349,"brotliLength":295,"metaUid":"86fe8d17-44"},"86fe8d17-47":{"renderedLength":622,"gzipLength":322,"brotliLength":269,"metaUid":"86fe8d17-46"},"86fe8d17-49":{"renderedLength":414,"gzipLength":259,"brotliLength":219,"metaUid":"86fe8d17-48"},"86fe8d17-51":{"renderedLength":782,"gzipLength":409,"brotliLength":345,"metaUid":"86fe8d17-50"},"86fe8d17-53":{"renderedLength":717,"gzipLength":372,"brotliLength":319,"metaUid":"86fe8d17-52"},"86fe8d17-55":{"renderedLength":483,"gzipLength":251,"brotliLength":208,"metaUid":"86fe8d17-54"},"86fe8d17-57":{"renderedLength":403,"gzipLength":244,"brotliLength":195,"metaUid":"86fe8d17-56"},"86fe8d17-59":{"renderedLength":802,"gzipLength":399,"brotliLength":317,"metaUid":"86fe8d17-58"},"86fe8d17-61":{"renderedLength":692,"gzipLength":342,"brotliLength":289,"metaUid":"86fe8d17-60"},"86fe8d17-63":{"renderedLength":1621,"gzipLength":646,"brotliLength":553,"metaUid":"86fe8d17-62"},"86fe8d17-65":{"renderedLength":600,"gzipLength":308,"brotliLength":267,"metaUid":"86fe8d17-64"},"86fe8d17-67":{"renderedLength":2950,"gzipLength":958,"brotliLength":830,"metaUid":"86fe8d17-66"},"86fe8d17-69":{"renderedLength":80,"gzipLength":92,"brotliLength":72,"metaUid":"86fe8d17-68"},"86fe8d17-71":{"renderedLength":538,"gzipLength":261,"brotliLength":211,"metaUid":"86fe8d17-70"},"86fe8d17-73":{"renderedLength":78,"gzipLength":92,"brotliLength":79,"metaUid":"86fe8d17-72"},"86fe8d17-75":{"renderedLength":2187,"gzipLength":771,"brotliLength":658,"metaUid":"86fe8d17-74"},"86fe8d17-77":{"renderedLength":426,"gzipLength":286,"brotliLength":244,"metaUid":"86fe8d17-76"},"86fe8d17-79":{"renderedLength":1733,"gzipLength":697,"brotliLength":623,"metaUid":"86fe8d17-78"},"86fe8d17-81":{"renderedLength":452,"gzipLength":288,"brotliLength":267,"metaUid":"86fe8d17-80"},"86fe8d17-83":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"metaUid":"86fe8d17-82"}},"nodeMetas":{"86fe8d17-0":{"id":"/src/index.ts","moduleParts":{"index.js":"86fe8d17-1"},"imported":[{"uid":"86fe8d17-84"},{"uid":"86fe8d17-85"},{"uid":"86fe8d17-86"},{"uid":"86fe8d17-87"},{"uid":"86fe8d17-88"},{"uid":"86fe8d17-89"},{"uid":"86fe8d17-90"},{"uid":"86fe8d17-91"},{"uid":"86fe8d17-92"},{"uid":"86fe8d17-93"},{"uid":"86fe8d17-94"},{"uid":"86fe8d17-95"},{"uid":"86fe8d17-96"},{"uid":"86fe8d17-97"},{"uid":"86fe8d17-98"},{"uid":"86fe8d17-99"}],"importedBy":[],"isEntry":true},"86fe8d17-2":{"id":"/src/step/useStep.ts","moduleParts":{"step/useStep.js":"86fe8d17-3"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-68"}],"importedBy":[{"uid":"86fe8d17-99"},{"uid":"86fe8d17-4"}]},"86fe8d17-4":{"id":"/src/step/FormStep.tsx","moduleParts":{"step/FormStep.js":"86fe8d17-5"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-2"}],"importedBy":[{"uid":"86fe8d17-99"},{"uid":"86fe8d17-8"}]},"86fe8d17-6":{"id":"/src/step/Step.tsx","moduleParts":{"step/Step.js":"86fe8d17-7"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"}],"importedBy":[{"uid":"86fe8d17-99"},{"uid":"86fe8d17-8"}]},"86fe8d17-8":{"id":"/src/step/StepProvider.tsx","moduleParts":{"step/StepProvider.js":"86fe8d17-9"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-117"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-4"},{"uid":"86fe8d17-6"},{"uid":"86fe8d17-68"}],"importedBy":[{"uid":"86fe8d17-99"}]},"86fe8d17-10":{"id":"/src/date/LocalDatePicker/LocalDatePicker.tsx","moduleParts":{"date/LocalDatePicker/LocalDatePicker.js":"86fe8d17-11"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-101"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-104"},{"uid":"86fe8d17-70"},{"uid":"86fe8d17-76"}],"importedBy":[{"uid":"86fe8d17-84"}]},"86fe8d17-12":{"id":"/src/date/LocalMonthSelect/LocalMonthSelect.tsx","moduleParts":{"date/LocalMonthSelect/LocalMonthSelect.js":"86fe8d17-13"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-105"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"}],"importedBy":[{"uid":"86fe8d17-85"}]},"86fe8d17-14":{"id":"/src/date/MonthDayPicker/MonthDayPicker.tsx","moduleParts":{"date/MonthDayPicker/MonthDayPicker.js":"86fe8d17-15"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-101"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-104"}],"importedBy":[{"uid":"86fe8d17-87"}]},"86fe8d17-16":{"id":"/src/date/MonthYearPicker/MonthYearPicker.tsx","moduleParts":{"date/MonthYearPicker/MonthYearPicker.js":"86fe8d17-17"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-105"},{"uid":"86fe8d17-101"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-104"}],"importedBy":[{"uid":"86fe8d17-88"}]},"86fe8d17-18":{"id":"/src/inputs/MaskedInput/useMaskedInput.ts","moduleParts":{"inputs/MaskedInput/useMaskedInput.js":"86fe8d17-19"},"imported":[{"uid":"86fe8d17-102"},{"uid":"86fe8d17-109"},{"uid":"86fe8d17-100"},{"uid":"86fe8d17-110"}],"importedBy":[{"uid":"86fe8d17-91"},{"uid":"86fe8d17-24"},{"uid":"86fe8d17-28"},{"uid":"86fe8d17-78"}]},"86fe8d17-20":{"id":"/src/date/YearSelect/YearSelect.tsx","moduleParts":{"date/YearSelect/YearSelect.js":"86fe8d17-21"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"}],"importedBy":[{"uid":"86fe8d17-89"}]},"86fe8d17-22":{"id":"/src/inputs/TableInput/addRowOnTab.ts","moduleParts":{"inputs/TableInput/addRowOnTab.js":"86fe8d17-23"},"imported":[],"importedBy":[{"uid":"86fe8d17-96"},{"uid":"86fe8d17-38"},{"uid":"86fe8d17-42"},{"uid":"86fe8d17-50"},{"uid":"86fe8d17-52"}]},"86fe8d17-24":{"id":"/src/inputs/MaskedInput/MaskedInput.tsx","moduleParts":{"inputs/MaskedInput/MaskedInput.js":"86fe8d17-25"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-18"}],"importedBy":[{"uid":"86fe8d17-91"}]},"86fe8d17-26":{"id":"/src/date/LocalTimePicker/LocalTimePicker.tsx","moduleParts":{"date/LocalTimePicker/LocalTimePicker.js":"86fe8d17-27"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-105"},{"uid":"86fe8d17-101"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-104"},{"uid":"86fe8d17-80"}],"importedBy":[{"uid":"86fe8d17-86"}]},"86fe8d17-28":{"id":"/src/inputs/SinInput/SinInput.tsx","moduleParts":{"inputs/SinInput/SinInput.js":"86fe8d17-29"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-113"},{"uid":"86fe8d17-18"}],"importedBy":[{"uid":"86fe8d17-95"}]},"86fe8d17-30":{"id":"/src/inputs/CreditCardInput/CreditCardInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardInput.js":"86fe8d17-31"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-101"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-111"},{"uid":"86fe8d17-112"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-88"},{"uid":"86fe8d17-78"},{"uid":"86fe8d17-72"}],"importedBy":[{"uid":"86fe8d17-94"}]},"86fe8d17-32":{"id":"/src/inputs/PhoneInput/PhoneInput.tsx","moduleParts":{"inputs/PhoneInput/PhoneInput.js":"86fe8d17-33"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-91"}],"importedBy":[{"uid":"86fe8d17-93"}]},"86fe8d17-34":{"id":"/src/inputs/TableInput/TableInput.tsx","moduleParts":{"inputs/TableInput/TableInput.js":"86fe8d17-35"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-106"},{"uid":"86fe8d17-114"},{"uid":"86fe8d17-103"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-36":{"id":"/src/inputs/TableInput/MoneyCell.tsx","moduleParts":{"inputs/TableInput/MoneyCell.js":"86fe8d17-37"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-115"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-38":{"id":"/src/inputs/TableInput/MoneyEditCell.tsx","moduleParts":{"inputs/TableInput/MoneyEditCell.js":"86fe8d17-39"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-97"},{"uid":"86fe8d17-22"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-40":{"id":"/src/inputs/TableInput/LocalDateCell.tsx","moduleParts":{"inputs/TableInput/LocalDateCell.js":"86fe8d17-41"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-101"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-42":{"id":"/src/inputs/TableInput/CheckboxEditCell.tsx","moduleParts":{"inputs/TableInput/CheckboxEditCell.js":"86fe8d17-43"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-22"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-44":{"id":"/src/inputs/TableInput/LocalDateEditCell.tsx","moduleParts":{"inputs/TableInput/LocalDateEditCell.js":"86fe8d17-45"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-84"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-46":{"id":"/src/inputs/TableInput/LocalTimeEditCell.tsx","moduleParts":{"inputs/TableInput/LocalTimeEditCell.js":"86fe8d17-47"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-86"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-48":{"id":"/src/inputs/TableInput/MoneySumFooter.tsx","moduleParts":{"inputs/TableInput/MoneySumFooter.js":"86fe8d17-49"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-115"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-50":{"id":"/src/inputs/TableInput/NumberEditCell.tsx","moduleParts":{"inputs/TableInput/NumberEditCell.js":"86fe8d17-51"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-22"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-52":{"id":"/src/inputs/TableInput/StringEditCell.tsx","moduleParts":{"inputs/TableInput/StringEditCell.js":"86fe8d17-53"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-22"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-54":{"id":"/src/inputs/TableInput/DropdownCell.tsx","moduleParts":{"inputs/TableInput/DropdownCell.js":"86fe8d17-55"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-103"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-56":{"id":"/src/inputs/TableInput/HoverCell.tsx","moduleParts":{"inputs/TableInput/HoverCell.js":"86fe8d17-57"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"}],"importedBy":[{"uid":"86fe8d17-96"}]},"86fe8d17-58":{"id":"/src/money/MoneyInput/MoneyInput.tsx","moduleParts":{"money/MoneyInput/MoneyInput.js":"86fe8d17-59"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-115"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-116"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-74"}],"importedBy":[{"uid":"86fe8d17-97"}]},"86fe8d17-60":{"id":"/src/inputs/RadioGroup/RadioGroup.tsx","moduleParts":{"inputs/RadioGroup/RadioGroup.js":"86fe8d17-61"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-103"}],"importedBy":[{"uid":"86fe8d17-92"}]},"86fe8d17-62":{"id":"/src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","moduleParts":{"money/MoneyCurrencyInput/MoneyCurrencyInput.js":"86fe8d17-63"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-115"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-116"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-74"}],"importedBy":[{"uid":"86fe8d17-98"}]},"86fe8d17-64":{"id":"/src/form/TForm/TForm.tsx","moduleParts":{"form/TForm/TForm.js":"86fe8d17-65"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-106"},{"uid":"86fe8d17-66"}],"importedBy":[{"uid":"86fe8d17-90"}]},"86fe8d17-66":{"id":"/src/form/TForm/useTForm.tsx","moduleParts":{"form/TForm/useTForm.js":"86fe8d17-67"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-107"},{"uid":"86fe8d17-106"},{"uid":"86fe8d17-108"},{"uid":"86fe8d17-103"}],"importedBy":[{"uid":"86fe8d17-90"},{"uid":"86fe8d17-64"}]},"86fe8d17-68":{"id":"/src/step/stepContext.ts","moduleParts":{"step/stepContext.js":"86fe8d17-69"},"imported":[{"uid":"86fe8d17-100"}],"importedBy":[{"uid":"86fe8d17-2"},{"uid":"86fe8d17-8"}]},"86fe8d17-70":{"id":"/src/date/DatePicker/styles.css","moduleParts":{"date/DatePicker/styles.css.js":"86fe8d17-71"},"imported":[{"uid":"86fe8d17-82"}],"importedBy":[{"uid":"86fe8d17-10"},{"uid":"86fe8d17-104"}]},"86fe8d17-72":{"id":"/src/inputs/CreditCardInput/styles.css","moduleParts":{"inputs/CreditCardInput/styles.css.js":"86fe8d17-73"},"imported":[{"uid":"86fe8d17-82"}],"importedBy":[{"uid":"86fe8d17-30"}]},"86fe8d17-74":{"id":"/src/money/useMoneyInput.ts","moduleParts":{"money/useMoneyInput.js":"86fe8d17-75"},"imported":[{"uid":"86fe8d17-115"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-109"},{"uid":"86fe8d17-116"},{"uid":"86fe8d17-100"}],"importedBy":[{"uid":"86fe8d17-58"},{"uid":"86fe8d17-62"}]},"86fe8d17-76":{"id":"/src/date/LocalDatePicker/MaskedDateInput.tsx","moduleParts":{"date/LocalDatePicker/MaskedDateInput.js":"86fe8d17-77"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-91"}],"importedBy":[{"uid":"86fe8d17-10"}]},"86fe8d17-78":{"id":"/src/inputs/CreditCardInput/CreditCardNumberInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardNumberInput.js":"86fe8d17-79"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-119"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-120"},{"uid":"86fe8d17-103"},{"uid":"86fe8d17-18"}],"importedBy":[{"uid":"86fe8d17-30"}]},"86fe8d17-80":{"id":"/src/date/LocalTimePicker/MaskedTimeInput.tsx","moduleParts":{"date/LocalTimePicker/MaskedTimeInput.js":"86fe8d17-81"},"imported":[{"uid":"86fe8d17-100"},{"uid":"86fe8d17-102"},{"uid":"86fe8d17-91"}],"importedBy":[{"uid":"86fe8d17-26"}]},"86fe8d17-82":{"id":"/home/artemis/GitHub/thr-addons/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"86fe8d17-83"},"imported":[],"importedBy":[{"uid":"86fe8d17-70"},{"uid":"86fe8d17-72"}]},"86fe8d17-84":{"id":"/src/date/LocalDatePicker/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-10"}],"importedBy":[{"uid":"86fe8d17-0"},{"uid":"86fe8d17-44"}]},"86fe8d17-85":{"id":"/src/date/LocalMonthSelect/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-12"}],"importedBy":[{"uid":"86fe8d17-0"}]},"86fe8d17-86":{"id":"/src/date/LocalTimePicker/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-26"}],"importedBy":[{"uid":"86fe8d17-0"},{"uid":"86fe8d17-46"}]},"86fe8d17-87":{"id":"/src/date/MonthDayPicker/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-14"}],"importedBy":[{"uid":"86fe8d17-0"}]},"86fe8d17-88":{"id":"/src/date/MonthYearPicker/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-16"}],"importedBy":[{"uid":"86fe8d17-0"},{"uid":"86fe8d17-30"}]},"86fe8d17-89":{"id":"/src/date/YearSelect/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-20"}],"importedBy":[{"uid":"86fe8d17-0"}]},"86fe8d17-90":{"id":"/src/form/TForm/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-64"},{"uid":"86fe8d17-66"}],"importedBy":[{"uid":"86fe8d17-0"}]},"86fe8d17-91":{"id":"/src/inputs/MaskedInput/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-24"},{"uid":"86fe8d17-18"}],"importedBy":[{"uid":"86fe8d17-0"},{"uid":"86fe8d17-32"},{"uid":"86fe8d17-76"},{"uid":"86fe8d17-80"}]},"86fe8d17-92":{"id":"/src/inputs/RadioGroup/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-60"}],"importedBy":[{"uid":"86fe8d17-0"}]},"86fe8d17-93":{"id":"/src/inputs/PhoneInput/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-32"}],"importedBy":[{"uid":"86fe8d17-0"}]},"86fe8d17-94":{"id":"/src/inputs/CreditCardInput/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-30"}],"importedBy":[{"uid":"86fe8d17-0"}]},"86fe8d17-95":{"id":"/src/inputs/SinInput/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-28"}],"importedBy":[{"uid":"86fe8d17-0"}]},"86fe8d17-96":{"id":"/src/inputs/TableInput/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-34"},{"uid":"86fe8d17-36"},{"uid":"86fe8d17-38"},{"uid":"86fe8d17-40"},{"uid":"86fe8d17-42"},{"uid":"86fe8d17-44"},{"uid":"86fe8d17-46"},{"uid":"86fe8d17-48"},{"uid":"86fe8d17-50"},{"uid":"86fe8d17-52"},{"uid":"86fe8d17-54"},{"uid":"86fe8d17-56"},{"uid":"86fe8d17-22"}],"importedBy":[{"uid":"86fe8d17-0"}]},"86fe8d17-97":{"id":"/src/money/MoneyInput/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-58"}],"importedBy":[{"uid":"86fe8d17-0"},{"uid":"86fe8d17-38"}]},"86fe8d17-98":{"id":"/src/money/MoneyCurrencyInput/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-62"}],"importedBy":[{"uid":"86fe8d17-0"}]},"86fe8d17-99":{"id":"/src/step/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-6"},{"uid":"86fe8d17-2"},{"uid":"86fe8d17-4"},{"uid":"86fe8d17-8"}],"importedBy":[{"uid":"86fe8d17-0"}]},"86fe8d17-100":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-10"},{"uid":"86fe8d17-12"},{"uid":"86fe8d17-26"},{"uid":"86fe8d17-14"},{"uid":"86fe8d17-16"},{"uid":"86fe8d17-20"},{"uid":"86fe8d17-64"},{"uid":"86fe8d17-66"},{"uid":"86fe8d17-24"},{"uid":"86fe8d17-18"},{"uid":"86fe8d17-60"},{"uid":"86fe8d17-32"},{"uid":"86fe8d17-30"},{"uid":"86fe8d17-28"},{"uid":"86fe8d17-34"},{"uid":"86fe8d17-36"},{"uid":"86fe8d17-38"},{"uid":"86fe8d17-40"},{"uid":"86fe8d17-42"},{"uid":"86fe8d17-44"},{"uid":"86fe8d17-46"},{"uid":"86fe8d17-48"},{"uid":"86fe8d17-50"},{"uid":"86fe8d17-52"},{"uid":"86fe8d17-54"},{"uid":"86fe8d17-56"},{"uid":"86fe8d17-58"},{"uid":"86fe8d17-62"},{"uid":"86fe8d17-6"},{"uid":"86fe8d17-2"},{"uid":"86fe8d17-4"},{"uid":"86fe8d17-8"},{"uid":"86fe8d17-76"},{"uid":"86fe8d17-80"},{"uid":"86fe8d17-78"},{"uid":"86fe8d17-74"},{"uid":"86fe8d17-68"}],"isExternal":true},"86fe8d17-101":{"id":"@thx/date","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-10"},{"uid":"86fe8d17-26"},{"uid":"86fe8d17-14"},{"uid":"86fe8d17-16"},{"uid":"86fe8d17-30"},{"uid":"86fe8d17-40"}],"isExternal":true},"86fe8d17-102":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-10"},{"uid":"86fe8d17-12"},{"uid":"86fe8d17-26"},{"uid":"86fe8d17-14"},{"uid":"86fe8d17-16"},{"uid":"86fe8d17-20"},{"uid":"86fe8d17-64"},{"uid":"86fe8d17-24"},{"uid":"86fe8d17-18"},{"uid":"86fe8d17-60"},{"uid":"86fe8d17-32"},{"uid":"86fe8d17-30"},{"uid":"86fe8d17-28"},{"uid":"86fe8d17-34"},{"uid":"86fe8d17-38"},{"uid":"86fe8d17-42"},{"uid":"86fe8d17-44"},{"uid":"86fe8d17-46"},{"uid":"86fe8d17-50"},{"uid":"86fe8d17-52"},{"uid":"86fe8d17-56"},{"uid":"86fe8d17-58"},{"uid":"86fe8d17-62"},{"uid":"86fe8d17-6"},{"uid":"86fe8d17-4"},{"uid":"86fe8d17-8"},{"uid":"86fe8d17-76"},{"uid":"86fe8d17-80"},{"uid":"86fe8d17-78"},{"uid":"86fe8d17-74"}],"isExternal":true},"86fe8d17-103":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-10"},{"uid":"86fe8d17-12"},{"uid":"86fe8d17-26"},{"uid":"86fe8d17-14"},{"uid":"86fe8d17-16"},{"uid":"86fe8d17-20"},{"uid":"86fe8d17-66"},{"uid":"86fe8d17-60"},{"uid":"86fe8d17-32"},{"uid":"86fe8d17-30"},{"uid":"86fe8d17-28"},{"uid":"86fe8d17-34"},{"uid":"86fe8d17-42"},{"uid":"86fe8d17-50"},{"uid":"86fe8d17-52"},{"uid":"86fe8d17-54"},{"uid":"86fe8d17-58"},{"uid":"86fe8d17-62"},{"uid":"86fe8d17-8"},{"uid":"86fe8d17-78"}],"isExternal":true},"86fe8d17-104":{"id":"/src/date/DatePicker/index.ts","moduleParts":{},"imported":[{"uid":"86fe8d17-118"},{"uid":"86fe8d17-70"}],"importedBy":[{"uid":"86fe8d17-10"},{"uid":"86fe8d17-26"},{"uid":"86fe8d17-14"},{"uid":"86fe8d17-16"}]},"86fe8d17-105":{"id":"@js-joda/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-12"},{"uid":"86fe8d17-26"},{"uid":"86fe8d17-16"}],"isExternal":true},"86fe8d17-106":{"id":"formik","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-64"},{"uid":"86fe8d17-66"},{"uid":"86fe8d17-34"}],"isExternal":true},"86fe8d17-107":{"id":"flat","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-66"}],"isExternal":true},"86fe8d17-108":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-66"}],"isExternal":true},"86fe8d17-109":{"id":"inputmask","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-18"},{"uid":"86fe8d17-74"}],"isExternal":true},"86fe8d17-110":{"id":"use-deep-compare-effect","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-18"}],"isExternal":true},"86fe8d17-111":{"id":"react-credit-cards","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-30"}],"isExternal":true},"86fe8d17-112":{"id":"react-credit-cards/es/styles-compiled.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-30"}],"isExternal":true},"86fe8d17-113":{"id":"social-insurance-number","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-28"}],"isExternal":true},"86fe8d17-114":{"id":"react-table","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-34"}],"isExternal":true},"86fe8d17-115":{"id":"@thx/money","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-36"},{"uid":"86fe8d17-48"},{"uid":"86fe8d17-58"},{"uid":"86fe8d17-62"},{"uid":"86fe8d17-74"}],"isExternal":true},"86fe8d17-116":{"id":"js-money","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-58"},{"uid":"86fe8d17-62"},{"uid":"86fe8d17-74"}],"isExternal":true},"86fe8d17-117":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-8"}],"isExternal":true},"86fe8d17-118":{"id":"react-datepicker","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-104"}],"isExternal":true},"86fe8d17-119":{"id":"credit-card-type","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-78"}],"isExternal":true},"86fe8d17-120":{"id":"luhn","moduleParts":{},"imported":[],"importedBy":[{"uid":"86fe8d17-78"}],"isExternal":true}},"env":{"rollup":"2.79.2"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
4932
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src/index.ts","uid":"df0f1bdb-1"}]},{"name":"step/Step.js","children":[{"name":"src/step/Step.tsx","uid":"df0f1bdb-3"}]},{"name":"step/FormStep.js","children":[{"name":"src/step/FormStep.tsx","uid":"df0f1bdb-5"}]},{"name":"step/useStep.js","children":[{"name":"src/step/useStep.ts","uid":"df0f1bdb-7"}]},{"name":"step/StepProvider.js","children":[{"name":"src/step/StepProvider.tsx","uid":"df0f1bdb-9"}]},{"name":"date/LocalMonthSelect/LocalMonthSelect.js","children":[{"name":"src/date/LocalMonthSelect/LocalMonthSelect.tsx","uid":"df0f1bdb-11"}]},{"name":"date/LocalTimePicker/LocalTimePicker.js","children":[{"name":"src/date/LocalTimePicker/LocalTimePicker.tsx","uid":"df0f1bdb-13"}]},{"name":"date/MonthYearPicker/MonthYearPicker.js","children":[{"name":"src/date/MonthYearPicker/MonthYearPicker.tsx","uid":"df0f1bdb-15"}]},{"name":"date/LocalDatePicker/LocalDatePicker.js","children":[{"name":"src/date/LocalDatePicker/LocalDatePicker.tsx","uid":"df0f1bdb-17"}]},{"name":"date/YearSelect/YearSelect.js","children":[{"name":"src/date/YearSelect/YearSelect.tsx","uid":"df0f1bdb-19"}]},{"name":"form/TForm/TForm.js","children":[{"name":"src/form/TForm/TForm.tsx","uid":"df0f1bdb-21"}]},{"name":"form/TForm/useTForm.js","children":[{"name":"src/form/TForm/useTForm.tsx","uid":"df0f1bdb-23"}]},{"name":"inputs/TableInput/addRowOnTab.js","children":[{"name":"src/inputs/TableInput/addRowOnTab.ts","uid":"df0f1bdb-25"}]},{"name":"inputs/RadioGroup/RadioGroup.js","children":[{"name":"src/inputs/RadioGroup/RadioGroup.tsx","uid":"df0f1bdb-27"}]},{"name":"inputs/SinInput/SinInput.js","children":[{"name":"src/inputs/SinInput/SinInput.tsx","uid":"df0f1bdb-29"}]},{"name":"money/MoneyInput/MoneyInput.js","children":[{"name":"src/money/MoneyInput/MoneyInput.tsx","uid":"df0f1bdb-31"}]},{"name":"inputs/PhoneInput/PhoneInput.js","children":[{"name":"src/inputs/PhoneInput/PhoneInput.tsx","uid":"df0f1bdb-33"}]},{"name":"inputs/CreditCardInput/CreditCardInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardInput.tsx","uid":"df0f1bdb-35"}]},{"name":"date/MonthDayPicker/MonthDayPicker.js","children":[{"name":"src/date/MonthDayPicker/MonthDayPicker.tsx","uid":"df0f1bdb-37"}]},{"name":"inputs/TableInput/TableInput.js","children":[{"name":"src/inputs/TableInput/TableInput.tsx","uid":"df0f1bdb-39"}]},{"name":"inputs/TableInput/MoneyCell.js","children":[{"name":"src/inputs/TableInput/MoneyCell.tsx","uid":"df0f1bdb-41"}]},{"name":"inputs/TableInput/MoneyEditCell.js","children":[{"name":"src/inputs/TableInput/MoneyEditCell.tsx","uid":"df0f1bdb-43"}]},{"name":"money/MoneyCurrencyInput/MoneyCurrencyInput.js","children":[{"name":"src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","uid":"df0f1bdb-45"}]},{"name":"inputs/TableInput/LocalDateCell.js","children":[{"name":"src/inputs/TableInput/LocalDateCell.tsx","uid":"df0f1bdb-47"}]},{"name":"inputs/TableInput/CheckboxEditCell.js","children":[{"name":"src/inputs/TableInput/CheckboxEditCell.tsx","uid":"df0f1bdb-49"}]},{"name":"inputs/TableInput/LocalTimeEditCell.js","children":[{"name":"src/inputs/TableInput/LocalTimeEditCell.tsx","uid":"df0f1bdb-51"}]},{"name":"inputs/TableInput/MoneySumFooter.js","children":[{"name":"src/inputs/TableInput/MoneySumFooter.tsx","uid":"df0f1bdb-53"}]},{"name":"inputs/TableInput/LocalDateEditCell.js","children":[{"name":"src/inputs/TableInput/LocalDateEditCell.tsx","uid":"df0f1bdb-55"}]},{"name":"inputs/TableInput/NumberEditCell.js","children":[{"name":"src/inputs/TableInput/NumberEditCell.tsx","uid":"df0f1bdb-57"}]},{"name":"inputs/TableInput/StringEditCell.js","children":[{"name":"src/inputs/TableInput/StringEditCell.tsx","uid":"df0f1bdb-59"}]},{"name":"inputs/TableInput/DropdownCell.js","children":[{"name":"src/inputs/TableInput/DropdownCell.tsx","uid":"df0f1bdb-61"}]},{"name":"inputs/TableInput/HoverCell.js","children":[{"name":"src/inputs/TableInput/HoverCell.tsx","uid":"df0f1bdb-63"}]},{"name":"inputs/MaskedInput/useMaskedInput.js","children":[{"name":"src/inputs/MaskedInput/useMaskedInput.ts","uid":"df0f1bdb-65"}]},{"name":"inputs/MaskedInput/MaskedInput.js","children":[{"name":"src/inputs/MaskedInput/MaskedInput.tsx","uid":"df0f1bdb-67"}]},{"name":"step/stepContext.js","children":[{"name":"src/step/stepContext.ts","uid":"df0f1bdb-69"}]},{"name":"money/useMoneyInput.js","children":[{"name":"src/money/useMoneyInput.ts","uid":"df0f1bdb-71"}]},{"name":"inputs/CreditCardInput/styles.css.js","children":[{"name":"src/inputs/CreditCardInput/styles.css","uid":"df0f1bdb-73"}]},{"name":"date/DatePicker/styles.css.js","children":[{"name":"src/date/DatePicker/styles.css","uid":"df0f1bdb-75"}]},{"name":"inputs/CreditCardInput/CreditCardNumberInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardNumberInput.tsx","uid":"df0f1bdb-77"}]},{"name":"date/LocalDatePicker/MaskedDateInput.js","children":[{"name":"src/date/LocalDatePicker/MaskedDateInput.tsx","uid":"df0f1bdb-79"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/artemis/Github/thr-addons/node_modules/style-inject/dist/style-inject.es.js","uid":"df0f1bdb-81"}]}],"isRoot":true},"nodeParts":{"df0f1bdb-1":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"df0f1bdb-0"},"df0f1bdb-3":{"renderedLength":203,"gzipLength":155,"brotliLength":111,"metaUid":"df0f1bdb-2"},"df0f1bdb-5":{"renderedLength":440,"gzipLength":270,"brotliLength":214,"metaUid":"df0f1bdb-4"},"df0f1bdb-7":{"renderedLength":113,"gzipLength":107,"brotliLength":82,"metaUid":"df0f1bdb-6"},"df0f1bdb-9":{"renderedLength":3529,"gzipLength":1015,"brotliLength":861,"metaUid":"df0f1bdb-8"},"df0f1bdb-11":{"renderedLength":1135,"gzipLength":505,"brotliLength":415,"metaUid":"df0f1bdb-10"},"df0f1bdb-13":{"renderedLength":3847,"gzipLength":1160,"brotliLength":1032,"metaUid":"df0f1bdb-12"},"df0f1bdb-15":{"renderedLength":1229,"gzipLength":496,"brotliLength":424,"metaUid":"df0f1bdb-14"},"df0f1bdb-17":{"renderedLength":3161,"gzipLength":952,"brotliLength":853,"metaUid":"df0f1bdb-16"},"df0f1bdb-19":{"renderedLength":1553,"gzipLength":579,"brotliLength":461,"metaUid":"df0f1bdb-18"},"df0f1bdb-21":{"renderedLength":600,"gzipLength":308,"brotliLength":267,"metaUid":"df0f1bdb-20"},"df0f1bdb-23":{"renderedLength":2950,"gzipLength":958,"brotliLength":830,"metaUid":"df0f1bdb-22"},"df0f1bdb-25":{"renderedLength":312,"gzipLength":199,"brotliLength":173,"metaUid":"df0f1bdb-24"},"df0f1bdb-27":{"renderedLength":692,"gzipLength":342,"brotliLength":289,"metaUid":"df0f1bdb-26"},"df0f1bdb-29":{"renderedLength":1166,"gzipLength":540,"brotliLength":469,"metaUid":"df0f1bdb-28"},"df0f1bdb-31":{"renderedLength":802,"gzipLength":399,"brotliLength":317,"metaUid":"df0f1bdb-30"},"df0f1bdb-33":{"renderedLength":908,"gzipLength":382,"brotliLength":319,"metaUid":"df0f1bdb-32"},"df0f1bdb-35":{"renderedLength":2324,"gzipLength":584,"brotliLength":495,"metaUid":"df0f1bdb-34"},"df0f1bdb-37":{"renderedLength":1965,"gzipLength":655,"brotliLength":544,"metaUid":"df0f1bdb-36"},"df0f1bdb-39":{"renderedLength":2891,"gzipLength":854,"brotliLength":780,"metaUid":"df0f1bdb-38"},"df0f1bdb-41":{"renderedLength":257,"gzipLength":185,"brotliLength":149,"metaUid":"df0f1bdb-40"},"df0f1bdb-43":{"renderedLength":820,"gzipLength":397,"brotliLength":349,"metaUid":"df0f1bdb-42"},"df0f1bdb-45":{"renderedLength":1621,"gzipLength":646,"brotliLength":553,"metaUid":"df0f1bdb-44"},"df0f1bdb-47":{"renderedLength":285,"gzipLength":198,"brotliLength":170,"metaUid":"df0f1bdb-46"},"df0f1bdb-49":{"renderedLength":702,"gzipLength":369,"brotliLength":330,"metaUid":"df0f1bdb-48"},"df0f1bdb-51":{"renderedLength":622,"gzipLength":322,"brotliLength":269,"metaUid":"df0f1bdb-50"},"df0f1bdb-53":{"renderedLength":414,"gzipLength":259,"brotliLength":219,"metaUid":"df0f1bdb-52"},"df0f1bdb-55":{"renderedLength":695,"gzipLength":349,"brotliLength":295,"metaUid":"df0f1bdb-54"},"df0f1bdb-57":{"renderedLength":782,"gzipLength":409,"brotliLength":345,"metaUid":"df0f1bdb-56"},"df0f1bdb-59":{"renderedLength":717,"gzipLength":372,"brotliLength":319,"metaUid":"df0f1bdb-58"},"df0f1bdb-61":{"renderedLength":483,"gzipLength":251,"brotliLength":208,"metaUid":"df0f1bdb-60"},"df0f1bdb-63":{"renderedLength":403,"gzipLength":244,"brotliLength":195,"metaUid":"df0f1bdb-62"},"df0f1bdb-65":{"renderedLength":1487,"gzipLength":501,"brotliLength":423,"metaUid":"df0f1bdb-64"},"df0f1bdb-67":{"renderedLength":557,"gzipLength":311,"brotliLength":258,"metaUid":"df0f1bdb-66"},"df0f1bdb-69":{"renderedLength":80,"gzipLength":92,"brotliLength":72,"metaUid":"df0f1bdb-68"},"df0f1bdb-71":{"renderedLength":2187,"gzipLength":771,"brotliLength":658,"metaUid":"df0f1bdb-70"},"df0f1bdb-73":{"renderedLength":78,"gzipLength":92,"brotliLength":79,"metaUid":"df0f1bdb-72"},"df0f1bdb-75":{"renderedLength":538,"gzipLength":261,"brotliLength":211,"metaUid":"df0f1bdb-74"},"df0f1bdb-77":{"renderedLength":1733,"gzipLength":697,"brotliLength":623,"metaUid":"df0f1bdb-76"},"df0f1bdb-79":{"renderedLength":426,"gzipLength":286,"brotliLength":244,"metaUid":"df0f1bdb-78"},"df0f1bdb-81":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"metaUid":"df0f1bdb-80"}},"nodeMetas":{"df0f1bdb-0":{"id":"/src/index.ts","moduleParts":{"index.js":"df0f1bdb-1"},"imported":[{"uid":"df0f1bdb-82"},{"uid":"df0f1bdb-83"},{"uid":"df0f1bdb-84"},{"uid":"df0f1bdb-85"},{"uid":"df0f1bdb-86"},{"uid":"df0f1bdb-87"},{"uid":"df0f1bdb-88"},{"uid":"df0f1bdb-89"},{"uid":"df0f1bdb-90"},{"uid":"df0f1bdb-91"},{"uid":"df0f1bdb-92"},{"uid":"df0f1bdb-93"},{"uid":"df0f1bdb-94"},{"uid":"df0f1bdb-95"},{"uid":"df0f1bdb-96"},{"uid":"df0f1bdb-97"}],"importedBy":[],"isEntry":true},"df0f1bdb-2":{"id":"/src/step/Step.tsx","moduleParts":{"step/Step.js":"df0f1bdb-3"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"}],"importedBy":[{"uid":"df0f1bdb-97"},{"uid":"df0f1bdb-8"}]},"df0f1bdb-4":{"id":"/src/step/FormStep.tsx","moduleParts":{"step/FormStep.js":"df0f1bdb-5"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-6"}],"importedBy":[{"uid":"df0f1bdb-97"},{"uid":"df0f1bdb-8"}]},"df0f1bdb-6":{"id":"/src/step/useStep.ts","moduleParts":{"step/useStep.js":"df0f1bdb-7"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-68"}],"importedBy":[{"uid":"df0f1bdb-97"},{"uid":"df0f1bdb-4"}]},"df0f1bdb-8":{"id":"/src/step/StepProvider.tsx","moduleParts":{"step/StepProvider.js":"df0f1bdb-9"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-116"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-4"},{"uid":"df0f1bdb-2"},{"uid":"df0f1bdb-68"}],"importedBy":[{"uid":"df0f1bdb-97"}]},"df0f1bdb-10":{"id":"/src/date/LocalMonthSelect/LocalMonthSelect.tsx","moduleParts":{"date/LocalMonthSelect/LocalMonthSelect.js":"df0f1bdb-11"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-103"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-101"}],"importedBy":[{"uid":"df0f1bdb-83"}]},"df0f1bdb-12":{"id":"/src/date/LocalTimePicker/LocalTimePicker.tsx","moduleParts":{"date/LocalTimePicker/LocalTimePicker.js":"df0f1bdb-13"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-104"},{"uid":"df0f1bdb-103"},{"uid":"df0f1bdb-99"}],"importedBy":[{"uid":"df0f1bdb-84"}]},"df0f1bdb-14":{"id":"/src/date/MonthYearPicker/MonthYearPicker.tsx","moduleParts":{"date/MonthYearPicker/MonthYearPicker.js":"df0f1bdb-15"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-103"},{"uid":"df0f1bdb-99"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-102"}],"importedBy":[{"uid":"df0f1bdb-86"}]},"df0f1bdb-16":{"id":"/src/date/LocalDatePicker/LocalDatePicker.tsx","moduleParts":{"date/LocalDatePicker/LocalDatePicker.js":"df0f1bdb-17"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-99"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-102"},{"uid":"df0f1bdb-74"},{"uid":"df0f1bdb-78"}],"importedBy":[{"uid":"df0f1bdb-82"}]},"df0f1bdb-18":{"id":"/src/date/YearSelect/YearSelect.tsx","moduleParts":{"date/YearSelect/YearSelect.js":"df0f1bdb-19"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-101"}],"importedBy":[{"uid":"df0f1bdb-87"}]},"df0f1bdb-20":{"id":"/src/form/TForm/TForm.tsx","moduleParts":{"form/TForm/TForm.js":"df0f1bdb-21"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-105"},{"uid":"df0f1bdb-22"}],"importedBy":[{"uid":"df0f1bdb-88"}]},"df0f1bdb-22":{"id":"/src/form/TForm/useTForm.tsx","moduleParts":{"form/TForm/useTForm.js":"df0f1bdb-23"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-106"},{"uid":"df0f1bdb-105"},{"uid":"df0f1bdb-107"},{"uid":"df0f1bdb-101"}],"importedBy":[{"uid":"df0f1bdb-88"},{"uid":"df0f1bdb-20"}]},"df0f1bdb-24":{"id":"/src/inputs/TableInput/addRowOnTab.ts","moduleParts":{"inputs/TableInput/addRowOnTab.js":"df0f1bdb-25"},"imported":[],"importedBy":[{"uid":"df0f1bdb-94"},{"uid":"df0f1bdb-42"},{"uid":"df0f1bdb-48"},{"uid":"df0f1bdb-56"},{"uid":"df0f1bdb-58"}]},"df0f1bdb-26":{"id":"/src/inputs/RadioGroup/RadioGroup.tsx","moduleParts":{"inputs/RadioGroup/RadioGroup.js":"df0f1bdb-27"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-101"}],"importedBy":[{"uid":"df0f1bdb-90"}]},"df0f1bdb-28":{"id":"/src/inputs/SinInput/SinInput.tsx","moduleParts":{"inputs/SinInput/SinInput.js":"df0f1bdb-29"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-112"},{"uid":"df0f1bdb-64"}],"importedBy":[{"uid":"df0f1bdb-93"}]},"df0f1bdb-30":{"id":"/src/money/MoneyInput/MoneyInput.tsx","moduleParts":{"money/MoneyInput/MoneyInput.js":"df0f1bdb-31"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-114"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-115"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-70"}],"importedBy":[{"uid":"df0f1bdb-95"}]},"df0f1bdb-32":{"id":"/src/inputs/PhoneInput/PhoneInput.tsx","moduleParts":{"inputs/PhoneInput/PhoneInput.js":"df0f1bdb-33"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-89"}],"importedBy":[{"uid":"df0f1bdb-91"}]},"df0f1bdb-34":{"id":"/src/inputs/CreditCardInput/CreditCardInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardInput.js":"df0f1bdb-35"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-99"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-110"},{"uid":"df0f1bdb-111"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-86"},{"uid":"df0f1bdb-76"},{"uid":"df0f1bdb-72"}],"importedBy":[{"uid":"df0f1bdb-92"}]},"df0f1bdb-36":{"id":"/src/date/MonthDayPicker/MonthDayPicker.tsx","moduleParts":{"date/MonthDayPicker/MonthDayPicker.js":"df0f1bdb-37"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-99"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-102"}],"importedBy":[{"uid":"df0f1bdb-85"}]},"df0f1bdb-38":{"id":"/src/inputs/TableInput/TableInput.tsx","moduleParts":{"inputs/TableInput/TableInput.js":"df0f1bdb-39"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-105"},{"uid":"df0f1bdb-113"},{"uid":"df0f1bdb-101"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-40":{"id":"/src/inputs/TableInput/MoneyCell.tsx","moduleParts":{"inputs/TableInput/MoneyCell.js":"df0f1bdb-41"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-114"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-42":{"id":"/src/inputs/TableInput/MoneyEditCell.tsx","moduleParts":{"inputs/TableInput/MoneyEditCell.js":"df0f1bdb-43"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-95"},{"uid":"df0f1bdb-24"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-44":{"id":"/src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","moduleParts":{"money/MoneyCurrencyInput/MoneyCurrencyInput.js":"df0f1bdb-45"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-114"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-115"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-70"}],"importedBy":[{"uid":"df0f1bdb-96"}]},"df0f1bdb-46":{"id":"/src/inputs/TableInput/LocalDateCell.tsx","moduleParts":{"inputs/TableInput/LocalDateCell.js":"df0f1bdb-47"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-99"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-48":{"id":"/src/inputs/TableInput/CheckboxEditCell.tsx","moduleParts":{"inputs/TableInput/CheckboxEditCell.js":"df0f1bdb-49"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-24"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-50":{"id":"/src/inputs/TableInput/LocalTimeEditCell.tsx","moduleParts":{"inputs/TableInput/LocalTimeEditCell.js":"df0f1bdb-51"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-84"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-52":{"id":"/src/inputs/TableInput/MoneySumFooter.tsx","moduleParts":{"inputs/TableInput/MoneySumFooter.js":"df0f1bdb-53"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-114"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-54":{"id":"/src/inputs/TableInput/LocalDateEditCell.tsx","moduleParts":{"inputs/TableInput/LocalDateEditCell.js":"df0f1bdb-55"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-82"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-56":{"id":"/src/inputs/TableInput/NumberEditCell.tsx","moduleParts":{"inputs/TableInput/NumberEditCell.js":"df0f1bdb-57"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-24"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-58":{"id":"/src/inputs/TableInput/StringEditCell.tsx","moduleParts":{"inputs/TableInput/StringEditCell.js":"df0f1bdb-59"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-24"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-60":{"id":"/src/inputs/TableInput/DropdownCell.tsx","moduleParts":{"inputs/TableInput/DropdownCell.js":"df0f1bdb-61"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-101"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-62":{"id":"/src/inputs/TableInput/HoverCell.tsx","moduleParts":{"inputs/TableInput/HoverCell.js":"df0f1bdb-63"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"}],"importedBy":[{"uid":"df0f1bdb-94"}]},"df0f1bdb-64":{"id":"/src/inputs/MaskedInput/useMaskedInput.ts","moduleParts":{"inputs/MaskedInput/useMaskedInput.js":"df0f1bdb-65"},"imported":[{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-108"},{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-109"}],"importedBy":[{"uid":"df0f1bdb-89"},{"uid":"df0f1bdb-66"},{"uid":"df0f1bdb-28"},{"uid":"df0f1bdb-76"}]},"df0f1bdb-66":{"id":"/src/inputs/MaskedInput/MaskedInput.tsx","moduleParts":{"inputs/MaskedInput/MaskedInput.js":"df0f1bdb-67"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-64"}],"importedBy":[{"uid":"df0f1bdb-89"}]},"df0f1bdb-68":{"id":"/src/step/stepContext.ts","moduleParts":{"step/stepContext.js":"df0f1bdb-69"},"imported":[{"uid":"df0f1bdb-98"}],"importedBy":[{"uid":"df0f1bdb-6"},{"uid":"df0f1bdb-8"}]},"df0f1bdb-70":{"id":"/src/money/useMoneyInput.ts","moduleParts":{"money/useMoneyInput.js":"df0f1bdb-71"},"imported":[{"uid":"df0f1bdb-114"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-108"},{"uid":"df0f1bdb-115"},{"uid":"df0f1bdb-98"}],"importedBy":[{"uid":"df0f1bdb-30"},{"uid":"df0f1bdb-44"}]},"df0f1bdb-72":{"id":"/src/inputs/CreditCardInput/styles.css","moduleParts":{"inputs/CreditCardInput/styles.css.js":"df0f1bdb-73"},"imported":[{"uid":"df0f1bdb-80"}],"importedBy":[{"uid":"df0f1bdb-34"}]},"df0f1bdb-74":{"id":"/src/date/DatePicker/styles.css","moduleParts":{"date/DatePicker/styles.css.js":"df0f1bdb-75"},"imported":[{"uid":"df0f1bdb-80"}],"importedBy":[{"uid":"df0f1bdb-16"},{"uid":"df0f1bdb-102"}]},"df0f1bdb-76":{"id":"/src/inputs/CreditCardInput/CreditCardNumberInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardNumberInput.js":"df0f1bdb-77"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-117"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-118"},{"uid":"df0f1bdb-101"},{"uid":"df0f1bdb-64"}],"importedBy":[{"uid":"df0f1bdb-34"}]},"df0f1bdb-78":{"id":"/src/date/LocalDatePicker/MaskedDateInput.tsx","moduleParts":{"date/LocalDatePicker/MaskedDateInput.js":"df0f1bdb-79"},"imported":[{"uid":"df0f1bdb-98"},{"uid":"df0f1bdb-100"},{"uid":"df0f1bdb-89"}],"importedBy":[{"uid":"df0f1bdb-16"}]},"df0f1bdb-80":{"id":"/home/artemis/Github/thr-addons/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"df0f1bdb-81"},"imported":[],"importedBy":[{"uid":"df0f1bdb-74"},{"uid":"df0f1bdb-72"}]},"df0f1bdb-82":{"id":"/src/date/LocalDatePicker/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-16"}],"importedBy":[{"uid":"df0f1bdb-0"},{"uid":"df0f1bdb-54"}]},"df0f1bdb-83":{"id":"/src/date/LocalMonthSelect/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-10"}],"importedBy":[{"uid":"df0f1bdb-0"}]},"df0f1bdb-84":{"id":"/src/date/LocalTimePicker/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-12"}],"importedBy":[{"uid":"df0f1bdb-0"},{"uid":"df0f1bdb-50"}]},"df0f1bdb-85":{"id":"/src/date/MonthDayPicker/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-36"}],"importedBy":[{"uid":"df0f1bdb-0"}]},"df0f1bdb-86":{"id":"/src/date/MonthYearPicker/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-14"}],"importedBy":[{"uid":"df0f1bdb-0"},{"uid":"df0f1bdb-34"}]},"df0f1bdb-87":{"id":"/src/date/YearSelect/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-18"}],"importedBy":[{"uid":"df0f1bdb-0"}]},"df0f1bdb-88":{"id":"/src/form/TForm/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-20"},{"uid":"df0f1bdb-22"}],"importedBy":[{"uid":"df0f1bdb-0"}]},"df0f1bdb-89":{"id":"/src/inputs/MaskedInput/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-66"},{"uid":"df0f1bdb-64"}],"importedBy":[{"uid":"df0f1bdb-0"},{"uid":"df0f1bdb-32"},{"uid":"df0f1bdb-78"}]},"df0f1bdb-90":{"id":"/src/inputs/RadioGroup/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-26"}],"importedBy":[{"uid":"df0f1bdb-0"}]},"df0f1bdb-91":{"id":"/src/inputs/PhoneInput/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-32"}],"importedBy":[{"uid":"df0f1bdb-0"}]},"df0f1bdb-92":{"id":"/src/inputs/CreditCardInput/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-34"}],"importedBy":[{"uid":"df0f1bdb-0"}]},"df0f1bdb-93":{"id":"/src/inputs/SinInput/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-28"}],"importedBy":[{"uid":"df0f1bdb-0"}]},"df0f1bdb-94":{"id":"/src/inputs/TableInput/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-38"},{"uid":"df0f1bdb-40"},{"uid":"df0f1bdb-42"},{"uid":"df0f1bdb-46"},{"uid":"df0f1bdb-48"},{"uid":"df0f1bdb-54"},{"uid":"df0f1bdb-50"},{"uid":"df0f1bdb-52"},{"uid":"df0f1bdb-56"},{"uid":"df0f1bdb-58"},{"uid":"df0f1bdb-60"},{"uid":"df0f1bdb-62"},{"uid":"df0f1bdb-24"}],"importedBy":[{"uid":"df0f1bdb-0"}]},"df0f1bdb-95":{"id":"/src/money/MoneyInput/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-30"}],"importedBy":[{"uid":"df0f1bdb-0"},{"uid":"df0f1bdb-42"}]},"df0f1bdb-96":{"id":"/src/money/MoneyCurrencyInput/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-44"}],"importedBy":[{"uid":"df0f1bdb-0"}]},"df0f1bdb-97":{"id":"/src/step/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-2"},{"uid":"df0f1bdb-6"},{"uid":"df0f1bdb-4"},{"uid":"df0f1bdb-8"}],"importedBy":[{"uid":"df0f1bdb-0"}]},"df0f1bdb-98":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-16"},{"uid":"df0f1bdb-10"},{"uid":"df0f1bdb-12"},{"uid":"df0f1bdb-36"},{"uid":"df0f1bdb-14"},{"uid":"df0f1bdb-18"},{"uid":"df0f1bdb-20"},{"uid":"df0f1bdb-22"},{"uid":"df0f1bdb-66"},{"uid":"df0f1bdb-64"},{"uid":"df0f1bdb-26"},{"uid":"df0f1bdb-32"},{"uid":"df0f1bdb-34"},{"uid":"df0f1bdb-28"},{"uid":"df0f1bdb-38"},{"uid":"df0f1bdb-40"},{"uid":"df0f1bdb-42"},{"uid":"df0f1bdb-46"},{"uid":"df0f1bdb-48"},{"uid":"df0f1bdb-54"},{"uid":"df0f1bdb-50"},{"uid":"df0f1bdb-52"},{"uid":"df0f1bdb-56"},{"uid":"df0f1bdb-58"},{"uid":"df0f1bdb-60"},{"uid":"df0f1bdb-62"},{"uid":"df0f1bdb-30"},{"uid":"df0f1bdb-44"},{"uid":"df0f1bdb-2"},{"uid":"df0f1bdb-6"},{"uid":"df0f1bdb-4"},{"uid":"df0f1bdb-8"},{"uid":"df0f1bdb-78"},{"uid":"df0f1bdb-76"},{"uid":"df0f1bdb-70"},{"uid":"df0f1bdb-68"}],"isExternal":true},"df0f1bdb-99":{"id":"@thx/date","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-16"},{"uid":"df0f1bdb-12"},{"uid":"df0f1bdb-36"},{"uid":"df0f1bdb-14"},{"uid":"df0f1bdb-34"},{"uid":"df0f1bdb-46"}],"isExternal":true},"df0f1bdb-100":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-16"},{"uid":"df0f1bdb-10"},{"uid":"df0f1bdb-36"},{"uid":"df0f1bdb-14"},{"uid":"df0f1bdb-18"},{"uid":"df0f1bdb-20"},{"uid":"df0f1bdb-66"},{"uid":"df0f1bdb-64"},{"uid":"df0f1bdb-26"},{"uid":"df0f1bdb-32"},{"uid":"df0f1bdb-34"},{"uid":"df0f1bdb-28"},{"uid":"df0f1bdb-38"},{"uid":"df0f1bdb-42"},{"uid":"df0f1bdb-48"},{"uid":"df0f1bdb-54"},{"uid":"df0f1bdb-50"},{"uid":"df0f1bdb-56"},{"uid":"df0f1bdb-58"},{"uid":"df0f1bdb-62"},{"uid":"df0f1bdb-30"},{"uid":"df0f1bdb-44"},{"uid":"df0f1bdb-2"},{"uid":"df0f1bdb-4"},{"uid":"df0f1bdb-8"},{"uid":"df0f1bdb-78"},{"uid":"df0f1bdb-76"},{"uid":"df0f1bdb-70"}],"isExternal":true},"df0f1bdb-101":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-16"},{"uid":"df0f1bdb-10"},{"uid":"df0f1bdb-36"},{"uid":"df0f1bdb-14"},{"uid":"df0f1bdb-18"},{"uid":"df0f1bdb-22"},{"uid":"df0f1bdb-26"},{"uid":"df0f1bdb-32"},{"uid":"df0f1bdb-34"},{"uid":"df0f1bdb-28"},{"uid":"df0f1bdb-38"},{"uid":"df0f1bdb-48"},{"uid":"df0f1bdb-56"},{"uid":"df0f1bdb-58"},{"uid":"df0f1bdb-60"},{"uid":"df0f1bdb-30"},{"uid":"df0f1bdb-44"},{"uid":"df0f1bdb-8"},{"uid":"df0f1bdb-76"}],"isExternal":true},"df0f1bdb-102":{"id":"/src/date/DatePicker/index.ts","moduleParts":{},"imported":[{"uid":"df0f1bdb-104"},{"uid":"df0f1bdb-74"}],"importedBy":[{"uid":"df0f1bdb-16"},{"uid":"df0f1bdb-36"},{"uid":"df0f1bdb-14"}]},"df0f1bdb-103":{"id":"@js-joda/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-10"},{"uid":"df0f1bdb-12"},{"uid":"df0f1bdb-14"}],"isExternal":true},"df0f1bdb-104":{"id":"react-datepicker","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-12"},{"uid":"df0f1bdb-102"}],"isExternal":true},"df0f1bdb-105":{"id":"formik","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-20"},{"uid":"df0f1bdb-22"},{"uid":"df0f1bdb-38"}],"isExternal":true},"df0f1bdb-106":{"id":"flat","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-22"}],"isExternal":true},"df0f1bdb-107":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-22"}],"isExternal":true},"df0f1bdb-108":{"id":"inputmask","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-64"},{"uid":"df0f1bdb-70"}],"isExternal":true},"df0f1bdb-109":{"id":"use-deep-compare-effect","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-64"}],"isExternal":true},"df0f1bdb-110":{"id":"react-credit-cards","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-34"}],"isExternal":true},"df0f1bdb-111":{"id":"react-credit-cards/es/styles-compiled.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-34"}],"isExternal":true},"df0f1bdb-112":{"id":"social-insurance-number","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-28"}],"isExternal":true},"df0f1bdb-113":{"id":"react-table","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-38"}],"isExternal":true},"df0f1bdb-114":{"id":"@thx/money","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-40"},{"uid":"df0f1bdb-52"},{"uid":"df0f1bdb-30"},{"uid":"df0f1bdb-44"},{"uid":"df0f1bdb-70"}],"isExternal":true},"df0f1bdb-115":{"id":"js-money","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-30"},{"uid":"df0f1bdb-44"},{"uid":"df0f1bdb-70"}],"isExternal":true},"df0f1bdb-116":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-8"}],"isExternal":true},"df0f1bdb-117":{"id":"credit-card-type","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-76"}],"isExternal":true},"df0f1bdb-118":{"id":"luhn","moduleParts":{},"imported":[],"importedBy":[{"uid":"df0f1bdb-76"}],"isExternal":true}},"env":{"rollup":"2.79.2"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
4933
4933
 
4934
4934
  const run = () => {
4935
4935
  const width = window.innerWidth;
@@ -1,14 +1,16 @@
1
- import { LocalTime } from '@js-joda/core';
2
1
  import { type ReactElement } from 'react';
3
- import type { ReactDatePickerProps } from 'react-datepicker';
2
+ import { type ReactDatePickerProps } from 'react-datepicker';
4
3
  import { type InputProps } from 'semantic-ui-react';
4
+ import { LocalTime } from '@js-joda/core';
5
+ /** Parse tolerant strings into LocalTime (supports shorthands, compact am/pm like "334pm", and 24h forms). */
6
+ export declare function parseTimeStringToLocalTime(str: string): LocalTime | null;
5
7
  interface ILocalTimePicker {
6
- value?: LocalTime | number | null;
8
+ value?: LocalTime | null;
7
9
  onChange?: (value: LocalTime | null) => void;
8
- onChangeRaw?: () => void;
10
+ onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
9
11
  }
10
- type InputPropsOmitted = Omit<InputProps, 'onChange'>;
11
- type ReactDatePickerPropsOmitted = Omit<Omit<ReactDatePickerProps, 'value'>, 'onChange'>;
12
+ export type InputPropsOmitted = Omit<InputProps, 'onChange' | 'value'>;
13
+ export type ReactDatePickerPropsOmitted = Omit<Omit<ReactDatePickerProps, 'value'>, 'onChange' | 'onBlur'>;
12
14
  export type LocalTimePickerProps = ILocalTimePicker & InputPropsOmitted & ReactDatePickerPropsOmitted;
13
15
  export declare function LocalTimePicker(props: LocalTimePickerProps): ReactElement;
14
16
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thx/controls",
3
- "version": "19.4.0",
3
+ "version": "19.6.0",
4
4
  "description": "A collection of components designed with SemanticUI.",
5
5
  "bugs": {
6
6
  "url": "https://github.com/thr-consulting/thr-addons/issues"
@@ -65,5 +65,5 @@
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  },
68
- "gitHead": "7a7d5df59f82d9b79ab8b78d87be8f5fea299e43"
68
+ "gitHead": "63675829b367d95dfd47a10e3f67cc94edfb01a3"
69
69
  }
@@ -1,24 +0,0 @@
1
- import React, { forwardRef } from 'react';
2
- import debug from 'debug';
3
- import { MaskedInput } from '../../inputs/MaskedInput/MaskedInput.js';
4
- import '../../inputs/MaskedInput/useMaskedInput.js';
5
-
6
- debug("thx.controls.date.LocalTimePicker.MaskedTimeInput");
7
- const MaskedTimeInput = forwardRef(
8
- (props, ref) => {
9
- const { onChange, name, ...rest } = props;
10
- return /* @__PURE__ */ React.createElement(MaskedInput, {
11
- ...rest,
12
- ref,
13
- name,
14
- mask: { alias: "datetime", inputFormat: "hh:MM TT" },
15
- onChange: (value) => {
16
- if (onChange)
17
- onChange({ target: { value: value || "" } });
18
- }
19
- });
20
- }
21
- );
22
-
23
- export { MaskedTimeInput };
24
- //# sourceMappingURL=MaskedTimeInput.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MaskedTimeInput.js","sources":["../../../../src/date/LocalTimePicker/MaskedTimeInput.tsx"],"sourcesContent":["import debug from 'debug';\nimport {forwardRef} from 'react';\nimport {MaskedInput, type MaskedInputProps} from '../../inputs/MaskedInput';\nimport type {MaskedInputRef} from '../../inputs/MaskedInput/MaskedInput';\n\nconst d = debug('thx.controls.date.LocalTimePicker.MaskedTimeInput');\n\nexport type MaskedTimeInputRef = MaskedInputRef;\n\nexport interface MaskedTimeInputValue {\n\ttarget: {\n\t\tvalue: string;\n\t};\n}\n\nexport interface MaskedTimeInputProps {\n\tonChange?: (value: MaskedTimeInputValue) => void;\n}\n\nexport const MaskedTimeInput = forwardRef<MaskedTimeInputRef, MaskedTimeInputProps & Omit<MaskedInputProps, 'onChange'>>(\n\t(props: MaskedTimeInputProps & Omit<MaskedInputProps, 'onChange'>, ref: any) => {\n\t\tconst {onChange, name, ...rest} = props;\n\n\t\treturn (\n\t\t\t<MaskedInput\n\t\t\t\t{...rest}\n\t\t\t\tref={ref}\n\t\t\t\tname={name}\n\t\t\t\tmask={{alias: 'datetime', inputFormat: 'hh:MM TT'}}\n\t\t\t\tonChange={(value: string) => {\n\t\t\t\t\tif (onChange) onChange({target: {value: value || ''}});\n\t\t\t\t}}\n\t\t\t/>\n\t\t);\n\t},\n);\n"],"names":[],"mappings":";;;;;AAKU,MAAM,mDAAmD,EAAA;AAc5D,MAAM,eAAkB,GAAA,UAAA;AAAA,EAC9B,CAAC,OAAkE,GAAa,KAAA;AAC/E,IAAA,MAAM,EAAC,QAAA,EAAU,IAAS,EAAA,GAAA,IAAA,EAAQ,GAAA,KAAA,CAAA;AAElC,IAAA,uBACE,KAAA,CAAA,aAAA,CAAA,WAAA,EAAA;AAAA,MACC,GAAG,IAAA;AAAA,MACJ,GAAA;AAAA,MACA,IAAA;AAAA,MACA,IAAM,EAAA,EAAC,KAAO,EAAA,UAAA,EAAY,aAAa,UAAU,EAAA;AAAA,MACjD,QAAA,EAAU,CAAC,KAAkB,KAAA;AAC5B,QAAI,IAAA,QAAA;AAAU,UAAA,QAAA,CAAS,EAAC,MAAQ,EAAA,EAAC,OAAO,KAAS,IAAA,EAAA,IAAI,CAAA,CAAA;AAAA,OACtD;AAAA,KACD,CAAA,CAAA;AAAA,GAEF;AACD;;;;"}
package/dist/stats.txt DELETED
@@ -1,92 +0,0 @@
1
- -----------------------------
2
- Rollup File Analysis
3
- -----------------------------
4
- bundle size: 43.558 KB
5
- original size: 64.46 KB
6
- code reduction: 32.43 %
7
- module count: 42
8
-
9
- /src/step/StepProvider.tsx
10
- ████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.1 % (3.529 KB)
11
- /src/date/LocalDatePicker/LocalDatePicker.tsx
12
- ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 7.26 % (3.161 KB)
13
- /src/form/TForm/useTForm.tsx
14
- ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.77 % (2.95 KB)
15
- /src/inputs/TableInput/TableInput.tsx
16
- ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.64 % (2.891 KB)
17
- /src/inputs/CreditCardInput/CreditCardInput.tsx
18
- ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.34 % (2.324 KB)
19
- /src/money/useMoneyInput.ts
20
- ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.02 % (2.187 KB)
21
- /src/date/MonthDayPicker/MonthDayPicker.tsx
22
- ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.51 % (1.965 KB)
23
- /src/inputs/CreditCardInput/CreditCardNumberInput.tsx
24
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.98 % (1.733 KB)
25
- /src/date/LocalTimePicker/LocalTimePicker.tsx
26
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.73 % (1.624 KB)
27
- /src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx
28
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.72 % (1.621 KB)
29
- /src/date/YearSelect/YearSelect.tsx
30
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.57 % (1.553 KB)
31
- /src/inputs/MaskedInput/useMaskedInput.ts
32
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.41 % (1.487 KB)
33
- /src/date/MonthYearPicker/MonthYearPicker.tsx
34
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.82 % (1.229 KB)
35
- /src/inputs/SinInput/SinInput.tsx
36
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.68 % (1.166 KB)
37
- /src/date/LocalMonthSelect/LocalMonthSelect.tsx
38
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.61 % (1.135 KB)
39
- /src/inputs/PhoneInput/PhoneInput.tsx
40
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.08 % (908 Bytes)
41
- /src/inputs/TableInput/MoneyEditCell.tsx
42
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.88 % (820 Bytes)
43
- /src/money/MoneyInput/MoneyInput.tsx
44
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.84 % (802 Bytes)
45
- /src/inputs/TableInput/NumberEditCell.tsx
46
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8 % (782 Bytes)
47
- /src/inputs/TableInput/StringEditCell.tsx
48
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.65 % (717 Bytes)
49
- /src/inputs/TableInput/CheckboxEditCell.tsx
50
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.61 % (702 Bytes)
51
- /src/inputs/TableInput/LocalDateEditCell.tsx
52
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.6 % (695 Bytes)
53
- /src/inputs/RadioGroup/RadioGroup.tsx
54
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.59 % (692 Bytes)
55
- /home/artemis/GitHub/thr-addons/node_modules/style-inject/dist/style-inject.es.js
56
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.46 % (636 Bytes)
57
- /src/inputs/TableInput/LocalTimeEditCell.tsx
58
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.43 % (622 Bytes)
59
- /src/form/TForm/TForm.tsx
60
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.38 % (600 Bytes)
61
- /src/inputs/MaskedInput/MaskedInput.tsx
62
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.25 % (543 Bytes)
63
- /src/date/DatePicker/styles.css
64
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.24 % (538 Bytes)
65
- /src/inputs/TableInput/DropdownCell.tsx
66
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.11 % (483 Bytes)
67
- /src/date/LocalTimePicker/MaskedTimeInput.tsx
68
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.04 % (452 Bytes)
69
- /src/step/FormStep.tsx
70
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.01 % (440 Bytes)
71
- /src/date/LocalDatePicker/MaskedDateInput.tsx
72
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.98 % (426 Bytes)
73
- /src/inputs/TableInput/MoneySumFooter.tsx
74
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.95 % (414 Bytes)
75
- /src/inputs/TableInput/HoverCell.tsx
76
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.93 % (403 Bytes)
77
- /src/inputs/TableInput/addRowOnTab.ts
78
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.72 % (312 Bytes)
79
- /src/inputs/TableInput/LocalDateCell.tsx
80
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.65 % (285 Bytes)
81
- /src/inputs/TableInput/MoneyCell.tsx
82
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.59 % (257 Bytes)
83
- /src/step/Step.tsx
84
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.47 % (203 Bytes)
85
- /src/step/useStep.ts
86
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.26 % (113 Bytes)
87
- /src/step/stepContext.ts
88
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.18 % (80 Bytes)
89
- /src/inputs/CreditCardInput/styles.css
90
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.18 % (78 Bytes)
91
- /src/index.ts
92
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0 % (0 Byte)
@@ -1,12 +0,0 @@
1
- import { type MaskedInputProps } from '../../inputs/MaskedInput';
2
- import type { MaskedInputRef } from '../../inputs/MaskedInput/MaskedInput';
3
- export type MaskedTimeInputRef = MaskedInputRef;
4
- export interface MaskedTimeInputValue {
5
- target: {
6
- value: string;
7
- };
8
- }
9
- export interface MaskedTimeInputProps {
10
- onChange?: (value: MaskedTimeInputValue) => void;
11
- }
12
- export declare const MaskedTimeInput: import("react").ForwardRefExoticComponent<Omit<MaskedTimeInputProps & Omit<MaskedInputProps, "onChange">, "ref"> & import("react").RefAttributes<MaskedInputRef>>;