@ozen-ui/kit 0.70.0 → 0.71.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AutocompleteListCard/package.json +5 -0
- package/DataListBase/package.json +5 -0
- package/DataListCard/package.json +5 -0
- package/FileUploader/package.json +5 -0
- package/ListCard/package.json +5 -0
- package/ListCardItem/package.json +5 -0
- package/__inner__/cjs/components/Autocomplete/Autocomplete.d.ts +0 -1
- package/__inner__/cjs/components/Autocomplete/Autocomplete.js +3 -4
- package/__inner__/cjs/components/Autocomplete/classNames.d.ts +1 -0
- package/__inner__/cjs/components/Autocomplete/classNames.js +5 -0
- package/__inner__/cjs/components/Autocomplete/components/AutocompleteRenderRight/AutocompleteRenderRight.d.ts +1 -1
- package/__inner__/cjs/components/Autocomplete/components/AutocompleteRenderRight/AutocompleteRenderRight.js +3 -3
- package/__inner__/cjs/components/Autocomplete/index.d.ts +1 -0
- package/__inner__/cjs/components/Autocomplete/index.js +1 -0
- package/__inner__/cjs/components/AutocompleteBase/AutocompleteBase.js +10 -14
- package/__inner__/cjs/components/AutocompleteBase/entities/index.d.ts +0 -1
- package/__inner__/cjs/components/AutocompleteBase/entities/index.js +0 -1
- package/__inner__/cjs/components/AutocompleteBase/entities/input/index.d.ts +0 -1
- package/__inner__/cjs/components/AutocompleteBase/entities/input/index.js +0 -1
- package/__inner__/cjs/components/AutocompleteBase/entities/option/option.d.ts +6 -4
- package/__inner__/cjs/components/AutocompleteBase/hooks/useAutocompleteBaseInputEvents/useAutocompleteBaseInputEvents.js +7 -6
- package/__inner__/cjs/components/AutocompleteBase/hooks/useAutocompleteBaseOptions/useAutocompleteBaseOptions.d.ts +4 -6
- package/__inner__/cjs/components/AutocompleteBase/hooks/useAutocompleteBaseOptions/useAutocompleteBaseOptions.js +1 -5
- package/__inner__/cjs/components/AutocompleteBase/hooks/useAutocompleteBaseValue/types.d.ts +3 -3
- package/__inner__/cjs/components/AutocompleteBase/hooks/useAutocompleteBaseValue/useAutocompleteBaseValue.d.ts +3 -2
- package/__inner__/cjs/components/AutocompleteBase/hooks/useAutocompleteBaseValue/useAutocompleteBaseValue.js +10 -5
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseDropdown/AutocompleteBaseDropdown.d.ts +1 -1
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseDropdown/constants.d.ts +1 -1
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/AutocompleteBaseInput.d.ts +2 -2
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/AutocompleteBaseInput.js +2 -2
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/components/AutocompleteBaseInputMultiple/AutocompleteBaseInputMultiple.js +1 -1
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/components/AutocompleteBaseRenderRight/AutocompleteBaseRenderRight.d.ts +1 -1
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/components/AutocompleteBaseRenderRight/AutocompleteBaseRenderRight.js +4 -8
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/components/AutocompleteBaseRenderRight/types.d.ts +3 -3
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/entities/index.d.ts +0 -2
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/entities/index.js +0 -2
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/index.d.ts +1 -0
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/index.js +1 -0
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/types.d.ts +5 -5
- package/__inner__/cjs/components/AutocompleteBase/types.d.ts +6 -5
- package/__inner__/cjs/components/AutocompleteListCard/AutocompleteListCard.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/AutocompleteListCard.js +45 -0
- package/__inner__/cjs/components/AutocompleteListCard/constants.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/constants.js +6 -0
- package/__inner__/cjs/components/AutocompleteListCard/context/base/AutocompleteListCardContext.d.ts +6 -0
- package/__inner__/cjs/components/AutocompleteListCard/context/base/AutocompleteListCardContext.js +8 -0
- package/__inner__/cjs/components/AutocompleteListCard/context/base/index.d.ts +1 -0
- package/__inner__/cjs/components/AutocompleteListCard/context/base/index.js +4 -0
- package/__inner__/cjs/components/AutocompleteListCard/context/children/AutocompleteListCardChildrenContext.d.ts +7 -0
- package/__inner__/cjs/components/AutocompleteListCard/context/children/AutocompleteListCardChildrenContext.js +18 -0
- package/__inner__/cjs/components/AutocompleteListCard/context/children/index.d.ts +1 -0
- package/__inner__/cjs/components/AutocompleteListCard/context/children/index.js +4 -0
- package/__inner__/cjs/components/AutocompleteListCard/context/index.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/context/index.js +5 -0
- package/__inner__/cjs/components/AutocompleteListCard/entities/events/index.d.ts +1 -0
- package/__inner__/cjs/components/AutocompleteListCard/entities/events/index.js +4 -0
- package/__inner__/cjs/components/AutocompleteListCard/entities/events/onChange.d.ts +4 -0
- package/__inner__/cjs/components/AutocompleteListCard/entities/index.d.ts +4 -0
- package/__inner__/cjs/components/AutocompleteListCard/entities/index.js +7 -0
- package/__inner__/cjs/components/AutocompleteListCard/entities/option.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/entities/size.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/entities/size.js +5 -0
- package/__inner__/cjs/components/AutocompleteListCard/entities/value.d.ts +5 -0
- package/__inner__/cjs/components/AutocompleteListCard/hooks/index.d.ts +1 -0
- package/__inner__/cjs/components/AutocompleteListCard/hooks/index.js +4 -0
- package/__inner__/cjs/components/AutocompleteListCard/hooks/useAutocompleteListCardValue.d.ts +4 -0
- package/__inner__/cjs/components/AutocompleteListCard/hooks/useAutocompleteListCardValue.js +31 -0
- package/__inner__/cjs/components/AutocompleteListCard/index.d.ts +8 -0
- package/__inner__/cjs/components/AutocompleteListCard/index.js +11 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/AutocompleteListCardDropdown.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/AutocompleteListCardDropdown.js +47 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/hooks/index.d.ts +1 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/hooks/index.js +4 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/hooks/useAutocompleteListCardDropdownChildren.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/hooks/useAutocompleteListCardDropdownChildren.js +28 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/index.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/index.js +5 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/types.d.ts +7 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInput/AutocompleteListCardInput.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInput/AutocompleteListCardInput.js +16 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInput/index.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInput/index.js +5 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInput/types.d.ts +6 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInput/types.js +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/AutocompleteListCardInputAvatar.d.ts +3 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/AutocompleteListCardInputAvatar.js +19 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/index.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/index.js +5 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/types.d.ts +3 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/types.js +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardItem/AutocompleteListCardItem.d.ts +3 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardItem/AutocompleteListCardItem.js +21 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardItem/constants.d.ts +1 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardItem/constants.js +5 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardItem/index.d.ts +3 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardItem/index.js +6 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardItem/types.d.ts +10 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/AutocompleteListCardItem/types.js +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/index.d.ts +4 -0
- package/__inner__/cjs/components/AutocompleteListCard/modules/index.js +7 -0
- package/__inner__/cjs/components/AutocompleteListCard/types.d.ts +18 -0
- package/__inner__/cjs/components/AutocompleteListCard/types.js +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/utils/index.d.ts +2 -0
- package/__inner__/cjs/components/AutocompleteListCard/utils/index.js +5 -0
- package/__inner__/cjs/components/AutocompleteListCard/utils/isAutocompleteListCardItem.d.ts +3 -0
- package/__inner__/cjs/components/AutocompleteListCard/utils/isAutocompleteListCardItem.js +8 -0
- package/__inner__/cjs/components/AutocompleteListCard/utils/toAutocompleteListCardValue.d.ts +3 -0
- package/__inner__/cjs/components/AutocompleteListCard/utils/toAutocompleteListCardValue.js +16 -0
- package/__inner__/cjs/components/Avatar/types.d.ts +2 -0
- package/__inner__/cjs/components/Backdrop/Backdrop.d.ts +1 -1
- package/__inner__/cjs/components/Badge/Badge.d.ts +1 -1
- package/__inner__/cjs/components/BottomSheetBase/modules/BottomSheetBaseBackdrop/BottomSheetBaseBackdrop.d.ts +1 -1
- package/__inner__/cjs/components/Breadcrumbs/components/BreadcrumbItem.d.ts +1 -1
- package/__inner__/cjs/components/Button/Button.d.ts +1 -1
- package/__inner__/cjs/components/ButtonBase/ButtonBase.d.ts +1 -1
- package/__inner__/cjs/components/ButtonNext/Button.d.ts +1 -1
- package/__inner__/cjs/components/Card/Card.d.ts +1 -1
- package/__inner__/cjs/components/CheckboxGroup/CheckboxGroup.d.ts +1 -1
- package/__inner__/cjs/components/CheckboxGroupNext/CheckboxGroup.d.ts +1 -1
- package/__inner__/cjs/components/ChipGroup/ChipGroup.d.ts +1 -1
- package/__inner__/cjs/components/ChipNext/Chip.d.ts +1 -1
- package/__inner__/cjs/components/Container/Container.d.ts +1 -1
- package/__inner__/cjs/components/DataListBase/DataListBase.css +70 -0
- package/__inner__/cjs/components/DataListBase/DataListBase.d.ts +4 -0
- package/__inner__/cjs/components/DataListBase/DataListBase.js +72 -0
- package/__inner__/cjs/components/DataListBase/DataListBaseContext.d.ts +13 -0
- package/__inner__/cjs/components/DataListBase/DataListBaseContext.js +48 -0
- package/__inner__/cjs/components/DataListBase/constants.d.ts +4 -0
- package/__inner__/cjs/components/DataListBase/constants.js +7 -0
- package/__inner__/cjs/components/DataListBase/entities/events/index.d.ts +1 -0
- package/__inner__/cjs/components/DataListBase/entities/events/index.js +4 -0
- package/__inner__/cjs/components/DataListBase/entities/events/onChange.d.ts +3 -0
- package/__inner__/cjs/components/DataListBase/entities/events/onChange.js +2 -0
- package/__inner__/cjs/components/DataListBase/entities/index.d.ts +3 -0
- package/__inner__/cjs/components/DataListBase/entities/index.js +6 -0
- package/__inner__/cjs/components/DataListBase/entities/option.d.ts +10 -0
- package/__inner__/cjs/components/DataListBase/entities/option.js +2 -0
- package/__inner__/cjs/components/DataListBase/entities/value.d.ts +5 -0
- package/__inner__/cjs/components/DataListBase/entities/value.js +2 -0
- package/__inner__/cjs/components/DataListBase/hooks/index.d.ts +7 -0
- package/__inner__/cjs/components/DataListBase/hooks/index.js +10 -0
- package/__inner__/cjs/components/DataListBase/hooks/useAsDataListBaseItem/index.d.ts +1 -0
- package/__inner__/cjs/components/DataListBase/hooks/useAsDataListBaseItem/index.js +4 -0
- package/__inner__/cjs/components/DataListBase/hooks/useAsDataListBaseItem/useAsDataListBaseItem.d.ts +13 -0
- package/__inner__/cjs/components/DataListBase/hooks/useAsDataListBaseItem/useAsDataListBaseItem.js +44 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseControls/index.d.ts +2 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseControls/index.js +5 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseControls/types.d.ts +4 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseControls/types.js +2 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseControls/useDataListBaseControls.d.ts +8 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseControls/useDataListBaseControls.js +79 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseEvents/index.d.ts +1 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseEvents/index.js +4 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseEvents/useDataListBaseEvents.d.ts +8 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseEvents/useDataListBaseEvents.js +29 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptions/index.d.ts +2 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptions/index.js +5 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptions/types.d.ts +7 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptions/types.js +2 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptions/useDataListBaseOptions.d.ts +8 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptions/useDataListBaseOptions.js +22 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptionsStore/index.d.ts +2 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptionsStore/index.js +5 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptionsStore/types.d.ts +22 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptionsStore/types.js +2 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptionsStore/useDataListBaseOptionsStore.d.ts +3 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseOptionsStore/useDataListBaseOptionsStore.js +61 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseScroll/index.d.ts +2 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseScroll/index.js +5 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseScroll/types.d.ts +5 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseScroll/types.js +2 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseScroll/useDataListBaseScroll.d.ts +10 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseScroll/useDataListBaseScroll.js +39 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseValue/index.d.ts +2 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseValue/index.js +5 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseValue/types.d.ts +10 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseValue/types.js +2 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseValue/useDataListBaseValue.d.ts +10 -0
- package/__inner__/cjs/components/DataListBase/hooks/useDataListBaseValue/useDataListBaseValue.js +69 -0
- package/__inner__/cjs/components/DataListBase/index.d.ts +7 -0
- package/__inner__/cjs/components/DataListBase/index.js +10 -0
- package/__inner__/cjs/components/DataListBase/types.d.ts +35 -0
- package/__inner__/cjs/components/DataListBase/types.js +2 -0
- package/__inner__/cjs/components/DataListBase/utils/getOptionIndex.d.ts +2 -0
- package/__inner__/cjs/components/DataListBase/utils/getOptionIndex.js +11 -0
- package/__inner__/cjs/components/DataListBase/utils/index.d.ts +6 -0
- package/__inner__/cjs/components/DataListBase/utils/index.js +9 -0
- package/__inner__/cjs/components/DataListBase/utils/isDataListBaseItem.d.ts +3 -0
- package/__inner__/cjs/components/DataListBase/utils/isDataListBaseItem.js +9 -0
- package/__inner__/cjs/components/DataListBase/utils/isMultiple.d.ts +4 -0
- package/__inner__/cjs/components/DataListBase/utils/isMultiple.js +7 -0
- package/__inner__/cjs/components/DataListBase/utils/isSelectedValue.d.ts +2 -0
- package/__inner__/cjs/components/DataListBase/utils/isSelectedValue.js +5 -0
- package/__inner__/cjs/components/DataListBase/utils/isSingle.d.ts +4 -0
- package/__inner__/cjs/components/DataListBase/utils/isSingle.js +7 -0
- package/__inner__/cjs/components/DataListBase/utils/lastSelectedValue.d.ts +2 -0
- package/__inner__/cjs/components/DataListBase/utils/lastSelectedValue.js +16 -0
- package/__inner__/cjs/components/DataListCard/DataListCard.css +48 -0
- package/__inner__/cjs/components/DataListCard/DataListCard.d.ts +6 -0
- package/__inner__/cjs/components/DataListCard/DataListCard.js +44 -0
- package/__inner__/cjs/components/DataListCard/DataListCardContext.d.ts +9 -0
- package/__inner__/cjs/components/DataListCard/DataListCardContext.js +18 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardLoading/DataListCardLoading.d.ts +4 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardLoading/DataListCardLoading.js +28 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardLoading/index.d.ts +2 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardLoading/index.js +5 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardLoading/types.d.ts +5 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardLoading/types.js +2 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardNoOption/DataListCardNoOption.d.ts +4 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardNoOption/DataListCardNoOption.js +25 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardNoOption/index.d.ts +2 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardNoOption/index.js +5 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardNoOption/types.d.ts +5 -0
- package/__inner__/cjs/components/DataListCard/components/DataListCardNoOption/types.js +2 -0
- package/__inner__/cjs/components/DataListCard/components/index.d.ts +2 -0
- package/__inner__/cjs/components/DataListCard/components/index.js +5 -0
- package/__inner__/cjs/components/DataListCard/constants.d.ts +15 -0
- package/__inner__/cjs/components/DataListCard/constants.js +19 -0
- package/__inner__/cjs/components/DataListCard/index.d.ts +4 -0
- package/__inner__/cjs/components/DataListCard/index.js +7 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardItem/DataListCardItem.css +6 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardItem/DataListCardItem.d.ts +3 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardItem/DataListCardItem.js +35 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardItem/constants.d.ts +1 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardItem/constants.js +4 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardItem/index.d.ts +3 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardItem/index.js +6 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardItem/types.d.ts +8 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardItem/types.js +2 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatus/DataListCardStatus.css +19 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatus/DataListCardStatus.d.ts +2 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatus/DataListCardStatus.js +17 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatus/constants.d.ts +4 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatus/constants.js +11 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatus/index.d.ts +3 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatus/index.js +6 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatus/types.d.ts +7 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatus/types.js +2 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatusText/DataListCardStatusText.d.ts +3 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatusText/DataListCardStatusText.js +16 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatusText/constants.d.ts +1 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatusText/constants.js +4 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatusText/index.d.ts +2 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatusText/index.js +5 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatusText/types.d.ts +7 -0
- package/__inner__/cjs/components/DataListCard/modules/DataListCardStatusText/types.js +2 -0
- package/__inner__/cjs/components/DataListCard/modules/index.d.ts +3 -0
- package/__inner__/cjs/components/DataListCard/modules/index.js +6 -0
- package/__inner__/cjs/components/DataListCard/types.d.ts +19 -0
- package/__inner__/cjs/components/DataListCard/types.js +2 -0
- package/__inner__/cjs/components/DialogNext/modules/DialogCloseButton/DialogCloseButton.d.ts +1 -1
- package/__inner__/cjs/components/DialogNext/modules/DialogFooterButton/DialogFooterButton.d.ts +1 -1
- package/__inner__/cjs/components/Divider/Divider.d.ts +1 -1
- package/__inner__/cjs/components/DrawerNext/modules/DrawerCloseButton/DrawerCloseButton.d.ts +1 -1
- package/__inner__/cjs/components/DrawerNext/modules/DrawerFooterButton/DrawerFooterButton.d.ts +1 -1
- package/__inner__/cjs/components/FieldControl/FieldControl.d.ts +1 -1
- package/__inner__/cjs/components/FieldInput/FieldInput.d.ts +1 -1
- package/__inner__/cjs/components/File/File.d.ts +1 -1
- package/__inner__/cjs/components/FormControlCarcass/FormControlCarcass.d.ts +1 -1
- package/__inner__/cjs/components/FormControlLabel/FormControlLabel.d.ts +1 -1
- package/__inner__/cjs/components/FormGroup/FormGroup.d.ts +1 -1
- package/__inner__/cjs/components/FormTitle/FormTitle.d.ts +1 -1
- package/__inner__/cjs/components/Grid/Grid.d.ts +1 -1
- package/__inner__/cjs/components/Grid/GridItem.d.ts +1 -1
- package/__inner__/cjs/components/IconButton/IconButton.d.ts +1 -1
- package/__inner__/cjs/components/IconButtonNext/IconButton.d.ts +1 -1
- package/__inner__/cjs/components/InputOTP/InputOTP.d.ts +1 -1
- package/__inner__/cjs/components/Link/Link.d.ts +1 -1
- package/__inner__/cjs/components/List/List.d.ts +1 -1
- package/__inner__/cjs/components/List/components/ListItem/ListItem.d.ts +1 -1
- package/__inner__/cjs/components/List/components/ListItemButton/ListItemButton.d.ts +1 -1
- package/__inner__/cjs/components/ListCard/ListCardContext.d.ts +11 -0
- package/__inner__/cjs/components/ListCard/ListCardContext.js +12 -0
- package/__inner__/cjs/components/ListCard/PageListCard/PageListCard.css +6 -0
- package/__inner__/cjs/components/ListCard/PageListCard/PageListCard.d.ts +4 -0
- package/__inner__/cjs/components/ListCard/PageListCard/PageListCard.js +30 -0
- package/__inner__/cjs/components/ListCard/PageListCard/constants.d.ts +1 -0
- package/__inner__/cjs/components/ListCard/PageListCard/constants.js +5 -0
- package/__inner__/cjs/components/ListCard/PageListCard/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCard/PageListCard/index.js +5 -0
- package/__inner__/cjs/components/ListCard/PageListCard/types.d.ts +12 -0
- package/__inner__/cjs/components/ListCard/PageListCard/types.js +2 -0
- package/__inner__/cjs/components/ListCard/constants.d.ts +9 -0
- package/__inner__/cjs/components/ListCard/constants.js +9 -0
- package/__inner__/cjs/components/ListCard/index.d.ts +4 -0
- package/__inner__/cjs/components/ListCard/index.js +7 -0
- package/__inner__/cjs/components/ListCard/types.d.ts +13 -0
- package/__inner__/cjs/components/ListCard/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/ListCardItem.css +112 -0
- package/__inner__/cjs/components/ListCardItem/ListCardItem.d.ts +11 -0
- package/__inner__/cjs/components/ListCardItem/ListCardItem.js +89 -0
- package/__inner__/cjs/components/ListCardItem/ListCardItemContext.d.ts +10 -0
- package/__inner__/cjs/components/ListCardItem/ListCardItemContext.js +18 -0
- package/__inner__/cjs/components/ListCardItem/__tests__/checkInteractiveElement.d.ts +6 -0
- package/__inner__/cjs/components/ListCardItem/__tests__/checkInteractiveElement.js +44 -0
- package/__inner__/cjs/components/ListCardItem/__tests__/checkItemColors.d.ts +6 -0
- package/__inner__/cjs/components/ListCardItem/__tests__/checkItemColors.js +15 -0
- package/__inner__/cjs/components/ListCardItem/__tests__/checkItemRatio.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/__tests__/checkItemRatio.js +19 -0
- package/__inner__/cjs/components/ListCardItem/__tests__/index.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/__tests__/index.js +6 -0
- package/__inner__/cjs/components/ListCardItem/classNames.d.ts +1 -0
- package/__inner__/cjs/components/ListCardItem/classNames.js +5 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemCaption/ListCardItemCaption.css +13 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemCaption/ListCardItemCaption.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemCaption/ListCardItemCaption.js +16 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemCaption/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemCaption/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemCaption/types.d.ts +7 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemCaption/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/ListCardItemInfoCarcass.css +106 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/ListCardItemInfoCarcass.d.ts +11 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/ListCardItemInfoCarcass.js +37 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/constants.d.ts +1 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/constants.js +4 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/entities/index.d.ts +1 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/entities/index.js +4 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/entities/text-overflow.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/entities/text-overflow.js +7 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/index.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/index.js +7 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/types.d.ts +13 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemInfoCarcass/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemItemCarcass/ListCardItemItemCarcass.css +28 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemItemCarcass/ListCardItemItemCarcass.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemItemCarcass/ListCardItemItemCarcass.js +24 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemItemCarcass/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemItemCarcass/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemItemCarcass/types.d.ts +20 -0
- package/__inner__/cjs/components/ListCardItem/components/ListCardItemItemCarcass/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/components/index.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/components/index.js +6 -0
- package/__inner__/cjs/components/ListCardItem/constants.d.ts +17 -0
- package/__inner__/cjs/components/ListCardItem/constants.js +20 -0
- package/__inner__/cjs/components/ListCardItem/entities/colorSchemes/background.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/entities/colorSchemes/background.js +2 -0
- package/__inner__/cjs/components/ListCardItem/entities/colorSchemes/base.d.ts +6 -0
- package/__inner__/cjs/components/ListCardItem/entities/colorSchemes/base.js +2 -0
- package/__inner__/cjs/components/ListCardItem/entities/colorSchemes/border.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/entities/colorSchemes/border.js +2 -0
- package/__inner__/cjs/components/ListCardItem/entities/colorSchemes/index.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/entities/colorSchemes/index.js +6 -0
- package/__inner__/cjs/components/ListCardItem/entities/index.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/entities/index.js +6 -0
- package/__inner__/cjs/components/ListCardItem/entities/size.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/entities/size.js +4 -0
- package/__inner__/cjs/components/ListCardItem/entities/variant.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/entities/variant.js +4 -0
- package/__inner__/cjs/components/ListCardItem/hooks/hover/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/hooks/hover/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/hooks/hover/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/hooks/hover/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/hooks/hover/useListCardItemHover.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/hooks/hover/useListCardItemHover.js +13 -0
- package/__inner__/cjs/components/ListCardItem/hooks/index.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/hooks/index.js +7 -0
- package/__inner__/cjs/components/ListCardItem/hooks/useListCardItemAsInteractiveModule.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/hooks/useListCardItemAsInteractiveModule.js +19 -0
- package/__inner__/cjs/components/ListCardItem/hooks/useListCardItemColorScheme.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/hooks/useListCardItemColorScheme.js +22 -0
- package/__inner__/cjs/components/ListCardItem/hooks/useListCardItemRatio.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/hooks/useListCardItemRatio.js +24 -0
- package/__inner__/cjs/components/ListCardItem/index.d.ts +7 -0
- package/__inner__/cjs/components/ListCardItem/index.js +10 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterButton/ListCardItemCenterButton.css +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterButton/ListCardItemCenterButton.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterButton/ListCardItemCenterButton.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterButton/constants.d.ts +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterButton/constants.js +12 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterButton/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterButton/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterButton/types.d.ts +7 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterButton/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterInfo/ListCardItemCenterInfo.d.ts +11 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterInfo/ListCardItemCenterInfo.js +18 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterInfo/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterInfo/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterInfo/types.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterInfo/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterTag/ListCardItemCenterTag.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterTag/ListCardItemCenterTag.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterTag/constants.d.ts +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterTag/constants.js +12 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterTag/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterTag/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterTag/types.d.ts +7 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemCenterTag/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlCheckbox/ListCardItemControlCheckbox.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlCheckbox/ListCardItemControlCheckbox.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlCheckbox/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlCheckbox/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlCheckbox/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlCheckbox/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlCheckbox/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlCheckbox/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlIcon/ListCardItemControlIcon.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlIcon/ListCardItemControlIcon.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlIcon/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlIcon/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlIcon/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlIcon/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlIcon/types.d.ts +12 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlIcon/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlItem/ListCardItemControlItem.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlItem/ListCardItemControlItem.js +22 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlItem/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlItem/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlItem/types.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlItem/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlRadio/ListCardItemControlRadio.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlRadio/ListCardItemControlRadio.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlRadio/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlRadio/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlRadio/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlRadio/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlRadio/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlRadio/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlToggle/ListCardItemControlToggle.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlToggle/ListCardItemControlToggle.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlToggle/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlToggle/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlToggle/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlToggle/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlToggle/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemControlToggle/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingAvatar/ListCardItemLeadingAvatar.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingAvatar/ListCardItemLeadingAvatar.js +24 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingAvatar/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingAvatar/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingAvatar/index.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingAvatar/index.js +6 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingAvatar/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingAvatar/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingCheckbox/ListCardItemLeadingCheckbox.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingCheckbox/ListCardItemLeadingCheckbox.js +27 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingCheckbox/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingCheckbox/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingCheckbox/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingCheckbox/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingCheckbox/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingCheckbox/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingIcon/ListCardItemLeadingIcon.css +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingIcon/ListCardItemLeadingIcon.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingIcon/ListCardItemLeadingIcon.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingIcon/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingIcon/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingIcon/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingIcon/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingIcon/types.d.ts +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingIcon/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingItem/ListCardItemLeadingItem.css +15 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingItem/ListCardItemLeadingItem.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingItem/ListCardItemLeadingItem.js +22 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingItem/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingItem/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingItem/types.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingItem/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingRadio/ListCardItemLeadingRadio.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingRadio/ListCardItemLeadingRadio.js +27 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingRadio/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingRadio/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingRadio/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingRadio/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingRadio/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemLeadingRadio/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingBadge/ListCardItemTrailingBadge.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingBadge/ListCardItemTrailingBadge.js +23 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingBadge/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingBadge/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingBadge/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingBadge/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingBadge/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingBadge/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingButton/ListCardItemTrailingButton.css +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingButton/ListCardItemTrailingButton.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingButton/ListCardItemTrailingButton.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingButton/constants.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingButton/constants.js +10 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingButton/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingButton/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingButton/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingButton/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingCheckbox/ListCardItemTrailingCheckbox.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingCheckbox/ListCardItemTrailingCheckbox.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingCheckbox/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingCheckbox/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingCheckbox/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingCheckbox/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingCheckbox/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingCheckbox/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIcon/ListCardItemTrailingIcon.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIcon/ListCardItemTrailingIcon.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIcon/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIcon/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIcon/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIcon/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIcon/types.d.ts +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIcon/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIconButton/ListCardItemTrailingIconButton.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIconButton/ListCardItemTrailingIconButton.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIconButton/constants.d.ts +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIconButton/constants.js +11 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIconButton/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIconButton/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIconButton/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingIconButton/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingInfo/ListCardItemTrailingInfo.d.ts +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingInfo/ListCardItemTrailingInfo.js +18 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingInfo/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingInfo/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingInfo/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingInfo/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingItem/ListCardItemTrailingItem.css +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingItem/ListCardItemTrailingItem.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingItem/ListCardItemTrailingItem.js +22 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingItem/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingItem/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingItem/types.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingItem/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingRadio/ListCardItemTrailingRadio.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingRadio/ListCardItemTrailingRadio.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingRadio/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingRadio/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingRadio/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingRadio/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingRadio/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingRadio/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingTag/ListCardItemTrailingTag.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingTag/ListCardItemTrailingTag.js +27 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingTag/constants.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingTag/constants.js +10 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingTag/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingTag/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingTag/types.d.ts +19 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingTag/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingToggle/ListCardItemTrailingToggle.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingToggle/ListCardItemTrailingToggle.js +26 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingToggle/constants.d.ts +3 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingToggle/constants.js +9 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingToggle/index.d.ts +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingToggle/index.js +5 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingToggle/types.d.ts +4 -0
- package/__inner__/cjs/components/ListCardItem/modules/ListCardItemTrailingToggle/types.js +2 -0
- package/__inner__/cjs/components/ListCardItem/modules/index.d.ts +23 -0
- package/__inner__/cjs/components/ListCardItem/modules/index.js +26 -0
- package/__inner__/cjs/components/ListCardItem/presets.d.ts +12 -0
- package/__inner__/cjs/components/ListCardItem/presets.js +15 -0
- package/__inner__/cjs/components/ListCardItem/types.d.ts +30 -0
- package/__inner__/cjs/components/ListCardItem/types.js +2 -0
- package/__inner__/cjs/components/Menu/components/MenuItem/MenuItem.d.ts +1 -1
- package/__inner__/cjs/components/OzenProvider/OzenProvider.d.ts +1 -1
- package/__inner__/cjs/components/OzenProvider/OzenProvider.js +1 -1
- package/__inner__/cjs/components/OzenProvider/providers/theme/entities/defaultProps.d.ts +39 -0
- package/__inner__/cjs/components/Pagination/Pagination.d.ts +1 -1
- package/__inner__/cjs/components/Paper/Paper.d.ts +1 -1
- package/__inner__/cjs/components/Popover/Popover.d.ts +1 -1
- package/__inner__/cjs/components/Portal/Portal.d.ts +1 -1
- package/__inner__/cjs/components/PortalBase/PortalBase.d.ts +1 -1
- package/__inner__/cjs/components/PortalBase/PortalBase.js +1 -1
- package/__inner__/cjs/components/ProgressBar/ProgressBar.d.ts +1 -1
- package/__inner__/cjs/components/RadioGroup/RadioGroup.d.ts +1 -1
- package/__inner__/cjs/components/RadioGroupNext/RadioGroup.d.ts +1 -1
- package/__inner__/cjs/components/SectionMessage/modules/SectionMessageButton/SectionMessageButton.d.ts +1 -1
- package/__inner__/cjs/components/Slider/Slider.d.ts +1 -1
- package/__inner__/cjs/components/Stack/Stack.d.ts +1 -1
- package/__inner__/cjs/components/Stack/Stack.js +2 -1
- package/__inner__/cjs/components/Stack/constants.d.ts +1 -0
- package/__inner__/cjs/components/Stack/constants.js +4 -0
- package/__inner__/cjs/components/Stack/index.d.ts +1 -0
- package/__inner__/cjs/components/Stack/index.js +1 -0
- package/__inner__/cjs/components/Stack/types.d.ts +6 -2
- package/__inner__/cjs/components/Table/components/TableContainer/TableContainer.d.ts +1 -1
- package/__inner__/cjs/components/Tabs/components/Tab/Tab.d.ts +2 -2
- package/__inner__/cjs/components/Tag/Tag.d.ts +1 -1
- package/__inner__/cjs/components/TagNext/Tag.d.ts +1 -1
- package/__inner__/cjs/components/ThemeProvider/ThemeProvider.d.ts +1 -1
- package/__inner__/cjs/components/Title/Title.d.ts +1 -1
- package/__inner__/cjs/components/Title/components/variant/TitleVariant.d.ts +1 -1
- package/__inner__/cjs/components/Title/components/variant/main/TitleMain.d.ts +1 -1
- package/__inner__/cjs/components/Title/components/variant/secondary/TitleSecondary.d.ts +1 -1
- package/__inner__/cjs/components/Title/modules/TitleBreadcrumbItem/TitleBreadcrumbItem.d.ts +1 -1
- package/__inner__/cjs/components/Title/modules/TitleIconButton/TitleIconButton.d.ts +1 -1
- package/__inner__/cjs/components/Title/modules/TitleIconButton/presets/TitleBackIconButton/TitleBackIconButton.d.ts +1 -1
- package/__inner__/cjs/components/Title/modules/TitleTag/TitleTag.d.ts +1 -1
- package/__inner__/cjs/components/Tooltip/Tooltip.d.ts +1 -1
- package/__inner__/cjs/components/Typography/Typography.d.ts +1 -1
- package/__inner__/cjs/locale/locale.js +12 -0
- package/__inner__/cjs/types/object/index.d.ts +1 -0
- package/__inner__/cjs/types/object/index.js +1 -0
- package/__inner__/cjs/types/object/withRequired.d.ts +3 -0
- package/__inner__/cjs/types/object/withRequired.js +2 -0
- package/__inner__/cjs/utils/polymorphicComponentWithRef.d.ts +9 -8
- package/__inner__/cjs/utils/polymorphicComponentWithRef.js +1 -0
- package/__inner__/cjs/utils/react/extractElementsFromChildren.d.ts +2 -0
- package/__inner__/cjs/utils/react/extractElementsFromChildren.js +14 -0
- package/__inner__/cjs/utils/react/index.d.ts +3 -0
- package/__inner__/cjs/utils/react/index.js +3 -0
- package/__inner__/cjs/utils/react/isNodeWithDisplayName.d.ts +2 -0
- package/__inner__/cjs/utils/react/isNodeWithDisplayName.js +23 -0
- package/__inner__/cjs/utils/react/resolveChildren.d.ts +2 -0
- package/__inner__/cjs/utils/react/resolveChildren.js +8 -0
- package/__inner__/esm/components/Autocomplete/Autocomplete.d.ts +0 -1
- package/__inner__/esm/components/Autocomplete/Autocomplete.js +1 -2
- package/__inner__/esm/components/Autocomplete/classNames.d.ts +1 -0
- package/__inner__/esm/components/Autocomplete/classNames.js +2 -0
- package/__inner__/esm/components/Autocomplete/components/AutocompleteRenderRight/AutocompleteRenderRight.d.ts +1 -1
- package/__inner__/esm/components/Autocomplete/components/AutocompleteRenderRight/AutocompleteRenderRight.js +1 -1
- package/__inner__/esm/components/Autocomplete/index.d.ts +1 -0
- package/__inner__/esm/components/Autocomplete/index.js +1 -0
- package/__inner__/esm/components/AutocompleteBase/AutocompleteBase.js +10 -14
- package/__inner__/esm/components/AutocompleteBase/entities/index.d.ts +0 -1
- package/__inner__/esm/components/AutocompleteBase/entities/index.js +0 -1
- package/__inner__/esm/components/AutocompleteBase/entities/input/index.d.ts +0 -1
- package/__inner__/esm/components/AutocompleteBase/entities/input/index.js +0 -1
- package/__inner__/esm/components/AutocompleteBase/entities/option/option.d.ts +6 -4
- package/__inner__/esm/components/AutocompleteBase/hooks/useAutocompleteBaseInputEvents/useAutocompleteBaseInputEvents.js +8 -7
- package/__inner__/esm/components/AutocompleteBase/hooks/useAutocompleteBaseOptions/useAutocompleteBaseOptions.d.ts +4 -6
- package/__inner__/esm/components/AutocompleteBase/hooks/useAutocompleteBaseOptions/useAutocompleteBaseOptions.js +1 -5
- package/__inner__/esm/components/AutocompleteBase/hooks/useAutocompleteBaseValue/types.d.ts +3 -3
- package/__inner__/esm/components/AutocompleteBase/hooks/useAutocompleteBaseValue/useAutocompleteBaseValue.d.ts +3 -2
- package/__inner__/esm/components/AutocompleteBase/hooks/useAutocompleteBaseValue/useAutocompleteBaseValue.js +10 -5
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseDropdown/AutocompleteBaseDropdown.d.ts +1 -1
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseDropdown/constants.d.ts +1 -1
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/AutocompleteBaseInput.d.ts +2 -2
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/AutocompleteBaseInput.js +2 -2
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/components/AutocompleteBaseInputMultiple/AutocompleteBaseInputMultiple.js +1 -1
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/components/AutocompleteBaseRenderRight/AutocompleteBaseRenderRight.d.ts +1 -1
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/components/AutocompleteBaseRenderRight/AutocompleteBaseRenderRight.js +4 -8
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/components/AutocompleteBaseRenderRight/types.d.ts +3 -3
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/entities/index.d.ts +0 -2
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/entities/index.js +0 -2
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/index.d.ts +1 -0
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/index.js +1 -0
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/types.d.ts +5 -5
- package/__inner__/esm/components/AutocompleteBase/types.d.ts +6 -5
- package/__inner__/esm/components/AutocompleteListCard/AutocompleteListCard.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/AutocompleteListCard.js +42 -0
- package/__inner__/esm/components/AutocompleteListCard/constants.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/constants.js +3 -0
- package/__inner__/esm/components/AutocompleteListCard/context/base/AutocompleteListCardContext.d.ts +6 -0
- package/__inner__/esm/components/AutocompleteListCard/context/base/AutocompleteListCardContext.js +4 -0
- package/__inner__/esm/components/AutocompleteListCard/context/base/index.d.ts +1 -0
- package/__inner__/esm/components/AutocompleteListCard/context/base/index.js +1 -0
- package/__inner__/esm/components/AutocompleteListCard/context/children/AutocompleteListCardChildrenContext.d.ts +7 -0
- package/__inner__/esm/components/AutocompleteListCard/context/children/AutocompleteListCardChildrenContext.js +14 -0
- package/__inner__/esm/components/AutocompleteListCard/context/children/index.d.ts +1 -0
- package/__inner__/esm/components/AutocompleteListCard/context/children/index.js +1 -0
- package/__inner__/esm/components/AutocompleteListCard/context/index.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/context/index.js +2 -0
- package/__inner__/esm/components/AutocompleteListCard/entities/events/index.d.ts +1 -0
- package/__inner__/esm/components/AutocompleteListCard/entities/events/index.js +1 -0
- package/__inner__/esm/components/AutocompleteListCard/entities/events/onChange.d.ts +4 -0
- package/__inner__/esm/components/AutocompleteListCard/entities/index.d.ts +4 -0
- package/__inner__/esm/components/AutocompleteListCard/entities/index.js +4 -0
- package/__inner__/esm/components/AutocompleteListCard/entities/option.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/entities/size.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/entities/size.js +2 -0
- package/__inner__/esm/components/AutocompleteListCard/entities/value.d.ts +5 -0
- package/__inner__/esm/components/AutocompleteListCard/hooks/index.d.ts +1 -0
- package/__inner__/esm/components/AutocompleteListCard/hooks/index.js +1 -0
- package/__inner__/esm/components/AutocompleteListCard/hooks/useAutocompleteListCardValue.d.ts +4 -0
- package/__inner__/esm/components/AutocompleteListCard/hooks/useAutocompleteListCardValue.js +27 -0
- package/__inner__/esm/components/AutocompleteListCard/index.d.ts +8 -0
- package/__inner__/esm/components/AutocompleteListCard/index.js +8 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/AutocompleteListCardDropdown.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/AutocompleteListCardDropdown.js +44 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/hooks/index.d.ts +1 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/hooks/index.js +1 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/hooks/useAutocompleteListCardDropdownChildren.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/hooks/useAutocompleteListCardDropdownChildren.js +24 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/index.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/index.js +2 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardDropdown/types.d.ts +7 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInput/AutocompleteListCardInput.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInput/AutocompleteListCardInput.js +13 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInput/index.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInput/index.js +2 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInput/types.d.ts +6 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInput/types.js +1 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/AutocompleteListCardInputAvatar.d.ts +3 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/AutocompleteListCardInputAvatar.js +16 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/index.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/index.js +2 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/types.d.ts +3 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardInputAvatar/types.js +1 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardItem/AutocompleteListCardItem.d.ts +3 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardItem/AutocompleteListCardItem.js +18 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardItem/constants.d.ts +1 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardItem/constants.js +2 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardItem/index.d.ts +3 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardItem/index.js +3 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardItem/types.d.ts +10 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/AutocompleteListCardItem/types.js +1 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/index.d.ts +4 -0
- package/__inner__/esm/components/AutocompleteListCard/modules/index.js +4 -0
- package/__inner__/esm/components/AutocompleteListCard/types.d.ts +18 -0
- package/__inner__/esm/components/AutocompleteListCard/types.js +1 -0
- package/__inner__/esm/components/AutocompleteListCard/utils/index.d.ts +2 -0
- package/__inner__/esm/components/AutocompleteListCard/utils/index.js +2 -0
- package/__inner__/esm/components/AutocompleteListCard/utils/isAutocompleteListCardItem.d.ts +3 -0
- package/__inner__/esm/components/AutocompleteListCard/utils/isAutocompleteListCardItem.js +4 -0
- package/__inner__/esm/components/AutocompleteListCard/utils/toAutocompleteListCardValue.d.ts +3 -0
- package/__inner__/esm/components/AutocompleteListCard/utils/toAutocompleteListCardValue.js +12 -0
- package/__inner__/esm/components/Avatar/types.d.ts +2 -0
- package/__inner__/esm/components/Backdrop/Backdrop.d.ts +1 -1
- package/__inner__/esm/components/Badge/Badge.d.ts +1 -1
- package/__inner__/esm/components/BottomSheetBase/modules/BottomSheetBaseBackdrop/BottomSheetBaseBackdrop.d.ts +1 -1
- package/__inner__/esm/components/Breadcrumbs/components/BreadcrumbItem.d.ts +1 -1
- package/__inner__/esm/components/Button/Button.d.ts +1 -1
- package/__inner__/esm/components/ButtonBase/ButtonBase.d.ts +1 -1
- package/__inner__/esm/components/ButtonNext/Button.d.ts +1 -1
- package/__inner__/esm/components/Card/Card.d.ts +1 -1
- package/__inner__/esm/components/CheckboxGroup/CheckboxGroup.d.ts +1 -1
- package/__inner__/esm/components/CheckboxGroupNext/CheckboxGroup.d.ts +1 -1
- package/__inner__/esm/components/ChipGroup/ChipGroup.d.ts +1 -1
- package/__inner__/esm/components/ChipNext/Chip.d.ts +1 -1
- package/__inner__/esm/components/Container/Container.d.ts +1 -1
- package/__inner__/esm/components/DataListBase/DataListBase.css +70 -0
- package/__inner__/esm/components/DataListBase/DataListBase.d.ts +4 -0
- package/__inner__/esm/components/DataListBase/DataListBase.js +69 -0
- package/__inner__/esm/components/DataListBase/DataListBaseContext.d.ts +13 -0
- package/__inner__/esm/components/DataListBase/DataListBaseContext.js +44 -0
- package/__inner__/esm/components/DataListBase/constants.d.ts +4 -0
- package/__inner__/esm/components/DataListBase/constants.js +4 -0
- package/__inner__/esm/components/DataListBase/entities/events/index.d.ts +1 -0
- package/__inner__/esm/components/DataListBase/entities/events/index.js +1 -0
- package/__inner__/esm/components/DataListBase/entities/events/onChange.d.ts +3 -0
- package/__inner__/esm/components/DataListBase/entities/events/onChange.js +1 -0
- package/__inner__/esm/components/DataListBase/entities/index.d.ts +3 -0
- package/__inner__/esm/components/DataListBase/entities/index.js +3 -0
- package/__inner__/esm/components/DataListBase/entities/option.d.ts +10 -0
- package/__inner__/esm/components/DataListBase/entities/option.js +1 -0
- package/__inner__/esm/components/DataListBase/entities/value.d.ts +5 -0
- package/__inner__/esm/components/DataListBase/entities/value.js +1 -0
- package/__inner__/esm/components/DataListBase/hooks/index.d.ts +7 -0
- package/__inner__/esm/components/DataListBase/hooks/index.js +7 -0
- package/__inner__/esm/components/DataListBase/hooks/useAsDataListBaseItem/index.d.ts +1 -0
- package/__inner__/esm/components/DataListBase/hooks/useAsDataListBaseItem/index.js +1 -0
- package/__inner__/esm/components/DataListBase/hooks/useAsDataListBaseItem/useAsDataListBaseItem.d.ts +13 -0
- package/__inner__/esm/components/DataListBase/hooks/useAsDataListBaseItem/useAsDataListBaseItem.js +40 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseControls/index.d.ts +2 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseControls/index.js +2 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseControls/types.d.ts +4 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseControls/types.js +1 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseControls/useDataListBaseControls.d.ts +8 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseControls/useDataListBaseControls.js +75 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseEvents/index.d.ts +1 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseEvents/index.js +1 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseEvents/useDataListBaseEvents.d.ts +8 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseEvents/useDataListBaseEvents.js +25 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptions/index.d.ts +2 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptions/index.js +2 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptions/types.d.ts +7 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptions/types.js +1 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptions/useDataListBaseOptions.d.ts +8 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptions/useDataListBaseOptions.js +18 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptionsStore/index.d.ts +2 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptionsStore/index.js +2 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptionsStore/types.d.ts +22 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptionsStore/types.js +1 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptionsStore/useDataListBaseOptionsStore.d.ts +3 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseOptionsStore/useDataListBaseOptionsStore.js +57 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseScroll/index.d.ts +2 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseScroll/index.js +2 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseScroll/types.d.ts +5 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseScroll/types.js +1 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseScroll/useDataListBaseScroll.d.ts +10 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseScroll/useDataListBaseScroll.js +35 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseValue/index.d.ts +2 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseValue/index.js +2 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseValue/types.d.ts +10 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseValue/types.js +1 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseValue/useDataListBaseValue.d.ts +10 -0
- package/__inner__/esm/components/DataListBase/hooks/useDataListBaseValue/useDataListBaseValue.js +65 -0
- package/__inner__/esm/components/DataListBase/index.d.ts +7 -0
- package/__inner__/esm/components/DataListBase/index.js +7 -0
- package/__inner__/esm/components/DataListBase/types.d.ts +35 -0
- package/__inner__/esm/components/DataListBase/types.js +1 -0
- package/__inner__/esm/components/DataListBase/utils/getOptionIndex.d.ts +2 -0
- package/__inner__/esm/components/DataListBase/utils/getOptionIndex.js +7 -0
- package/__inner__/esm/components/DataListBase/utils/index.d.ts +6 -0
- package/__inner__/esm/components/DataListBase/utils/index.js +6 -0
- package/__inner__/esm/components/DataListBase/utils/isDataListBaseItem.d.ts +3 -0
- package/__inner__/esm/components/DataListBase/utils/isDataListBaseItem.js +5 -0
- package/__inner__/esm/components/DataListBase/utils/isMultiple.d.ts +4 -0
- package/__inner__/esm/components/DataListBase/utils/isMultiple.js +2 -0
- package/__inner__/esm/components/DataListBase/utils/isSelectedValue.d.ts +2 -0
- package/__inner__/esm/components/DataListBase/utils/isSelectedValue.js +1 -0
- package/__inner__/esm/components/DataListBase/utils/isSingle.d.ts +4 -0
- package/__inner__/esm/components/DataListBase/utils/isSingle.js +2 -0
- package/__inner__/esm/components/DataListBase/utils/lastSelectedValue.d.ts +2 -0
- package/__inner__/esm/components/DataListBase/utils/lastSelectedValue.js +12 -0
- package/__inner__/esm/components/DataListCard/DataListCard.css +48 -0
- package/__inner__/esm/components/DataListCard/DataListCard.d.ts +6 -0
- package/__inner__/esm/components/DataListCard/DataListCard.js +41 -0
- package/__inner__/esm/components/DataListCard/DataListCardContext.d.ts +9 -0
- package/__inner__/esm/components/DataListCard/DataListCardContext.js +14 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardLoading/DataListCardLoading.d.ts +4 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardLoading/DataListCardLoading.js +24 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardLoading/index.d.ts +2 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardLoading/index.js +2 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardLoading/types.d.ts +5 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardLoading/types.js +1 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardNoOption/DataListCardNoOption.d.ts +4 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardNoOption/DataListCardNoOption.js +21 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardNoOption/index.d.ts +2 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardNoOption/index.js +2 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardNoOption/types.d.ts +5 -0
- package/__inner__/esm/components/DataListCard/components/DataListCardNoOption/types.js +1 -0
- package/__inner__/esm/components/DataListCard/components/index.d.ts +2 -0
- package/__inner__/esm/components/DataListCard/components/index.js +2 -0
- package/__inner__/esm/components/DataListCard/constants.d.ts +15 -0
- package/__inner__/esm/components/DataListCard/constants.js +16 -0
- package/__inner__/esm/components/DataListCard/index.d.ts +4 -0
- package/__inner__/esm/components/DataListCard/index.js +4 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardItem/DataListCardItem.css +6 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardItem/DataListCardItem.d.ts +3 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardItem/DataListCardItem.js +32 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardItem/constants.d.ts +1 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardItem/constants.js +1 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardItem/index.d.ts +3 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardItem/index.js +3 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardItem/types.d.ts +8 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardItem/types.js +1 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatus/DataListCardStatus.css +19 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatus/DataListCardStatus.d.ts +2 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatus/DataListCardStatus.js +14 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatus/constants.d.ts +4 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatus/constants.js +8 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatus/index.d.ts +3 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatus/index.js +3 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatus/types.d.ts +7 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatus/types.js +1 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatusText/DataListCardStatusText.d.ts +3 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatusText/DataListCardStatusText.js +13 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatusText/constants.d.ts +1 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatusText/constants.js +1 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatusText/index.d.ts +2 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatusText/index.js +2 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatusText/types.d.ts +7 -0
- package/__inner__/esm/components/DataListCard/modules/DataListCardStatusText/types.js +1 -0
- package/__inner__/esm/components/DataListCard/modules/index.d.ts +3 -0
- package/__inner__/esm/components/DataListCard/modules/index.js +3 -0
- package/__inner__/esm/components/DataListCard/types.d.ts +19 -0
- package/__inner__/esm/components/DataListCard/types.js +1 -0
- package/__inner__/esm/components/DialogNext/modules/DialogCloseButton/DialogCloseButton.d.ts +1 -1
- package/__inner__/esm/components/DialogNext/modules/DialogFooterButton/DialogFooterButton.d.ts +1 -1
- package/__inner__/esm/components/Divider/Divider.d.ts +1 -1
- package/__inner__/esm/components/DrawerNext/modules/DrawerCloseButton/DrawerCloseButton.d.ts +1 -1
- package/__inner__/esm/components/DrawerNext/modules/DrawerFooterButton/DrawerFooterButton.d.ts +1 -1
- package/__inner__/esm/components/FieldControl/FieldControl.d.ts +1 -1
- package/__inner__/esm/components/FieldInput/FieldInput.d.ts +1 -1
- package/__inner__/esm/components/File/File.d.ts +1 -1
- package/__inner__/esm/components/FormControlCarcass/FormControlCarcass.d.ts +1 -1
- package/__inner__/esm/components/FormControlLabel/FormControlLabel.d.ts +1 -1
- package/__inner__/esm/components/FormGroup/FormGroup.d.ts +1 -1
- package/__inner__/esm/components/FormTitle/FormTitle.d.ts +1 -1
- package/__inner__/esm/components/Grid/Grid.d.ts +1 -1
- package/__inner__/esm/components/Grid/GridItem.d.ts +1 -1
- package/__inner__/esm/components/IconButton/IconButton.d.ts +1 -1
- package/__inner__/esm/components/IconButtonNext/IconButton.d.ts +1 -1
- package/__inner__/esm/components/InputOTP/InputOTP.d.ts +1 -1
- package/__inner__/esm/components/Link/Link.d.ts +1 -1
- package/__inner__/esm/components/List/List.d.ts +1 -1
- package/__inner__/esm/components/List/components/ListItem/ListItem.d.ts +1 -1
- package/__inner__/esm/components/List/components/ListItemButton/ListItemButton.d.ts +1 -1
- package/__inner__/esm/components/ListCard/ListCardContext.d.ts +11 -0
- package/__inner__/esm/components/ListCard/ListCardContext.js +8 -0
- package/__inner__/esm/components/ListCard/PageListCard/PageListCard.css +6 -0
- package/__inner__/esm/components/ListCard/PageListCard/PageListCard.d.ts +4 -0
- package/__inner__/esm/components/ListCard/PageListCard/PageListCard.js +27 -0
- package/__inner__/esm/components/ListCard/PageListCard/constants.d.ts +1 -0
- package/__inner__/esm/components/ListCard/PageListCard/constants.js +2 -0
- package/__inner__/esm/components/ListCard/PageListCard/index.d.ts +2 -0
- package/__inner__/esm/components/ListCard/PageListCard/index.js +2 -0
- package/__inner__/esm/components/ListCard/PageListCard/types.d.ts +12 -0
- package/__inner__/esm/components/ListCard/PageListCard/types.js +1 -0
- package/__inner__/esm/components/ListCard/constants.d.ts +9 -0
- package/__inner__/esm/components/ListCard/constants.js +6 -0
- package/__inner__/esm/components/ListCard/index.d.ts +4 -0
- package/__inner__/esm/components/ListCard/index.js +4 -0
- package/__inner__/esm/components/ListCard/types.d.ts +13 -0
- package/__inner__/esm/components/ListCard/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/ListCardItem.css +112 -0
- package/__inner__/esm/components/ListCardItem/ListCardItem.d.ts +11 -0
- package/__inner__/esm/components/ListCardItem/ListCardItem.js +86 -0
- package/__inner__/esm/components/ListCardItem/ListCardItemContext.d.ts +10 -0
- package/__inner__/esm/components/ListCardItem/ListCardItemContext.js +14 -0
- package/__inner__/esm/components/ListCardItem/__tests__/checkInteractiveElement.d.ts +6 -0
- package/__inner__/esm/components/ListCardItem/__tests__/checkInteractiveElement.js +40 -0
- package/__inner__/esm/components/ListCardItem/__tests__/checkItemColors.d.ts +6 -0
- package/__inner__/esm/components/ListCardItem/__tests__/checkItemColors.js +11 -0
- package/__inner__/esm/components/ListCardItem/__tests__/checkItemRatio.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/__tests__/checkItemRatio.js +15 -0
- package/__inner__/esm/components/ListCardItem/__tests__/index.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/__tests__/index.js +3 -0
- package/__inner__/esm/components/ListCardItem/classNames.d.ts +1 -0
- package/__inner__/esm/components/ListCardItem/classNames.js +2 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemCaption/ListCardItemCaption.css +13 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemCaption/ListCardItemCaption.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemCaption/ListCardItemCaption.js +13 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemCaption/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemCaption/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemCaption/types.d.ts +7 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemCaption/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/ListCardItemInfoCarcass.css +106 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/ListCardItemInfoCarcass.d.ts +11 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/ListCardItemInfoCarcass.js +34 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/constants.d.ts +1 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/constants.js +1 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/entities/index.d.ts +1 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/entities/index.js +1 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/entities/text-overflow.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/entities/text-overflow.js +4 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/index.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/index.js +4 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/types.d.ts +13 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemInfoCarcass/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemItemCarcass/ListCardItemItemCarcass.css +28 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemItemCarcass/ListCardItemItemCarcass.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemItemCarcass/ListCardItemItemCarcass.js +21 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemItemCarcass/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemItemCarcass/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemItemCarcass/types.d.ts +20 -0
- package/__inner__/esm/components/ListCardItem/components/ListCardItemItemCarcass/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/components/index.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/components/index.js +3 -0
- package/__inner__/esm/components/ListCardItem/constants.d.ts +17 -0
- package/__inner__/esm/components/ListCardItem/constants.js +17 -0
- package/__inner__/esm/components/ListCardItem/entities/colorSchemes/background.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/entities/colorSchemes/background.js +1 -0
- package/__inner__/esm/components/ListCardItem/entities/colorSchemes/base.d.ts +6 -0
- package/__inner__/esm/components/ListCardItem/entities/colorSchemes/base.js +1 -0
- package/__inner__/esm/components/ListCardItem/entities/colorSchemes/border.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/entities/colorSchemes/border.js +1 -0
- package/__inner__/esm/components/ListCardItem/entities/colorSchemes/index.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/entities/colorSchemes/index.js +3 -0
- package/__inner__/esm/components/ListCardItem/entities/index.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/entities/index.js +3 -0
- package/__inner__/esm/components/ListCardItem/entities/size.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/entities/size.js +1 -0
- package/__inner__/esm/components/ListCardItem/entities/variant.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/entities/variant.js +1 -0
- package/__inner__/esm/components/ListCardItem/hooks/hover/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/hooks/hover/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/hooks/hover/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/hooks/hover/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/hooks/hover/useListCardItemHover.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/hooks/hover/useListCardItemHover.js +9 -0
- package/__inner__/esm/components/ListCardItem/hooks/index.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/hooks/index.js +4 -0
- package/__inner__/esm/components/ListCardItem/hooks/useListCardItemAsInteractiveModule.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/hooks/useListCardItemAsInteractiveModule.js +15 -0
- package/__inner__/esm/components/ListCardItem/hooks/useListCardItemColorScheme.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/hooks/useListCardItemColorScheme.js +18 -0
- package/__inner__/esm/components/ListCardItem/hooks/useListCardItemRatio.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/hooks/useListCardItemRatio.js +20 -0
- package/__inner__/esm/components/ListCardItem/index.d.ts +7 -0
- package/__inner__/esm/components/ListCardItem/index.js +7 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterButton/ListCardItemCenterButton.css +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterButton/ListCardItemCenterButton.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterButton/ListCardItemCenterButton.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterButton/constants.d.ts +5 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterButton/constants.js +9 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterButton/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterButton/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterButton/types.d.ts +7 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterButton/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterInfo/ListCardItemCenterInfo.d.ts +11 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterInfo/ListCardItemCenterInfo.js +15 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterInfo/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterInfo/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterInfo/types.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterInfo/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterTag/ListCardItemCenterTag.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterTag/ListCardItemCenterTag.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterTag/constants.d.ts +5 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterTag/constants.js +9 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterTag/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterTag/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterTag/types.d.ts +7 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterTag/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlCheckbox/ListCardItemControlCheckbox.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlCheckbox/ListCardItemControlCheckbox.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlCheckbox/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlCheckbox/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlCheckbox/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlCheckbox/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlCheckbox/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlCheckbox/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlIcon/ListCardItemControlIcon.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlIcon/ListCardItemControlIcon.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlIcon/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlIcon/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlIcon/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlIcon/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlIcon/types.d.ts +12 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlIcon/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlItem/ListCardItemControlItem.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlItem/ListCardItemControlItem.js +19 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlItem/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlItem/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlItem/types.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlItem/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlRadio/ListCardItemControlRadio.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlRadio/ListCardItemControlRadio.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlRadio/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlRadio/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlRadio/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlRadio/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlRadio/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlRadio/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlToggle/ListCardItemControlToggle.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlToggle/ListCardItemControlToggle.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlToggle/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlToggle/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlToggle/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlToggle/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlToggle/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemControlToggle/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingAvatar/ListCardItemLeadingAvatar.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingAvatar/ListCardItemLeadingAvatar.js +21 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingAvatar/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingAvatar/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingAvatar/index.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingAvatar/index.js +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingAvatar/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingAvatar/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingCheckbox/ListCardItemLeadingCheckbox.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingCheckbox/ListCardItemLeadingCheckbox.js +24 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingCheckbox/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingCheckbox/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingCheckbox/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingCheckbox/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingCheckbox/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingCheckbox/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingIcon/ListCardItemLeadingIcon.css +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingIcon/ListCardItemLeadingIcon.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingIcon/ListCardItemLeadingIcon.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingIcon/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingIcon/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingIcon/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingIcon/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingIcon/types.d.ts +9 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingIcon/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingItem/ListCardItemLeadingItem.css +15 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingItem/ListCardItemLeadingItem.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingItem/ListCardItemLeadingItem.js +19 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingItem/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingItem/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingItem/types.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingItem/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingRadio/ListCardItemLeadingRadio.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingRadio/ListCardItemLeadingRadio.js +24 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingRadio/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingRadio/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingRadio/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingRadio/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingRadio/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemLeadingRadio/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingBadge/ListCardItemTrailingBadge.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingBadge/ListCardItemTrailingBadge.js +20 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingBadge/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingBadge/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingBadge/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingBadge/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingBadge/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingBadge/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingButton/ListCardItemTrailingButton.css +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingButton/ListCardItemTrailingButton.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingButton/ListCardItemTrailingButton.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingButton/constants.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingButton/constants.js +7 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingButton/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingButton/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingButton/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingButton/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingCheckbox/ListCardItemTrailingCheckbox.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingCheckbox/ListCardItemTrailingCheckbox.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingCheckbox/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingCheckbox/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingCheckbox/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingCheckbox/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingCheckbox/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingCheckbox/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIcon/ListCardItemTrailingIcon.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIcon/ListCardItemTrailingIcon.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIcon/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIcon/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIcon/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIcon/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIcon/types.d.ts +9 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIcon/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIconButton/ListCardItemTrailingIconButton.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIconButton/ListCardItemTrailingIconButton.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIconButton/constants.d.ts +5 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIconButton/constants.js +8 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIconButton/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIconButton/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIconButton/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingIconButton/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingInfo/ListCardItemTrailingInfo.d.ts +5 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingInfo/ListCardItemTrailingInfo.js +15 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingInfo/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingInfo/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingInfo/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingInfo/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingItem/ListCardItemTrailingItem.css +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingItem/ListCardItemTrailingItem.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingItem/ListCardItemTrailingItem.js +19 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingItem/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingItem/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingItem/types.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingItem/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingRadio/ListCardItemTrailingRadio.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingRadio/ListCardItemTrailingRadio.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingRadio/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingRadio/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingRadio/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingRadio/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingRadio/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingRadio/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingTag/ListCardItemTrailingTag.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingTag/ListCardItemTrailingTag.js +24 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingTag/constants.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingTag/constants.js +7 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingTag/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingTag/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingTag/types.d.ts +19 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingTag/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingToggle/ListCardItemTrailingToggle.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingToggle/ListCardItemTrailingToggle.js +23 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingToggle/constants.d.ts +3 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingToggle/constants.js +6 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingToggle/index.d.ts +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingToggle/index.js +2 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingToggle/types.d.ts +4 -0
- package/__inner__/esm/components/ListCardItem/modules/ListCardItemTrailingToggle/types.js +1 -0
- package/__inner__/esm/components/ListCardItem/modules/index.d.ts +23 -0
- package/__inner__/esm/components/ListCardItem/modules/index.js +23 -0
- package/__inner__/esm/components/ListCardItem/presets.d.ts +12 -0
- package/__inner__/esm/components/ListCardItem/presets.js +12 -0
- package/__inner__/esm/components/ListCardItem/types.d.ts +30 -0
- package/__inner__/esm/components/ListCardItem/types.js +1 -0
- package/__inner__/esm/components/Menu/components/MenuItem/MenuItem.d.ts +1 -1
- package/__inner__/esm/components/OzenProvider/OzenProvider.d.ts +1 -1
- package/__inner__/esm/components/OzenProvider/OzenProvider.js +1 -1
- package/__inner__/esm/components/OzenProvider/providers/theme/entities/defaultProps.d.ts +39 -0
- package/__inner__/esm/components/Pagination/Pagination.d.ts +1 -1
- package/__inner__/esm/components/Paper/Paper.d.ts +1 -1
- package/__inner__/esm/components/Popover/Popover.d.ts +1 -1
- package/__inner__/esm/components/Portal/Portal.d.ts +1 -1
- package/__inner__/esm/components/PortalBase/PortalBase.d.ts +1 -1
- package/__inner__/esm/components/PortalBase/PortalBase.js +1 -1
- package/__inner__/esm/components/ProgressBar/ProgressBar.d.ts +1 -1
- package/__inner__/esm/components/RadioGroup/RadioGroup.d.ts +1 -1
- package/__inner__/esm/components/RadioGroupNext/RadioGroup.d.ts +1 -1
- package/__inner__/esm/components/SectionMessage/modules/SectionMessageButton/SectionMessageButton.d.ts +1 -1
- package/__inner__/esm/components/Slider/Slider.d.ts +1 -1
- package/__inner__/esm/components/Stack/Stack.d.ts +1 -1
- package/__inner__/esm/components/Stack/Stack.js +2 -1
- package/__inner__/esm/components/Stack/constants.d.ts +1 -0
- package/__inner__/esm/components/Stack/constants.js +1 -0
- package/__inner__/esm/components/Stack/index.d.ts +1 -0
- package/__inner__/esm/components/Stack/index.js +1 -0
- package/__inner__/esm/components/Stack/types.d.ts +6 -2
- package/__inner__/esm/components/Table/components/TableContainer/TableContainer.d.ts +1 -1
- package/__inner__/esm/components/Tabs/components/Tab/Tab.d.ts +2 -2
- package/__inner__/esm/components/Tag/Tag.d.ts +1 -1
- package/__inner__/esm/components/TagNext/Tag.d.ts +1 -1
- package/__inner__/esm/components/ThemeProvider/ThemeProvider.d.ts +1 -1
- package/__inner__/esm/components/Title/Title.d.ts +1 -1
- package/__inner__/esm/components/Title/components/variant/TitleVariant.d.ts +1 -1
- package/__inner__/esm/components/Title/components/variant/main/TitleMain.d.ts +1 -1
- package/__inner__/esm/components/Title/components/variant/secondary/TitleSecondary.d.ts +1 -1
- package/__inner__/esm/components/Title/modules/TitleBreadcrumbItem/TitleBreadcrumbItem.d.ts +1 -1
- package/__inner__/esm/components/Title/modules/TitleIconButton/TitleIconButton.d.ts +1 -1
- package/__inner__/esm/components/Title/modules/TitleIconButton/presets/TitleBackIconButton/TitleBackIconButton.d.ts +1 -1
- package/__inner__/esm/components/Title/modules/TitleTag/TitleTag.d.ts +1 -1
- package/__inner__/esm/components/Tooltip/Tooltip.d.ts +1 -1
- package/__inner__/esm/components/Typography/Typography.d.ts +1 -1
- package/__inner__/esm/locale/locale.js +12 -0
- package/__inner__/esm/types/object/index.d.ts +1 -0
- package/__inner__/esm/types/object/index.js +1 -0
- package/__inner__/esm/types/object/withRequired.d.ts +3 -0
- package/__inner__/esm/types/object/withRequired.js +1 -0
- package/__inner__/esm/utils/polymorphicComponentWithRef.d.ts +9 -8
- package/__inner__/esm/utils/polymorphicComponentWithRef.js +1 -0
- package/__inner__/esm/utils/react/extractElementsFromChildren.d.ts +2 -0
- package/__inner__/esm/utils/react/extractElementsFromChildren.js +10 -0
- package/__inner__/esm/utils/react/index.d.ts +3 -0
- package/__inner__/esm/utils/react/index.js +3 -0
- package/__inner__/esm/utils/react/isNodeWithDisplayName.d.ts +2 -0
- package/__inner__/esm/utils/react/isNodeWithDisplayName.js +19 -0
- package/__inner__/esm/utils/react/resolveChildren.d.ts +2 -0
- package/__inner__/esm/utils/react/resolveChildren.js +4 -0
- package/package.json +4 -4
- package/__inner__/cjs/components/AutocompleteBase/entities/input/render.d.ts +0 -2
- package/__inner__/cjs/components/AutocompleteBase/entities/renderDropdown.d.ts +0 -2
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/entities/renderBefore.d.ts +0 -2
- package/__inner__/cjs/components/AutocompleteBase/modules/AutocompleteBaseInput/entities/renderSuffix.d.ts +0 -2
- package/__inner__/esm/components/AutocompleteBase/entities/input/render.d.ts +0 -2
- package/__inner__/esm/components/AutocompleteBase/entities/renderDropdown.d.ts +0 -2
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/entities/renderBefore.d.ts +0 -2
- package/__inner__/esm/components/AutocompleteBase/modules/AutocompleteBaseInput/entities/renderSuffix.d.ts +0 -2
- /package/__inner__/cjs/components/{AutocompleteBase/entities/input/render.js → AutocompleteListCard/entities/events/onChange.js} +0 -0
- /package/__inner__/cjs/components/{AutocompleteBase/entities/renderDropdown.js → AutocompleteListCard/entities/option.js} +0 -0
- /package/__inner__/cjs/components/{AutocompleteBase/modules/AutocompleteBaseInput/entities/renderBefore.js → AutocompleteListCard/entities/value.js} +0 -0
- /package/__inner__/cjs/components/{AutocompleteBase/modules/AutocompleteBaseInput/entities/renderSuffix.js → AutocompleteListCard/modules/AutocompleteListCardDropdown/types.js} +0 -0
- /package/__inner__/esm/components/{AutocompleteBase/entities/input/render.js → AutocompleteListCard/entities/events/onChange.js} +0 -0
- /package/__inner__/esm/components/{AutocompleteBase/entities/renderDropdown.js → AutocompleteListCard/entities/option.js} +0 -0
- /package/__inner__/esm/components/{AutocompleteBase/modules/AutocompleteBaseInput/entities/renderBefore.js → AutocompleteListCard/entities/value.js} +0 -0
- /package/__inner__/esm/components/{AutocompleteBase/modules/AutocompleteBaseInput/entities/renderSuffix.js → AutocompleteListCard/modules/AutocompleteListCardDropdown/types.js} +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ReactNode } from 'react';
|
|
2
|
+
import type { StackProps, StackRef } from '../../../Stack';
|
|
3
|
+
import type { ListCardItemInfoCarcassTextOverflow } from './entities';
|
|
4
|
+
export type ListCardItemInfoCarcassRef = StackRef;
|
|
5
|
+
export type ListCardItemInfoCarcassProps = {
|
|
6
|
+
children: ReactNode;
|
|
7
|
+
label?: ReactNode;
|
|
8
|
+
hint?: ReactNode;
|
|
9
|
+
hintBefore?: ReactNode;
|
|
10
|
+
caption?: ReactNode;
|
|
11
|
+
bottom?: ReactNode;
|
|
12
|
+
textOverflow?: ListCardItemInfoCarcassTextOverflow;
|
|
13
|
+
} & Omit<StackProps, 'as' | 'ref' | 'children'>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
.ListCardItemItemCarcass {
|
|
2
|
+
overflow: hidden;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.ListCardItemItemCarcass_size_xs, .ListCardItemItemCarcass_size_s {
|
|
6
|
+
--list-card-item-item-carcass-block-size: 44px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.ListCardItemItemCarcass_size_m {
|
|
10
|
+
--list-card-item-item-carcass-block-size: 48px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.ListCardItemItemCarcass_size_l {
|
|
14
|
+
--list-card-item-item-carcass-block-size: 52px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ListCardItemItemCarcass-Content {
|
|
18
|
+
block-size: var(--list-card-item-item-carcass-block-size);
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
padding-inline: 2px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ListCardItemItemCarcass-Caption {
|
|
24
|
+
text-align: end;
|
|
25
|
+
overflow: hidden;
|
|
26
|
+
text-overflow: ellipsis;
|
|
27
|
+
white-space: nowrap;
|
|
28
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ListCardItemItemCarcassProps } from './types';
|
|
3
|
+
export declare const cnListCardItemItemCarcass: import("@bem-react/classname").ClassNameFormatter;
|
|
4
|
+
export declare const ListCardItemItemCarcass: React.ForwardRefExoticComponent<Omit<ListCardItemItemCarcassProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { __assign, __rest } from "tslib";
|
|
2
|
+
import React, { forwardRef } from 'react';
|
|
3
|
+
import { cn } from '../../../../utils/classname';
|
|
4
|
+
import { Stack } from '../../../Stack';
|
|
5
|
+
import { useListCardItemContext } from '../../ListCardItemContext';
|
|
6
|
+
import { ListCardItemCaption } from '../ListCardItemCaption';
|
|
7
|
+
export var cnListCardItemItemCarcass = cn('ListCardItemItemCarcass');
|
|
8
|
+
export var ListCardItemItemCarcass = forwardRef(function (_a, ref) {
|
|
9
|
+
var children = _a.children, className = _a.className, caption = _a.caption, contentProps = _a.contentProps, captionProps = _a.captionProps, other = __rest(_a, ["children", "className", "caption", "contentProps", "captionProps"]);
|
|
10
|
+
var size = useListCardItemContext().size;
|
|
11
|
+
return (React.createElement(Stack, __assign({}, other, { ref: ref, className: cnListCardItemItemCarcass({
|
|
12
|
+
size: size,
|
|
13
|
+
}, [className]), direction: "column" }),
|
|
14
|
+
React.createElement(Stack, __assign({ justify: "center", align: "center" }, contentProps, { className: cnListCardItemItemCarcass('Content', [
|
|
15
|
+
contentProps === null || contentProps === void 0 ? void 0 : contentProps.className,
|
|
16
|
+
]) }), children),
|
|
17
|
+
caption && (React.createElement(ListCardItemCaption, __assign({}, captionProps, { className: cnListCardItemItemCarcass('Caption', [
|
|
18
|
+
captionProps === null || captionProps === void 0 ? void 0 : captionProps.className,
|
|
19
|
+
]) }), caption))));
|
|
20
|
+
});
|
|
21
|
+
ListCardItemItemCarcass.displayName = 'ListCardItemItemCarcass';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { ReactNode } from 'react';
|
|
2
|
+
import type { ExtendableComponentPropsWithRef } from '../../../../types/ExtendableComponentPropsWithRef';
|
|
3
|
+
import type { StackProps, StackRef } from '../../../Stack';
|
|
4
|
+
import type { STACK_DEFAULT_TAG } from '../../../Stack/constants';
|
|
5
|
+
import type { ListCardItemCaptionProps, ListCardItemCaptionRef } from '../ListCardItemCaption';
|
|
6
|
+
export type ListCardItemItemCarcassContentProps = Omit<StackProps, 'children'>;
|
|
7
|
+
export type ListCardItemItemCarcassContentRef = StackRef;
|
|
8
|
+
export type ListCardItemItemCarcassCaptionProps = Omit<ListCardItemCaptionProps, 'children'>;
|
|
9
|
+
export type ListCardItemItemCarcassCaptionRef = ListCardItemCaptionRef;
|
|
10
|
+
export type ListCardItemItemCarcassRef = StackRef;
|
|
11
|
+
export type ListCardItemItemCarcassProps = ExtendableComponentPropsWithRef<{
|
|
12
|
+
/** Caption */
|
|
13
|
+
caption?: ReactNode;
|
|
14
|
+
/** Props для контента */
|
|
15
|
+
contentProps?: ListCardItemItemCarcassContentProps;
|
|
16
|
+
/** Props для caption */
|
|
17
|
+
captionProps?: ListCardItemItemCarcassCaptionProps;
|
|
18
|
+
/** Идентификатор компонента для тестов */
|
|
19
|
+
'data-testid'?: string;
|
|
20
|
+
}, typeof STACK_DEFAULT_TAG>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { PaperRadiusVariant } from '../Paper';
|
|
2
|
+
import type { ListCardItemSizeVariant } from './entities';
|
|
3
|
+
export declare const LIST_CARD_ITEM_DEFAULT_TAG = "div";
|
|
4
|
+
export declare const LIST_CARD_ITEM_DEFAULT_BACKGROUND_COLOR_SCHEME: {
|
|
5
|
+
base: "background-main";
|
|
6
|
+
hover: "background-main-hover";
|
|
7
|
+
pressed: "background-main-pressed";
|
|
8
|
+
};
|
|
9
|
+
export declare const LIST_CARD_ITEM_DEFAULT_SIZE = "m";
|
|
10
|
+
export declare const LIST_CARD_ITEM_DEFAULT_VARIANT = "onPage";
|
|
11
|
+
export declare const LIST_CARD_ITEM_DEFAULT_CONTENT_TRAILING_RATIO = 0.85;
|
|
12
|
+
export declare const LIST_CARD_ITEM_DEFAULT_INTERACTIVE = true;
|
|
13
|
+
export declare const LIST_CARD_ITEM_SIZE_TO_PAPER_RADIUS: Readonly<Record<ListCardItemSizeVariant, PaperRadiusVariant>>;
|
|
14
|
+
export declare const LIST_CARD_ITEM_CSS_VARIABLES: {
|
|
15
|
+
readonly CENTER_GROW: "list-card-item-center-grow";
|
|
16
|
+
readonly TRAILING_GROW: "list-card-item-trailing-grow";
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { LIST_CARD_ITEM_BACKGROUND_COLOR_SCHEME } from './presets';
|
|
2
|
+
export var LIST_CARD_ITEM_DEFAULT_TAG = 'div';
|
|
3
|
+
export var LIST_CARD_ITEM_DEFAULT_BACKGROUND_COLOR_SCHEME = LIST_CARD_ITEM_BACKGROUND_COLOR_SCHEME.MAIN;
|
|
4
|
+
export var LIST_CARD_ITEM_DEFAULT_SIZE = 'm';
|
|
5
|
+
export var LIST_CARD_ITEM_DEFAULT_VARIANT = 'onPage';
|
|
6
|
+
export var LIST_CARD_ITEM_DEFAULT_CONTENT_TRAILING_RATIO = 0.85;
|
|
7
|
+
export var LIST_CARD_ITEM_DEFAULT_INTERACTIVE = true;
|
|
8
|
+
export var LIST_CARD_ITEM_SIZE_TO_PAPER_RADIUS = {
|
|
9
|
+
xs: 'xs',
|
|
10
|
+
s: 'xs',
|
|
11
|
+
m: 's',
|
|
12
|
+
l: 's',
|
|
13
|
+
};
|
|
14
|
+
export var LIST_CARD_ITEM_CSS_VARIABLES = {
|
|
15
|
+
CENTER_GROW: 'list-card-item-center-grow',
|
|
16
|
+
TRAILING_GROW: 'list-card-item-trailing-grow',
|
|
17
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export var listCardItemSizeVariant = ['xs', 's', 'm', 'l'];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export var listCardItemVariant = ['onPage', 'list'];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { __read } from "tslib";
|
|
2
|
+
import { useState } from 'react';
|
|
3
|
+
export var useListCardItemHover = function () {
|
|
4
|
+
var _a = __read(useState(false), 2), isHoverChildren = _a[0], setIsHoverChildren = _a[1];
|
|
5
|
+
return {
|
|
6
|
+
isHoverChildren: isHoverChildren,
|
|
7
|
+
setIsHoverChildren: setIsHoverChildren,
|
|
8
|
+
};
|
|
9
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { useHover } from '../../../hooks/useHover';
|
|
2
|
+
import { useListCardItemContext } from '../ListCardItemContext';
|
|
3
|
+
export var useListCardItemAsInteractiveModule = function (ref, isEnabled) {
|
|
4
|
+
if (isEnabled === void 0) { isEnabled = true; }
|
|
5
|
+
var hoverControl = useListCardItemContext().hoverControl;
|
|
6
|
+
useHover(ref, {
|
|
7
|
+
onEnter: function () {
|
|
8
|
+
hoverControl.setIsHoverChildren(true);
|
|
9
|
+
},
|
|
10
|
+
onLeave: function () {
|
|
11
|
+
hoverControl.setIsHoverChildren(false);
|
|
12
|
+
},
|
|
13
|
+
active: isEnabled,
|
|
14
|
+
});
|
|
15
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { useMemo } from 'react';
|
|
2
|
+
import { useThemeTokens } from '../../../hooks/useThemeTokens';
|
|
3
|
+
import { generateCSSVariables } from '../../../utils/css';
|
|
4
|
+
export var useListCardItemColorScheme = function (colorScheme, group) {
|
|
5
|
+
var tokens = useThemeTokens();
|
|
6
|
+
var colorSchemeVariables = useMemo(function () {
|
|
7
|
+
var _a;
|
|
8
|
+
if (!colorScheme) {
|
|
9
|
+
return null;
|
|
10
|
+
}
|
|
11
|
+
return generateCSSVariables((_a = {},
|
|
12
|
+
_a["list-card-item-".concat(group, "-color-base")] = "var(".concat(tokens.color.toCSSProperty(colorScheme.base), ")"),
|
|
13
|
+
_a["list-card-item-".concat(group, "-color-hover")] = "var(".concat(tokens.color.toCSSProperty(colorScheme.hover), ")"),
|
|
14
|
+
_a["list-card-item-".concat(group, "-color-pressed")] = "var(".concat(tokens.color.toCSSProperty(colorScheme.pressed), ")"),
|
|
15
|
+
_a));
|
|
16
|
+
}, [colorScheme]);
|
|
17
|
+
return colorSchemeVariables;
|
|
18
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { useEffect } from 'react';
|
|
2
|
+
import { logger } from '@ozen-ui/logger';
|
|
3
|
+
import { isDev } from '../../../constants/environment';
|
|
4
|
+
export var useListCardItemRatio = function (contentTrailingRatio) {
|
|
5
|
+
if (isDev) {
|
|
6
|
+
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
7
|
+
useEffect(function () {
|
|
8
|
+
if (contentTrailingRatio < 0) {
|
|
9
|
+
logger.error('Свойство «contentTrailingRatio» у компонента ListCardItem не может быть меньше 0');
|
|
10
|
+
return;
|
|
11
|
+
}
|
|
12
|
+
if (contentTrailingRatio > 1) {
|
|
13
|
+
logger.error('Свойство «contentTrailingRatio» у компонента ListCardItem не может быть больше 1');
|
|
14
|
+
}
|
|
15
|
+
}, [contentTrailingRatio]);
|
|
16
|
+
}
|
|
17
|
+
var contentRatio = contentTrailingRatio * 100;
|
|
18
|
+
var trailingRatio = 100 - contentRatio;
|
|
19
|
+
return { content: contentRatio, trailing: trailingRatio };
|
|
20
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { ListCardItemCenterButtonBaseProps } from './types';
|
|
2
|
+
export declare const cnListCardItemCenterButton: import("@bem-react/classname").ClassNameFormatter;
|
|
3
|
+
export declare const ListCardItemCenterButton: import("../../../../utils/polymorphicComponentWithRef").PolymorphicComponentWithRef<ListCardItemCenterButtonBaseProps, "button", "as">;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { __assign, __rest } from "tslib";
|
|
2
|
+
import React, { useRef } from 'react';
|
|
3
|
+
import { useMultiRef } from '../../../../hooks/useMultiRef';
|
|
4
|
+
import { useThemeProps } from '../../../../hooks/useThemeProps';
|
|
5
|
+
import { cn } from '../../../../utils/classname';
|
|
6
|
+
import { polymorphicComponentWithRef } from '../../../../utils/polymorphicComponentWithRef';
|
|
7
|
+
import { Button } from '../../../ButtonNext';
|
|
8
|
+
import { useListCardItemAsInteractiveModule } from '../../hooks';
|
|
9
|
+
import { useListCardItemContext } from '../../ListCardItemContext';
|
|
10
|
+
import { LIST_CARD_ITEM_CENTER_BUTTON_DEFAULT_VARIANT, LIST_CARD_ITEM_SIZE_TO_CENTER_BUTTON_SIZE, } from './constants';
|
|
11
|
+
export var cnListCardItemCenterButton = cn('ListCardItemCenterButton');
|
|
12
|
+
export var ListCardItemCenterButton = polymorphicComponentWithRef(function (inProps, ref) {
|
|
13
|
+
var props = useThemeProps({
|
|
14
|
+
props: inProps,
|
|
15
|
+
name: 'ListCardItemCenterButton',
|
|
16
|
+
});
|
|
17
|
+
var children = props.children, className = props.className, as = props.as, _a = props.variant, variant = _a === void 0 ? LIST_CARD_ITEM_CENTER_BUTTON_DEFAULT_VARIANT : _a, disabled = props.disabled, other = __rest(props, ["children", "className", "as", "variant", "disabled"]);
|
|
18
|
+
var size = useListCardItemContext().size;
|
|
19
|
+
var innerRef = useRef(null);
|
|
20
|
+
useListCardItemAsInteractiveModule(innerRef, !disabled);
|
|
21
|
+
return (React.createElement(Button, __assign({}, other, { as: as, ref: useMultiRef([ref, innerRef]), className: cnListCardItemCenterButton('', [className]), size: LIST_CARD_ITEM_SIZE_TO_CENTER_BUTTON_SIZE[size], variant: variant, disabled: disabled }), children));
|
|
22
|
+
});
|
|
23
|
+
ListCardItemCenterButton.displayName = 'ListCardItemCenterButton';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ButtonSize } from '../../../ButtonNext';
|
|
2
|
+
import type { ListCardItemSizeVariant } from '../../entities';
|
|
3
|
+
export declare const LIST_CARD_ITEM_CENTER_BUTTON_DEFAULT_TAG = "button";
|
|
4
|
+
export declare const LIST_CARD_ITEM_CENTER_BUTTON_DEFAULT_VARIANT = "function";
|
|
5
|
+
export declare const LIST_CARD_ITEM_SIZE_TO_CENTER_BUTTON_SIZE: Readonly<Record<ListCardItemSizeVariant, ButtonSize>>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BUTTON_DEFAULT_TAG } from '../../../ButtonNext/constants';
|
|
2
|
+
export var LIST_CARD_ITEM_CENTER_BUTTON_DEFAULT_TAG = BUTTON_DEFAULT_TAG;
|
|
3
|
+
export var LIST_CARD_ITEM_CENTER_BUTTON_DEFAULT_VARIANT = 'function';
|
|
4
|
+
export var LIST_CARD_ITEM_SIZE_TO_CENTER_BUTTON_SIZE = {
|
|
5
|
+
xs: 'xs',
|
|
6
|
+
s: 's',
|
|
7
|
+
m: 'm',
|
|
8
|
+
l: 'l',
|
|
9
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ComponentRef, ElementType } from 'react';
|
|
2
|
+
import type { PolymorphicComponentPropsWithoutRef } from '../../../../utils/polymorphicComponentWithRef';
|
|
3
|
+
import type { ButtonBaseProps } from '../../../ButtonNext';
|
|
4
|
+
import type { LIST_CARD_ITEM_CENTER_BUTTON_DEFAULT_TAG } from './constants';
|
|
5
|
+
export type ListCardItemCenterButtonBaseProps = Omit<ButtonBaseProps, 'size'>;
|
|
6
|
+
export type ListCardItemCenterButtonProps<As extends ElementType = typeof LIST_CARD_ITEM_CENTER_BUTTON_DEFAULT_TAG> = PolymorphicComponentPropsWithoutRef<ListCardItemCenterButtonBaseProps, As>;
|
|
7
|
+
export type ListCardItemCenterButtonRef = ComponentRef<typeof LIST_CARD_ITEM_CENTER_BUTTON_DEFAULT_TAG>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const cnListCardItemCenterInfo: import("@bem-react/classname").ClassNameFormatter;
|
|
3
|
+
export declare const ListCardItemCenterInfo: React.ForwardRefExoticComponent<{
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
label?: React.ReactNode;
|
|
6
|
+
hint?: React.ReactNode;
|
|
7
|
+
hintBefore?: React.ReactNode;
|
|
8
|
+
caption?: React.ReactNode;
|
|
9
|
+
bottom?: React.ReactNode;
|
|
10
|
+
textOverflow?: import("../../components").ListCardItemInfoCarcassTextOverflow;
|
|
11
|
+
} & Omit<import("../../../Stack").StackProps, "children" | "ref" | "as"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { __assign, __rest } from "tslib";
|
|
2
|
+
import React, { forwardRef } from 'react';
|
|
3
|
+
import { useThemeProps } from '../../../../hooks/useThemeProps';
|
|
4
|
+
import { cn } from '../../../../utils/classname';
|
|
5
|
+
import { ListCardItemInfoCarcass } from '../../components';
|
|
6
|
+
export var cnListCardItemCenterInfo = cn('ListCardItemCenterInfo');
|
|
7
|
+
export var ListCardItemCenterInfo = forwardRef(function (inProps, ref) {
|
|
8
|
+
var props = useThemeProps({
|
|
9
|
+
props: inProps,
|
|
10
|
+
name: 'ListCardItemCenterInfo',
|
|
11
|
+
});
|
|
12
|
+
var children = props.children, className = props.className, other = __rest(props, ["children", "className"]);
|
|
13
|
+
return (React.createElement(ListCardItemInfoCarcass, __assign({}, other, { ref: ref, className: cnListCardItemCenterInfo('', [className]) }), children));
|
|
14
|
+
});
|
|
15
|
+
ListCardItemCenterInfo.displayName = 'ListCardItemCenterInfo';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { ListCardItemCenterTagBaseProps } from './types';
|
|
2
|
+
export declare const cnListCardItemCenterTag: import("@bem-react/classname").ClassNameFormatter;
|
|
3
|
+
export declare const ListCardItemCenterTag: import("../../../../utils/polymorphicComponentWithRef").PolymorphicComponentWithRef<ListCardItemCenterTagBaseProps, "div", "as">;
|
package/__inner__/esm/components/ListCardItem/modules/ListCardItemCenterTag/ListCardItemCenterTag.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { __assign, __rest } from "tslib";
|
|
2
|
+
import React, { useRef } from 'react';
|
|
3
|
+
import { useMultiRef } from '../../../../hooks/useMultiRef';
|
|
4
|
+
import { useThemeProps } from '../../../../hooks/useThemeProps';
|
|
5
|
+
import { cn } from '../../../../utils/classname';
|
|
6
|
+
import { polymorphicComponentWithRef } from '../../../../utils/polymorphicComponentWithRef';
|
|
7
|
+
import { Tag } from '../../../TagNext';
|
|
8
|
+
import { useListCardItemAsInteractiveModule } from '../../hooks';
|
|
9
|
+
import { useListCardItemContext } from '../../ListCardItemContext';
|
|
10
|
+
import { LIST_CARD_ITEM_CENTER_TAG_DEFAULT_INTERACTIVE, LIST_CARD_ITEM_SIZE_TO_CENTER_TAG_SIZE, } from './constants';
|
|
11
|
+
export var cnListCardItemCenterTag = cn('ListCardItemCenterTag');
|
|
12
|
+
export var ListCardItemCenterTag = polymorphicComponentWithRef(function (inProps, ref) {
|
|
13
|
+
var props = useThemeProps({
|
|
14
|
+
props: inProps,
|
|
15
|
+
name: 'ListCardItemCenterTag',
|
|
16
|
+
});
|
|
17
|
+
var children = props.children, className = props.className, as = props.as, _a = props.interactive, interactive = _a === void 0 ? LIST_CARD_ITEM_CENTER_TAG_DEFAULT_INTERACTIVE : _a, other = __rest(props, ["children", "className", "as", "interactive"]);
|
|
18
|
+
var size = useListCardItemContext().size;
|
|
19
|
+
var innerRef = useRef(null);
|
|
20
|
+
useListCardItemAsInteractiveModule(innerRef, interactive);
|
|
21
|
+
return (React.createElement(Tag, __assign({}, other, { as: as, ref: useMultiRef([ref, innerRef]), className: cnListCardItemCenterTag('', [className]), size: LIST_CARD_ITEM_SIZE_TO_CENTER_TAG_SIZE[size], interactive: interactive }), children));
|
|
22
|
+
});
|
|
23
|
+
ListCardItemCenterTag.displayName = 'ListCardItemCenterTag';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { TagSizeVariant } from '../../../TagNext';
|
|
2
|
+
import type { ListCardItemSizeVariant } from '../../entities';
|
|
3
|
+
export declare const LIST_CARD_ITEM_CENTER_TAG_DEFAULT_TAG = "div";
|
|
4
|
+
export declare const LIST_CARD_ITEM_CENTER_TAG_DEFAULT_INTERACTIVE = false;
|
|
5
|
+
export declare const LIST_CARD_ITEM_SIZE_TO_CENTER_TAG_SIZE: Readonly<Record<ListCardItemSizeVariant, TagSizeVariant>>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TAG_DEFAULT_TAG } from '../../../TagNext/constants';
|
|
2
|
+
export var LIST_CARD_ITEM_CENTER_TAG_DEFAULT_TAG = TAG_DEFAULT_TAG;
|
|
3
|
+
export var LIST_CARD_ITEM_CENTER_TAG_DEFAULT_INTERACTIVE = false;
|
|
4
|
+
export var LIST_CARD_ITEM_SIZE_TO_CENTER_TAG_SIZE = {
|
|
5
|
+
xs: 'xs',
|
|
6
|
+
s: 'xs',
|
|
7
|
+
m: 's',
|
|
8
|
+
l: 's',
|
|
9
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ComponentRef, ElementType } from 'react';
|
|
2
|
+
import type { PolymorphicComponentPropsWithoutRef } from '../../../../utils/polymorphicComponentWithRef';
|
|
3
|
+
import type { TagBaseProps } from '../../../TagNext';
|
|
4
|
+
import type { LIST_CARD_ITEM_CENTER_TAG_DEFAULT_TAG } from './constants';
|
|
5
|
+
export type ListCardItemCenterTagBaseProps = Omit<TagBaseProps, 'size'>;
|
|
6
|
+
export type ListCardItemCenterTagProps<As extends ElementType = typeof LIST_CARD_ITEM_CENTER_TAG_DEFAULT_TAG> = PolymorphicComponentPropsWithoutRef<ListCardItemCenterTagBaseProps, As>;
|
|
7
|
+
export type ListCardItemCenterTagRef = ComponentRef<typeof LIST_CARD_ITEM_CENTER_TAG_DEFAULT_TAG>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ListCardItemControlCheckboxProps } from './types';
|
|
3
|
+
export declare const cnListCardItemControlCheckbox: import("@bem-react/classname").ClassNameFormatter;
|
|
4
|
+
export declare const ListCardItemControlCheckbox: React.ForwardRefExoticComponent<Omit<ListCardItemControlCheckboxProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { __assign, __rest } from "tslib";
|
|
2
|
+
import React, { forwardRef, useRef } from 'react';
|
|
3
|
+
import { useThemeProps } from '../../../../hooks/useThemeProps';
|
|
4
|
+
import { cn } from '../../../../utils/classname';
|
|
5
|
+
import { Checkbox } from '../../../CheckboxNext';
|
|
6
|
+
import { useListCardItemAsInteractiveModule } from '../../hooks';
|
|
7
|
+
import { useListCardItemContext } from '../../ListCardItemContext';
|
|
8
|
+
import { ListCardItemControlItem } from '../ListCardItemControlItem';
|
|
9
|
+
import { LIST_CARD_ITEM_SIZE_TO_CONTROL_CHECKBOX_SIZE } from './constants';
|
|
10
|
+
export var cnListCardItemControlCheckbox = cn('ListCardItemControlCheckbox');
|
|
11
|
+
export var ListCardItemControlCheckbox = forwardRef(function (inProps, ref) {
|
|
12
|
+
var props = useThemeProps({
|
|
13
|
+
props: inProps,
|
|
14
|
+
name: 'ListCardItemControlCheckbox',
|
|
15
|
+
});
|
|
16
|
+
var children = props.children, className = props.className, caption = props.caption, disabled = props.disabled, dataTestId = props["data-testid"], other = __rest(props, ["children", "className", "caption", "disabled", 'data-testid']);
|
|
17
|
+
var size = useListCardItemContext().size;
|
|
18
|
+
var checkboxRef = useRef(null);
|
|
19
|
+
useListCardItemAsInteractiveModule(checkboxRef, !disabled);
|
|
20
|
+
return (React.createElement(ListCardItemControlItem, { ref: ref, className: cnListCardItemControlCheckbox('', [className]), caption: caption, "data-testid": dataTestId },
|
|
21
|
+
React.createElement(Checkbox, __assign({}, other, { ref: checkboxRef, size: LIST_CARD_ITEM_SIZE_TO_CONTROL_CHECKBOX_SIZE[size], disabled: disabled }), children)));
|
|
22
|
+
});
|
|
23
|
+
ListCardItemControlCheckbox.displayName = 'ListCardItemControlCheckbox';
|