@thx/controls 17.1.1-alpha.0 → 17.1.1-alpha.4

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.
@@ -5,7 +5,7 @@ function LocalDateCell(options) {
5
5
  return function LocalDateCellFn(props) {
6
6
  return /* @__PURE__ */ React.createElement("div", {
7
7
  style: { textAlign: "right" }
8
- }, formatDate(options?.overrideValue ? options.overrideValue(props) : props.value));
8
+ }, formatDate(options?.overrideValue ? options.overrideValue(props) : props.value, options?.dateFormat));
9
9
  };
10
10
  }
11
11
 
@@ -1 +1 @@
1
- {"version":3,"file":"LocalDateCell.js","sources":["../../../../src/inputs/TableInput/LocalDateCell.tsx"],"sourcesContent":["import type {LocalDate} from '@js-joda/core';\nimport {formatDate} from '@thx/date';\nimport type {CellProps} from 'react-table';\n\ninterface LocalDateCellOptions<D extends Record<string, unknown>> {\n\t/** If provided, this function will override the LocalDate value displayed */\n\toverrideValue?: (props: CellProps<D, LocalDate>) => LocalDate;\n}\n\nexport function LocalDateCell<D extends Record<string, unknown>>(options?: LocalDateCellOptions<D>) {\n\treturn function LocalDateCellFn(props: CellProps<D, LocalDate>) {\n\t\treturn <div style={{textAlign: 'right'}}>{formatDate(options?.overrideValue ? options.overrideValue(props) : props.value)}</div>;\n\t};\n}\n"],"names":[],"mappings":";;;AASO,SAAA,aAAA,CAA0D,OAAmC,EAAA;AACnG,EAAA,OAAO,yBAAyB,KAAgC,EAAA;AAC/D,IAAA,uBAAQ,KAAA,CAAA,aAAA,CAAA,KAAA,EAAA;AAAA,MAAI,KAAA,EAAO,EAAC,SAAA,EAAW,OAAO,EAAA;AAAA,KAAI,EAAA,UAAA,CAAW,SAAS,aAAgB,GAAA,OAAA,CAAQ,cAAc,KAAK,CAAA,GAAI,KAAM,CAAA,KAAK,CAAE,CAAA,CAAA;AAAA,GAC3H,CAAA;AACD;;;;"}
1
+ {"version":3,"file":"LocalDateCell.js","sources":["../../../../src/inputs/TableInput/LocalDateCell.tsx"],"sourcesContent":["import type {LocalDate} from '@js-joda/core';\nimport {formatDate, type FormatDateParams} from '@thx/date';\nimport type {CellProps} from 'react-table';\n\ninterface LocalDateCellOptions<D extends Record<string, unknown>> {\n\t/** If provided, this function will override the LocalDate value displayed */\n\toverrideValue?: (props: CellProps<D, LocalDate>) => LocalDate;\n\tdateFormat?: FormatDateParams;\n}\n\nexport function LocalDateCell<D extends Record<string, unknown>>(options?: LocalDateCellOptions<D>) {\n\treturn function LocalDateCellFn(props: CellProps<D, LocalDate>) {\n\t\treturn (\n\t\t\t<div style={{textAlign: 'right'}}>{formatDate(options?.overrideValue ? options.overrideValue(props) : props.value, options?.dateFormat)}</div>\n\t\t);\n\t};\n}\n"],"names":[],"mappings":";;;AAUO,SAAA,aAAA,CAA0D,OAAmC,EAAA;AACnG,EAAA,OAAO,yBAAyB,KAAgC,EAAA;AAC/D,IAAA,uBACE,KAAA,CAAA,aAAA,CAAA,KAAA,EAAA;AAAA,MAAI,KAAA,EAAO,EAAC,SAAA,EAAW,OAAO,EAAA;AAAA,KAAI,EAAA,UAAA,CAAW,OAAS,EAAA,aAAA,GAAgB,OAAQ,CAAA,aAAA,CAAc,KAAK,CAAA,GAAI,KAAM,CAAA,KAAA,EAAO,OAAS,EAAA,UAAU,CAAE,CAAA,CAAA;AAAA,GAE1I,CAAA;AACD;;;;"}
@@ -57,9 +57,11 @@ function TableInputTable(props) {
57
57
  return /* @__PURE__ */ React.createElement(Table.Row, {
58
58
  ...{ ...row.getRowProps(), ...row.getRowProps(rowProps) },
59
59
  onMouseEnter: () => setHoverRow(row.id),
60
- onMouseLeave: () => setHoverRow("")
60
+ onMouseLeave: () => setHoverRow(""),
61
+ key: row.getRowProps().key
61
62
  }, row.cells.map((cell) => /* @__PURE__ */ React.createElement(Table.Cell, {
62
- ...{ ...cell.getCellProps(), ...cell.getCellProps(cellProps) }
63
+ ...{ ...cell.getCellProps(), ...cell.getCellProps(cellProps) },
64
+ key: cell.getCellProps().key
63
65
  }, cell.render("Cell", { hoverRow }))));
64
66
  })), footer);
65
67
  }
