@kentico/xperience-admin-base 26.5.2 → 26.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/entry.d.ts
CHANGED
|
@@ -4,6 +4,14 @@ import { DraggableProvidedDragHandleProps } from 'react-beautiful-dnd';
|
|
|
4
4
|
import { default as React_2 } from 'react';
|
|
5
5
|
import { RefObject } from 'react';
|
|
6
6
|
|
|
7
|
+
/**
|
|
8
|
+
* Represents basic set of additional action properties.
|
|
9
|
+
*/
|
|
10
|
+
declare interface AdditionalActionProps {
|
|
11
|
+
readonly identifier: string;
|
|
12
|
+
readonly componentName: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
7
15
|
declare interface BaseButtonProps extends UITestProps {
|
|
8
16
|
readonly renderComponent: (props: InjectedProps) => React.ReactNode;
|
|
9
17
|
readonly size?: ButtonSize;
|
|
@@ -133,6 +141,8 @@ export declare interface FormComponentProps extends FieldInfo {
|
|
|
133
141
|
readonly invalid?: boolean;
|
|
134
142
|
readonly validationMessage?: string;
|
|
135
143
|
readonly validationRules?: ValidationRuleProps[];
|
|
144
|
+
readonly additionalActions?: AdditionalActionProps[];
|
|
145
|
+
readonly labelActionsElement?: React.ReactNode;
|
|
136
146
|
readonly onChange?: (value: OnChangeValueType) => void;
|
|
137
147
|
readonly required?: boolean;
|
|
138
148
|
readonly inactiveMessage?: string;
|
|
@@ -179,6 +189,7 @@ declare const Icons = {
|
|
|
179
189
|
'xp-arrow-right-rect' : arrowRightRect,
|
|
180
190
|
'xp-arrow-right-top-square' : arrowRightTopSquare,
|
|
181
191
|
'xp-arrow-right' : arrowRight,
|
|
192
|
+
'xp-arrow-send' : arrowSend,
|
|
182
193
|
'xp-arrow-u-left' : arrowULeft,
|
|
183
194
|
'xp-arrow-u-right' : arrowURight,
|
|
184
195
|
'xp-arrow-up-circle' : arrowUpCircle,
|
|
@@ -511,6 +522,7 @@ declare const Icons = {
|
|
|
511
522
|
'xp-rectangle-h' : rectangleH,
|
|
512
523
|
'xp-rectangle-paragraph' : rectangleParagraph,
|
|
513
524
|
'xp-rectangle-v' : rectangleV,
|
|
525
|
+
'xp-resize': resize,
|
|
514
526
|
'xp-restriction-list' : restrictionList,
|
|
515
527
|
'xp-ribbon' : ribbon,
|
|
516
528
|
'xp-right-double-quotation-mark' : rightDoubleQuotationMark,
|
|
@@ -541,6 +553,7 @@ declare const Icons = {
|
|
|
541
553
|
'xp-star-empty' : starEmpty,
|
|
542
554
|
'xp-star-full' : starFull,
|
|
543
555
|
'xp-star-semi' : starSemi,
|
|
556
|
+
'xp-stop': stop,
|
|
544
557
|
'xp-subscript' : subscript,
|
|
545
558
|
'xp-superscript' : superscript,
|
|
546
559
|
'xp-t-f' : tF,
|