@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.94 → 0.0.1-alpha.95
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/openapi-k8s-toolkit.es.js +112 -36
- package/dist/openapi-k8s-toolkit.es.js.map +1 -1
- package/dist/openapi-k8s-toolkit.umd.js +112 -35
- package/dist/openapi-k8s-toolkit.umd.js.map +1 -1
- package/dist/types/components/atoms/CustomSelect/CustomSelect.d.ts +3 -0
- package/dist/types/components/atoms/CustomSelect/index.d.ts +1 -0
- package/dist/types/components/atoms/CustomSelect/styled.d.ts +158 -0
- package/dist/types/components/atoms/index.d.ts +1 -0
- package/dist/types/components/organisms/DynamicComponents/molecules/Labels/molecules/EditModal/EditModal.d.ts +2 -0
- package/dist/types/components/organisms/DynamicComponents/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CustomSelect';
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const Styled: {
|
|
3
|
+
CustomSelect: import("styled-components").IStyledComponent<"web", {
|
|
4
|
+
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | undefined;
|
|
5
|
+
mode?: "multiple" | "tags" | undefined;
|
|
6
|
+
status?: "" | "error" | "warning" | undefined;
|
|
7
|
+
popupClassName?: string | undefined;
|
|
8
|
+
dropdownClassName?: string | undefined;
|
|
9
|
+
dropdownMatchSelectWidth?: number | boolean | undefined;
|
|
10
|
+
popupMatchSelectWidth?: number | boolean | undefined;
|
|
11
|
+
dropdownRender?: ((menu: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | undefined;
|
|
12
|
+
popupRender?: ((menu: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | undefined;
|
|
13
|
+
dropdownStyle?: import("react").CSSProperties | undefined;
|
|
14
|
+
onDropdownVisibleChange?: ((visible: boolean) => void) | undefined;
|
|
15
|
+
onOpenChange?: ((visible: boolean) => void) | undefined;
|
|
16
|
+
defaultValue?: unknown;
|
|
17
|
+
autoFocus?: boolean | undefined;
|
|
18
|
+
className?: string | undefined;
|
|
19
|
+
id?: string | undefined;
|
|
20
|
+
placeholder?: import("react").ReactNode;
|
|
21
|
+
style?: import("react").CSSProperties | undefined;
|
|
22
|
+
tabIndex?: number | undefined;
|
|
23
|
+
title?: string | undefined;
|
|
24
|
+
prefix?: import("react").ReactNode;
|
|
25
|
+
"aria-activedescendant"?: string | undefined;
|
|
26
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
27
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
28
|
+
"aria-braillelabel"?: string | undefined;
|
|
29
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
30
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
31
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
32
|
+
"aria-colcount"?: number | undefined;
|
|
33
|
+
"aria-colindex"?: number | undefined;
|
|
34
|
+
"aria-colindextext"?: string | undefined;
|
|
35
|
+
"aria-colspan"?: number | undefined;
|
|
36
|
+
"aria-controls"?: string | undefined;
|
|
37
|
+
"aria-current"?: boolean | "step" | "time" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
38
|
+
"aria-describedby"?: string | undefined;
|
|
39
|
+
"aria-description"?: string | undefined;
|
|
40
|
+
"aria-details"?: string | undefined;
|
|
41
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
42
|
+
"aria-dropeffect"?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
43
|
+
"aria-errormessage"?: string | undefined;
|
|
44
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
45
|
+
"aria-flowto"?: string | undefined;
|
|
46
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
47
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
48
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
49
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
50
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
51
|
+
"aria-label"?: string | undefined;
|
|
52
|
+
"aria-labelledby"?: string | undefined;
|
|
53
|
+
"aria-level"?: number | undefined;
|
|
54
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
55
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
56
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
57
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
58
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
59
|
+
"aria-owns"?: string | undefined;
|
|
60
|
+
"aria-placeholder"?: string | undefined;
|
|
61
|
+
"aria-posinset"?: number | undefined;
|
|
62
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
63
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
64
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
65
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
66
|
+
"aria-roledescription"?: string | undefined;
|
|
67
|
+
"aria-rowcount"?: number | undefined;
|
|
68
|
+
"aria-rowindex"?: number | undefined;
|
|
69
|
+
"aria-rowindextext"?: string | undefined;
|
|
70
|
+
"aria-rowspan"?: number | undefined;
|
|
71
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
72
|
+
"aria-setsize"?: number | undefined;
|
|
73
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
74
|
+
"aria-valuemax"?: number | undefined;
|
|
75
|
+
"aria-valuemin"?: number | undefined;
|
|
76
|
+
"aria-valuenow"?: number | undefined;
|
|
77
|
+
"aria-valuetext"?: string | undefined;
|
|
78
|
+
children?: import("react").ReactNode;
|
|
79
|
+
onFocus?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
80
|
+
onBlur?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
81
|
+
onChange?: ((value: unknown, option?: import("rc-select/lib/Select").DefaultOptionType | import("rc-select/lib/Select").BaseOptionType | (import("rc-select/lib/Select").DefaultOptionType | import("rc-select/lib/Select").BaseOptionType)[] | undefined) => void) | undefined;
|
|
82
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
83
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
84
|
+
onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
85
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
86
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
87
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
88
|
+
onSelect?: import("rc-select/lib/Select").SelectHandler<unknown, import("rc-select/lib/Select").DefaultOptionType | import("rc-select/lib/Select").BaseOptionType> | undefined;
|
|
89
|
+
prefixCls?: string | undefined;
|
|
90
|
+
direction?: "ltr" | "rtl" | undefined;
|
|
91
|
+
fieldNames?: import("rc-select/lib/Select").FieldNames | undefined;
|
|
92
|
+
disabled?: boolean | undefined;
|
|
93
|
+
virtual?: boolean | undefined;
|
|
94
|
+
rootClassName?: string | undefined;
|
|
95
|
+
searchValue?: string | undefined;
|
|
96
|
+
size?: import("antd/es/button").ButtonSize;
|
|
97
|
+
value?: unknown;
|
|
98
|
+
maxLength?: number | undefined;
|
|
99
|
+
classNames?: (Partial<Record<"root", string>> & {
|
|
100
|
+
popup?: Partial<Record<"root", string>> | undefined;
|
|
101
|
+
}) | undefined;
|
|
102
|
+
styles?: (Partial<Record<"root", import("react").CSSProperties>> & {
|
|
103
|
+
popup?: Partial<Record<"root", import("react").CSSProperties>> | undefined;
|
|
104
|
+
}) | undefined;
|
|
105
|
+
onClear?: (() => void) | undefined;
|
|
106
|
+
allowClear?: boolean | {
|
|
107
|
+
clearIcon?: import("rc-select/lib/interface").RenderNode;
|
|
108
|
+
} | undefined;
|
|
109
|
+
open?: boolean | undefined;
|
|
110
|
+
loading?: boolean | undefined;
|
|
111
|
+
options?: (import("rc-select/lib/Select").DefaultOptionType | import("rc-select/lib/Select").BaseOptionType)[] | undefined;
|
|
112
|
+
animation?: string | undefined;
|
|
113
|
+
transitionName?: string | undefined;
|
|
114
|
+
autoClearSearchValue?: boolean | undefined;
|
|
115
|
+
onSearch?: ((value: string) => void) | undefined;
|
|
116
|
+
showSearch?: boolean | undefined;
|
|
117
|
+
tagRender?: ((props: import("rc-select/lib/BaseSelect").CustomTagProps) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | undefined;
|
|
118
|
+
notFoundContent?: import("react").ReactNode;
|
|
119
|
+
choiceTransitionName?: string | undefined;
|
|
120
|
+
defaultOpen?: boolean | undefined;
|
|
121
|
+
maxTagTextLength?: number | undefined;
|
|
122
|
+
maxTagCount?: number | "responsive" | undefined;
|
|
123
|
+
maxTagPlaceholder?: import("react").ReactNode | ((omittedValues: import("rc-select/lib/interface").DisplayValueType[]) => import("react").ReactNode);
|
|
124
|
+
tokenSeparators?: string[] | undefined;
|
|
125
|
+
suffixIcon?: import("react").ReactNode;
|
|
126
|
+
clearIcon?: import("rc-select/lib/interface").RenderNode;
|
|
127
|
+
removeIcon?: import("rc-select/lib/interface").RenderNode;
|
|
128
|
+
dropdownAlign?: import("@rc-component/trigger").AlignType | undefined;
|
|
129
|
+
builtinPlacements?: import("@rc-component/trigger").BuildInPlacements | undefined;
|
|
130
|
+
getPopupContainer?: import("rc-select/lib/interface").RenderDOMFunc | undefined;
|
|
131
|
+
showAction?: ("focus" | "click")[] | undefined;
|
|
132
|
+
onPopupScroll?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
133
|
+
onInputKeyDown?: import("react").KeyboardEventHandler<HTMLInputElement | HTMLTextAreaElement> | undefined;
|
|
134
|
+
inputValue?: string | undefined;
|
|
135
|
+
onDeselect?: import("rc-select/lib/Select").SelectHandler<unknown, import("rc-select/lib/Select").DefaultOptionType | import("rc-select/lib/Select").BaseOptionType> | undefined;
|
|
136
|
+
filterOption?: boolean | import("rc-select/lib/Select").FilterFunc<import("rc-select/lib/Select").DefaultOptionType | import("rc-select/lib/Select").BaseOptionType> | undefined;
|
|
137
|
+
filterSort?: ((optionA: import("rc-select/lib/Select").DefaultOptionType | import("rc-select/lib/Select").BaseOptionType, optionB: import("rc-select/lib/Select").DefaultOptionType | import("rc-select/lib/Select").BaseOptionType, info: {
|
|
138
|
+
searchValue: string;
|
|
139
|
+
}) => number) | undefined;
|
|
140
|
+
optionFilterProp?: string | undefined;
|
|
141
|
+
optionLabelProp?: string | undefined;
|
|
142
|
+
optionRender?: ((oriOption: import("rc-select/lib/interface").FlattenOptionData<import("rc-select/lib/Select").DefaultOptionType | import("rc-select/lib/Select").BaseOptionType>, info: {
|
|
143
|
+
index: number;
|
|
144
|
+
}) => import("react").ReactNode) | undefined;
|
|
145
|
+
defaultActiveFirstOption?: boolean | undefined;
|
|
146
|
+
listHeight?: number | undefined;
|
|
147
|
+
listItemHeight?: number | undefined;
|
|
148
|
+
labelRender?: ((props: import("rc-select/lib/Select").LabelInValueType) => import("react").ReactNode) | undefined;
|
|
149
|
+
menuItemSelectedIcon?: import("rc-select/lib/interface").RenderNode;
|
|
150
|
+
labelInValue?: boolean | undefined;
|
|
151
|
+
maxCount?: number | undefined;
|
|
152
|
+
bordered?: boolean | undefined;
|
|
153
|
+
showArrow?: boolean | undefined;
|
|
154
|
+
variant?: "outlined" | "borderless" | "filled" | "underlined" | undefined;
|
|
155
|
+
ref?: import("react").Ref<import("antd").RefSelectProps> | undefined;
|
|
156
|
+
key?: import("react").Key | null | undefined;
|
|
157
|
+
}>;
|
|
158
|
+
};
|
|
@@ -183,6 +183,8 @@ export type TDynamicComponentsAppTypeMap = {
|
|
|
183
183
|
modalDescriptionText?: string;
|
|
184
184
|
inputLabel?: string;
|
|
185
185
|
containerStyle?: CSSProperties;
|
|
186
|
+
maxEditTagTextLength?: number;
|
|
187
|
+
allowClearEditSelect?: boolean;
|
|
186
188
|
};
|
|
187
189
|
LabelsToSearchParams: {
|
|
188
190
|
id: number | string;
|
package/package.json
CHANGED