@synerise/ds-inline-edit 1.0.33 → 1.0.35
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.35](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@1.0.34...@synerise/ds-inline-edit@1.0.35) (2025-10-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-inline-edit
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.0.34](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@1.0.33...@synerise/ds-inline-edit@1.0.34) (2025-10-08)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-inline-edit
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.0.33](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@1.0.32...@synerise/ds-inline-edit@1.0.33) (2025-10-03)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-inline-edit
|
|
@@ -2,4 +2,40 @@ import { type ScrollbarProps } from '@synerise/ds-scrollbar/dist/Scrollbar.types
|
|
|
2
2
|
export declare const DropdownWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
3
|
export declare const ListWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
4
|
export declare const StyledScrollbar: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<(ScrollbarProps | import("@synerise/ds-scrollbar").VirtualScrollbarProps) & import("react").RefAttributes<HTMLElement>>, any, ScrollbarProps, never>;
|
|
5
|
-
export declare const ListItem: import("styled-components").StyledComponent<(
|
|
5
|
+
export declare const ListItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@synerise/ds-list-item/dist/ListItem.types").ListItemDividerProps & {
|
|
6
|
+
checked?: boolean;
|
|
7
|
+
selected?: boolean;
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
className?: string;
|
|
10
|
+
copyable?: boolean;
|
|
11
|
+
copyHint?: React.ReactNode;
|
|
12
|
+
copyValue?: string;
|
|
13
|
+
copyTooltip?: React.ReactNode;
|
|
14
|
+
description?: React.ReactNode;
|
|
15
|
+
direction?: "ltr" | "rtl";
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
highlight?: string;
|
|
18
|
+
hoverTooltipProps?: Pick<import("rc-trigger").TriggerProps, "onPopupVisibleChange" | "onPopupClick" | "mouseEnterDelay" | "mouseLeaveDelay" | "defaultPopupVisible" | "action" | "afterPopupVisibleChange" | "popupPlacement" | "getPopupContainer" | "forceRender"> & {
|
|
19
|
+
ref?: React.LegacyRef<import("@synerise/ds-list-item/dist/ListItem.types").TriggerHandle>;
|
|
20
|
+
};
|
|
21
|
+
key?: React.Key;
|
|
22
|
+
itemKey?: React.Key;
|
|
23
|
+
noHover?: boolean;
|
|
24
|
+
onItemHover?: import("@synerise/ds-list-item").ListItemEventHandler<React.MouseEvent<HTMLDivElement>>;
|
|
25
|
+
onItemSelect?: import("@synerise/ds-list-item").ListItemEventHandler<React.MouseEvent<HTMLDivElement> | React.KeyboardEvent<HTMLDivElement>>;
|
|
26
|
+
onClick?: import("@synerise/ds-list-item").ListItemEventHandler<React.MouseEvent<HTMLDivElement>>;
|
|
27
|
+
ordered?: boolean;
|
|
28
|
+
parent?: boolean;
|
|
29
|
+
prefixel?: React.ReactNode | import("@synerise/ds-list-item/dist/ListItem.types").AddonRenderer;
|
|
30
|
+
prefixVisibilityTrigger?: "hover" | "default";
|
|
31
|
+
renderHoverTooltip?: () => JSX.Element;
|
|
32
|
+
size?: import("@synerise/ds-list-item").ItemSize;
|
|
33
|
+
suffixel?: React.ReactNode | import("@synerise/ds-list-item/dist/ListItem.types").AddonRenderer;
|
|
34
|
+
suffixVisibilityTrigger?: "hover" | "default";
|
|
35
|
+
text?: React.ReactNode;
|
|
36
|
+
timeToHideTooltip?: number;
|
|
37
|
+
tooltipProps?: import("@synerise/ds-tooltip").TooltipProps;
|
|
38
|
+
type?: import("@synerise/ds-list-item").ItemType;
|
|
39
|
+
subMenu?: import("@synerise/ds-list-item").ListItemProps[];
|
|
40
|
+
indentLevel?: number;
|
|
41
|
+
} & Omit<import("react").HTMLAttributes<HTMLDivElement>, "text" | "type" | "className" | "direction" | "children" | "onClick" | "key" | "disabled" | "checked" | "size" | "selected" | "description" | keyof import("@synerise/ds-list-item/dist/ListItem.types").ListItemDividerProps | "copyable" | "copyHint" | "copyValue" | "copyTooltip" | "highlight" | "hoverTooltipProps" | "itemKey" | "noHover" | "onItemHover" | "onItemSelect" | "ordered" | "parent" | "prefixel" | "prefixVisibilityTrigger" | "renderHoverTooltip" | "suffixel" | "suffixVisibilityTrigger" | "timeToHideTooltip" | "tooltipProps" | "subMenu" | "indentLevel"> & import("@synerise/ds-utils").DataAttributes & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-inline-edit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.35",
|
|
4
4
|
"description": "InlineEdit UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -35,20 +35,20 @@
|
|
|
35
35
|
],
|
|
36
36
|
"types": "dist/index.d.ts",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@synerise/ds-dropdown": "^1.0.
|
|
39
|
-
"@synerise/ds-icon": "^1.7.
|
|
40
|
-
"@synerise/ds-input": "^1.
|
|
41
|
-
"@synerise/ds-list-item": "^1.0
|
|
42
|
-
"@synerise/ds-scrollbar": "^1.1.
|
|
43
|
-
"@synerise/ds-search": "^1.3.
|
|
44
|
-
"@synerise/ds-tooltip": "^1.2.
|
|
45
|
-
"@synerise/ds-typography": "^1.0.
|
|
46
|
-
"@synerise/ds-utils": "^1.
|
|
38
|
+
"@synerise/ds-dropdown": "^1.0.31",
|
|
39
|
+
"@synerise/ds-icon": "^1.7.3",
|
|
40
|
+
"@synerise/ds-input": "^1.4.0",
|
|
41
|
+
"@synerise/ds-list-item": "^1.1.0",
|
|
42
|
+
"@synerise/ds-scrollbar": "^1.1.9",
|
|
43
|
+
"@synerise/ds-search": "^1.3.7",
|
|
44
|
+
"@synerise/ds-tooltip": "^1.2.1",
|
|
45
|
+
"@synerise/ds-typography": "^1.0.22",
|
|
46
|
+
"@synerise/ds-utils": "^1.5.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@synerise/ds-core": "*",
|
|
50
50
|
"react": ">=16.9.0 <= 18.3.1",
|
|
51
51
|
"styled-components": "^5.3.3"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "4e09fc37fa21ff2e27655e7bb305b136db0ca199"
|
|
54
54
|
}
|