@thx/controls 16.9.1-alpha.0 → 17.0.0-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.
@@ -1 +1 @@
1
- {"version":3,"file":"LocalDatePicker.js","sources":["../../../../src/date/LocalDatePicker/LocalDatePicker.tsx"],"sourcesContent":["import type {LocalDate} from '@js-joda/core';\nimport {toDate, toLocalDate} from '@thx/date';\nimport debug from 'debug';\nimport {useEffect, useRef, useState} from 'react';\nimport type {ReactDatePickerProps} from 'react-datepicker';\nimport {Icon, Input, InputProps} from 'semantic-ui-react';\nimport {DatePicker} from '../DatePicker/index';\nimport '../DatePicker/styles.css';\nimport {MaskedDateInput, MaskedDateInputRef} from './MaskedDateInput';\n\nconst d = debug('thx.controls.date.LocalDatePicker');\n\ninterface ILocalDatePicker {\n\tvalue?: LocalDate | number | null;\n\tonChange?: (value: LocalDate | null) => void;\n\tonChangeRaw?: () => void;\n\tminDate?: LocalDate;\n\tmaxDate?: LocalDate;\n\ticon?: boolean;\n\topenOnFocus?: boolean;\n\tstartFocused?: boolean;\n\tstartSelected?: boolean;\n}\n\ntype InputPropsOmitted = Omit<InputProps, 'onChange'>;\ntype ReactDatePickerPropsOmitted = Omit<Omit<ReactDatePickerProps, 'value'>, 'onChange' | 'minDate' | 'maxDate'>;\nexport type LocalDatePickerProps = ILocalDatePicker & InputPropsOmitted & ReactDatePickerPropsOmitted;\n\nexport function LocalDatePicker(props: LocalDatePickerProps): JSX.Element {\n\tconst {\n\t\tminDate,\n\t\tmaxDate,\n\t\tvalue,\n\t\tonChange,\n\t\tonBlur,\n\t\tas,\n\t\taction,\n\t\tactionPosition,\n\t\tclassName,\n\t\terror,\n\t\tfluid,\n\t\tfocus,\n\t\ticon = true,\n\t\tinverted,\n\t\tlabel,\n\t\tlabelPosition,\n\t\tloading,\n\t\tsize,\n\t\ttabIndex,\n\t\ttransparent,\n\t\topenOnFocus = false,\n\t\tstartFocused,\n\t\tstartSelected,\n\t\t...rest\n\t} = props;\n\n\tconst inputProps = {\n\t\tas,\n\t\taction,\n\t\tactionPosition,\n\t\tclassName: `${className || ''} icon`,\n\t\terror,\n\t\tfocus,\n\t\tfluid,\n\t\tinverted,\n\t\tlabel,\n\t\tlabelPosition,\n\t\tloading,\n\t\tsize,\n\t\ttabIndex,\n\t\ttransparent,\n\t};\n\n\tconst maskedInputProps = {\n\t\tas,\n\t\taction,\n\t\tactionPosition,\n\t\tclassName,\n\t\terror,\n\t\tfocus,\n\t\tinverted,\n\t\tlabel,\n\t\tlabelPosition,\n\t\tloading,\n\t\tsize,\n\t\ttabIndex,\n\t\ttransparent,\n\t};\n\n\tconst iconProps = {\n\t\tclassName,\n\t\tinverted,\n\t\tloading,\n\t\tsize,\n\t\ttransparent,\n\t};\n\n\tconst [isOpen, setIsOpen] = useState(false);\n\tconst [selected, setSelected] = useState<Date | null>();\n\tconst ref = useRef<MaskedDateInputRef>(null);\n\n\tuseEffect(() => {\n\t\tsetSelected(value ? toDate(value) : null);\n\t}, [value]);\n\n\tuseEffect(() => {\n\t\tif (startFocused) {\n\t\t\tref.current?.focus();\n\t\t}\n\t}, [startFocused]);\n\n\tuseEffect(() => {\n\t\tif (startSelected) {\n\t\t\tref.current?.select();\n\t\t}\n\t}, [startSelected]);\n\n\tconst handleDateChange = (date: Date) => {\n\t\tlet allowedDate = toLocalDate(date);\n\n\t\tif (minDate?.isAfter(allowedDate)) {\n\t\t\tallowedDate = minDate;\n\t\t}\n\t\tif (maxDate?.isBefore(allowedDate)) {\n\t\t\tallowedDate = maxDate;\n\t\t}\n\t\tonChange && onChange(date ? allowedDate : null);\n\t\tsetSelected(toDate(allowedDate));\n\t\tsetIsOpen(false);\n\t};\n\n\tconst handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {\n\t\tconst inputValue = e.target.value;\n\t\tconst date = inputValue ? toDate(inputValue) : null;\n\n\t\tdate && handleDateChange(date);\n\t};\n\n\tconst handleDatePickerBlur = (e: React.FocusEvent<HTMLInputElement>) => {\n\t\tsetIsOpen(false);\n\t\tonBlur && onBlur(e);\n\t\thandleInputChange(e);\n\t};\n\n\tconst toggleDatePicker = () => {\n\t\tsetIsOpen(!isOpen);\n\t};\n\n\tconst handleOnKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {\n\t\t// toggle on enter\n\t\te?.key === 'Enter' && toggleDatePicker();\n\t\t// hide on escape\n\t\te?.key === 'Escape' && setIsOpen(false);\n\t};\n\n\treturn (\n\t\t<DatePicker\n\t\t\t{...rest}\n\t\t\tselected={selected}\n\t\t\tonChange={handleDateChange}\n\t\t\tcustomInput={\n\t\t\t\t<Input {...inputProps}>\n\t\t\t\t\t<MaskedDateInput\n\t\t\t\t\t\t{...maskedInputProps}\n\t\t\t\t\t\tonBlur={handleDatePickerBlur}\n\t\t\t\t\t\tvalue={selected}\n\t\t\t\t\t\tonClick={({target}: {target: HTMLInputElement}) => (openOnFocus ? setIsOpen(!isOpen) : target.select())}\n\t\t\t\t\t\tonKeyDown={handleOnKeyDown}\n\t\t\t\t\t\tref={ref}\n\t\t\t\t\t/>\n\t\t\t\t\t{icon && <Icon {...iconProps} onClick={toggleDatePicker} tabIndex={-1} name=\"calendar alternate\" link />}\n\t\t\t\t</Input>\n\t\t\t}\n\t\t\tminDate={minDate ? toDate(minDate) : null}\n\t\t\tmaxDate={maxDate ? toDate(maxDate) : null}\n\t\t\topen={isOpen}\n\t\t\tenableTabLoop={openOnFocus}\n\t\t\tpreventOpenOnFocus={openOnFocus}\n\t\t\tonBlur={handleDatePickerBlur}\n\t\t\tonClickOutside={() => setIsOpen(false)}\n\t\t/>\n\t);\n}\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"LocalDatePicker.js","sources":["../../../../src/date/LocalDatePicker/LocalDatePicker.tsx"],"sourcesContent":["import type {LocalDate} from '@js-joda/core';\nimport {toDate, toLocalDate} from '@thx/date';\nimport debug from 'debug';\nimport {useEffect, useRef, useState} from 'react';\nimport type {ReactDatePickerProps} from 'react-datepicker';\nimport {Icon, Input, InputProps} from 'semantic-ui-react';\nimport {DatePicker} from '../DatePicker/index';\nimport '../DatePicker/styles.css';\nimport {MaskedDateInput, MaskedDateInputRef} from './MaskedDateInput';\n\nconst d = debug('thx.controls.date.LocalDatePicker');\n\ninterface ILocalDatePicker {\n\tvalue?: LocalDate | number | null;\n\tonChange?: (value: LocalDate | null) => void;\n\tonChangeRaw?: () => void;\n\tminDate?: LocalDate;\n\tmaxDate?: LocalDate;\n\ticon?: boolean;\n\topenOnFocus?: boolean;\n\tstartFocused?: boolean;\n\tstartSelected?: boolean;\n}\n\ntype InputPropsOmitted = Omit<InputProps, 'onChange'>;\ntype ReactDatePickerPropsOmitted = Omit<Omit<ReactDatePickerProps, 'value'>, 'onChange' | 'minDate' | 'maxDate' | 'icon'>;\nexport type LocalDatePickerProps = ILocalDatePicker & InputPropsOmitted & ReactDatePickerPropsOmitted;\n\nexport function LocalDatePicker(props: LocalDatePickerProps): JSX.Element {\n\tconst {\n\t\tminDate,\n\t\tmaxDate,\n\t\tvalue,\n\t\tonChange,\n\t\tonBlur,\n\t\tas,\n\t\taction,\n\t\tactionPosition,\n\t\tclassName,\n\t\terror,\n\t\tfluid,\n\t\tfocus,\n\t\ticon = true,\n\t\tinverted,\n\t\tlabel,\n\t\tlabelPosition,\n\t\tloading,\n\t\tsize,\n\t\ttabIndex,\n\t\ttransparent,\n\t\topenOnFocus = false,\n\t\tstartFocused,\n\t\tstartSelected,\n\t\t...rest\n\t} = props;\n\n\tconst inputProps = {\n\t\tas,\n\t\taction,\n\t\tactionPosition,\n\t\tclassName: `${className || ''} icon`,\n\t\terror,\n\t\tfocus,\n\t\tfluid,\n\t\tinverted,\n\t\tlabel,\n\t\tlabelPosition,\n\t\tloading,\n\t\tsize,\n\t\ttabIndex,\n\t\ttransparent,\n\t};\n\n\tconst maskedInputProps = {\n\t\tas,\n\t\taction,\n\t\tactionPosition,\n\t\tclassName,\n\t\terror,\n\t\tfocus,\n\t\tinverted,\n\t\tlabel,\n\t\tlabelPosition,\n\t\tloading,\n\t\tsize,\n\t\ttabIndex,\n\t\ttransparent,\n\t};\n\n\tconst iconProps = {\n\t\tclassName,\n\t\tinverted,\n\t\tloading,\n\t\tsize,\n\t\ttransparent,\n\t};\n\n\tconst [isOpen, setIsOpen] = useState(false);\n\tconst [selected, setSelected] = useState<Date | null>();\n\tconst ref = useRef<MaskedDateInputRef>(null);\n\n\tuseEffect(() => {\n\t\tsetSelected(value ? toDate(value) : null);\n\t}, [value]);\n\n\tuseEffect(() => {\n\t\tif (startFocused) {\n\t\t\tref.current?.focus();\n\t\t}\n\t}, [startFocused]);\n\n\tuseEffect(() => {\n\t\tif (startSelected) {\n\t\t\tref.current?.select();\n\t\t}\n\t}, [startSelected]);\n\n\tconst handleDateChange = (date: Date) => {\n\t\tlet allowedDate = toLocalDate(date);\n\n\t\tif (minDate?.isAfter(allowedDate)) {\n\t\t\tallowedDate = minDate;\n\t\t}\n\t\tif (maxDate?.isBefore(allowedDate)) {\n\t\t\tallowedDate = maxDate;\n\t\t}\n\t\tonChange && onChange(date ? allowedDate : null);\n\t\tsetSelected(toDate(allowedDate));\n\t\tsetIsOpen(false);\n\t};\n\n\tconst handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {\n\t\tconst inputValue = e.target.value;\n\t\tconst date = inputValue ? toDate(inputValue) : null;\n\n\t\tdate && handleDateChange(date);\n\t};\n\n\tconst handleDatePickerBlur = (e: React.FocusEvent<HTMLInputElement>) => {\n\t\tsetIsOpen(false);\n\t\tonBlur && onBlur(e);\n\t\thandleInputChange(e);\n\t};\n\n\tconst toggleDatePicker = () => {\n\t\tsetIsOpen(!isOpen);\n\t};\n\n\tconst handleOnKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {\n\t\t// toggle on enter\n\t\te?.key === 'Enter' && toggleDatePicker();\n\t\t// hide on escape\n\t\te?.key === 'Escape' && setIsOpen(false);\n\t};\n\n\treturn (\n\t\t<DatePicker\n\t\t\t{...rest}\n\t\t\tselected={selected}\n\t\t\tonChange={handleDateChange}\n\t\t\tcustomInput={\n\t\t\t\t<Input {...inputProps}>\n\t\t\t\t\t<MaskedDateInput\n\t\t\t\t\t\t{...maskedInputProps}\n\t\t\t\t\t\tonBlur={handleDatePickerBlur}\n\t\t\t\t\t\tvalue={selected}\n\t\t\t\t\t\tonClick={({target}: {target: HTMLInputElement}) => (openOnFocus ? setIsOpen(!isOpen) : target.select())}\n\t\t\t\t\t\tonKeyDown={handleOnKeyDown}\n\t\t\t\t\t\tref={ref}\n\t\t\t\t\t/>\n\t\t\t\t\t{icon && <Icon {...iconProps} onClick={toggleDatePicker} tabIndex={-1} name=\"calendar alternate\" link />}\n\t\t\t\t</Input>\n\t\t\t}\n\t\t\tminDate={minDate ? toDate(minDate) : null}\n\t\t\tmaxDate={maxDate ? toDate(maxDate) : null}\n\t\t\topen={isOpen}\n\t\t\tenableTabLoop={openOnFocus}\n\t\t\tpreventOpenOnFocus={openOnFocus}\n\t\t\tonBlur={handleDatePickerBlur}\n\t\t\tonClickOutside={() => setIsOpen(false)}\n\t\t/>\n\t);\n}\n"],"names":[],"mappings":";;;;;;;;AAUU,MAAM,mCAAmC,EAAA;AAkB5C,SAAA,eAAA,CAAyB,KAA0C,EAAA;AACzE,EAAM,MAAA;AAAA,IACL,OAAA;AAAA,IACA,OAAA;AAAA,IACA,KAAA;AAAA,IACA,QAAA;AAAA,IACA,MAAA;AAAA,IACA,EAAA;AAAA,IACA,MAAA;AAAA,IACA,cAAA;AAAA,IACA,SAAA;AAAA,IACA,KAAA;AAAA,IACA,KAAA;AAAA,IACA,KAAA;AAAA,IACA,IAAO,GAAA,IAAA;AAAA,IACP,QAAA;AAAA,IACA,KAAA;AAAA,IACA,aAAA;AAAA,IACA,OAAA;AAAA,IACA,IAAA;AAAA,IACA,QAAA;AAAA,IACA,WAAA;AAAA,IACA,WAAc,GAAA,KAAA;AAAA,IACd,YAAA;AAAA,IACA,aAAA;AAAA,IACG,GAAA,IAAA;AAAA,GACA,GAAA,KAAA,CAAA;AAEJ,EAAA,MAAM,UAAa,GAAA;AAAA,IAClB,EAAA;AAAA,IACA,MAAA;AAAA,IACA,cAAA;AAAA,IACA,SAAA,EAAW,GAAG,SAAa,IAAA,EAAA,CAAA,KAAA,CAAA;AAAA,IAC3B,KAAA;AAAA,IACA,KAAA;AAAA,IACA,KAAA;AAAA,IACA,QAAA;AAAA,IACA,KAAA;AAAA,IACA,aAAA;AAAA,IACA,OAAA;AAAA,IACA,IAAA;AAAA,IACA,QAAA;AAAA,IACA,WAAA;AAAA,GACD,CAAA;AAEA,EAAA,MAAM,gBAAmB,GAAA;AAAA,IACxB,EAAA;AAAA,IACA,MAAA;AAAA,IACA,cAAA;AAAA,IACA,SAAA;AAAA,IACA,KAAA;AAAA,IACA,KAAA;AAAA,IACA,QAAA;AAAA,IACA,KAAA;AAAA,IACA,aAAA;AAAA,IACA,OAAA;AAAA,IACA,IAAA;AAAA,IACA,QAAA;AAAA,IACA,WAAA;AAAA,GACD,CAAA;AAEA,EAAA,MAAM,SAAY,GAAA;AAAA,IACjB,SAAA;AAAA,IACA,QAAA;AAAA,IACA,OAAA;AAAA,IACA,IAAA;AAAA,IACA,WAAA;AAAA,GACD,CAAA;AAEA,EAAA,MAAM,CAAC,MAAA,EAAQ,SAAa,CAAA,GAAA,QAAA,CAAS,KAAK,CAAA,CAAA;AAC1C,EAAM,MAAA,CAAC,QAAU,EAAA,WAAA,CAAA,GAAe,QAAsB,EAAA,CAAA;AACtD,EAAM,MAAA,GAAA,GAAM,OAA2B,IAAI,CAAA,CAAA;AAE3C,EAAA,SAAA,CAAU,MAAM;AACf,IAAA,WAAA,CAAY,KAAQ,GAAA,MAAA,CAAO,KAAK,CAAA,GAAI,IAAI,CAAA,CAAA;AAAA,GACzC,EAAG,CAAC,KAAK,CAAC,CAAA,CAAA;AAEV,EAAA,SAAA,CAAU,MAAM;AACf,IAAA,IAAI,YAAc,EAAA;AACjB,MAAA,GAAA,CAAI,SAAS,KAAM,EAAA,CAAA;AAAA,KACpB;AAAA,GACD,EAAG,CAAC,YAAY,CAAC,CAAA,CAAA;AAEjB,EAAA,SAAA,CAAU,MAAM;AACf,IAAA,IAAI,aAAe,EAAA;AAClB,MAAA,GAAA,CAAI,SAAS,MAAO,EAAA,CAAA;AAAA,KACrB;AAAA,GACD,EAAG,CAAC,aAAa,CAAC,CAAA,CAAA;AAElB,EAAM,MAAA,gBAAA,GAAmB,CAAC,IAAe,KAAA;AACxC,IAAI,IAAA,WAAA,GAAc,YAAY,IAAI,CAAA,CAAA;AAElC,IAAI,IAAA,OAAA,EAAS,OAAQ,CAAA,WAAW,CAAG,EAAA;AAClC,MAAc,WAAA,GAAA,OAAA,CAAA;AAAA,KACf;AACA,IAAI,IAAA,OAAA,EAAS,QAAS,CAAA,WAAW,CAAG,EAAA;AACnC,MAAc,WAAA,GAAA,OAAA,CAAA;AAAA,KACf;AACA,IAAY,QAAA,IAAA,QAAA,CAAS,IAAO,GAAA,WAAA,GAAc,IAAI,CAAA,CAAA;AAC9C,IAAY,WAAA,CAAA,MAAA,CAAO,WAAW,CAAC,CAAA,CAAA;AAC/B,IAAA,SAAA,CAAU,KAAK,CAAA,CAAA;AAAA,GAChB,CAAA;AAEA,EAAM,MAAA,iBAAA,GAAoB,CAAC,CAA2C,KAAA;AACrE,IAAM,MAAA,UAAA,GAAa,EAAE,MAAO,CAAA,KAAA,CAAA;AAC5B,IAAA,MAAM,IAAO,GAAA,UAAA,GAAa,MAAO,CAAA,UAAU,CAAI,GAAA,IAAA,CAAA;AAE/C,IAAA,IAAA,IAAQ,iBAAiB,IAAI,CAAA,CAAA;AAAA,GAC9B,CAAA;AAEA,EAAM,MAAA,oBAAA,GAAuB,CAAC,CAA0C,KAAA;AACvE,IAAA,SAAA,CAAU,KAAK,CAAA,CAAA;AACf,IAAA,MAAA,IAAU,OAAO,CAAC,CAAA,CAAA;AAClB,IAAA,iBAAA,CAAkB,CAAC,CAAA,CAAA;AAAA,GACpB,CAAA;AAEA,EAAA,MAAM,mBAAmB,MAAM;AAC9B,IAAA,SAAA,CAAU,CAAC,MAAM,CAAA,CAAA;AAAA,GAClB,CAAA;AAEA,EAAM,MAAA,eAAA,GAAkB,CAAC,CAA6C,KAAA;AAErE,IAAG,CAAA,EAAA,GAAA,KAAQ,WAAW,gBAAiB,EAAA,CAAA;AAEvC,IAAG,CAAA,EAAA,GAAA,KAAQ,QAAY,IAAA,SAAA,CAAU,KAAK,CAAA,CAAA;AAAA,GACvC,CAAA;AAEA,EAAA,uBACE,KAAA,CAAA,aAAA,CAAA,UAAA,EAAA;AAAA,IACI,GAAA,IAAA;AAAA,IACJ,QAAA;AAAA,IACA,QAAU,EAAA,gBAAA;AAAA,IACV,6BACE,KAAA,CAAA,aAAA,CAAA,KAAA,EAAA;AAAA,MAAU,GAAA,UAAA;AAAA,KAAA,kBACT,KAAA,CAAA,aAAA,CAAA,eAAA,EAAA;AAAA,MACI,GAAA,gBAAA;AAAA,MACJ,MAAQ,EAAA,oBAAA;AAAA,MACR,KAAO,EAAA,QAAA;AAAA,MACP,OAAA,EAAS,CAAC,EAAC,MAAyC,EAAA,KAAA,WAAA,GAAc,UAAU,CAAC,MAAM,CAAI,GAAA,MAAA,CAAO,MAAO,EAAA;AAAA,MACrG,SAAW,EAAA,eAAA;AAAA,MACX,GAAA;AAAA,KACD,CAAA,EACC,wBAAS,KAAA,CAAA,aAAA,CAAA,IAAA,EAAA;AAAA,MAAS,GAAA,SAAA;AAAA,MAAW,OAAS,EAAA,gBAAA;AAAA,MAAkB,QAAU,EAAA,CAAA,CAAA;AAAA,MAAI,IAAK,EAAA,oBAAA;AAAA,MAAqB,IAAI,EAAA,IAAA;AAAA,KAAC,CACvG,CAAA;AAAA,IAED,OAAS,EAAA,OAAA,GAAU,MAAO,CAAA,OAAO,CAAI,GAAA,IAAA;AAAA,IACrC,OAAS,EAAA,OAAA,GAAU,MAAO,CAAA,OAAO,CAAI,GAAA,IAAA;AAAA,IACrC,IAAM,EAAA,MAAA;AAAA,IACN,aAAe,EAAA,WAAA;AAAA,IACf,kBAAoB,EAAA,WAAA;AAAA,IACpB,MAAQ,EAAA,oBAAA;AAAA,IACR,cAAA,EAAgB,MAAM,SAAA,CAAU,KAAK,CAAA;AAAA,GACtC,CAAA,CAAA;AAEF;;;;"}
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":"31b8-1"}]},{"name":"step/useStep.js","children":[{"name":"src/step/useStep.ts","uid":"31b8-3"}]},{"name":"step/Step.js","children":[{"name":"src/step/Step.tsx","uid":"31b8-5"}]},{"name":"step/FormStep.js","children":[{"name":"src/step/FormStep.tsx","uid":"31b8-7"}]},{"name":"step/StepProvider.js","children":[{"name":"src/step/StepProvider.tsx","uid":"31b8-9"}]},{"name":"inputs/MaskedInput/useMaskedInput.js","children":[{"name":"src/inputs/MaskedInput/useMaskedInput.ts","uid":"31b8-11"}]},{"name":"date/LocalDatePicker/LocalDatePicker.js","children":[{"name":"src/date/LocalDatePicker/LocalDatePicker.tsx","uid":"31b8-13"}]},{"name":"date/LocalMonthSelect/LocalMonthSelect.js","children":[{"name":"src/date/LocalMonthSelect/LocalMonthSelect.tsx","uid":"31b8-15"}]},{"name":"date/LocalTimePicker/LocalTimePicker.js","children":[{"name":"src/date/LocalTimePicker/LocalTimePicker.tsx","uid":"31b8-17"}]},{"name":"date/MonthDayPicker/MonthDayPicker.js","children":[{"name":"src/date/MonthDayPicker/MonthDayPicker.tsx","uid":"31b8-19"}]},{"name":"date/MonthYearPicker/MonthYearPicker.js","children":[{"name":"src/date/MonthYearPicker/MonthYearPicker.tsx","uid":"31b8-21"}]},{"name":"date/YearSelect/YearSelect.js","children":[{"name":"src/date/YearSelect/YearSelect.tsx","uid":"31b8-23"}]},{"name":"form/TForm/useTForm.js","children":[{"name":"src/form/TForm/useTForm.tsx","uid":"31b8-25"}]},{"name":"form/TForm/TForm.js","children":[{"name":"src/form/TForm/TForm.tsx","uid":"31b8-27"}]},{"name":"inputs/TableInput/addRowOnTab.js","children":[{"name":"src/inputs/TableInput/addRowOnTab.ts","uid":"31b8-29"}]},{"name":"inputs/MaskedInput/MaskedInput.js","children":[{"name":"src/inputs/MaskedInput/MaskedInput.tsx","uid":"31b8-31"}]},{"name":"inputs/RadioGroup/RadioGroup.js","children":[{"name":"src/inputs/RadioGroup/RadioGroup.tsx","uid":"31b8-33"}]},{"name":"inputs/Scriptel/Scriptel.js","children":[{"name":"src/inputs/Scriptel/Scriptel.tsx","uid":"31b8-35"}]},{"name":"inputs/Scriptel/withScriptel.js","children":[{"name":"src/inputs/Scriptel/withScriptel.tsx","uid":"31b8-37"}]},{"name":"money/MoneyInput/MoneyInput.js","children":[{"name":"src/money/MoneyInput/MoneyInput.tsx","uid":"31b8-39"}]},{"name":"inputs/ScriptelInput/ScriptelInput.js","children":[{"name":"src/inputs/ScriptelInput/ScriptelInput.tsx","uid":"31b8-41"}]},{"name":"inputs/SinInput/SinInput.js","children":[{"name":"src/inputs/SinInput/SinInput.tsx","uid":"31b8-43"}]},{"name":"inputs/PhoneInput/PhoneInput.js","children":[{"name":"src/inputs/PhoneInput/PhoneInput.tsx","uid":"31b8-45"}]},{"name":"inputs/TableInput/MoneyCell.js","children":[{"name":"src/inputs/TableInput/MoneyCell.tsx","uid":"31b8-47"}]},{"name":"inputs/TableInput/TableInput.js","children":[{"name":"src/inputs/TableInput/TableInput.tsx","uid":"31b8-49"}]},{"name":"inputs/TableInput/MoneyEditCell.js","children":[{"name":"src/inputs/TableInput/MoneyEditCell.tsx","uid":"31b8-51"}]},{"name":"inputs/TableInput/LocalDateCell.js","children":[{"name":"src/inputs/TableInput/LocalDateCell.tsx","uid":"31b8-53"}]},{"name":"inputs/TableInput/CheckboxEditCell.js","children":[{"name":"src/inputs/TableInput/CheckboxEditCell.tsx","uid":"31b8-55"}]},{"name":"inputs/TableInput/LocalDateEditCell.js","children":[{"name":"src/inputs/TableInput/LocalDateEditCell.tsx","uid":"31b8-57"}]},{"name":"inputs/TableInput/StringEditCell.js","children":[{"name":"src/inputs/TableInput/StringEditCell.tsx","uid":"31b8-59"}]},{"name":"inputs/TableInput/DropdownCell.js","children":[{"name":"src/inputs/TableInput/DropdownCell.tsx","uid":"31b8-61"}]},{"name":"inputs/TableInput/MoneySumFooter.js","children":[{"name":"src/inputs/TableInput/MoneySumFooter.tsx","uid":"31b8-63"}]},{"name":"inputs/TableInput/HoverCell.js","children":[{"name":"src/inputs/TableInput/HoverCell.tsx","uid":"31b8-65"}]},{"name":"inputs/CreditCardInput/CreditCardInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardInput.tsx","uid":"31b8-67"}]},{"name":"money/MoneyCurrencyInput/MoneyCurrencyInput.js","children":[{"name":"src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","uid":"31b8-69"}]},{"name":"inputs/Scriptel/scriptel/enums.js","children":[{"name":"src/inputs/Scriptel/scriptel/enums.ts","uid":"31b8-71"}]},{"name":"step/stepContext.js","children":[{"name":"src/step/stepContext.ts","uid":"31b8-73"}]},{"name":"money/useMoneyInput.js","children":[{"name":"src/money/useMoneyInput.ts","uid":"31b8-75"}]},{"name":"date/DatePicker/styles.css.js","children":[{"name":"src/date/DatePicker/styles.css","uid":"31b8-77"}]},{"name":"inputs/Scriptel/ScriptelContext.js","children":[{"name":"src/inputs/Scriptel/ScriptelContext.ts","uid":"31b8-79"}]},{"name":"date/LocalTimePicker/MaskedTimeInput.js","children":[{"name":"src/date/LocalTimePicker/MaskedTimeInput.tsx","uid":"31b8-81"}]},{"name":"date/LocalDatePicker/MaskedDateInput.js","children":[{"name":"src/date/LocalDatePicker/MaskedDateInput.tsx","uid":"31b8-83"}]},{"name":"inputs/CreditCardInput/styles.css.js","children":[{"name":"src/inputs/CreditCardInput/styles.css","uid":"31b8-85"}]},{"name":"inputs/CreditCardInput/CreditCardNumberInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardNumberInput.tsx","uid":"31b8-87"}]},{"name":"inputs/Scriptel/scriptel/index.js","children":[{"name":"src/inputs/Scriptel/scriptel/index.ts","uid":"31b8-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":"31b8-91"}]}],"isRoot":true},"nodeParts":{"31b8-1":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"31b8-0"},"31b8-3":{"renderedLength":113,"gzipLength":106,"brotliLength":82,"mainUid":"31b8-2"},"31b8-5":{"renderedLength":203,"gzipLength":157,"brotliLength":111,"mainUid":"31b8-4"},"31b8-7":{"renderedLength":440,"gzipLength":270,"brotliLength":214,"mainUid":"31b8-6"},"31b8-9":{"renderedLength":3529,"gzipLength":1021,"brotliLength":861,"mainUid":"31b8-8"},"31b8-11":{"renderedLength":1487,"gzipLength":502,"brotliLength":423,"mainUid":"31b8-10"},"31b8-13":{"renderedLength":3161,"gzipLength":956,"brotliLength":853,"mainUid":"31b8-12"},"31b8-15":{"renderedLength":1135,"gzipLength":503,"brotliLength":415,"mainUid":"31b8-14"},"31b8-17":{"renderedLength":1205,"gzipLength":488,"brotliLength":402,"mainUid":"31b8-16"},"31b8-19":{"renderedLength":1965,"gzipLength":657,"brotliLength":544,"mainUid":"31b8-18"},"31b8-21":{"renderedLength":1229,"gzipLength":491,"brotliLength":424,"mainUid":"31b8-20"},"31b8-23":{"renderedLength":1553,"gzipLength":580,"brotliLength":461,"mainUid":"31b8-22"},"31b8-25":{"renderedLength":2930,"gzipLength":959,"brotliLength":816,"mainUid":"31b8-24"},"31b8-27":{"renderedLength":600,"gzipLength":307,"brotliLength":267,"mainUid":"31b8-26"},"31b8-29":{"renderedLength":312,"gzipLength":199,"brotliLength":173,"mainUid":"31b8-28"},"31b8-31":{"renderedLength":585,"gzipLength":317,"brotliLength":280,"mainUid":"31b8-30"},"31b8-33":{"renderedLength":561,"gzipLength":301,"brotliLength":259,"mainUid":"31b8-32"},"31b8-35":{"renderedLength":1275,"gzipLength":476,"brotliLength":406,"mainUid":"31b8-34"},"31b8-37":{"renderedLength":275,"gzipLength":163,"brotliLength":130,"mainUid":"31b8-36"},"31b8-39":{"renderedLength":778,"gzipLength":392,"brotliLength":329,"mainUid":"31b8-38"},"31b8-41":{"renderedLength":1963,"gzipLength":648,"brotliLength":547,"mainUid":"31b8-40"},"31b8-43":{"renderedLength":1144,"gzipLength":530,"brotliLength":462,"mainUid":"31b8-42"},"31b8-45":{"renderedLength":381,"gzipLength":248,"brotliLength":218,"mainUid":"31b8-44"},"31b8-47":{"renderedLength":257,"gzipLength":187,"brotliLength":149,"mainUid":"31b8-46"},"31b8-49":{"renderedLength":2788,"gzipLength":828,"brotliLength":734,"mainUid":"31b8-48"},"31b8-51":{"renderedLength":708,"gzipLength":368,"brotliLength":313,"mainUid":"31b8-50"},"31b8-53":{"renderedLength":264,"gzipLength":191,"brotliLength":154,"mainUid":"31b8-52"},"31b8-55":{"renderedLength":702,"gzipLength":367,"brotliLength":330,"mainUid":"31b8-54"},"31b8-57":{"renderedLength":695,"gzipLength":350,"brotliLength":295,"mainUid":"31b8-56"},"31b8-59":{"renderedLength":717,"gzipLength":369,"brotliLength":319,"mainUid":"31b8-58"},"31b8-61":{"renderedLength":493,"gzipLength":255,"brotliLength":211,"mainUid":"31b8-60"},"31b8-63":{"renderedLength":414,"gzipLength":261,"brotliLength":219,"mainUid":"31b8-62"},"31b8-65":{"renderedLength":403,"gzipLength":245,"brotliLength":195,"mainUid":"31b8-64"},"31b8-67":{"renderedLength":2324,"gzipLength":586,"brotliLength":495,"mainUid":"31b8-66"},"31b8-69":{"renderedLength":1575,"gzipLength":642,"brotliLength":536,"mainUid":"31b8-68"},"31b8-71":{"renderedLength":937,"gzipLength":292,"brotliLength":231,"mainUid":"31b8-70"},"31b8-73":{"renderedLength":80,"gzipLength":90,"brotliLength":72,"mainUid":"31b8-72"},"31b8-75":{"renderedLength":2155,"gzipLength":770,"brotliLength":660,"mainUid":"31b8-74"},"31b8-77":{"renderedLength":538,"gzipLength":263,"brotliLength":211,"mainUid":"31b8-76"},"31b8-79":{"renderedLength":46,"gzipLength":60,"brotliLength":45,"mainUid":"31b8-78"},"31b8-81":{"renderedLength":446,"gzipLength":290,"brotliLength":241,"mainUid":"31b8-80"},"31b8-83":{"renderedLength":426,"gzipLength":283,"brotliLength":244,"mainUid":"31b8-82"},"31b8-85":{"renderedLength":78,"gzipLength":92,"brotliLength":79,"mainUid":"31b8-84"},"31b8-87":{"renderedLength":1713,"gzipLength":687,"brotliLength":585,"mainUid":"31b8-86"},"31b8-89":{"renderedLength":2530,"gzipLength":860,"brotliLength":739,"mainUid":"31b8-88"},"31b8-91":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"31b8-90"}},"nodeMetas":{"31b8-0":{"id":"/src/index.ts","moduleParts":{"index.js":"31b8-1"},"imported":[{"uid":"31b8-92"},{"uid":"31b8-93"},{"uid":"31b8-94"},{"uid":"31b8-95"},{"uid":"31b8-96"},{"uid":"31b8-97"},{"uid":"31b8-98"},{"uid":"31b8-99"},{"uid":"31b8-100"},{"uid":"31b8-101"},{"uid":"31b8-102"},{"uid":"31b8-103"},{"uid":"31b8-104"},{"uid":"31b8-105"},{"uid":"31b8-106"},{"uid":"31b8-107"},{"uid":"31b8-108"},{"uid":"31b8-109"}],"importedBy":[],"isEntry":true},"31b8-2":{"id":"/src/step/useStep.ts","moduleParts":{"step/useStep.js":"31b8-3"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-72"}],"importedBy":[{"uid":"31b8-109"},{"uid":"31b8-6"}]},"31b8-4":{"id":"/src/step/Step.tsx","moduleParts":{"step/Step.js":"31b8-5"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"}],"importedBy":[{"uid":"31b8-109"},{"uid":"31b8-8"}]},"31b8-6":{"id":"/src/step/FormStep.tsx","moduleParts":{"step/FormStep.js":"31b8-7"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-2"}],"importedBy":[{"uid":"31b8-109"},{"uid":"31b8-8"}]},"31b8-8":{"id":"/src/step/StepProvider.tsx","moduleParts":{"step/StepProvider.js":"31b8-9"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-127"},{"uid":"31b8-113"},{"uid":"31b8-6"},{"uid":"31b8-4"},{"uid":"31b8-72"}],"importedBy":[{"uid":"31b8-109"}]},"31b8-10":{"id":"/src/inputs/MaskedInput/useMaskedInput.ts","moduleParts":{"inputs/MaskedInput/useMaskedInput.js":"31b8-11"},"imported":[{"uid":"31b8-112"},{"uid":"31b8-119"},{"uid":"31b8-110"},{"uid":"31b8-120"}],"importedBy":[{"uid":"31b8-99"},{"uid":"31b8-30"},{"uid":"31b8-42"},{"uid":"31b8-86"}]},"31b8-12":{"id":"/src/date/LocalDatePicker/LocalDatePicker.tsx","moduleParts":{"date/LocalDatePicker/LocalDatePicker.js":"31b8-13"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-111"},{"uid":"31b8-112"},{"uid":"31b8-113"},{"uid":"31b8-114"},{"uid":"31b8-76"},{"uid":"31b8-82"}],"importedBy":[{"uid":"31b8-92"}]},"31b8-14":{"id":"/src/date/LocalMonthSelect/LocalMonthSelect.tsx","moduleParts":{"date/LocalMonthSelect/LocalMonthSelect.js":"31b8-15"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-115"},{"uid":"31b8-112"},{"uid":"31b8-113"}],"importedBy":[{"uid":"31b8-93"}]},"31b8-16":{"id":"/src/date/LocalTimePicker/LocalTimePicker.tsx","moduleParts":{"date/LocalTimePicker/LocalTimePicker.js":"31b8-17"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-115"},{"uid":"31b8-111"},{"uid":"31b8-112"},{"uid":"31b8-114"},{"uid":"31b8-80"}],"importedBy":[{"uid":"31b8-94"}]},"31b8-18":{"id":"/src/date/MonthDayPicker/MonthDayPicker.tsx","moduleParts":{"date/MonthDayPicker/MonthDayPicker.js":"31b8-19"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-111"},{"uid":"31b8-112"},{"uid":"31b8-113"},{"uid":"31b8-114"}],"importedBy":[{"uid":"31b8-95"}]},"31b8-20":{"id":"/src/date/MonthYearPicker/MonthYearPicker.tsx","moduleParts":{"date/MonthYearPicker/MonthYearPicker.js":"31b8-21"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-115"},{"uid":"31b8-111"},{"uid":"31b8-112"},{"uid":"31b8-113"},{"uid":"31b8-114"}],"importedBy":[{"uid":"31b8-96"}]},"31b8-22":{"id":"/src/date/YearSelect/YearSelect.tsx","moduleParts":{"date/YearSelect/YearSelect.js":"31b8-23"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-113"}],"importedBy":[{"uid":"31b8-97"}]},"31b8-24":{"id":"/src/form/TForm/useTForm.tsx","moduleParts":{"form/TForm/useTForm.js":"31b8-25"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-117"},{"uid":"31b8-116"},{"uid":"31b8-118"},{"uid":"31b8-113"}],"importedBy":[{"uid":"31b8-98"},{"uid":"31b8-26"}]},"31b8-26":{"id":"/src/form/TForm/TForm.tsx","moduleParts":{"form/TForm/TForm.js":"31b8-27"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-116"},{"uid":"31b8-24"}],"importedBy":[{"uid":"31b8-98"}]},"31b8-28":{"id":"/src/inputs/TableInput/addRowOnTab.ts","moduleParts":{"inputs/TableInput/addRowOnTab.js":"31b8-29"},"imported":[],"importedBy":[{"uid":"31b8-106"},{"uid":"31b8-50"},{"uid":"31b8-54"},{"uid":"31b8-58"}]},"31b8-30":{"id":"/src/inputs/MaskedInput/MaskedInput.tsx","moduleParts":{"inputs/MaskedInput/MaskedInput.js":"31b8-31"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-113"},{"uid":"31b8-10"}],"importedBy":[{"uid":"31b8-99"}]},"31b8-32":{"id":"/src/inputs/RadioGroup/RadioGroup.tsx","moduleParts":{"inputs/RadioGroup/RadioGroup.js":"31b8-33"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-113"}],"importedBy":[{"uid":"31b8-100"}]},"31b8-34":{"id":"/src/inputs/Scriptel/Scriptel.tsx","moduleParts":{"inputs/Scriptel/Scriptel.js":"31b8-35"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-78"},{"uid":"31b8-88"}],"importedBy":[{"uid":"31b8-101"},{"uid":"31b8-36"}]},"31b8-36":{"id":"/src/inputs/Scriptel/withScriptel.tsx","moduleParts":{"inputs/Scriptel/withScriptel.js":"31b8-37"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-34"}],"importedBy":[{"uid":"31b8-101"}]},"31b8-38":{"id":"/src/money/MoneyInput/MoneyInput.tsx","moduleParts":{"money/MoneyInput/MoneyInput.js":"31b8-39"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-125"},{"uid":"31b8-112"},{"uid":"31b8-126"},{"uid":"31b8-113"},{"uid":"31b8-74"}],"importedBy":[{"uid":"31b8-107"}]},"31b8-40":{"id":"/src/inputs/ScriptelInput/ScriptelInput.tsx","moduleParts":{"inputs/ScriptelInput/ScriptelInput.js":"31b8-41"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-113"},{"uid":"31b8-78"}],"importedBy":[{"uid":"31b8-102"}]},"31b8-42":{"id":"/src/inputs/SinInput/SinInput.tsx","moduleParts":{"inputs/SinInput/SinInput.js":"31b8-43"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-113"},{"uid":"31b8-123"},{"uid":"31b8-10"}],"importedBy":[{"uid":"31b8-105"}]},"31b8-44":{"id":"/src/inputs/PhoneInput/PhoneInput.tsx","moduleParts":{"inputs/PhoneInput/PhoneInput.js":"31b8-45"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-99"}],"importedBy":[{"uid":"31b8-103"}]},"31b8-46":{"id":"/src/inputs/TableInput/MoneyCell.tsx","moduleParts":{"inputs/TableInput/MoneyCell.js":"31b8-47"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-125"}],"importedBy":[{"uid":"31b8-106"}]},"31b8-48":{"id":"/src/inputs/TableInput/TableInput.tsx","moduleParts":{"inputs/TableInput/TableInput.js":"31b8-49"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-116"},{"uid":"31b8-124"},{"uid":"31b8-113"}],"importedBy":[{"uid":"31b8-106"}]},"31b8-50":{"id":"/src/inputs/TableInput/MoneyEditCell.tsx","moduleParts":{"inputs/TableInput/MoneyEditCell.js":"31b8-51"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-107"},{"uid":"31b8-28"}],"importedBy":[{"uid":"31b8-106"}]},"31b8-52":{"id":"/src/inputs/TableInput/LocalDateCell.tsx","moduleParts":{"inputs/TableInput/LocalDateCell.js":"31b8-53"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-111"}],"importedBy":[{"uid":"31b8-106"}]},"31b8-54":{"id":"/src/inputs/TableInput/CheckboxEditCell.tsx","moduleParts":{"inputs/TableInput/CheckboxEditCell.js":"31b8-55"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-113"},{"uid":"31b8-28"}],"importedBy":[{"uid":"31b8-106"}]},"31b8-56":{"id":"/src/inputs/TableInput/LocalDateEditCell.tsx","moduleParts":{"inputs/TableInput/LocalDateEditCell.js":"31b8-57"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-92"}],"importedBy":[{"uid":"31b8-106"}]},"31b8-58":{"id":"/src/inputs/TableInput/StringEditCell.tsx","moduleParts":{"inputs/TableInput/StringEditCell.js":"31b8-59"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-113"},{"uid":"31b8-28"}],"importedBy":[{"uid":"31b8-106"}]},"31b8-60":{"id":"/src/inputs/TableInput/DropdownCell.tsx","moduleParts":{"inputs/TableInput/DropdownCell.js":"31b8-61"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-113"}],"importedBy":[{"uid":"31b8-106"}]},"31b8-62":{"id":"/src/inputs/TableInput/MoneySumFooter.tsx","moduleParts":{"inputs/TableInput/MoneySumFooter.js":"31b8-63"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-125"}],"importedBy":[{"uid":"31b8-106"}]},"31b8-64":{"id":"/src/inputs/TableInput/HoverCell.tsx","moduleParts":{"inputs/TableInput/HoverCell.js":"31b8-65"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"}],"importedBy":[{"uid":"31b8-106"}]},"31b8-66":{"id":"/src/inputs/CreditCardInput/CreditCardInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardInput.js":"31b8-67"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-111"},{"uid":"31b8-112"},{"uid":"31b8-121"},{"uid":"31b8-122"},{"uid":"31b8-113"},{"uid":"31b8-96"},{"uid":"31b8-86"},{"uid":"31b8-84"}],"importedBy":[{"uid":"31b8-104"}]},"31b8-68":{"id":"/src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","moduleParts":{"money/MoneyCurrencyInput/MoneyCurrencyInput.js":"31b8-69"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-125"},{"uid":"31b8-112"},{"uid":"31b8-126"},{"uid":"31b8-113"},{"uid":"31b8-74"}],"importedBy":[{"uid":"31b8-108"}]},"31b8-70":{"id":"/src/inputs/Scriptel/scriptel/enums.ts","moduleParts":{"inputs/Scriptel/scriptel/enums.js":"31b8-71"},"imported":[],"importedBy":[{"uid":"31b8-101"},{"uid":"31b8-88"}]},"31b8-72":{"id":"/src/step/stepContext.ts","moduleParts":{"step/stepContext.js":"31b8-73"},"imported":[{"uid":"31b8-110"}],"importedBy":[{"uid":"31b8-2"},{"uid":"31b8-8"}]},"31b8-74":{"id":"/src/money/useMoneyInput.ts","moduleParts":{"money/useMoneyInput.js":"31b8-75"},"imported":[{"uid":"31b8-125"},{"uid":"31b8-112"},{"uid":"31b8-119"},{"uid":"31b8-126"},{"uid":"31b8-110"}],"importedBy":[{"uid":"31b8-38"},{"uid":"31b8-68"}]},"31b8-76":{"id":"/src/date/DatePicker/styles.css","moduleParts":{"date/DatePicker/styles.css.js":"31b8-77"},"imported":[{"uid":"31b8-90"}],"importedBy":[{"uid":"31b8-12"},{"uid":"31b8-114"}]},"31b8-78":{"id":"/src/inputs/Scriptel/ScriptelContext.ts","moduleParts":{"inputs/Scriptel/ScriptelContext.js":"31b8-79"},"imported":[{"uid":"31b8-110"}],"importedBy":[{"uid":"31b8-34"},{"uid":"31b8-40"}]},"31b8-80":{"id":"/src/date/LocalTimePicker/MaskedTimeInput.tsx","moduleParts":{"date/LocalTimePicker/MaskedTimeInput.js":"31b8-81"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-99"}],"importedBy":[{"uid":"31b8-16"}]},"31b8-82":{"id":"/src/date/LocalDatePicker/MaskedDateInput.tsx","moduleParts":{"date/LocalDatePicker/MaskedDateInput.js":"31b8-83"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-112"},{"uid":"31b8-99"}],"importedBy":[{"uid":"31b8-12"}]},"31b8-84":{"id":"/src/inputs/CreditCardInput/styles.css","moduleParts":{"inputs/CreditCardInput/styles.css.js":"31b8-85"},"imported":[{"uid":"31b8-90"}],"importedBy":[{"uid":"31b8-66"}]},"31b8-86":{"id":"/src/inputs/CreditCardInput/CreditCardNumberInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardNumberInput.js":"31b8-87"},"imported":[{"uid":"31b8-110"},{"uid":"31b8-130"},{"uid":"31b8-112"},{"uid":"31b8-131"},{"uid":"31b8-113"},{"uid":"31b8-10"}],"importedBy":[{"uid":"31b8-66"}]},"31b8-88":{"id":"/src/inputs/Scriptel/scriptel/index.ts","moduleParts":{"inputs/Scriptel/scriptel/index.js":"31b8-89"},"imported":[{"uid":"31b8-112"},{"uid":"31b8-129"},{"uid":"31b8-70"}],"importedBy":[{"uid":"31b8-34"}]},"31b8-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":"31b8-91"},"imported":[],"importedBy":[{"uid":"31b8-76"},{"uid":"31b8-84"}]},"31b8-92":{"id":"/src/date/LocalDatePicker/index.ts","moduleParts":{},"imported":[{"uid":"31b8-12"}],"importedBy":[{"uid":"31b8-0"},{"uid":"31b8-56"}]},"31b8-93":{"id":"/src/date/LocalMonthSelect/index.ts","moduleParts":{},"imported":[{"uid":"31b8-14"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-94":{"id":"/src/date/LocalTimePicker/index.ts","moduleParts":{},"imported":[{"uid":"31b8-16"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-95":{"id":"/src/date/MonthDayPicker/index.ts","moduleParts":{},"imported":[{"uid":"31b8-18"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-96":{"id":"/src/date/MonthYearPicker/index.ts","moduleParts":{},"imported":[{"uid":"31b8-20"}],"importedBy":[{"uid":"31b8-0"},{"uid":"31b8-66"}]},"31b8-97":{"id":"/src/date/YearSelect/index.ts","moduleParts":{},"imported":[{"uid":"31b8-22"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-98":{"id":"/src/form/TForm/index.ts","moduleParts":{},"imported":[{"uid":"31b8-26"},{"uid":"31b8-24"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-99":{"id":"/src/inputs/MaskedInput/index.ts","moduleParts":{},"imported":[{"uid":"31b8-30"},{"uid":"31b8-10"}],"importedBy":[{"uid":"31b8-0"},{"uid":"31b8-44"},{"uid":"31b8-82"},{"uid":"31b8-80"}]},"31b8-100":{"id":"/src/inputs/RadioGroup/index.ts","moduleParts":{},"imported":[{"uid":"31b8-32"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-101":{"id":"/src/inputs/Scriptel/index.ts","moduleParts":{},"imported":[{"uid":"31b8-34"},{"uid":"31b8-36"},{"uid":"31b8-70"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-102":{"id":"/src/inputs/ScriptelInput/index.ts","moduleParts":{},"imported":[{"uid":"31b8-40"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-103":{"id":"/src/inputs/PhoneInput/index.ts","moduleParts":{},"imported":[{"uid":"31b8-44"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-104":{"id":"/src/inputs/CreditCardInput/index.ts","moduleParts":{},"imported":[{"uid":"31b8-66"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-105":{"id":"/src/inputs/SinInput/index.ts","moduleParts":{},"imported":[{"uid":"31b8-42"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-106":{"id":"/src/inputs/TableInput/index.ts","moduleParts":{},"imported":[{"uid":"31b8-48"},{"uid":"31b8-46"},{"uid":"31b8-50"},{"uid":"31b8-52"},{"uid":"31b8-54"},{"uid":"31b8-56"},{"uid":"31b8-62"},{"uid":"31b8-58"},{"uid":"31b8-60"},{"uid":"31b8-64"},{"uid":"31b8-28"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-107":{"id":"/src/money/MoneyInput/index.ts","moduleParts":{},"imported":[{"uid":"31b8-38"}],"importedBy":[{"uid":"31b8-0"},{"uid":"31b8-50"}]},"31b8-108":{"id":"/src/money/MoneyCurrencyInput/index.ts","moduleParts":{},"imported":[{"uid":"31b8-68"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-109":{"id":"/src/step/index.ts","moduleParts":{},"imported":[{"uid":"31b8-4"},{"uid":"31b8-2"},{"uid":"31b8-6"},{"uid":"31b8-8"}],"importedBy":[{"uid":"31b8-0"}]},"31b8-110":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-12"},{"uid":"31b8-14"},{"uid":"31b8-16"},{"uid":"31b8-18"},{"uid":"31b8-20"},{"uid":"31b8-22"},{"uid":"31b8-26"},{"uid":"31b8-24"},{"uid":"31b8-30"},{"uid":"31b8-10"},{"uid":"31b8-32"},{"uid":"31b8-34"},{"uid":"31b8-36"},{"uid":"31b8-40"},{"uid":"31b8-44"},{"uid":"31b8-66"},{"uid":"31b8-42"},{"uid":"31b8-48"},{"uid":"31b8-46"},{"uid":"31b8-50"},{"uid":"31b8-52"},{"uid":"31b8-54"},{"uid":"31b8-56"},{"uid":"31b8-62"},{"uid":"31b8-58"},{"uid":"31b8-60"},{"uid":"31b8-64"},{"uid":"31b8-38"},{"uid":"31b8-68"},{"uid":"31b8-4"},{"uid":"31b8-2"},{"uid":"31b8-6"},{"uid":"31b8-8"},{"uid":"31b8-82"},{"uid":"31b8-80"},{"uid":"31b8-78"},{"uid":"31b8-86"},{"uid":"31b8-74"},{"uid":"31b8-72"}],"isExternal":true},"31b8-111":{"id":"@thx/date","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-12"},{"uid":"31b8-16"},{"uid":"31b8-18"},{"uid":"31b8-20"},{"uid":"31b8-66"},{"uid":"31b8-52"}],"isExternal":true},"31b8-112":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-12"},{"uid":"31b8-14"},{"uid":"31b8-16"},{"uid":"31b8-18"},{"uid":"31b8-20"},{"uid":"31b8-22"},{"uid":"31b8-26"},{"uid":"31b8-30"},{"uid":"31b8-10"},{"uid":"31b8-32"},{"uid":"31b8-34"},{"uid":"31b8-40"},{"uid":"31b8-44"},{"uid":"31b8-66"},{"uid":"31b8-42"},{"uid":"31b8-48"},{"uid":"31b8-50"},{"uid":"31b8-54"},{"uid":"31b8-56"},{"uid":"31b8-58"},{"uid":"31b8-64"},{"uid":"31b8-38"},{"uid":"31b8-68"},{"uid":"31b8-4"},{"uid":"31b8-6"},{"uid":"31b8-8"},{"uid":"31b8-82"},{"uid":"31b8-80"},{"uid":"31b8-88"},{"uid":"31b8-86"},{"uid":"31b8-74"}],"isExternal":true},"31b8-113":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-12"},{"uid":"31b8-14"},{"uid":"31b8-18"},{"uid":"31b8-20"},{"uid":"31b8-22"},{"uid":"31b8-24"},{"uid":"31b8-30"},{"uid":"31b8-32"},{"uid":"31b8-40"},{"uid":"31b8-66"},{"uid":"31b8-42"},{"uid":"31b8-48"},{"uid":"31b8-54"},{"uid":"31b8-58"},{"uid":"31b8-60"},{"uid":"31b8-38"},{"uid":"31b8-68"},{"uid":"31b8-8"},{"uid":"31b8-86"}],"isExternal":true},"31b8-114":{"id":"/src/date/DatePicker/index.ts","moduleParts":{},"imported":[{"uid":"31b8-128"},{"uid":"31b8-76"}],"importedBy":[{"uid":"31b8-12"},{"uid":"31b8-16"},{"uid":"31b8-18"},{"uid":"31b8-20"}]},"31b8-115":{"id":"@js-joda/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-14"},{"uid":"31b8-16"},{"uid":"31b8-20"}],"isExternal":true},"31b8-116":{"id":"formik","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-26"},{"uid":"31b8-24"},{"uid":"31b8-48"}],"isExternal":true},"31b8-117":{"id":"flat","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-24"}],"isExternal":true},"31b8-118":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-24"}],"isExternal":true},"31b8-119":{"id":"inputmask","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-10"},{"uid":"31b8-74"}],"isExternal":true},"31b8-120":{"id":"use-deep-compare-effect","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-10"}],"isExternal":true},"31b8-121":{"id":"react-credit-cards","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-66"}],"isExternal":true},"31b8-122":{"id":"react-credit-cards/es/styles-compiled.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-66"}],"isExternal":true},"31b8-123":{"id":"social-insurance-number","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-42"}],"isExternal":true},"31b8-124":{"id":"react-table","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-48"}],"isExternal":true},"31b8-125":{"id":"@thx/money","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-46"},{"uid":"31b8-62"},{"uid":"31b8-38"},{"uid":"31b8-68"},{"uid":"31b8-74"}],"isExternal":true},"31b8-126":{"id":"js-money","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-38"},{"uid":"31b8-68"},{"uid":"31b8-74"}],"isExternal":true},"31b8-127":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-8"}],"isExternal":true},"31b8-128":{"id":"react-datepicker","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-114"}],"isExternal":true},"31b8-129":{"id":"eventemitter3","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-88"}],"isExternal":true},"31b8-130":{"id":"credit-card-type","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-86"}],"isExternal":true},"31b8-131":{"id":"luhn","moduleParts":{},"imported":[],"importedBy":[{"uid":"31b8-86"}],"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":"8262-1"}]},{"name":"step/useStep.js","children":[{"name":"src/step/useStep.ts","uid":"8262-3"}]},{"name":"step/Step.js","children":[{"name":"src/step/Step.tsx","uid":"8262-5"}]},{"name":"step/StepProvider.js","children":[{"name":"src/step/StepProvider.tsx","uid":"8262-7"}]},{"name":"step/FormStep.js","children":[{"name":"src/step/FormStep.tsx","uid":"8262-9"}]},{"name":"inputs/MaskedInput/useMaskedInput.js","children":[{"name":"src/inputs/MaskedInput/useMaskedInput.ts","uid":"8262-11"}]},{"name":"date/LocalDatePicker/LocalDatePicker.js","children":[{"name":"src/date/LocalDatePicker/LocalDatePicker.tsx","uid":"8262-13"}]},{"name":"date/LocalTimePicker/LocalTimePicker.js","children":[{"name":"src/date/LocalTimePicker/LocalTimePicker.tsx","uid":"8262-15"}]},{"name":"date/LocalMonthSelect/LocalMonthSelect.js","children":[{"name":"src/date/LocalMonthSelect/LocalMonthSelect.tsx","uid":"8262-17"}]},{"name":"date/MonthDayPicker/MonthDayPicker.js","children":[{"name":"src/date/MonthDayPicker/MonthDayPicker.tsx","uid":"8262-19"}]},{"name":"date/MonthYearPicker/MonthYearPicker.js","children":[{"name":"src/date/MonthYearPicker/MonthYearPicker.tsx","uid":"8262-21"}]},{"name":"date/YearSelect/YearSelect.js","children":[{"name":"src/date/YearSelect/YearSelect.tsx","uid":"8262-23"}]},{"name":"inputs/RadioGroup/RadioGroup.js","children":[{"name":"src/inputs/RadioGroup/RadioGroup.tsx","uid":"8262-25"}]},{"name":"inputs/Scriptel/Scriptel.js","children":[{"name":"src/inputs/Scriptel/Scriptel.tsx","uid":"8262-27"}]},{"name":"inputs/Scriptel/withScriptel.js","children":[{"name":"src/inputs/Scriptel/withScriptel.tsx","uid":"8262-29"}]},{"name":"inputs/MaskedInput/MaskedInput.js","children":[{"name":"src/inputs/MaskedInput/MaskedInput.tsx","uid":"8262-31"}]},{"name":"form/TForm/TForm.js","children":[{"name":"src/form/TForm/TForm.tsx","uid":"8262-33"}]},{"name":"form/TForm/useTForm.js","children":[{"name":"src/form/TForm/useTForm.tsx","uid":"8262-35"}]},{"name":"inputs/PhoneInput/PhoneInput.js","children":[{"name":"src/inputs/PhoneInput/PhoneInput.tsx","uid":"8262-37"}]},{"name":"inputs/CreditCardInput/CreditCardInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardInput.tsx","uid":"8262-39"}]},{"name":"inputs/ScriptelInput/ScriptelInput.js","children":[{"name":"src/inputs/ScriptelInput/ScriptelInput.tsx","uid":"8262-41"}]},{"name":"inputs/SinInput/SinInput.js","children":[{"name":"src/inputs/SinInput/SinInput.tsx","uid":"8262-43"}]},{"name":"inputs/TableInput/addRowOnTab.js","children":[{"name":"src/inputs/TableInput/addRowOnTab.ts","uid":"8262-45"}]},{"name":"inputs/Scriptel/scriptel/enums.js","children":[{"name":"src/inputs/Scriptel/scriptel/enums.ts","uid":"8262-47"}]},{"name":"inputs/TableInput/MoneyCell.js","children":[{"name":"src/inputs/TableInput/MoneyCell.tsx","uid":"8262-49"}]},{"name":"inputs/TableInput/TableInput.js","children":[{"name":"src/inputs/TableInput/TableInput.tsx","uid":"8262-51"}]},{"name":"inputs/TableInput/MoneyEditCell.js","children":[{"name":"src/inputs/TableInput/MoneyEditCell.tsx","uid":"8262-53"}]},{"name":"inputs/TableInput/CheckboxEditCell.js","children":[{"name":"src/inputs/TableInput/CheckboxEditCell.tsx","uid":"8262-55"}]},{"name":"inputs/TableInput/LocalDateCell.js","children":[{"name":"src/inputs/TableInput/LocalDateCell.tsx","uid":"8262-57"}]},{"name":"inputs/TableInput/LocalDateEditCell.js","children":[{"name":"src/inputs/TableInput/LocalDateEditCell.tsx","uid":"8262-59"}]},{"name":"inputs/TableInput/MoneySumFooter.js","children":[{"name":"src/inputs/TableInput/MoneySumFooter.tsx","uid":"8262-61"}]},{"name":"inputs/TableInput/StringEditCell.js","children":[{"name":"src/inputs/TableInput/StringEditCell.tsx","uid":"8262-63"}]},{"name":"inputs/TableInput/DropdownCell.js","children":[{"name":"src/inputs/TableInput/DropdownCell.tsx","uid":"8262-65"}]},{"name":"inputs/TableInput/HoverCell.js","children":[{"name":"src/inputs/TableInput/HoverCell.tsx","uid":"8262-67"}]},{"name":"money/MoneyInput/MoneyInput.js","children":[{"name":"src/money/MoneyInput/MoneyInput.tsx","uid":"8262-69"}]},{"name":"money/MoneyCurrencyInput/MoneyCurrencyInput.js","children":[{"name":"src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","uid":"8262-71"}]},{"name":"step/stepContext.js","children":[{"name":"src/step/stepContext.ts","uid":"8262-73"}]},{"name":"inputs/CreditCardInput/styles.css.js","children":[{"name":"src/inputs/CreditCardInput/styles.css","uid":"8262-75"}]},{"name":"date/DatePicker/styles.css.js","children":[{"name":"src/date/DatePicker/styles.css","uid":"8262-77"}]},{"name":"inputs/Scriptel/ScriptelContext.js","children":[{"name":"src/inputs/Scriptel/ScriptelContext.ts","uid":"8262-79"}]},{"name":"date/LocalTimePicker/MaskedTimeInput.js","children":[{"name":"src/date/LocalTimePicker/MaskedTimeInput.tsx","uid":"8262-81"}]},{"name":"date/LocalDatePicker/MaskedDateInput.js","children":[{"name":"src/date/LocalDatePicker/MaskedDateInput.tsx","uid":"8262-83"}]},{"name":"inputs/CreditCardInput/CreditCardNumberInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardNumberInput.tsx","uid":"8262-85"}]},{"name":"money/useMoneyInput.js","children":[{"name":"src/money/useMoneyInput.ts","uid":"8262-87"}]},{"name":"inputs/Scriptel/scriptel/index.js","children":[{"name":"src/inputs/Scriptel/scriptel/index.ts","uid":"8262-89"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/mike/dev/thx/node_modules/style-inject/dist/style-inject.es.js","uid":"8262-91"}]}],"isRoot":true},"nodeParts":{"8262-1":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"8262-0"},"8262-3":{"renderedLength":113,"gzipLength":107,"brotliLength":82,"mainUid":"8262-2"},"8262-5":{"renderedLength":203,"gzipLength":155,"brotliLength":111,"mainUid":"8262-4"},"8262-7":{"renderedLength":3529,"gzipLength":1015,"brotliLength":861,"mainUid":"8262-6"},"8262-9":{"renderedLength":440,"gzipLength":270,"brotliLength":214,"mainUid":"8262-8"},"8262-11":{"renderedLength":1487,"gzipLength":501,"brotliLength":423,"mainUid":"8262-10"},"8262-13":{"renderedLength":3161,"gzipLength":952,"brotliLength":853,"mainUid":"8262-12"},"8262-15":{"renderedLength":1205,"gzipLength":488,"brotliLength":402,"mainUid":"8262-14"},"8262-17":{"renderedLength":1135,"gzipLength":505,"brotliLength":415,"mainUid":"8262-16"},"8262-19":{"renderedLength":1965,"gzipLength":655,"brotliLength":544,"mainUid":"8262-18"},"8262-21":{"renderedLength":1229,"gzipLength":496,"brotliLength":424,"mainUid":"8262-20"},"8262-23":{"renderedLength":1553,"gzipLength":579,"brotliLength":461,"mainUid":"8262-22"},"8262-25":{"renderedLength":561,"gzipLength":301,"brotliLength":259,"mainUid":"8262-24"},"8262-27":{"renderedLength":1275,"gzipLength":474,"brotliLength":406,"mainUid":"8262-26"},"8262-29":{"renderedLength":275,"gzipLength":163,"brotliLength":130,"mainUid":"8262-28"},"8262-31":{"renderedLength":585,"gzipLength":318,"brotliLength":280,"mainUid":"8262-30"},"8262-33":{"renderedLength":600,"gzipLength":308,"brotliLength":267,"mainUid":"8262-32"},"8262-35":{"renderedLength":2930,"gzipLength":953,"brotliLength":816,"mainUid":"8262-34"},"8262-37":{"renderedLength":381,"gzipLength":250,"brotliLength":218,"mainUid":"8262-36"},"8262-39":{"renderedLength":2324,"gzipLength":584,"brotliLength":495,"mainUid":"8262-38"},"8262-41":{"renderedLength":1963,"gzipLength":647,"brotliLength":547,"mainUid":"8262-40"},"8262-43":{"renderedLength":1144,"gzipLength":532,"brotliLength":462,"mainUid":"8262-42"},"8262-45":{"renderedLength":312,"gzipLength":199,"brotliLength":173,"mainUid":"8262-44"},"8262-47":{"renderedLength":937,"gzipLength":292,"brotliLength":231,"mainUid":"8262-46"},"8262-49":{"renderedLength":257,"gzipLength":185,"brotliLength":149,"mainUid":"8262-48"},"8262-51":{"renderedLength":2788,"gzipLength":830,"brotliLength":734,"mainUid":"8262-50"},"8262-53":{"renderedLength":708,"gzipLength":366,"brotliLength":313,"mainUid":"8262-52"},"8262-55":{"renderedLength":702,"gzipLength":369,"brotliLength":330,"mainUid":"8262-54"},"8262-57":{"renderedLength":264,"gzipLength":190,"brotliLength":154,"mainUid":"8262-56"},"8262-59":{"renderedLength":695,"gzipLength":349,"brotliLength":295,"mainUid":"8262-58"},"8262-61":{"renderedLength":414,"gzipLength":259,"brotliLength":219,"mainUid":"8262-60"},"8262-63":{"renderedLength":717,"gzipLength":372,"brotliLength":319,"mainUid":"8262-62"},"8262-65":{"renderedLength":493,"gzipLength":255,"brotliLength":211,"mainUid":"8262-64"},"8262-67":{"renderedLength":403,"gzipLength":244,"brotliLength":195,"mainUid":"8262-66"},"8262-69":{"renderedLength":778,"gzipLength":391,"brotliLength":329,"mainUid":"8262-68"},"8262-71":{"renderedLength":1575,"gzipLength":640,"brotliLength":536,"mainUid":"8262-70"},"8262-73":{"renderedLength":80,"gzipLength":92,"brotliLength":72,"mainUid":"8262-72"},"8262-75":{"renderedLength":78,"gzipLength":92,"brotliLength":79,"mainUid":"8262-74"},"8262-77":{"renderedLength":538,"gzipLength":261,"brotliLength":211,"mainUid":"8262-76"},"8262-79":{"renderedLength":46,"gzipLength":60,"brotliLength":45,"mainUid":"8262-78"},"8262-81":{"renderedLength":446,"gzipLength":290,"brotliLength":241,"mainUid":"8262-80"},"8262-83":{"renderedLength":426,"gzipLength":286,"brotliLength":244,"mainUid":"8262-82"},"8262-85":{"renderedLength":1713,"gzipLength":689,"brotliLength":585,"mainUid":"8262-84"},"8262-87":{"renderedLength":2155,"gzipLength":764,"brotliLength":660,"mainUid":"8262-86"},"8262-89":{"renderedLength":2530,"gzipLength":860,"brotliLength":739,"mainUid":"8262-88"},"8262-91":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"8262-90"}},"nodeMetas":{"8262-0":{"id":"/src/index.ts","moduleParts":{"index.js":"8262-1"},"imported":[{"uid":"8262-92"},{"uid":"8262-93"},{"uid":"8262-94"},{"uid":"8262-95"},{"uid":"8262-96"},{"uid":"8262-97"},{"uid":"8262-98"},{"uid":"8262-99"},{"uid":"8262-100"},{"uid":"8262-101"},{"uid":"8262-102"},{"uid":"8262-103"},{"uid":"8262-104"},{"uid":"8262-105"},{"uid":"8262-106"},{"uid":"8262-107"},{"uid":"8262-108"},{"uid":"8262-109"}],"importedBy":[],"isEntry":true},"8262-2":{"id":"/src/step/useStep.ts","moduleParts":{"step/useStep.js":"8262-3"},"imported":[{"uid":"8262-110"},{"uid":"8262-72"}],"importedBy":[{"uid":"8262-109"},{"uid":"8262-8"}]},"8262-4":{"id":"/src/step/Step.tsx","moduleParts":{"step/Step.js":"8262-5"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"}],"importedBy":[{"uid":"8262-109"},{"uid":"8262-6"}]},"8262-6":{"id":"/src/step/StepProvider.tsx","moduleParts":{"step/StepProvider.js":"8262-7"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-127"},{"uid":"8262-113"},{"uid":"8262-8"},{"uid":"8262-4"},{"uid":"8262-72"}],"importedBy":[{"uid":"8262-109"}]},"8262-8":{"id":"/src/step/FormStep.tsx","moduleParts":{"step/FormStep.js":"8262-9"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-2"}],"importedBy":[{"uid":"8262-109"},{"uid":"8262-6"}]},"8262-10":{"id":"/src/inputs/MaskedInput/useMaskedInput.ts","moduleParts":{"inputs/MaskedInput/useMaskedInput.js":"8262-11"},"imported":[{"uid":"8262-112"},{"uid":"8262-119"},{"uid":"8262-110"},{"uid":"8262-120"}],"importedBy":[{"uid":"8262-99"},{"uid":"8262-30"},{"uid":"8262-42"},{"uid":"8262-84"}]},"8262-12":{"id":"/src/date/LocalDatePicker/LocalDatePicker.tsx","moduleParts":{"date/LocalDatePicker/LocalDatePicker.js":"8262-13"},"imported":[{"uid":"8262-110"},{"uid":"8262-111"},{"uid":"8262-112"},{"uid":"8262-113"},{"uid":"8262-114"},{"uid":"8262-76"},{"uid":"8262-82"}],"importedBy":[{"uid":"8262-92"}]},"8262-14":{"id":"/src/date/LocalTimePicker/LocalTimePicker.tsx","moduleParts":{"date/LocalTimePicker/LocalTimePicker.js":"8262-15"},"imported":[{"uid":"8262-110"},{"uid":"8262-115"},{"uid":"8262-111"},{"uid":"8262-112"},{"uid":"8262-114"},{"uid":"8262-80"}],"importedBy":[{"uid":"8262-94"}]},"8262-16":{"id":"/src/date/LocalMonthSelect/LocalMonthSelect.tsx","moduleParts":{"date/LocalMonthSelect/LocalMonthSelect.js":"8262-17"},"imported":[{"uid":"8262-110"},{"uid":"8262-115"},{"uid":"8262-112"},{"uid":"8262-113"}],"importedBy":[{"uid":"8262-93"}]},"8262-18":{"id":"/src/date/MonthDayPicker/MonthDayPicker.tsx","moduleParts":{"date/MonthDayPicker/MonthDayPicker.js":"8262-19"},"imported":[{"uid":"8262-110"},{"uid":"8262-111"},{"uid":"8262-112"},{"uid":"8262-113"},{"uid":"8262-114"}],"importedBy":[{"uid":"8262-95"}]},"8262-20":{"id":"/src/date/MonthYearPicker/MonthYearPicker.tsx","moduleParts":{"date/MonthYearPicker/MonthYearPicker.js":"8262-21"},"imported":[{"uid":"8262-110"},{"uid":"8262-115"},{"uid":"8262-111"},{"uid":"8262-112"},{"uid":"8262-113"},{"uid":"8262-114"}],"importedBy":[{"uid":"8262-96"}]},"8262-22":{"id":"/src/date/YearSelect/YearSelect.tsx","moduleParts":{"date/YearSelect/YearSelect.js":"8262-23"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-113"}],"importedBy":[{"uid":"8262-97"}]},"8262-24":{"id":"/src/inputs/RadioGroup/RadioGroup.tsx","moduleParts":{"inputs/RadioGroup/RadioGroup.js":"8262-25"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-113"}],"importedBy":[{"uid":"8262-100"}]},"8262-26":{"id":"/src/inputs/Scriptel/Scriptel.tsx","moduleParts":{"inputs/Scriptel/Scriptel.js":"8262-27"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-78"},{"uid":"8262-88"}],"importedBy":[{"uid":"8262-101"},{"uid":"8262-28"}]},"8262-28":{"id":"/src/inputs/Scriptel/withScriptel.tsx","moduleParts":{"inputs/Scriptel/withScriptel.js":"8262-29"},"imported":[{"uid":"8262-110"},{"uid":"8262-26"}],"importedBy":[{"uid":"8262-101"}]},"8262-30":{"id":"/src/inputs/MaskedInput/MaskedInput.tsx","moduleParts":{"inputs/MaskedInput/MaskedInput.js":"8262-31"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-113"},{"uid":"8262-10"}],"importedBy":[{"uid":"8262-99"}]},"8262-32":{"id":"/src/form/TForm/TForm.tsx","moduleParts":{"form/TForm/TForm.js":"8262-33"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-116"},{"uid":"8262-34"}],"importedBy":[{"uid":"8262-98"}]},"8262-34":{"id":"/src/form/TForm/useTForm.tsx","moduleParts":{"form/TForm/useTForm.js":"8262-35"},"imported":[{"uid":"8262-110"},{"uid":"8262-117"},{"uid":"8262-116"},{"uid":"8262-118"},{"uid":"8262-113"}],"importedBy":[{"uid":"8262-98"},{"uid":"8262-32"}]},"8262-36":{"id":"/src/inputs/PhoneInput/PhoneInput.tsx","moduleParts":{"inputs/PhoneInput/PhoneInput.js":"8262-37"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-99"}],"importedBy":[{"uid":"8262-103"}]},"8262-38":{"id":"/src/inputs/CreditCardInput/CreditCardInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardInput.js":"8262-39"},"imported":[{"uid":"8262-110"},{"uid":"8262-111"},{"uid":"8262-112"},{"uid":"8262-121"},{"uid":"8262-122"},{"uid":"8262-113"},{"uid":"8262-96"},{"uid":"8262-84"},{"uid":"8262-74"}],"importedBy":[{"uid":"8262-104"}]},"8262-40":{"id":"/src/inputs/ScriptelInput/ScriptelInput.tsx","moduleParts":{"inputs/ScriptelInput/ScriptelInput.js":"8262-41"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-113"},{"uid":"8262-78"}],"importedBy":[{"uid":"8262-102"}]},"8262-42":{"id":"/src/inputs/SinInput/SinInput.tsx","moduleParts":{"inputs/SinInput/SinInput.js":"8262-43"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-113"},{"uid":"8262-123"},{"uid":"8262-10"}],"importedBy":[{"uid":"8262-105"}]},"8262-44":{"id":"/src/inputs/TableInput/addRowOnTab.ts","moduleParts":{"inputs/TableInput/addRowOnTab.js":"8262-45"},"imported":[],"importedBy":[{"uid":"8262-106"},{"uid":"8262-52"},{"uid":"8262-54"},{"uid":"8262-62"}]},"8262-46":{"id":"/src/inputs/Scriptel/scriptel/enums.ts","moduleParts":{"inputs/Scriptel/scriptel/enums.js":"8262-47"},"imported":[],"importedBy":[{"uid":"8262-101"},{"uid":"8262-88"}]},"8262-48":{"id":"/src/inputs/TableInput/MoneyCell.tsx","moduleParts":{"inputs/TableInput/MoneyCell.js":"8262-49"},"imported":[{"uid":"8262-110"},{"uid":"8262-125"}],"importedBy":[{"uid":"8262-106"}]},"8262-50":{"id":"/src/inputs/TableInput/TableInput.tsx","moduleParts":{"inputs/TableInput/TableInput.js":"8262-51"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-116"},{"uid":"8262-124"},{"uid":"8262-113"}],"importedBy":[{"uid":"8262-106"}]},"8262-52":{"id":"/src/inputs/TableInput/MoneyEditCell.tsx","moduleParts":{"inputs/TableInput/MoneyEditCell.js":"8262-53"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-107"},{"uid":"8262-44"}],"importedBy":[{"uid":"8262-106"}]},"8262-54":{"id":"/src/inputs/TableInput/CheckboxEditCell.tsx","moduleParts":{"inputs/TableInput/CheckboxEditCell.js":"8262-55"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-113"},{"uid":"8262-44"}],"importedBy":[{"uid":"8262-106"}]},"8262-56":{"id":"/src/inputs/TableInput/LocalDateCell.tsx","moduleParts":{"inputs/TableInput/LocalDateCell.js":"8262-57"},"imported":[{"uid":"8262-110"},{"uid":"8262-111"}],"importedBy":[{"uid":"8262-106"}]},"8262-58":{"id":"/src/inputs/TableInput/LocalDateEditCell.tsx","moduleParts":{"inputs/TableInput/LocalDateEditCell.js":"8262-59"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-92"}],"importedBy":[{"uid":"8262-106"}]},"8262-60":{"id":"/src/inputs/TableInput/MoneySumFooter.tsx","moduleParts":{"inputs/TableInput/MoneySumFooter.js":"8262-61"},"imported":[{"uid":"8262-110"},{"uid":"8262-125"}],"importedBy":[{"uid":"8262-106"}]},"8262-62":{"id":"/src/inputs/TableInput/StringEditCell.tsx","moduleParts":{"inputs/TableInput/StringEditCell.js":"8262-63"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-113"},{"uid":"8262-44"}],"importedBy":[{"uid":"8262-106"}]},"8262-64":{"id":"/src/inputs/TableInput/DropdownCell.tsx","moduleParts":{"inputs/TableInput/DropdownCell.js":"8262-65"},"imported":[{"uid":"8262-110"},{"uid":"8262-113"}],"importedBy":[{"uid":"8262-106"}]},"8262-66":{"id":"/src/inputs/TableInput/HoverCell.tsx","moduleParts":{"inputs/TableInput/HoverCell.js":"8262-67"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"}],"importedBy":[{"uid":"8262-106"}]},"8262-68":{"id":"/src/money/MoneyInput/MoneyInput.tsx","moduleParts":{"money/MoneyInput/MoneyInput.js":"8262-69"},"imported":[{"uid":"8262-110"},{"uid":"8262-125"},{"uid":"8262-112"},{"uid":"8262-126"},{"uid":"8262-113"},{"uid":"8262-86"}],"importedBy":[{"uid":"8262-107"}]},"8262-70":{"id":"/src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","moduleParts":{"money/MoneyCurrencyInput/MoneyCurrencyInput.js":"8262-71"},"imported":[{"uid":"8262-110"},{"uid":"8262-125"},{"uid":"8262-112"},{"uid":"8262-126"},{"uid":"8262-113"},{"uid":"8262-86"}],"importedBy":[{"uid":"8262-108"}]},"8262-72":{"id":"/src/step/stepContext.ts","moduleParts":{"step/stepContext.js":"8262-73"},"imported":[{"uid":"8262-110"}],"importedBy":[{"uid":"8262-2"},{"uid":"8262-6"}]},"8262-74":{"id":"/src/inputs/CreditCardInput/styles.css","moduleParts":{"inputs/CreditCardInput/styles.css.js":"8262-75"},"imported":[{"uid":"8262-90"}],"importedBy":[{"uid":"8262-38"}]},"8262-76":{"id":"/src/date/DatePicker/styles.css","moduleParts":{"date/DatePicker/styles.css.js":"8262-77"},"imported":[{"uid":"8262-90"}],"importedBy":[{"uid":"8262-12"},{"uid":"8262-114"}]},"8262-78":{"id":"/src/inputs/Scriptel/ScriptelContext.ts","moduleParts":{"inputs/Scriptel/ScriptelContext.js":"8262-79"},"imported":[{"uid":"8262-110"}],"importedBy":[{"uid":"8262-26"},{"uid":"8262-40"}]},"8262-80":{"id":"/src/date/LocalTimePicker/MaskedTimeInput.tsx","moduleParts":{"date/LocalTimePicker/MaskedTimeInput.js":"8262-81"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-99"}],"importedBy":[{"uid":"8262-14"}]},"8262-82":{"id":"/src/date/LocalDatePicker/MaskedDateInput.tsx","moduleParts":{"date/LocalDatePicker/MaskedDateInput.js":"8262-83"},"imported":[{"uid":"8262-110"},{"uid":"8262-112"},{"uid":"8262-99"}],"importedBy":[{"uid":"8262-12"}]},"8262-84":{"id":"/src/inputs/CreditCardInput/CreditCardNumberInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardNumberInput.js":"8262-85"},"imported":[{"uid":"8262-110"},{"uid":"8262-130"},{"uid":"8262-112"},{"uid":"8262-131"},{"uid":"8262-113"},{"uid":"8262-10"}],"importedBy":[{"uid":"8262-38"}]},"8262-86":{"id":"/src/money/useMoneyInput.ts","moduleParts":{"money/useMoneyInput.js":"8262-87"},"imported":[{"uid":"8262-125"},{"uid":"8262-112"},{"uid":"8262-119"},{"uid":"8262-126"},{"uid":"8262-110"}],"importedBy":[{"uid":"8262-68"},{"uid":"8262-70"}]},"8262-88":{"id":"/src/inputs/Scriptel/scriptel/index.ts","moduleParts":{"inputs/Scriptel/scriptel/index.js":"8262-89"},"imported":[{"uid":"8262-112"},{"uid":"8262-129"},{"uid":"8262-46"}],"importedBy":[{"uid":"8262-26"}]},"8262-90":{"id":"/home/mike/dev/thx/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"8262-91"},"imported":[],"importedBy":[{"uid":"8262-76"},{"uid":"8262-74"}]},"8262-92":{"id":"/src/date/LocalDatePicker/index.ts","moduleParts":{},"imported":[{"uid":"8262-12"}],"importedBy":[{"uid":"8262-0"},{"uid":"8262-58"}]},"8262-93":{"id":"/src/date/LocalMonthSelect/index.ts","moduleParts":{},"imported":[{"uid":"8262-16"}],"importedBy":[{"uid":"8262-0"}]},"8262-94":{"id":"/src/date/LocalTimePicker/index.ts","moduleParts":{},"imported":[{"uid":"8262-14"}],"importedBy":[{"uid":"8262-0"}]},"8262-95":{"id":"/src/date/MonthDayPicker/index.ts","moduleParts":{},"imported":[{"uid":"8262-18"}],"importedBy":[{"uid":"8262-0"}]},"8262-96":{"id":"/src/date/MonthYearPicker/index.ts","moduleParts":{},"imported":[{"uid":"8262-20"}],"importedBy":[{"uid":"8262-0"},{"uid":"8262-38"}]},"8262-97":{"id":"/src/date/YearSelect/index.ts","moduleParts":{},"imported":[{"uid":"8262-22"}],"importedBy":[{"uid":"8262-0"}]},"8262-98":{"id":"/src/form/TForm/index.ts","moduleParts":{},"imported":[{"uid":"8262-32"},{"uid":"8262-34"}],"importedBy":[{"uid":"8262-0"}]},"8262-99":{"id":"/src/inputs/MaskedInput/index.ts","moduleParts":{},"imported":[{"uid":"8262-30"},{"uid":"8262-10"}],"importedBy":[{"uid":"8262-0"},{"uid":"8262-36"},{"uid":"8262-82"},{"uid":"8262-80"}]},"8262-100":{"id":"/src/inputs/RadioGroup/index.ts","moduleParts":{},"imported":[{"uid":"8262-24"}],"importedBy":[{"uid":"8262-0"}]},"8262-101":{"id":"/src/inputs/Scriptel/index.ts","moduleParts":{},"imported":[{"uid":"8262-26"},{"uid":"8262-28"},{"uid":"8262-46"}],"importedBy":[{"uid":"8262-0"}]},"8262-102":{"id":"/src/inputs/ScriptelInput/index.ts","moduleParts":{},"imported":[{"uid":"8262-40"}],"importedBy":[{"uid":"8262-0"}]},"8262-103":{"id":"/src/inputs/PhoneInput/index.ts","moduleParts":{},"imported":[{"uid":"8262-36"}],"importedBy":[{"uid":"8262-0"}]},"8262-104":{"id":"/src/inputs/CreditCardInput/index.ts","moduleParts":{},"imported":[{"uid":"8262-38"}],"importedBy":[{"uid":"8262-0"}]},"8262-105":{"id":"/src/inputs/SinInput/index.ts","moduleParts":{},"imported":[{"uid":"8262-42"}],"importedBy":[{"uid":"8262-0"}]},"8262-106":{"id":"/src/inputs/TableInput/index.ts","moduleParts":{},"imported":[{"uid":"8262-50"},{"uid":"8262-48"},{"uid":"8262-52"},{"uid":"8262-56"},{"uid":"8262-54"},{"uid":"8262-58"},{"uid":"8262-60"},{"uid":"8262-62"},{"uid":"8262-64"},{"uid":"8262-66"},{"uid":"8262-44"}],"importedBy":[{"uid":"8262-0"}]},"8262-107":{"id":"/src/money/MoneyInput/index.ts","moduleParts":{},"imported":[{"uid":"8262-68"}],"importedBy":[{"uid":"8262-0"},{"uid":"8262-52"}]},"8262-108":{"id":"/src/money/MoneyCurrencyInput/index.ts","moduleParts":{},"imported":[{"uid":"8262-70"}],"importedBy":[{"uid":"8262-0"}]},"8262-109":{"id":"/src/step/index.ts","moduleParts":{},"imported":[{"uid":"8262-4"},{"uid":"8262-2"},{"uid":"8262-8"},{"uid":"8262-6"}],"importedBy":[{"uid":"8262-0"}]},"8262-110":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-12"},{"uid":"8262-16"},{"uid":"8262-14"},{"uid":"8262-18"},{"uid":"8262-20"},{"uid":"8262-22"},{"uid":"8262-32"},{"uid":"8262-34"},{"uid":"8262-30"},{"uid":"8262-10"},{"uid":"8262-24"},{"uid":"8262-26"},{"uid":"8262-28"},{"uid":"8262-40"},{"uid":"8262-36"},{"uid":"8262-38"},{"uid":"8262-42"},{"uid":"8262-50"},{"uid":"8262-48"},{"uid":"8262-52"},{"uid":"8262-56"},{"uid":"8262-54"},{"uid":"8262-58"},{"uid":"8262-60"},{"uid":"8262-62"},{"uid":"8262-64"},{"uid":"8262-66"},{"uid":"8262-68"},{"uid":"8262-70"},{"uid":"8262-4"},{"uid":"8262-2"},{"uid":"8262-8"},{"uid":"8262-6"},{"uid":"8262-82"},{"uid":"8262-80"},{"uid":"8262-78"},{"uid":"8262-84"},{"uid":"8262-86"},{"uid":"8262-72"}],"isExternal":true},"8262-111":{"id":"@thx/date","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-12"},{"uid":"8262-14"},{"uid":"8262-18"},{"uid":"8262-20"},{"uid":"8262-38"},{"uid":"8262-56"}],"isExternal":true},"8262-112":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-12"},{"uid":"8262-16"},{"uid":"8262-14"},{"uid":"8262-18"},{"uid":"8262-20"},{"uid":"8262-22"},{"uid":"8262-32"},{"uid":"8262-30"},{"uid":"8262-10"},{"uid":"8262-24"},{"uid":"8262-26"},{"uid":"8262-40"},{"uid":"8262-36"},{"uid":"8262-38"},{"uid":"8262-42"},{"uid":"8262-50"},{"uid":"8262-52"},{"uid":"8262-54"},{"uid":"8262-58"},{"uid":"8262-62"},{"uid":"8262-66"},{"uid":"8262-68"},{"uid":"8262-70"},{"uid":"8262-4"},{"uid":"8262-8"},{"uid":"8262-6"},{"uid":"8262-82"},{"uid":"8262-80"},{"uid":"8262-88"},{"uid":"8262-84"},{"uid":"8262-86"}],"isExternal":true},"8262-113":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-12"},{"uid":"8262-16"},{"uid":"8262-18"},{"uid":"8262-20"},{"uid":"8262-22"},{"uid":"8262-34"},{"uid":"8262-30"},{"uid":"8262-24"},{"uid":"8262-40"},{"uid":"8262-38"},{"uid":"8262-42"},{"uid":"8262-50"},{"uid":"8262-54"},{"uid":"8262-62"},{"uid":"8262-64"},{"uid":"8262-68"},{"uid":"8262-70"},{"uid":"8262-6"},{"uid":"8262-84"}],"isExternal":true},"8262-114":{"id":"/src/date/DatePicker/index.ts","moduleParts":{},"imported":[{"uid":"8262-128"},{"uid":"8262-76"}],"importedBy":[{"uid":"8262-12"},{"uid":"8262-14"},{"uid":"8262-18"},{"uid":"8262-20"}]},"8262-115":{"id":"@js-joda/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-16"},{"uid":"8262-14"},{"uid":"8262-20"}],"isExternal":true},"8262-116":{"id":"formik","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-32"},{"uid":"8262-34"},{"uid":"8262-50"}],"isExternal":true},"8262-117":{"id":"flat","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-34"}],"isExternal":true},"8262-118":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-34"}],"isExternal":true},"8262-119":{"id":"inputmask","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-10"},{"uid":"8262-86"}],"isExternal":true},"8262-120":{"id":"use-deep-compare-effect","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-10"}],"isExternal":true},"8262-121":{"id":"react-credit-cards","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-38"}],"isExternal":true},"8262-122":{"id":"react-credit-cards/es/styles-compiled.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-38"}],"isExternal":true},"8262-123":{"id":"social-insurance-number","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-42"}],"isExternal":true},"8262-124":{"id":"react-table","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-50"}],"isExternal":true},"8262-125":{"id":"@thx/money","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-48"},{"uid":"8262-60"},{"uid":"8262-68"},{"uid":"8262-70"},{"uid":"8262-86"}],"isExternal":true},"8262-126":{"id":"js-money","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-68"},{"uid":"8262-70"},{"uid":"8262-86"}],"isExternal":true},"8262-127":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-6"}],"isExternal":true},"8262-128":{"id":"react-datepicker","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-114"}],"isExternal":true},"8262-129":{"id":"eventemitter3","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-88"}],"isExternal":true},"8262-130":{"id":"credit-card-type","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-84"}],"isExternal":true},"8262-131":{"id":"luhn","moduleParts":{},"imported":[],"importedBy":[{"uid":"8262-84"}],"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/stats.txt ADDED
@@ -0,0 +1,100 @@
1
+ -----------------------------
2
+ Rollup File Analysis
3
+ -----------------------------
4
+ bundle size: 47.749 KB
5
+ original size: 69.159 KB
6
+ code reduction: 30.96 %
7
+ module count: 46
8
+
9
+ /src/step/StepProvider.tsx
10
+ ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 7.39 % (3.529 KB)
11
+ /src/date/LocalDatePicker/LocalDatePicker.tsx
12
+ ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.62 % (3.161 KB)
13
+ /src/form/TForm/useTForm.tsx
14
+ ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.14 % (2.93 KB)
15
+ /src/inputs/TableInput/TableInput.tsx
16
+ ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.84 % (2.788 KB)
17
+ /src/inputs/Scriptel/scriptel/index.ts
18
+ ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.3 % (2.53 KB)
19
+ /src/inputs/CreditCardInput/CreditCardInput.tsx
20
+ ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.87 % (2.324 KB)
21
+ /src/money/useMoneyInput.ts
22
+ ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.51 % (2.155 KB)
23
+ /src/date/MonthDayPicker/MonthDayPicker.tsx
24
+ ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.12 % (1.965 KB)
25
+ /src/inputs/ScriptelInput/ScriptelInput.tsx
26
+ ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.11 % (1.963 KB)
27
+ /src/inputs/CreditCardInput/CreditCardNumberInput.tsx
28
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.59 % (1.713 KB)
29
+ /src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx
30
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.3 % (1.575 KB)
31
+ /src/date/YearSelect/YearSelect.tsx
32
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.25 % (1.553 KB)
33
+ /src/inputs/MaskedInput/useMaskedInput.ts
34
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.11 % (1.487 KB)
35
+ /src/inputs/Scriptel/Scriptel.tsx
36
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.67 % (1.275 KB)
37
+ /src/date/MonthYearPicker/MonthYearPicker.tsx
38
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.57 % (1.229 KB)
39
+ /src/date/LocalTimePicker/LocalTimePicker.tsx
40
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.52 % (1.205 KB)
41
+ /src/inputs/SinInput/SinInput.tsx
42
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.4 % (1.144 KB)
43
+ /src/date/LocalMonthSelect/LocalMonthSelect.tsx
44
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.38 % (1.135 KB)
45
+ /src/inputs/Scriptel/scriptel/enums.ts
46
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.96 % (937 Bytes)
47
+ /src/money/MoneyInput/MoneyInput.tsx
48
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.63 % (778 Bytes)
49
+ /src/inputs/TableInput/StringEditCell.tsx
50
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.5 % (717 Bytes)
51
+ /src/inputs/TableInput/MoneyEditCell.tsx
52
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.48 % (708 Bytes)
53
+ /src/inputs/TableInput/CheckboxEditCell.tsx
54
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.47 % (702 Bytes)
55
+ /src/inputs/TableInput/LocalDateEditCell.tsx
56
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.46 % (695 Bytes)
57
+ /home/mike/dev/thx/node_modules/style-inject/dist/style-inject.es.js
58
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.33 % (636 Bytes)
59
+ /src/form/TForm/TForm.tsx
60
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.26 % (600 Bytes)
61
+ /src/inputs/MaskedInput/MaskedInput.tsx
62
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.23 % (585 Bytes)
63
+ /src/inputs/RadioGroup/RadioGroup.tsx
64
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.17 % (561 Bytes)
65
+ /src/date/DatePicker/styles.css
66
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.13 % (538 Bytes)
67
+ /src/inputs/TableInput/DropdownCell.tsx
68
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.03 % (493 Bytes)
69
+ /src/date/LocalTimePicker/MaskedTimeInput.tsx
70
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.93 % (446 Bytes)
71
+ /src/step/FormStep.tsx
72
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.92 % (440 Bytes)
73
+ /src/date/LocalDatePicker/MaskedDateInput.tsx
74
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.89 % (426 Bytes)
75
+ /src/inputs/TableInput/MoneySumFooter.tsx
76
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.87 % (414 Bytes)
77
+ /src/inputs/TableInput/HoverCell.tsx
78
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.84 % (403 Bytes)
79
+ /src/inputs/PhoneInput/PhoneInput.tsx
80
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.8 % (381 Bytes)
81
+ /src/inputs/TableInput/addRowOnTab.ts
82
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.65 % (312 Bytes)
83
+ /src/inputs/Scriptel/withScriptel.tsx
84
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.58 % (275 Bytes)
85
+ /src/inputs/TableInput/LocalDateCell.tsx
86
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.55 % (264 Bytes)
87
+ /src/inputs/TableInput/MoneyCell.tsx
88
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.54 % (257 Bytes)
89
+ /src/step/Step.tsx
90
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.43 % (203 Bytes)
91
+ /src/step/useStep.ts
92
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.24 % (113 Bytes)
93
+ /src/step/stepContext.ts
94
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.17 % (80 Bytes)
95
+ /src/inputs/CreditCardInput/styles.css
96
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.16 % (78 Bytes)
97
+ /src/inputs/Scriptel/ScriptelContext.ts
98
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.1 % (46 Bytes)
99
+ /src/index.ts
100
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0 % (0 Byte)
@@ -15,7 +15,7 @@ interface ILocalDatePicker {
15
15
  startSelected?: boolean;
16
16
  }
17
17
  declare type InputPropsOmitted = Omit<InputProps, 'onChange'>;
18
- declare type ReactDatePickerPropsOmitted = Omit<Omit<ReactDatePickerProps, 'value'>, 'onChange' | 'minDate' | 'maxDate'>;
18
+ declare type ReactDatePickerPropsOmitted = Omit<Omit<ReactDatePickerProps, 'value'>, 'onChange' | 'minDate' | 'maxDate' | 'icon'>;
19
19
  export declare type LocalDatePickerProps = ILocalDatePicker & InputPropsOmitted & ReactDatePickerPropsOmitted;
20
20
  export declare function LocalDatePicker(props: LocalDatePickerProps): JSX.Element;
21
21
  export {};
package/package.json CHANGED
@@ -1,68 +1,68 @@
1
1
  {
2
- "name": "@thx/controls",
3
- "version": "16.9.1-alpha.0+6c326b8",
4
- "description": "A collection of components designed with SemanticUI.",
5
- "bugs": {
6
- "url": "https://github.com/thr-consulting/thr-addons/issues"
7
- },
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/thr-consulting/thr-addons.git"
11
- },
12
- "license": "MIT",
13
- "author": "Mike Kornelson <darkadept@durbn.net>",
14
- "sideEffects": true,
15
- "type": "module",
16
- "main": "./dist/esm/index.js",
17
- "types": "./dist/types/index.d.ts",
18
- "files": [
19
- "dist"
20
- ],
21
- "scripts": {
22
- "build": "thx build.roll",
23
- "clean": "thx clean",
24
- "deps": "thx deps -p *.stories.tsx,*.story.tsx,*.cjs",
25
- "docs.storybook": "build-storybook",
26
- "lint": "thx lint",
27
- "lint.fix": "thx lint.fix",
28
- "sort": "thx sort",
29
- "storybook": "start-storybook -p 8000 --ci",
30
- "ts": "thx ts"
31
- },
32
- "dependencies": {
33
- "@js-joda/core": "^5.1.0",
34
- "@thx/date": "^16.8.2",
35
- "@thx/money": "^16.0.0",
36
- "@thx/yup-types": "^16.0.0",
37
- "@types/inputmask": "^5.0.6",
38
- "@types/react-datepicker": "^4.1.7",
39
- "credit-card-type": "^9.1.0",
40
- "debug": "^4.3.4",
41
- "eventemitter3": "^4.0.0",
42
- "flat": "^5.0.0",
43
- "formik": "^2.2.9",
44
- "inputmask": "^5.0.9-beta.45",
45
- "js-money": "^0.6.3",
46
- "lodash-es": "^4.17.15",
47
- "luhn": "^2.4.1",
48
- "react-credit-cards": "^0.8.3",
49
- "react-datepicker": "^4.25.0",
50
- "react-table": "^7.6.3",
51
- "social-insurance-number": "^0.2.2",
52
- "use-deep-compare-effect": "1.4.0"
53
- },
54
- "peerDependencies": {
55
- "react": "17.x",
56
- "react-dom": "17.x",
57
- "react-router": "5.x",
58
- "react-router-dom": "5.x",
59
- "semantic-ui-react": "2.x"
60
- },
61
- "engines": {
62
- "node": ">=16"
63
- },
64
- "publishConfig": {
65
- "access": "public"
66
- },
67
- "gitHead": "6c326b8ca225cb8ead315c1e13b2c7f457dca5ae"
2
+ "name": "@thx/controls",
3
+ "version": "17.0.0-alpha.2",
4
+ "description": "A collection of components designed with SemanticUI.",
5
+ "bugs": {
6
+ "url": "https://github.com/thr-consulting/thr-addons/issues"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/thr-consulting/thr-addons.git"
11
+ },
12
+ "license": "MIT",
13
+ "author": "Mike Kornelson <darkadept@durbn.net>",
14
+ "sideEffects": true,
15
+ "type": "module",
16
+ "main": "./dist/esm/index.js",
17
+ "types": "./dist/types/index.d.ts",
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "scripts": {
22
+ "build": "thx build.roll",
23
+ "clean": "thx clean",
24
+ "deps": "thx deps -p *.stories.tsx,*.story.tsx,*.cjs",
25
+ "docs.storybook": "storybook build",
26
+ "lint": "thx lint",
27
+ "lint.fix": "thx lint.fix",
28
+ "sort": "thx sort",
29
+ "storybook": "storybook dev -p 8000 --ci",
30
+ "ts": "thx ts"
31
+ },
32
+ "dependencies": {
33
+ "@js-joda/core": "^5.1.0",
34
+ "@thx/date": "^17.0.0-alpha.2",
35
+ "@thx/money": "^17.0.0-alpha.2",
36
+ "@thx/yup-types": "^17.0.0-alpha.2",
37
+ "@types/inputmask": "^5.0.6",
38
+ "@types/react-datepicker": "^6.0.1",
39
+ "credit-card-type": "^9.1.0",
40
+ "debug": "^4.3.4",
41
+ "eventemitter3": "^4.0.0",
42
+ "flat": "^5.0.0",
43
+ "formik": "^2.2.9",
44
+ "inputmask": "^5.0.9-beta.45",
45
+ "js-money": "^0.6.3",
46
+ "lodash-es": "^4.17.15",
47
+ "luhn": "^2.4.1",
48
+ "react-credit-cards": "^0.8.3",
49
+ "react-datepicker": "^6.2.0",
50
+ "react-table": "^7.6.3",
51
+ "social-insurance-number": "^0.2.2",
52
+ "use-deep-compare-effect": "1.4.0"
53
+ },
54
+ "peerDependencies": {
55
+ "react": "17.x",
56
+ "react-dom": "17.x",
57
+ "react-router": "5.x",
58
+ "react-router-dom": "5.x",
59
+ "semantic-ui-react": "2.x"
60
+ },
61
+ "engines": {
62
+ "node": ">=20"
63
+ },
64
+ "publishConfig": {
65
+ "access": "public"
66
+ },
67
+ "gitHead": "463b4e6546452f0d400c8754ac5687469d17b749"
68
68
  }