@thx/controls 16.3.3-alpha.1 → 16.3.4-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/inputs/TableInput/CheckboxEditCell.js +34 -0
- package/dist/esm/inputs/TableInput/CheckboxEditCell.js.map +1 -0
- package/dist/stats.html +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/inputs/TableInput/CheckboxEditCell.d.ts +12 -0
- package/dist/types/inputs/TableInput/index.d.ts +1 -0
- package/package.json +2 -2
package/dist/esm/index.js
CHANGED
|
@@ -19,6 +19,7 @@ export { TableInput } from './inputs/TableInput/TableInput.js';
|
|
|
19
19
|
export { MoneyCell } from './inputs/TableInput/MoneyCell.js';
|
|
20
20
|
export { MoneyEditCell } from './inputs/TableInput/MoneyEditCell.js';
|
|
21
21
|
export { LocalDateCell } from './inputs/TableInput/LocalDateCell.js';
|
|
22
|
+
export { CheckboxEditCell } from './inputs/TableInput/CheckboxEditCell.js';
|
|
22
23
|
export { LocalDateEditCell } from './inputs/TableInput/LocalDateEditCell.js';
|
|
23
24
|
export { MoneySumFooter } from './inputs/TableInput/MoneySumFooter.js';
|
|
24
25
|
export { StringEditCell } from './inputs/TableInput/StringEditCell.js';
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { useState } from 'react';
|
|
2
|
+
import debug from 'debug';
|
|
3
|
+
import { Checkbox } from 'semantic-ui-react';
|
|
4
|
+
import { addRowOnTab } from './addRowOnTab.js';
|
|
5
|
+
|
|
6
|
+
debug("thx.controls.inputs.TableInput.CheckboxEditCell");
|
|
7
|
+
function CheckboxEditCell(options) {
|
|
8
|
+
const { inputProps, addRowOnTabIf } = options || {};
|
|
9
|
+
return function CheckboxEditCellFn(props) {
|
|
10
|
+
const {
|
|
11
|
+
value: initialValue,
|
|
12
|
+
row: { index },
|
|
13
|
+
column: { id },
|
|
14
|
+
updateData
|
|
15
|
+
} = props;
|
|
16
|
+
const [value, setValue] = useState(initialValue);
|
|
17
|
+
return /* @__PURE__ */ React.createElement(Checkbox, {
|
|
18
|
+
fluid: true,
|
|
19
|
+
transparent: true,
|
|
20
|
+
...inputProps,
|
|
21
|
+
checked: value,
|
|
22
|
+
onChange: (ev, v) => {
|
|
23
|
+
setValue(v.checked || false);
|
|
24
|
+
},
|
|
25
|
+
onBlur: () => {
|
|
26
|
+
updateData(index, id, value);
|
|
27
|
+
},
|
|
28
|
+
onKeyDown: (event) => addRowOnTab(event, value, props, addRowOnTabIf)
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export { CheckboxEditCell };
|
|
34
|
+
//# sourceMappingURL=CheckboxEditCell.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckboxEditCell.js","sources":["../../../../src/inputs/TableInput/CheckboxEditCell.tsx"],"sourcesContent":["import debug from 'debug';\nimport {useState} from 'react';\nimport {Checkbox, CheckboxProps} from 'semantic-ui-react';\nimport type {TableCellProps} from './TableInput';\nimport type {AddRowOnTabIf} from './addRowOnTab';\nimport {addRowOnTab} from './addRowOnTab';\n\nconst d = debug('thx.controls.inputs.TableInput.CheckboxEditCell');\n\ninterface CheckboxEditCellOptions<D extends Record<string, unknown>> {\n\t/** Override SemanticUI Input props */\n\tinputProps?: CheckboxProps;\n\t/** If function is present, and returns true, will add a new row if tab is pressed on the last row */\n\taddRowOnTabIf?: AddRowOnTabIf<D, boolean>;\n}\n\nexport function CheckboxEditCell<D extends Record<string, unknown>>(options?: CheckboxEditCellOptions<D>) {\n\tconst {inputProps, addRowOnTabIf} = options || {};\n\n\treturn function CheckboxEditCellFn(props: TableCellProps<D, boolean>) {\n\t\tconst {\n\t\t\tvalue: initialValue,\n\t\t\trow: {index},\n\t\t\tcolumn: {id},\n\t\t\tupdateData,\n\t\t} = props;\n\n\t\tconst [value, setValue] = useState(initialValue);\n\n\t\treturn (\n\t\t\t<Checkbox\n\t\t\t\tfluid\n\t\t\t\ttransparent\n\t\t\t\t{...inputProps}\n\t\t\t\tchecked={value}\n\t\t\t\tonChange={(ev, v) => {\n\t\t\t\t\tsetValue(v.checked || false);\n\t\t\t\t}}\n\t\t\t\tonBlur={() => {\n\t\t\t\t\tupdateData(index, id, value);\n\t\t\t\t}}\n\t\t\t\tonKeyDown={(event: KeyboardEvent) => addRowOnTab(event, value, props, addRowOnTabIf)}\n\t\t\t/>\n\t\t);\n\t};\n}\n"],"names":[],"mappings":";;;;;AAOU,MAAM,iDAAiD,EAAA;AAS1D,SAAA,gBAAA,CAA6D,OAAsC,EAAA;AACzG,EAAA,MAAM,EAAC,UAAA,EAAY,aAAiB,EAAA,GAAA,OAAA,IAAW,EAAC,CAAA;AAEhD,EAAA,OAAO,4BAA4B,KAAmC,EAAA;AACrE,IAAM,MAAA;AAAA,MACL,KAAO,EAAA,YAAA;AAAA,MACP,KAAK,EAAC,KAAA,EAAA;AAAA,MACN,QAAQ,EAAC,EAAA,EAAA;AAAA,MACT,UAAA;AAAA,KACG,GAAA,KAAA,CAAA;AAEJ,IAAA,MAAM,CAAC,KAAA,EAAO,QAAY,CAAA,GAAA,QAAA,CAAS,YAAY,CAAA,CAAA;AAE/C,IAAA,uBACE,KAAA,CAAA,aAAA,CAAA,QAAA,EAAA;AAAA,MACA,KAAK,EAAA,IAAA;AAAA,MACL,WAAW,EAAA,IAAA;AAAA,MACP,GAAA,UAAA;AAAA,MACJ,OAAS,EAAA,KAAA;AAAA,MACT,QAAA,EAAU,CAAC,EAAA,EAAI,CAAM,KAAA;AACpB,QAAS,QAAA,CAAA,CAAA,CAAE,WAAW,KAAK,CAAA,CAAA;AAAA,OAC5B;AAAA,MACA,QAAQ,MAAM;AACb,QAAW,UAAA,CAAA,KAAA,EAAO,IAAI,KAAK,CAAA,CAAA;AAAA,OAC5B;AAAA,MACA,WAAW,CAAC,KAAA,KAAyB,YAAY,KAAO,EAAA,KAAA,EAAO,OAAO,aAAa,CAAA;AAAA,KACpF,CAAA,CAAA;AAAA,GAEF,CAAA;AACD;;;;"}
|
package/dist/stats.html
CHANGED
|
@@ -2669,7 +2669,7 @@ var drawChart = (function (exports) {
|
|
|
2669
2669
|
</script>
|
|
2670
2670
|
<script>
|
|
2671
2671
|
/*<!--*/
|
|
2672
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src/index.ts","uid":"df8f-1"}]},{"name":"money/useMoneyInput.js","children":[{"name":"src/money/useMoneyInput.ts","uid":"df8f-3"}]},{"name":"step/useStep.js","children":[{"name":"src/step/useStep.ts","uid":"df8f-5"}]},{"name":"step/Step.js","children":[{"name":"src/step/Step.tsx","uid":"df8f-7"}]},{"name":"step/FormStep.js","children":[{"name":"src/step/FormStep.tsx","uid":"df8f-9"}]},{"name":"step/StepProvider.js","children":[{"name":"src/step/StepProvider.tsx","uid":"df8f-11"}]},{"name":"inputs/MaskedInput/useMaskedInput.js","children":[{"name":"src/inputs/MaskedInput/useMaskedInput.ts","uid":"df8f-13"}]},{"name":"inputs/TableInput/addRowOnTab.js","children":[{"name":"src/inputs/TableInput/addRowOnTab.ts","uid":"df8f-15"}]},{"name":"date/LocalDatePicker/LocalDatePicker.js","children":[{"name":"src/date/LocalDatePicker/LocalDatePicker.tsx","uid":"df8f-17"}]},{"name":"date/LocalMonthSelect/LocalMonthSelect.js","children":[{"name":"src/date/LocalMonthSelect/LocalMonthSelect.tsx","uid":"df8f-19"}]},{"name":"date/LocalTimePicker/LocalTimePicker.js","children":[{"name":"src/date/LocalTimePicker/LocalTimePicker.tsx","uid":"df8f-21"}]},{"name":"date/MonthDayPicker/MonthDayPicker.js","children":[{"name":"src/date/MonthDayPicker/MonthDayPicker.tsx","uid":"df8f-23"}]},{"name":"date/MonthYearPicker/MonthYearPicker.js","children":[{"name":"src/date/MonthYearPicker/MonthYearPicker.tsx","uid":"df8f-25"}]},{"name":"date/YearSelect/YearSelect.js","children":[{"name":"src/date/YearSelect/YearSelect.tsx","uid":"df8f-27"}]},{"name":"form/TForm/TForm.js","children":[{"name":"src/form/TForm/TForm.tsx","uid":"df8f-29"}]},{"name":"form/TForm/useTForm.js","children":[{"name":"src/form/TForm/useTForm.tsx","uid":"df8f-31"}]},{"name":"inputs/MaskedInput/MaskedInput.js","children":[{"name":"src/inputs/MaskedInput/MaskedInput.tsx","uid":"df8f-33"}]},{"name":"inputs/RadioGroup/RadioGroup.js","children":[{"name":"src/inputs/RadioGroup/RadioGroup.tsx","uid":"df8f-35"}]},{"name":"inputs/Scriptel/Scriptel.js","children":[{"name":"src/inputs/Scriptel/Scriptel.tsx","uid":"df8f-37"}]},{"name":"inputs/Scriptel/withScriptel.js","children":[{"name":"src/inputs/Scriptel/withScriptel.tsx","uid":"df8f-39"}]},{"name":"inputs/ScriptelInput/ScriptelInput.js","children":[{"name":"src/inputs/ScriptelInput/ScriptelInput.tsx","uid":"df8f-41"}]},{"name":"inputs/PhoneInput/PhoneInput.js","children":[{"name":"src/inputs/PhoneInput/PhoneInput.tsx","uid":"df8f-43"}]},{"name":"inputs/CreditCardInput/CreditCardInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardInput.tsx","uid":"df8f-45"}]},{"name":"inputs/SinInput/SinInput.js","children":[{"name":"src/inputs/SinInput/SinInput.tsx","uid":"df8f-47"}]},{"name":"inputs/TableInput/TableInput.js","children":[{"name":"src/inputs/TableInput/TableInput.tsx","uid":"df8f-49"}]},{"name":"inputs/TableInput/MoneyCell.js","children":[{"name":"src/inputs/TableInput/MoneyCell.tsx","uid":"df8f-51"}]},{"name":"inputs/TableInput/MoneyEditCell.js","children":[{"name":"src/inputs/TableInput/MoneyEditCell.tsx","uid":"df8f-53"}]},{"name":"inputs/TableInput/LocalDateCell.js","children":[{"name":"src/inputs/TableInput/LocalDateCell.tsx","uid":"df8f-55"}]},{"name":"inputs/TableInput/LocalDateEditCell.js","children":[{"name":"src/inputs/TableInput/LocalDateEditCell.tsx","uid":"df8f-57"}]},{"name":"inputs/TableInput/MoneySumFooter.js","children":[{"name":"src/inputs/TableInput/MoneySumFooter.tsx","uid":"df8f-59"}]},{"name":"inputs/TableInput/StringEditCell.js","children":[{"name":"src/inputs/TableInput/StringEditCell.tsx","uid":"df8f-61"}]},{"name":"inputs/TableInput/DropdownCell.js","children":[{"name":"src/inputs/TableInput/DropdownCell.tsx","uid":"df8f-63"}]},{"name":"inputs/TableInput/HoverCell.js","children":[{"name":"src/inputs/TableInput/HoverCell.tsx","uid":"df8f-65"}]},{"name":"money/MoneyInput/MoneyInput.js","children":[{"name":"src/money/MoneyInput/MoneyInput.tsx","uid":"df8f-67"}]},{"name":"money/MoneyCurrencyInput/MoneyCurrencyInput.js","children":[{"name":"src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","uid":"df8f-69"}]},{"name":"inputs/Scriptel/scriptel/enums.js","children":[{"name":"src/inputs/Scriptel/scriptel/enums.ts","uid":"df8f-71"}]},{"name":"step/stepContext.js","children":[{"name":"src/step/stepContext.ts","uid":"df8f-73"}]},{"name":"date/DatePicker/styles.css.js","children":[{"name":"src/date/DatePicker/styles.css","uid":"df8f-75"}]},{"name":"inputs/CreditCardInput/styles.css.js","children":[{"name":"src/inputs/CreditCardInput/styles.css","uid":"df8f-77"}]},{"name":"date/LocalDatePicker/MaskedDateInput.js","children":[{"name":"src/date/LocalDatePicker/MaskedDateInput.tsx","uid":"df8f-79"}]},{"name":"date/LocalTimePicker/MaskedTimeInput.js","children":[{"name":"src/date/LocalTimePicker/MaskedTimeInput.tsx","uid":"df8f-81"}]},{"name":"inputs/Scriptel/ScriptelContext.js","children":[{"name":"src/inputs/Scriptel/ScriptelContext.ts","uid":"df8f-83"}]},{"name":"inputs/CreditCardInput/CreditCardNumberInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardNumberInput.tsx","uid":"df8f-85"}]},{"name":"inputs/Scriptel/scriptel/index.js","children":[{"name":"src/inputs/Scriptel/scriptel/index.ts","uid":"df8f-87"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/runner/work/thr-addons/thr-addons/node_modules/style-inject/dist/style-inject.es.js","uid":"df8f-89"}]}],"isRoot":true},"nodeParts":{"df8f-1":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"df8f-0"},"df8f-3":{"renderedLength":2155,"gzipLength":770,"brotliLength":660,"mainUid":"df8f-2"},"df8f-5":{"renderedLength":113,"gzipLength":106,"brotliLength":82,"mainUid":"df8f-4"},"df8f-7":{"renderedLength":203,"gzipLength":157,"brotliLength":111,"mainUid":"df8f-6"},"df8f-9":{"renderedLength":440,"gzipLength":270,"brotliLength":214,"mainUid":"df8f-8"},"df8f-11":{"renderedLength":3529,"gzipLength":1021,"brotliLength":861,"mainUid":"df8f-10"},"df8f-13":{"renderedLength":1487,"gzipLength":502,"brotliLength":423,"mainUid":"df8f-12"},"df8f-15":{"renderedLength":312,"gzipLength":199,"brotliLength":173,"mainUid":"df8f-14"},"df8f-17":{"renderedLength":1096,"gzipLength":407,"brotliLength":339,"mainUid":"df8f-16"},"df8f-19":{"renderedLength":1135,"gzipLength":503,"brotliLength":415,"mainUid":"df8f-18"},"df8f-21":{"renderedLength":1205,"gzipLength":488,"brotliLength":402,"mainUid":"df8f-20"},"df8f-23":{"renderedLength":1965,"gzipLength":657,"brotliLength":544,"mainUid":"df8f-22"},"df8f-25":{"renderedLength":1229,"gzipLength":491,"brotliLength":424,"mainUid":"df8f-24"},"df8f-27":{"renderedLength":1553,"gzipLength":580,"brotliLength":461,"mainUid":"df8f-26"},"df8f-29":{"renderedLength":600,"gzipLength":307,"brotliLength":267,"mainUid":"df8f-28"},"df8f-31":{"renderedLength":2930,"gzipLength":959,"brotliLength":816,"mainUid":"df8f-30"},"df8f-33":{"renderedLength":390,"gzipLength":237,"brotliLength":203,"mainUid":"df8f-32"},"df8f-35":{"renderedLength":561,"gzipLength":301,"brotliLength":259,"mainUid":"df8f-34"},"df8f-37":{"renderedLength":1275,"gzipLength":476,"brotliLength":406,"mainUid":"df8f-36"},"df8f-39":{"renderedLength":275,"gzipLength":163,"brotliLength":130,"mainUid":"df8f-38"},"df8f-41":{"renderedLength":1963,"gzipLength":648,"brotliLength":547,"mainUid":"df8f-40"},"df8f-43":{"renderedLength":381,"gzipLength":248,"brotliLength":218,"mainUid":"df8f-42"},"df8f-45":{"renderedLength":2324,"gzipLength":586,"brotliLength":495,"mainUid":"df8f-44"},"df8f-47":{"renderedLength":1144,"gzipLength":530,"brotliLength":462,"mainUid":"df8f-46"},"df8f-49":{"renderedLength":2788,"gzipLength":828,"brotliLength":734,"mainUid":"df8f-48"},"df8f-51":{"renderedLength":257,"gzipLength":187,"brotliLength":149,"mainUid":"df8f-50"},"df8f-53":{"renderedLength":620,"gzipLength":346,"brotliLength":310,"mainUid":"df8f-52"},"df8f-55":{"renderedLength":264,"gzipLength":191,"brotliLength":154,"mainUid":"df8f-54"},"df8f-57":{"renderedLength":622,"gzipLength":322,"brotliLength":263,"mainUid":"df8f-56"},"df8f-59":{"renderedLength":414,"gzipLength":261,"brotliLength":219,"mainUid":"df8f-58"},"df8f-61":{"renderedLength":717,"gzipLength":369,"brotliLength":319,"mainUid":"df8f-60"},"df8f-63":{"renderedLength":493,"gzipLength":255,"brotliLength":211,"mainUid":"df8f-62"},"df8f-65":{"renderedLength":403,"gzipLength":245,"brotliLength":195,"mainUid":"df8f-64"},"df8f-67":{"renderedLength":778,"gzipLength":392,"brotliLength":329,"mainUid":"df8f-66"},"df8f-69":{"renderedLength":1575,"gzipLength":642,"brotliLength":536,"mainUid":"df8f-68"},"df8f-71":{"renderedLength":937,"gzipLength":292,"brotliLength":231,"mainUid":"df8f-70"},"df8f-73":{"renderedLength":80,"gzipLength":90,"brotliLength":72,"mainUid":"df8f-72"},"df8f-75":{"renderedLength":538,"gzipLength":263,"brotliLength":211,"mainUid":"df8f-74"},"df8f-77":{"renderedLength":78,"gzipLength":92,"brotliLength":79,"mainUid":"df8f-76"},"df8f-79":{"renderedLength":464,"gzipLength":299,"brotliLength":256,"mainUid":"df8f-78"},"df8f-81":{"renderedLength":446,"gzipLength":290,"brotliLength":241,"mainUid":"df8f-80"},"df8f-83":{"renderedLength":46,"gzipLength":60,"brotliLength":45,"mainUid":"df8f-82"},"df8f-85":{"renderedLength":1713,"gzipLength":687,"brotliLength":585,"mainUid":"df8f-84"},"df8f-87":{"renderedLength":2530,"gzipLength":860,"brotliLength":739,"mainUid":"df8f-86"},"df8f-89":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"df8f-88"}},"nodeMetas":{"df8f-0":{"id":"/src/index.ts","moduleParts":{"index.js":"df8f-1"},"imported":[{"uid":"df8f-90"},{"uid":"df8f-91"},{"uid":"df8f-92"},{"uid":"df8f-93"},{"uid":"df8f-94"},{"uid":"df8f-95"},{"uid":"df8f-96"},{"uid":"df8f-97"},{"uid":"df8f-98"},{"uid":"df8f-99"},{"uid":"df8f-100"},{"uid":"df8f-101"},{"uid":"df8f-102"},{"uid":"df8f-103"},{"uid":"df8f-104"},{"uid":"df8f-2"},{"uid":"df8f-105"},{"uid":"df8f-106"},{"uid":"df8f-107"}],"importedBy":[],"isEntry":true},"df8f-2":{"id":"/src/money/useMoneyInput.ts","moduleParts":{"money/useMoneyInput.js":"df8f-3"},"imported":[{"uid":"df8f-108"},{"uid":"df8f-109"},{"uid":"df8f-110"},{"uid":"df8f-111"},{"uid":"df8f-112"}],"importedBy":[{"uid":"df8f-0"},{"uid":"df8f-66"},{"uid":"df8f-68"}]},"df8f-4":{"id":"/src/step/useStep.ts","moduleParts":{"step/useStep.js":"df8f-5"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-72"}],"importedBy":[{"uid":"df8f-107"},{"uid":"df8f-8"}]},"df8f-6":{"id":"/src/step/Step.tsx","moduleParts":{"step/Step.js":"df8f-7"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"}],"importedBy":[{"uid":"df8f-107"},{"uid":"df8f-10"}]},"df8f-8":{"id":"/src/step/FormStep.tsx","moduleParts":{"step/FormStep.js":"df8f-9"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-4"}],"importedBy":[{"uid":"df8f-107"},{"uid":"df8f-10"}]},"df8f-10":{"id":"/src/step/StepProvider.tsx","moduleParts":{"step/StepProvider.js":"df8f-11"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-125"},{"uid":"df8f-116"},{"uid":"df8f-8"},{"uid":"df8f-6"},{"uid":"df8f-72"}],"importedBy":[{"uid":"df8f-107"}]},"df8f-12":{"id":"/src/inputs/MaskedInput/useMaskedInput.ts","moduleParts":{"inputs/MaskedInput/useMaskedInput.js":"df8f-13"},"imported":[{"uid":"df8f-109"},{"uid":"df8f-110"},{"uid":"df8f-112"},{"uid":"df8f-120"}],"importedBy":[{"uid":"df8f-97"},{"uid":"df8f-32"},{"uid":"df8f-46"},{"uid":"df8f-84"}]},"df8f-14":{"id":"/src/inputs/TableInput/addRowOnTab.ts","moduleParts":{"inputs/TableInput/addRowOnTab.js":"df8f-15"},"imported":[],"importedBy":[{"uid":"df8f-104"},{"uid":"df8f-52"},{"uid":"df8f-60"}]},"df8f-16":{"id":"/src/date/LocalDatePicker/LocalDatePicker.tsx","moduleParts":{"date/LocalDatePicker/LocalDatePicker.js":"df8f-17"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-113"},{"uid":"df8f-109"},{"uid":"df8f-114"},{"uid":"df8f-74"},{"uid":"df8f-78"}],"importedBy":[{"uid":"df8f-90"}]},"df8f-18":{"id":"/src/date/LocalMonthSelect/LocalMonthSelect.tsx","moduleParts":{"date/LocalMonthSelect/LocalMonthSelect.js":"df8f-19"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-115"},{"uid":"df8f-109"},{"uid":"df8f-116"}],"importedBy":[{"uid":"df8f-91"}]},"df8f-20":{"id":"/src/date/LocalTimePicker/LocalTimePicker.tsx","moduleParts":{"date/LocalTimePicker/LocalTimePicker.js":"df8f-21"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-115"},{"uid":"df8f-113"},{"uid":"df8f-109"},{"uid":"df8f-114"},{"uid":"df8f-80"}],"importedBy":[{"uid":"df8f-92"}]},"df8f-22":{"id":"/src/date/MonthDayPicker/MonthDayPicker.tsx","moduleParts":{"date/MonthDayPicker/MonthDayPicker.js":"df8f-23"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-113"},{"uid":"df8f-109"},{"uid":"df8f-116"},{"uid":"df8f-114"}],"importedBy":[{"uid":"df8f-93"}]},"df8f-24":{"id":"/src/date/MonthYearPicker/MonthYearPicker.tsx","moduleParts":{"date/MonthYearPicker/MonthYearPicker.js":"df8f-25"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-115"},{"uid":"df8f-113"},{"uid":"df8f-109"},{"uid":"df8f-116"},{"uid":"df8f-114"}],"importedBy":[{"uid":"df8f-94"}]},"df8f-26":{"id":"/src/date/YearSelect/YearSelect.tsx","moduleParts":{"date/YearSelect/YearSelect.js":"df8f-27"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-116"}],"importedBy":[{"uid":"df8f-95"}]},"df8f-28":{"id":"/src/form/TForm/TForm.tsx","moduleParts":{"form/TForm/TForm.js":"df8f-29"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-117"},{"uid":"df8f-30"}],"importedBy":[{"uid":"df8f-96"}]},"df8f-30":{"id":"/src/form/TForm/useTForm.tsx","moduleParts":{"form/TForm/useTForm.js":"df8f-31"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-118"},{"uid":"df8f-117"},{"uid":"df8f-119"},{"uid":"df8f-116"}],"importedBy":[{"uid":"df8f-96"},{"uid":"df8f-28"}]},"df8f-32":{"id":"/src/inputs/MaskedInput/MaskedInput.tsx","moduleParts":{"inputs/MaskedInput/MaskedInput.js":"df8f-33"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-116"},{"uid":"df8f-12"}],"importedBy":[{"uid":"df8f-97"}]},"df8f-34":{"id":"/src/inputs/RadioGroup/RadioGroup.tsx","moduleParts":{"inputs/RadioGroup/RadioGroup.js":"df8f-35"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-116"}],"importedBy":[{"uid":"df8f-98"}]},"df8f-36":{"id":"/src/inputs/Scriptel/Scriptel.tsx","moduleParts":{"inputs/Scriptel/Scriptel.js":"df8f-37"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-82"},{"uid":"df8f-86"}],"importedBy":[{"uid":"df8f-99"},{"uid":"df8f-38"}]},"df8f-38":{"id":"/src/inputs/Scriptel/withScriptel.tsx","moduleParts":{"inputs/Scriptel/withScriptel.js":"df8f-39"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-36"}],"importedBy":[{"uid":"df8f-99"}]},"df8f-40":{"id":"/src/inputs/ScriptelInput/ScriptelInput.tsx","moduleParts":{"inputs/ScriptelInput/ScriptelInput.js":"df8f-41"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-116"},{"uid":"df8f-82"}],"importedBy":[{"uid":"df8f-100"}]},"df8f-42":{"id":"/src/inputs/PhoneInput/PhoneInput.tsx","moduleParts":{"inputs/PhoneInput/PhoneInput.js":"df8f-43"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-97"}],"importedBy":[{"uid":"df8f-101"}]},"df8f-44":{"id":"/src/inputs/CreditCardInput/CreditCardInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardInput.js":"df8f-45"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-113"},{"uid":"df8f-109"},{"uid":"df8f-121"},{"uid":"df8f-122"},{"uid":"df8f-116"},{"uid":"df8f-94"},{"uid":"df8f-84"},{"uid":"df8f-76"}],"importedBy":[{"uid":"df8f-102"}]},"df8f-46":{"id":"/src/inputs/SinInput/SinInput.tsx","moduleParts":{"inputs/SinInput/SinInput.js":"df8f-47"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-116"},{"uid":"df8f-123"},{"uid":"df8f-12"}],"importedBy":[{"uid":"df8f-103"}]},"df8f-48":{"id":"/src/inputs/TableInput/TableInput.tsx","moduleParts":{"inputs/TableInput/TableInput.js":"df8f-49"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-117"},{"uid":"df8f-124"},{"uid":"df8f-116"}],"importedBy":[{"uid":"df8f-104"}]},"df8f-50":{"id":"/src/inputs/TableInput/MoneyCell.tsx","moduleParts":{"inputs/TableInput/MoneyCell.js":"df8f-51"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-108"}],"importedBy":[{"uid":"df8f-104"}]},"df8f-52":{"id":"/src/inputs/TableInput/MoneyEditCell.tsx","moduleParts":{"inputs/TableInput/MoneyEditCell.js":"df8f-53"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-105"},{"uid":"df8f-14"}],"importedBy":[{"uid":"df8f-104"}]},"df8f-54":{"id":"/src/inputs/TableInput/LocalDateCell.tsx","moduleParts":{"inputs/TableInput/LocalDateCell.js":"df8f-55"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-113"}],"importedBy":[{"uid":"df8f-104"}]},"df8f-56":{"id":"/src/inputs/TableInput/LocalDateEditCell.tsx","moduleParts":{"inputs/TableInput/LocalDateEditCell.js":"df8f-57"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-90"}],"importedBy":[{"uid":"df8f-104"}]},"df8f-58":{"id":"/src/inputs/TableInput/MoneySumFooter.tsx","moduleParts":{"inputs/TableInput/MoneySumFooter.js":"df8f-59"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-108"}],"importedBy":[{"uid":"df8f-104"}]},"df8f-60":{"id":"/src/inputs/TableInput/StringEditCell.tsx","moduleParts":{"inputs/TableInput/StringEditCell.js":"df8f-61"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-116"},{"uid":"df8f-14"}],"importedBy":[{"uid":"df8f-104"}]},"df8f-62":{"id":"/src/inputs/TableInput/DropdownCell.tsx","moduleParts":{"inputs/TableInput/DropdownCell.js":"df8f-63"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-116"}],"importedBy":[{"uid":"df8f-104"}]},"df8f-64":{"id":"/src/inputs/TableInput/HoverCell.tsx","moduleParts":{"inputs/TableInput/HoverCell.js":"df8f-65"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"}],"importedBy":[{"uid":"df8f-104"}]},"df8f-66":{"id":"/src/money/MoneyInput/MoneyInput.tsx","moduleParts":{"money/MoneyInput/MoneyInput.js":"df8f-67"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-108"},{"uid":"df8f-109"},{"uid":"df8f-111"},{"uid":"df8f-116"},{"uid":"df8f-2"}],"importedBy":[{"uid":"df8f-105"}]},"df8f-68":{"id":"/src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","moduleParts":{"money/MoneyCurrencyInput/MoneyCurrencyInput.js":"df8f-69"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-108"},{"uid":"df8f-109"},{"uid":"df8f-111"},{"uid":"df8f-116"},{"uid":"df8f-2"}],"importedBy":[{"uid":"df8f-106"}]},"df8f-70":{"id":"/src/inputs/Scriptel/scriptel/enums.ts","moduleParts":{"inputs/Scriptel/scriptel/enums.js":"df8f-71"},"imported":[],"importedBy":[{"uid":"df8f-99"},{"uid":"df8f-86"}]},"df8f-72":{"id":"/src/step/stepContext.ts","moduleParts":{"step/stepContext.js":"df8f-73"},"imported":[{"uid":"df8f-112"}],"importedBy":[{"uid":"df8f-4"},{"uid":"df8f-10"}]},"df8f-74":{"id":"/src/date/DatePicker/styles.css","moduleParts":{"date/DatePicker/styles.css.js":"df8f-75"},"imported":[{"uid":"df8f-88"}],"importedBy":[{"uid":"df8f-16"},{"uid":"df8f-114"}]},"df8f-76":{"id":"/src/inputs/CreditCardInput/styles.css","moduleParts":{"inputs/CreditCardInput/styles.css.js":"df8f-77"},"imported":[{"uid":"df8f-88"}],"importedBy":[{"uid":"df8f-44"}]},"df8f-78":{"id":"/src/date/LocalDatePicker/MaskedDateInput.tsx","moduleParts":{"date/LocalDatePicker/MaskedDateInput.js":"df8f-79"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-97"}],"importedBy":[{"uid":"df8f-16"}]},"df8f-80":{"id":"/src/date/LocalTimePicker/MaskedTimeInput.tsx","moduleParts":{"date/LocalTimePicker/MaskedTimeInput.js":"df8f-81"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-109"},{"uid":"df8f-97"}],"importedBy":[{"uid":"df8f-20"}]},"df8f-82":{"id":"/src/inputs/Scriptel/ScriptelContext.ts","moduleParts":{"inputs/Scriptel/ScriptelContext.js":"df8f-83"},"imported":[{"uid":"df8f-112"}],"importedBy":[{"uid":"df8f-36"},{"uid":"df8f-40"}]},"df8f-84":{"id":"/src/inputs/CreditCardInput/CreditCardNumberInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardNumberInput.js":"df8f-85"},"imported":[{"uid":"df8f-112"},{"uid":"df8f-128"},{"uid":"df8f-109"},{"uid":"df8f-129"},{"uid":"df8f-116"},{"uid":"df8f-12"}],"importedBy":[{"uid":"df8f-44"}]},"df8f-86":{"id":"/src/inputs/Scriptel/scriptel/index.ts","moduleParts":{"inputs/Scriptel/scriptel/index.js":"df8f-87"},"imported":[{"uid":"df8f-109"},{"uid":"df8f-127"},{"uid":"df8f-70"}],"importedBy":[{"uid":"df8f-36"}]},"df8f-88":{"id":"/home/runner/work/thr-addons/thr-addons/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"df8f-89"},"imported":[],"importedBy":[{"uid":"df8f-74"},{"uid":"df8f-76"}]},"df8f-90":{"id":"/src/date/LocalDatePicker/index.ts","moduleParts":{},"imported":[{"uid":"df8f-16"}],"importedBy":[{"uid":"df8f-0"},{"uid":"df8f-56"}]},"df8f-91":{"id":"/src/date/LocalMonthSelect/index.ts","moduleParts":{},"imported":[{"uid":"df8f-18"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-92":{"id":"/src/date/LocalTimePicker/index.ts","moduleParts":{},"imported":[{"uid":"df8f-20"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-93":{"id":"/src/date/MonthDayPicker/index.ts","moduleParts":{},"imported":[{"uid":"df8f-22"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-94":{"id":"/src/date/MonthYearPicker/index.ts","moduleParts":{},"imported":[{"uid":"df8f-24"}],"importedBy":[{"uid":"df8f-0"},{"uid":"df8f-44"}]},"df8f-95":{"id":"/src/date/YearSelect/index.ts","moduleParts":{},"imported":[{"uid":"df8f-26"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-96":{"id":"/src/form/TForm/index.ts","moduleParts":{},"imported":[{"uid":"df8f-28"},{"uid":"df8f-30"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-97":{"id":"/src/inputs/MaskedInput/index.ts","moduleParts":{},"imported":[{"uid":"df8f-32"},{"uid":"df8f-12"}],"importedBy":[{"uid":"df8f-0"},{"uid":"df8f-42"},{"uid":"df8f-78"},{"uid":"df8f-80"}]},"df8f-98":{"id":"/src/inputs/RadioGroup/index.ts","moduleParts":{},"imported":[{"uid":"df8f-34"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-99":{"id":"/src/inputs/Scriptel/index.ts","moduleParts":{},"imported":[{"uid":"df8f-36"},{"uid":"df8f-38"},{"uid":"df8f-70"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-100":{"id":"/src/inputs/ScriptelInput/index.ts","moduleParts":{},"imported":[{"uid":"df8f-40"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-101":{"id":"/src/inputs/PhoneInput/index.ts","moduleParts":{},"imported":[{"uid":"df8f-42"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-102":{"id":"/src/inputs/CreditCardInput/index.ts","moduleParts":{},"imported":[{"uid":"df8f-44"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-103":{"id":"/src/inputs/SinInput/index.ts","moduleParts":{},"imported":[{"uid":"df8f-46"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-104":{"id":"/src/inputs/TableInput/index.ts","moduleParts":{},"imported":[{"uid":"df8f-48"},{"uid":"df8f-50"},{"uid":"df8f-52"},{"uid":"df8f-54"},{"uid":"df8f-56"},{"uid":"df8f-58"},{"uid":"df8f-60"},{"uid":"df8f-62"},{"uid":"df8f-64"},{"uid":"df8f-14"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-105":{"id":"/src/money/MoneyInput/index.ts","moduleParts":{},"imported":[{"uid":"df8f-66"}],"importedBy":[{"uid":"df8f-0"},{"uid":"df8f-52"}]},"df8f-106":{"id":"/src/money/MoneyCurrencyInput/index.ts","moduleParts":{},"imported":[{"uid":"df8f-68"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-107":{"id":"/src/step/index.ts","moduleParts":{},"imported":[{"uid":"df8f-6"},{"uid":"df8f-4"},{"uid":"df8f-8"},{"uid":"df8f-10"}],"importedBy":[{"uid":"df8f-0"}]},"df8f-108":{"id":"@thx/money","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-2"},{"uid":"df8f-50"},{"uid":"df8f-58"},{"uid":"df8f-66"},{"uid":"df8f-68"}],"isExternal":true},"df8f-109":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-2"},{"uid":"df8f-16"},{"uid":"df8f-18"},{"uid":"df8f-20"},{"uid":"df8f-22"},{"uid":"df8f-24"},{"uid":"df8f-26"},{"uid":"df8f-28"},{"uid":"df8f-32"},{"uid":"df8f-12"},{"uid":"df8f-34"},{"uid":"df8f-36"},{"uid":"df8f-40"},{"uid":"df8f-42"},{"uid":"df8f-44"},{"uid":"df8f-46"},{"uid":"df8f-48"},{"uid":"df8f-52"},{"uid":"df8f-56"},{"uid":"df8f-60"},{"uid":"df8f-64"},{"uid":"df8f-66"},{"uid":"df8f-68"},{"uid":"df8f-6"},{"uid":"df8f-8"},{"uid":"df8f-10"},{"uid":"df8f-78"},{"uid":"df8f-80"},{"uid":"df8f-86"},{"uid":"df8f-84"}],"isExternal":true},"df8f-110":{"id":"inputmask","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-2"},{"uid":"df8f-12"}],"isExternal":true},"df8f-111":{"id":"js-money","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-2"},{"uid":"df8f-66"},{"uid":"df8f-68"}],"isExternal":true},"df8f-112":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-2"},{"uid":"df8f-16"},{"uid":"df8f-18"},{"uid":"df8f-20"},{"uid":"df8f-22"},{"uid":"df8f-24"},{"uid":"df8f-26"},{"uid":"df8f-28"},{"uid":"df8f-30"},{"uid":"df8f-32"},{"uid":"df8f-12"},{"uid":"df8f-34"},{"uid":"df8f-36"},{"uid":"df8f-38"},{"uid":"df8f-40"},{"uid":"df8f-42"},{"uid":"df8f-44"},{"uid":"df8f-46"},{"uid":"df8f-48"},{"uid":"df8f-50"},{"uid":"df8f-52"},{"uid":"df8f-54"},{"uid":"df8f-56"},{"uid":"df8f-58"},{"uid":"df8f-60"},{"uid":"df8f-62"},{"uid":"df8f-64"},{"uid":"df8f-66"},{"uid":"df8f-68"},{"uid":"df8f-6"},{"uid":"df8f-4"},{"uid":"df8f-8"},{"uid":"df8f-10"},{"uid":"df8f-78"},{"uid":"df8f-80"},{"uid":"df8f-82"},{"uid":"df8f-84"},{"uid":"df8f-72"}],"isExternal":true},"df8f-113":{"id":"@thx/date","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-16"},{"uid":"df8f-20"},{"uid":"df8f-22"},{"uid":"df8f-24"},{"uid":"df8f-44"},{"uid":"df8f-54"}],"isExternal":true},"df8f-114":{"id":"/src/date/DatePicker/index.ts","moduleParts":{},"imported":[{"uid":"df8f-126"},{"uid":"df8f-74"}],"importedBy":[{"uid":"df8f-16"},{"uid":"df8f-20"},{"uid":"df8f-22"},{"uid":"df8f-24"}]},"df8f-115":{"id":"@js-joda/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-18"},{"uid":"df8f-20"},{"uid":"df8f-24"}],"isExternal":true},"df8f-116":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-18"},{"uid":"df8f-22"},{"uid":"df8f-24"},{"uid":"df8f-26"},{"uid":"df8f-30"},{"uid":"df8f-32"},{"uid":"df8f-34"},{"uid":"df8f-40"},{"uid":"df8f-44"},{"uid":"df8f-46"},{"uid":"df8f-48"},{"uid":"df8f-60"},{"uid":"df8f-62"},{"uid":"df8f-66"},{"uid":"df8f-68"},{"uid":"df8f-10"},{"uid":"df8f-84"}],"isExternal":true},"df8f-117":{"id":"formik","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-28"},{"uid":"df8f-30"},{"uid":"df8f-48"}],"isExternal":true},"df8f-118":{"id":"flat","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-30"}],"isExternal":true},"df8f-119":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-30"}],"isExternal":true},"df8f-120":{"id":"use-deep-compare-effect","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-12"}],"isExternal":true},"df8f-121":{"id":"react-credit-cards","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-44"}],"isExternal":true},"df8f-122":{"id":"react-credit-cards/es/styles-compiled.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-44"}],"isExternal":true},"df8f-123":{"id":"social-insurance-number","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-46"}],"isExternal":true},"df8f-124":{"id":"react-table","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-48"}],"isExternal":true},"df8f-125":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-10"}],"isExternal":true},"df8f-126":{"id":"react-datepicker","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-114"}],"isExternal":true},"df8f-127":{"id":"eventemitter3","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-86"}],"isExternal":true},"df8f-128":{"id":"credit-card-type","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-84"}],"isExternal":true},"df8f-129":{"id":"luhn","moduleParts":{},"imported":[],"importedBy":[{"uid":"df8f-84"}],"isExternal":true}},"env":{"rollup":"2.70.1"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
|
|
2672
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src/index.ts","uid":"8e89-1"}]},{"name":"money/useMoneyInput.js","children":[{"name":"src/money/useMoneyInput.ts","uid":"8e89-3"}]},{"name":"step/useStep.js","children":[{"name":"src/step/useStep.ts","uid":"8e89-5"}]},{"name":"step/Step.js","children":[{"name":"src/step/Step.tsx","uid":"8e89-7"}]},{"name":"step/FormStep.js","children":[{"name":"src/step/FormStep.tsx","uid":"8e89-9"}]},{"name":"step/StepProvider.js","children":[{"name":"src/step/StepProvider.tsx","uid":"8e89-11"}]},{"name":"inputs/MaskedInput/useMaskedInput.js","children":[{"name":"src/inputs/MaskedInput/useMaskedInput.ts","uid":"8e89-13"}]},{"name":"inputs/TableInput/addRowOnTab.js","children":[{"name":"src/inputs/TableInput/addRowOnTab.ts","uid":"8e89-15"}]},{"name":"date/LocalDatePicker/LocalDatePicker.js","children":[{"name":"src/date/LocalDatePicker/LocalDatePicker.tsx","uid":"8e89-17"}]},{"name":"date/LocalMonthSelect/LocalMonthSelect.js","children":[{"name":"src/date/LocalMonthSelect/LocalMonthSelect.tsx","uid":"8e89-19"}]},{"name":"date/LocalTimePicker/LocalTimePicker.js","children":[{"name":"src/date/LocalTimePicker/LocalTimePicker.tsx","uid":"8e89-21"}]},{"name":"date/MonthDayPicker/MonthDayPicker.js","children":[{"name":"src/date/MonthDayPicker/MonthDayPicker.tsx","uid":"8e89-23"}]},{"name":"date/MonthYearPicker/MonthYearPicker.js","children":[{"name":"src/date/MonthYearPicker/MonthYearPicker.tsx","uid":"8e89-25"}]},{"name":"date/YearSelect/YearSelect.js","children":[{"name":"src/date/YearSelect/YearSelect.tsx","uid":"8e89-27"}]},{"name":"form/TForm/TForm.js","children":[{"name":"src/form/TForm/TForm.tsx","uid":"8e89-29"}]},{"name":"form/TForm/useTForm.js","children":[{"name":"src/form/TForm/useTForm.tsx","uid":"8e89-31"}]},{"name":"inputs/MaskedInput/MaskedInput.js","children":[{"name":"src/inputs/MaskedInput/MaskedInput.tsx","uid":"8e89-33"}]},{"name":"inputs/RadioGroup/RadioGroup.js","children":[{"name":"src/inputs/RadioGroup/RadioGroup.tsx","uid":"8e89-35"}]},{"name":"inputs/Scriptel/Scriptel.js","children":[{"name":"src/inputs/Scriptel/Scriptel.tsx","uid":"8e89-37"}]},{"name":"inputs/Scriptel/withScriptel.js","children":[{"name":"src/inputs/Scriptel/withScriptel.tsx","uid":"8e89-39"}]},{"name":"inputs/ScriptelInput/ScriptelInput.js","children":[{"name":"src/inputs/ScriptelInput/ScriptelInput.tsx","uid":"8e89-41"}]},{"name":"inputs/PhoneInput/PhoneInput.js","children":[{"name":"src/inputs/PhoneInput/PhoneInput.tsx","uid":"8e89-43"}]},{"name":"inputs/CreditCardInput/CreditCardInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardInput.tsx","uid":"8e89-45"}]},{"name":"inputs/SinInput/SinInput.js","children":[{"name":"src/inputs/SinInput/SinInput.tsx","uid":"8e89-47"}]},{"name":"inputs/TableInput/TableInput.js","children":[{"name":"src/inputs/TableInput/TableInput.tsx","uid":"8e89-49"}]},{"name":"inputs/TableInput/MoneyCell.js","children":[{"name":"src/inputs/TableInput/MoneyCell.tsx","uid":"8e89-51"}]},{"name":"inputs/TableInput/MoneyEditCell.js","children":[{"name":"src/inputs/TableInput/MoneyEditCell.tsx","uid":"8e89-53"}]},{"name":"inputs/TableInput/LocalDateCell.js","children":[{"name":"src/inputs/TableInput/LocalDateCell.tsx","uid":"8e89-55"}]},{"name":"inputs/TableInput/CheckboxEditCell.js","children":[{"name":"src/inputs/TableInput/CheckboxEditCell.tsx","uid":"8e89-57"}]},{"name":"inputs/TableInput/LocalDateEditCell.js","children":[{"name":"src/inputs/TableInput/LocalDateEditCell.tsx","uid":"8e89-59"}]},{"name":"inputs/TableInput/MoneySumFooter.js","children":[{"name":"src/inputs/TableInput/MoneySumFooter.tsx","uid":"8e89-61"}]},{"name":"inputs/TableInput/StringEditCell.js","children":[{"name":"src/inputs/TableInput/StringEditCell.tsx","uid":"8e89-63"}]},{"name":"inputs/TableInput/DropdownCell.js","children":[{"name":"src/inputs/TableInput/DropdownCell.tsx","uid":"8e89-65"}]},{"name":"inputs/TableInput/HoverCell.js","children":[{"name":"src/inputs/TableInput/HoverCell.tsx","uid":"8e89-67"}]},{"name":"money/MoneyCurrencyInput/MoneyCurrencyInput.js","children":[{"name":"src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","uid":"8e89-69"}]},{"name":"money/MoneyInput/MoneyInput.js","children":[{"name":"src/money/MoneyInput/MoneyInput.tsx","uid":"8e89-71"}]},{"name":"inputs/Scriptel/scriptel/enums.js","children":[{"name":"src/inputs/Scriptel/scriptel/enums.ts","uid":"8e89-73"}]},{"name":"step/stepContext.js","children":[{"name":"src/step/stepContext.ts","uid":"8e89-75"}]},{"name":"date/DatePicker/styles.css.js","children":[{"name":"src/date/DatePicker/styles.css","uid":"8e89-77"}]},{"name":"inputs/CreditCardInput/styles.css.js","children":[{"name":"src/inputs/CreditCardInput/styles.css","uid":"8e89-79"}]},{"name":"date/LocalDatePicker/MaskedDateInput.js","children":[{"name":"src/date/LocalDatePicker/MaskedDateInput.tsx","uid":"8e89-81"}]},{"name":"date/LocalTimePicker/MaskedTimeInput.js","children":[{"name":"src/date/LocalTimePicker/MaskedTimeInput.tsx","uid":"8e89-83"}]},{"name":"inputs/Scriptel/ScriptelContext.js","children":[{"name":"src/inputs/Scriptel/ScriptelContext.ts","uid":"8e89-85"}]},{"name":"inputs/CreditCardInput/CreditCardNumberInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardNumberInput.tsx","uid":"8e89-87"}]},{"name":"inputs/Scriptel/scriptel/index.js","children":[{"name":"src/inputs/Scriptel/scriptel/index.ts","uid":"8e89-89"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/runner/work/thr-addons/thr-addons/node_modules/style-inject/dist/style-inject.es.js","uid":"8e89-91"}]}],"isRoot":true},"nodeParts":{"8e89-1":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"8e89-0"},"8e89-3":{"renderedLength":2155,"gzipLength":770,"brotliLength":660,"mainUid":"8e89-2"},"8e89-5":{"renderedLength":113,"gzipLength":106,"brotliLength":82,"mainUid":"8e89-4"},"8e89-7":{"renderedLength":203,"gzipLength":157,"brotliLength":111,"mainUid":"8e89-6"},"8e89-9":{"renderedLength":440,"gzipLength":270,"brotliLength":214,"mainUid":"8e89-8"},"8e89-11":{"renderedLength":3529,"gzipLength":1021,"brotliLength":861,"mainUid":"8e89-10"},"8e89-13":{"renderedLength":1487,"gzipLength":502,"brotliLength":423,"mainUid":"8e89-12"},"8e89-15":{"renderedLength":312,"gzipLength":199,"brotliLength":173,"mainUid":"8e89-14"},"8e89-17":{"renderedLength":1096,"gzipLength":407,"brotliLength":339,"mainUid":"8e89-16"},"8e89-19":{"renderedLength":1135,"gzipLength":503,"brotliLength":415,"mainUid":"8e89-18"},"8e89-21":{"renderedLength":1205,"gzipLength":488,"brotliLength":402,"mainUid":"8e89-20"},"8e89-23":{"renderedLength":1965,"gzipLength":657,"brotliLength":544,"mainUid":"8e89-22"},"8e89-25":{"renderedLength":1229,"gzipLength":491,"brotliLength":424,"mainUid":"8e89-24"},"8e89-27":{"renderedLength":1553,"gzipLength":580,"brotliLength":461,"mainUid":"8e89-26"},"8e89-29":{"renderedLength":600,"gzipLength":307,"brotliLength":267,"mainUid":"8e89-28"},"8e89-31":{"renderedLength":2930,"gzipLength":959,"brotliLength":816,"mainUid":"8e89-30"},"8e89-33":{"renderedLength":390,"gzipLength":237,"brotliLength":203,"mainUid":"8e89-32"},"8e89-35":{"renderedLength":561,"gzipLength":301,"brotliLength":259,"mainUid":"8e89-34"},"8e89-37":{"renderedLength":1275,"gzipLength":476,"brotliLength":406,"mainUid":"8e89-36"},"8e89-39":{"renderedLength":275,"gzipLength":163,"brotliLength":130,"mainUid":"8e89-38"},"8e89-41":{"renderedLength":1963,"gzipLength":648,"brotliLength":547,"mainUid":"8e89-40"},"8e89-43":{"renderedLength":381,"gzipLength":248,"brotliLength":218,"mainUid":"8e89-42"},"8e89-45":{"renderedLength":2324,"gzipLength":586,"brotliLength":495,"mainUid":"8e89-44"},"8e89-47":{"renderedLength":1144,"gzipLength":530,"brotliLength":462,"mainUid":"8e89-46"},"8e89-49":{"renderedLength":2788,"gzipLength":828,"brotliLength":734,"mainUid":"8e89-48"},"8e89-51":{"renderedLength":257,"gzipLength":187,"brotliLength":149,"mainUid":"8e89-50"},"8e89-53":{"renderedLength":620,"gzipLength":346,"brotliLength":310,"mainUid":"8e89-52"},"8e89-55":{"renderedLength":264,"gzipLength":191,"brotliLength":154,"mainUid":"8e89-54"},"8e89-57":{"renderedLength":746,"gzipLength":384,"brotliLength":333,"mainUid":"8e89-56"},"8e89-59":{"renderedLength":622,"gzipLength":322,"brotliLength":263,"mainUid":"8e89-58"},"8e89-61":{"renderedLength":414,"gzipLength":261,"brotliLength":219,"mainUid":"8e89-60"},"8e89-63":{"renderedLength":717,"gzipLength":369,"brotliLength":319,"mainUid":"8e89-62"},"8e89-65":{"renderedLength":493,"gzipLength":255,"brotliLength":211,"mainUid":"8e89-64"},"8e89-67":{"renderedLength":403,"gzipLength":245,"brotliLength":195,"mainUid":"8e89-66"},"8e89-69":{"renderedLength":1575,"gzipLength":642,"brotliLength":536,"mainUid":"8e89-68"},"8e89-71":{"renderedLength":778,"gzipLength":392,"brotliLength":329,"mainUid":"8e89-70"},"8e89-73":{"renderedLength":937,"gzipLength":292,"brotliLength":231,"mainUid":"8e89-72"},"8e89-75":{"renderedLength":80,"gzipLength":90,"brotliLength":72,"mainUid":"8e89-74"},"8e89-77":{"renderedLength":538,"gzipLength":263,"brotliLength":211,"mainUid":"8e89-76"},"8e89-79":{"renderedLength":78,"gzipLength":92,"brotliLength":79,"mainUid":"8e89-78"},"8e89-81":{"renderedLength":464,"gzipLength":299,"brotliLength":256,"mainUid":"8e89-80"},"8e89-83":{"renderedLength":446,"gzipLength":290,"brotliLength":241,"mainUid":"8e89-82"},"8e89-85":{"renderedLength":46,"gzipLength":60,"brotliLength":45,"mainUid":"8e89-84"},"8e89-87":{"renderedLength":1713,"gzipLength":687,"brotliLength":585,"mainUid":"8e89-86"},"8e89-89":{"renderedLength":2530,"gzipLength":860,"brotliLength":739,"mainUid":"8e89-88"},"8e89-91":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"8e89-90"}},"nodeMetas":{"8e89-0":{"id":"/src/index.ts","moduleParts":{"index.js":"8e89-1"},"imported":[{"uid":"8e89-92"},{"uid":"8e89-93"},{"uid":"8e89-94"},{"uid":"8e89-95"},{"uid":"8e89-96"},{"uid":"8e89-97"},{"uid":"8e89-98"},{"uid":"8e89-99"},{"uid":"8e89-100"},{"uid":"8e89-101"},{"uid":"8e89-102"},{"uid":"8e89-103"},{"uid":"8e89-104"},{"uid":"8e89-105"},{"uid":"8e89-106"},{"uid":"8e89-2"},{"uid":"8e89-107"},{"uid":"8e89-108"},{"uid":"8e89-109"}],"importedBy":[],"isEntry":true},"8e89-2":{"id":"/src/money/useMoneyInput.ts","moduleParts":{"money/useMoneyInput.js":"8e89-3"},"imported":[{"uid":"8e89-110"},{"uid":"8e89-111"},{"uid":"8e89-112"},{"uid":"8e89-113"},{"uid":"8e89-114"}],"importedBy":[{"uid":"8e89-0"},{"uid":"8e89-70"},{"uid":"8e89-68"}]},"8e89-4":{"id":"/src/step/useStep.ts","moduleParts":{"step/useStep.js":"8e89-5"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-74"}],"importedBy":[{"uid":"8e89-109"},{"uid":"8e89-8"}]},"8e89-6":{"id":"/src/step/Step.tsx","moduleParts":{"step/Step.js":"8e89-7"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"}],"importedBy":[{"uid":"8e89-109"},{"uid":"8e89-10"}]},"8e89-8":{"id":"/src/step/FormStep.tsx","moduleParts":{"step/FormStep.js":"8e89-9"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-4"}],"importedBy":[{"uid":"8e89-109"},{"uid":"8e89-10"}]},"8e89-10":{"id":"/src/step/StepProvider.tsx","moduleParts":{"step/StepProvider.js":"8e89-11"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-127"},{"uid":"8e89-118"},{"uid":"8e89-8"},{"uid":"8e89-6"},{"uid":"8e89-74"}],"importedBy":[{"uid":"8e89-109"}]},"8e89-12":{"id":"/src/inputs/MaskedInput/useMaskedInput.ts","moduleParts":{"inputs/MaskedInput/useMaskedInput.js":"8e89-13"},"imported":[{"uid":"8e89-111"},{"uid":"8e89-112"},{"uid":"8e89-114"},{"uid":"8e89-122"}],"importedBy":[{"uid":"8e89-99"},{"uid":"8e89-32"},{"uid":"8e89-46"},{"uid":"8e89-86"}]},"8e89-14":{"id":"/src/inputs/TableInput/addRowOnTab.ts","moduleParts":{"inputs/TableInput/addRowOnTab.js":"8e89-15"},"imported":[],"importedBy":[{"uid":"8e89-106"},{"uid":"8e89-52"},{"uid":"8e89-56"},{"uid":"8e89-62"}]},"8e89-16":{"id":"/src/date/LocalDatePicker/LocalDatePicker.tsx","moduleParts":{"date/LocalDatePicker/LocalDatePicker.js":"8e89-17"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-115"},{"uid":"8e89-111"},{"uid":"8e89-116"},{"uid":"8e89-76"},{"uid":"8e89-80"}],"importedBy":[{"uid":"8e89-92"}]},"8e89-18":{"id":"/src/date/LocalMonthSelect/LocalMonthSelect.tsx","moduleParts":{"date/LocalMonthSelect/LocalMonthSelect.js":"8e89-19"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-117"},{"uid":"8e89-111"},{"uid":"8e89-118"}],"importedBy":[{"uid":"8e89-93"}]},"8e89-20":{"id":"/src/date/LocalTimePicker/LocalTimePicker.tsx","moduleParts":{"date/LocalTimePicker/LocalTimePicker.js":"8e89-21"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-117"},{"uid":"8e89-115"},{"uid":"8e89-111"},{"uid":"8e89-116"},{"uid":"8e89-82"}],"importedBy":[{"uid":"8e89-94"}]},"8e89-22":{"id":"/src/date/MonthDayPicker/MonthDayPicker.tsx","moduleParts":{"date/MonthDayPicker/MonthDayPicker.js":"8e89-23"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-115"},{"uid":"8e89-111"},{"uid":"8e89-118"},{"uid":"8e89-116"}],"importedBy":[{"uid":"8e89-95"}]},"8e89-24":{"id":"/src/date/MonthYearPicker/MonthYearPicker.tsx","moduleParts":{"date/MonthYearPicker/MonthYearPicker.js":"8e89-25"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-117"},{"uid":"8e89-115"},{"uid":"8e89-111"},{"uid":"8e89-118"},{"uid":"8e89-116"}],"importedBy":[{"uid":"8e89-96"}]},"8e89-26":{"id":"/src/date/YearSelect/YearSelect.tsx","moduleParts":{"date/YearSelect/YearSelect.js":"8e89-27"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-118"}],"importedBy":[{"uid":"8e89-97"}]},"8e89-28":{"id":"/src/form/TForm/TForm.tsx","moduleParts":{"form/TForm/TForm.js":"8e89-29"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-119"},{"uid":"8e89-30"}],"importedBy":[{"uid":"8e89-98"}]},"8e89-30":{"id":"/src/form/TForm/useTForm.tsx","moduleParts":{"form/TForm/useTForm.js":"8e89-31"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-120"},{"uid":"8e89-119"},{"uid":"8e89-121"},{"uid":"8e89-118"}],"importedBy":[{"uid":"8e89-98"},{"uid":"8e89-28"}]},"8e89-32":{"id":"/src/inputs/MaskedInput/MaskedInput.tsx","moduleParts":{"inputs/MaskedInput/MaskedInput.js":"8e89-33"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-118"},{"uid":"8e89-12"}],"importedBy":[{"uid":"8e89-99"}]},"8e89-34":{"id":"/src/inputs/RadioGroup/RadioGroup.tsx","moduleParts":{"inputs/RadioGroup/RadioGroup.js":"8e89-35"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-118"}],"importedBy":[{"uid":"8e89-100"}]},"8e89-36":{"id":"/src/inputs/Scriptel/Scriptel.tsx","moduleParts":{"inputs/Scriptel/Scriptel.js":"8e89-37"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-84"},{"uid":"8e89-88"}],"importedBy":[{"uid":"8e89-101"},{"uid":"8e89-38"}]},"8e89-38":{"id":"/src/inputs/Scriptel/withScriptel.tsx","moduleParts":{"inputs/Scriptel/withScriptel.js":"8e89-39"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-36"}],"importedBy":[{"uid":"8e89-101"}]},"8e89-40":{"id":"/src/inputs/ScriptelInput/ScriptelInput.tsx","moduleParts":{"inputs/ScriptelInput/ScriptelInput.js":"8e89-41"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-118"},{"uid":"8e89-84"}],"importedBy":[{"uid":"8e89-102"}]},"8e89-42":{"id":"/src/inputs/PhoneInput/PhoneInput.tsx","moduleParts":{"inputs/PhoneInput/PhoneInput.js":"8e89-43"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-99"}],"importedBy":[{"uid":"8e89-103"}]},"8e89-44":{"id":"/src/inputs/CreditCardInput/CreditCardInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardInput.js":"8e89-45"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-115"},{"uid":"8e89-111"},{"uid":"8e89-123"},{"uid":"8e89-124"},{"uid":"8e89-118"},{"uid":"8e89-96"},{"uid":"8e89-86"},{"uid":"8e89-78"}],"importedBy":[{"uid":"8e89-104"}]},"8e89-46":{"id":"/src/inputs/SinInput/SinInput.tsx","moduleParts":{"inputs/SinInput/SinInput.js":"8e89-47"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-118"},{"uid":"8e89-125"},{"uid":"8e89-12"}],"importedBy":[{"uid":"8e89-105"}]},"8e89-48":{"id":"/src/inputs/TableInput/TableInput.tsx","moduleParts":{"inputs/TableInput/TableInput.js":"8e89-49"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-119"},{"uid":"8e89-126"},{"uid":"8e89-118"}],"importedBy":[{"uid":"8e89-106"}]},"8e89-50":{"id":"/src/inputs/TableInput/MoneyCell.tsx","moduleParts":{"inputs/TableInput/MoneyCell.js":"8e89-51"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-110"}],"importedBy":[{"uid":"8e89-106"}]},"8e89-52":{"id":"/src/inputs/TableInput/MoneyEditCell.tsx","moduleParts":{"inputs/TableInput/MoneyEditCell.js":"8e89-53"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-107"},{"uid":"8e89-14"}],"importedBy":[{"uid":"8e89-106"}]},"8e89-54":{"id":"/src/inputs/TableInput/LocalDateCell.tsx","moduleParts":{"inputs/TableInput/LocalDateCell.js":"8e89-55"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-115"}],"importedBy":[{"uid":"8e89-106"}]},"8e89-56":{"id":"/src/inputs/TableInput/CheckboxEditCell.tsx","moduleParts":{"inputs/TableInput/CheckboxEditCell.js":"8e89-57"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-118"},{"uid":"8e89-14"}],"importedBy":[{"uid":"8e89-106"}]},"8e89-58":{"id":"/src/inputs/TableInput/LocalDateEditCell.tsx","moduleParts":{"inputs/TableInput/LocalDateEditCell.js":"8e89-59"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-92"}],"importedBy":[{"uid":"8e89-106"}]},"8e89-60":{"id":"/src/inputs/TableInput/MoneySumFooter.tsx","moduleParts":{"inputs/TableInput/MoneySumFooter.js":"8e89-61"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-110"}],"importedBy":[{"uid":"8e89-106"}]},"8e89-62":{"id":"/src/inputs/TableInput/StringEditCell.tsx","moduleParts":{"inputs/TableInput/StringEditCell.js":"8e89-63"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-118"},{"uid":"8e89-14"}],"importedBy":[{"uid":"8e89-106"}]},"8e89-64":{"id":"/src/inputs/TableInput/DropdownCell.tsx","moduleParts":{"inputs/TableInput/DropdownCell.js":"8e89-65"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-118"}],"importedBy":[{"uid":"8e89-106"}]},"8e89-66":{"id":"/src/inputs/TableInput/HoverCell.tsx","moduleParts":{"inputs/TableInput/HoverCell.js":"8e89-67"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"}],"importedBy":[{"uid":"8e89-106"}]},"8e89-68":{"id":"/src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","moduleParts":{"money/MoneyCurrencyInput/MoneyCurrencyInput.js":"8e89-69"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-110"},{"uid":"8e89-111"},{"uid":"8e89-113"},{"uid":"8e89-118"},{"uid":"8e89-2"}],"importedBy":[{"uid":"8e89-108"}]},"8e89-70":{"id":"/src/money/MoneyInput/MoneyInput.tsx","moduleParts":{"money/MoneyInput/MoneyInput.js":"8e89-71"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-110"},{"uid":"8e89-111"},{"uid":"8e89-113"},{"uid":"8e89-118"},{"uid":"8e89-2"}],"importedBy":[{"uid":"8e89-107"}]},"8e89-72":{"id":"/src/inputs/Scriptel/scriptel/enums.ts","moduleParts":{"inputs/Scriptel/scriptel/enums.js":"8e89-73"},"imported":[],"importedBy":[{"uid":"8e89-101"},{"uid":"8e89-88"}]},"8e89-74":{"id":"/src/step/stepContext.ts","moduleParts":{"step/stepContext.js":"8e89-75"},"imported":[{"uid":"8e89-114"}],"importedBy":[{"uid":"8e89-4"},{"uid":"8e89-10"}]},"8e89-76":{"id":"/src/date/DatePicker/styles.css","moduleParts":{"date/DatePicker/styles.css.js":"8e89-77"},"imported":[{"uid":"8e89-90"}],"importedBy":[{"uid":"8e89-16"},{"uid":"8e89-116"}]},"8e89-78":{"id":"/src/inputs/CreditCardInput/styles.css","moduleParts":{"inputs/CreditCardInput/styles.css.js":"8e89-79"},"imported":[{"uid":"8e89-90"}],"importedBy":[{"uid":"8e89-44"}]},"8e89-80":{"id":"/src/date/LocalDatePicker/MaskedDateInput.tsx","moduleParts":{"date/LocalDatePicker/MaskedDateInput.js":"8e89-81"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-99"}],"importedBy":[{"uid":"8e89-16"}]},"8e89-82":{"id":"/src/date/LocalTimePicker/MaskedTimeInput.tsx","moduleParts":{"date/LocalTimePicker/MaskedTimeInput.js":"8e89-83"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-111"},{"uid":"8e89-99"}],"importedBy":[{"uid":"8e89-20"}]},"8e89-84":{"id":"/src/inputs/Scriptel/ScriptelContext.ts","moduleParts":{"inputs/Scriptel/ScriptelContext.js":"8e89-85"},"imported":[{"uid":"8e89-114"}],"importedBy":[{"uid":"8e89-36"},{"uid":"8e89-40"}]},"8e89-86":{"id":"/src/inputs/CreditCardInput/CreditCardNumberInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardNumberInput.js":"8e89-87"},"imported":[{"uid":"8e89-114"},{"uid":"8e89-130"},{"uid":"8e89-111"},{"uid":"8e89-131"},{"uid":"8e89-118"},{"uid":"8e89-12"}],"importedBy":[{"uid":"8e89-44"}]},"8e89-88":{"id":"/src/inputs/Scriptel/scriptel/index.ts","moduleParts":{"inputs/Scriptel/scriptel/index.js":"8e89-89"},"imported":[{"uid":"8e89-111"},{"uid":"8e89-129"},{"uid":"8e89-72"}],"importedBy":[{"uid":"8e89-36"}]},"8e89-90":{"id":"/home/runner/work/thr-addons/thr-addons/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"8e89-91"},"imported":[],"importedBy":[{"uid":"8e89-76"},{"uid":"8e89-78"}]},"8e89-92":{"id":"/src/date/LocalDatePicker/index.ts","moduleParts":{},"imported":[{"uid":"8e89-16"}],"importedBy":[{"uid":"8e89-0"},{"uid":"8e89-58"}]},"8e89-93":{"id":"/src/date/LocalMonthSelect/index.ts","moduleParts":{},"imported":[{"uid":"8e89-18"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-94":{"id":"/src/date/LocalTimePicker/index.ts","moduleParts":{},"imported":[{"uid":"8e89-20"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-95":{"id":"/src/date/MonthDayPicker/index.ts","moduleParts":{},"imported":[{"uid":"8e89-22"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-96":{"id":"/src/date/MonthYearPicker/index.ts","moduleParts":{},"imported":[{"uid":"8e89-24"}],"importedBy":[{"uid":"8e89-0"},{"uid":"8e89-44"}]},"8e89-97":{"id":"/src/date/YearSelect/index.ts","moduleParts":{},"imported":[{"uid":"8e89-26"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-98":{"id":"/src/form/TForm/index.ts","moduleParts":{},"imported":[{"uid":"8e89-28"},{"uid":"8e89-30"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-99":{"id":"/src/inputs/MaskedInput/index.ts","moduleParts":{},"imported":[{"uid":"8e89-32"},{"uid":"8e89-12"}],"importedBy":[{"uid":"8e89-0"},{"uid":"8e89-42"},{"uid":"8e89-80"},{"uid":"8e89-82"}]},"8e89-100":{"id":"/src/inputs/RadioGroup/index.ts","moduleParts":{},"imported":[{"uid":"8e89-34"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-101":{"id":"/src/inputs/Scriptel/index.ts","moduleParts":{},"imported":[{"uid":"8e89-36"},{"uid":"8e89-38"},{"uid":"8e89-72"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-102":{"id":"/src/inputs/ScriptelInput/index.ts","moduleParts":{},"imported":[{"uid":"8e89-40"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-103":{"id":"/src/inputs/PhoneInput/index.ts","moduleParts":{},"imported":[{"uid":"8e89-42"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-104":{"id":"/src/inputs/CreditCardInput/index.ts","moduleParts":{},"imported":[{"uid":"8e89-44"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-105":{"id":"/src/inputs/SinInput/index.ts","moduleParts":{},"imported":[{"uid":"8e89-46"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-106":{"id":"/src/inputs/TableInput/index.ts","moduleParts":{},"imported":[{"uid":"8e89-48"},{"uid":"8e89-50"},{"uid":"8e89-52"},{"uid":"8e89-54"},{"uid":"8e89-56"},{"uid":"8e89-58"},{"uid":"8e89-60"},{"uid":"8e89-62"},{"uid":"8e89-64"},{"uid":"8e89-66"},{"uid":"8e89-14"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-107":{"id":"/src/money/MoneyInput/index.ts","moduleParts":{},"imported":[{"uid":"8e89-70"}],"importedBy":[{"uid":"8e89-0"},{"uid":"8e89-52"}]},"8e89-108":{"id":"/src/money/MoneyCurrencyInput/index.ts","moduleParts":{},"imported":[{"uid":"8e89-68"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-109":{"id":"/src/step/index.ts","moduleParts":{},"imported":[{"uid":"8e89-6"},{"uid":"8e89-4"},{"uid":"8e89-8"},{"uid":"8e89-10"}],"importedBy":[{"uid":"8e89-0"}]},"8e89-110":{"id":"@thx/money","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-2"},{"uid":"8e89-50"},{"uid":"8e89-60"},{"uid":"8e89-70"},{"uid":"8e89-68"}],"isExternal":true},"8e89-111":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-2"},{"uid":"8e89-16"},{"uid":"8e89-18"},{"uid":"8e89-20"},{"uid":"8e89-22"},{"uid":"8e89-24"},{"uid":"8e89-26"},{"uid":"8e89-28"},{"uid":"8e89-32"},{"uid":"8e89-12"},{"uid":"8e89-34"},{"uid":"8e89-36"},{"uid":"8e89-40"},{"uid":"8e89-42"},{"uid":"8e89-44"},{"uid":"8e89-46"},{"uid":"8e89-48"},{"uid":"8e89-52"},{"uid":"8e89-56"},{"uid":"8e89-58"},{"uid":"8e89-62"},{"uid":"8e89-66"},{"uid":"8e89-70"},{"uid":"8e89-68"},{"uid":"8e89-6"},{"uid":"8e89-8"},{"uid":"8e89-10"},{"uid":"8e89-80"},{"uid":"8e89-82"},{"uid":"8e89-88"},{"uid":"8e89-86"}],"isExternal":true},"8e89-112":{"id":"inputmask","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-2"},{"uid":"8e89-12"}],"isExternal":true},"8e89-113":{"id":"js-money","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-2"},{"uid":"8e89-70"},{"uid":"8e89-68"}],"isExternal":true},"8e89-114":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-2"},{"uid":"8e89-16"},{"uid":"8e89-18"},{"uid":"8e89-20"},{"uid":"8e89-22"},{"uid":"8e89-24"},{"uid":"8e89-26"},{"uid":"8e89-28"},{"uid":"8e89-30"},{"uid":"8e89-32"},{"uid":"8e89-12"},{"uid":"8e89-34"},{"uid":"8e89-36"},{"uid":"8e89-38"},{"uid":"8e89-40"},{"uid":"8e89-42"},{"uid":"8e89-44"},{"uid":"8e89-46"},{"uid":"8e89-48"},{"uid":"8e89-50"},{"uid":"8e89-52"},{"uid":"8e89-54"},{"uid":"8e89-56"},{"uid":"8e89-58"},{"uid":"8e89-60"},{"uid":"8e89-62"},{"uid":"8e89-64"},{"uid":"8e89-66"},{"uid":"8e89-70"},{"uid":"8e89-68"},{"uid":"8e89-6"},{"uid":"8e89-4"},{"uid":"8e89-8"},{"uid":"8e89-10"},{"uid":"8e89-80"},{"uid":"8e89-82"},{"uid":"8e89-84"},{"uid":"8e89-86"},{"uid":"8e89-74"}],"isExternal":true},"8e89-115":{"id":"@thx/date","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-16"},{"uid":"8e89-20"},{"uid":"8e89-22"},{"uid":"8e89-24"},{"uid":"8e89-44"},{"uid":"8e89-54"}],"isExternal":true},"8e89-116":{"id":"/src/date/DatePicker/index.ts","moduleParts":{},"imported":[{"uid":"8e89-128"},{"uid":"8e89-76"}],"importedBy":[{"uid":"8e89-16"},{"uid":"8e89-20"},{"uid":"8e89-22"},{"uid":"8e89-24"}]},"8e89-117":{"id":"@js-joda/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-18"},{"uid":"8e89-20"},{"uid":"8e89-24"}],"isExternal":true},"8e89-118":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-18"},{"uid":"8e89-22"},{"uid":"8e89-24"},{"uid":"8e89-26"},{"uid":"8e89-30"},{"uid":"8e89-32"},{"uid":"8e89-34"},{"uid":"8e89-40"},{"uid":"8e89-44"},{"uid":"8e89-46"},{"uid":"8e89-48"},{"uid":"8e89-56"},{"uid":"8e89-62"},{"uid":"8e89-64"},{"uid":"8e89-70"},{"uid":"8e89-68"},{"uid":"8e89-10"},{"uid":"8e89-86"}],"isExternal":true},"8e89-119":{"id":"formik","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-28"},{"uid":"8e89-30"},{"uid":"8e89-48"}],"isExternal":true},"8e89-120":{"id":"flat","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-30"}],"isExternal":true},"8e89-121":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-30"}],"isExternal":true},"8e89-122":{"id":"use-deep-compare-effect","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-12"}],"isExternal":true},"8e89-123":{"id":"react-credit-cards","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-44"}],"isExternal":true},"8e89-124":{"id":"react-credit-cards/es/styles-compiled.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-44"}],"isExternal":true},"8e89-125":{"id":"social-insurance-number","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-46"}],"isExternal":true},"8e89-126":{"id":"react-table","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-48"}],"isExternal":true},"8e89-127":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-10"}],"isExternal":true},"8e89-128":{"id":"react-datepicker","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-116"}],"isExternal":true},"8e89-129":{"id":"eventemitter3","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-88"}],"isExternal":true},"8e89-130":{"id":"credit-card-type","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-86"}],"isExternal":true},"8e89-131":{"id":"luhn","moduleParts":{},"imported":[],"importedBy":[{"uid":"8e89-86"}],"isExternal":true}},"env":{"rollup":"2.70.1"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
|
|
2673
2673
|
|
|
2674
2674
|
const run = () => {
|
|
2675
2675
|
const width = window.innerWidth;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export { CreditCardInput } from './inputs/CreditCardInput';
|
|
|
27
27
|
export type { CreditCardInputProps } from './inputs/CreditCardInput';
|
|
28
28
|
export { SinInput } from './inputs/SinInput';
|
|
29
29
|
export type { SinInputProps } from './inputs/SinInput';
|
|
30
|
-
export { TableInput, MoneyCell, MoneyEditCell, LocalDateCell, LocalDateEditCell, MoneySumFooter, StringEditCell, DropdownCell, HoverCell, addRowOnTab, } from './inputs/TableInput';
|
|
30
|
+
export { TableInput, MoneyCell, MoneyEditCell, CheckboxEditCell, LocalDateCell, LocalDateEditCell, MoneySumFooter, StringEditCell, DropdownCell, HoverCell, addRowOnTab, } from './inputs/TableInput';
|
|
31
31
|
export type { AddRowOnTabIf } from './inputs/TableInput';
|
|
32
32
|
export { useMoneyInput } from './money/useMoneyInput';
|
|
33
33
|
export { MoneyInput } from './money/MoneyInput';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { CheckboxProps } from 'semantic-ui-react';
|
|
3
|
+
import type { TableCellProps } from './TableInput';
|
|
4
|
+
import type { AddRowOnTabIf } from './addRowOnTab';
|
|
5
|
+
interface CheckboxEditCellOptions<D extends Record<string, unknown>> {
|
|
6
|
+
/** Override SemanticUI Input props */
|
|
7
|
+
inputProps?: CheckboxProps;
|
|
8
|
+
/** If function is present, and returns true, will add a new row if tab is pressed on the last row */
|
|
9
|
+
addRowOnTabIf?: AddRowOnTabIf<D, boolean>;
|
|
10
|
+
}
|
|
11
|
+
export declare function CheckboxEditCell<D extends Record<string, unknown>>(options?: CheckboxEditCellOptions<D>): (props: TableCellProps<D, boolean>) => JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -2,6 +2,7 @@ export { TableInput } from './TableInput';
|
|
|
2
2
|
export { MoneyCell } from './MoneyCell';
|
|
3
3
|
export { MoneyEditCell } from './MoneyEditCell';
|
|
4
4
|
export { LocalDateCell } from './LocalDateCell';
|
|
5
|
+
export { CheckboxEditCell } from './CheckboxEditCell';
|
|
5
6
|
export { LocalDateEditCell } from './LocalDateEditCell';
|
|
6
7
|
export { MoneySumFooter } from './MoneySumFooter';
|
|
7
8
|
export { StringEditCell } from './StringEditCell';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thx/controls",
|
|
3
|
-
"version": "16.3.
|
|
3
|
+
"version": "16.3.4-alpha.2+1db0445",
|
|
4
4
|
"description": "A collection of components designed with SemanticUI.",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/thr-consulting/thr-addons/issues"
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "1db04454aac210430bef592d808a3f69abb7df57"
|
|
68
68
|
}
|