@react-md/core 1.0.0-next.13 → 1.0.0-next.14
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/.turbo/turbo-build.log +7 -7
- package/.turbo/turbo-lint.log +12 -0
- package/.turbo/turbo-test.log +5498 -0
- package/.turbo/turbo-typecheck.log +26 -0
- package/CHANGELOG.md +27 -0
- package/coverage/clover.xml +657 -140
- package/coverage/coverage-final.json +4 -4
- package/coverage/lcov-report/autocomplete/Autocomplete.tsx.html +810 -171
- package/coverage/lcov-report/autocomplete/index.html +21 -126
- package/coverage/lcov-report/button/Button.tsx.html +84 -84
- package/coverage/lcov-report/button/index.html +10 -10
- package/coverage/lcov-report/{src/positioning/createHorizontalPosition.ts.html → createHorizontalPosition.ts.html} +137 -137
- package/coverage/lcov-report/{src/positioning/createVerticalPosition.ts.html → createVerticalPosition.ts.html} +77 -77
- package/coverage/lcov-report/index.html +52 -22
- package/coverage/lcov-report/searching/fuzzy.ts.html +80 -83
- package/coverage/lcov-report/searching/index.html +13 -43
- package/coverage/lcov-report/typography/SrOnly.tsx.html +52 -79
- package/coverage/lcov-report/typography/index.html +18 -18
- package/coverage/lcov-report/utils.ts.html +940 -97
- package/coverage/lcov.info +711 -177
- package/dist/_box-shadows.scss +7 -4
- package/dist/_core.scss +5 -1
- package/dist/_utils.scss +3 -3
- package/dist/autocomplete/Autocomplete.d.ts +85 -0
- package/dist/autocomplete/Autocomplete.js +138 -0
- package/dist/autocomplete/Autocomplete.js.map +1 -0
- package/dist/autocomplete/AutocompleteCircularProgress.d.ts +16 -0
- package/dist/autocomplete/AutocompleteCircularProgress.js +15 -0
- package/dist/autocomplete/AutocompleteCircularProgress.js.map +1 -0
- package/dist/autocomplete/AutocompleteDropdownButton.d.ts +32 -0
- package/dist/autocomplete/AutocompleteDropdownButton.js +29 -0
- package/dist/autocomplete/AutocompleteDropdownButton.js.map +1 -0
- package/dist/autocomplete/FilterAutocompleteOptions.d.ts +8 -0
- package/dist/autocomplete/FilterAutocompleteOptions.js +57 -0
- package/dist/autocomplete/FilterAutocompleteOptions.js.map +1 -0
- package/dist/autocomplete/_autocomplete.scss +75 -0
- package/dist/autocomplete/autocompleteStyles.d.ts +32 -0
- package/dist/autocomplete/autocompleteStyles.js +34 -0
- package/dist/autocomplete/autocompleteStyles.js.map +1 -0
- package/dist/autocomplete/defaults.d.ts +21 -0
- package/dist/autocomplete/defaults.js +52 -0
- package/dist/autocomplete/defaults.js.map +1 -0
- package/dist/autocomplete/types.d.ts +103 -0
- package/dist/autocomplete/types.js +5 -0
- package/dist/autocomplete/types.js.map +1 -0
- package/dist/avatar/_avatar.scss +4 -3
- package/dist/button/AsyncButton.js +2 -2
- package/dist/button/AsyncButton.js.map +1 -1
- package/dist/draggable/useDraggable.js +2 -13
- package/dist/draggable/useDraggable.js.map +1 -1
- package/dist/form/TextField.d.ts +1 -10
- package/dist/form/TextField.js +1 -2
- package/dist/form/TextField.js.map +1 -1
- package/dist/form/TextFieldAddon.js +5 -2
- package/dist/form/TextFieldAddon.js.map +1 -1
- package/dist/form/_form.scss +81 -40
- package/dist/form/useCombobox.d.ts +6 -6
- package/dist/form/useCombobox.js +1 -1
- package/dist/form/useCombobox.js.map +1 -1
- package/dist/form/useEditableCombobox.js +3 -0
- package/dist/form/useEditableCombobox.js.map +1 -1
- package/dist/form/useTextFieldContainerAddons.d.ts +88 -0
- package/dist/form/useTextFieldContainerAddons.js +85 -0
- package/dist/form/useTextFieldContainerAddons.js.map +1 -0
- package/dist/icon/iconConfig.d.ts +7 -0
- package/dist/icon/iconConfig.js +3 -0
- package/dist/icon/iconConfig.js.map +1 -1
- package/dist/menu/MenuItemCircularProgress.d.ts +2 -2
- package/dist/menu/MenuItemCircularProgress.js +2 -2
- package/dist/menu/MenuItemCircularProgress.js.map +1 -1
- package/dist/positioning/constants.d.ts +1 -1
- package/dist/positioning/constants.js.map +1 -1
- package/dist/positioning/createHorizontalPosition.d.ts +2 -2
- package/dist/positioning/createHorizontalPosition.js.map +1 -1
- package/dist/positioning/createVerticalPosition.d.ts +3 -3
- package/dist/positioning/createVerticalPosition.js.map +1 -1
- package/dist/positioning/getFixedPosition.d.ts +1 -1
- package/dist/positioning/getFixedPosition.js.map +1 -1
- package/dist/positioning/types.d.ts +1 -1
- package/dist/positioning/types.js.map +1 -1
- package/dist/positioning/useFixedPositioning.d.ts +3 -3
- package/dist/positioning/useFixedPositioning.js.map +1 -1
- package/dist/positioning/utils.d.ts +1 -1
- package/dist/positioning/utils.js.map +1 -1
- package/dist/responsive-item/_responsive-item.scss +4 -1
- package/dist/theme/_theme.scss +4 -4
- package/dist/transition/CrossFade.js +2 -3
- package/dist/transition/CrossFade.js.map +1 -1
- package/dist/transition/useCrossFadeTransition.js +2 -1
- package/dist/transition/useCrossFadeTransition.js.map +1 -1
- package/dist/transition/useScaleTransition.js +2 -1
- package/dist/transition/useScaleTransition.js.map +1 -1
- package/dist/{useAsyncAction.d.ts → useAsyncFunction.d.ts} +10 -10
- package/dist/{useAsyncAction.js → useAsyncFunction.js} +6 -6
- package/dist/useAsyncFunction.js.map +1 -0
- package/dist/useMutationObserver.d.ts +52 -0
- package/dist/useMutationObserver.js +84 -0
- package/dist/useMutationObserver.js.map +1 -0
- package/package.json +16 -16
- package/src/__tests__/{useAsyncAction.tsx → useAsyncFunction.tsx} +3 -3
- package/src/__tests__/useWindowSize.tsx +1 -2
- package/src/_box-shadows.scss +7 -4
- package/src/_core.scss +5 -1
- package/src/_utils.scss +3 -3
- package/src/autocomplete/Autocomplete.tsx +294 -0
- package/src/autocomplete/AutocompleteCircularProgress.tsx +41 -0
- package/src/autocomplete/AutocompleteDropdownButton.tsx +66 -0
- package/src/autocomplete/FilterAutocompleteOptions.tsx +86 -0
- package/src/autocomplete/__tests__/Autocomplete.tsx +458 -0
- package/src/autocomplete/__tests__/__snapshots__/Autocomplete.tsx.snap +144 -0
- package/src/autocomplete/_autocomplete.scss +75 -0
- package/src/autocomplete/autocompleteStyles.ts +78 -0
- package/src/autocomplete/defaults.ts +83 -0
- package/src/autocomplete/types.ts +122 -0
- package/src/avatar/_avatar.scss +4 -3
- package/src/button/AsyncButton.tsx +2 -2
- package/src/draggable/useDraggable.ts +6 -13
- package/src/form/TextField.tsx +0 -13
- package/src/form/TextFieldAddon.tsx +6 -4
- package/src/form/__tests__/__snapshots__/Select.tsx.snap +2 -2
- package/src/form/__tests__/__snapshots__/TextArea.tsx.snap +2 -2
- package/src/form/__tests__/__snapshots__/TextField.tsx.snap +2 -2
- package/src/form/__tests__/useFormReset.tsx +1 -2
- package/src/form/_form.scss +81 -40
- package/src/form/useCombobox.ts +9 -19
- package/src/form/useEditableCombobox.ts +3 -0
- package/src/form/useTextFieldContainerAddons.ts +195 -0
- package/src/icon/iconConfig.tsx +9 -0
- package/src/menu/MenuItemCircularProgress.tsx +2 -2
- package/src/positioning/__tests__/createHorizontalPosition.ts +2 -4
- package/src/positioning/constants.ts +1 -1
- package/src/positioning/createHorizontalPosition.ts +2 -2
- package/src/positioning/createVerticalPosition.ts +3 -3
- package/src/positioning/getFixedPosition.ts +1 -1
- package/src/positioning/types.ts +1 -1
- package/src/positioning/useFixedPositioning.ts +12 -4
- package/src/positioning/utils.ts +1 -1
- package/src/responsive-item/_responsive-item.scss +4 -1
- package/src/suspense/__tests__/CircularProgressSuspense.tsx +4 -4
- package/src/theme/_theme.scss +4 -4
- package/src/transition/CrossFade.tsx +1 -8
- package/src/transition/useCrossFadeTransition.ts +2 -0
- package/src/transition/useScaleTransition.ts +2 -0
- package/src/{useAsyncAction.ts → useAsyncFunction.ts} +15 -15
- package/src/useMutationObserver.ts +118 -0
- package/coverage/lcov-report/AppBar.tsx.html +0 -784
- package/coverage/lcov-report/AsyncButton.tsx.html +0 -649
- package/coverage/lcov-report/AutoComplete.tsx.html +0 -283
- package/coverage/lcov-report/Avatar.tsx.html +0 -472
- package/coverage/lcov-report/Badge.tsx.html +0 -253
- package/coverage/lcov-report/CircularProgress.tsx.html +0 -799
- package/coverage/lcov-report/Collapse.tsx.html +0 -340
- package/coverage/lcov-report/CoreProviders.tsx.html +0 -502
- package/coverage/lcov-report/DefaultNavigationRenderer.tsx.html +0 -298
- package/coverage/lcov-report/DefaultToastRenderer.tsx.html +0 -526
- package/coverage/lcov-report/Dialog.tsx.html +0 -1309
- package/coverage/lcov-report/DialogContent.tsx.html +0 -178
- package/coverage/lcov-report/DialogFooter.tsx.html +0 -169
- package/coverage/lcov-report/ExpansionList.tsx.html +0 -205
- package/coverage/lcov-report/ExpansionPanel.tsx.html +0 -934
- package/coverage/lcov-report/ExpansionPanelHeader.tsx.html +0 -622
- package/coverage/lcov-report/FileInput.tsx.html +0 -733
- package/coverage/lcov-report/FontIcon.tsx.html +0 -265
- package/coverage/lcov-report/IconRotator.tsx.html +0 -322
- package/coverage/lcov-report/InputToggle.tsx.html +0 -1117
- package/coverage/lcov-report/InputToggleIcon.tsx.html +0 -478
- package/coverage/lcov-report/LinearProgress.tsx.html +0 -658
- package/coverage/lcov-report/ListItem.tsx.html +0 -892
- package/coverage/lcov-report/ListItemLink.tsx.html +0 -616
- package/coverage/lcov-report/MaterialIcon.tsx.html +0 -235
- package/coverage/lcov-report/MaterialSymbol.tsx.html +0 -421
- package/coverage/lcov-report/MenuItemCheckbox.tsx.html +0 -223
- package/coverage/lcov-report/MenuItemInputToggle.tsx.html +0 -925
- package/coverage/lcov-report/MenuItemRadio.tsx.html +0 -436
- package/coverage/lcov-report/MenuItemSeparator.tsx.html +0 -223
- package/coverage/lcov-report/MenuItemTextField.tsx.html +0 -289
- package/coverage/lcov-report/NativeSelect.tsx.html +0 -763
- package/coverage/lcov-report/Navigation.tsx.html +0 -358
- package/coverage/lcov-report/Portal.tsx.html +0 -223
- package/coverage/lcov-report/PortalContainerProvider.tsx.html +0 -367
- package/coverage/lcov-report/RootHtml.tsx.html +0 -370
- package/coverage/lcov-report/SVGIcon.tsx.html +0 -445
- package/coverage/lcov-report/SegmentedButton.tsx.html +0 -628
- package/coverage/lcov-report/SegmentedButtonContainer.tsx.html +0 -277
- package/coverage/lcov-report/Select.tsx.html +0 -1411
- package/coverage/lcov-report/SkeletonPlaceholder.tsx.html +0 -613
- package/coverage/lcov-report/Snackbar.tsx.html +0 -610
- package/coverage/lcov-report/SrOnly.tsx.html +0 -328
- package/coverage/lcov-report/Switch.tsx.html +0 -535
- package/coverage/lcov-report/SwitchTrack.tsx.html +0 -262
- package/coverage/lcov-report/Tab.tsx.html +0 -622
- package/coverage/lcov-report/TabList.tsx.html +0 -757
- package/coverage/lcov-report/TabListScrollButton.tsx.html +0 -472
- package/coverage/lcov-report/Table.tsx.html +0 -457
- package/coverage/lcov-report/TableCell.tsx.html +0 -982
- package/coverage/lcov-report/TableCheckbox.tsx.html +0 -709
- package/coverage/lcov-report/TableContainer.tsx.html +0 -220
- package/coverage/lcov-report/TableFooter.tsx.html +0 -502
- package/coverage/lcov-report/TableHeader.tsx.html +0 -541
- package/coverage/lcov-report/TableRadio.tsx.html +0 -670
- package/coverage/lcov-report/TableRow.tsx.html +0 -289
- package/coverage/lcov-report/TextArea.tsx.html +0 -940
- package/coverage/lcov-report/TextField.tsx.html +0 -829
- package/coverage/lcov-report/TextFieldAddon.tsx.html +0 -382
- package/coverage/lcov-report/TextFieldContainer.tsx.html +0 -364
- package/coverage/lcov-report/Toast.tsx.html +0 -868
- package/coverage/lcov-report/ToastCloseButton.tsx.html +0 -340
- package/coverage/lcov-report/ToastManager.tsx.html +0 -1783
- package/coverage/lcov-report/ToastManagerProvider.tsx.html +0 -400
- package/coverage/lcov-report/Tooltip.tsx.html +0 -559
- package/coverage/lcov-report/TooltipHoverModeProvider.tsx.html +0 -253
- package/coverage/lcov-report/Tree.tsx.html +0 -1135
- package/coverage/lcov-report/TreeGroup.tsx.html +0 -313
- package/coverage/lcov-report/Typography.tsx.html +0 -1027
- package/coverage/lcov-report/app-bar/AppBar.tsx.html +0 -928
- package/coverage/lcov-report/app-bar/AppBarTitle.tsx.html +0 -430
- package/coverage/lcov-report/app-bar/index.html +0 -131
- package/coverage/lcov-report/autocomplete/AutoComplete.tsx.html +0 -283
- package/coverage/lcov-report/autocomplete/AutocompleteGeneric.tsx.html +0 -304
- package/coverage/lcov-report/autocomplete/useAutoComplete.ts.html +0 -775
- package/coverage/lcov-report/autocomplete/useAutocomplete.ts.html +0 -1039
- package/coverage/lcov-report/autocomplete/useAutocompleteAgain.ts.html +0 -829
- package/coverage/lcov-report/autocomplete/useAutocompletev2.ts.html +0 -715
- package/coverage/lcov-report/autocomplete/useInlineAutoComplete.ts.html +0 -340
- package/coverage/lcov-report/autocomplete/useInlineAutocomplete.ts.html +0 -454
- package/coverage/lcov-report/autocomplete/useInlineSelection.ts.html +0 -373
- package/coverage/lcov-report/autocomplete/utils.ts.html +0 -196
- package/coverage/lcov-report/avatar/Avatar.tsx.html +0 -535
- package/coverage/lcov-report/avatar/index.html +0 -116
- package/coverage/lcov-report/avatar/styles.ts.html +0 -268
- package/coverage/lcov-report/badge/Badge.tsx.html +0 -364
- package/coverage/lcov-report/badge/index.html +0 -116
- package/coverage/lcov-report/box/Box.tsx.html +0 -562
- package/coverage/lcov-report/box/index.html +0 -131
- package/coverage/lcov-report/box/styles.ts.html +0 -622
- package/coverage/lcov-report/button/AsyncButton.tsx.html +0 -1045
- package/coverage/lcov-report/button/ButtonUnstyled.tsx.html +0 -214
- package/coverage/lcov-report/button/FloatingActionButton.tsx.html +0 -427
- package/coverage/lcov-report/button/TooltippedButton.tsx.html +0 -433
- package/coverage/lcov-report/button/buttonStyles.ts.html +0 -607
- package/coverage/lcov-report/button/buttonUnstyledStyles.ts.html +0 -142
- package/coverage/lcov-report/card/Card.tsx.html +0 -349
- package/coverage/lcov-report/card/CardContent.tsx.html +0 -223
- package/coverage/lcov-report/card/CardHeader.tsx.html +0 -322
- package/coverage/lcov-report/card/ClickableCard.tsx.html +0 -400
- package/coverage/lcov-report/card/index.html +0 -116
- package/coverage/lcov-report/card/styles.ts.html +0 -694
- package/coverage/lcov-report/chip/Chip.tsx.html +0 -1072
- package/coverage/lcov-report/chip/index.html +0 -116
- package/coverage/lcov-report/chip/styles.ts.html +0 -436
- package/coverage/lcov-report/collapseStyles.ts.html +0 -184
- package/coverage/lcov-report/config.ts.html +0 -151
- package/coverage/lcov-report/cssUtils.ts.html +0 -814
- package/coverage/lcov-report/dialog/Dialog.tsx.html +0 -1309
- package/coverage/lcov-report/dialog/DialogContent.tsx.html +0 -178
- package/coverage/lcov-report/dialog/DialogFooter.tsx.html +0 -169
- package/coverage/lcov-report/dialog/DialogHeader.tsx.html +0 -148
- package/coverage/lcov-report/dialog/DialogTitle.tsx.html +0 -256
- package/coverage/lcov-report/dialog/FixedDialog.tsx.html +0 -583
- package/coverage/lcov-report/dialog/index.html +0 -131
- package/coverage/lcov-report/dialog/styles.ts.html +0 -439
- package/coverage/lcov-report/divider/Divider.tsx.html +0 -280
- package/coverage/lcov-report/divider/index.html +0 -116
- package/coverage/lcov-report/draggable/index.html +0 -116
- package/coverage/lcov-report/draggable/useControlledDraggable.ts.html +0 -2131
- package/coverage/lcov-report/draggable/useDraggable.ts.html +0 -2398
- package/coverage/lcov-report/draggable/useDraggableOrig.ts.html +0 -316
- package/coverage/lcov-report/draggable/useLocalStorageDraggable.ts.html +0 -361
- package/coverage/lcov-report/draggable/useLocalStorageDraggableControls.ts.html +0 -487
- package/coverage/lcov-report/draggable/useLocalStorageDraggableLatest.ts.html +0 -334
- package/coverage/lcov-report/draggable/utils.ts.html +0 -808
- package/coverage/lcov-report/expansion-panel/ExpansionList.tsx.html +0 -211
- package/coverage/lcov-report/expansion-panel/ExpansionPanel.tsx.html +0 -943
- package/coverage/lcov-report/expansion-panel/ExpansionPanelHeader.tsx.html +0 -649
- package/coverage/lcov-report/expansion-panel/index.html +0 -146
- package/coverage/lcov-report/expansion-panel/useExpansionPanels.ts.html +0 -928
- package/coverage/lcov-report/filters.ts.html +0 -1045
- package/coverage/lcov-report/findMatchIndex.ts.html +0 -385
- package/coverage/lcov-report/form/AutoComplete.tsx.html +0 -283
- package/coverage/lcov-report/form/FileInput.tsx.html +0 -739
- package/coverage/lcov-report/form/Form.tsx.html +0 -238
- package/coverage/lcov-report/form/FormMessage.tsx.html +0 -322
- package/coverage/lcov-report/form/FormMessageContainer.tsx.html +0 -229
- package/coverage/lcov-report/form/InputToggle.tsx.html +0 -1108
- package/coverage/lcov-report/form/InputToggleIcon.tsx.html +0 -478
- package/coverage/lcov-report/form/Label.tsx.html +0 -442
- package/coverage/lcov-report/form/MenuItemInputToggle.tsx.html +0 -979
- package/coverage/lcov-report/form/MenuItemTextField.tsx.html +0 -289
- package/coverage/lcov-report/form/NativeSelect.tsx.html +0 -826
- package/coverage/lcov-report/form/OptGroup.tsx.html +0 -343
- package/coverage/lcov-report/form/Option.tsx.html +0 -727
- package/coverage/lcov-report/form/Password.tsx.html +0 -721
- package/coverage/lcov-report/form/Radio.tsx.html +0 -169
- package/coverage/lcov-report/form/ResizingTextArea.tsx.html +0 -442
- package/coverage/lcov-report/form/ResizingTextAreaWrapper.tsx.html +0 -310
- package/coverage/lcov-report/form/Select.tsx.html +0 -1456
- package/coverage/lcov-report/form/SelectOriginal.tsx.html +0 -1630
- package/coverage/lcov-report/form/SelectV2.tsx.html +0 -1024
- package/coverage/lcov-report/form/SelectedOption.tsx.html +0 -250
- package/coverage/lcov-report/form/SimpleTextArea.tsx.html +0 -727
- package/coverage/lcov-report/form/Slider.tsx.html +0 -2014
- package/coverage/lcov-report/form/SliderThumb.tsx.html +0 -1030
- package/coverage/lcov-report/form/SliderValueTooltip.tsx.html +0 -319
- package/coverage/lcov-report/form/Switch.tsx.html +0 -535
- package/coverage/lcov-report/form/SwitchTrack.tsx.html +0 -262
- package/coverage/lcov-report/form/TextArea.tsx.html +0 -964
- package/coverage/lcov-report/form/TextArea2.tsx.html +0 -985
- package/coverage/lcov-report/form/TextAreaBackup.tsx.html +0 -1006
- package/coverage/lcov-report/form/TextField.tsx.html +0 -829
- package/coverage/lcov-report/form/fileUtils.ts.html +0 -2155
- package/coverage/lcov-report/form/formMessageStyles.ts.html +0 -238
- package/coverage/lcov-report/form/index.html +0 -146
- package/coverage/lcov-report/form/inputToggleStyles.ts.html +0 -316
- package/coverage/lcov-report/form/selectUtils.ts.html +0 -397
- package/coverage/lcov-report/form/switchStyles.ts.html +0 -172
- package/coverage/lcov-report/form/textAreaStyles.ts.html +0 -382
- package/coverage/lcov-report/form/useAutoComplete.ts.html +0 -787
- package/coverage/lcov-report/form/useCheckboxGroup.ts.html +0 -1087
- package/coverage/lcov-report/form/useCombobox-6-13.ts.html +0 -1054
- package/coverage/lcov-report/form/useCombobox-6-15.ts.html +0 -1048
- package/coverage/lcov-report/form/useCombobox.ts.html +0 -1045
- package/coverage/lcov-report/form/useComboboxBoth.ts.html +0 -85
- package/coverage/lcov-report/form/useComboboxDialog.ts.html +0 -85
- package/coverage/lcov-report/form/useComboboxList.ts.html +0 -418
- package/coverage/lcov-report/form/useComboboxOrig.ts.html +0 -781
- package/coverage/lcov-report/form/useFileUpload.ts.html +0 -1702
- package/coverage/lcov-report/form/useFormReset.ts.html +0 -229
- package/coverage/lcov-report/form/useInlineAutoComplete.ts.html +0 -379
- package/coverage/lcov-report/form/useListboxProvider.ts.html +0 -214
- package/coverage/lcov-report/form/useNumberField.ts.html +0 -1561
- package/coverage/lcov-report/form/useRadioGroup.ts.html +0 -1009
- package/coverage/lcov-report/form/useRangeSlider.ts.html +0 -355
- package/coverage/lcov-report/form/useResizingTextArea.ts.html +0 -631
- package/coverage/lcov-report/form/useResizingTextArea2.ts.html +0 -631
- package/coverage/lcov-report/form/useSelectCombobox.ts.html +0 -499
- package/coverage/lcov-report/form/useSlider.ts.html +0 -421
- package/coverage/lcov-report/form/useTextField.ts.html +0 -2203
- package/coverage/lcov-report/form/utils.ts.html +0 -382
- package/coverage/lcov-report/form/validation.ts.html +0 -886
- package/coverage/lcov-report/getHrefFromParents.ts.html +0 -133
- package/coverage/lcov-report/getListItemHeight.ts.html +0 -298
- package/coverage/lcov-report/hoverMode/index.html +0 -116
- package/coverage/lcov-report/hoverMode/useHoverMode.ts.html +0 -676
- package/coverage/lcov-report/icon/FontIcon.tsx.html +0 -256
- package/coverage/lcov-report/icon/MaterialIcon.tsx.html +0 -235
- package/coverage/lcov-report/icon/index.html +0 -116
- package/coverage/lcov-report/icon/styles.ts.html +0 -586
- package/coverage/lcov-report/iconConfig.tsx.html +0 -973
- package/coverage/lcov-report/inputToggleStyles.ts.html +0 -316
- package/coverage/lcov-report/interaction/ElementInteractionProvider.tsx.html +0 -253
- package/coverage/lcov-report/interaction/UserInteractionModeProvider.tsx.html +0 -679
- package/coverage/lcov-report/interaction/config.ts.html +0 -181
- package/coverage/lcov-report/interaction/index.html +0 -131
- package/coverage/lcov-report/layout/LayoutAppBar.tsx.html +0 -358
- package/coverage/lcov-report/layout/LayoutNav.tsx.html +0 -682
- package/coverage/lcov-report/layout/LayoutWindowSplitter.tsx.html +0 -460
- package/coverage/lcov-report/layout/Main.tsx.html +0 -364
- package/coverage/lcov-report/layout/NavigationLink.tsx.html +0 -334
- package/coverage/lcov-report/layout/NavigationRail.tsx.html +0 -157
- package/coverage/lcov-report/layout/index.html +0 -161
- package/coverage/lcov-report/layout/layoutNavStyles.ts.html +0 -166
- package/coverage/lcov-report/layout/layoutWindowSplitterStyles.ts.html +0 -220
- package/coverage/lcov-report/layout/navigationLinkStyles.ts.html +0 -250
- package/coverage/lcov-report/layout/navigationRailStyles.ts.html +0 -148
- package/coverage/lcov-report/layout/useExpandableLayout.ts.html +0 -928
- package/coverage/lcov-report/layout/useExpandableLayoutAppBarTransition.ts.html +0 -199
- package/coverage/lcov-report/layout/useHorizontalLayoutTransition.ts.html +0 -349
- package/coverage/lcov-report/layout/useLayoutAppBarHeight.ts.html +0 -343
- package/coverage/lcov-report/layout/useLayoutNavigation.ts.html +0 -544
- package/coverage/lcov-report/layout/useLayoutTree.ts.html +0 -691
- package/coverage/lcov-report/layout/useLayoutWindowSplitter.ts.html +0 -517
- package/coverage/lcov-report/layout/useMainTabIndex.ts.html +0 -136
- package/coverage/lcov-report/layout/useResizableLayout.ts.html +0 -328
- package/coverage/lcov-report/layout/useTemporaryLayout.ts.html +0 -589
- package/coverage/lcov-report/link/Link.tsx.html +0 -358
- package/coverage/lcov-report/link/LinkProvider.tsx.html +0 -214
- package/coverage/lcov-report/link/SkipToMainContent.tsx.html +0 -448
- package/coverage/lcov-report/link/index.html +0 -116
- package/coverage/lcov-report/list/List.tsx.html +0 -490
- package/coverage/lcov-report/list/ListItem.tsx.html +0 -886
- package/coverage/lcov-report/list/ListItemAddon.tsx.html +0 -286
- package/coverage/lcov-report/list/ListItemChildren.tsx.html +0 -445
- package/coverage/lcov-report/list/ListItemLink.tsx.html +0 -616
- package/coverage/lcov-report/list/ListItemText.tsx.html +0 -280
- package/coverage/lcov-report/list/ListSubheader.tsx.html +0 -322
- package/coverage/lcov-report/list/index.html +0 -191
- package/coverage/lcov-report/list/listItemStyles.ts.html +0 -703
- package/coverage/lcov-report/materialConfig.ts.html +0 -703
- package/coverage/lcov-report/media-queries/AppSizeProvider.tsx.html +0 -499
- package/coverage/lcov-report/media-queries/appSize.ts.html +0 -445
- package/coverage/lcov-report/media-queries/index.html +0 -116
- package/coverage/lcov-report/media-queries/useMediaQuery.ts.html +0 -244
- package/coverage/lcov-report/media-queries/useMinWidthMediaQuery.ts.html +0 -115
- package/coverage/lcov-report/menu/DropdownMenu.tsx.html +0 -976
- package/coverage/lcov-report/menu/Menu.tsx.html +0 -1894
- package/coverage/lcov-report/menu/MenuConfigurationProvider.tsx.html +0 -637
- package/coverage/lcov-report/menu/MenuItem.tsx.html +0 -292
- package/coverage/lcov-report/menu/MenuItemCircularProgress.tsx.html +0 -433
- package/coverage/lcov-report/menu/MenuItemGroup.tsx.html +0 -382
- package/coverage/lcov-report/menu/MenuSheet.tsx.html +0 -502
- package/coverage/lcov-report/menu/MenuVisibilityProvider.tsx.html +0 -370
- package/coverage/lcov-report/menu/MenuWidget.tsx.html +0 -634
- package/coverage/lcov-report/menu/index.html +0 -116
- package/coverage/lcov-report/menu/menuConfig.ts.html +0 -118
- package/coverage/lcov-report/menu/useContextMenu.ts.html +0 -490
- package/coverage/lcov-report/menuItemInputToggleStyles.ts.html +0 -319
- package/coverage/lcov-report/movement/index.html +0 -116
- package/coverage/lcov-report/movement/useKeyboardMovementProvider.ts.html +0 -1723
- package/coverage/lcov-report/navigation/CollapsibleNavGroup.tsx.html +0 -334
- package/coverage/lcov-report/navigation/DefaultNavigationRenderer.tsx.html +0 -298
- package/coverage/lcov-report/navigation/NavGroup.tsx.html +0 -193
- package/coverage/lcov-report/navigation/NavItem.tsx.html +0 -160
- package/coverage/lcov-report/navigation/NavItemButton.tsx.html +0 -397
- package/coverage/lcov-report/navigation/NavItemLink.tsx.html +0 -574
- package/coverage/lcov-report/navigation/NavSubheader.tsx.html +0 -184
- package/coverage/lcov-report/navigation/Navigation.tsx.html +0 -358
- package/coverage/lcov-report/navigation/getHrefFromParents.ts.html +0 -130
- package/coverage/lcov-report/navigation/index.html +0 -146
- package/coverage/lcov-report/navigation/navGroupStyles.ts.html +0 -148
- package/coverage/lcov-report/navigation/navItemStyles.ts.html +0 -298
- package/coverage/lcov-report/overlay/Overlay.tsx.html +0 -655
- package/coverage/lcov-report/overlay/index.html +0 -116
- package/coverage/lcov-report/positioning/constants.ts.html +0 -463
- package/coverage/lcov-report/positioning/createVerticalPosition.ts.html +0 -1009
- package/coverage/lcov-report/positioning/getFixedPosition.ts.html +0 -616
- package/coverage/lcov-report/positioning/index.html +0 -131
- package/coverage/lcov-report/positioning/useFixedPositioning.ts.html +0 -1321
- package/coverage/lcov-report/progress/CircularProgress.tsx.html +0 -799
- package/coverage/lcov-report/progress/LinearProgress.tsx.html +0 -658
- package/coverage/lcov-report/progress/index.html +0 -116
- package/coverage/lcov-report/searching/caseInsensitive.ts.html +0 -685
- package/coverage/lcov-report/searching/toSearchQuery.ts.html +0 -145
- package/coverage/lcov-report/searching/useFuzzyMatch.ts.html +0 -211
- package/coverage/lcov-report/searching/utils.ts.html +0 -244
- package/coverage/lcov-report/segmented-button/SegmentedButton.tsx.html +0 -628
- package/coverage/lcov-report/segmented-button/SegmentedButtonContainer.tsx.html +0 -259
- package/coverage/lcov-report/segmented-button/index.html +0 -161
- package/coverage/lcov-report/segmented-button/segmentedButtonContainerStyles.ts.html +0 -151
- package/coverage/lcov-report/segmented-button/segmentedButtonStyles.ts.html +0 -199
- package/coverage/lcov-report/segmentedButtonContainerStyles.ts.html +0 -160
- package/coverage/lcov-report/segmentedButtonStyles.ts.html +0 -199
- package/coverage/lcov-report/sheet/Sheet.tsx.html +0 -397
- package/coverage/lcov-report/sheet/index.html +0 -116
- package/coverage/lcov-report/sheet/styles.ts.html +0 -376
- package/coverage/lcov-report/skeletonPlaceholderUtils.ts.html +0 -400
- package/coverage/lcov-report/snackbar/DefaultToastRenderer.tsx.html +0 -529
- package/coverage/lcov-report/snackbar/Snackbar.tsx.html +0 -610
- package/coverage/lcov-report/snackbar/Toast.tsx.html +0 -868
- package/coverage/lcov-report/snackbar/ToastContent.tsx.html +0 -364
- package/coverage/lcov-report/snackbar/ToastManager.tsx.html +0 -1804
- package/coverage/lcov-report/snackbar/ToastManagerProvider.tsx.html +0 -400
- package/coverage/lcov-report/snackbar/index.html +0 -116
- package/coverage/lcov-report/snackbar/snackbarStyles.ts.html +0 -139
- package/coverage/lcov-report/snackbar/toastContentStyles.ts.html +0 -196
- package/coverage/lcov-report/snackbar/toastStyles.ts.html +0 -349
- package/coverage/lcov-report/snackbar/useCurrentToastActions.ts.html +0 -226
- package/coverage/lcov-report/snackbarStyles.ts.html +0 -139
- package/coverage/lcov-report/src/AppSize.tsx.html +0 -247
- package/coverage/lcov-report/src/AppSizeProvider.tsx.html +0 -787
- package/coverage/lcov-report/src/CoreProviders.tsx.html +0 -412
- package/coverage/lcov-report/src/NoSsr.tsx.html +0 -250
- package/coverage/lcov-report/src/NullSsrSuspense.tsx.html +0 -223
- package/coverage/lcov-report/src/RootHtml.tsx.html +0 -370
- package/coverage/lcov-report/src/SsrProvider.tsx.html +0 -211
- package/coverage/lcov-report/src/app-bar/AppBar.tsx.html +0 -937
- package/coverage/lcov-report/src/app-bar/AppBarTitle.tsx.html +0 -445
- package/coverage/lcov-report/src/app-bar/index.html +0 -131
- package/coverage/lcov-report/src/autocomplete/Autocomplete.tsx.html +0 -328
- package/coverage/lcov-report/src/autocomplete/AutocompleteGeneric.tsx.html +0 -304
- package/coverage/lcov-report/src/autocomplete/index.html +0 -221
- package/coverage/lcov-report/src/autocomplete/useAutocomplete.ts.html +0 -1039
- package/coverage/lcov-report/src/autocomplete/useAutocompleteAgain.ts.html +0 -829
- package/coverage/lcov-report/src/autocomplete/useAutocompletev2.ts.html +0 -715
- package/coverage/lcov-report/src/autocomplete/useInlineAutocomplete.ts.html +0 -454
- package/coverage/lcov-report/src/autocomplete/useInlineSelection.ts.html +0 -373
- package/coverage/lcov-report/src/autocomplete/utils.ts.html +0 -196
- package/coverage/lcov-report/src/avatar/Avatar.tsx.html +0 -472
- package/coverage/lcov-report/src/avatar/index.html +0 -131
- package/coverage/lcov-report/src/avatar/styles.ts.html +0 -268
- package/coverage/lcov-report/src/badge/Badge.tsx.html +0 -382
- package/coverage/lcov-report/src/badge/index.html +0 -116
- package/coverage/lcov-report/src/box/Box.tsx.html +0 -541
- package/coverage/lcov-report/src/box/index.html +0 -131
- package/coverage/lcov-report/src/box/styles.ts.html +0 -622
- package/coverage/lcov-report/src/button/AsyncButton.tsx.html +0 -1045
- package/coverage/lcov-report/src/button/Button.tsx.html +0 -688
- package/coverage/lcov-report/src/button/ButtonUnstyled.tsx.html +0 -211
- package/coverage/lcov-report/src/button/FloatingActionButton.tsx.html +0 -382
- package/coverage/lcov-report/src/button/TooltippedButton.tsx.html +0 -445
- package/coverage/lcov-report/src/button/buttonStyles.ts.html +0 -607
- package/coverage/lcov-report/src/button/buttonUnstyledStyles.ts.html +0 -142
- package/coverage/lcov-report/src/button/index.html +0 -116
- package/coverage/lcov-report/src/card/Card.tsx.html +0 -349
- package/coverage/lcov-report/src/card/CardContent.tsx.html +0 -223
- package/coverage/lcov-report/src/card/CardFooter.tsx.html +0 -196
- package/coverage/lcov-report/src/card/CardHeader.tsx.html +0 -319
- package/coverage/lcov-report/src/card/CardSubtitle.tsx.html +0 -250
- package/coverage/lcov-report/src/card/CardTitle.tsx.html +0 -247
- package/coverage/lcov-report/src/card/ClickableCard.tsx.html +0 -400
- package/coverage/lcov-report/src/card/index.html +0 -221
- package/coverage/lcov-report/src/card/styles.ts.html +0 -694
- package/coverage/lcov-report/src/chip/Chip.tsx.html +0 -1102
- package/coverage/lcov-report/src/chip/index.html +0 -131
- package/coverage/lcov-report/src/chip/styles.ts.html +0 -457
- package/coverage/lcov-report/src/cssUtils.ts.html +0 -787
- package/coverage/lcov-report/src/delegateEvent.ts.html +0 -619
- package/coverage/lcov-report/src/dialog/Dialog.tsx.html +0 -1309
- package/coverage/lcov-report/src/dialog/DialogContainer.tsx.html +0 -175
- package/coverage/lcov-report/src/dialog/DialogContent.tsx.html +0 -178
- package/coverage/lcov-report/src/dialog/DialogFooter.tsx.html +0 -169
- package/coverage/lcov-report/src/dialog/DialogHeader.tsx.html +0 -148
- package/coverage/lcov-report/src/dialog/DialogTitle.tsx.html +0 -256
- package/coverage/lcov-report/src/dialog/FixedDialog.tsx.html +0 -577
- package/coverage/lcov-report/src/dialog/NestedDialogProvider.ts.html +0 -127
- package/coverage/lcov-report/src/dialog/index.html +0 -236
- package/coverage/lcov-report/src/dialog/styles.ts.html +0 -439
- package/coverage/lcov-report/src/divider/Divider.tsx.html +0 -274
- package/coverage/lcov-report/src/divider/VerticalDivider.tsx.html +0 -235
- package/coverage/lcov-report/src/divider/index.html +0 -116
- package/coverage/lcov-report/src/divider/styles.ts.html +0 -232
- package/coverage/lcov-report/src/divider/useVerticalDividerHeight.ts.html +0 -301
- package/coverage/lcov-report/src/draggable/index.html +0 -131
- package/coverage/lcov-report/src/draggable/useControlledDraggable.ts.html +0 -2137
- package/coverage/lcov-report/src/draggable/useDraggable.ts.html +0 -2398
- package/coverage/lcov-report/src/draggable/useDraggableOrig.ts.html +0 -316
- package/coverage/lcov-report/src/draggable/useLocalStorageDraggable.ts.html +0 -370
- package/coverage/lcov-report/src/draggable/utils.ts.html +0 -808
- package/coverage/lcov-report/src/expansion-panel/ExpansionList.tsx.html +0 -211
- package/coverage/lcov-report/src/expansion-panel/ExpansionPanel.tsx.html +0 -943
- package/coverage/lcov-report/src/expansion-panel/ExpansionPanelHeader.tsx.html +0 -649
- package/coverage/lcov-report/src/expansion-panel/index.html +0 -176
- package/coverage/lcov-report/src/expansion-panel/useExpansionList.ts.html +0 -322
- package/coverage/lcov-report/src/expansion-panel/useExpansionPanels.ts.html +0 -928
- package/coverage/lcov-report/src/focus/index.html +0 -131
- package/coverage/lcov-report/src/focus/useFocusContainer.ts.html +0 -883
- package/coverage/lcov-report/src/focus/utils.ts.html +0 -544
- package/coverage/lcov-report/src/form/AutoComplete.tsx.html +0 -283
- package/coverage/lcov-report/src/form/Checkbox.tsx.html +0 -160
- package/coverage/lcov-report/src/form/Fieldset.tsx.html +0 -355
- package/coverage/lcov-report/src/form/FileInput.tsx.html +0 -739
- package/coverage/lcov-report/src/form/Form.tsx.html +0 -238
- package/coverage/lcov-report/src/form/FormMessage.tsx.html +0 -322
- package/coverage/lcov-report/src/form/FormMessageContainer.tsx.html +0 -223
- package/coverage/lcov-report/src/form/FormMessageCounter.tsx.html +0 -262
- package/coverage/lcov-report/src/form/FormThemeProvider.tsx.html +0 -313
- package/coverage/lcov-report/src/form/InputToggle.tsx.html +0 -1108
- package/coverage/lcov-report/src/form/InputToggleIcon.tsx.html +0 -478
- package/coverage/lcov-report/src/form/Label.tsx.html +0 -439
- package/coverage/lcov-report/src/form/Legend.tsx.html +0 -199
- package/coverage/lcov-report/src/form/MenuItemCheckbox.tsx.html +0 -223
- package/coverage/lcov-report/src/form/MenuItemFileInput.tsx.html +0 -424
- package/coverage/lcov-report/src/form/MenuItemInputToggle.tsx.html +0 -925
- package/coverage/lcov-report/src/form/MenuItemRadio.tsx.html +0 -436
- package/coverage/lcov-report/src/form/MenuItemSwitch.tsx.html +0 -211
- package/coverage/lcov-report/src/form/MenuItemTextField.tsx.html +0 -289
- package/coverage/lcov-report/src/form/NativeSelect.tsx.html +0 -763
- package/coverage/lcov-report/src/form/OptGroup.tsx.html +0 -343
- package/coverage/lcov-report/src/form/Option.tsx.html +0 -709
- package/coverage/lcov-report/src/form/Password.tsx.html +0 -721
- package/coverage/lcov-report/src/form/Radio.tsx.html +0 -172
- package/coverage/lcov-report/src/form/ResizingTextArea.tsx.html +0 -988
- package/coverage/lcov-report/src/form/ResizingTextAreaWrapper.tsx.html +0 -310
- package/coverage/lcov-report/src/form/Select.tsx.html +0 -1411
- package/coverage/lcov-report/src/form/SelectValue.tsx.html +0 -202
- package/coverage/lcov-report/src/form/SimpleTextArea.tsx.html +0 -694
- package/coverage/lcov-report/src/form/Slider.tsx.html +0 -2008
- package/coverage/lcov-report/src/form/SliderContainer.tsx.html +0 -358
- package/coverage/lcov-report/src/form/SliderMark.tsx.html +0 -208
- package/coverage/lcov-report/src/form/SliderMarkLabel.tsx.html +0 -271
- package/coverage/lcov-report/src/form/SliderThumb.tsx.html +0 -1084
- package/coverage/lcov-report/src/form/SliderTrack.tsx.html +0 -454
- package/coverage/lcov-report/src/form/SliderValueMarks.tsx.html +0 -745
- package/coverage/lcov-report/src/form/SliderValueTooltip.tsx.html +0 -319
- package/coverage/lcov-report/src/form/Switch.tsx.html +0 -535
- package/coverage/lcov-report/src/form/SwitchTrack.tsx.html +0 -262
- package/coverage/lcov-report/src/form/TextArea.tsx.html +0 -1006
- package/coverage/lcov-report/src/form/TextArea2.tsx.html +0 -985
- package/coverage/lcov-report/src/form/TextAreaBackup.tsx.html +0 -985
- package/coverage/lcov-report/src/form/TextField.tsx.html +0 -829
- package/coverage/lcov-report/src/form/TextFieldAddon.tsx.html +0 -382
- package/coverage/lcov-report/src/form/TextFieldContainer.tsx.html +0 -364
- package/coverage/lcov-report/src/form/TextFieldContainerStyles.ts.html +0 -418
- package/coverage/lcov-report/src/form/fileUtils.ts.html +0 -2155
- package/coverage/lcov-report/src/form/formConfig.ts.html +0 -157
- package/coverage/lcov-report/src/form/formMessageStyles.ts.html +0 -238
- package/coverage/lcov-report/src/form/index.html +0 -176
- package/coverage/lcov-report/src/form/inputToggleStyles.ts.html +0 -316
- package/coverage/lcov-report/src/form/menuItemInputToggleStyles.ts.html +0 -319
- package/coverage/lcov-report/src/form/nativeSelectStyles.ts.html +0 -253
- package/coverage/lcov-report/src/form/optionStyles.ts.html +0 -151
- package/coverage/lcov-report/src/form/passwordStyles.ts.html +0 -235
- package/coverage/lcov-report/src/form/selectStyles.ts.html +0 -181
- package/coverage/lcov-report/src/form/selectUtils.ts.html +0 -430
- package/coverage/lcov-report/src/form/sliderUtils.ts.html +0 -790
- package/coverage/lcov-report/src/form/switchStyles.ts.html +0 -172
- package/coverage/lcov-report/src/form/textAreaStyles.ts.html +0 -385
- package/coverage/lcov-report/src/form/textFieldStyles.ts.html +0 -184
- package/coverage/lcov-report/src/form/useAutoComplete.ts.html +0 -787
- package/coverage/lcov-report/src/form/useCheckboxGroup.ts.html +0 -1087
- package/coverage/lcov-report/src/form/useCombobox.ts.html +0 -1540
- package/coverage/lcov-report/src/form/useComboboxBoth.ts.html +0 -85
- package/coverage/lcov-report/src/form/useComboboxDialog.ts.html +0 -85
- package/coverage/lcov-report/src/form/useComboboxList.ts.html +0 -403
- package/coverage/lcov-report/src/form/useComboboxOrig.ts.html +0 -781
- package/coverage/lcov-report/src/form/useEditableCombobox.ts.html +0 -502
- package/coverage/lcov-report/src/form/useFileUpload.ts.html +0 -1702
- package/coverage/lcov-report/src/form/useInlineAutoComplete.ts.html +0 -109
- package/coverage/lcov-report/src/form/useListboxProvider.ts.html +0 -214
- package/coverage/lcov-report/src/form/useNumberField.ts.html +0 -1561
- package/coverage/lcov-report/src/form/useRadioGroup.ts.html +0 -1021
- package/coverage/lcov-report/src/form/useRangeSlider.ts.html +0 -355
- package/coverage/lcov-report/src/form/useResizingTextArea.ts.html +0 -634
- package/coverage/lcov-report/src/form/useResizingTextArea.tsx.html +0 -523
- package/coverage/lcov-report/src/form/useSelectCombobox.ts.html +0 -295
- package/coverage/lcov-report/src/form/useSlider.ts.html +0 -421
- package/coverage/lcov-report/src/form/useTextField.ts.html +0 -2203
- package/coverage/lcov-report/src/form/utils.ts.html +0 -373
- package/coverage/lcov-report/src/form/validation.ts.html +0 -886
- package/coverage/lcov-report/src/hoverMode/index.html +0 -131
- package/coverage/lcov-report/src/hoverMode/useHoverMode.ts.html +0 -676
- package/coverage/lcov-report/src/hoverMode/useHoverModeProvider.ts.html +0 -1018
- package/coverage/lcov-report/src/icon/FontIcon.tsx.html +0 -256
- package/coverage/lcov-report/src/icon/IconProvider.tsx.html +0 -931
- package/coverage/lcov-report/src/icon/IconRotator.tsx.html +0 -322
- package/coverage/lcov-report/src/icon/MaterialIcon.tsx.html +0 -235
- package/coverage/lcov-report/src/icon/MaterialIconsProvider.ts.html +0 -154
- package/coverage/lcov-report/src/icon/MaterialSymbol.tsx.html +0 -421
- package/coverage/lcov-report/src/icon/MaterialSymbolsProvider.tsx.html +0 -757
- package/coverage/lcov-report/src/icon/SVGIcon.tsx.html +0 -445
- package/coverage/lcov-report/src/icon/TextIconSpacing.tsx.html +0 -679
- package/coverage/lcov-report/src/icon/iconConfig.tsx.html +0 -973
- package/coverage/lcov-report/src/icon/index.html +0 -116
- package/coverage/lcov-report/src/icon/material.ts.html +0 -15922
- package/coverage/lcov-report/src/icon/materialConfig.ts.html +0 -703
- package/coverage/lcov-report/src/icon/styles.ts.html +0 -586
- package/coverage/lcov-report/src/index.html +0 -116
- package/coverage/lcov-report/src/interaction/ElementInteractionProvider.tsx.html +0 -277
- package/coverage/lcov-report/src/interaction/LazyRippleContainer.tsx.html +0 -136
- package/coverage/lcov-report/src/interaction/Ripple.tsx.html +0 -283
- package/coverage/lcov-report/src/interaction/RippleContainer.tsx.html +0 -211
- package/coverage/lcov-report/src/interaction/UserInteractionModeProvider.tsx.html +0 -679
- package/coverage/lcov-report/src/interaction/config.ts.html +0 -181
- package/coverage/lcov-report/src/interaction/index.html +0 -206
- package/coverage/lcov-report/src/interaction/useElementInteraction.ts.html +0 -1474
- package/coverage/lcov-report/src/interaction/useElementInteraction.tsx.html +0 -1513
- package/coverage/lcov-report/src/interaction/useHigherContrastChildren.tsx.html +0 -355
- package/coverage/lcov-report/src/interaction/utils.ts.html +0 -496
- package/coverage/lcov-report/src/layout/DefaultLayoutNavigationItemRenderer.tsx.html +0 -169
- package/coverage/lcov-report/src/layout/DefaultLayoutNavigationMiniItemRenderer.tsx.html +0 -160
- package/coverage/lcov-report/src/layout/Layout.tsx.html +0 -235
- package/coverage/lcov-report/src/layout/LayoutAppBar.tsx.html +0 -364
- package/coverage/lcov-report/src/layout/LayoutAppBarTitle.tsx.html +0 -193
- package/coverage/lcov-report/src/layout/LayoutChildren.tsx.html +0 -718
- package/coverage/lcov-report/src/layout/LayoutCloseNavigationButton.tsx.html +0 -265
- package/coverage/lcov-report/src/layout/LayoutMain.tsx.html +0 -580
- package/coverage/lcov-report/src/layout/LayoutNav.tsx.html +0 -688
- package/coverage/lcov-report/src/layout/LayoutNavToggle.tsx.html +0 -430
- package/coverage/lcov-report/src/layout/LayoutNavigation.tsx.html +0 -445
- package/coverage/lcov-report/src/layout/LayoutNavigationHeader.tsx.html +0 -274
- package/coverage/lcov-report/src/layout/LayoutProvider.tsx.html +0 -706
- package/coverage/lcov-report/src/layout/LayoutTree.tsx.html +0 -331
- package/coverage/lcov-report/src/layout/LayoutWindowSplitter.tsx.html +0 -472
- package/coverage/lcov-report/src/layout/Main.tsx.html +0 -364
- package/coverage/lcov-report/src/layout/MiniLayoutWrapper.tsx.html +0 -541
- package/coverage/lcov-report/src/layout/NavigationLink.tsx.html +0 -334
- package/coverage/lcov-report/src/layout/NavigationRail.tsx.html +0 -157
- package/coverage/lcov-report/src/layout/TemporaryLayout.tsx.html +0 -85
- package/coverage/lcov-report/src/layout/constants.ts.html +0 -169
- package/coverage/lcov-report/src/layout/index.html +0 -146
- package/coverage/lcov-report/src/layout/layoutNavStyles.ts.html +0 -166
- package/coverage/lcov-report/src/layout/layoutWindowSplitterStyles.ts.html +0 -220
- package/coverage/lcov-report/src/layout/mainStyles.ts.html +0 -217
- package/coverage/lcov-report/src/layout/navigationLinkStyles.ts.html +0 -250
- package/coverage/lcov-report/src/layout/navigationRailStyles.ts.html +0 -148
- package/coverage/lcov-report/src/layout/useExpandableLayout.ts.html +0 -742
- package/coverage/lcov-report/src/layout/useHorizontalLayoutTransition.ts.html +0 -349
- package/coverage/lcov-report/src/layout/useLayoutAppBarHeight.ts.html +0 -358
- package/coverage/lcov-report/src/layout/useLayoutNavigation.ts.html +0 -544
- package/coverage/lcov-report/src/layout/useLayoutTree.ts.html +0 -691
- package/coverage/lcov-report/src/layout/useLayoutWindowSplitter.ts.html +0 -496
- package/coverage/lcov-report/src/layout/useMainTabIndex.ts.html +0 -136
- package/coverage/lcov-report/src/layout/useResizableLayout.ts.html +0 -535
- package/coverage/lcov-report/src/layout/useTemporaryLayout.ts.html +0 -589
- package/coverage/lcov-report/src/layout/utils.ts.html +0 -391
- package/coverage/lcov-report/src/link/Link.tsx.html +0 -358
- package/coverage/lcov-report/src/link/LinkProvider.tsx.html +0 -238
- package/coverage/lcov-report/src/link/SkipToMainContent.tsx.html +0 -448
- package/coverage/lcov-report/src/link/index.html +0 -146
- package/coverage/lcov-report/src/link/styles.ts.html +0 -238
- package/coverage/lcov-report/src/list/List.tsx.html +0 -487
- package/coverage/lcov-report/src/list/ListItem.tsx.html +0 -892
- package/coverage/lcov-report/src/list/ListItemAddon.tsx.html +0 -286
- package/coverage/lcov-report/src/list/ListItemChildren.tsx.html +0 -445
- package/coverage/lcov-report/src/list/ListItemLink.tsx.html +0 -616
- package/coverage/lcov-report/src/list/ListItemText.tsx.html +0 -277
- package/coverage/lcov-report/src/list/ListSubheader.tsx.html +0 -319
- package/coverage/lcov-report/src/list/getListItemHeight.ts.html +0 -298
- package/coverage/lcov-report/src/list/index.html +0 -116
- package/coverage/lcov-report/src/list/listItemStyles.ts.html +0 -703
- package/coverage/lcov-report/src/main-layout/DefaultLayoutNavigationItemRenderer.tsx.html +0 -169
- package/coverage/lcov-report/src/main-layout/DefaultLayoutNavigationMiniItemRenderer.tsx.html +0 -160
- package/coverage/lcov-report/src/main-layout/Main.tsx.html +0 -298
- package/coverage/lcov-report/src/main-layout/MainLayout.tsx.html +0 -619
- package/coverage/lcov-report/src/main-layout/MainLayoutAppBar.tsx.html +0 -448
- package/coverage/lcov-report/src/main-layout/MainLayoutNavigationButton.tsx.html +0 -295
- package/coverage/lcov-report/src/main-layout/MainLayoutTitle.tsx.html +0 -184
- package/coverage/lcov-report/src/main-layout/MainNavWindowSplitter.tsx.html +0 -427
- package/coverage/lcov-report/src/main-layout/MainNavigation.tsx.html +0 -568
- package/coverage/lcov-report/src/main-layout/MainNavigationTree.tsx.html +0 -115
- package/coverage/lcov-report/src/main-layout/index.html +0 -296
- package/coverage/lcov-report/src/main-layout/useLayoutNavigation.ts.html +0 -727
- package/coverage/lcov-report/src/main-layout/useMainLayout.ts.html +0 -523
- package/coverage/lcov-report/src/main-layout/useMainLayoutProvider.ts.html +0 -484
- package/coverage/lcov-report/src/main-layout-current/DefaultLayoutNavigationItemRenderer.tsx.html +0 -169
- package/coverage/lcov-report/src/main-layout-current/DefaultLayoutNavigationMiniItemRenderer.tsx.html +0 -160
- package/coverage/lcov-report/src/main-layout-current/Main.tsx.html +0 -265
- package/coverage/lcov-report/src/main-layout-current/MainLayout.tsx.html +0 -739
- package/coverage/lcov-report/src/main-layout-current/MainLayoutAppBar.tsx.html +0 -352
- package/coverage/lcov-report/src/main-layout-current/MainLayoutProvider.ts.html +0 -991
- package/coverage/lcov-report/src/main-layout-current/MainLayoutTitle.tsx.html +0 -184
- package/coverage/lcov-report/src/main-layout-current/MainNavWindowSplitter.tsx.html +0 -520
- package/coverage/lcov-report/src/main-layout-current/MainNavigation.tsx.html +0 -586
- package/coverage/lcov-report/src/main-layout-current/NavigationButton.tsx.html +0 -283
- package/coverage/lcov-report/src/main-layout-current/index.html +0 -266
- package/coverage/lcov-report/src/main-layout-current/useLayoutNavigation.ts.html +0 -727
- package/coverage/lcov-report/src/media-queries/AppSizeProvider.tsx.html +0 -502
- package/coverage/lcov-report/src/media-queries/appSize.ts.html +0 -445
- package/coverage/lcov-report/src/media-queries/index.html +0 -146
- package/coverage/lcov-report/src/media-queries/useMediaQuery.ts.html +0 -244
- package/coverage/lcov-report/src/media-queries/useMinWidthMediaQuery.ts.html +0 -115
- package/coverage/lcov-report/src/menu/DropdownMenu.tsx.html +0 -976
- package/coverage/lcov-report/src/menu/Menu.tsx.html +0 -1870
- package/coverage/lcov-report/src/menu/MenuBar.tsx.html +0 -442
- package/coverage/lcov-report/src/menu/MenuButton.tsx.html +0 -490
- package/coverage/lcov-report/src/menu/MenuConfigurationProvider.tsx.html +0 -637
- package/coverage/lcov-report/src/menu/MenuItem.tsx.html +0 -292
- package/coverage/lcov-report/src/menu/MenuItemButton.tsx.html +0 -580
- package/coverage/lcov-report/src/menu/MenuItemCircularProgress.tsx.html +0 -433
- package/coverage/lcov-report/src/menu/MenuItemGroup.tsx.html +0 -376
- package/coverage/lcov-report/src/menu/MenuItemSeparator.tsx.html +0 -226
- package/coverage/lcov-report/src/menu/MenuSheet.tsx.html +0 -502
- package/coverage/lcov-report/src/menu/MenuVisibilityProvider.tsx.html +0 -370
- package/coverage/lcov-report/src/menu/MenuWidget.tsx.html +0 -631
- package/coverage/lcov-report/src/menu/MenuWidgetKeyboardProvider.tsx.html +0 -190
- package/coverage/lcov-report/src/menu/index.html +0 -116
- package/coverage/lcov-report/src/menu/useContextMenu.ts.html +0 -490
- package/coverage/lcov-report/src/menu/useMenuBarProvider.ts.html +0 -349
- package/coverage/lcov-report/src/menu/utils.ts.html +0 -271
- package/coverage/lcov-report/src/movement/constants.ts.html +0 -193
- package/coverage/lcov-report/src/movement/findMatchIndex.ts.html +0 -385
- package/coverage/lcov-report/src/movement/index.html +0 -116
- package/coverage/lcov-report/src/movement/useKeyboardMovementProvider.ts.html +0 -1687
- package/coverage/lcov-report/src/movement/utils.ts.html +0 -895
- package/coverage/lcov-report/src/navigation/CollapsibleNavGroup.tsx.html +0 -367
- package/coverage/lcov-report/src/navigation/DefaultNavigationRenderer.tsx.html +0 -325
- package/coverage/lcov-report/src/navigation/NavGroup.tsx.html +0 -202
- package/coverage/lcov-report/src/navigation/NavItem.tsx.html +0 -172
- package/coverage/lcov-report/src/navigation/NavSubheader.tsx.html +0 -193
- package/coverage/lcov-report/src/navigation/Navigation.tsx.html +0 -358
- package/coverage/lcov-report/src/navigation/index.html +0 -191
- package/coverage/lcov-report/src/overlay/Overlay.tsx.html +0 -556
- package/coverage/lcov-report/src/overlay/index.html +0 -131
- package/coverage/lcov-report/src/overlay/overlayStyles.ts.html +0 -340
- package/coverage/lcov-report/src/portal/Portal.tsx.html +0 -223
- package/coverage/lcov-report/src/portal/PortalContainerProvider.tsx.html +0 -367
- package/coverage/lcov-report/src/portal/index.html +0 -131
- package/coverage/lcov-report/src/positioning/constants.ts.html +0 -463
- package/coverage/lcov-report/src/positioning/getFixedPosition.ts.html +0 -610
- package/coverage/lcov-report/src/positioning/index.html +0 -191
- package/coverage/lcov-report/src/positioning/useFixedPositioning.ts.html +0 -1339
- package/coverage/lcov-report/src/positioning/utils.ts.html +0 -1225
- package/coverage/lcov-report/src/progress/CircularProgress.tsx.html +0 -799
- package/coverage/lcov-report/src/progress/LinearProgress.tsx.html +0 -658
- package/coverage/lcov-report/src/progress/getProgressA11y.ts.html +0 -160
- package/coverage/lcov-report/src/progress/index.html +0 -146
- package/coverage/lcov-report/src/responsive-item/ResponsiveItemContainer.tsx.html +0 -628
- package/coverage/lcov-report/src/responsive-item/ResponsiveItemOverlay.tsx.html +0 -385
- package/coverage/lcov-report/src/responsive-item/index.html +0 -146
- package/coverage/lcov-report/src/responsive-item/styles.ts.html +0 -259
- package/coverage/lcov-report/src/scroll/ScrollLock.tsx.html +0 -133
- package/coverage/lcov-report/src/scroll/getScrollbarWidth.ts.html +0 -181
- package/coverage/lcov-report/src/scroll/index.html +0 -146
- package/coverage/lcov-report/src/scroll/useScrollLock.ts.html +0 -241
- package/coverage/lcov-report/src/segmented-button/SegmentedButton.tsx.html +0 -619
- package/coverage/lcov-report/src/segmented-button/SegmentedButtonContainer.tsx.html +0 -277
- package/coverage/lcov-report/src/segmented-button/index.html +0 -161
- package/coverage/lcov-report/src/segmented-button/segmentedButtonContainerStyles.ts.html +0 -160
- package/coverage/lcov-report/src/segmented-button/segmentedButtonStyles.ts.html +0 -205
- package/coverage/lcov-report/src/sheet/Sheet.tsx.html +0 -397
- package/coverage/lcov-report/src/sheet/index.html +0 -131
- package/coverage/lcov-report/src/sheet/styles.ts.html +0 -376
- package/coverage/lcov-report/src/snackbar/DefaultToastRenderer.tsx.html +0 -526
- package/coverage/lcov-report/src/snackbar/Snackbar.tsx.html +0 -628
- package/coverage/lcov-report/src/snackbar/Toast.tsx.html +0 -841
- package/coverage/lcov-report/src/snackbar/ToastActionButton.tsx.html +0 -298
- package/coverage/lcov-report/src/snackbar/ToastCloseButton.tsx.html +0 -349
- package/coverage/lcov-report/src/snackbar/ToastContent.tsx.html +0 -364
- package/coverage/lcov-report/src/snackbar/ToastManager.tsx.html +0 -1786
- package/coverage/lcov-report/src/snackbar/ToastManagerProvider.tsx.html +0 -400
- package/coverage/lcov-report/src/snackbar/index.html +0 -281
- package/coverage/lcov-report/src/snackbar/snackbarStyles.ts.html +0 -214
- package/coverage/lcov-report/src/snackbar/toastContentStyles.ts.html +0 -196
- package/coverage/lcov-report/src/snackbar/toastStyles.ts.html +0 -268
- package/coverage/lcov-report/src/snackbar/useCurrentToastActions.ts.html +0 -226
- package/coverage/lcov-report/src/snackbar/useDefaultToastRenderer.ts.html +0 -85
- package/coverage/lcov-report/src/snackbar/useDefaultToastRenderer.tsx.html +0 -394
- package/coverage/lcov-report/src/snackbar/useRemoveToast.ts.html +0 -169
- package/coverage/lcov-report/src/snackbar/useToast.ts.html +0 -184
- package/coverage/lcov-report/src/snackbar/useToastRenderer.ts.html +0 -85
- package/coverage/lcov-report/src/suspense/CircularProgressSuspense.tsx.html +0 -283
- package/coverage/lcov-report/src/suspense/NullSsrSuspense.tsx.html +0 -151
- package/coverage/lcov-report/src/suspense/NullSuspense.tsx.html +0 -202
- package/coverage/lcov-report/src/suspense/index.html +0 -131
- package/coverage/lcov-report/src/table/Table.tsx.html +0 -457
- package/coverage/lcov-report/src/table/TableBody.tsx.html +0 -280
- package/coverage/lcov-report/src/table/TableCell.tsx.html +0 -982
- package/coverage/lcov-report/src/table/TableCellContent.tsx.html +0 -436
- package/coverage/lcov-report/src/table/TableCheckbox.tsx.html +0 -715
- package/coverage/lcov-report/src/table/TableConfigurationProvider.tsx.html +0 -484
- package/coverage/lcov-report/src/table/TableContainer.tsx.html +0 -220
- package/coverage/lcov-report/src/table/TableContainerProvider.tsx.html +0 -193
- package/coverage/lcov-report/src/table/TableFooter.tsx.html +0 -538
- package/coverage/lcov-report/src/table/TableHeader.tsx.html +0 -565
- package/coverage/lcov-report/src/table/TableRadio.tsx.html +0 -676
- package/coverage/lcov-report/src/table/TableRow.tsx.html +0 -289
- package/coverage/lcov-report/src/table/index.html +0 -371
- package/coverage/lcov-report/src/table/tableCellStyles.ts.html +0 -334
- package/coverage/lcov-report/src/table/tableContainerStyles.ts.html +0 -142
- package/coverage/lcov-report/src/table/tableFooterStyles.ts.html +0 -166
- package/coverage/lcov-report/src/table/tableHeaderStyles.ts.html +0 -172
- package/coverage/lcov-report/src/table/tableRowStyles.ts.html +0 -169
- package/coverage/lcov-report/src/table/tableStyles.ts.html +0 -157
- package/coverage/lcov-report/src/tabs/Tab.tsx.html +0 -622
- package/coverage/lcov-report/src/tabs/TabList.tsx.html +0 -796
- package/coverage/lcov-report/src/tabs/TabListScrollButton.tsx.html +0 -490
- package/coverage/lcov-report/src/tabs/index.html +0 -251
- package/coverage/lcov-report/src/tabs/tabIndicatorStyles.ts.html +0 -187
- package/coverage/lcov-report/src/tabs/tabListScrollButtonStyles.ts.html +0 -226
- package/coverage/lcov-report/src/tabs/tabListStyles.ts.html +0 -241
- package/coverage/lcov-report/src/tabs/tabStyles.ts.html +0 -265
- package/coverage/lcov-report/src/tabs/useTabList.ts.html +0 -736
- package/coverage/lcov-report/src/tabs/useTabs.ts.html +0 -1567
- package/coverage/lcov-report/src/tabs/useTabsOriginal.ts.html +0 -760
- package/coverage/lcov-report/src/tabs/utils.ts.html +0 -337
- package/coverage/lcov-report/src/test-utils/IntersectionObserver.ts.html +0 -235
- package/coverage/lcov-report/src/test-utils/ResizeObserver.ts.html +0 -1045
- package/coverage/lcov-report/src/test-utils/data-testid.ts.html +0 -112
- package/coverage/lcov-report/src/test-utils/drag.ts.html +0 -337
- package/coverage/lcov-report/src/test-utils/index.html +0 -116
- package/coverage/lcov-report/src/test-utils/jest-setup.ts.html +0 -124
- package/coverage/lcov-report/src/test-utils/matchMedia.ts.html +0 -679
- package/coverage/lcov-report/src/test-utils/polyfills/IntersectionObserver.ts.html +0 -109
- package/coverage/lcov-report/src/test-utils/polyfills/ResizeObserver.ts.html +0 -100
- package/coverage/lcov-report/src/test-utils/polyfills/TextDecoder.ts.html +0 -106
- package/coverage/lcov-report/src/test-utils/polyfills/TextEncoder.ts.html +0 -100
- package/coverage/lcov-report/src/test-utils/polyfills/index.html +0 -176
- package/coverage/lcov-report/src/test-utils/polyfills/matchMedia.ts.html +0 -109
- package/coverage/lcov-report/src/test-utils/polyfills/offsetParent.ts.html +0 -202
- package/coverage/lcov-report/src/test-utils/polyfills/scrollIntoView.ts.html +0 -112
- package/coverage/lcov-report/src/test-utils/render.tsx.html +0 -220
- package/coverage/lcov-report/src/test-utils/root-html-environment.ts.html +0 -85
- package/coverage/lcov-report/src/test-utils/timers.ts.html +0 -223
- package/coverage/lcov-report/src/test-utils/utils.ts.html +0 -118
- package/coverage/lcov-report/src/theme/ColorSchemeProvider.tsx.html +0 -811
- package/coverage/lcov-report/src/theme/LocalStorageColorSchemeProvider.tsx.html +0 -475
- package/coverage/lcov-report/src/theme/ThemeProvider.tsx.html +0 -1510
- package/coverage/lcov-report/src/theme/colors.ts.html +0 -910
- package/coverage/lcov-report/src/theme/cssVars.ts.html +0 -130
- package/coverage/lcov-report/src/theme/index.html +0 -251
- package/coverage/lcov-report/src/theme/useCSSVariables.ts.html +0 -622
- package/coverage/lcov-report/src/theme/useColorScheme.ts.html +0 -490
- package/coverage/lcov-report/src/theme/useColorSchemeMetaTag.ts.html +0 -244
- package/coverage/lcov-report/src/theme/useColorSchemeProvider.ts.html +0 -433
- package/coverage/lcov-report/src/theme/usePrefersColorScheme.ts.html +0 -121
- package/coverage/lcov-report/src/theme/utils.ts.html +0 -670
- package/coverage/lcov-report/src/tooltip/Tooltip.tsx.html +0 -559
- package/coverage/lcov-report/src/tooltip/TooltipHoverModeProvider.tsx.html +0 -409
- package/coverage/lcov-report/src/tooltip/constants.ts.html +0 -208
- package/coverage/lcov-report/src/tooltip/index.html +0 -206
- package/coverage/lcov-report/src/tooltip/tooltipStyles.ts.html +0 -181
- package/coverage/lcov-report/src/tooltip/useOverflowTooltip.ts.html +0 -364
- package/coverage/lcov-report/src/tooltip/useTooltip.ts.html +0 -2095
- package/coverage/lcov-report/src/tooltip/useTooltipPosition.ts.html +0 -388
- package/coverage/lcov-report/src/tooltip/utils.ts.html +0 -238
- package/coverage/lcov-report/src/transition/CSSTransition.tsx.html +0 -358
- package/coverage/lcov-report/src/transition/Collapse.tsx.html +0 -337
- package/coverage/lcov-report/src/transition/CrossFade.tsx.html +0 -436
- package/coverage/lcov-report/src/transition/ScaleTransition.tsx.html +0 -328
- package/coverage/lcov-report/src/transition/SkeletonPlaceholder.tsx.html +0 -613
- package/coverage/lcov-report/src/transition/Slide.tsx.html +0 -367
- package/coverage/lcov-report/src/transition/SlideContainer.tsx.html +0 -649
- package/coverage/lcov-report/src/transition/collapseStyles.ts.html +0 -184
- package/coverage/lcov-report/src/transition/config.ts.html +0 -187
- package/coverage/lcov-report/src/transition/constants.ts.html +0 -103
- package/coverage/lcov-report/src/transition/index.html +0 -416
- package/coverage/lcov-report/src/transition/maxWidthTransition.ts.html +0 -157
- package/coverage/lcov-report/src/transition/skeletonPlaceholderUtils.ts.html +0 -400
- package/coverage/lcov-report/src/transition/useCSSTransition.ts.html +0 -766
- package/coverage/lcov-report/src/transition/useCarousel.ts.html +0 -835
- package/coverage/lcov-report/src/transition/useCollapseTransition.ts.html +0 -1384
- package/coverage/lcov-report/src/transition/useCrossFadeTransition.ts.html +0 -469
- package/coverage/lcov-report/src/transition/useMaxWidthTransition.ts.html +0 -205
- package/coverage/lcov-report/src/transition/useScaleTransition.ts.html +0 -535
- package/coverage/lcov-report/src/transition/useSkeletonPlaceholder.ts.html +0 -958
- package/coverage/lcov-report/src/transition/useSlideTransition.ts.html +0 -424
- package/coverage/lcov-report/src/transition/useTransition.ts.html +0 -943
- package/coverage/lcov-report/src/transition/utils.ts.html +0 -529
- package/coverage/lcov-report/src/tree/DefaultTreeItemRenderer.tsx.html +0 -313
- package/coverage/lcov-report/src/tree/Tree.tsx.html +0 -1054
- package/coverage/lcov-report/src/tree/TreeGroup.tsx.html +0 -367
- package/coverage/lcov-report/src/tree/TreeItem.tsx.html +0 -1006
- package/coverage/lcov-report/src/tree/TreeItemExpander.tsx.html +0 -355
- package/coverage/lcov-report/src/tree/TreeProvider.tsx.html +0 -679
- package/coverage/lcov-report/src/tree/index.html +0 -116
- package/coverage/lcov-report/src/tree/styles.ts.html +0 -538
- package/coverage/lcov-report/src/tree/useTree.ts.html +0 -289
- package/coverage/lcov-report/src/tree/useTreeExpansion.ts.html +0 -241
- package/coverage/lcov-report/src/tree/useTreeItems.ts.html +0 -496
- package/coverage/lcov-report/src/tree/useTreeMovement.ts.html +0 -700
- package/coverage/lcov-report/src/tree/useTreeSelection.ts.html +0 -274
- package/coverage/lcov-report/src/tree/utils.ts.html +0 -277
- package/coverage/lcov-report/src/typography/SrOnly.tsx.html +0 -328
- package/coverage/lcov-report/src/typography/TextContainer.tsx.html +0 -403
- package/coverage/lcov-report/src/typography/Typography.tsx.html +0 -1027
- package/coverage/lcov-report/src/typography/WritingDirection.tsx.html +0 -775
- package/coverage/lcov-report/src/typography/WritingDirectionProvider.tsx.html +0 -781
- package/coverage/lcov-report/src/typography/index.html +0 -161
- package/coverage/lcov-report/src/useAsyncAction.ts.html +0 -685
- package/coverage/lcov-report/src/useDebounced.ts.html +0 -190
- package/coverage/lcov-report/src/useDebouncedFunction.ts.html +0 -436
- package/coverage/lcov-report/src/useDropzone.ts.html +0 -766
- package/coverage/lcov-report/src/useElementSize.ts.html +0 -409
- package/coverage/lcov-report/src/useEnsuredId.ts.html +0 -175
- package/coverage/lcov-report/src/useEnsuredRef.ts.html +0 -253
- package/coverage/lcov-report/src/useEnsuredState.ts.html +0 -235
- package/coverage/lcov-report/src/useHtmlClassName.ts.html +0 -142
- package/coverage/lcov-report/src/useIntersectionObserver.ts.html +0 -1075
- package/coverage/lcov-report/src/useIsomorphicLayoutEffect.ts.html +0 -130
- package/coverage/lcov-report/src/useLocalStorage.ts.html +0 -1852
- package/coverage/lcov-report/src/useLocalStorageEvents.ts.html +0 -85
- package/coverage/lcov-report/src/useMediaQuery.ts.html +0 -241
- package/coverage/lcov-report/src/useMinWidthMediaQuery.ts.html +0 -115
- package/coverage/lcov-report/src/useMutationObserver.ts.html +0 -310
- package/coverage/lcov-report/src/useOrientation.ts.html +0 -271
- package/coverage/lcov-report/src/usePageInactive.ts.html +0 -448
- package/coverage/lcov-report/src/useResizeListener.ts.html +0 -391
- package/coverage/lcov-report/src/useResizeObserver.ts.html +0 -790
- package/coverage/lcov-report/src/useThrottledFunction.ts.html +0 -484
- package/coverage/lcov-report/src/useToggle.ts.html +0 -253
- package/coverage/lcov-report/src/useUnmounted.ts.html +0 -217
- package/coverage/lcov-report/src/useWindowSize.ts.html +0 -460
- package/coverage/lcov-report/src/utils/RecursiveRender.tsx.html +0 -253
- package/coverage/lcov-report/src/utils/RenderRecursively.tsx.html +0 -790
- package/coverage/lcov-report/src/utils/alphaNumericSort.ts.html +0 -535
- package/coverage/lcov-report/src/utils/applyRef.ts.html +0 -214
- package/coverage/lcov-report/src/utils/bem.ts.html +0 -412
- package/coverage/lcov-report/src/utils/filters.ts.html +0 -1318
- package/coverage/lcov-report/src/utils/getClientPosition.ts.html +0 -226
- package/coverage/lcov-report/src/utils/getMiddleOfRange.ts.html +0 -163
- package/coverage/lcov-report/src/utils/getPercentage.ts.html +0 -253
- package/coverage/lcov-report/src/utils/getRangeDefaultValue.ts.html +0 -169
- package/coverage/lcov-report/src/utils/getRangeSteps.ts.html +0 -157
- package/coverage/lcov-report/src/utils/getUseStateSetterValue.ts.html +0 -85
- package/coverage/lcov-report/src/utils/identity.ts.html +0 -100
- package/coverage/lcov-report/src/utils/index.html +0 -116
- package/coverage/lcov-report/src/utils/isElementVisible.ts.html +0 -214
- package/coverage/lcov-report/src/utils/isValidNumber.ts.html +0 -118
- package/coverage/lcov-report/src/utils/loop.ts.html +0 -262
- package/coverage/lcov-report/src/utils/nearest.ts.html +0 -220
- package/coverage/lcov-report/src/utils/parseCssLengthUnit.ts.html +0 -280
- package/coverage/lcov-report/src/utils/randomInt.ts.html +0 -148
- package/coverage/lcov-report/src/utils/wait.ts.html +0 -139
- package/coverage/lcov-report/src/utils/withinRange.ts.html +0 -184
- package/coverage/lcov-report/src/window-splitter/WindowSplitter.tsx.html +0 -445
- package/coverage/lcov-report/src/window-splitter/index.html +0 -131
- package/coverage/lcov-report/src/window-splitter/useControlledWindowSplitter.ts.html +0 -562
- package/coverage/lcov-report/src/window-splitter/useLocalStorageWindowSplitter.ts.html +0 -331
- package/coverage/lcov-report/src/window-splitter/useWindowSplitter.ts.html +0 -508
- package/coverage/lcov-report/src/window-splitter/useWindowSplitterDefault.ts.html +0 -466
- package/coverage/lcov-report/src/window-splitter/useWindowSplitterMaxValue.ts.html +0 -256
- package/coverage/lcov-report/styles.ts.html +0 -457
- package/coverage/lcov-report/suspense/CircularProgressSuspense.tsx.html +0 -283
- package/coverage/lcov-report/suspense/NullSuspense.tsx.html +0 -202
- package/coverage/lcov-report/suspense/index.html +0 -131
- package/coverage/lcov-report/switchStyles.ts.html +0 -172
- package/coverage/lcov-report/tabIndicatorStyles.ts.html +0 -187
- package/coverage/lcov-report/tabListScrollButtonStyles.ts.html +0 -226
- package/coverage/lcov-report/tabListStyles.ts.html +0 -241
- package/coverage/lcov-report/tabStyles.ts.html +0 -265
- package/coverage/lcov-report/table/Table.tsx.html +0 -526
- package/coverage/lcov-report/table/TableBody.tsx.html +0 -280
- package/coverage/lcov-report/table/TableCell.tsx.html +0 -1180
- package/coverage/lcov-report/table/TableCheckbox.tsx.html +0 -709
- package/coverage/lcov-report/table/TableFooter.tsx.html +0 -508
- package/coverage/lcov-report/table/TableHeader.tsx.html +0 -607
- package/coverage/lcov-report/table/TableRadio.tsx.html +0 -670
- package/coverage/lcov-report/table/TableRow.tsx.html +0 -370
- package/coverage/lcov-report/table/index.html +0 -191
- package/coverage/lcov-report/tableCellStyles.ts.html +0 -334
- package/coverage/lcov-report/tableContainerStyles.ts.html +0 -142
- package/coverage/lcov-report/tableFooterStyles.ts.html +0 -157
- package/coverage/lcov-report/tableHeaderStyles.ts.html +0 -163
- package/coverage/lcov-report/tableRowStyles.ts.html +0 -169
- package/coverage/lcov-report/tableStyles.ts.html +0 -157
- package/coverage/lcov-report/tabs/Tab.tsx.html +0 -592
- package/coverage/lcov-report/tabs/TabList.tsx.html +0 -796
- package/coverage/lcov-report/tabs/TabListScrollButton.tsx.html +0 -472
- package/coverage/lcov-report/tabs/index.html +0 -206
- package/coverage/lcov-report/tabs/tabIndicatorStyles.ts.html +0 -187
- package/coverage/lcov-report/tabs/tabListStyles.ts.html +0 -241
- package/coverage/lcov-report/tabs/tabStyles.ts.html +0 -253
- package/coverage/lcov-report/tabs/useTabList.ts.html +0 -736
- package/coverage/lcov-report/tabs/useTabs.ts.html +0 -1567
- package/coverage/lcov-report/tabs/utils.ts.html +0 -337
- package/coverage/lcov-report/test-utils/index.html +0 -116
- package/coverage/lcov-report/test-utils/jest-setup.ts.html +0 -124
- package/coverage/lcov-report/test-utils/matchMedia.ts.html +0 -667
- package/coverage/lcov-report/test-utils/polyfills/index.html +0 -116
- package/coverage/lcov-report/test-utils/polyfills/matchMedia.ts.html +0 -109
- package/coverage/lcov-report/test-utils/polyfills/offsetParent.ts.html +0 -202
- package/coverage/lcov-report/test-utils/use.ts.html +0 -187
- package/coverage/lcov-report/theme/ColorSchemeProvider.tsx.html +0 -811
- package/coverage/lcov-report/theme/LocalStorageColorSchemeProvider.tsx.html +0 -268
- package/coverage/lcov-report/theme/ThemeProvider.tsx.html +0 -1453
- package/coverage/lcov-report/theme/cssVars.ts.html +0 -130
- package/coverage/lcov-report/theme/index.html +0 -191
- package/coverage/lcov-report/theme/useColorScheme.ts.html +0 -475
- package/coverage/lcov-report/theme/useColorSchemeMetaTag.ts.html +0 -175
- package/coverage/lcov-report/theme/useColorSchemeProvider.ts.html +0 -244
- package/coverage/lcov-report/theme/usePrefersColorScheme.ts.html +0 -103
- package/coverage/lcov-report/tooltip/Tooltip.tsx.html +0 -559
- package/coverage/lcov-report/tooltip/TooltipHoverModeProvider.tsx.html +0 -409
- package/coverage/lcov-report/tooltip/constants.ts.html +0 -208
- package/coverage/lcov-report/tooltip/index.html +0 -116
- package/coverage/lcov-report/tooltip/tooltipStyles.ts.html +0 -181
- package/coverage/lcov-report/tooltip/useOverflowTooltip.ts.html +0 -364
- package/coverage/lcov-report/tooltip/useTooltip.ts.html +0 -2095
- package/coverage/lcov-report/tooltipStyles.ts.html +0 -181
- package/coverage/lcov-report/transition/SkeletonPlaceholder.tsx.html +0 -595
- package/coverage/lcov-report/transition/config.ts.html +0 -187
- package/coverage/lcov-report/transition/index.html +0 -116
- package/coverage/lcov-report/transition/maxWidthTransition.ts.html +0 -157
- package/coverage/lcov-report/transition/skeletonPlaceholderUtils.ts.html +0 -400
- package/coverage/lcov-report/transition/useMaxWidthTransition.ts.html +0 -199
- package/coverage/lcov-report/transition/useScaleTransition.ts.html +0 -535
- package/coverage/lcov-report/transition/useSkeletonPlaceholder.ts.html +0 -952
- package/coverage/lcov-report/transition/useTransition.ts.html +0 -943
- package/coverage/lcov-report/tree/DefaultTreeItemRenderer.tsx.html +0 -301
- package/coverage/lcov-report/tree/Tree.tsx.html +0 -1054
- package/coverage/lcov-report/tree/TreeGroup.tsx.html +0 -370
- package/coverage/lcov-report/tree/TreeItem.tsx.html +0 -1006
- package/coverage/lcov-report/tree/TreeItemExpander.tsx.html +0 -328
- package/coverage/lcov-report/tree/TreeProvider.tsx.html +0 -679
- package/coverage/lcov-report/tree/index.html +0 -116
- package/coverage/lcov-report/tree/styles.ts.html +0 -538
- package/coverage/lcov-report/tree/useTree.ts.html +0 -289
- package/coverage/lcov-report/tree/useTreeExpansion.ts.html +0 -241
- package/coverage/lcov-report/tree/useTreeItems.ts.html +0 -496
- package/coverage/lcov-report/tree/useTreeMovement.ts.html +0 -700
- package/coverage/lcov-report/tree/useTreeSelection.ts.html +0 -274
- package/coverage/lcov-report/tree/utils.ts.html +0 -277
- package/coverage/lcov-report/typography/TextContainer.tsx.html +0 -433
- package/coverage/lcov-report/typography/Typography.tsx.html +0 -1027
- package/coverage/lcov-report/typography/WritingDirection.tsx.html +0 -775
- package/coverage/lcov-report/typography/WritingDirectionProvider.tsx.html +0 -781
- package/coverage/lcov-report/useAutoComplete.ts.html +0 -787
- package/coverage/lcov-report/useCSSTransition.ts.html +0 -763
- package/coverage/lcov-report/useCollapseTransition.ts.html +0 -1384
- package/coverage/lcov-report/useCombobox.ts.html +0 -1513
- package/coverage/lcov-report/useDraggable.ts.html +0 -2458
- package/coverage/lcov-report/useDropzone.ts.html +0 -763
- package/coverage/lcov-report/useEnsuredRef.ts.html +0 -250
- package/coverage/lcov-report/useExpandableLayout.ts.html +0 -802
- package/coverage/lcov-report/useExpansionPanels.ts.html +0 -913
- package/coverage/lcov-report/useHigherContrastChildren.tsx.html +0 -355
- package/coverage/lcov-report/useInlineAutoComplete.ts.html +0 -379
- package/coverage/lcov-report/useLayoutTree.ts.html +0 -691
- package/coverage/lcov-report/useLocalStorage.ts.html +0 -1828
- package/coverage/lcov-report/useMinWidthMediaQuery.ts.html +0 -115
- package/coverage/lcov-report/useMutationObserver.ts.html +0 -310
- package/coverage/lcov-report/useRemoveToast.ts.html +0 -160
- package/coverage/lcov-report/useResizeObserver.ts.html +0 -874
- package/coverage/lcov-report/useResizingTextArea.ts.html +0 -523
- package/coverage/lcov-report/useSelectCombobox.ts.html +0 -295
- package/coverage/lcov-report/useSkeletonPlaceholder.ts.html +0 -952
- package/coverage/lcov-report/useTabList.ts.html +0 -736
- package/coverage/lcov-report/useTabs.ts.html +0 -757
- package/coverage/lcov-report/useThrottledFunction.ts.html +0 -475
- package/coverage/lcov-report/useTooltip.ts.html +0 -2041
- package/coverage/lcov-report/useTransition.ts.html +0 -934
- package/coverage/lcov-report/useTree.ts.html +0 -286
- package/coverage/lcov-report/useWindowSplitter.ts.html +0 -640
- package/coverage/lcov-report/useWindowSplitterMaxValue.ts.html +0 -256
- package/coverage/lcov-report/utils/RecursiveRender.tsx.html +0 -253
- package/coverage/lcov-report/utils/RenderRecursively.tsx.html +0 -688
- package/coverage/lcov-report/utils/alphaNumericSort.ts.html +0 -496
- package/coverage/lcov-report/utils/caseInsensitiveFilter.ts.html +0 -397
- package/coverage/lcov-report/utils/filters.ts.html +0 -1318
- package/coverage/lcov-report/utils/fuzzyFilter.ts.html +0 -241
- package/coverage/lcov-report/utils/index.html +0 -116
- package/coverage/lcov-report/utils/isElementVisible.ts.html +0 -211
- package/coverage/lcov-report/utils/parseCssLengthUnit.ts.html +0 -280
- package/coverage/lcov-report/utils/randomInt.ts.html +0 -148
- package/coverage/lcov-report/utils/searching.ts.html +0 -85
- package/coverage/lcov-report/utils/wait.ts.html +0 -139
- package/coverage/lcov-report/wait.ts.html +0 -139
- package/coverage/lcov-report/window-splitter/WindowSplitter.tsx.html +0 -448
- package/coverage/lcov-report/window-splitter/index.html +0 -116
- package/coverage/lcov-report/window-splitter/useControlledWindowSplitter.ts.html +0 -562
- package/coverage/lcov-report/window-splitter/useLocalStorageWindowSplitter.ts.html +0 -331
- package/coverage/lcov-report/window-splitter/useWindowSplitter.ts.html +0 -640
- package/coverage/lcov-report/window-splitter/useWindowSplitterDefault.ts.html +0 -466
- package/coverage/lcov-report/window-splitter/useWindowSplitterOrig.ts.html +0 -598
- package/dist/useAsyncAction.js.map +0 -1
package/coverage/clover.xml
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
5
|
-
<package name="
|
|
6
|
-
<metrics statements="
|
|
7
|
-
<file name="
|
|
8
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1717449719698" clover="3.2.0">
|
|
3
|
+
<project timestamp="1717449719698" name="All files">
|
|
4
|
+
<metrics statements="745" coveredstatements="742" conditionals="33" coveredconditionals="21" methods="11" coveredmethods="11" elements="789" coveredelements="774" complexity="0" loc="745" ncloc="745" packages="4" files="4" classes="4"/>
|
|
5
|
+
<package name="autocomplete">
|
|
6
|
+
<metrics statements="294" coveredstatements="291" conditionals="18" coveredconditionals="14" methods="6" coveredmethods="6"/>
|
|
7
|
+
<file name="Autocomplete.tsx" path="/home/mlaursen/code/react-md/packages/core/src/autocomplete/Autocomplete.tsx">
|
|
8
|
+
<metrics statements="294" coveredstatements="291" conditionals="18" coveredconditionals="14" methods="6" coveredmethods="6"/>
|
|
9
9
|
<line num="1" count="1" type="stmt"/>
|
|
10
10
|
<line num="2" count="1" type="stmt"/>
|
|
11
11
|
<line num="3" count="1" type="stmt"/>
|
|
@@ -34,41 +34,278 @@
|
|
|
34
34
|
<line num="26" count="1" type="stmt"/>
|
|
35
35
|
<line num="27" count="1" type="stmt"/>
|
|
36
36
|
<line num="28" count="1" type="stmt"/>
|
|
37
|
-
<line num="29" count="1" type="
|
|
38
|
-
<line num="30" count="
|
|
39
|
-
<line num="31" count="
|
|
40
|
-
<line num="32" count="
|
|
41
|
-
<line num="33" count="
|
|
42
|
-
<line num="34" count="
|
|
43
|
-
<line num="35" count="
|
|
44
|
-
<line num="36" count="
|
|
45
|
-
<line num="37" count="
|
|
46
|
-
<line num="38" count="
|
|
47
|
-
<line num="39" count="
|
|
48
|
-
<line num="40" count="
|
|
49
|
-
<line num="41" count="
|
|
50
|
-
<line num="42" count="
|
|
51
|
-
<line num="43" count="
|
|
52
|
-
<line num="44" count="
|
|
53
|
-
<line num="45" count="
|
|
54
|
-
<line num="46" count="
|
|
55
|
-
<line num="47" count="
|
|
56
|
-
<line num="48" count="
|
|
57
|
-
<line num="49" count="
|
|
58
|
-
<line num="50" count="
|
|
59
|
-
<line num="51" count="
|
|
60
|
-
<line num="52" count="
|
|
61
|
-
<line num="53" count="
|
|
62
|
-
<line num="54" count="
|
|
63
|
-
<line num="55" count="
|
|
64
|
-
<line num="56" count="
|
|
37
|
+
<line num="29" count="1" type="stmt"/>
|
|
38
|
+
<line num="30" count="1" type="stmt"/>
|
|
39
|
+
<line num="31" count="1" type="stmt"/>
|
|
40
|
+
<line num="32" count="1" type="stmt"/>
|
|
41
|
+
<line num="33" count="1" type="stmt"/>
|
|
42
|
+
<line num="34" count="1" type="stmt"/>
|
|
43
|
+
<line num="35" count="1" type="stmt"/>
|
|
44
|
+
<line num="36" count="1" type="stmt"/>
|
|
45
|
+
<line num="37" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
46
|
+
<line num="38" count="24" type="stmt"/>
|
|
47
|
+
<line num="39" count="24" type="stmt"/>
|
|
48
|
+
<line num="40" count="1" type="stmt"/>
|
|
49
|
+
<line num="41" count="1" type="stmt"/>
|
|
50
|
+
<line num="42" count="1" type="stmt"/>
|
|
51
|
+
<line num="43" count="1" type="stmt"/>
|
|
52
|
+
<line num="44" count="1" type="stmt"/>
|
|
53
|
+
<line num="45" count="1" type="stmt"/>
|
|
54
|
+
<line num="46" count="1" type="stmt"/>
|
|
55
|
+
<line num="47" count="1" type="stmt"/>
|
|
56
|
+
<line num="48" count="1" type="stmt"/>
|
|
57
|
+
<line num="49" count="1" type="stmt"/>
|
|
58
|
+
<line num="50" count="1" type="stmt"/>
|
|
59
|
+
<line num="51" count="1" type="stmt"/>
|
|
60
|
+
<line num="52" count="1" type="stmt"/>
|
|
61
|
+
<line num="53" count="1" type="stmt"/>
|
|
62
|
+
<line num="54" count="1" type="stmt"/>
|
|
63
|
+
<line num="55" count="1" type="stmt"/>
|
|
64
|
+
<line num="56" count="1" type="stmt"/>
|
|
65
65
|
<line num="57" count="1" type="stmt"/>
|
|
66
|
+
<line num="58" count="1" type="stmt"/>
|
|
67
|
+
<line num="59" count="1" type="stmt"/>
|
|
68
|
+
<line num="60" count="1" type="stmt"/>
|
|
69
|
+
<line num="61" count="1" type="stmt"/>
|
|
70
|
+
<line num="62" count="1" type="stmt"/>
|
|
71
|
+
<line num="63" count="1" type="stmt"/>
|
|
72
|
+
<line num="64" count="1" type="stmt"/>
|
|
73
|
+
<line num="65" count="1" type="stmt"/>
|
|
74
|
+
<line num="66" count="1" type="stmt"/>
|
|
75
|
+
<line num="67" count="1" type="stmt"/>
|
|
76
|
+
<line num="68" count="1" type="stmt"/>
|
|
77
|
+
<line num="69" count="1" type="stmt"/>
|
|
78
|
+
<line num="70" count="1" type="stmt"/>
|
|
79
|
+
<line num="71" count="1" type="stmt"/>
|
|
80
|
+
<line num="72" count="1" type="stmt"/>
|
|
81
|
+
<line num="73" count="1" type="stmt"/>
|
|
82
|
+
<line num="74" count="1" type="stmt"/>
|
|
83
|
+
<line num="75" count="1" type="stmt"/>
|
|
84
|
+
<line num="76" count="1" type="stmt"/>
|
|
85
|
+
<line num="77" count="1" type="stmt"/>
|
|
86
|
+
<line num="78" count="1" type="stmt"/>
|
|
87
|
+
<line num="79" count="1" type="stmt"/>
|
|
88
|
+
<line num="80" count="1" type="stmt"/>
|
|
89
|
+
<line num="81" count="1" type="stmt"/>
|
|
90
|
+
<line num="82" count="1" type="stmt"/>
|
|
91
|
+
<line num="83" count="1" type="stmt"/>
|
|
92
|
+
<line num="84" count="1" type="stmt"/>
|
|
93
|
+
<line num="85" count="1" type="stmt"/>
|
|
94
|
+
<line num="86" count="1" type="stmt"/>
|
|
95
|
+
<line num="87" count="1" type="stmt"/>
|
|
96
|
+
<line num="88" count="1" type="stmt"/>
|
|
97
|
+
<line num="89" count="1" type="stmt"/>
|
|
98
|
+
<line num="90" count="1" type="stmt"/>
|
|
99
|
+
<line num="91" count="1" type="stmt"/>
|
|
100
|
+
<line num="92" count="1" type="stmt"/>
|
|
101
|
+
<line num="93" count="1" type="stmt"/>
|
|
102
|
+
<line num="94" count="1" type="stmt"/>
|
|
103
|
+
<line num="95" count="1" type="stmt"/>
|
|
104
|
+
<line num="96" count="1" type="stmt"/>
|
|
105
|
+
<line num="97" count="1" type="stmt"/>
|
|
106
|
+
<line num="98" count="1" type="stmt"/>
|
|
107
|
+
<line num="99" count="1" type="stmt"/>
|
|
108
|
+
<line num="100" count="1" type="stmt"/>
|
|
109
|
+
<line num="101" count="1" type="stmt"/>
|
|
110
|
+
<line num="102" count="1" type="stmt"/>
|
|
111
|
+
<line num="103" count="1" type="stmt"/>
|
|
112
|
+
<line num="104" count="1" type="stmt"/>
|
|
113
|
+
<line num="105" count="1" type="stmt"/>
|
|
114
|
+
<line num="106" count="1" type="stmt"/>
|
|
115
|
+
<line num="107" count="1" type="stmt"/>
|
|
116
|
+
<line num="108" count="1" type="stmt"/>
|
|
117
|
+
<line num="109" count="1" type="stmt"/>
|
|
118
|
+
<line num="110" count="1" type="stmt"/>
|
|
119
|
+
<line num="111" count="1" type="stmt"/>
|
|
120
|
+
<line num="112" count="1" type="stmt"/>
|
|
121
|
+
<line num="113" count="1" type="stmt"/>
|
|
122
|
+
<line num="114" count="1" type="stmt"/>
|
|
123
|
+
<line num="115" count="1" type="stmt"/>
|
|
124
|
+
<line num="116" count="1" type="stmt"/>
|
|
125
|
+
<line num="117" count="1" type="stmt"/>
|
|
126
|
+
<line num="118" count="1" type="stmt"/>
|
|
127
|
+
<line num="119" count="1" type="stmt"/>
|
|
128
|
+
<line num="120" count="1" type="stmt"/>
|
|
129
|
+
<line num="121" count="1" type="stmt"/>
|
|
130
|
+
<line num="122" count="1" type="stmt"/>
|
|
131
|
+
<line num="123" count="1" type="stmt"/>
|
|
132
|
+
<line num="124" count="1" type="stmt"/>
|
|
133
|
+
<line num="125" count="1" type="stmt"/>
|
|
134
|
+
<line num="126" count="1" type="stmt"/>
|
|
135
|
+
<line num="127" count="1" type="stmt"/>
|
|
136
|
+
<line num="128" count="1" type="stmt"/>
|
|
137
|
+
<line num="129" count="1" type="stmt"/>
|
|
138
|
+
<line num="130" count="1" type="stmt"/>
|
|
139
|
+
<line num="131" count="1" type="stmt"/>
|
|
140
|
+
<line num="132" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
141
|
+
<line num="133" count="94" type="stmt"/>
|
|
142
|
+
<line num="134" count="94" type="stmt"/>
|
|
143
|
+
<line num="135" count="94" type="stmt"/>
|
|
144
|
+
<line num="136" count="94" type="stmt"/>
|
|
145
|
+
<line num="137" count="94" type="stmt"/>
|
|
146
|
+
<line num="138" count="94" type="stmt"/>
|
|
147
|
+
<line num="139" count="94" type="stmt"/>
|
|
148
|
+
<line num="140" count="94" type="stmt"/>
|
|
149
|
+
<line num="141" count="94" type="stmt"/>
|
|
150
|
+
<line num="142" count="94" type="stmt"/>
|
|
151
|
+
<line num="143" count="94" type="stmt"/>
|
|
152
|
+
<line num="144" count="94" type="stmt"/>
|
|
153
|
+
<line num="145" count="94" type="stmt"/>
|
|
154
|
+
<line num="146" count="94" type="stmt"/>
|
|
155
|
+
<line num="147" count="94" type="stmt"/>
|
|
156
|
+
<line num="148" count="94" type="stmt"/>
|
|
157
|
+
<line num="149" count="94" type="stmt"/>
|
|
158
|
+
<line num="150" count="94" type="stmt"/>
|
|
159
|
+
<line num="151" count="94" type="stmt"/>
|
|
160
|
+
<line num="152" count="94" type="stmt"/>
|
|
161
|
+
<line num="153" count="94" type="stmt"/>
|
|
162
|
+
<line num="154" count="94" type="stmt"/>
|
|
163
|
+
<line num="155" count="94" type="stmt"/>
|
|
164
|
+
<line num="156" count="94" type="stmt"/>
|
|
165
|
+
<line num="157" count="94" type="stmt"/>
|
|
166
|
+
<line num="158" count="94" type="stmt"/>
|
|
167
|
+
<line num="159" count="94" type="stmt"/>
|
|
168
|
+
<line num="160" count="94" type="stmt"/>
|
|
169
|
+
<line num="161" count="94" type="stmt"/>
|
|
170
|
+
<line num="162" count="94" type="stmt"/>
|
|
171
|
+
<line num="163" count="94" type="stmt"/>
|
|
172
|
+
<line num="164" count="94" type="stmt"/>
|
|
173
|
+
<line num="165" count="94" type="stmt"/>
|
|
174
|
+
<line num="166" count="94" type="stmt"/>
|
|
175
|
+
<line num="167" count="94" type="stmt"/>
|
|
176
|
+
<line num="168" count="94" type="stmt"/>
|
|
177
|
+
<line num="169" count="94" type="stmt"/>
|
|
178
|
+
<line num="170" count="94" type="stmt"/>
|
|
179
|
+
<line num="171" count="94" type="cond" truecount="0" falsecount="1"/>
|
|
180
|
+
<line num="172" count="94" type="stmt"/>
|
|
181
|
+
<line num="173" count="94" type="stmt"/>
|
|
182
|
+
<line num="174" count="94" type="stmt"/>
|
|
183
|
+
<line num="175" count="94" type="cond" truecount="2" falsecount="0"/>
|
|
184
|
+
<line num="176" count="94" type="stmt"/>
|
|
185
|
+
<line num="177" count="94" type="stmt"/>
|
|
186
|
+
<line num="178" count="94" type="stmt"/>
|
|
187
|
+
<line num="179" count="94" type="stmt"/>
|
|
188
|
+
<line num="180" count="94" type="stmt"/>
|
|
189
|
+
<line num="181" count="94" type="stmt"/>
|
|
190
|
+
<line num="182" count="94" type="stmt"/>
|
|
191
|
+
<line num="183" count="94" type="stmt"/>
|
|
192
|
+
<line num="184" count="94" type="stmt"/>
|
|
193
|
+
<line num="185" count="94" type="stmt"/>
|
|
194
|
+
<line num="186" count="94" type="stmt"/>
|
|
195
|
+
<line num="187" count="94" type="stmt"/>
|
|
196
|
+
<line num="188" count="94" type="stmt"/>
|
|
197
|
+
<line num="189" count="94" type="stmt"/>
|
|
198
|
+
<line num="190" count="94" type="stmt"/>
|
|
199
|
+
<line num="191" count="94" type="stmt"/>
|
|
200
|
+
<line num="192" count="94" type="stmt"/>
|
|
201
|
+
<line num="193" count="94" type="cond" truecount="0" falsecount="1"/>
|
|
202
|
+
<line num="194" count="94" type="stmt"/>
|
|
203
|
+
<line num="195" count="94" type="stmt"/>
|
|
204
|
+
<line num="196" count="94" type="stmt"/>
|
|
205
|
+
<line num="197" count="94" type="cond" truecount="1" falsecount="0"/>
|
|
206
|
+
<line num="198" count="94" type="cond" truecount="1" falsecount="0"/>
|
|
207
|
+
<line num="199" count="21" type="stmt"/>
|
|
208
|
+
<line num="200" count="21" type="stmt"/>
|
|
209
|
+
<line num="201" count="21" type="stmt"/>
|
|
210
|
+
<line num="202" count="21" type="cond" truecount="0" falsecount="1"/>
|
|
211
|
+
<line num="203" count="0" type="stmt"/>
|
|
212
|
+
<line num="204" count="0" type="stmt"/>
|
|
213
|
+
<line num="205" count="0" type="stmt"/>
|
|
214
|
+
<line num="206" count="94" type="stmt"/>
|
|
215
|
+
<line num="207" count="94" type="stmt"/>
|
|
216
|
+
<line num="208" count="94" type="stmt"/>
|
|
217
|
+
<line num="209" count="94" type="stmt"/>
|
|
218
|
+
<line num="210" count="94" type="stmt"/>
|
|
219
|
+
<line num="211" count="94" type="stmt"/>
|
|
220
|
+
<line num="212" count="94" type="stmt"/>
|
|
221
|
+
<line num="213" count="94" type="stmt"/>
|
|
222
|
+
<line num="214" count="94" type="stmt"/>
|
|
223
|
+
<line num="215" count="94" type="stmt"/>
|
|
224
|
+
<line num="216" count="94" type="stmt"/>
|
|
225
|
+
<line num="217" count="94" type="stmt"/>
|
|
226
|
+
<line num="218" count="94" type="stmt"/>
|
|
227
|
+
<line num="219" count="94" type="stmt"/>
|
|
228
|
+
<line num="220" count="94" type="stmt"/>
|
|
229
|
+
<line num="221" count="94" type="stmt"/>
|
|
230
|
+
<line num="222" count="94" type="stmt"/>
|
|
231
|
+
<line num="223" count="94" type="stmt"/>
|
|
232
|
+
<line num="224" count="94" type="cond" truecount="1" falsecount="0"/>
|
|
233
|
+
<line num="225" count="22" type="stmt"/>
|
|
234
|
+
<line num="226" count="22" type="stmt"/>
|
|
235
|
+
<line num="227" count="22" type="stmt"/>
|
|
236
|
+
<line num="228" count="94" type="cond" truecount="1" falsecount="0"/>
|
|
237
|
+
<line num="229" count="42" type="stmt"/>
|
|
238
|
+
<line num="230" count="42" type="cond" truecount="2" falsecount="0"/>
|
|
239
|
+
<line num="231" count="1" type="stmt"/>
|
|
240
|
+
<line num="232" count="1" type="stmt"/>
|
|
241
|
+
<line num="233" count="42" type="stmt"/>
|
|
242
|
+
<line num="234" count="94" type="cond" truecount="1" falsecount="0"/>
|
|
243
|
+
<line num="235" count="16" type="stmt"/>
|
|
244
|
+
<line num="236" count="16" type="stmt"/>
|
|
245
|
+
<line num="237" count="16" type="stmt"/>
|
|
246
|
+
<line num="238" count="16" type="stmt"/>
|
|
247
|
+
<line num="239" count="16" type="stmt"/>
|
|
248
|
+
<line num="240" count="16" type="stmt"/>
|
|
249
|
+
<line num="241" count="94" type="stmt"/>
|
|
250
|
+
<line num="242" count="94" type="stmt"/>
|
|
251
|
+
<line num="243" count="94" type="stmt"/>
|
|
252
|
+
<line num="244" count="94" type="stmt"/>
|
|
253
|
+
<line num="245" count="94" type="stmt"/>
|
|
254
|
+
<line num="246" count="94" type="stmt"/>
|
|
255
|
+
<line num="247" count="94" type="stmt"/>
|
|
256
|
+
<line num="248" count="94" type="stmt"/>
|
|
257
|
+
<line num="249" count="94" type="stmt"/>
|
|
258
|
+
<line num="250" count="94" type="stmt"/>
|
|
259
|
+
<line num="251" count="94" type="stmt"/>
|
|
260
|
+
<line num="252" count="94" type="cond" truecount="1" falsecount="0"/>
|
|
261
|
+
<line num="253" count="3" type="stmt"/>
|
|
262
|
+
<line num="254" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
263
|
+
<line num="255" count="3" type="stmt"/>
|
|
264
|
+
<line num="256" count="94" type="stmt"/>
|
|
265
|
+
<line num="257" count="94" type="stmt"/>
|
|
266
|
+
<line num="258" count="94" type="stmt"/>
|
|
267
|
+
<line num="259" count="94" type="stmt"/>
|
|
268
|
+
<line num="260" count="94" type="stmt"/>
|
|
269
|
+
<line num="261" count="94" type="stmt"/>
|
|
270
|
+
<line num="262" count="94" type="stmt"/>
|
|
271
|
+
<line num="263" count="94" type="stmt"/>
|
|
272
|
+
<line num="264" count="94" type="cond" truecount="0" falsecount="1"/>
|
|
273
|
+
<line num="265" count="94" type="stmt"/>
|
|
274
|
+
<line num="266" count="94" type="stmt"/>
|
|
275
|
+
<line num="267" count="94" type="stmt"/>
|
|
276
|
+
<line num="268" count="94" type="stmt"/>
|
|
277
|
+
<line num="269" count="94" type="stmt"/>
|
|
278
|
+
<line num="270" count="94" type="stmt"/>
|
|
279
|
+
<line num="271" count="94" type="stmt"/>
|
|
280
|
+
<line num="272" count="94" type="stmt"/>
|
|
281
|
+
<line num="273" count="94" type="stmt"/>
|
|
282
|
+
<line num="274" count="94" type="stmt"/>
|
|
283
|
+
<line num="275" count="94" type="stmt"/>
|
|
284
|
+
<line num="276" count="94" type="stmt"/>
|
|
285
|
+
<line num="277" count="94" type="stmt"/>
|
|
286
|
+
<line num="278" count="94" type="stmt"/>
|
|
287
|
+
<line num="279" count="94" type="stmt"/>
|
|
288
|
+
<line num="280" count="94" type="stmt"/>
|
|
289
|
+
<line num="281" count="94" type="stmt"/>
|
|
290
|
+
<line num="282" count="94" type="stmt"/>
|
|
291
|
+
<line num="283" count="94" type="stmt"/>
|
|
292
|
+
<line num="284" count="94" type="stmt"/>
|
|
293
|
+
<line num="285" count="94" type="stmt"/>
|
|
294
|
+
<line num="286" count="94" type="cond" truecount="1" falsecount="0"/>
|
|
295
|
+
<line num="287" count="94" type="stmt"/>
|
|
296
|
+
<line num="288" count="94" type="stmt"/>
|
|
297
|
+
<line num="289" count="94" type="stmt"/>
|
|
298
|
+
<line num="290" count="94" type="stmt"/>
|
|
299
|
+
<line num="291" count="94" type="stmt"/>
|
|
300
|
+
<line num="292" count="94" type="stmt"/>
|
|
301
|
+
<line num="293" count="94" type="stmt"/>
|
|
302
|
+
<line num="294" count="94" type="stmt"/>
|
|
66
303
|
</file>
|
|
67
304
|
</package>
|
|
68
|
-
<package name="
|
|
69
|
-
<metrics statements="
|
|
70
|
-
<file name="
|
|
71
|
-
<metrics statements="
|
|
305
|
+
<package name="button">
|
|
306
|
+
<metrics statements="197" coveredstatements="197" conditionals="8" coveredconditionals="3" methods="1" coveredmethods="1"/>
|
|
307
|
+
<file name="Button.tsx" path="/home/mlaursen/code/react-md/packages/core/src/button/Button.tsx">
|
|
308
|
+
<metrics statements="197" coveredstatements="197" conditionals="8" coveredconditionals="3" methods="1" coveredmethods="1"/>
|
|
72
309
|
<line num="1" count="1" type="stmt"/>
|
|
73
310
|
<line num="2" count="1" type="stmt"/>
|
|
74
311
|
<line num="3" count="1" type="stmt"/>
|
|
@@ -99,50 +336,179 @@
|
|
|
99
336
|
<line num="28" count="1" type="stmt"/>
|
|
100
337
|
<line num="29" count="1" type="stmt"/>
|
|
101
338
|
<line num="30" count="1" type="stmt"/>
|
|
102
|
-
<line num="31" count="1" type="
|
|
103
|
-
<line num="32" count="
|
|
104
|
-
<line num="33" count="
|
|
105
|
-
<line num="34" count="
|
|
106
|
-
<line num="35" count="
|
|
107
|
-
<line num="36" count="
|
|
108
|
-
<line num="37" count="
|
|
109
|
-
<line num="38" count="
|
|
110
|
-
<line num="39" count="
|
|
111
|
-
<line num="40" count="
|
|
112
|
-
<line num="41" count="
|
|
113
|
-
<line num="42" count="
|
|
114
|
-
<line num="43" count="
|
|
115
|
-
<line num="44" count="
|
|
116
|
-
<line num="45" count="
|
|
117
|
-
<line num="46" count="
|
|
118
|
-
<line num="47" count="
|
|
119
|
-
<line num="48" count="
|
|
120
|
-
<line num="49" count="
|
|
121
|
-
<line num="50" count="
|
|
122
|
-
<line num="51" count="
|
|
123
|
-
<line num="52" count="
|
|
124
|
-
<line num="53" count="
|
|
125
|
-
<line num="54" count="
|
|
126
|
-
<line num="55" count="
|
|
127
|
-
<line num="56" count="
|
|
128
|
-
<line num="57" count="
|
|
129
|
-
<line num="58" count="
|
|
130
|
-
<line num="59" count="
|
|
131
|
-
<line num="60" count="
|
|
132
|
-
<line num="61" count="
|
|
133
|
-
<line num="62" count="
|
|
134
|
-
<line num="63" count="
|
|
135
|
-
<line num="64" count="
|
|
136
|
-
<line num="65" count="
|
|
137
|
-
<line num="66" count="
|
|
138
|
-
<line num="67" count="
|
|
139
|
-
<line num="68" count="
|
|
140
|
-
<line num="69" count="
|
|
141
|
-
<line num="70" count="
|
|
142
|
-
<line num="71" count="
|
|
339
|
+
<line num="31" count="1" type="stmt"/>
|
|
340
|
+
<line num="32" count="1" type="stmt"/>
|
|
341
|
+
<line num="33" count="1" type="stmt"/>
|
|
342
|
+
<line num="34" count="1" type="stmt"/>
|
|
343
|
+
<line num="35" count="1" type="stmt"/>
|
|
344
|
+
<line num="36" count="1" type="stmt"/>
|
|
345
|
+
<line num="37" count="1" type="stmt"/>
|
|
346
|
+
<line num="38" count="1" type="stmt"/>
|
|
347
|
+
<line num="39" count="1" type="stmt"/>
|
|
348
|
+
<line num="40" count="1" type="stmt"/>
|
|
349
|
+
<line num="41" count="1" type="stmt"/>
|
|
350
|
+
<line num="42" count="1" type="stmt"/>
|
|
351
|
+
<line num="43" count="1" type="stmt"/>
|
|
352
|
+
<line num="44" count="1" type="stmt"/>
|
|
353
|
+
<line num="45" count="1" type="stmt"/>
|
|
354
|
+
<line num="46" count="1" type="stmt"/>
|
|
355
|
+
<line num="47" count="1" type="stmt"/>
|
|
356
|
+
<line num="48" count="1" type="stmt"/>
|
|
357
|
+
<line num="49" count="1" type="stmt"/>
|
|
358
|
+
<line num="50" count="1" type="stmt"/>
|
|
359
|
+
<line num="51" count="1" type="stmt"/>
|
|
360
|
+
<line num="52" count="1" type="stmt"/>
|
|
361
|
+
<line num="53" count="1" type="stmt"/>
|
|
362
|
+
<line num="54" count="1" type="stmt"/>
|
|
363
|
+
<line num="55" count="1" type="stmt"/>
|
|
364
|
+
<line num="56" count="1" type="stmt"/>
|
|
365
|
+
<line num="57" count="1" type="stmt"/>
|
|
366
|
+
<line num="58" count="1" type="stmt"/>
|
|
367
|
+
<line num="59" count="1" type="stmt"/>
|
|
368
|
+
<line num="60" count="1" type="stmt"/>
|
|
369
|
+
<line num="61" count="1" type="stmt"/>
|
|
370
|
+
<line num="62" count="1" type="stmt"/>
|
|
371
|
+
<line num="63" count="1" type="stmt"/>
|
|
372
|
+
<line num="64" count="1" type="stmt"/>
|
|
373
|
+
<line num="65" count="1" type="stmt"/>
|
|
374
|
+
<line num="66" count="1" type="stmt"/>
|
|
375
|
+
<line num="67" count="1" type="stmt"/>
|
|
376
|
+
<line num="68" count="1" type="stmt"/>
|
|
377
|
+
<line num="69" count="1" type="stmt"/>
|
|
378
|
+
<line num="70" count="1" type="stmt"/>
|
|
379
|
+
<line num="71" count="1" type="stmt"/>
|
|
380
|
+
<line num="72" count="1" type="stmt"/>
|
|
381
|
+
<line num="73" count="1" type="stmt"/>
|
|
382
|
+
<line num="74" count="1" type="stmt"/>
|
|
383
|
+
<line num="75" count="1" type="stmt"/>
|
|
384
|
+
<line num="76" count="1" type="stmt"/>
|
|
385
|
+
<line num="77" count="1" type="stmt"/>
|
|
386
|
+
<line num="78" count="1" type="stmt"/>
|
|
387
|
+
<line num="79" count="1" type="stmt"/>
|
|
388
|
+
<line num="80" count="1" type="stmt"/>
|
|
389
|
+
<line num="81" count="1" type="stmt"/>
|
|
390
|
+
<line num="82" count="1" type="stmt"/>
|
|
391
|
+
<line num="83" count="1" type="stmt"/>
|
|
392
|
+
<line num="84" count="1" type="stmt"/>
|
|
393
|
+
<line num="85" count="1" type="stmt"/>
|
|
394
|
+
<line num="86" count="1" type="stmt"/>
|
|
395
|
+
<line num="87" count="1" type="stmt"/>
|
|
396
|
+
<line num="88" count="1" type="stmt"/>
|
|
397
|
+
<line num="89" count="1" type="stmt"/>
|
|
398
|
+
<line num="90" count="1" type="stmt"/>
|
|
399
|
+
<line num="91" count="1" type="stmt"/>
|
|
400
|
+
<line num="92" count="1" type="stmt"/>
|
|
401
|
+
<line num="93" count="1" type="stmt"/>
|
|
402
|
+
<line num="94" count="1" type="stmt"/>
|
|
403
|
+
<line num="95" count="1" type="stmt"/>
|
|
404
|
+
<line num="96" count="1" type="stmt"/>
|
|
405
|
+
<line num="97" count="1" type="stmt"/>
|
|
406
|
+
<line num="98" count="1" type="stmt"/>
|
|
407
|
+
<line num="99" count="1" type="stmt"/>
|
|
408
|
+
<line num="100" count="1" type="stmt"/>
|
|
409
|
+
<line num="101" count="1" type="stmt"/>
|
|
410
|
+
<line num="102" count="1" type="stmt"/>
|
|
411
|
+
<line num="103" count="1" type="stmt"/>
|
|
412
|
+
<line num="104" count="1" type="stmt"/>
|
|
413
|
+
<line num="105" count="1" type="stmt"/>
|
|
414
|
+
<line num="106" count="1" type="stmt"/>
|
|
415
|
+
<line num="107" count="1" type="stmt"/>
|
|
416
|
+
<line num="108" count="1" type="stmt"/>
|
|
417
|
+
<line num="109" count="1" type="stmt"/>
|
|
418
|
+
<line num="110" count="1" type="stmt"/>
|
|
419
|
+
<line num="111" count="1" type="stmt"/>
|
|
420
|
+
<line num="112" count="1" type="stmt"/>
|
|
421
|
+
<line num="113" count="1" type="stmt"/>
|
|
422
|
+
<line num="114" count="1" type="stmt"/>
|
|
423
|
+
<line num="115" count="1" type="stmt"/>
|
|
424
|
+
<line num="116" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
425
|
+
<line num="117" count="97" type="stmt"/>
|
|
426
|
+
<line num="118" count="97" type="stmt"/>
|
|
427
|
+
<line num="119" count="97" type="stmt"/>
|
|
428
|
+
<line num="120" count="97" type="stmt"/>
|
|
429
|
+
<line num="121" count="97" type="stmt"/>
|
|
430
|
+
<line num="122" count="97" type="cond" truecount="0" falsecount="1"/>
|
|
431
|
+
<line num="123" count="97" type="cond" truecount="0" falsecount="1"/>
|
|
432
|
+
<line num="124" count="97" type="stmt"/>
|
|
433
|
+
<line num="125" count="97" type="cond" truecount="2" falsecount="1"/>
|
|
434
|
+
<line num="126" count="97" type="stmt"/>
|
|
435
|
+
<line num="127" count="97" type="stmt"/>
|
|
436
|
+
<line num="128" count="97" type="stmt"/>
|
|
437
|
+
<line num="129" count="97" type="stmt"/>
|
|
438
|
+
<line num="130" count="97" type="stmt"/>
|
|
439
|
+
<line num="131" count="97" type="stmt"/>
|
|
440
|
+
<line num="132" count="97" type="stmt"/>
|
|
441
|
+
<line num="133" count="97" type="stmt"/>
|
|
442
|
+
<line num="134" count="97" type="stmt"/>
|
|
443
|
+
<line num="135" count="97" type="stmt"/>
|
|
444
|
+
<line num="136" count="97" type="stmt"/>
|
|
445
|
+
<line num="137" count="97" type="stmt"/>
|
|
446
|
+
<line num="138" count="97" type="stmt"/>
|
|
447
|
+
<line num="139" count="97" type="stmt"/>
|
|
448
|
+
<line num="140" count="97" type="stmt"/>
|
|
449
|
+
<line num="141" count="97" type="stmt"/>
|
|
450
|
+
<line num="142" count="97" type="stmt"/>
|
|
451
|
+
<line num="143" count="97" type="stmt"/>
|
|
452
|
+
<line num="144" count="97" type="stmt"/>
|
|
453
|
+
<line num="145" count="97" type="stmt"/>
|
|
454
|
+
<line num="146" count="97" type="stmt"/>
|
|
455
|
+
<line num="147" count="97" type="stmt"/>
|
|
456
|
+
<line num="148" count="97" type="stmt"/>
|
|
457
|
+
<line num="149" count="97" type="stmt"/>
|
|
458
|
+
<line num="150" count="97" type="stmt"/>
|
|
459
|
+
<line num="151" count="97" type="stmt"/>
|
|
460
|
+
<line num="152" count="97" type="stmt"/>
|
|
461
|
+
<line num="153" count="97" type="stmt"/>
|
|
462
|
+
<line num="154" count="97" type="stmt"/>
|
|
463
|
+
<line num="155" count="97" type="stmt"/>
|
|
464
|
+
<line num="156" count="97" type="stmt"/>
|
|
465
|
+
<line num="157" count="97" type="stmt"/>
|
|
466
|
+
<line num="158" count="97" type="stmt"/>
|
|
467
|
+
<line num="159" count="97" type="stmt"/>
|
|
468
|
+
<line num="160" count="97" type="cond" truecount="0" falsecount="1"/>
|
|
469
|
+
<line num="161" count="97" type="stmt"/>
|
|
470
|
+
<line num="162" count="97" type="stmt"/>
|
|
471
|
+
<line num="163" count="97" type="stmt"/>
|
|
472
|
+
<line num="164" count="97" type="stmt"/>
|
|
473
|
+
<line num="165" count="97" type="stmt"/>
|
|
474
|
+
<line num="166" count="97" type="stmt"/>
|
|
475
|
+
<line num="167" count="97" type="stmt"/>
|
|
476
|
+
<line num="168" count="97" type="stmt"/>
|
|
477
|
+
<line num="169" count="97" type="stmt"/>
|
|
478
|
+
<line num="170" count="97" type="stmt"/>
|
|
479
|
+
<line num="171" count="97" type="stmt"/>
|
|
480
|
+
<line num="172" count="97" type="stmt"/>
|
|
481
|
+
<line num="173" count="97" type="stmt"/>
|
|
482
|
+
<line num="174" count="97" type="cond" truecount="0" falsecount="1"/>
|
|
483
|
+
<line num="175" count="97" type="stmt"/>
|
|
484
|
+
<line num="176" count="97" type="stmt"/>
|
|
485
|
+
<line num="177" count="97" type="stmt"/>
|
|
486
|
+
<line num="178" count="97" type="stmt"/>
|
|
487
|
+
<line num="179" count="97" type="stmt"/>
|
|
488
|
+
<line num="180" count="97" type="stmt"/>
|
|
489
|
+
<line num="181" count="97" type="stmt"/>
|
|
490
|
+
<line num="182" count="97" type="stmt"/>
|
|
491
|
+
<line num="183" count="97" type="stmt"/>
|
|
492
|
+
<line num="184" count="97" type="stmt"/>
|
|
493
|
+
<line num="185" count="97" type="stmt"/>
|
|
494
|
+
<line num="186" count="97" type="stmt"/>
|
|
495
|
+
<line num="187" count="97" type="stmt"/>
|
|
496
|
+
<line num="188" count="97" type="stmt"/>
|
|
497
|
+
<line num="189" count="97" type="stmt"/>
|
|
498
|
+
<line num="190" count="97" type="stmt"/>
|
|
499
|
+
<line num="191" count="97" type="stmt"/>
|
|
500
|
+
<line num="192" count="97" type="stmt"/>
|
|
501
|
+
<line num="193" count="97" type="stmt"/>
|
|
502
|
+
<line num="194" count="97" type="stmt"/>
|
|
503
|
+
<line num="195" count="97" type="stmt"/>
|
|
504
|
+
<line num="196" count="97" type="stmt"/>
|
|
505
|
+
<line num="197" count="1" type="stmt"/>
|
|
143
506
|
</file>
|
|
144
|
-
|
|
145
|
-
|
|
507
|
+
</package>
|
|
508
|
+
<package name="searching">
|
|
509
|
+
<metrics statements="174" coveredstatements="174" conditionals="3" coveredconditionals="3" methods="3" coveredmethods="3"/>
|
|
510
|
+
<file name="fuzzy.ts" path="/home/mlaursen/code/react-md/packages/core/src/searching/fuzzy.ts">
|
|
511
|
+
<metrics statements="174" coveredstatements="174" conditionals="3" coveredconditionals="3" methods="3" coveredmethods="3"/>
|
|
146
512
|
<line num="1" count="1" type="stmt"/>
|
|
147
513
|
<line num="2" count="1" type="stmt"/>
|
|
148
514
|
<line num="3" count="1" type="stmt"/>
|
|
@@ -165,29 +531,29 @@
|
|
|
165
531
|
<line num="20" count="1" type="stmt"/>
|
|
166
532
|
<line num="21" count="1" type="stmt"/>
|
|
167
533
|
<line num="22" count="1" type="stmt"/>
|
|
168
|
-
<line num="23" count="1" type="
|
|
169
|
-
<line num="24" count="
|
|
170
|
-
<line num="25" count="
|
|
171
|
-
<line num="26" count="
|
|
172
|
-
<line num="27" count="
|
|
173
|
-
<line num="28" count="
|
|
174
|
-
<line num="29" count="
|
|
175
|
-
<line num="30" count="
|
|
176
|
-
<line num="31" count="
|
|
177
|
-
<line num="32" count="
|
|
178
|
-
<line num="33" count="
|
|
179
|
-
<line num="34" count="
|
|
180
|
-
<line num="35" count="
|
|
181
|
-
<line num="36" count="
|
|
182
|
-
<line num="37" count="
|
|
183
|
-
<line num="38" count="
|
|
184
|
-
<line num="39" count="
|
|
185
|
-
<line num="40" count="
|
|
186
|
-
<line num="41" count="
|
|
187
|
-
<line num="42" count="
|
|
188
|
-
<line num="43" count="
|
|
189
|
-
<line num="44" count="
|
|
190
|
-
<line num="45" count="
|
|
534
|
+
<line num="23" count="1" type="stmt"/>
|
|
535
|
+
<line num="24" count="1" type="stmt"/>
|
|
536
|
+
<line num="25" count="1" type="stmt"/>
|
|
537
|
+
<line num="26" count="1" type="stmt"/>
|
|
538
|
+
<line num="27" count="1" type="stmt"/>
|
|
539
|
+
<line num="28" count="1" type="stmt"/>
|
|
540
|
+
<line num="29" count="1" type="stmt"/>
|
|
541
|
+
<line num="30" count="1" type="stmt"/>
|
|
542
|
+
<line num="31" count="1" type="stmt"/>
|
|
543
|
+
<line num="32" count="1" type="stmt"/>
|
|
544
|
+
<line num="33" count="1" type="stmt"/>
|
|
545
|
+
<line num="34" count="1" type="stmt"/>
|
|
546
|
+
<line num="35" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
547
|
+
<line num="36" count="2" type="stmt"/>
|
|
548
|
+
<line num="37" count="2" type="stmt"/>
|
|
549
|
+
<line num="38" count="2" type="stmt"/>
|
|
550
|
+
<line num="39" count="2" type="stmt"/>
|
|
551
|
+
<line num="40" count="2" type="stmt"/>
|
|
552
|
+
<line num="41" count="2" type="stmt"/>
|
|
553
|
+
<line num="42" count="2" type="stmt"/>
|
|
554
|
+
<line num="43" count="2" type="stmt"/>
|
|
555
|
+
<line num="44" count="2" type="stmt"/>
|
|
556
|
+
<line num="45" count="2" type="stmt"/>
|
|
191
557
|
<line num="46" count="1" type="stmt"/>
|
|
192
558
|
<line num="47" count="1" type="stmt"/>
|
|
193
559
|
<line num="48" count="1" type="stmt"/>
|
|
@@ -211,47 +577,198 @@
|
|
|
211
577
|
<line num="66" count="1" type="stmt"/>
|
|
212
578
|
<line num="67" count="1" type="stmt"/>
|
|
213
579
|
<line num="68" count="1" type="stmt"/>
|
|
214
|
-
<line num="69" count="1" type="
|
|
215
|
-
<line num="70" count="
|
|
216
|
-
<line num="71" count="
|
|
217
|
-
<line num="72" count="
|
|
218
|
-
<line num="73" count="
|
|
219
|
-
<line num="74" count="
|
|
220
|
-
<line num="75" count="
|
|
221
|
-
<line num="76" count="
|
|
222
|
-
<line num="77" count="
|
|
223
|
-
<line num="78" count="
|
|
224
|
-
<line num="79" count="
|
|
225
|
-
<line num="80" count="
|
|
226
|
-
<line num="81" count="
|
|
227
|
-
<line num="82" count="
|
|
228
|
-
<line num="83" count="
|
|
229
|
-
<line num="84" count="
|
|
230
|
-
<line num="85" count="
|
|
231
|
-
<line num="86" count="
|
|
232
|
-
<line num="87" count="
|
|
233
|
-
<line num="88" count="
|
|
234
|
-
<line num="89" count="
|
|
235
|
-
<line num="90" count="
|
|
236
|
-
<line num="91" count="
|
|
580
|
+
<line num="69" count="1" type="stmt"/>
|
|
581
|
+
<line num="70" count="1" type="stmt"/>
|
|
582
|
+
<line num="71" count="1" type="stmt"/>
|
|
583
|
+
<line num="72" count="1" type="stmt"/>
|
|
584
|
+
<line num="73" count="1" type="stmt"/>
|
|
585
|
+
<line num="74" count="1" type="stmt"/>
|
|
586
|
+
<line num="75" count="1" type="stmt"/>
|
|
587
|
+
<line num="76" count="1" type="stmt"/>
|
|
588
|
+
<line num="77" count="1" type="stmt"/>
|
|
589
|
+
<line num="78" count="1" type="stmt"/>
|
|
590
|
+
<line num="79" count="1" type="stmt"/>
|
|
591
|
+
<line num="80" count="1" type="stmt"/>
|
|
592
|
+
<line num="81" count="1" type="stmt"/>
|
|
593
|
+
<line num="82" count="1" type="stmt"/>
|
|
594
|
+
<line num="83" count="1" type="stmt"/>
|
|
595
|
+
<line num="84" count="1" type="stmt"/>
|
|
596
|
+
<line num="85" count="1" type="stmt"/>
|
|
597
|
+
<line num="86" count="1" type="stmt"/>
|
|
598
|
+
<line num="87" count="1" type="stmt"/>
|
|
599
|
+
<line num="88" count="1" type="stmt"/>
|
|
600
|
+
<line num="89" count="1" type="stmt"/>
|
|
601
|
+
<line num="90" count="1" type="stmt"/>
|
|
602
|
+
<line num="91" count="1" type="stmt"/>
|
|
603
|
+
<line num="92" count="1" type="stmt"/>
|
|
604
|
+
<line num="93" count="1" type="stmt"/>
|
|
605
|
+
<line num="94" count="1" type="stmt"/>
|
|
606
|
+
<line num="95" count="1" type="stmt"/>
|
|
607
|
+
<line num="96" count="1" type="stmt"/>
|
|
608
|
+
<line num="97" count="1" type="stmt"/>
|
|
609
|
+
<line num="98" count="1" type="stmt"/>
|
|
610
|
+
<line num="99" count="1" type="stmt"/>
|
|
611
|
+
<line num="100" count="1" type="stmt"/>
|
|
612
|
+
<line num="101" count="1" type="stmt"/>
|
|
613
|
+
<line num="102" count="1" type="stmt"/>
|
|
614
|
+
<line num="103" count="1" type="stmt"/>
|
|
615
|
+
<line num="104" count="1" type="stmt"/>
|
|
616
|
+
<line num="105" count="1" type="stmt"/>
|
|
617
|
+
<line num="106" count="1" type="stmt"/>
|
|
618
|
+
<line num="107" count="1" type="stmt"/>
|
|
619
|
+
<line num="108" count="1" type="stmt"/>
|
|
620
|
+
<line num="109" count="1" type="stmt"/>
|
|
621
|
+
<line num="110" count="1" type="stmt"/>
|
|
622
|
+
<line num="111" count="1" type="stmt"/>
|
|
623
|
+
<line num="112" count="1" type="stmt"/>
|
|
624
|
+
<line num="113" count="1" type="stmt"/>
|
|
625
|
+
<line num="114" count="1" type="stmt"/>
|
|
626
|
+
<line num="115" count="1" type="stmt"/>
|
|
627
|
+
<line num="116" count="1" type="stmt"/>
|
|
628
|
+
<line num="117" count="1" type="stmt"/>
|
|
629
|
+
<line num="118" count="1" type="stmt"/>
|
|
630
|
+
<line num="119" count="1" type="stmt"/>
|
|
631
|
+
<line num="120" count="1" type="stmt"/>
|
|
632
|
+
<line num="121" count="1" type="stmt"/>
|
|
633
|
+
<line num="122" count="1" type="stmt"/>
|
|
634
|
+
<line num="123" count="1" type="stmt"/>
|
|
635
|
+
<line num="124" count="1" type="stmt"/>
|
|
636
|
+
<line num="125" count="1" type="stmt"/>
|
|
637
|
+
<line num="126" count="1" type="stmt"/>
|
|
638
|
+
<line num="127" count="1" type="stmt"/>
|
|
639
|
+
<line num="128" count="1" type="stmt"/>
|
|
640
|
+
<line num="129" count="1" type="stmt"/>
|
|
641
|
+
<line num="130" count="1" type="stmt"/>
|
|
642
|
+
<line num="131" count="1" type="stmt"/>
|
|
643
|
+
<line num="132" count="1" type="stmt"/>
|
|
644
|
+
<line num="133" count="1" type="stmt"/>
|
|
645
|
+
<line num="134" count="1" type="stmt"/>
|
|
646
|
+
<line num="135" count="1" type="stmt"/>
|
|
647
|
+
<line num="136" count="1" type="stmt"/>
|
|
648
|
+
<line num="137" count="1" type="stmt"/>
|
|
649
|
+
<line num="138" count="1" type="stmt"/>
|
|
650
|
+
<line num="139" count="1" type="stmt"/>
|
|
651
|
+
<line num="140" count="1" type="stmt"/>
|
|
652
|
+
<line num="141" count="1" type="stmt"/>
|
|
653
|
+
<line num="142" count="1" type="stmt"/>
|
|
654
|
+
<line num="143" count="1" type="stmt"/>
|
|
655
|
+
<line num="144" count="1" type="stmt"/>
|
|
656
|
+
<line num="145" count="1" type="stmt"/>
|
|
657
|
+
<line num="146" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
658
|
+
<line num="147" count="3" type="stmt"/>
|
|
659
|
+
<line num="148" count="3" type="stmt"/>
|
|
660
|
+
<line num="149" count="3" type="stmt"/>
|
|
661
|
+
<line num="150" count="3" type="stmt"/>
|
|
662
|
+
<line num="151" count="3" type="stmt"/>
|
|
663
|
+
<line num="152" count="3" type="stmt"/>
|
|
664
|
+
<line num="153" count="3" type="stmt"/>
|
|
665
|
+
<line num="154" count="3" type="stmt"/>
|
|
666
|
+
<line num="155" count="3" type="stmt"/>
|
|
667
|
+
<line num="156" count="3" type="stmt"/>
|
|
668
|
+
<line num="157" count="3" type="stmt"/>
|
|
669
|
+
<line num="158" count="3" type="stmt"/>
|
|
670
|
+
<line num="159" count="3" type="stmt"/>
|
|
671
|
+
<line num="160" count="3" type="stmt"/>
|
|
672
|
+
<line num="161" count="3" type="stmt"/>
|
|
673
|
+
<line num="162" count="3" type="stmt"/>
|
|
674
|
+
<line num="163" count="3" type="stmt"/>
|
|
675
|
+
<line num="164" count="3" type="stmt"/>
|
|
676
|
+
<line num="165" count="3" type="stmt"/>
|
|
677
|
+
<line num="166" count="3" type="stmt"/>
|
|
678
|
+
<line num="167" count="3" type="stmt"/>
|
|
679
|
+
<line num="168" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
680
|
+
<line num="169" count="22" type="stmt"/>
|
|
681
|
+
<line num="170" count="22" type="stmt"/>
|
|
682
|
+
<line num="171" count="22" type="stmt"/>
|
|
683
|
+
<line num="172" count="22" type="stmt"/>
|
|
684
|
+
<line num="173" count="3" type="stmt"/>
|
|
685
|
+
<line num="174" count="3" type="stmt"/>
|
|
237
686
|
</file>
|
|
238
|
-
|
|
239
|
-
|
|
687
|
+
</package>
|
|
688
|
+
<package name="typography">
|
|
689
|
+
<metrics statements="80" coveredstatements="80" conditionals="4" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
690
|
+
<file name="SrOnly.tsx" path="/home/mlaursen/code/react-md/packages/core/src/typography/SrOnly.tsx">
|
|
691
|
+
<metrics statements="80" coveredstatements="80" conditionals="4" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
240
692
|
<line num="1" count="1" type="stmt"/>
|
|
241
693
|
<line num="2" count="1" type="stmt"/>
|
|
242
694
|
<line num="3" count="1" type="stmt"/>
|
|
243
695
|
<line num="4" count="1" type="stmt"/>
|
|
244
696
|
<line num="5" count="1" type="stmt"/>
|
|
245
|
-
<line num="6" count="1" type="
|
|
246
|
-
<line num="7" count="
|
|
247
|
-
<line num="8" count="
|
|
248
|
-
<line num="9" count="
|
|
249
|
-
<line num="10" count="
|
|
250
|
-
<line num="11" count="
|
|
251
|
-
<line num="12" count="
|
|
252
|
-
<line num="13" count="
|
|
253
|
-
<line num="14" count="
|
|
254
|
-
<line num="15" count="
|
|
697
|
+
<line num="6" count="1" type="stmt"/>
|
|
698
|
+
<line num="7" count="1" type="stmt"/>
|
|
699
|
+
<line num="8" count="1" type="stmt"/>
|
|
700
|
+
<line num="9" count="1" type="stmt"/>
|
|
701
|
+
<line num="10" count="1" type="stmt"/>
|
|
702
|
+
<line num="11" count="1" type="stmt"/>
|
|
703
|
+
<line num="12" count="1" type="stmt"/>
|
|
704
|
+
<line num="13" count="1" type="stmt"/>
|
|
705
|
+
<line num="14" count="1" type="stmt"/>
|
|
706
|
+
<line num="15" count="1" type="stmt"/>
|
|
707
|
+
<line num="16" count="1" type="stmt"/>
|
|
708
|
+
<line num="17" count="1" type="stmt"/>
|
|
709
|
+
<line num="18" count="1" type="stmt"/>
|
|
710
|
+
<line num="19" count="1" type="stmt"/>
|
|
711
|
+
<line num="20" count="1" type="stmt"/>
|
|
712
|
+
<line num="21" count="1" type="stmt"/>
|
|
713
|
+
<line num="22" count="1" type="stmt"/>
|
|
714
|
+
<line num="23" count="1" type="stmt"/>
|
|
715
|
+
<line num="24" count="1" type="stmt"/>
|
|
716
|
+
<line num="25" count="1" type="stmt"/>
|
|
717
|
+
<line num="26" count="1" type="stmt"/>
|
|
718
|
+
<line num="27" count="1" type="stmt"/>
|
|
719
|
+
<line num="28" count="1" type="stmt"/>
|
|
720
|
+
<line num="29" count="1" type="stmt"/>
|
|
721
|
+
<line num="30" count="1" type="stmt"/>
|
|
722
|
+
<line num="31" count="1" type="stmt"/>
|
|
723
|
+
<line num="32" count="1" type="stmt"/>
|
|
724
|
+
<line num="33" count="1" type="stmt"/>
|
|
725
|
+
<line num="34" count="1" type="stmt"/>
|
|
726
|
+
<line num="35" count="1" type="stmt"/>
|
|
727
|
+
<line num="36" count="1" type="stmt"/>
|
|
728
|
+
<line num="37" count="1" type="stmt"/>
|
|
729
|
+
<line num="38" count="1" type="stmt"/>
|
|
730
|
+
<line num="39" count="1" type="stmt"/>
|
|
731
|
+
<line num="40" count="1" type="stmt"/>
|
|
732
|
+
<line num="41" count="1" type="stmt"/>
|
|
733
|
+
<line num="42" count="1" type="stmt"/>
|
|
734
|
+
<line num="43" count="1" type="stmt"/>
|
|
735
|
+
<line num="44" count="1" type="stmt"/>
|
|
736
|
+
<line num="45" count="1" type="stmt"/>
|
|
737
|
+
<line num="46" count="1" type="stmt"/>
|
|
738
|
+
<line num="47" count="1" type="stmt"/>
|
|
739
|
+
<line num="48" count="1" type="stmt"/>
|
|
740
|
+
<line num="49" count="1" type="stmt"/>
|
|
741
|
+
<line num="50" count="1" type="stmt"/>
|
|
742
|
+
<line num="51" count="1" type="stmt"/>
|
|
743
|
+
<line num="52" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
744
|
+
<line num="53" count="1" type="stmt"/>
|
|
745
|
+
<line num="54" count="1" type="stmt"/>
|
|
746
|
+
<line num="55" count="1" type="stmt"/>
|
|
747
|
+
<line num="56" count="1" type="stmt"/>
|
|
748
|
+
<line num="57" count="1" type="stmt"/>
|
|
749
|
+
<line num="58" count="1" type="stmt"/>
|
|
750
|
+
<line num="59" count="1" type="stmt"/>
|
|
751
|
+
<line num="60" count="1" type="stmt"/>
|
|
752
|
+
<line num="61" count="1" type="stmt"/>
|
|
753
|
+
<line num="62" count="1" type="stmt"/>
|
|
754
|
+
<line num="63" count="1" type="stmt"/>
|
|
755
|
+
<line num="64" count="1" type="stmt"/>
|
|
756
|
+
<line num="65" count="1" type="stmt"/>
|
|
757
|
+
<line num="66" count="1" type="stmt"/>
|
|
758
|
+
<line num="67" count="1" type="stmt"/>
|
|
759
|
+
<line num="68" count="1" type="stmt"/>
|
|
760
|
+
<line num="69" count="1" type="stmt"/>
|
|
761
|
+
<line num="70" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
762
|
+
<line num="71" count="1" type="stmt"/>
|
|
763
|
+
<line num="72" count="1" type="cond" truecount="0" falsecount="2"/>
|
|
764
|
+
<line num="73" count="1" type="stmt"/>
|
|
765
|
+
<line num="74" count="1" type="stmt"/>
|
|
766
|
+
<line num="75" count="1" type="stmt"/>
|
|
767
|
+
<line num="76" count="1" type="stmt"/>
|
|
768
|
+
<line num="77" count="1" type="stmt"/>
|
|
769
|
+
<line num="78" count="1" type="stmt"/>
|
|
770
|
+
<line num="79" count="1" type="stmt"/>
|
|
771
|
+
<line num="80" count="1" type="stmt"/>
|
|
255
772
|
</file>
|
|
256
773
|
</package>
|
|
257
774
|
</project>
|