-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '24_1' of https://github.com/DevExpress/DevExtreme into …
…24_1-List-fix-alignment-in-demos
- Loading branch information
Showing
93 changed files
with
9,469 additions
and
9,020 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
[ | ||
"The specified credentials are invalid. You can sign up for a free developer account at http://www.bingmapsportal.com", | ||
"[Vue warn]: Do not use built-in or reserved HTML elements as component id: title", | ||
"[Vue warn]: Property \"", | ||
"[Vue warn]: Failed to resolve component: ", | ||
"Warning: forwardRef render functions accept exactly two parameters: props and ref.", | ||
"Warning: %s: `ref` is not a prop.", | ||
"W0001 -", | ||
"W0019 -", | ||
"W0022 -", | ||
"W1011 -", | ||
"W2108 -" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+24.1 KB
...e-devextreme/tests/dataGrid/etalons/popup-edit-form-with-initial-editrowkey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
packages/devextreme/js/__internal/ui/collection/hierarchical.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import type { dxElementWrapper } from '@js/core/renderer'; | ||
import type { ItemLike } from '@js/ui/collection/ui.collection_widget.base'; | ||
import type { HierarchicalCollectionWidgetOptions } from '@js/ui/hierarchical_collection/ui.hierarchical_collection_widget'; | ||
import HierarchicalCollectionWidget from '@js/ui/hierarchical_collection/ui.hierarchical_collection_widget'; | ||
|
||
import CollectionWidgetEdit from './edit'; | ||
|
||
export interface TypedCollectionWidgetOptions< | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
TComponent extends HierarchicalCollectionWidget<any, TItem, TKey>, | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
TItem extends ItemLike = any, | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
TKey = any, | ||
> extends HierarchicalCollectionWidgetOptions<TComponent, TItem, TKey> { | ||
} | ||
|
||
declare class Hierarchical< | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
TProperties extends TypedCollectionWidgetOptions<any, TItem, TKey>, | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
TItem extends ItemLike = any, | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
TKey = any, | ||
> extends CollectionWidgetEdit<TProperties> { | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
_dataAdapter?: any; | ||
|
||
_initDataAdapter(): void; | ||
|
||
_getIconContainer(itemData: TItem): dxElementWrapper; | ||
_getTextContainer(itemData: TItem): dxElementWrapper; | ||
_getLinkContainer( | ||
iconContainer: dxElementWrapper, | ||
textContainer: dxElementWrapper, | ||
itemData: TItem, | ||
): dxElementWrapper; | ||
_addContent($container: dxElementWrapper, itemData: TItem): void; | ||
|
||
_addWidgetClass(): void; | ||
|
||
_getChildNodes(node: TItem): TItem[]; | ||
_hasChildren(node: TItem): number | undefined; | ||
} | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
const TypedCollectionWidget: typeof Hierarchical = HierarchicalCollectionWidget as any; | ||
|
||
export default TypedCollectionWidget; |
Oops, something went wrong.