@@ -1 +1 @@
1
- {"version":3,"file":"TableInput.js","sources":["../../../../src/inputs/TableInput/TableInput.tsx"],"sourcesContent":["import debug from 'debug';\nimport {FieldArray, FieldArrayRenderProps} from 'formik';\nimport {useMemo, useState} from 'react';\nimport {\n\tCellPropGetter,\n\tCellProps,\n\tColumn,\n\tFooterGroupPropGetter,\n\tFooterPropGetter,\n\tHeaderGroupPropGetter,\n\tHeaderPropGetter,\n\tRowPropGetter,\n\tTableBodyPropGetter,\n\tuseTable,\n} from 'react-table';\nimport {Table, TableProps} from 'semantic-ui-react';\n\nconst d = debug('thx.controls.inputs.TableInput');\n\ntype DefaultTableType = Record<string, unknown>;\n\ninterface TableInputProps<A extends DefaultTableType> {\n\tname: string;\n\tvalues: A[];\n\tcolumns: Column<A>[];\n\tsetFieldValue: (field: string, value: any, shouldValidate?: boolean | undefined) => void;\n\tcreateRow?: () => A;\n\ttableProps?: TableProps;\n\theaderRowProps?: HeaderGroupPropGetter<A>;\n\theaderCellProps?: HeaderPropGetter<A>;\n\tfooterRowProps?: FooterGroupPropGetter<A>;\n\tfooterCellProps?: FooterPropGetter<A>;\n\tbodyProps?: TableBodyPropGetter<A>;\n\trowProps?: RowPropGetter<A>;\n\tcellProps?: CellPropGetter<A>;\n}\n\ninterface TableInputTableProps<A extends DefaultTableType> extends TableInputProps<A> {\n\tarrayHelpers: FieldArrayRenderProps;\n}\n\nexport interface TableCellProps<D extends DefaultTableType, V = any> extends CellProps<D, V> {\n\tarrayHelpers: FieldArrayRenderProps;\n\taddRow: () => void;\n\tupdateData: (index: number, id: string, value: V) => void;\n\thoverRow: string | number;\n}\n\nfunction TableInputTable<A extends DefaultTableType>(props: TableInputTableProps<A>) {\n\tconst {\n\t\tname,\n\t\tcolumns,\n\t\tvalues,\n\t\tarrayHelpers,\n\t\tsetFieldValue,\n\t\tcreateRow,\n\t\ttableProps,\n\t\theaderRowProps,\n\t\theaderCellProps,\n\t\tbodyProps,\n\t\trowProps,\n\t\tcellProps,\n\t\tfooterCellProps,\n\t\tfooterRowProps,\n\t} = props;\n\tconst cols = useMemo(() => columns, [columns]);\n\tconst vals = useMemo(() => values, [values]);\n\tconst [hoverRow, setHoverRow] = useState('');\n\n\t// React-Table hook\n\tconst {getTableProps, getTableBodyProps, headerGroups, prepareRow, rows, footerGroups} = useTable<A>({\n\t\tcolumns: cols,\n\t\tdata: vals,\n\t\t// @ts-ignore\n\t\tupdateData(rowIndex, columnId, value) {\n\t\t\tsetFieldValue(`${name}[${rowIndex}].${columnId}`, value);\n\t\t},\n\t\taddRow() {\n\t\t\tif (createRow) {\n\t\t\t\tarrayHelpers.push(createRow());\n\t\t\t}\n\t\t},\n\t\tarrayHelpers,\n\t});\n\n\t// @ts-ignore Check for the existence of a Footer that is not the default emptyRenderer()\n\tconst hasFooter = footerGroups.some(fg => fg.headers.some(fgh => fgh.Footer.name !== 'emptyRenderer'));\n\n\t// Build Footer if any footer renderers exist\n\tconst footer = hasFooter ? (\n\t\t<Table.Footer>\n\t\t\t{footerGroups.map(group => (\n\t\t\t\t// eslint-disable-next-line react/jsx-key\n\t\t\t\t<Table.Row {...{...group.getFooterGroupProps(), ...group.getFooterGroupProps(footerRowProps)}}>\n\t\t\t\t\t{group.headers.map(column => (\n\t\t\t\t\t\t// eslint-disable-next-line react/jsx-key\n\t\t\t\t\t\t<Table.HeaderCell {...{...column.getFooterProps(), ...column.getFooterProps(footerCellProps)}}>\n\t\t\t\t\t\t\t{column.render('Footer')}\n\t\t\t\t\t\t</Table.HeaderCell>\n\t\t\t\t\t))}\n\t\t\t\t</Table.Row>\n\t\t\t))}\n\t\t</Table.Footer>\n\t) : null;\n\n\treturn (\n\t\t<Table {...{...getTableProps(), ...getTableProps(tableProps)}}>\n\t\t\t<Table.Header>\n\t\t\t\t{headerGroups.map(headerGroup => (\n\t\t\t\t\t// eslint-disable-next-line react/jsx-key\n\t\t\t\t\t<Table.Row {...{...headerGroup.getHeaderGroupProps(), ...headerGroup.getHeaderGroupProps(headerRowProps)}}>\n\t\t\t\t\t\t{headerGroup.headers.map(column => (\n\t\t\t\t\t\t\t// eslint-disable-next-line react/jsx-key\n\t\t\t\t\t\t\t<Table.HeaderCell {...{...column.getHeaderProps(), ...column.getHeaderProps(headerCellProps)}}>\n\t\t\t\t\t\t\t\t{column.render('Header')}\n\t\t\t\t\t\t\t</Table.HeaderCell>\n\t\t\t\t\t\t))}\n\t\t\t\t\t</Table.Row>\n\t\t\t\t))}\n\t\t\t</Table.Header>\n\t\t\t<Table.Body {...{...getTableBodyProps(), ...getTableBodyProps(bodyProps)}}>\n\t\t\t\t{rows.map(row => {\n\t\t\t\t\tprepareRow(row);\n\t\t\t\t\treturn (\n\t\t\t\t\t\t// eslint-disable-next-line react/jsx-key\n\t\t\t\t\t\t<Table.Row\n\t\t\t\t\t\t\t{...{...row.getRowProps(), ...row.getRowProps(rowProps)}}\n\t\t\t\t\t\t\tonMouseEnter={() => setHoverRow(row.id)}\n\t\t\t\t\t\t\tonMouseLeave={() => setHoverRow('')}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{row.cells.map(cell => (\n\t\t\t\t\t\t\t\t// eslint-disable-next-line react/jsx-key\n\t\t\t\t\t\t\t\t<Table.Cell {...{...cell.getCellProps(), ...cell.getCellProps(cellProps)}}>{cell.render('Cell', {hoverRow})}</Table.Cell>\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t</Table.Row>\n\t\t\t\t\t);\n\t\t\t\t})}\n\t\t\t</Table.Body>\n\t\t\t{footer}\n\t\t</Table>\n\t);\n}\n\n/**\n * Can be used in a TForm as a Table Input.\n * @param props\n * @constructor\n */\nexport function TableInput<A extends DefaultTableType>(props: TableInputProps<A>) {\n\treturn <FieldArray name={props.name} render={arrayHelpers => <TableInputTable arrayHelpers={arrayHelpers} {...props} />} />;\n}\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"TableInput.js","sources":["../../../../src/inputs/TableInput/TableInput.tsx"],"sourcesContent":["import debug from 'debug';\nimport {FieldArray, FieldArrayRenderProps} from 'formik';\nimport {useMemo, useState} from 'react';\nimport {\n\tCellPropGetter,\n\tCellProps,\n\tColumn,\n\tFooterGroupPropGetter,\n\tFooterPropGetter,\n\tHeaderGroupPropGetter,\n\tHeaderPropGetter,\n\tRowPropGetter,\n\tTableBodyPropGetter,\n\tuseTable,\n} from 'react-table';\nimport {Table, TableProps} from 'semantic-ui-react';\n\nconst d = debug('thx.controls.inputs.TableInput');\n\ntype DefaultTableType = Record<string, unknown>;\n\ninterface TableInputProps<A extends DefaultTableType> {\n\tname: string;\n\tvalues: A[];\n\tcolumns: Column<A>[];\n\tsetFieldValue: (field: string, value: any, shouldValidate?: boolean | undefined) => void;\n\tcreateRow?: () => A;\n\ttableProps?: TableProps;\n\theaderRowProps?: HeaderGroupPropGetter<A>;\n\theaderCellProps?: HeaderPropGetter<A>;\n\tfooterRowProps?: FooterGroupPropGetter<A>;\n\tfooterCellProps?: FooterPropGetter<A>;\n\tbodyProps?: TableBodyPropGetter<A>;\n\trowProps?: RowPropGetter<A>;\n\tcellProps?: CellPropGetter<A>;\n}\n\ninterface TableInputTableProps<A extends DefaultTableType> extends TableInputProps<A> {\n\tarrayHelpers: FieldArrayRenderProps;\n}\n\nexport interface TableCellProps<D extends DefaultTableType, V = any> extends CellProps<D, V> {\n\tarrayHelpers: FieldArrayRenderProps;\n\taddRow: () => void;\n\tupdateData: (index: number, id: string, value: V) => void;\n\thoverRow: string | number;\n}\n\nfunction TableInputTable<A extends DefaultTableType>(props: TableInputTableProps<A>) {\n\tconst {\n\t\tname,\n\t\tcolumns,\n\t\tvalues,\n\t\tarrayHelpers,\n\t\tsetFieldValue,\n\t\tcreateRow,\n\t\ttableProps,\n\t\theaderRowProps,\n\t\theaderCellProps,\n\t\tbodyProps,\n\t\trowProps,\n\t\tcellProps,\n\t\tfooterCellProps,\n\t\tfooterRowProps,\n\t} = props;\n\tconst cols = useMemo(() => columns, [columns]);\n\tconst vals = useMemo(() => values, [values]);\n\tconst [hoverRow, setHoverRow] = useState('');\n\n\t// React-Table hook\n\tconst {getTableProps, getTableBodyProps, headerGroups, prepareRow, rows, footerGroups} = useTable<A>({\n\t\tcolumns: cols,\n\t\tdata: vals,\n\t\t// @ts-ignore\n\t\tupdateData(rowIndex, columnId, value) {\n\t\t\tsetFieldValue(`${name}[${rowIndex}].${columnId}`, value);\n\t\t},\n\t\taddRow() {\n\t\t\tif (createRow) {\n\t\t\t\tarrayHelpers.push(createRow());\n\t\t\t}\n\t\t},\n\t\tarrayHelpers,\n\t});\n\n\t// @ts-ignore Check for the existence of a Footer that is not the default emptyRenderer()\n\tconst hasFooter = footerGroups.some(fg => fg.headers.some(fgh => fgh.Footer.name !== 'emptyRenderer'));\n\n\t// Build Footer if any footer renderers exist\n\tconst footer = hasFooter ? (\n\t\t<Table.Footer>\n\t\t\t{footerGroups.map(group => (\n\t\t\t\t// eslint-disable-next-line react/jsx-key\n\t\t\t\t<Table.Row {...{...group.getFooterGroupProps(), ...group.getFooterGroupProps(footerRowProps)}}>\n\t\t\t\t\t{group.headers.map(column => (\n\t\t\t\t\t\t// eslint-disable-next-line react/jsx-key\n\t\t\t\t\t\t<Table.HeaderCell {...{...column.getFooterProps(), ...column.getFooterProps(footerCellProps)}}>\n\t\t\t\t\t\t\t{column.render('Footer')}\n\t\t\t\t\t\t</Table.HeaderCell>\n\t\t\t\t\t))}\n\t\t\t\t</Table.Row>\n\t\t\t))}\n\t\t</Table.Footer>\n\t) : null;\n\n\treturn (\n\t\t<Table {...{...getTableProps(), ...getTableProps(tableProps)}}>\n\t\t\t<Table.Header>\n\t\t\t\t{headerGroups.map(headerGroup => (\n\t\t\t\t\t// eslint-disable-next-line react/jsx-key\n\t\t\t\t\t<Table.Row {...{...headerGroup.getHeaderGroupProps(), ...headerGroup.getHeaderGroupProps(headerRowProps)}}>\n\t\t\t\t\t\t{headerGroup.headers.map(column => (\n\t\t\t\t\t\t\t// eslint-disable-next-line react/jsx-key\n\t\t\t\t\t\t\t<Table.HeaderCell {...{...column.getHeaderProps(), ...column.getHeaderProps(headerCellProps)}}>\n\t\t\t\t\t\t\t\t{column.render('Header')}\n\t\t\t\t\t\t\t</Table.HeaderCell>\n\t\t\t\t\t\t))}\n\t\t\t\t\t</Table.Row>\n\t\t\t\t))}\n\t\t\t</Table.Header>\n\t\t\t<Table.Body {...{...getTableBodyProps(), ...getTableBodyProps(bodyProps)}}>\n\t\t\t\t{rows.map(row => {\n\t\t\t\t\tprepareRow(row);\n\t\t\t\t\treturn (\n\t\t\t\t\t\t<Table.Row\n\t\t\t\t\t\t\t{...{...row.getRowProps(), ...row.getRowProps(rowProps)}}\n\t\t\t\t\t\t\tonMouseEnter={() => setHoverRow(row.id)}\n\t\t\t\t\t\t\tonMouseLeave={() => setHoverRow('')}\n\t\t\t\t\t\t\tkey={row.getRowProps().key}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{row.cells.map(cell => (\n\t\t\t\t\t\t\t\t<Table.Cell {...{...cell.getCellProps(), ...cell.getCellProps(cellProps)}} key={cell.getCellProps().key}>\n\t\t\t\t\t\t\t\t\t{cell.render('Cell', {hoverRow})}\n\t\t\t\t\t\t\t\t</Table.Cell>\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t</Table.Row>\n\t\t\t\t\t);\n\t\t\t\t})}\n\t\t\t</Table.Body>\n\t\t\t{footer}\n\t\t</Table>\n\t);\n}\n\n/**\n * Can be used in a TForm as a Table Input.\n * @param props\n * @constructor\n */\nexport function TableInput<A extends DefaultTableType>(props: TableInputProps<A>) {\n\treturn <FieldArray name={props.name} render={arrayHelpers => <TableInputTable arrayHelpers={arrayHelpers} {...props} />} />;\n}\n"],"names":[],"mappings":"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"}
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":"4d0d-1"}]},{"name":"step/useStep.js","children":[{"name":"src/step/useStep.ts","uid":"4d0d-3"}]},{"name":"step/Step.js","children":[{"name":"src/step/Step.tsx","uid":"4d0d-5"}]},{"name":"step/FormStep.js","children":[{"name":"src/step/FormStep.tsx","uid":"4d0d-7"}]},{"name":"step/StepProvider.js","children":[{"name":"src/step/StepProvider.tsx","uid":"4d0d-9"}]},{"name":"inputs/MaskedInput/useMaskedInput.js","children":[{"name":"src/inputs/MaskedInput/useMaskedInput.ts","uid":"4d0d-11"}]},{"name":"inputs/TableInput/addRowOnTab.js","children":[{"name":"src/inputs/TableInput/addRowOnTab.ts","uid":"4d0d-13"}]},{"name":"date/LocalDatePicker/LocalDatePicker.js","children":[{"name":"src/date/LocalDatePicker/LocalDatePicker.tsx","uid":"4d0d-15"}]},{"name":"date/LocalMonthSelect/LocalMonthSelect.js","children":[{"name":"src/date/LocalMonthSelect/LocalMonthSelect.tsx","uid":"4d0d-17"}]},{"name":"date/LocalTimePicker/LocalTimePicker.js","children":[{"name":"src/date/LocalTimePicker/LocalTimePicker.tsx","uid":"4d0d-19"}]},{"name":"date/MonthDayPicker/MonthDayPicker.js","children":[{"name":"src/date/MonthDayPicker/MonthDayPicker.tsx","uid":"4d0d-21"}]},{"name":"date/MonthYearPicker/MonthYearPicker.js","children":[{"name":"src/date/MonthYearPicker/MonthYearPicker.tsx","uid":"4d0d-23"}]},{"name":"date/YearSelect/YearSelect.js","children":[{"name":"src/date/YearSelect/YearSelect.tsx","uid":"4d0d-25"}]},{"name":"form/TForm/TForm.js","children":[{"name":"src/form/TForm/TForm.tsx","uid":"4d0d-27"}]},{"name":"form/TForm/useTForm.js","children":[{"name":"src/form/TForm/useTForm.tsx","uid":"4d0d-29"}]},{"name":"inputs/MaskedInput/MaskedInput.js","children":[{"name":"src/inputs/MaskedInput/MaskedInput.tsx","uid":"4d0d-31"}]},{"name":"inputs/RadioGroup/RadioGroup.js","children":[{"name":"src/inputs/RadioGroup/RadioGroup.tsx","uid":"4d0d-33"}]},{"name":"inputs/Scriptel/Scriptel.js","children":[{"name":"src/inputs/Scriptel/Scriptel.tsx","uid":"4d0d-35"}]},{"name":"inputs/Scriptel/withScriptel.js","children":[{"name":"src/inputs/Scriptel/withScriptel.tsx","uid":"4d0d-37"}]},{"name":"inputs/PhoneInput/PhoneInput.js","children":[{"name":"src/inputs/PhoneInput/PhoneInput.tsx","uid":"4d0d-39"}]},{"name":"inputs/ScriptelInput/ScriptelInput.js","children":[{"name":"src/inputs/ScriptelInput/ScriptelInput.tsx","uid":"4d0d-41"}]},{"name":"inputs/CreditCardInput/CreditCardInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardInput.tsx","uid":"4d0d-43"}]},{"name":"inputs/TableInput/TableInput.js","children":[{"name":"src/inputs/TableInput/TableInput.tsx","uid":"4d0d-45"}]},{"name":"inputs/TableInput/MoneyCell.js","children":[{"name":"src/inputs/TableInput/MoneyCell.tsx","uid":"4d0d-47"}]},{"name":"inputs/TableInput/MoneyEditCell.js","children":[{"name":"src/inputs/TableInput/MoneyEditCell.tsx","uid":"4d0d-49"}]},{"name":"inputs/TableInput/LocalDateCell.js","children":[{"name":"src/inputs/TableInput/LocalDateCell.tsx","uid":"4d0d-51"}]},{"name":"inputs/TableInput/CheckboxEditCell.js","children":[{"name":"src/inputs/TableInput/CheckboxEditCell.tsx","uid":"4d0d-53"}]},{"name":"inputs/TableInput/LocalDateEditCell.js","children":[{"name":"src/inputs/TableInput/LocalDateEditCell.tsx","uid":"4d0d-55"}]},{"name":"inputs/TableInput/LocalTimeEditCell.js","children":[{"name":"src/inputs/TableInput/LocalTimeEditCell.tsx","uid":"4d0d-57"}]},{"name":"inputs/TableInput/NumberEditCell.js","children":[{"name":"src/inputs/TableInput/NumberEditCell.tsx","uid":"4d0d-59"}]},{"name":"inputs/TableInput/MoneySumFooter.js","children":[{"name":"src/inputs/TableInput/MoneySumFooter.tsx","uid":"4d0d-61"}]},{"name":"inputs/TableInput/StringEditCell.js","children":[{"name":"src/inputs/TableInput/StringEditCell.tsx","uid":"4d0d-63"}]},{"name":"inputs/TableInput/DropdownCell.js","children":[{"name":"src/inputs/TableInput/DropdownCell.tsx","uid":"4d0d-65"}]},{"name":"inputs/TableInput/HoverCell.js","children":[{"name":"src/inputs/TableInput/HoverCell.tsx","uid":"4d0d-67"}]},{"name":"inputs/SinInput/SinInput.js","children":[{"name":"src/inputs/SinInput/SinInput.tsx","uid":"4d0d-69"}]},{"name":"money/MoneyCurrencyInput/MoneyCurrencyInput.js","children":[{"name":"src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","uid":"4d0d-71"}]},{"name":"money/MoneyInput/MoneyInput.js","children":[{"name":"src/money/MoneyInput/MoneyInput.tsx","uid":"4d0d-73"}]},{"name":"inputs/Scriptel/scriptel/enums.js","children":[{"name":"src/inputs/Scriptel/scriptel/enums.ts","uid":"4d0d-75"}]},{"name":"step/stepContext.js","children":[{"name":"src/step/stepContext.ts","uid":"4d0d-77"}]},{"name":"inputs/CreditCardInput/styles.css.js","children":[{"name":"src/inputs/CreditCardInput/styles.css","uid":"4d0d-79"}]},{"name":"date/DatePicker/styles.css.js","children":[{"name":"src/date/DatePicker/styles.css","uid":"4d0d-81"}]},{"name":"inputs/Scriptel/ScriptelContext.js","children":[{"name":"src/inputs/Scriptel/ScriptelContext.ts","uid":"4d0d-83"}]},{"name":"date/LocalDatePicker/MaskedDateInput.js","children":[{"name":"src/date/LocalDatePicker/MaskedDateInput.tsx","uid":"4d0d-85"}]},{"name":"date/LocalTimePicker/MaskedTimeInput.js","children":[{"name":"src/date/LocalTimePicker/MaskedTimeInput.tsx","uid":"4d0d-87"}]},{"name":"inputs/CreditCardInput/CreditCardNumberInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardNumberInput.tsx","uid":"4d0d-89"}]},{"name":"money/useMoneyInput.js","children":[{"name":"src/money/useMoneyInput.ts","uid":"4d0d-91"}]},{"name":"inputs/Scriptel/scriptel/index.js","children":[{"name":"src/inputs/Scriptel/scriptel/index.ts","uid":"4d0d-93"}]},{"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":"4d0d-95"}]}],"isRoot":true},"nodeParts":{"4d0d-1":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"4d0d-0"},"4d0d-3":{"renderedLength":113,"gzipLength":107,"brotliLength":82,"mainUid":"4d0d-2"},"4d0d-5":{"renderedLength":203,"gzipLength":155,"brotliLength":111,"mainUid":"4d0d-4"},"4d0d-7":{"renderedLength":440,"gzipLength":270,"brotliLength":214,"mainUid":"4d0d-6"},"4d0d-9":{"renderedLength":3529,"gzipLength":1015,"brotliLength":861,"mainUid":"4d0d-8"},"4d0d-11":{"renderedLength":1487,"gzipLength":501,"brotliLength":423,"mainUid":"4d0d-10"},"4d0d-13":{"renderedLength":312,"gzipLength":199,"brotliLength":173,"mainUid":"4d0d-12"},"4d0d-15":{"renderedLength":3161,"gzipLength":952,"brotliLength":853,"mainUid":"4d0d-14"},"4d0d-17":{"renderedLength":1135,"gzipLength":505,"brotliLength":415,"mainUid":"4d0d-16"},"4d0d-19":{"renderedLength":1624,"gzipLength":580,"brotliLength":482,"mainUid":"4d0d-18"},"4d0d-21":{"renderedLength":1965,"gzipLength":655,"brotliLength":544,"mainUid":"4d0d-20"},"4d0d-23":{"renderedLength":1229,"gzipLength":496,"brotliLength":424,"mainUid":"4d0d-22"},"4d0d-25":{"renderedLength":1553,"gzipLength":579,"brotliLength":461,"mainUid":"4d0d-24"},"4d0d-27":{"renderedLength":600,"gzipLength":308,"brotliLength":267,"mainUid":"4d0d-26"},"4d0d-29":{"renderedLength":2930,"gzipLength":953,"brotliLength":816,"mainUid":"4d0d-28"},"4d0d-31":{"renderedLength":513,"gzipLength":301,"brotliLength":257,"mainUid":"4d0d-30"},"4d0d-33":{"renderedLength":561,"gzipLength":301,"brotliLength":259,"mainUid":"4d0d-32"},"4d0d-35":{"renderedLength":1275,"gzipLength":474,"brotliLength":406,"mainUid":"4d0d-34"},"4d0d-37":{"renderedLength":275,"gzipLength":163,"brotliLength":130,"mainUid":"4d0d-36"},"4d0d-39":{"renderedLength":908,"gzipLength":382,"brotliLength":319,"mainUid":"4d0d-38"},"4d0d-41":{"renderedLength":1963,"gzipLength":647,"brotliLength":547,"mainUid":"4d0d-40"},"4d0d-43":{"renderedLength":2324,"gzipLength":584,"brotliLength":495,"mainUid":"4d0d-42"},"4d0d-45":{"renderedLength":2821,"gzipLength":840,"brotliLength":752,"mainUid":"4d0d-44"},"4d0d-47":{"renderedLength":257,"gzipLength":185,"brotliLength":149,"mainUid":"4d0d-46"},"4d0d-49":{"renderedLength":708,"gzipLength":366,"brotliLength":313,"mainUid":"4d0d-48"},"4d0d-51":{"renderedLength":264,"gzipLength":190,"brotliLength":154,"mainUid":"4d0d-50"},"4d0d-53":{"renderedLength":702,"gzipLength":369,"brotliLength":330,"mainUid":"4d0d-52"},"4d0d-55":{"renderedLength":695,"gzipLength":349,"brotliLength":295,"mainUid":"4d0d-54"},"4d0d-57":{"renderedLength":622,"gzipLength":322,"brotliLength":269,"mainUid":"4d0d-56"},"4d0d-59":{"renderedLength":782,"gzipLength":409,"brotliLength":345,"mainUid":"4d0d-58"},"4d0d-61":{"renderedLength":414,"gzipLength":259,"brotliLength":219,"mainUid":"4d0d-60"},"4d0d-63":{"renderedLength":717,"gzipLength":372,"brotliLength":319,"mainUid":"4d0d-62"},"4d0d-65":{"renderedLength":493,"gzipLength":255,"brotliLength":211,"mainUid":"4d0d-64"},"4d0d-67":{"renderedLength":403,"gzipLength":244,"brotliLength":195,"mainUid":"4d0d-66"},"4d0d-69":{"renderedLength":1144,"gzipLength":532,"brotliLength":462,"mainUid":"4d0d-68"},"4d0d-71":{"renderedLength":1575,"gzipLength":640,"brotliLength":536,"mainUid":"4d0d-70"},"4d0d-73":{"renderedLength":778,"gzipLength":391,"brotliLength":329,"mainUid":"4d0d-72"},"4d0d-75":{"renderedLength":937,"gzipLength":292,"brotliLength":231,"mainUid":"4d0d-74"},"4d0d-77":{"renderedLength":80,"gzipLength":92,"brotliLength":72,"mainUid":"4d0d-76"},"4d0d-79":{"renderedLength":78,"gzipLength":92,"brotliLength":79,"mainUid":"4d0d-78"},"4d0d-81":{"renderedLength":538,"gzipLength":261,"brotliLength":211,"mainUid":"4d0d-80"},"4d0d-83":{"renderedLength":46,"gzipLength":60,"brotliLength":45,"mainUid":"4d0d-82"},"4d0d-85":{"renderedLength":426,"gzipLength":286,"brotliLength":244,"mainUid":"4d0d-84"},"4d0d-87":{"renderedLength":424,"gzipLength":285,"brotliLength":257,"mainUid":"4d0d-86"},"4d0d-89":{"renderedLength":1713,"gzipLength":689,"brotliLength":585,"mainUid":"4d0d-88"},"4d0d-91":{"renderedLength":2155,"gzipLength":764,"brotliLength":660,"mainUid":"4d0d-90"},"4d0d-93":{"renderedLength":2530,"gzipLength":860,"brotliLength":739,"mainUid":"4d0d-92"},"4d0d-95":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"4d0d-94"}},"nodeMetas":{"4d0d-0":{"id":"/src/index.ts","moduleParts":{"index.js":"4d0d-1"},"imported":[{"uid":"4d0d-96"},{"uid":"4d0d-97"},{"uid":"4d0d-98"},{"uid":"4d0d-99"},{"uid":"4d0d-100"},{"uid":"4d0d-101"},{"uid":"4d0d-102"},{"uid":"4d0d-103"},{"uid":"4d0d-104"},{"uid":"4d0d-105"},{"uid":"4d0d-106"},{"uid":"4d0d-107"},{"uid":"4d0d-108"},{"uid":"4d0d-109"},{"uid":"4d0d-110"},{"uid":"4d0d-111"},{"uid":"4d0d-112"},{"uid":"4d0d-113"}],"importedBy":[],"isEntry":true},"4d0d-2":{"id":"/src/step/useStep.ts","moduleParts":{"step/useStep.js":"4d0d-3"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-76"}],"importedBy":[{"uid":"4d0d-113"},{"uid":"4d0d-6"}]},"4d0d-4":{"id":"/src/step/Step.tsx","moduleParts":{"step/Step.js":"4d0d-5"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"}],"importedBy":[{"uid":"4d0d-113"},{"uid":"4d0d-8"}]},"4d0d-6":{"id":"/src/step/FormStep.tsx","moduleParts":{"step/FormStep.js":"4d0d-7"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-2"}],"importedBy":[{"uid":"4d0d-113"},{"uid":"4d0d-8"}]},"4d0d-8":{"id":"/src/step/StepProvider.tsx","moduleParts":{"step/StepProvider.js":"4d0d-9"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-131"},{"uid":"4d0d-117"},{"uid":"4d0d-6"},{"uid":"4d0d-4"},{"uid":"4d0d-76"}],"importedBy":[{"uid":"4d0d-113"}]},"4d0d-10":{"id":"/src/inputs/MaskedInput/useMaskedInput.ts","moduleParts":{"inputs/MaskedInput/useMaskedInput.js":"4d0d-11"},"imported":[{"uid":"4d0d-116"},{"uid":"4d0d-123"},{"uid":"4d0d-114"},{"uid":"4d0d-124"}],"importedBy":[{"uid":"4d0d-103"},{"uid":"4d0d-30"},{"uid":"4d0d-68"},{"uid":"4d0d-88"}]},"4d0d-12":{"id":"/src/inputs/TableInput/addRowOnTab.ts","moduleParts":{"inputs/TableInput/addRowOnTab.js":"4d0d-13"},"imported":[],"importedBy":[{"uid":"4d0d-110"},{"uid":"4d0d-48"},{"uid":"4d0d-52"},{"uid":"4d0d-58"},{"uid":"4d0d-62"}]},"4d0d-14":{"id":"/src/date/LocalDatePicker/LocalDatePicker.tsx","moduleParts":{"date/LocalDatePicker/LocalDatePicker.js":"4d0d-15"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-115"},{"uid":"4d0d-116"},{"uid":"4d0d-117"},{"uid":"4d0d-118"},{"uid":"4d0d-80"},{"uid":"4d0d-84"}],"importedBy":[{"uid":"4d0d-96"}]},"4d0d-16":{"id":"/src/date/LocalMonthSelect/LocalMonthSelect.tsx","moduleParts":{"date/LocalMonthSelect/LocalMonthSelect.js":"4d0d-17"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-119"},{"uid":"4d0d-116"},{"uid":"4d0d-117"}],"importedBy":[{"uid":"4d0d-97"}]},"4d0d-18":{"id":"/src/date/LocalTimePicker/LocalTimePicker.tsx","moduleParts":{"date/LocalTimePicker/LocalTimePicker.js":"4d0d-19"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-119"},{"uid":"4d0d-115"},{"uid":"4d0d-116"},{"uid":"4d0d-117"},{"uid":"4d0d-118"},{"uid":"4d0d-86"}],"importedBy":[{"uid":"4d0d-98"}]},"4d0d-20":{"id":"/src/date/MonthDayPicker/MonthDayPicker.tsx","moduleParts":{"date/MonthDayPicker/MonthDayPicker.js":"4d0d-21"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-115"},{"uid":"4d0d-116"},{"uid":"4d0d-117"},{"uid":"4d0d-118"}],"importedBy":[{"uid":"4d0d-99"}]},"4d0d-22":{"id":"/src/date/MonthYearPicker/MonthYearPicker.tsx","moduleParts":{"date/MonthYearPicker/MonthYearPicker.js":"4d0d-23"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-119"},{"uid":"4d0d-115"},{"uid":"4d0d-116"},{"uid":"4d0d-117"},{"uid":"4d0d-118"}],"importedBy":[{"uid":"4d0d-100"}]},"4d0d-24":{"id":"/src/date/YearSelect/YearSelect.tsx","moduleParts":{"date/YearSelect/YearSelect.js":"4d0d-25"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-117"}],"importedBy":[{"uid":"4d0d-101"}]},"4d0d-26":{"id":"/src/form/TForm/TForm.tsx","moduleParts":{"form/TForm/TForm.js":"4d0d-27"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-120"},{"uid":"4d0d-28"}],"importedBy":[{"uid":"4d0d-102"}]},"4d0d-28":{"id":"/src/form/TForm/useTForm.tsx","moduleParts":{"form/TForm/useTForm.js":"4d0d-29"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-121"},{"uid":"4d0d-120"},{"uid":"4d0d-122"},{"uid":"4d0d-117"}],"importedBy":[{"uid":"4d0d-102"},{"uid":"4d0d-26"}]},"4d0d-30":{"id":"/src/inputs/MaskedInput/MaskedInput.tsx","moduleParts":{"inputs/MaskedInput/MaskedInput.js":"4d0d-31"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-10"}],"importedBy":[{"uid":"4d0d-103"}]},"4d0d-32":{"id":"/src/inputs/RadioGroup/RadioGroup.tsx","moduleParts":{"inputs/RadioGroup/RadioGroup.js":"4d0d-33"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-117"}],"importedBy":[{"uid":"4d0d-104"}]},"4d0d-34":{"id":"/src/inputs/Scriptel/Scriptel.tsx","moduleParts":{"inputs/Scriptel/Scriptel.js":"4d0d-35"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-82"},{"uid":"4d0d-92"}],"importedBy":[{"uid":"4d0d-105"},{"uid":"4d0d-36"}]},"4d0d-36":{"id":"/src/inputs/Scriptel/withScriptel.tsx","moduleParts":{"inputs/Scriptel/withScriptel.js":"4d0d-37"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-34"}],"importedBy":[{"uid":"4d0d-105"}]},"4d0d-38":{"id":"/src/inputs/PhoneInput/PhoneInput.tsx","moduleParts":{"inputs/PhoneInput/PhoneInput.js":"4d0d-39"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-117"},{"uid":"4d0d-103"}],"importedBy":[{"uid":"4d0d-107"}]},"4d0d-40":{"id":"/src/inputs/ScriptelInput/ScriptelInput.tsx","moduleParts":{"inputs/ScriptelInput/ScriptelInput.js":"4d0d-41"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-117"},{"uid":"4d0d-82"}],"importedBy":[{"uid":"4d0d-106"}]},"4d0d-42":{"id":"/src/inputs/CreditCardInput/CreditCardInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardInput.js":"4d0d-43"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-115"},{"uid":"4d0d-116"},{"uid":"4d0d-125"},{"uid":"4d0d-126"},{"uid":"4d0d-117"},{"uid":"4d0d-100"},{"uid":"4d0d-88"},{"uid":"4d0d-78"}],"importedBy":[{"uid":"4d0d-108"}]},"4d0d-44":{"id":"/src/inputs/TableInput/TableInput.tsx","moduleParts":{"inputs/TableInput/TableInput.js":"4d0d-45"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-120"},{"uid":"4d0d-128"},{"uid":"4d0d-117"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-46":{"id":"/src/inputs/TableInput/MoneyCell.tsx","moduleParts":{"inputs/TableInput/MoneyCell.js":"4d0d-47"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-129"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-48":{"id":"/src/inputs/TableInput/MoneyEditCell.tsx","moduleParts":{"inputs/TableInput/MoneyEditCell.js":"4d0d-49"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-111"},{"uid":"4d0d-12"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-50":{"id":"/src/inputs/TableInput/LocalDateCell.tsx","moduleParts":{"inputs/TableInput/LocalDateCell.js":"4d0d-51"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-115"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-52":{"id":"/src/inputs/TableInput/CheckboxEditCell.tsx","moduleParts":{"inputs/TableInput/CheckboxEditCell.js":"4d0d-53"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-117"},{"uid":"4d0d-12"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-54":{"id":"/src/inputs/TableInput/LocalDateEditCell.tsx","moduleParts":{"inputs/TableInput/LocalDateEditCell.js":"4d0d-55"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-96"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-56":{"id":"/src/inputs/TableInput/LocalTimeEditCell.tsx","moduleParts":{"inputs/TableInput/LocalTimeEditCell.js":"4d0d-57"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-98"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-58":{"id":"/src/inputs/TableInput/NumberEditCell.tsx","moduleParts":{"inputs/TableInput/NumberEditCell.js":"4d0d-59"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-117"},{"uid":"4d0d-12"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-60":{"id":"/src/inputs/TableInput/MoneySumFooter.tsx","moduleParts":{"inputs/TableInput/MoneySumFooter.js":"4d0d-61"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-129"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-62":{"id":"/src/inputs/TableInput/StringEditCell.tsx","moduleParts":{"inputs/TableInput/StringEditCell.js":"4d0d-63"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-117"},{"uid":"4d0d-12"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-64":{"id":"/src/inputs/TableInput/DropdownCell.tsx","moduleParts":{"inputs/TableInput/DropdownCell.js":"4d0d-65"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-117"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-66":{"id":"/src/inputs/TableInput/HoverCell.tsx","moduleParts":{"inputs/TableInput/HoverCell.js":"4d0d-67"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"}],"importedBy":[{"uid":"4d0d-110"}]},"4d0d-68":{"id":"/src/inputs/SinInput/SinInput.tsx","moduleParts":{"inputs/SinInput/SinInput.js":"4d0d-69"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-117"},{"uid":"4d0d-127"},{"uid":"4d0d-10"}],"importedBy":[{"uid":"4d0d-109"}]},"4d0d-70":{"id":"/src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","moduleParts":{"money/MoneyCurrencyInput/MoneyCurrencyInput.js":"4d0d-71"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-129"},{"uid":"4d0d-116"},{"uid":"4d0d-130"},{"uid":"4d0d-117"},{"uid":"4d0d-90"}],"importedBy":[{"uid":"4d0d-112"}]},"4d0d-72":{"id":"/src/money/MoneyInput/MoneyInput.tsx","moduleParts":{"money/MoneyInput/MoneyInput.js":"4d0d-73"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-129"},{"uid":"4d0d-116"},{"uid":"4d0d-130"},{"uid":"4d0d-117"},{"uid":"4d0d-90"}],"importedBy":[{"uid":"4d0d-111"}]},"4d0d-74":{"id":"/src/inputs/Scriptel/scriptel/enums.ts","moduleParts":{"inputs/Scriptel/scriptel/enums.js":"4d0d-75"},"imported":[],"importedBy":[{"uid":"4d0d-105"},{"uid":"4d0d-92"}]},"4d0d-76":{"id":"/src/step/stepContext.ts","moduleParts":{"step/stepContext.js":"4d0d-77"},"imported":[{"uid":"4d0d-114"}],"importedBy":[{"uid":"4d0d-2"},{"uid":"4d0d-8"}]},"4d0d-78":{"id":"/src/inputs/CreditCardInput/styles.css","moduleParts":{"inputs/CreditCardInput/styles.css.js":"4d0d-79"},"imported":[{"uid":"4d0d-94"}],"importedBy":[{"uid":"4d0d-42"}]},"4d0d-80":{"id":"/src/date/DatePicker/styles.css","moduleParts":{"date/DatePicker/styles.css.js":"4d0d-81"},"imported":[{"uid":"4d0d-94"}],"importedBy":[{"uid":"4d0d-14"},{"uid":"4d0d-118"}]},"4d0d-82":{"id":"/src/inputs/Scriptel/ScriptelContext.ts","moduleParts":{"inputs/Scriptel/ScriptelContext.js":"4d0d-83"},"imported":[{"uid":"4d0d-114"}],"importedBy":[{"uid":"4d0d-34"},{"uid":"4d0d-40"}]},"4d0d-84":{"id":"/src/date/LocalDatePicker/MaskedDateInput.tsx","moduleParts":{"date/LocalDatePicker/MaskedDateInput.js":"4d0d-85"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-103"}],"importedBy":[{"uid":"4d0d-14"}]},"4d0d-86":{"id":"/src/date/LocalTimePicker/MaskedTimeInput.tsx","moduleParts":{"date/LocalTimePicker/MaskedTimeInput.js":"4d0d-87"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-116"},{"uid":"4d0d-103"}],"importedBy":[{"uid":"4d0d-18"}]},"4d0d-88":{"id":"/src/inputs/CreditCardInput/CreditCardNumberInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardNumberInput.js":"4d0d-89"},"imported":[{"uid":"4d0d-114"},{"uid":"4d0d-134"},{"uid":"4d0d-116"},{"uid":"4d0d-135"},{"uid":"4d0d-117"},{"uid":"4d0d-10"}],"importedBy":[{"uid":"4d0d-42"}]},"4d0d-90":{"id":"/src/money/useMoneyInput.ts","moduleParts":{"money/useMoneyInput.js":"4d0d-91"},"imported":[{"uid":"4d0d-129"},{"uid":"4d0d-116"},{"uid":"4d0d-123"},{"uid":"4d0d-130"},{"uid":"4d0d-114"}],"importedBy":[{"uid":"4d0d-72"},{"uid":"4d0d-70"}]},"4d0d-92":{"id":"/src/inputs/Scriptel/scriptel/index.ts","moduleParts":{"inputs/Scriptel/scriptel/index.js":"4d0d-93"},"imported":[{"uid":"4d0d-116"},{"uid":"4d0d-133"},{"uid":"4d0d-74"}],"importedBy":[{"uid":"4d0d-34"}]},"4d0d-94":{"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":"4d0d-95"},"imported":[],"importedBy":[{"uid":"4d0d-80"},{"uid":"4d0d-78"}]},"4d0d-96":{"id":"/src/date/LocalDatePicker/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-14"}],"importedBy":[{"uid":"4d0d-0"},{"uid":"4d0d-54"}]},"4d0d-97":{"id":"/src/date/LocalMonthSelect/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-16"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-98":{"id":"/src/date/LocalTimePicker/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-18"}],"importedBy":[{"uid":"4d0d-0"},{"uid":"4d0d-56"}]},"4d0d-99":{"id":"/src/date/MonthDayPicker/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-20"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-100":{"id":"/src/date/MonthYearPicker/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-22"}],"importedBy":[{"uid":"4d0d-0"},{"uid":"4d0d-42"}]},"4d0d-101":{"id":"/src/date/YearSelect/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-24"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-102":{"id":"/src/form/TForm/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-26"},{"uid":"4d0d-28"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-103":{"id":"/src/inputs/MaskedInput/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-30"},{"uid":"4d0d-10"}],"importedBy":[{"uid":"4d0d-0"},{"uid":"4d0d-38"},{"uid":"4d0d-84"},{"uid":"4d0d-86"}]},"4d0d-104":{"id":"/src/inputs/RadioGroup/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-32"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-105":{"id":"/src/inputs/Scriptel/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-34"},{"uid":"4d0d-36"},{"uid":"4d0d-74"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-106":{"id":"/src/inputs/ScriptelInput/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-40"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-107":{"id":"/src/inputs/PhoneInput/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-38"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-108":{"id":"/src/inputs/CreditCardInput/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-42"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-109":{"id":"/src/inputs/SinInput/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-68"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-110":{"id":"/src/inputs/TableInput/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-44"},{"uid":"4d0d-46"},{"uid":"4d0d-48"},{"uid":"4d0d-50"},{"uid":"4d0d-52"},{"uid":"4d0d-54"},{"uid":"4d0d-56"},{"uid":"4d0d-60"},{"uid":"4d0d-58"},{"uid":"4d0d-62"},{"uid":"4d0d-64"},{"uid":"4d0d-66"},{"uid":"4d0d-12"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-111":{"id":"/src/money/MoneyInput/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-72"}],"importedBy":[{"uid":"4d0d-0"},{"uid":"4d0d-48"}]},"4d0d-112":{"id":"/src/money/MoneyCurrencyInput/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-70"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-113":{"id":"/src/step/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-4"},{"uid":"4d0d-2"},{"uid":"4d0d-6"},{"uid":"4d0d-8"}],"importedBy":[{"uid":"4d0d-0"}]},"4d0d-114":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-14"},{"uid":"4d0d-16"},{"uid":"4d0d-18"},{"uid":"4d0d-20"},{"uid":"4d0d-22"},{"uid":"4d0d-24"},{"uid":"4d0d-26"},{"uid":"4d0d-28"},{"uid":"4d0d-30"},{"uid":"4d0d-10"},{"uid":"4d0d-32"},{"uid":"4d0d-34"},{"uid":"4d0d-36"},{"uid":"4d0d-40"},{"uid":"4d0d-38"},{"uid":"4d0d-42"},{"uid":"4d0d-68"},{"uid":"4d0d-44"},{"uid":"4d0d-46"},{"uid":"4d0d-48"},{"uid":"4d0d-50"},{"uid":"4d0d-52"},{"uid":"4d0d-54"},{"uid":"4d0d-56"},{"uid":"4d0d-60"},{"uid":"4d0d-58"},{"uid":"4d0d-62"},{"uid":"4d0d-64"},{"uid":"4d0d-66"},{"uid":"4d0d-72"},{"uid":"4d0d-70"},{"uid":"4d0d-4"},{"uid":"4d0d-2"},{"uid":"4d0d-6"},{"uid":"4d0d-8"},{"uid":"4d0d-84"},{"uid":"4d0d-86"},{"uid":"4d0d-82"},{"uid":"4d0d-88"},{"uid":"4d0d-90"},{"uid":"4d0d-76"}],"isExternal":true},"4d0d-115":{"id":"@thx/date","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-14"},{"uid":"4d0d-18"},{"uid":"4d0d-20"},{"uid":"4d0d-22"},{"uid":"4d0d-42"},{"uid":"4d0d-50"}],"isExternal":true},"4d0d-116":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-14"},{"uid":"4d0d-16"},{"uid":"4d0d-18"},{"uid":"4d0d-20"},{"uid":"4d0d-22"},{"uid":"4d0d-24"},{"uid":"4d0d-26"},{"uid":"4d0d-30"},{"uid":"4d0d-10"},{"uid":"4d0d-32"},{"uid":"4d0d-34"},{"uid":"4d0d-40"},{"uid":"4d0d-38"},{"uid":"4d0d-42"},{"uid":"4d0d-68"},{"uid":"4d0d-44"},{"uid":"4d0d-48"},{"uid":"4d0d-52"},{"uid":"4d0d-54"},{"uid":"4d0d-56"},{"uid":"4d0d-58"},{"uid":"4d0d-62"},{"uid":"4d0d-66"},{"uid":"4d0d-72"},{"uid":"4d0d-70"},{"uid":"4d0d-4"},{"uid":"4d0d-6"},{"uid":"4d0d-8"},{"uid":"4d0d-84"},{"uid":"4d0d-86"},{"uid":"4d0d-92"},{"uid":"4d0d-88"},{"uid":"4d0d-90"}],"isExternal":true},"4d0d-117":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-14"},{"uid":"4d0d-16"},{"uid":"4d0d-18"},{"uid":"4d0d-20"},{"uid":"4d0d-22"},{"uid":"4d0d-24"},{"uid":"4d0d-28"},{"uid":"4d0d-32"},{"uid":"4d0d-40"},{"uid":"4d0d-38"},{"uid":"4d0d-42"},{"uid":"4d0d-68"},{"uid":"4d0d-44"},{"uid":"4d0d-52"},{"uid":"4d0d-58"},{"uid":"4d0d-62"},{"uid":"4d0d-64"},{"uid":"4d0d-72"},{"uid":"4d0d-70"},{"uid":"4d0d-8"},{"uid":"4d0d-88"}],"isExternal":true},"4d0d-118":{"id":"/src/date/DatePicker/index.ts","moduleParts":{},"imported":[{"uid":"4d0d-132"},{"uid":"4d0d-80"}],"importedBy":[{"uid":"4d0d-14"},{"uid":"4d0d-18"},{"uid":"4d0d-20"},{"uid":"4d0d-22"}]},"4d0d-119":{"id":"@js-joda/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-16"},{"uid":"4d0d-18"},{"uid":"4d0d-22"}],"isExternal":true},"4d0d-120":{"id":"formik","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-26"},{"uid":"4d0d-28"},{"uid":"4d0d-44"}],"isExternal":true},"4d0d-121":{"id":"flat","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-28"}],"isExternal":true},"4d0d-122":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-28"}],"isExternal":true},"4d0d-123":{"id":"inputmask","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-10"},{"uid":"4d0d-90"}],"isExternal":true},"4d0d-124":{"id":"use-deep-compare-effect","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-10"}],"isExternal":true},"4d0d-125":{"id":"react-credit-cards","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-42"}],"isExternal":true},"4d0d-126":{"id":"react-credit-cards/es/styles-compiled.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-42"}],"isExternal":true},"4d0d-127":{"id":"social-insurance-number","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-68"}],"isExternal":true},"4d0d-128":{"id":"react-table","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-44"}],"isExternal":true},"4d0d-129":{"id":"@thx/money","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-46"},{"uid":"4d0d-60"},{"uid":"4d0d-72"},{"uid":"4d0d-70"},{"uid":"4d0d-90"}],"isExternal":true},"4d0d-130":{"id":"js-money","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-72"},{"uid":"4d0d-70"},{"uid":"4d0d-90"}],"isExternal":true},"4d0d-131":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-8"}],"isExternal":true},"4d0d-132":{"id":"react-datepicker","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-118"}],"isExternal":true},"4d0d-133":{"id":"eventemitter3","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-92"}],"isExternal":true},"4d0d-134":{"id":"credit-card-type","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-88"}],"isExternal":true},"4d0d-135":{"id":"luhn","moduleParts":{},"imported":[],"importedBy":[{"uid":"4d0d-88"}],"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":"2597-1"}]},{"name":"step/useStep.js","children":[{"name":"src/step/useStep.ts","uid":"2597-3"}]},{"name":"step/Step.js","children":[{"name":"src/step/Step.tsx","uid":"2597-5"}]},{"name":"step/FormStep.js","children":[{"name":"src/step/FormStep.tsx","uid":"2597-7"}]},{"name":"step/StepProvider.js","children":[{"name":"src/step/StepProvider.tsx","uid":"2597-9"}]},{"name":"inputs/MaskedInput/useMaskedInput.js","children":[{"name":"src/inputs/MaskedInput/useMaskedInput.ts","uid":"2597-11"}]},{"name":"date/LocalMonthSelect/LocalMonthSelect.js","children":[{"name":"src/date/LocalMonthSelect/LocalMonthSelect.tsx","uid":"2597-13"}]},{"name":"date/LocalDatePicker/LocalDatePicker.js","children":[{"name":"src/date/LocalDatePicker/LocalDatePicker.tsx","uid":"2597-15"}]},{"name":"date/LocalTimePicker/LocalTimePicker.js","children":[{"name":"src/date/LocalTimePicker/LocalTimePicker.tsx","uid":"2597-17"}]},{"name":"date/MonthDayPicker/MonthDayPicker.js","children":[{"name":"src/date/MonthDayPicker/MonthDayPicker.tsx","uid":"2597-19"}]},{"name":"form/TForm/TForm.js","children":[{"name":"src/form/TForm/TForm.tsx","uid":"2597-21"}]},{"name":"date/YearSelect/YearSelect.js","children":[{"name":"src/date/YearSelect/YearSelect.tsx","uid":"2597-23"}]},{"name":"inputs/TableInput/addRowOnTab.js","children":[{"name":"src/inputs/TableInput/addRowOnTab.ts","uid":"2597-25"}]},{"name":"form/TForm/useTForm.js","children":[{"name":"src/form/TForm/useTForm.tsx","uid":"2597-27"}]},{"name":"date/MonthYearPicker/MonthYearPicker.js","children":[{"name":"src/date/MonthYearPicker/MonthYearPicker.tsx","uid":"2597-29"}]},{"name":"inputs/MaskedInput/MaskedInput.js","children":[{"name":"src/inputs/MaskedInput/MaskedInput.tsx","uid":"2597-31"}]},{"name":"inputs/Scriptel/Scriptel.js","children":[{"name":"src/inputs/Scriptel/Scriptel.tsx","uid":"2597-33"}]},{"name":"inputs/RadioGroup/RadioGroup.js","children":[{"name":"src/inputs/RadioGroup/RadioGroup.tsx","uid":"2597-35"}]},{"name":"inputs/Scriptel/withScriptel.js","children":[{"name":"src/inputs/Scriptel/withScriptel.tsx","uid":"2597-37"}]},{"name":"inputs/ScriptelInput/ScriptelInput.js","children":[{"name":"src/inputs/ScriptelInput/ScriptelInput.tsx","uid":"2597-39"}]},{"name":"inputs/PhoneInput/PhoneInput.js","children":[{"name":"src/inputs/PhoneInput/PhoneInput.tsx","uid":"2597-41"}]},{"name":"inputs/CreditCardInput/CreditCardInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardInput.tsx","uid":"2597-43"}]},{"name":"money/MoneyCurrencyInput/MoneyCurrencyInput.js","children":[{"name":"src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","uid":"2597-45"}]},{"name":"inputs/SinInput/SinInput.js","children":[{"name":"src/inputs/SinInput/SinInput.tsx","uid":"2597-47"}]},{"name":"inputs/TableInput/TableInput.js","children":[{"name":"src/inputs/TableInput/TableInput.tsx","uid":"2597-49"}]},{"name":"inputs/TableInput/MoneyCell.js","children":[{"name":"src/inputs/TableInput/MoneyCell.tsx","uid":"2597-51"}]},{"name":"inputs/TableInput/MoneyEditCell.js","children":[{"name":"src/inputs/TableInput/MoneyEditCell.tsx","uid":"2597-53"}]},{"name":"inputs/TableInput/LocalDateCell.js","children":[{"name":"src/inputs/TableInput/LocalDateCell.tsx","uid":"2597-55"}]},{"name":"inputs/TableInput/CheckboxEditCell.js","children":[{"name":"src/inputs/TableInput/CheckboxEditCell.tsx","uid":"2597-57"}]},{"name":"inputs/TableInput/LocalDateEditCell.js","children":[{"name":"src/inputs/TableInput/LocalDateEditCell.tsx","uid":"2597-59"}]},{"name":"inputs/TableInput/LocalTimeEditCell.js","children":[{"name":"src/inputs/TableInput/LocalTimeEditCell.tsx","uid":"2597-61"}]},{"name":"inputs/TableInput/MoneySumFooter.js","children":[{"name":"src/inputs/TableInput/MoneySumFooter.tsx","uid":"2597-63"}]},{"name":"inputs/TableInput/NumberEditCell.js","children":[{"name":"src/inputs/TableInput/NumberEditCell.tsx","uid":"2597-65"}]},{"name":"inputs/TableInput/StringEditCell.js","children":[{"name":"src/inputs/TableInput/StringEditCell.tsx","uid":"2597-67"}]},{"name":"inputs/TableInput/DropdownCell.js","children":[{"name":"src/inputs/TableInput/DropdownCell.tsx","uid":"2597-69"}]},{"name":"inputs/TableInput/HoverCell.js","children":[{"name":"src/inputs/TableInput/HoverCell.tsx","uid":"2597-71"}]},{"name":"money/MoneyInput/MoneyInput.js","children":[{"name":"src/money/MoneyInput/MoneyInput.tsx","uid":"2597-73"}]},{"name":"inputs/Scriptel/scriptel/enums.js","children":[{"name":"src/inputs/Scriptel/scriptel/enums.ts","uid":"2597-75"}]},{"name":"step/stepContext.js","children":[{"name":"src/step/stepContext.ts","uid":"2597-77"}]},{"name":"money/useMoneyInput.js","children":[{"name":"src/money/useMoneyInput.ts","uid":"2597-79"}]},{"name":"inputs/CreditCardInput/styles.css.js","children":[{"name":"src/inputs/CreditCardInput/styles.css","uid":"2597-81"}]},{"name":"date/DatePicker/styles.css.js","children":[{"name":"src/date/DatePicker/styles.css","uid":"2597-83"}]},{"name":"inputs/Scriptel/ScriptelContext.js","children":[{"name":"src/inputs/Scriptel/ScriptelContext.ts","uid":"2597-85"}]},{"name":"date/LocalTimePicker/MaskedTimeInput.js","children":[{"name":"src/date/LocalTimePicker/MaskedTimeInput.tsx","uid":"2597-87"}]},{"name":"date/LocalDatePicker/MaskedDateInput.js","children":[{"name":"src/date/LocalDatePicker/MaskedDateInput.tsx","uid":"2597-89"}]},{"name":"inputs/CreditCardInput/CreditCardNumberInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardNumberInput.tsx","uid":"2597-91"}]},{"name":"inputs/Scriptel/scriptel/index.js","children":[{"name":"src/inputs/Scriptel/scriptel/index.ts","uid":"2597-93"}]},{"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":"2597-95"}]}],"isRoot":true},"nodeParts":{"2597-1":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"2597-0"},"2597-3":{"renderedLength":113,"gzipLength":107,"brotliLength":82,"mainUid":"2597-2"},"2597-5":{"renderedLength":203,"gzipLength":155,"brotliLength":111,"mainUid":"2597-4"},"2597-7":{"renderedLength":440,"gzipLength":270,"brotliLength":214,"mainUid":"2597-6"},"2597-9":{"renderedLength":3529,"gzipLength":1015,"brotliLength":861,"mainUid":"2597-8"},"2597-11":{"renderedLength":1487,"gzipLength":501,"brotliLength":423,"mainUid":"2597-10"},"2597-13":{"renderedLength":1135,"gzipLength":505,"brotliLength":415,"mainUid":"2597-12"},"2597-15":{"renderedLength":3161,"gzipLength":952,"brotliLength":853,"mainUid":"2597-14"},"2597-17":{"renderedLength":1624,"gzipLength":580,"brotliLength":482,"mainUid":"2597-16"},"2597-19":{"renderedLength":1965,"gzipLength":655,"brotliLength":544,"mainUid":"2597-18"},"2597-21":{"renderedLength":600,"gzipLength":308,"brotliLength":267,"mainUid":"2597-20"},"2597-23":{"renderedLength":1553,"gzipLength":579,"brotliLength":461,"mainUid":"2597-22"},"2597-25":{"renderedLength":312,"gzipLength":199,"brotliLength":173,"mainUid":"2597-24"},"2597-27":{"renderedLength":2930,"gzipLength":953,"brotliLength":816,"mainUid":"2597-26"},"2597-29":{"renderedLength":1229,"gzipLength":496,"brotliLength":424,"mainUid":"2597-28"},"2597-31":{"renderedLength":513,"gzipLength":301,"brotliLength":257,"mainUid":"2597-30"},"2597-33":{"renderedLength":1275,"gzipLength":474,"brotliLength":406,"mainUid":"2597-32"},"2597-35":{"renderedLength":561,"gzipLength":301,"brotliLength":259,"mainUid":"2597-34"},"2597-37":{"renderedLength":275,"gzipLength":163,"brotliLength":130,"mainUid":"2597-36"},"2597-39":{"renderedLength":1963,"gzipLength":647,"brotliLength":547,"mainUid":"2597-38"},"2597-41":{"renderedLength":908,"gzipLength":382,"brotliLength":319,"mainUid":"2597-40"},"2597-43":{"renderedLength":2324,"gzipLength":584,"brotliLength":495,"mainUid":"2597-42"},"2597-45":{"renderedLength":1575,"gzipLength":640,"brotliLength":536,"mainUid":"2597-44"},"2597-47":{"renderedLength":1144,"gzipLength":532,"brotliLength":462,"mainUid":"2597-46"},"2597-49":{"renderedLength":2891,"gzipLength":854,"brotliLength":780,"mainUid":"2597-48"},"2597-51":{"renderedLength":257,"gzipLength":185,"brotliLength":149,"mainUid":"2597-50"},"2597-53":{"renderedLength":708,"gzipLength":366,"brotliLength":313,"mainUid":"2597-52"},"2597-55":{"renderedLength":285,"gzipLength":198,"brotliLength":170,"mainUid":"2597-54"},"2597-57":{"renderedLength":702,"gzipLength":369,"brotliLength":330,"mainUid":"2597-56"},"2597-59":{"renderedLength":695,"gzipLength":349,"brotliLength":295,"mainUid":"2597-58"},"2597-61":{"renderedLength":622,"gzipLength":322,"brotliLength":269,"mainUid":"2597-60"},"2597-63":{"renderedLength":414,"gzipLength":259,"brotliLength":219,"mainUid":"2597-62"},"2597-65":{"renderedLength":782,"gzipLength":409,"brotliLength":345,"mainUid":"2597-64"},"2597-67":{"renderedLength":717,"gzipLength":372,"brotliLength":319,"mainUid":"2597-66"},"2597-69":{"renderedLength":493,"gzipLength":255,"brotliLength":211,"mainUid":"2597-68"},"2597-71":{"renderedLength":403,"gzipLength":244,"brotliLength":195,"mainUid":"2597-70"},"2597-73":{"renderedLength":778,"gzipLength":391,"brotliLength":329,"mainUid":"2597-72"},"2597-75":{"renderedLength":937,"gzipLength":292,"brotliLength":231,"mainUid":"2597-74"},"2597-77":{"renderedLength":80,"gzipLength":92,"brotliLength":72,"mainUid":"2597-76"},"2597-79":{"renderedLength":2155,"gzipLength":764,"brotliLength":660,"mainUid":"2597-78"},"2597-81":{"renderedLength":78,"gzipLength":92,"brotliLength":79,"mainUid":"2597-80"},"2597-83":{"renderedLength":538,"gzipLength":261,"brotliLength":211,"mainUid":"2597-82"},"2597-85":{"renderedLength":46,"gzipLength":60,"brotliLength":45,"mainUid":"2597-84"},"2597-87":{"renderedLength":424,"gzipLength":285,"brotliLength":257,"mainUid":"2597-86"},"2597-89":{"renderedLength":426,"gzipLength":286,"brotliLength":244,"mainUid":"2597-88"},"2597-91":{"renderedLength":1713,"gzipLength":689,"brotliLength":585,"mainUid":"2597-90"},"2597-93":{"renderedLength":2530,"gzipLength":860,"brotliLength":739,"mainUid":"2597-92"},"2597-95":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"2597-94"}},"nodeMetas":{"2597-0":{"id":"/src/index.ts","moduleParts":{"index.js":"2597-1"},"imported":[{"uid":"2597-96"},{"uid":"2597-97"},{"uid":"2597-98"},{"uid":"2597-99"},{"uid":"2597-100"},{"uid":"2597-101"},{"uid":"2597-102"},{"uid":"2597-103"},{"uid":"2597-104"},{"uid":"2597-105"},{"uid":"2597-106"},{"uid":"2597-107"},{"uid":"2597-108"},{"uid":"2597-109"},{"uid":"2597-110"},{"uid":"2597-111"},{"uid":"2597-112"},{"uid":"2597-113"}],"importedBy":[],"isEntry":true},"2597-2":{"id":"/src/step/useStep.ts","moduleParts":{"step/useStep.js":"2597-3"},"imported":[{"uid":"2597-114"},{"uid":"2597-76"}],"importedBy":[{"uid":"2597-113"},{"uid":"2597-6"}]},"2597-4":{"id":"/src/step/Step.tsx","moduleParts":{"step/Step.js":"2597-5"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"}],"importedBy":[{"uid":"2597-113"},{"uid":"2597-8"}]},"2597-6":{"id":"/src/step/FormStep.tsx","moduleParts":{"step/FormStep.js":"2597-7"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-2"}],"importedBy":[{"uid":"2597-113"},{"uid":"2597-8"}]},"2597-8":{"id":"/src/step/StepProvider.tsx","moduleParts":{"step/StepProvider.js":"2597-9"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-131"},{"uid":"2597-117"},{"uid":"2597-6"},{"uid":"2597-4"},{"uid":"2597-76"}],"importedBy":[{"uid":"2597-113"}]},"2597-10":{"id":"/src/inputs/MaskedInput/useMaskedInput.ts","moduleParts":{"inputs/MaskedInput/useMaskedInput.js":"2597-11"},"imported":[{"uid":"2597-116"},{"uid":"2597-123"},{"uid":"2597-114"},{"uid":"2597-124"}],"importedBy":[{"uid":"2597-103"},{"uid":"2597-30"},{"uid":"2597-46"},{"uid":"2597-90"}]},"2597-12":{"id":"/src/date/LocalMonthSelect/LocalMonthSelect.tsx","moduleParts":{"date/LocalMonthSelect/LocalMonthSelect.js":"2597-13"},"imported":[{"uid":"2597-114"},{"uid":"2597-119"},{"uid":"2597-116"},{"uid":"2597-117"}],"importedBy":[{"uid":"2597-97"}]},"2597-14":{"id":"/src/date/LocalDatePicker/LocalDatePicker.tsx","moduleParts":{"date/LocalDatePicker/LocalDatePicker.js":"2597-15"},"imported":[{"uid":"2597-114"},{"uid":"2597-115"},{"uid":"2597-116"},{"uid":"2597-117"},{"uid":"2597-118"},{"uid":"2597-82"},{"uid":"2597-88"}],"importedBy":[{"uid":"2597-96"}]},"2597-16":{"id":"/src/date/LocalTimePicker/LocalTimePicker.tsx","moduleParts":{"date/LocalTimePicker/LocalTimePicker.js":"2597-17"},"imported":[{"uid":"2597-114"},{"uid":"2597-119"},{"uid":"2597-115"},{"uid":"2597-116"},{"uid":"2597-117"},{"uid":"2597-118"},{"uid":"2597-86"}],"importedBy":[{"uid":"2597-98"}]},"2597-18":{"id":"/src/date/MonthDayPicker/MonthDayPicker.tsx","moduleParts":{"date/MonthDayPicker/MonthDayPicker.js":"2597-19"},"imported":[{"uid":"2597-114"},{"uid":"2597-115"},{"uid":"2597-116"},{"uid":"2597-117"},{"uid":"2597-118"}],"importedBy":[{"uid":"2597-99"}]},"2597-20":{"id":"/src/form/TForm/TForm.tsx","moduleParts":{"form/TForm/TForm.js":"2597-21"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-120"},{"uid":"2597-26"}],"importedBy":[{"uid":"2597-102"}]},"2597-22":{"id":"/src/date/YearSelect/YearSelect.tsx","moduleParts":{"date/YearSelect/YearSelect.js":"2597-23"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-117"}],"importedBy":[{"uid":"2597-101"}]},"2597-24":{"id":"/src/inputs/TableInput/addRowOnTab.ts","moduleParts":{"inputs/TableInput/addRowOnTab.js":"2597-25"},"imported":[],"importedBy":[{"uid":"2597-110"},{"uid":"2597-52"},{"uid":"2597-56"},{"uid":"2597-64"},{"uid":"2597-66"}]},"2597-26":{"id":"/src/form/TForm/useTForm.tsx","moduleParts":{"form/TForm/useTForm.js":"2597-27"},"imported":[{"uid":"2597-114"},{"uid":"2597-121"},{"uid":"2597-120"},{"uid":"2597-122"},{"uid":"2597-117"}],"importedBy":[{"uid":"2597-102"},{"uid":"2597-20"}]},"2597-28":{"id":"/src/date/MonthYearPicker/MonthYearPicker.tsx","moduleParts":{"date/MonthYearPicker/MonthYearPicker.js":"2597-29"},"imported":[{"uid":"2597-114"},{"uid":"2597-119"},{"uid":"2597-115"},{"uid":"2597-116"},{"uid":"2597-117"},{"uid":"2597-118"}],"importedBy":[{"uid":"2597-100"}]},"2597-30":{"id":"/src/inputs/MaskedInput/MaskedInput.tsx","moduleParts":{"inputs/MaskedInput/MaskedInput.js":"2597-31"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-10"}],"importedBy":[{"uid":"2597-103"}]},"2597-32":{"id":"/src/inputs/Scriptel/Scriptel.tsx","moduleParts":{"inputs/Scriptel/Scriptel.js":"2597-33"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-84"},{"uid":"2597-92"}],"importedBy":[{"uid":"2597-105"},{"uid":"2597-36"}]},"2597-34":{"id":"/src/inputs/RadioGroup/RadioGroup.tsx","moduleParts":{"inputs/RadioGroup/RadioGroup.js":"2597-35"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-117"}],"importedBy":[{"uid":"2597-104"}]},"2597-36":{"id":"/src/inputs/Scriptel/withScriptel.tsx","moduleParts":{"inputs/Scriptel/withScriptel.js":"2597-37"},"imported":[{"uid":"2597-114"},{"uid":"2597-32"}],"importedBy":[{"uid":"2597-105"}]},"2597-38":{"id":"/src/inputs/ScriptelInput/ScriptelInput.tsx","moduleParts":{"inputs/ScriptelInput/ScriptelInput.js":"2597-39"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-117"},{"uid":"2597-84"}],"importedBy":[{"uid":"2597-106"}]},"2597-40":{"id":"/src/inputs/PhoneInput/PhoneInput.tsx","moduleParts":{"inputs/PhoneInput/PhoneInput.js":"2597-41"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-117"},{"uid":"2597-103"}],"importedBy":[{"uid":"2597-107"}]},"2597-42":{"id":"/src/inputs/CreditCardInput/CreditCardInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardInput.js":"2597-43"},"imported":[{"uid":"2597-114"},{"uid":"2597-115"},{"uid":"2597-116"},{"uid":"2597-125"},{"uid":"2597-126"},{"uid":"2597-117"},{"uid":"2597-100"},{"uid":"2597-90"},{"uid":"2597-80"}],"importedBy":[{"uid":"2597-108"}]},"2597-44":{"id":"/src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","moduleParts":{"money/MoneyCurrencyInput/MoneyCurrencyInput.js":"2597-45"},"imported":[{"uid":"2597-114"},{"uid":"2597-129"},{"uid":"2597-116"},{"uid":"2597-130"},{"uid":"2597-117"},{"uid":"2597-78"}],"importedBy":[{"uid":"2597-112"}]},"2597-46":{"id":"/src/inputs/SinInput/SinInput.tsx","moduleParts":{"inputs/SinInput/SinInput.js":"2597-47"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-117"},{"uid":"2597-127"},{"uid":"2597-10"}],"importedBy":[{"uid":"2597-109"}]},"2597-48":{"id":"/src/inputs/TableInput/TableInput.tsx","moduleParts":{"inputs/TableInput/TableInput.js":"2597-49"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-120"},{"uid":"2597-128"},{"uid":"2597-117"}],"importedBy":[{"uid":"2597-110"}]},"2597-50":{"id":"/src/inputs/TableInput/MoneyCell.tsx","moduleParts":{"inputs/TableInput/MoneyCell.js":"2597-51"},"imported":[{"uid":"2597-114"},{"uid":"2597-129"}],"importedBy":[{"uid":"2597-110"}]},"2597-52":{"id":"/src/inputs/TableInput/MoneyEditCell.tsx","moduleParts":{"inputs/TableInput/MoneyEditCell.js":"2597-53"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-111"},{"uid":"2597-24"}],"importedBy":[{"uid":"2597-110"}]},"2597-54":{"id":"/src/inputs/TableInput/LocalDateCell.tsx","moduleParts":{"inputs/TableInput/LocalDateCell.js":"2597-55"},"imported":[{"uid":"2597-114"},{"uid":"2597-115"}],"importedBy":[{"uid":"2597-110"}]},"2597-56":{"id":"/src/inputs/TableInput/CheckboxEditCell.tsx","moduleParts":{"inputs/TableInput/CheckboxEditCell.js":"2597-57"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-117"},{"uid":"2597-24"}],"importedBy":[{"uid":"2597-110"}]},"2597-58":{"id":"/src/inputs/TableInput/LocalDateEditCell.tsx","moduleParts":{"inputs/TableInput/LocalDateEditCell.js":"2597-59"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-96"}],"importedBy":[{"uid":"2597-110"}]},"2597-60":{"id":"/src/inputs/TableInput/LocalTimeEditCell.tsx","moduleParts":{"inputs/TableInput/LocalTimeEditCell.js":"2597-61"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-98"}],"importedBy":[{"uid":"2597-110"}]},"2597-62":{"id":"/src/inputs/TableInput/MoneySumFooter.tsx","moduleParts":{"inputs/TableInput/MoneySumFooter.js":"2597-63"},"imported":[{"uid":"2597-114"},{"uid":"2597-129"}],"importedBy":[{"uid":"2597-110"}]},"2597-64":{"id":"/src/inputs/TableInput/NumberEditCell.tsx","moduleParts":{"inputs/TableInput/NumberEditCell.js":"2597-65"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-117"},{"uid":"2597-24"}],"importedBy":[{"uid":"2597-110"}]},"2597-66":{"id":"/src/inputs/TableInput/StringEditCell.tsx","moduleParts":{"inputs/TableInput/StringEditCell.js":"2597-67"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-117"},{"uid":"2597-24"}],"importedBy":[{"uid":"2597-110"}]},"2597-68":{"id":"/src/inputs/TableInput/DropdownCell.tsx","moduleParts":{"inputs/TableInput/DropdownCell.js":"2597-69"},"imported":[{"uid":"2597-114"},{"uid":"2597-117"}],"importedBy":[{"uid":"2597-110"}]},"2597-70":{"id":"/src/inputs/TableInput/HoverCell.tsx","moduleParts":{"inputs/TableInput/HoverCell.js":"2597-71"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"}],"importedBy":[{"uid":"2597-110"}]},"2597-72":{"id":"/src/money/MoneyInput/MoneyInput.tsx","moduleParts":{"money/MoneyInput/MoneyInput.js":"2597-73"},"imported":[{"uid":"2597-114"},{"uid":"2597-129"},{"uid":"2597-116"},{"uid":"2597-130"},{"uid":"2597-117"},{"uid":"2597-78"}],"importedBy":[{"uid":"2597-111"}]},"2597-74":{"id":"/src/inputs/Scriptel/scriptel/enums.ts","moduleParts":{"inputs/Scriptel/scriptel/enums.js":"2597-75"},"imported":[],"importedBy":[{"uid":"2597-105"},{"uid":"2597-92"}]},"2597-76":{"id":"/src/step/stepContext.ts","moduleParts":{"step/stepContext.js":"2597-77"},"imported":[{"uid":"2597-114"}],"importedBy":[{"uid":"2597-2"},{"uid":"2597-8"}]},"2597-78":{"id":"/src/money/useMoneyInput.ts","moduleParts":{"money/useMoneyInput.js":"2597-79"},"imported":[{"uid":"2597-129"},{"uid":"2597-116"},{"uid":"2597-123"},{"uid":"2597-130"},{"uid":"2597-114"}],"importedBy":[{"uid":"2597-72"},{"uid":"2597-44"}]},"2597-80":{"id":"/src/inputs/CreditCardInput/styles.css","moduleParts":{"inputs/CreditCardInput/styles.css.js":"2597-81"},"imported":[{"uid":"2597-94"}],"importedBy":[{"uid":"2597-42"}]},"2597-82":{"id":"/src/date/DatePicker/styles.css","moduleParts":{"date/DatePicker/styles.css.js":"2597-83"},"imported":[{"uid":"2597-94"}],"importedBy":[{"uid":"2597-14"},{"uid":"2597-118"}]},"2597-84":{"id":"/src/inputs/Scriptel/ScriptelContext.ts","moduleParts":{"inputs/Scriptel/ScriptelContext.js":"2597-85"},"imported":[{"uid":"2597-114"}],"importedBy":[{"uid":"2597-32"},{"uid":"2597-38"}]},"2597-86":{"id":"/src/date/LocalTimePicker/MaskedTimeInput.tsx","moduleParts":{"date/LocalTimePicker/MaskedTimeInput.js":"2597-87"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-103"}],"importedBy":[{"uid":"2597-16"}]},"2597-88":{"id":"/src/date/LocalDatePicker/MaskedDateInput.tsx","moduleParts":{"date/LocalDatePicker/MaskedDateInput.js":"2597-89"},"imported":[{"uid":"2597-114"},{"uid":"2597-116"},{"uid":"2597-103"}],"importedBy":[{"uid":"2597-14"}]},"2597-90":{"id":"/src/inputs/CreditCardInput/CreditCardNumberInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardNumberInput.js":"2597-91"},"imported":[{"uid":"2597-114"},{"uid":"2597-134"},{"uid":"2597-116"},{"uid":"2597-135"},{"uid":"2597-117"},{"uid":"2597-10"}],"importedBy":[{"uid":"2597-42"}]},"2597-92":{"id":"/src/inputs/Scriptel/scriptel/index.ts","moduleParts":{"inputs/Scriptel/scriptel/index.js":"2597-93"},"imported":[{"uid":"2597-116"},{"uid":"2597-133"},{"uid":"2597-74"}],"importedBy":[{"uid":"2597-32"}]},"2597-94":{"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":"2597-95"},"imported":[],"importedBy":[{"uid":"2597-82"},{"uid":"2597-80"}]},"2597-96":{"id":"/src/date/LocalDatePicker/index.ts","moduleParts":{},"imported":[{"uid":"2597-14"}],"importedBy":[{"uid":"2597-0"},{"uid":"2597-58"}]},"2597-97":{"id":"/src/date/LocalMonthSelect/index.ts","moduleParts":{},"imported":[{"uid":"2597-12"}],"importedBy":[{"uid":"2597-0"}]},"2597-98":{"id":"/src/date/LocalTimePicker/index.ts","moduleParts":{},"imported":[{"uid":"2597-16"}],"importedBy":[{"uid":"2597-0"},{"uid":"2597-60"}]},"2597-99":{"id":"/src/date/MonthDayPicker/index.ts","moduleParts":{},"imported":[{"uid":"2597-18"}],"importedBy":[{"uid":"2597-0"}]},"2597-100":{"id":"/src/date/MonthYearPicker/index.ts","moduleParts":{},"imported":[{"uid":"2597-28"}],"importedBy":[{"uid":"2597-0"},{"uid":"2597-42"}]},"2597-101":{"id":"/src/date/YearSelect/index.ts","moduleParts":{},"imported":[{"uid":"2597-22"}],"importedBy":[{"uid":"2597-0"}]},"2597-102":{"id":"/src/form/TForm/index.ts","moduleParts":{},"imported":[{"uid":"2597-20"},{"uid":"2597-26"}],"importedBy":[{"uid":"2597-0"}]},"2597-103":{"id":"/src/inputs/MaskedInput/index.ts","moduleParts":{},"imported":[{"uid":"2597-30"},{"uid":"2597-10"}],"importedBy":[{"uid":"2597-0"},{"uid":"2597-40"},{"uid":"2597-88"},{"uid":"2597-86"}]},"2597-104":{"id":"/src/inputs/RadioGroup/index.ts","moduleParts":{},"imported":[{"uid":"2597-34"}],"importedBy":[{"uid":"2597-0"}]},"2597-105":{"id":"/src/inputs/Scriptel/index.ts","moduleParts":{},"imported":[{"uid":"2597-32"},{"uid":"2597-36"},{"uid":"2597-74"}],"importedBy":[{"uid":"2597-0"}]},"2597-106":{"id":"/src/inputs/ScriptelInput/index.ts","moduleParts":{},"imported":[{"uid":"2597-38"}],"importedBy":[{"uid":"2597-0"}]},"2597-107":{"id":"/src/inputs/PhoneInput/index.ts","moduleParts":{},"imported":[{"uid":"2597-40"}],"importedBy":[{"uid":"2597-0"}]},"2597-108":{"id":"/src/inputs/CreditCardInput/index.ts","moduleParts":{},"imported":[{"uid":"2597-42"}],"importedBy":[{"uid":"2597-0"}]},"2597-109":{"id":"/src/inputs/SinInput/index.ts","moduleParts":{},"imported":[{"uid":"2597-46"}],"importedBy":[{"uid":"2597-0"}]},"2597-110":{"id":"/src/inputs/TableInput/index.ts","moduleParts":{},"imported":[{"uid":"2597-48"},{"uid":"2597-50"},{"uid":"2597-52"},{"uid":"2597-54"},{"uid":"2597-56"},{"uid":"2597-58"},{"uid":"2597-60"},{"uid":"2597-62"},{"uid":"2597-64"},{"uid":"2597-66"},{"uid":"2597-68"},{"uid":"2597-70"},{"uid":"2597-24"}],"importedBy":[{"uid":"2597-0"}]},"2597-111":{"id":"/src/money/MoneyInput/index.ts","moduleParts":{},"imported":[{"uid":"2597-72"}],"importedBy":[{"uid":"2597-0"},{"uid":"2597-52"}]},"2597-112":{"id":"/src/money/MoneyCurrencyInput/index.ts","moduleParts":{},"imported":[{"uid":"2597-44"}],"importedBy":[{"uid":"2597-0"}]},"2597-113":{"id":"/src/step/index.ts","moduleParts":{},"imported":[{"uid":"2597-4"},{"uid":"2597-2"},{"uid":"2597-6"},{"uid":"2597-8"}],"importedBy":[{"uid":"2597-0"}]},"2597-114":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-14"},{"uid":"2597-12"},{"uid":"2597-16"},{"uid":"2597-18"},{"uid":"2597-28"},{"uid":"2597-22"},{"uid":"2597-20"},{"uid":"2597-26"},{"uid":"2597-30"},{"uid":"2597-10"},{"uid":"2597-34"},{"uid":"2597-32"},{"uid":"2597-36"},{"uid":"2597-38"},{"uid":"2597-40"},{"uid":"2597-42"},{"uid":"2597-46"},{"uid":"2597-48"},{"uid":"2597-50"},{"uid":"2597-52"},{"uid":"2597-54"},{"uid":"2597-56"},{"uid":"2597-58"},{"uid":"2597-60"},{"uid":"2597-62"},{"uid":"2597-64"},{"uid":"2597-66"},{"uid":"2597-68"},{"uid":"2597-70"},{"uid":"2597-72"},{"uid":"2597-44"},{"uid":"2597-4"},{"uid":"2597-2"},{"uid":"2597-6"},{"uid":"2597-8"},{"uid":"2597-88"},{"uid":"2597-86"},{"uid":"2597-84"},{"uid":"2597-90"},{"uid":"2597-78"},{"uid":"2597-76"}],"isExternal":true},"2597-115":{"id":"@thx/date","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-14"},{"uid":"2597-16"},{"uid":"2597-18"},{"uid":"2597-28"},{"uid":"2597-42"},{"uid":"2597-54"}],"isExternal":true},"2597-116":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-14"},{"uid":"2597-12"},{"uid":"2597-16"},{"uid":"2597-18"},{"uid":"2597-28"},{"uid":"2597-22"},{"uid":"2597-20"},{"uid":"2597-30"},{"uid":"2597-10"},{"uid":"2597-34"},{"uid":"2597-32"},{"uid":"2597-38"},{"uid":"2597-40"},{"uid":"2597-42"},{"uid":"2597-46"},{"uid":"2597-48"},{"uid":"2597-52"},{"uid":"2597-56"},{"uid":"2597-58"},{"uid":"2597-60"},{"uid":"2597-64"},{"uid":"2597-66"},{"uid":"2597-70"},{"uid":"2597-72"},{"uid":"2597-44"},{"uid":"2597-4"},{"uid":"2597-6"},{"uid":"2597-8"},{"uid":"2597-88"},{"uid":"2597-86"},{"uid":"2597-92"},{"uid":"2597-90"},{"uid":"2597-78"}],"isExternal":true},"2597-117":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-14"},{"uid":"2597-12"},{"uid":"2597-16"},{"uid":"2597-18"},{"uid":"2597-28"},{"uid":"2597-22"},{"uid":"2597-26"},{"uid":"2597-34"},{"uid":"2597-38"},{"uid":"2597-40"},{"uid":"2597-42"},{"uid":"2597-46"},{"uid":"2597-48"},{"uid":"2597-56"},{"uid":"2597-64"},{"uid":"2597-66"},{"uid":"2597-68"},{"uid":"2597-72"},{"uid":"2597-44"},{"uid":"2597-8"},{"uid":"2597-90"}],"isExternal":true},"2597-118":{"id":"/src/date/DatePicker/index.ts","moduleParts":{},"imported":[{"uid":"2597-132"},{"uid":"2597-82"}],"importedBy":[{"uid":"2597-14"},{"uid":"2597-16"},{"uid":"2597-18"},{"uid":"2597-28"}]},"2597-119":{"id":"@js-joda/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-12"},{"uid":"2597-16"},{"uid":"2597-28"}],"isExternal":true},"2597-120":{"id":"formik","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-20"},{"uid":"2597-26"},{"uid":"2597-48"}],"isExternal":true},"2597-121":{"id":"flat","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-26"}],"isExternal":true},"2597-122":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-26"}],"isExternal":true},"2597-123":{"id":"inputmask","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-10"},{"uid":"2597-78"}],"isExternal":true},"2597-124":{"id":"use-deep-compare-effect","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-10"}],"isExternal":true},"2597-125":{"id":"react-credit-cards","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-42"}],"isExternal":true},"2597-126":{"id":"react-credit-cards/es/styles-compiled.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-42"}],"isExternal":true},"2597-127":{"id":"social-insurance-number","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-46"}],"isExternal":true},"2597-128":{"id":"react-table","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-48"}],"isExternal":true},"2597-129":{"id":"@thx/money","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-50"},{"uid":"2597-62"},{"uid":"2597-72"},{"uid":"2597-44"},{"uid":"2597-78"}],"isExternal":true},"2597-130":{"id":"js-money","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-72"},{"uid":"2597-44"},{"uid":"2597-78"}],"isExternal":true},"2597-131":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-8"}],"isExternal":true},"2597-132":{"id":"react-datepicker","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-118"}],"isExternal":true},"2597-133":{"id":"eventemitter3","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-92"}],"isExternal":true},"2597-134":{"id":"credit-card-type","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-90"}],"isExternal":true},"2597-135":{"id":"luhn","moduleParts":{},"imported":[],"importedBy":[{"uid":"2597-90"}],"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;
@@ -1,9 +1,11 @@
1
1
  /// <reference types="react" />
2
2
  import type { LocalDate } from '@js-joda/core';
3
+ import { type FormatDateParams } from '@thx/date';
3
4
  import type { CellProps } from 'react-table';
4
5
  interface LocalDateCellOptions<D extends Record<string, unknown>> {
5
6
  /** If provided, this function will override the LocalDate value displayed */
6
7
  overrideValue?: (props: CellProps<D, LocalDate>) => LocalDate;
8
+ dateFormat?: FormatDateParams;
7
9
  }
8
10
  export declare function LocalDateCell<D extends Record<string, unknown>>(options?: LocalDateCellOptions<D>): (props: CellProps<D, LocalDate>) => JSX.Element;
9
11
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thx/controls",
3
- "version": "17.1.1-alpha.0+84aa0f1",
3
+ "version": "17.1.1-alpha.4+ce008ea",
4
4
  "description": "A collection of components designed with SemanticUI.",
5
5
  "bugs": {
6
6
  "url": "https://github.com/thr-consulting/thr-addons/issues"
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@js-joda/core": "^5.1.0",
34
- "@thx/date": "^17.1.0",
34
+ "@thx/date": "^17.1.1-alpha.4+ce008ea",
35
35
  "@thx/money": "^17.0.0",
36
36
  "@thx/yup-types": "^17.0.0",
37
37
  "@types/inputmask": "^5.0.6",
@@ -64,5 +64,5 @@
64
64
  "publishConfig": {
65
65
  "access": "public"
66
66
  },
67
- "gitHead": "84aa0f1b5907e2a16e7aed34a4744f0675577ceb"
67
+ "gitHead": "ce008ea9dffe50876e1130b2b54552ee5f3511b4"
68
68
  }