@thx/controls 19.6.6 → 19.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/date/LocalDatePicker/LocalDatePicker.js +6 -1
- package/dist/esm/date/LocalDatePicker/LocalDatePicker.js.map +1 -1
- package/dist/esm/inputs/MaskedInput/MaskedInput.js +4 -1
- package/dist/esm/inputs/MaskedInput/MaskedInput.js.map +1 -1
- package/dist/stats.html +1 -1
- package/dist/stats.txt +90 -0
- package/package.json +2 -2
|
@@ -102,7 +102,12 @@ function LocalDatePicker(props) {
|
|
|
102
102
|
};
|
|
103
103
|
const handleInputChange = (e) => {
|
|
104
104
|
const inputValue = e.target.value;
|
|
105
|
-
|
|
105
|
+
if (!inputValue) {
|
|
106
|
+
onChange?.(null);
|
|
107
|
+
setSelected(null);
|
|
108
|
+
return;
|
|
109
|
+
}
|
|
110
|
+
const date = toDate(inputValue);
|
|
106
111
|
date && handleDateChange(date);
|
|
107
112
|
};
|
|
108
113
|
const handleDatePickerBlur = (e) => {
|
|
@@ -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 {type ReactElement, useEffect, useRef, useState} from 'react';\nimport type {ReactDatePickerProps} from 'react-datepicker';\nimport {Icon, Input, type InputProps} from 'semantic-ui-react';\nimport {DatePicker} from '../DatePicker/index';\nimport '../DatePicker/styles.css';\nimport {MaskedDateInput, type 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): ReactElement {\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 =
|
|
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 {type ReactElement, useEffect, useRef, useState} from 'react';\nimport type {ReactDatePickerProps} from 'react-datepicker';\nimport {Icon, Input, type InputProps} from 'semantic-ui-react';\nimport {DatePicker} from '../DatePicker/index';\nimport '../DatePicker/styles.css';\nimport {MaskedDateInput, type 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): ReactElement {\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\n\t\tif (!inputValue) {\n\t\t\tonChange?.(null);\n\t\t\tsetSelected(null);\n\t\t\treturn;\n\t\t}\n\n\t\tconst date = toDate(inputValue);\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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"}
|
|
@@ -19,10 +19,13 @@ const MaskedInput = forwardRef((props, ref) => {
|
|
|
19
19
|
[inputRef]
|
|
20
20
|
);
|
|
21
21
|
return /* @__PURE__ */ React.createElement("input", {
|
|
22
|
+
autoComplete: "on",
|
|
22
23
|
disabled,
|
|
23
24
|
name,
|
|
24
25
|
ref: inputRef,
|
|
25
|
-
onBlur
|
|
26
|
+
onBlur,
|
|
27
|
+
defaultValue: value,
|
|
28
|
+
onInput: (e) => onChange?.(e.target.value)
|
|
26
29
|
});
|
|
27
30
|
});
|
|
28
31
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MaskedInput.js","sources":["../../../../src/inputs/MaskedInput/MaskedInput.tsx"],"sourcesContent":["import debug from 'debug';\nimport {forwardRef, useImperativeHandle} from 'react';\nimport type {InputProps} from 'semantic-ui-react';\nimport {useMaskedInput, type UseMaskedInputProps} from './useMaskedInput';\n\nconst d = debug('thx.controls.inputs.MaskedInput');\n\nexport interface MaskedInputRef {\n\tfocus: () => void;\n\tselect: () => void;\n}\n\nexport type MaskedInputProps = {\n\tname?: string;\n\tonBlur?: (event: any) => void;\n} & UseMaskedInputProps &\n\tOmit<InputProps, 'onChange'>;\n\nexport const MaskedInput = forwardRef<MaskedInputRef, MaskedInputProps>((props, ref) => {\n\tconst {name, onBlur, disabled, onChange, mask, value} = props;\n\n\tconst inputRef = useMaskedInput({mask, value, onChange});\n\n\tuseImperativeHandle(\n\t\tref,\n\t\t() => ({\n\t\t\tfocus: () => {\n\t\t\t\tinputRef.current?.focus();\n\t\t\t},\n\t\t\tselect: () => {\n\t\t\t\tinputRef.current?.select();\n\t\t\t},\n\t\t}),\n\t\t[inputRef],\n\t);\n\n\treturn <input
|
|
1
|
+
{"version":3,"file":"MaskedInput.js","sources":["../../../../src/inputs/MaskedInput/MaskedInput.tsx"],"sourcesContent":["import debug from 'debug';\nimport {forwardRef, useImperativeHandle} from 'react';\nimport type {InputProps} from 'semantic-ui-react';\nimport {useMaskedInput, type UseMaskedInputProps} from './useMaskedInput';\n\nconst d = debug('thx.controls.inputs.MaskedInput');\n\nexport interface MaskedInputRef {\n\tfocus: () => void;\n\tselect: () => void;\n}\n\nexport type MaskedInputProps = {\n\tname?: string;\n\tonBlur?: (event: any) => void;\n} & UseMaskedInputProps &\n\tOmit<InputProps, 'onChange'>;\n\nexport const MaskedInput = forwardRef<MaskedInputRef, MaskedInputProps>((props, ref) => {\n\tconst {name, onBlur, disabled, onChange, mask, value} = props;\n\n\tconst inputRef = useMaskedInput({mask, value, onChange});\n\n\tuseImperativeHandle(\n\t\tref,\n\t\t() => ({\n\t\t\tfocus: () => {\n\t\t\t\tinputRef.current?.focus();\n\t\t\t},\n\t\t\tselect: () => {\n\t\t\t\tinputRef.current?.select();\n\t\t\t},\n\t\t}),\n\t\t[inputRef],\n\t);\n\n\treturn (\n\t\t<input\n\t\t\tautoComplete=\"on\"\n\t\t\tdisabled={disabled}\n\t\t\tname={name}\n\t\t\tref={inputRef}\n\t\t\tonBlur={onBlur}\n\t\t\tdefaultValue={value}\n\t\t\tonInput={e => onChange?.((e.target as HTMLInputElement).value)}\n\t\t/>\n\t);\n});\n"],"names":[],"mappings":";;;;AAKU,MAAM,iCAAiC,EAAA;AAa1C,MAAM,WAAc,GAAA,UAAA,CAA6C,CAAC,KAAA,EAAO,GAAQ,KAAA;AACvF,EAAA,MAAM,EAAC,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAU,EAAA,IAAA,EAAM,OAAS,GAAA,KAAA,CAAA;AAExD,EAAA,MAAM,WAAW,cAAe,CAAA,EAAC,IAAM,EAAA,KAAA,EAAO,UAAS,CAAA,CAAA;AAEvD,EAAA,mBAAA;AAAA,IACC,GAAA;AAAA,IACA,OAAO;AAAA,MACN,OAAO,MAAM;AACZ,QAAA,QAAA,CAAS,SAAS,KAAM,EAAA,CAAA;AAAA,OACzB;AAAA,MACA,QAAQ,MAAM;AACb,QAAA,QAAA,CAAS,SAAS,MAAO,EAAA,CAAA;AAAA,OAC1B;AAAA,KACD,CAAA;AAAA,IACA,CAAC,QAAQ,CAAA;AAAA,GACV,CAAA;AAEA,EAAA,uBACE,KAAA,CAAA,aAAA,CAAA,OAAA,EAAA;AAAA,IACA,YAAa,EAAA,IAAA;AAAA,IACb,QAAA;AAAA,IACA,IAAA;AAAA,IACA,GAAK,EAAA,QAAA;AAAA,IACL,MAAA;AAAA,IACA,YAAc,EAAA,KAAA;AAAA,IACd,OAAS,EAAA,CAAA,CAAA,KAAK,QAAY,GAAA,CAAA,CAAE,OAA4B,KAAK,CAAA;AAAA,GAC9D,CAAA,CAAA;AAEF,CAAC;;;;"}
|
package/dist/stats.html
CHANGED
|
@@ -4929,7 +4929,7 @@ var drawChart = (function (exports) {
|
|
|
4929
4929
|
</script>
|
|
4930
4930
|
<script>
|
|
4931
4931
|
/*<!--*/
|
|
4932
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src/index.ts","uid":"85b0bbee-1"}]},{"name":"step/useStep.js","children":[{"name":"src/step/useStep.ts","uid":"85b0bbee-3"}]},{"name":"step/Step.js","children":[{"name":"src/step/Step.tsx","uid":"85b0bbee-5"}]},{"name":"step/FormStep.js","children":[{"name":"src/step/FormStep.tsx","uid":"85b0bbee-7"}]},{"name":"step/StepProvider.js","children":[{"name":"src/step/StepProvider.tsx","uid":"85b0bbee-9"}]},{"name":"date/LocalTimePicker/LocalTimePicker.js","children":[{"name":"src/date/LocalTimePicker/LocalTimePicker.tsx","uid":"85b0bbee-11"}]},{"name":"date/LocalMonthSelect/LocalMonthSelect.js","children":[{"name":"src/date/LocalMonthSelect/LocalMonthSelect.tsx","uid":"85b0bbee-13"}]},{"name":"date/MonthYearPicker/MonthYearPicker.js","children":[{"name":"src/date/MonthYearPicker/MonthYearPicker.tsx","uid":"85b0bbee-15"}]},{"name":"inputs/MaskedInput/useMaskedInput.js","children":[{"name":"src/inputs/MaskedInput/useMaskedInput.ts","uid":"85b0bbee-17"}]},{"name":"date/YearSelect/YearSelect.js","children":[{"name":"src/date/YearSelect/YearSelect.tsx","uid":"85b0bbee-19"}]},{"name":"date/MonthDayPicker/MonthDayPicker.js","children":[{"name":"src/date/MonthDayPicker/MonthDayPicker.tsx","uid":"85b0bbee-21"}]},{"name":"date/LocalDatePicker/LocalDatePicker.js","children":[{"name":"src/date/LocalDatePicker/LocalDatePicker.tsx","uid":"85b0bbee-23"}]},{"name":"form/TForm/TForm.js","children":[{"name":"src/form/TForm/TForm.tsx","uid":"85b0bbee-25"}]},{"name":"form/TForm/useTForm.js","children":[{"name":"src/form/TForm/useTForm.tsx","uid":"85b0bbee-27"}]},{"name":"money/MoneyInput/MoneyInput.js","children":[{"name":"src/money/MoneyInput/MoneyInput.tsx","uid":"85b0bbee-29"}]},{"name":"inputs/MaskedInput/MaskedInput.js","children":[{"name":"src/inputs/MaskedInput/MaskedInput.tsx","uid":"85b0bbee-31"}]},{"name":"inputs/RadioGroup/RadioGroup.js","children":[{"name":"src/inputs/RadioGroup/RadioGroup.tsx","uid":"85b0bbee-33"}]},{"name":"inputs/SinInput/SinInput.js","children":[{"name":"src/inputs/SinInput/SinInput.tsx","uid":"85b0bbee-35"}]},{"name":"inputs/PhoneInput/PhoneInput.js","children":[{"name":"src/inputs/PhoneInput/PhoneInput.tsx","uid":"85b0bbee-37"}]},{"name":"inputs/TableInput/addRowOnTab.js","children":[{"name":"src/inputs/TableInput/addRowOnTab.ts","uid":"85b0bbee-39"}]},{"name":"money/MoneyCurrencyInput/MoneyCurrencyInput.js","children":[{"name":"src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","uid":"85b0bbee-41"}]},{"name":"inputs/TableInput/TableInput.js","children":[{"name":"src/inputs/TableInput/TableInput.tsx","uid":"85b0bbee-43"}]},{"name":"inputs/TableInput/MoneyCell.js","children":[{"name":"src/inputs/TableInput/MoneyCell.tsx","uid":"85b0bbee-45"}]},{"name":"inputs/TableInput/MoneyEditCell.js","children":[{"name":"src/inputs/TableInput/MoneyEditCell.tsx","uid":"85b0bbee-47"}]},{"name":"inputs/TableInput/LocalDateCell.js","children":[{"name":"src/inputs/TableInput/LocalDateCell.tsx","uid":"85b0bbee-49"}]},{"name":"inputs/TableInput/CheckboxEditCell.js","children":[{"name":"src/inputs/TableInput/CheckboxEditCell.tsx","uid":"85b0bbee-51"}]},{"name":"inputs/TableInput/LocalDateEditCell.js","children":[{"name":"src/inputs/TableInput/LocalDateEditCell.tsx","uid":"85b0bbee-53"}]},{"name":"inputs/TableInput/LocalTimeEditCell.js","children":[{"name":"src/inputs/TableInput/LocalTimeEditCell.tsx","uid":"85b0bbee-55"}]},{"name":"inputs/TableInput/MoneySumFooter.js","children":[{"name":"src/inputs/TableInput/MoneySumFooter.tsx","uid":"85b0bbee-57"}]},{"name":"inputs/TableInput/NumberEditCell.js","children":[{"name":"src/inputs/TableInput/NumberEditCell.tsx","uid":"85b0bbee-59"}]},{"name":"inputs/TableInput/StringEditCell.js","children":[{"name":"src/inputs/TableInput/StringEditCell.tsx","uid":"85b0bbee-61"}]},{"name":"inputs/TableInput/DropdownCell.js","children":[{"name":"src/inputs/TableInput/DropdownCell.tsx","uid":"85b0bbee-63"}]},{"name":"inputs/TableInput/HoverCell.js","children":[{"name":"src/inputs/TableInput/HoverCell.tsx","uid":"85b0bbee-65"}]},{"name":"inputs/CreditCardInput/CreditCardInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardInput.tsx","uid":"85b0bbee-67"}]},{"name":"step/stepContext.js","children":[{"name":"src/step/stepContext.ts","uid":"85b0bbee-69"}]},{"name":"money/useMoneyInput.js","children":[{"name":"src/money/useMoneyInput.ts","uid":"85b0bbee-71"}]},{"name":"date/DatePicker/styles.css.js","children":[{"name":"src/date/DatePicker/styles.css","uid":"85b0bbee-73"}]},{"name":"inputs/CreditCardInput/styles.css.js","children":[{"name":"src/inputs/CreditCardInput/styles.css","uid":"85b0bbee-75"}]},{"name":"date/LocalDatePicker/MaskedDateInput.js","children":[{"name":"src/date/LocalDatePicker/MaskedDateInput.tsx","uid":"85b0bbee-77"}]},{"name":"inputs/CreditCardInput/CreditCardNumberInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardNumberInput.tsx","uid":"85b0bbee-79"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/artemis/Github/thr-addons/node_modules/style-inject/dist/style-inject.es.js","uid":"85b0bbee-81"}]}],"isRoot":true},"nodeParts":{"85b0bbee-1":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"85b0bbee-0"},"85b0bbee-3":{"renderedLength":113,"gzipLength":107,"brotliLength":82,"metaUid":"85b0bbee-2"},"85b0bbee-5":{"renderedLength":203,"gzipLength":155,"brotliLength":111,"metaUid":"85b0bbee-4"},"85b0bbee-7":{"renderedLength":440,"gzipLength":270,"brotliLength":214,"metaUid":"85b0bbee-6"},"85b0bbee-9":{"renderedLength":3529,"gzipLength":1015,"brotliLength":861,"metaUid":"85b0bbee-8"},"85b0bbee-11":{"renderedLength":4757,"gzipLength":1403,"brotliLength":1260,"metaUid":"85b0bbee-10"},"85b0bbee-13":{"renderedLength":1135,"gzipLength":505,"brotliLength":415,"metaUid":"85b0bbee-12"},"85b0bbee-15":{"renderedLength":1229,"gzipLength":496,"brotliLength":424,"metaUid":"85b0bbee-14"},"85b0bbee-17":{"renderedLength":1487,"gzipLength":501,"brotliLength":423,"metaUid":"85b0bbee-16"},"85b0bbee-19":{"renderedLength":1553,"gzipLength":579,"brotliLength":461,"metaUid":"85b0bbee-18"},"85b0bbee-21":{"renderedLength":1965,"gzipLength":655,"brotliLength":544,"metaUid":"85b0bbee-20"},"85b0bbee-23":{"renderedLength":3161,"gzipLength":952,"brotliLength":853,"metaUid":"85b0bbee-22"},"85b0bbee-25":{"renderedLength":600,"gzipLength":308,"brotliLength":267,"metaUid":"85b0bbee-24"},"85b0bbee-27":{"renderedLength":2950,"gzipLength":958,"brotliLength":830,"metaUid":"85b0bbee-26"},"85b0bbee-29":{"renderedLength":802,"gzipLength":399,"brotliLength":317,"metaUid":"85b0bbee-28"},"85b0bbee-31":{"renderedLength":543,"gzipLength":305,"brotliLength":252,"metaUid":"85b0bbee-30"},"85b0bbee-33":{"renderedLength":692,"gzipLength":342,"brotliLength":289,"metaUid":"85b0bbee-32"},"85b0bbee-35":{"renderedLength":1166,"gzipLength":540,"brotliLength":469,"metaUid":"85b0bbee-34"},"85b0bbee-37":{"renderedLength":908,"gzipLength":382,"brotliLength":319,"metaUid":"85b0bbee-36"},"85b0bbee-39":{"renderedLength":312,"gzipLength":199,"brotliLength":173,"metaUid":"85b0bbee-38"},"85b0bbee-41":{"renderedLength":1621,"gzipLength":646,"brotliLength":553,"metaUid":"85b0bbee-40"},"85b0bbee-43":{"renderedLength":2891,"gzipLength":854,"brotliLength":780,"metaUid":"85b0bbee-42"},"85b0bbee-45":{"renderedLength":257,"gzipLength":185,"brotliLength":149,"metaUid":"85b0bbee-44"},"85b0bbee-47":{"renderedLength":820,"gzipLength":397,"brotliLength":349,"metaUid":"85b0bbee-46"},"85b0bbee-49":{"renderedLength":285,"gzipLength":198,"brotliLength":170,"metaUid":"85b0bbee-48"},"85b0bbee-51":{"renderedLength":702,"gzipLength":369,"brotliLength":330,"metaUid":"85b0bbee-50"},"85b0bbee-53":{"renderedLength":695,"gzipLength":349,"brotliLength":295,"metaUid":"85b0bbee-52"},"85b0bbee-55":{"renderedLength":622,"gzipLength":322,"brotliLength":269,"metaUid":"85b0bbee-54"},"85b0bbee-57":{"renderedLength":414,"gzipLength":259,"brotliLength":219,"metaUid":"85b0bbee-56"},"85b0bbee-59":{"renderedLength":782,"gzipLength":409,"brotliLength":345,"metaUid":"85b0bbee-58"},"85b0bbee-61":{"renderedLength":717,"gzipLength":372,"brotliLength":319,"metaUid":"85b0bbee-60"},"85b0bbee-63":{"renderedLength":483,"gzipLength":251,"brotliLength":208,"metaUid":"85b0bbee-62"},"85b0bbee-65":{"renderedLength":403,"gzipLength":244,"brotliLength":195,"metaUid":"85b0bbee-64"},"85b0bbee-67":{"renderedLength":2324,"gzipLength":584,"brotliLength":495,"metaUid":"85b0bbee-66"},"85b0bbee-69":{"renderedLength":80,"gzipLength":92,"brotliLength":72,"metaUid":"85b0bbee-68"},"85b0bbee-71":{"renderedLength":2187,"gzipLength":771,"brotliLength":658,"metaUid":"85b0bbee-70"},"85b0bbee-73":{"renderedLength":538,"gzipLength":261,"brotliLength":211,"metaUid":"85b0bbee-72"},"85b0bbee-75":{"renderedLength":78,"gzipLength":92,"brotliLength":79,"metaUid":"85b0bbee-74"},"85b0bbee-77":{"renderedLength":426,"gzipLength":286,"brotliLength":244,"metaUid":"85b0bbee-76"},"85b0bbee-79":{"renderedLength":1733,"gzipLength":697,"brotliLength":623,"metaUid":"85b0bbee-78"},"85b0bbee-81":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"metaUid":"85b0bbee-80"}},"nodeMetas":{"85b0bbee-0":{"id":"/src/index.ts","moduleParts":{"index.js":"85b0bbee-1"},"imported":[{"uid":"85b0bbee-82"},{"uid":"85b0bbee-83"},{"uid":"85b0bbee-84"},{"uid":"85b0bbee-85"},{"uid":"85b0bbee-86"},{"uid":"85b0bbee-87"},{"uid":"85b0bbee-88"},{"uid":"85b0bbee-89"},{"uid":"85b0bbee-90"},{"uid":"85b0bbee-91"},{"uid":"85b0bbee-92"},{"uid":"85b0bbee-93"},{"uid":"85b0bbee-94"},{"uid":"85b0bbee-95"},{"uid":"85b0bbee-96"},{"uid":"85b0bbee-97"}],"importedBy":[],"isEntry":true},"85b0bbee-2":{"id":"/src/step/useStep.ts","moduleParts":{"step/useStep.js":"85b0bbee-3"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-68"}],"importedBy":[{"uid":"85b0bbee-97"},{"uid":"85b0bbee-6"}]},"85b0bbee-4":{"id":"/src/step/Step.tsx","moduleParts":{"step/Step.js":"85b0bbee-5"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"}],"importedBy":[{"uid":"85b0bbee-97"},{"uid":"85b0bbee-8"}]},"85b0bbee-6":{"id":"/src/step/FormStep.tsx","moduleParts":{"step/FormStep.js":"85b0bbee-7"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-2"}],"importedBy":[{"uid":"85b0bbee-97"},{"uid":"85b0bbee-8"}]},"85b0bbee-8":{"id":"/src/step/StepProvider.tsx","moduleParts":{"step/StepProvider.js":"85b0bbee-9"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-116"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-6"},{"uid":"85b0bbee-4"},{"uid":"85b0bbee-68"}],"importedBy":[{"uid":"85b0bbee-97"}]},"85b0bbee-10":{"id":"/src/date/LocalTimePicker/LocalTimePicker.tsx","moduleParts":{"date/LocalTimePicker/LocalTimePicker.js":"85b0bbee-11"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-103"},{"uid":"85b0bbee-99"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-104"}],"importedBy":[{"uid":"85b0bbee-84"}]},"85b0bbee-12":{"id":"/src/date/LocalMonthSelect/LocalMonthSelect.tsx","moduleParts":{"date/LocalMonthSelect/LocalMonthSelect.js":"85b0bbee-13"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-103"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-101"}],"importedBy":[{"uid":"85b0bbee-83"}]},"85b0bbee-14":{"id":"/src/date/MonthYearPicker/MonthYearPicker.tsx","moduleParts":{"date/MonthYearPicker/MonthYearPicker.js":"85b0bbee-15"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-103"},{"uid":"85b0bbee-99"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-102"}],"importedBy":[{"uid":"85b0bbee-86"}]},"85b0bbee-16":{"id":"/src/inputs/MaskedInput/useMaskedInput.ts","moduleParts":{"inputs/MaskedInput/useMaskedInput.js":"85b0bbee-17"},"imported":[{"uid":"85b0bbee-100"},{"uid":"85b0bbee-108"},{"uid":"85b0bbee-98"},{"uid":"85b0bbee-109"}],"importedBy":[{"uid":"85b0bbee-89"},{"uid":"85b0bbee-30"},{"uid":"85b0bbee-34"},{"uid":"85b0bbee-78"}]},"85b0bbee-18":{"id":"/src/date/YearSelect/YearSelect.tsx","moduleParts":{"date/YearSelect/YearSelect.js":"85b0bbee-19"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-101"}],"importedBy":[{"uid":"85b0bbee-87"}]},"85b0bbee-20":{"id":"/src/date/MonthDayPicker/MonthDayPicker.tsx","moduleParts":{"date/MonthDayPicker/MonthDayPicker.js":"85b0bbee-21"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-99"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-102"}],"importedBy":[{"uid":"85b0bbee-85"}]},"85b0bbee-22":{"id":"/src/date/LocalDatePicker/LocalDatePicker.tsx","moduleParts":{"date/LocalDatePicker/LocalDatePicker.js":"85b0bbee-23"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-99"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-102"},{"uid":"85b0bbee-72"},{"uid":"85b0bbee-76"}],"importedBy":[{"uid":"85b0bbee-82"}]},"85b0bbee-24":{"id":"/src/form/TForm/TForm.tsx","moduleParts":{"form/TForm/TForm.js":"85b0bbee-25"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-105"},{"uid":"85b0bbee-26"}],"importedBy":[{"uid":"85b0bbee-88"}]},"85b0bbee-26":{"id":"/src/form/TForm/useTForm.tsx","moduleParts":{"form/TForm/useTForm.js":"85b0bbee-27"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-106"},{"uid":"85b0bbee-105"},{"uid":"85b0bbee-107"},{"uid":"85b0bbee-101"}],"importedBy":[{"uid":"85b0bbee-88"},{"uid":"85b0bbee-24"}]},"85b0bbee-28":{"id":"/src/money/MoneyInput/MoneyInput.tsx","moduleParts":{"money/MoneyInput/MoneyInput.js":"85b0bbee-29"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-114"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-115"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-70"}],"importedBy":[{"uid":"85b0bbee-95"}]},"85b0bbee-30":{"id":"/src/inputs/MaskedInput/MaskedInput.tsx","moduleParts":{"inputs/MaskedInput/MaskedInput.js":"85b0bbee-31"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-16"}],"importedBy":[{"uid":"85b0bbee-89"}]},"85b0bbee-32":{"id":"/src/inputs/RadioGroup/RadioGroup.tsx","moduleParts":{"inputs/RadioGroup/RadioGroup.js":"85b0bbee-33"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-101"}],"importedBy":[{"uid":"85b0bbee-90"}]},"85b0bbee-34":{"id":"/src/inputs/SinInput/SinInput.tsx","moduleParts":{"inputs/SinInput/SinInput.js":"85b0bbee-35"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-112"},{"uid":"85b0bbee-16"}],"importedBy":[{"uid":"85b0bbee-93"}]},"85b0bbee-36":{"id":"/src/inputs/PhoneInput/PhoneInput.tsx","moduleParts":{"inputs/PhoneInput/PhoneInput.js":"85b0bbee-37"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-89"}],"importedBy":[{"uid":"85b0bbee-91"}]},"85b0bbee-38":{"id":"/src/inputs/TableInput/addRowOnTab.ts","moduleParts":{"inputs/TableInput/addRowOnTab.js":"85b0bbee-39"},"imported":[],"importedBy":[{"uid":"85b0bbee-94"},{"uid":"85b0bbee-46"},{"uid":"85b0bbee-50"},{"uid":"85b0bbee-58"},{"uid":"85b0bbee-60"}]},"85b0bbee-40":{"id":"/src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","moduleParts":{"money/MoneyCurrencyInput/MoneyCurrencyInput.js":"85b0bbee-41"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-114"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-115"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-70"}],"importedBy":[{"uid":"85b0bbee-96"}]},"85b0bbee-42":{"id":"/src/inputs/TableInput/TableInput.tsx","moduleParts":{"inputs/TableInput/TableInput.js":"85b0bbee-43"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-105"},{"uid":"85b0bbee-113"},{"uid":"85b0bbee-101"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-44":{"id":"/src/inputs/TableInput/MoneyCell.tsx","moduleParts":{"inputs/TableInput/MoneyCell.js":"85b0bbee-45"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-114"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-46":{"id":"/src/inputs/TableInput/MoneyEditCell.tsx","moduleParts":{"inputs/TableInput/MoneyEditCell.js":"85b0bbee-47"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-95"},{"uid":"85b0bbee-38"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-48":{"id":"/src/inputs/TableInput/LocalDateCell.tsx","moduleParts":{"inputs/TableInput/LocalDateCell.js":"85b0bbee-49"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-99"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-50":{"id":"/src/inputs/TableInput/CheckboxEditCell.tsx","moduleParts":{"inputs/TableInput/CheckboxEditCell.js":"85b0bbee-51"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-38"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-52":{"id":"/src/inputs/TableInput/LocalDateEditCell.tsx","moduleParts":{"inputs/TableInput/LocalDateEditCell.js":"85b0bbee-53"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-82"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-54":{"id":"/src/inputs/TableInput/LocalTimeEditCell.tsx","moduleParts":{"inputs/TableInput/LocalTimeEditCell.js":"85b0bbee-55"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-84"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-56":{"id":"/src/inputs/TableInput/MoneySumFooter.tsx","moduleParts":{"inputs/TableInput/MoneySumFooter.js":"85b0bbee-57"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-114"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-58":{"id":"/src/inputs/TableInput/NumberEditCell.tsx","moduleParts":{"inputs/TableInput/NumberEditCell.js":"85b0bbee-59"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-38"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-60":{"id":"/src/inputs/TableInput/StringEditCell.tsx","moduleParts":{"inputs/TableInput/StringEditCell.js":"85b0bbee-61"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-38"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-62":{"id":"/src/inputs/TableInput/DropdownCell.tsx","moduleParts":{"inputs/TableInput/DropdownCell.js":"85b0bbee-63"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-101"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-64":{"id":"/src/inputs/TableInput/HoverCell.tsx","moduleParts":{"inputs/TableInput/HoverCell.js":"85b0bbee-65"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"}],"importedBy":[{"uid":"85b0bbee-94"}]},"85b0bbee-66":{"id":"/src/inputs/CreditCardInput/CreditCardInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardInput.js":"85b0bbee-67"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-99"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-110"},{"uid":"85b0bbee-111"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-86"},{"uid":"85b0bbee-78"},{"uid":"85b0bbee-74"}],"importedBy":[{"uid":"85b0bbee-92"}]},"85b0bbee-68":{"id":"/src/step/stepContext.ts","moduleParts":{"step/stepContext.js":"85b0bbee-69"},"imported":[{"uid":"85b0bbee-98"}],"importedBy":[{"uid":"85b0bbee-2"},{"uid":"85b0bbee-8"}]},"85b0bbee-70":{"id":"/src/money/useMoneyInput.ts","moduleParts":{"money/useMoneyInput.js":"85b0bbee-71"},"imported":[{"uid":"85b0bbee-114"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-108"},{"uid":"85b0bbee-115"},{"uid":"85b0bbee-98"}],"importedBy":[{"uid":"85b0bbee-28"},{"uid":"85b0bbee-40"}]},"85b0bbee-72":{"id":"/src/date/DatePicker/styles.css","moduleParts":{"date/DatePicker/styles.css.js":"85b0bbee-73"},"imported":[{"uid":"85b0bbee-80"}],"importedBy":[{"uid":"85b0bbee-22"},{"uid":"85b0bbee-102"}]},"85b0bbee-74":{"id":"/src/inputs/CreditCardInput/styles.css","moduleParts":{"inputs/CreditCardInput/styles.css.js":"85b0bbee-75"},"imported":[{"uid":"85b0bbee-80"}],"importedBy":[{"uid":"85b0bbee-66"}]},"85b0bbee-76":{"id":"/src/date/LocalDatePicker/MaskedDateInput.tsx","moduleParts":{"date/LocalDatePicker/MaskedDateInput.js":"85b0bbee-77"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-89"}],"importedBy":[{"uid":"85b0bbee-22"}]},"85b0bbee-78":{"id":"/src/inputs/CreditCardInput/CreditCardNumberInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardNumberInput.js":"85b0bbee-79"},"imported":[{"uid":"85b0bbee-98"},{"uid":"85b0bbee-117"},{"uid":"85b0bbee-100"},{"uid":"85b0bbee-118"},{"uid":"85b0bbee-101"},{"uid":"85b0bbee-16"}],"importedBy":[{"uid":"85b0bbee-66"}]},"85b0bbee-80":{"id":"/home/artemis/Github/thr-addons/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"85b0bbee-81"},"imported":[],"importedBy":[{"uid":"85b0bbee-72"},{"uid":"85b0bbee-74"}]},"85b0bbee-82":{"id":"/src/date/LocalDatePicker/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-22"}],"importedBy":[{"uid":"85b0bbee-0"},{"uid":"85b0bbee-52"}]},"85b0bbee-83":{"id":"/src/date/LocalMonthSelect/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-12"}],"importedBy":[{"uid":"85b0bbee-0"}]},"85b0bbee-84":{"id":"/src/date/LocalTimePicker/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-10"}],"importedBy":[{"uid":"85b0bbee-0"},{"uid":"85b0bbee-54"}]},"85b0bbee-85":{"id":"/src/date/MonthDayPicker/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-20"}],"importedBy":[{"uid":"85b0bbee-0"}]},"85b0bbee-86":{"id":"/src/date/MonthYearPicker/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-14"}],"importedBy":[{"uid":"85b0bbee-0"},{"uid":"85b0bbee-66"}]},"85b0bbee-87":{"id":"/src/date/YearSelect/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-18"}],"importedBy":[{"uid":"85b0bbee-0"}]},"85b0bbee-88":{"id":"/src/form/TForm/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-24"},{"uid":"85b0bbee-26"}],"importedBy":[{"uid":"85b0bbee-0"}]},"85b0bbee-89":{"id":"/src/inputs/MaskedInput/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-30"},{"uid":"85b0bbee-16"}],"importedBy":[{"uid":"85b0bbee-0"},{"uid":"85b0bbee-36"},{"uid":"85b0bbee-76"}]},"85b0bbee-90":{"id":"/src/inputs/RadioGroup/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-32"}],"importedBy":[{"uid":"85b0bbee-0"}]},"85b0bbee-91":{"id":"/src/inputs/PhoneInput/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-36"}],"importedBy":[{"uid":"85b0bbee-0"}]},"85b0bbee-92":{"id":"/src/inputs/CreditCardInput/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-66"}],"importedBy":[{"uid":"85b0bbee-0"}]},"85b0bbee-93":{"id":"/src/inputs/SinInput/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-34"}],"importedBy":[{"uid":"85b0bbee-0"}]},"85b0bbee-94":{"id":"/src/inputs/TableInput/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-42"},{"uid":"85b0bbee-44"},{"uid":"85b0bbee-46"},{"uid":"85b0bbee-48"},{"uid":"85b0bbee-50"},{"uid":"85b0bbee-52"},{"uid":"85b0bbee-54"},{"uid":"85b0bbee-56"},{"uid":"85b0bbee-58"},{"uid":"85b0bbee-60"},{"uid":"85b0bbee-62"},{"uid":"85b0bbee-64"},{"uid":"85b0bbee-38"}],"importedBy":[{"uid":"85b0bbee-0"}]},"85b0bbee-95":{"id":"/src/money/MoneyInput/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-28"}],"importedBy":[{"uid":"85b0bbee-0"},{"uid":"85b0bbee-46"}]},"85b0bbee-96":{"id":"/src/money/MoneyCurrencyInput/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-40"}],"importedBy":[{"uid":"85b0bbee-0"}]},"85b0bbee-97":{"id":"/src/step/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-4"},{"uid":"85b0bbee-2"},{"uid":"85b0bbee-6"},{"uid":"85b0bbee-8"}],"importedBy":[{"uid":"85b0bbee-0"}]},"85b0bbee-98":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-22"},{"uid":"85b0bbee-12"},{"uid":"85b0bbee-10"},{"uid":"85b0bbee-20"},{"uid":"85b0bbee-14"},{"uid":"85b0bbee-18"},{"uid":"85b0bbee-24"},{"uid":"85b0bbee-26"},{"uid":"85b0bbee-30"},{"uid":"85b0bbee-16"},{"uid":"85b0bbee-32"},{"uid":"85b0bbee-36"},{"uid":"85b0bbee-66"},{"uid":"85b0bbee-34"},{"uid":"85b0bbee-42"},{"uid":"85b0bbee-44"},{"uid":"85b0bbee-46"},{"uid":"85b0bbee-48"},{"uid":"85b0bbee-50"},{"uid":"85b0bbee-52"},{"uid":"85b0bbee-54"},{"uid":"85b0bbee-56"},{"uid":"85b0bbee-58"},{"uid":"85b0bbee-60"},{"uid":"85b0bbee-62"},{"uid":"85b0bbee-64"},{"uid":"85b0bbee-28"},{"uid":"85b0bbee-40"},{"uid":"85b0bbee-4"},{"uid":"85b0bbee-2"},{"uid":"85b0bbee-6"},{"uid":"85b0bbee-8"},{"uid":"85b0bbee-76"},{"uid":"85b0bbee-78"},{"uid":"85b0bbee-70"},{"uid":"85b0bbee-68"}],"isExternal":true},"85b0bbee-99":{"id":"@thx/date","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-22"},{"uid":"85b0bbee-10"},{"uid":"85b0bbee-20"},{"uid":"85b0bbee-14"},{"uid":"85b0bbee-66"},{"uid":"85b0bbee-48"}],"isExternal":true},"85b0bbee-100":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-22"},{"uid":"85b0bbee-12"},{"uid":"85b0bbee-10"},{"uid":"85b0bbee-20"},{"uid":"85b0bbee-14"},{"uid":"85b0bbee-18"},{"uid":"85b0bbee-24"},{"uid":"85b0bbee-30"},{"uid":"85b0bbee-16"},{"uid":"85b0bbee-32"},{"uid":"85b0bbee-36"},{"uid":"85b0bbee-66"},{"uid":"85b0bbee-34"},{"uid":"85b0bbee-42"},{"uid":"85b0bbee-46"},{"uid":"85b0bbee-50"},{"uid":"85b0bbee-52"},{"uid":"85b0bbee-54"},{"uid":"85b0bbee-58"},{"uid":"85b0bbee-60"},{"uid":"85b0bbee-64"},{"uid":"85b0bbee-28"},{"uid":"85b0bbee-40"},{"uid":"85b0bbee-4"},{"uid":"85b0bbee-6"},{"uid":"85b0bbee-8"},{"uid":"85b0bbee-76"},{"uid":"85b0bbee-78"},{"uid":"85b0bbee-70"}],"isExternal":true},"85b0bbee-101":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-22"},{"uid":"85b0bbee-12"},{"uid":"85b0bbee-20"},{"uid":"85b0bbee-14"},{"uid":"85b0bbee-18"},{"uid":"85b0bbee-26"},{"uid":"85b0bbee-32"},{"uid":"85b0bbee-36"},{"uid":"85b0bbee-66"},{"uid":"85b0bbee-34"},{"uid":"85b0bbee-42"},{"uid":"85b0bbee-50"},{"uid":"85b0bbee-58"},{"uid":"85b0bbee-60"},{"uid":"85b0bbee-62"},{"uid":"85b0bbee-28"},{"uid":"85b0bbee-40"},{"uid":"85b0bbee-8"},{"uid":"85b0bbee-78"}],"isExternal":true},"85b0bbee-102":{"id":"/src/date/DatePicker/index.ts","moduleParts":{},"imported":[{"uid":"85b0bbee-104"},{"uid":"85b0bbee-72"}],"importedBy":[{"uid":"85b0bbee-22"},{"uid":"85b0bbee-20"},{"uid":"85b0bbee-14"}]},"85b0bbee-103":{"id":"@js-joda/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-12"},{"uid":"85b0bbee-10"},{"uid":"85b0bbee-14"}],"isExternal":true},"85b0bbee-104":{"id":"react-datepicker","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-10"},{"uid":"85b0bbee-102"}],"isExternal":true},"85b0bbee-105":{"id":"formik","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-24"},{"uid":"85b0bbee-26"},{"uid":"85b0bbee-42"}],"isExternal":true},"85b0bbee-106":{"id":"flat","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-26"}],"isExternal":true},"85b0bbee-107":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-26"}],"isExternal":true},"85b0bbee-108":{"id":"inputmask","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-16"},{"uid":"85b0bbee-70"}],"isExternal":true},"85b0bbee-109":{"id":"use-deep-compare-effect","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-16"}],"isExternal":true},"85b0bbee-110":{"id":"react-credit-cards","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-66"}],"isExternal":true},"85b0bbee-111":{"id":"react-credit-cards/es/styles-compiled.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-66"}],"isExternal":true},"85b0bbee-112":{"id":"social-insurance-number","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-34"}],"isExternal":true},"85b0bbee-113":{"id":"react-table","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-42"}],"isExternal":true},"85b0bbee-114":{"id":"@thx/money","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-44"},{"uid":"85b0bbee-56"},{"uid":"85b0bbee-28"},{"uid":"85b0bbee-40"},{"uid":"85b0bbee-70"}],"isExternal":true},"85b0bbee-115":{"id":"js-money","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-28"},{"uid":"85b0bbee-40"},{"uid":"85b0bbee-70"}],"isExternal":true},"85b0bbee-116":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-8"}],"isExternal":true},"85b0bbee-117":{"id":"credit-card-type","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-78"}],"isExternal":true},"85b0bbee-118":{"id":"luhn","moduleParts":{},"imported":[],"importedBy":[{"uid":"85b0bbee-78"}],"isExternal":true}},"env":{"rollup":"2.79.2"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
|
|
4932
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src/index.ts","uid":"5a90a871-1"}]},{"name":"step/useStep.js","children":[{"name":"src/step/useStep.ts","uid":"5a90a871-3"}]},{"name":"step/Step.js","children":[{"name":"src/step/Step.tsx","uid":"5a90a871-5"}]},{"name":"step/StepProvider.js","children":[{"name":"src/step/StepProvider.tsx","uid":"5a90a871-7"}]},{"name":"step/FormStep.js","children":[{"name":"src/step/FormStep.tsx","uid":"5a90a871-9"}]},{"name":"date/LocalMonthSelect/LocalMonthSelect.js","children":[{"name":"src/date/LocalMonthSelect/LocalMonthSelect.tsx","uid":"5a90a871-11"}]},{"name":"date/LocalDatePicker/LocalDatePicker.js","children":[{"name":"src/date/LocalDatePicker/LocalDatePicker.tsx","uid":"5a90a871-13"}]},{"name":"date/LocalTimePicker/LocalTimePicker.js","children":[{"name":"src/date/LocalTimePicker/LocalTimePicker.tsx","uid":"5a90a871-15"}]},{"name":"date/MonthYearPicker/MonthYearPicker.js","children":[{"name":"src/date/MonthYearPicker/MonthYearPicker.tsx","uid":"5a90a871-17"}]},{"name":"inputs/CreditCardInput/CreditCardInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardInput.tsx","uid":"5a90a871-19"}]},{"name":"date/MonthDayPicker/MonthDayPicker.js","children":[{"name":"src/date/MonthDayPicker/MonthDayPicker.tsx","uid":"5a90a871-21"}]},{"name":"inputs/TableInput/addRowOnTab.js","children":[{"name":"src/inputs/TableInput/addRowOnTab.ts","uid":"5a90a871-23"}]},{"name":"inputs/MaskedInput/useMaskedInput.js","children":[{"name":"src/inputs/MaskedInput/useMaskedInput.ts","uid":"5a90a871-25"}]},{"name":"money/MoneyCurrencyInput/MoneyCurrencyInput.js","children":[{"name":"src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","uid":"5a90a871-27"}]},{"name":"inputs/TableInput/TableInput.js","children":[{"name":"src/inputs/TableInput/TableInput.tsx","uid":"5a90a871-29"}]},{"name":"inputs/TableInput/MoneyCell.js","children":[{"name":"src/inputs/TableInput/MoneyCell.tsx","uid":"5a90a871-31"}]},{"name":"inputs/TableInput/CheckboxEditCell.js","children":[{"name":"src/inputs/TableInput/CheckboxEditCell.tsx","uid":"5a90a871-33"}]},{"name":"inputs/TableInput/MoneyEditCell.js","children":[{"name":"src/inputs/TableInput/MoneyEditCell.tsx","uid":"5a90a871-35"}]},{"name":"inputs/TableInput/LocalTimeEditCell.js","children":[{"name":"src/inputs/TableInput/LocalTimeEditCell.tsx","uid":"5a90a871-37"}]},{"name":"inputs/TableInput/LocalDateCell.js","children":[{"name":"src/inputs/TableInput/LocalDateCell.tsx","uid":"5a90a871-39"}]},{"name":"inputs/TableInput/LocalDateEditCell.js","children":[{"name":"src/inputs/TableInput/LocalDateEditCell.tsx","uid":"5a90a871-41"}]},{"name":"inputs/TableInput/NumberEditCell.js","children":[{"name":"src/inputs/TableInput/NumberEditCell.tsx","uid":"5a90a871-43"}]},{"name":"inputs/TableInput/MoneySumFooter.js","children":[{"name":"src/inputs/TableInput/MoneySumFooter.tsx","uid":"5a90a871-45"}]},{"name":"inputs/TableInput/StringEditCell.js","children":[{"name":"src/inputs/TableInput/StringEditCell.tsx","uid":"5a90a871-47"}]},{"name":"inputs/TableInput/DropdownCell.js","children":[{"name":"src/inputs/TableInput/DropdownCell.tsx","uid":"5a90a871-49"}]},{"name":"inputs/TableInput/HoverCell.js","children":[{"name":"src/inputs/TableInput/HoverCell.tsx","uid":"5a90a871-51"}]},{"name":"inputs/MaskedInput/MaskedInput.js","children":[{"name":"src/inputs/MaskedInput/MaskedInput.tsx","uid":"5a90a871-53"}]},{"name":"inputs/RadioGroup/RadioGroup.js","children":[{"name":"src/inputs/RadioGroup/RadioGroup.tsx","uid":"5a90a871-55"}]},{"name":"money/MoneyInput/MoneyInput.js","children":[{"name":"src/money/MoneyInput/MoneyInput.tsx","uid":"5a90a871-57"}]},{"name":"form/TForm/useTForm.js","children":[{"name":"src/form/TForm/useTForm.tsx","uid":"5a90a871-59"}]},{"name":"form/TForm/TForm.js","children":[{"name":"src/form/TForm/TForm.tsx","uid":"5a90a871-61"}]},{"name":"inputs/PhoneInput/PhoneInput.js","children":[{"name":"src/inputs/PhoneInput/PhoneInput.tsx","uid":"5a90a871-63"}]},{"name":"date/YearSelect/YearSelect.js","children":[{"name":"src/date/YearSelect/YearSelect.tsx","uid":"5a90a871-65"}]},{"name":"inputs/SinInput/SinInput.js","children":[{"name":"src/inputs/SinInput/SinInput.tsx","uid":"5a90a871-67"}]},{"name":"step/stepContext.js","children":[{"name":"src/step/stepContext.ts","uid":"5a90a871-69"}]},{"name":"date/DatePicker/styles.css.js","children":[{"name":"src/date/DatePicker/styles.css","uid":"5a90a871-71"}]},{"name":"date/LocalDatePicker/MaskedDateInput.js","children":[{"name":"src/date/LocalDatePicker/MaskedDateInput.tsx","uid":"5a90a871-73"}]},{"name":"money/useMoneyInput.js","children":[{"name":"src/money/useMoneyInput.ts","uid":"5a90a871-75"}]},{"name":"inputs/CreditCardInput/styles.css.js","children":[{"name":"src/inputs/CreditCardInput/styles.css","uid":"5a90a871-77"}]},{"name":"inputs/CreditCardInput/CreditCardNumberInput.js","children":[{"name":"src/inputs/CreditCardInput/CreditCardNumberInput.tsx","uid":"5a90a871-79"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/artemis/Github/thr-addons/node_modules/style-inject/dist/style-inject.es.js","uid":"5a90a871-81"}]}],"isRoot":true},"nodeParts":{"5a90a871-1":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"5a90a871-0"},"5a90a871-3":{"renderedLength":113,"gzipLength":107,"brotliLength":82,"metaUid":"5a90a871-2"},"5a90a871-5":{"renderedLength":203,"gzipLength":155,"brotliLength":111,"metaUid":"5a90a871-4"},"5a90a871-7":{"renderedLength":3529,"gzipLength":1015,"brotliLength":861,"metaUid":"5a90a871-6"},"5a90a871-9":{"renderedLength":440,"gzipLength":270,"brotliLength":214,"metaUid":"5a90a871-8"},"5a90a871-11":{"renderedLength":1135,"gzipLength":505,"brotliLength":415,"metaUid":"5a90a871-10"},"5a90a871-13":{"renderedLength":3233,"gzipLength":970,"brotliLength":866,"metaUid":"5a90a871-12"},"5a90a871-15":{"renderedLength":4757,"gzipLength":1403,"brotliLength":1260,"metaUid":"5a90a871-14"},"5a90a871-17":{"renderedLength":1229,"gzipLength":496,"brotliLength":424,"metaUid":"5a90a871-16"},"5a90a871-19":{"renderedLength":2324,"gzipLength":584,"brotliLength":495,"metaUid":"5a90a871-18"},"5a90a871-21":{"renderedLength":1965,"gzipLength":655,"brotliLength":544,"metaUid":"5a90a871-20"},"5a90a871-23":{"renderedLength":312,"gzipLength":199,"brotliLength":173,"metaUid":"5a90a871-22"},"5a90a871-25":{"renderedLength":1487,"gzipLength":501,"brotliLength":423,"metaUid":"5a90a871-24"},"5a90a871-27":{"renderedLength":1621,"gzipLength":646,"brotliLength":553,"metaUid":"5a90a871-26"},"5a90a871-29":{"renderedLength":2891,"gzipLength":854,"brotliLength":780,"metaUid":"5a90a871-28"},"5a90a871-31":{"renderedLength":257,"gzipLength":185,"brotliLength":149,"metaUid":"5a90a871-30"},"5a90a871-33":{"renderedLength":702,"gzipLength":369,"brotliLength":330,"metaUid":"5a90a871-32"},"5a90a871-35":{"renderedLength":820,"gzipLength":397,"brotliLength":349,"metaUid":"5a90a871-34"},"5a90a871-37":{"renderedLength":622,"gzipLength":322,"brotliLength":269,"metaUid":"5a90a871-36"},"5a90a871-39":{"renderedLength":285,"gzipLength":198,"brotliLength":170,"metaUid":"5a90a871-38"},"5a90a871-41":{"renderedLength":695,"gzipLength":349,"brotliLength":295,"metaUid":"5a90a871-40"},"5a90a871-43":{"renderedLength":782,"gzipLength":409,"brotliLength":345,"metaUid":"5a90a871-42"},"5a90a871-45":{"renderedLength":414,"gzipLength":259,"brotliLength":219,"metaUid":"5a90a871-44"},"5a90a871-47":{"renderedLength":717,"gzipLength":372,"brotliLength":319,"metaUid":"5a90a871-46"},"5a90a871-49":{"renderedLength":483,"gzipLength":251,"brotliLength":208,"metaUid":"5a90a871-48"},"5a90a871-51":{"renderedLength":403,"gzipLength":244,"brotliLength":195,"metaUid":"5a90a871-50"},"5a90a871-53":{"renderedLength":640,"gzipLength":353,"brotliLength":294,"metaUid":"5a90a871-52"},"5a90a871-55":{"renderedLength":692,"gzipLength":342,"brotliLength":289,"metaUid":"5a90a871-54"},"5a90a871-57":{"renderedLength":802,"gzipLength":399,"brotliLength":317,"metaUid":"5a90a871-56"},"5a90a871-59":{"renderedLength":2950,"gzipLength":958,"brotliLength":830,"metaUid":"5a90a871-58"},"5a90a871-61":{"renderedLength":600,"gzipLength":308,"brotliLength":267,"metaUid":"5a90a871-60"},"5a90a871-63":{"renderedLength":908,"gzipLength":382,"brotliLength":319,"metaUid":"5a90a871-62"},"5a90a871-65":{"renderedLength":1553,"gzipLength":579,"brotliLength":461,"metaUid":"5a90a871-64"},"5a90a871-67":{"renderedLength":1166,"gzipLength":540,"brotliLength":469,"metaUid":"5a90a871-66"},"5a90a871-69":{"renderedLength":80,"gzipLength":92,"brotliLength":72,"metaUid":"5a90a871-68"},"5a90a871-71":{"renderedLength":538,"gzipLength":261,"brotliLength":211,"metaUid":"5a90a871-70"},"5a90a871-73":{"renderedLength":426,"gzipLength":286,"brotliLength":244,"metaUid":"5a90a871-72"},"5a90a871-75":{"renderedLength":2187,"gzipLength":771,"brotliLength":658,"metaUid":"5a90a871-74"},"5a90a871-77":{"renderedLength":78,"gzipLength":92,"brotliLength":79,"metaUid":"5a90a871-76"},"5a90a871-79":{"renderedLength":1733,"gzipLength":697,"brotliLength":623,"metaUid":"5a90a871-78"},"5a90a871-81":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"metaUid":"5a90a871-80"}},"nodeMetas":{"5a90a871-0":{"id":"/src/index.ts","moduleParts":{"index.js":"5a90a871-1"},"imported":[{"uid":"5a90a871-82"},{"uid":"5a90a871-83"},{"uid":"5a90a871-84"},{"uid":"5a90a871-85"},{"uid":"5a90a871-86"},{"uid":"5a90a871-87"},{"uid":"5a90a871-88"},{"uid":"5a90a871-89"},{"uid":"5a90a871-90"},{"uid":"5a90a871-91"},{"uid":"5a90a871-92"},{"uid":"5a90a871-93"},{"uid":"5a90a871-94"},{"uid":"5a90a871-95"},{"uid":"5a90a871-96"},{"uid":"5a90a871-97"}],"importedBy":[],"isEntry":true},"5a90a871-2":{"id":"/src/step/useStep.ts","moduleParts":{"step/useStep.js":"5a90a871-3"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-68"}],"importedBy":[{"uid":"5a90a871-97"},{"uid":"5a90a871-8"}]},"5a90a871-4":{"id":"/src/step/Step.tsx","moduleParts":{"step/Step.js":"5a90a871-5"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"}],"importedBy":[{"uid":"5a90a871-97"},{"uid":"5a90a871-6"}]},"5a90a871-6":{"id":"/src/step/StepProvider.tsx","moduleParts":{"step/StepProvider.js":"5a90a871-7"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-116"},{"uid":"5a90a871-101"},{"uid":"5a90a871-8"},{"uid":"5a90a871-4"},{"uid":"5a90a871-68"}],"importedBy":[{"uid":"5a90a871-97"}]},"5a90a871-8":{"id":"/src/step/FormStep.tsx","moduleParts":{"step/FormStep.js":"5a90a871-9"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-2"}],"importedBy":[{"uid":"5a90a871-97"},{"uid":"5a90a871-6"}]},"5a90a871-10":{"id":"/src/date/LocalMonthSelect/LocalMonthSelect.tsx","moduleParts":{"date/LocalMonthSelect/LocalMonthSelect.js":"5a90a871-11"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-103"},{"uid":"5a90a871-100"},{"uid":"5a90a871-101"}],"importedBy":[{"uid":"5a90a871-83"}]},"5a90a871-12":{"id":"/src/date/LocalDatePicker/LocalDatePicker.tsx","moduleParts":{"date/LocalDatePicker/LocalDatePicker.js":"5a90a871-13"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-99"},{"uid":"5a90a871-100"},{"uid":"5a90a871-101"},{"uid":"5a90a871-102"},{"uid":"5a90a871-70"},{"uid":"5a90a871-72"}],"importedBy":[{"uid":"5a90a871-82"}]},"5a90a871-14":{"id":"/src/date/LocalTimePicker/LocalTimePicker.tsx","moduleParts":{"date/LocalTimePicker/LocalTimePicker.js":"5a90a871-15"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-103"},{"uid":"5a90a871-99"},{"uid":"5a90a871-100"},{"uid":"5a90a871-104"}],"importedBy":[{"uid":"5a90a871-84"}]},"5a90a871-16":{"id":"/src/date/MonthYearPicker/MonthYearPicker.tsx","moduleParts":{"date/MonthYearPicker/MonthYearPicker.js":"5a90a871-17"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-103"},{"uid":"5a90a871-99"},{"uid":"5a90a871-100"},{"uid":"5a90a871-101"},{"uid":"5a90a871-102"}],"importedBy":[{"uid":"5a90a871-86"}]},"5a90a871-18":{"id":"/src/inputs/CreditCardInput/CreditCardInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardInput.js":"5a90a871-19"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-99"},{"uid":"5a90a871-100"},{"uid":"5a90a871-110"},{"uid":"5a90a871-111"},{"uid":"5a90a871-101"},{"uid":"5a90a871-86"},{"uid":"5a90a871-78"},{"uid":"5a90a871-76"}],"importedBy":[{"uid":"5a90a871-92"}]},"5a90a871-20":{"id":"/src/date/MonthDayPicker/MonthDayPicker.tsx","moduleParts":{"date/MonthDayPicker/MonthDayPicker.js":"5a90a871-21"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-99"},{"uid":"5a90a871-100"},{"uid":"5a90a871-101"},{"uid":"5a90a871-102"}],"importedBy":[{"uid":"5a90a871-85"}]},"5a90a871-22":{"id":"/src/inputs/TableInput/addRowOnTab.ts","moduleParts":{"inputs/TableInput/addRowOnTab.js":"5a90a871-23"},"imported":[],"importedBy":[{"uid":"5a90a871-94"},{"uid":"5a90a871-34"},{"uid":"5a90a871-32"},{"uid":"5a90a871-42"},{"uid":"5a90a871-46"}]},"5a90a871-24":{"id":"/src/inputs/MaskedInput/useMaskedInput.ts","moduleParts":{"inputs/MaskedInput/useMaskedInput.js":"5a90a871-25"},"imported":[{"uid":"5a90a871-100"},{"uid":"5a90a871-108"},{"uid":"5a90a871-98"},{"uid":"5a90a871-109"}],"importedBy":[{"uid":"5a90a871-89"},{"uid":"5a90a871-52"},{"uid":"5a90a871-66"},{"uid":"5a90a871-78"}]},"5a90a871-26":{"id":"/src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx","moduleParts":{"money/MoneyCurrencyInput/MoneyCurrencyInput.js":"5a90a871-27"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-114"},{"uid":"5a90a871-100"},{"uid":"5a90a871-115"},{"uid":"5a90a871-101"},{"uid":"5a90a871-74"}],"importedBy":[{"uid":"5a90a871-96"}]},"5a90a871-28":{"id":"/src/inputs/TableInput/TableInput.tsx","moduleParts":{"inputs/TableInput/TableInput.js":"5a90a871-29"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-105"},{"uid":"5a90a871-113"},{"uid":"5a90a871-101"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-30":{"id":"/src/inputs/TableInput/MoneyCell.tsx","moduleParts":{"inputs/TableInput/MoneyCell.js":"5a90a871-31"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-114"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-32":{"id":"/src/inputs/TableInput/CheckboxEditCell.tsx","moduleParts":{"inputs/TableInput/CheckboxEditCell.js":"5a90a871-33"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-101"},{"uid":"5a90a871-22"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-34":{"id":"/src/inputs/TableInput/MoneyEditCell.tsx","moduleParts":{"inputs/TableInput/MoneyEditCell.js":"5a90a871-35"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-95"},{"uid":"5a90a871-22"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-36":{"id":"/src/inputs/TableInput/LocalTimeEditCell.tsx","moduleParts":{"inputs/TableInput/LocalTimeEditCell.js":"5a90a871-37"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-84"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-38":{"id":"/src/inputs/TableInput/LocalDateCell.tsx","moduleParts":{"inputs/TableInput/LocalDateCell.js":"5a90a871-39"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-99"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-40":{"id":"/src/inputs/TableInput/LocalDateEditCell.tsx","moduleParts":{"inputs/TableInput/LocalDateEditCell.js":"5a90a871-41"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-82"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-42":{"id":"/src/inputs/TableInput/NumberEditCell.tsx","moduleParts":{"inputs/TableInput/NumberEditCell.js":"5a90a871-43"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-101"},{"uid":"5a90a871-22"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-44":{"id":"/src/inputs/TableInput/MoneySumFooter.tsx","moduleParts":{"inputs/TableInput/MoneySumFooter.js":"5a90a871-45"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-114"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-46":{"id":"/src/inputs/TableInput/StringEditCell.tsx","moduleParts":{"inputs/TableInput/StringEditCell.js":"5a90a871-47"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-101"},{"uid":"5a90a871-22"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-48":{"id":"/src/inputs/TableInput/DropdownCell.tsx","moduleParts":{"inputs/TableInput/DropdownCell.js":"5a90a871-49"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-101"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-50":{"id":"/src/inputs/TableInput/HoverCell.tsx","moduleParts":{"inputs/TableInput/HoverCell.js":"5a90a871-51"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"}],"importedBy":[{"uid":"5a90a871-94"}]},"5a90a871-52":{"id":"/src/inputs/MaskedInput/MaskedInput.tsx","moduleParts":{"inputs/MaskedInput/MaskedInput.js":"5a90a871-53"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-24"}],"importedBy":[{"uid":"5a90a871-89"}]},"5a90a871-54":{"id":"/src/inputs/RadioGroup/RadioGroup.tsx","moduleParts":{"inputs/RadioGroup/RadioGroup.js":"5a90a871-55"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-101"}],"importedBy":[{"uid":"5a90a871-90"}]},"5a90a871-56":{"id":"/src/money/MoneyInput/MoneyInput.tsx","moduleParts":{"money/MoneyInput/MoneyInput.js":"5a90a871-57"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-114"},{"uid":"5a90a871-100"},{"uid":"5a90a871-115"},{"uid":"5a90a871-101"},{"uid":"5a90a871-74"}],"importedBy":[{"uid":"5a90a871-95"}]},"5a90a871-58":{"id":"/src/form/TForm/useTForm.tsx","moduleParts":{"form/TForm/useTForm.js":"5a90a871-59"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-106"},{"uid":"5a90a871-105"},{"uid":"5a90a871-107"},{"uid":"5a90a871-101"}],"importedBy":[{"uid":"5a90a871-88"},{"uid":"5a90a871-60"}]},"5a90a871-60":{"id":"/src/form/TForm/TForm.tsx","moduleParts":{"form/TForm/TForm.js":"5a90a871-61"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-105"},{"uid":"5a90a871-58"}],"importedBy":[{"uid":"5a90a871-88"}]},"5a90a871-62":{"id":"/src/inputs/PhoneInput/PhoneInput.tsx","moduleParts":{"inputs/PhoneInput/PhoneInput.js":"5a90a871-63"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-101"},{"uid":"5a90a871-89"}],"importedBy":[{"uid":"5a90a871-91"}]},"5a90a871-64":{"id":"/src/date/YearSelect/YearSelect.tsx","moduleParts":{"date/YearSelect/YearSelect.js":"5a90a871-65"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-101"}],"importedBy":[{"uid":"5a90a871-87"}]},"5a90a871-66":{"id":"/src/inputs/SinInput/SinInput.tsx","moduleParts":{"inputs/SinInput/SinInput.js":"5a90a871-67"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-101"},{"uid":"5a90a871-112"},{"uid":"5a90a871-24"}],"importedBy":[{"uid":"5a90a871-93"}]},"5a90a871-68":{"id":"/src/step/stepContext.ts","moduleParts":{"step/stepContext.js":"5a90a871-69"},"imported":[{"uid":"5a90a871-98"}],"importedBy":[{"uid":"5a90a871-2"},{"uid":"5a90a871-6"}]},"5a90a871-70":{"id":"/src/date/DatePicker/styles.css","moduleParts":{"date/DatePicker/styles.css.js":"5a90a871-71"},"imported":[{"uid":"5a90a871-80"}],"importedBy":[{"uid":"5a90a871-12"},{"uid":"5a90a871-102"}]},"5a90a871-72":{"id":"/src/date/LocalDatePicker/MaskedDateInput.tsx","moduleParts":{"date/LocalDatePicker/MaskedDateInput.js":"5a90a871-73"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-100"},{"uid":"5a90a871-89"}],"importedBy":[{"uid":"5a90a871-12"}]},"5a90a871-74":{"id":"/src/money/useMoneyInput.ts","moduleParts":{"money/useMoneyInput.js":"5a90a871-75"},"imported":[{"uid":"5a90a871-114"},{"uid":"5a90a871-100"},{"uid":"5a90a871-108"},{"uid":"5a90a871-115"},{"uid":"5a90a871-98"}],"importedBy":[{"uid":"5a90a871-56"},{"uid":"5a90a871-26"}]},"5a90a871-76":{"id":"/src/inputs/CreditCardInput/styles.css","moduleParts":{"inputs/CreditCardInput/styles.css.js":"5a90a871-77"},"imported":[{"uid":"5a90a871-80"}],"importedBy":[{"uid":"5a90a871-18"}]},"5a90a871-78":{"id":"/src/inputs/CreditCardInput/CreditCardNumberInput.tsx","moduleParts":{"inputs/CreditCardInput/CreditCardNumberInput.js":"5a90a871-79"},"imported":[{"uid":"5a90a871-98"},{"uid":"5a90a871-117"},{"uid":"5a90a871-100"},{"uid":"5a90a871-118"},{"uid":"5a90a871-101"},{"uid":"5a90a871-24"}],"importedBy":[{"uid":"5a90a871-18"}]},"5a90a871-80":{"id":"/home/artemis/Github/thr-addons/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"5a90a871-81"},"imported":[],"importedBy":[{"uid":"5a90a871-70"},{"uid":"5a90a871-76"}]},"5a90a871-82":{"id":"/src/date/LocalDatePicker/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-12"}],"importedBy":[{"uid":"5a90a871-0"},{"uid":"5a90a871-40"}]},"5a90a871-83":{"id":"/src/date/LocalMonthSelect/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-10"}],"importedBy":[{"uid":"5a90a871-0"}]},"5a90a871-84":{"id":"/src/date/LocalTimePicker/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-14"}],"importedBy":[{"uid":"5a90a871-0"},{"uid":"5a90a871-36"}]},"5a90a871-85":{"id":"/src/date/MonthDayPicker/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-20"}],"importedBy":[{"uid":"5a90a871-0"}]},"5a90a871-86":{"id":"/src/date/MonthYearPicker/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-16"}],"importedBy":[{"uid":"5a90a871-0"},{"uid":"5a90a871-18"}]},"5a90a871-87":{"id":"/src/date/YearSelect/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-64"}],"importedBy":[{"uid":"5a90a871-0"}]},"5a90a871-88":{"id":"/src/form/TForm/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-60"},{"uid":"5a90a871-58"}],"importedBy":[{"uid":"5a90a871-0"}]},"5a90a871-89":{"id":"/src/inputs/MaskedInput/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-52"},{"uid":"5a90a871-24"}],"importedBy":[{"uid":"5a90a871-0"},{"uid":"5a90a871-62"},{"uid":"5a90a871-72"}]},"5a90a871-90":{"id":"/src/inputs/RadioGroup/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-54"}],"importedBy":[{"uid":"5a90a871-0"}]},"5a90a871-91":{"id":"/src/inputs/PhoneInput/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-62"}],"importedBy":[{"uid":"5a90a871-0"}]},"5a90a871-92":{"id":"/src/inputs/CreditCardInput/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-18"}],"importedBy":[{"uid":"5a90a871-0"}]},"5a90a871-93":{"id":"/src/inputs/SinInput/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-66"}],"importedBy":[{"uid":"5a90a871-0"}]},"5a90a871-94":{"id":"/src/inputs/TableInput/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-28"},{"uid":"5a90a871-30"},{"uid":"5a90a871-34"},{"uid":"5a90a871-38"},{"uid":"5a90a871-32"},{"uid":"5a90a871-40"},{"uid":"5a90a871-36"},{"uid":"5a90a871-44"},{"uid":"5a90a871-42"},{"uid":"5a90a871-46"},{"uid":"5a90a871-48"},{"uid":"5a90a871-50"},{"uid":"5a90a871-22"}],"importedBy":[{"uid":"5a90a871-0"}]},"5a90a871-95":{"id":"/src/money/MoneyInput/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-56"}],"importedBy":[{"uid":"5a90a871-0"},{"uid":"5a90a871-34"}]},"5a90a871-96":{"id":"/src/money/MoneyCurrencyInput/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-26"}],"importedBy":[{"uid":"5a90a871-0"}]},"5a90a871-97":{"id":"/src/step/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-4"},{"uid":"5a90a871-2"},{"uid":"5a90a871-8"},{"uid":"5a90a871-6"}],"importedBy":[{"uid":"5a90a871-0"}]},"5a90a871-98":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-12"},{"uid":"5a90a871-10"},{"uid":"5a90a871-14"},{"uid":"5a90a871-20"},{"uid":"5a90a871-16"},{"uid":"5a90a871-64"},{"uid":"5a90a871-60"},{"uid":"5a90a871-58"},{"uid":"5a90a871-52"},{"uid":"5a90a871-24"},{"uid":"5a90a871-54"},{"uid":"5a90a871-62"},{"uid":"5a90a871-18"},{"uid":"5a90a871-66"},{"uid":"5a90a871-28"},{"uid":"5a90a871-30"},{"uid":"5a90a871-34"},{"uid":"5a90a871-38"},{"uid":"5a90a871-32"},{"uid":"5a90a871-40"},{"uid":"5a90a871-36"},{"uid":"5a90a871-44"},{"uid":"5a90a871-42"},{"uid":"5a90a871-46"},{"uid":"5a90a871-48"},{"uid":"5a90a871-50"},{"uid":"5a90a871-56"},{"uid":"5a90a871-26"},{"uid":"5a90a871-4"},{"uid":"5a90a871-2"},{"uid":"5a90a871-8"},{"uid":"5a90a871-6"},{"uid":"5a90a871-72"},{"uid":"5a90a871-78"},{"uid":"5a90a871-74"},{"uid":"5a90a871-68"}],"isExternal":true},"5a90a871-99":{"id":"@thx/date","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-12"},{"uid":"5a90a871-14"},{"uid":"5a90a871-20"},{"uid":"5a90a871-16"},{"uid":"5a90a871-18"},{"uid":"5a90a871-38"}],"isExternal":true},"5a90a871-100":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-12"},{"uid":"5a90a871-10"},{"uid":"5a90a871-14"},{"uid":"5a90a871-20"},{"uid":"5a90a871-16"},{"uid":"5a90a871-64"},{"uid":"5a90a871-60"},{"uid":"5a90a871-52"},{"uid":"5a90a871-24"},{"uid":"5a90a871-54"},{"uid":"5a90a871-62"},{"uid":"5a90a871-18"},{"uid":"5a90a871-66"},{"uid":"5a90a871-28"},{"uid":"5a90a871-34"},{"uid":"5a90a871-32"},{"uid":"5a90a871-40"},{"uid":"5a90a871-36"},{"uid":"5a90a871-42"},{"uid":"5a90a871-46"},{"uid":"5a90a871-50"},{"uid":"5a90a871-56"},{"uid":"5a90a871-26"},{"uid":"5a90a871-4"},{"uid":"5a90a871-8"},{"uid":"5a90a871-6"},{"uid":"5a90a871-72"},{"uid":"5a90a871-78"},{"uid":"5a90a871-74"}],"isExternal":true},"5a90a871-101":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-12"},{"uid":"5a90a871-10"},{"uid":"5a90a871-20"},{"uid":"5a90a871-16"},{"uid":"5a90a871-64"},{"uid":"5a90a871-58"},{"uid":"5a90a871-54"},{"uid":"5a90a871-62"},{"uid":"5a90a871-18"},{"uid":"5a90a871-66"},{"uid":"5a90a871-28"},{"uid":"5a90a871-32"},{"uid":"5a90a871-42"},{"uid":"5a90a871-46"},{"uid":"5a90a871-48"},{"uid":"5a90a871-56"},{"uid":"5a90a871-26"},{"uid":"5a90a871-6"},{"uid":"5a90a871-78"}],"isExternal":true},"5a90a871-102":{"id":"/src/date/DatePicker/index.ts","moduleParts":{},"imported":[{"uid":"5a90a871-104"},{"uid":"5a90a871-70"}],"importedBy":[{"uid":"5a90a871-12"},{"uid":"5a90a871-20"},{"uid":"5a90a871-16"}]},"5a90a871-103":{"id":"@js-joda/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-10"},{"uid":"5a90a871-14"},{"uid":"5a90a871-16"}],"isExternal":true},"5a90a871-104":{"id":"react-datepicker","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-14"},{"uid":"5a90a871-102"}],"isExternal":true},"5a90a871-105":{"id":"formik","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-60"},{"uid":"5a90a871-58"},{"uid":"5a90a871-28"}],"isExternal":true},"5a90a871-106":{"id":"flat","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-58"}],"isExternal":true},"5a90a871-107":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-58"}],"isExternal":true},"5a90a871-108":{"id":"inputmask","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-24"},{"uid":"5a90a871-74"}],"isExternal":true},"5a90a871-109":{"id":"use-deep-compare-effect","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-24"}],"isExternal":true},"5a90a871-110":{"id":"react-credit-cards","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-18"}],"isExternal":true},"5a90a871-111":{"id":"react-credit-cards/es/styles-compiled.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-18"}],"isExternal":true},"5a90a871-112":{"id":"social-insurance-number","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-66"}],"isExternal":true},"5a90a871-113":{"id":"react-table","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-28"}],"isExternal":true},"5a90a871-114":{"id":"@thx/money","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-30"},{"uid":"5a90a871-44"},{"uid":"5a90a871-56"},{"uid":"5a90a871-26"},{"uid":"5a90a871-74"}],"isExternal":true},"5a90a871-115":{"id":"js-money","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-56"},{"uid":"5a90a871-26"},{"uid":"5a90a871-74"}],"isExternal":true},"5a90a871-116":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-6"}],"isExternal":true},"5a90a871-117":{"id":"credit-card-type","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-78"}],"isExternal":true},"5a90a871-118":{"id":"luhn","moduleParts":{},"imported":[],"importedBy":[{"uid":"5a90a871-78"}],"isExternal":true}},"env":{"rollup":"2.79.2"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
|
|
4933
4933
|
|
|
4934
4934
|
const run = () => {
|
|
4935
4935
|
const width = window.innerWidth;
|
package/dist/stats.txt
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
-----------------------------
|
|
2
|
+
Rollup File Analysis
|
|
3
|
+
-----------------------------
|
|
4
|
+
bundle size: 46.408 KB
|
|
5
|
+
original size: 69.452 KB
|
|
6
|
+
code reduction: 33.18 %
|
|
7
|
+
module count: 41
|
|
8
|
+
|
|
9
|
+
/src/date/LocalTimePicker/LocalTimePicker.tsx
|
|
10
|
+
█████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 10.25 % (4.757 KB)
|
|
11
|
+
/src/step/StepProvider.tsx
|
|
12
|
+
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 7.6 % (3.529 KB)
|
|
13
|
+
/src/date/LocalDatePicker/LocalDatePicker.tsx
|
|
14
|
+
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.97 % (3.233 KB)
|
|
15
|
+
/src/form/TForm/useTForm.tsx
|
|
16
|
+
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.36 % (2.95 KB)
|
|
17
|
+
/src/inputs/TableInput/TableInput.tsx
|
|
18
|
+
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.23 % (2.891 KB)
|
|
19
|
+
/src/inputs/CreditCardInput/CreditCardInput.tsx
|
|
20
|
+
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.01 % (2.324 KB)
|
|
21
|
+
/src/money/useMoneyInput.ts
|
|
22
|
+
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.71 % (2.187 KB)
|
|
23
|
+
/src/date/MonthDayPicker/MonthDayPicker.tsx
|
|
24
|
+
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.23 % (1.965 KB)
|
|
25
|
+
/src/inputs/CreditCardInput/CreditCardNumberInput.tsx
|
|
26
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.73 % (1.733 KB)
|
|
27
|
+
/src/money/MoneyCurrencyInput/MoneyCurrencyInput.tsx
|
|
28
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.49 % (1.621 KB)
|
|
29
|
+
/src/date/YearSelect/YearSelect.tsx
|
|
30
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.35 % (1.553 KB)
|
|
31
|
+
/src/inputs/MaskedInput/useMaskedInput.ts
|
|
32
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.2 % (1.487 KB)
|
|
33
|
+
/src/date/MonthYearPicker/MonthYearPicker.tsx
|
|
34
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.65 % (1.229 KB)
|
|
35
|
+
/src/inputs/SinInput/SinInput.tsx
|
|
36
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.51 % (1.166 KB)
|
|
37
|
+
/src/date/LocalMonthSelect/LocalMonthSelect.tsx
|
|
38
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.45 % (1.135 KB)
|
|
39
|
+
/src/inputs/PhoneInput/PhoneInput.tsx
|
|
40
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.96 % (908 Bytes)
|
|
41
|
+
/src/inputs/TableInput/MoneyEditCell.tsx
|
|
42
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.77 % (820 Bytes)
|
|
43
|
+
/src/money/MoneyInput/MoneyInput.tsx
|
|
44
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.73 % (802 Bytes)
|
|
45
|
+
/src/inputs/TableInput/NumberEditCell.tsx
|
|
46
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.69 % (782 Bytes)
|
|
47
|
+
/src/inputs/TableInput/StringEditCell.tsx
|
|
48
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.54 % (717 Bytes)
|
|
49
|
+
/src/inputs/TableInput/CheckboxEditCell.tsx
|
|
50
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.51 % (702 Bytes)
|
|
51
|
+
/src/inputs/TableInput/LocalDateEditCell.tsx
|
|
52
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.5 % (695 Bytes)
|
|
53
|
+
/src/inputs/RadioGroup/RadioGroup.tsx
|
|
54
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.49 % (692 Bytes)
|
|
55
|
+
/src/inputs/MaskedInput/MaskedInput.tsx
|
|
56
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.38 % (640 Bytes)
|
|
57
|
+
/home/artemis/Github/thr-addons/node_modules/style-inject/dist/style-inject.es.js
|
|
58
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.37 % (636 Bytes)
|
|
59
|
+
/src/inputs/TableInput/LocalTimeEditCell.tsx
|
|
60
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.34 % (622 Bytes)
|
|
61
|
+
/src/form/TForm/TForm.tsx
|
|
62
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.29 % (600 Bytes)
|
|
63
|
+
/src/date/DatePicker/styles.css
|
|
64
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.16 % (538 Bytes)
|
|
65
|
+
/src/inputs/TableInput/DropdownCell.tsx
|
|
66
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.04 % (483 Bytes)
|
|
67
|
+
/src/step/FormStep.tsx
|
|
68
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.95 % (440 Bytes)
|
|
69
|
+
/src/date/LocalDatePicker/MaskedDateInput.tsx
|
|
70
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.92 % (426 Bytes)
|
|
71
|
+
/src/inputs/TableInput/MoneySumFooter.tsx
|
|
72
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.89 % (414 Bytes)
|
|
73
|
+
/src/inputs/TableInput/HoverCell.tsx
|
|
74
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.87 % (403 Bytes)
|
|
75
|
+
/src/inputs/TableInput/addRowOnTab.ts
|
|
76
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.67 % (312 Bytes)
|
|
77
|
+
/src/inputs/TableInput/LocalDateCell.tsx
|
|
78
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.61 % (285 Bytes)
|
|
79
|
+
/src/inputs/TableInput/MoneyCell.tsx
|
|
80
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.55 % (257 Bytes)
|
|
81
|
+
/src/step/Step.tsx
|
|
82
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.44 % (203 Bytes)
|
|
83
|
+
/src/step/useStep.ts
|
|
84
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.24 % (113 Bytes)
|
|
85
|
+
/src/step/stepContext.ts
|
|
86
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.17 % (80 Bytes)
|
|
87
|
+
/src/inputs/CreditCardInput/styles.css
|
|
88
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.17 % (78 Bytes)
|
|
89
|
+
/src/index.ts
|
|
90
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0 % (0 Byte)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thx/controls",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.9.1",
|
|
4
4
|
"description": "A collection of components designed with SemanticUI.",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/thr-consulting/thr-addons/issues"
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "763acfda795505e62d0ad324ee91a740ad7d7cd0"
|
|
69
69
|
}
|