@cloud-ru/uikit-product-claudia 1.6.2
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 +112 -0
- package/LICENSE +201 -0
- package/README.md +586 -0
- package/package.json +60 -0
- package/src/components/ButtonClaudia/ButtonClaudia.tsx +33 -0
- package/src/components/ButtonClaudia/constants.ts +29 -0
- package/src/components/ButtonClaudia/helperComponents/ButtonPrivate/ButtonPrivate.tsx +99 -0
- package/src/components/ButtonClaudia/helperComponents/ButtonPrivate/constants.ts +13 -0
- package/src/components/ButtonClaudia/helperComponents/ButtonPrivate/index.ts +1 -0
- package/src/components/ButtonClaudia/helperComponents/ButtonPrivate/styles.module.scss +46 -0
- package/src/components/ButtonClaudia/helperComponents/ButtonPrivate/utils.tsx +92 -0
- package/src/components/ButtonClaudia/helperComponents/index.ts +1 -0
- package/src/components/ButtonClaudia/index.ts +1 -0
- package/src/components/ButtonClaudia/styles.module.scss +141 -0
- package/src/components/ButtonClaudia/types.ts +63 -0
- package/src/components/ButtonClaudia/utils.ts +15 -0
- package/src/components/ButtonGiga/ButtonGigaFunction/ButtonGigaFunction.tsx +43 -0
- package/src/components/ButtonGiga/ButtonGigaFunction/index.ts +1 -0
- package/src/components/ButtonGiga/ButtonGigaFunction/styles.module.scss +179 -0
- package/src/components/ButtonGiga/ButtonGigaFunction/types.ts +43 -0
- package/src/components/ButtonGiga/ButtonGigaFunction/utils.ts +16 -0
- package/src/components/ButtonGiga/ButtonGigaMama/ButtonGigaMama.tsx +29 -0
- package/src/components/ButtonGiga/ButtonGigaMama/index.ts +1 -0
- package/src/components/ButtonGiga/ButtonGigaMama/styles.module.scss +180 -0
- package/src/components/ButtonGiga/ButtonGigaMama/utils.ts +15 -0
- package/src/components/ButtonGiga/ButtonGigaOutline/ButtonGigaOutline.tsx +43 -0
- package/src/components/ButtonGiga/ButtonGigaOutline/index.ts +1 -0
- package/src/components/ButtonGiga/ButtonGigaOutline/styles.module.scss +223 -0
- package/src/components/ButtonGiga/ButtonGigaOutline/types.ts +63 -0
- package/src/components/ButtonGiga/ButtonGigaOutline/utils.ts +16 -0
- package/src/components/ButtonGiga/constants.ts +29 -0
- package/src/components/ButtonGiga/helperComponents/ButtonPrivate/ButtonPrivate.tsx +99 -0
- package/src/components/ButtonGiga/helperComponents/ButtonPrivate/constants.ts +15 -0
- package/src/components/ButtonGiga/helperComponents/ButtonPrivate/index.ts +1 -0
- package/src/components/ButtonGiga/helperComponents/ButtonPrivate/styles.module.scss +46 -0
- package/src/components/ButtonGiga/helperComponents/ButtonPrivate/types.ts +63 -0
- package/src/components/ButtonGiga/helperComponents/ButtonPrivate/utils.tsx +92 -0
- package/src/components/ButtonGiga/helperComponents/index.ts +1 -0
- package/src/components/ButtonGiga/index.ts +3 -0
- package/src/components/ButtonGiga/types.ts +43 -0
- package/src/components/ChatStatusAnnouncement/ChatStatusAnnouncement.tsx +109 -0
- package/src/components/ChatStatusAnnouncement/constants.ts +1 -0
- package/src/components/ChatStatusAnnouncement/helperComponents/AlertButton/AlertButton.tsx +24 -0
- package/src/components/ChatStatusAnnouncement/helperComponents/AlertButton/index.ts +1 -0
- package/src/components/ChatStatusAnnouncement/helperComponents/AlertButton/styles.module.scss +27 -0
- package/src/components/ChatStatusAnnouncement/helperComponents/TextContent/TextContent.tsx +18 -0
- package/src/components/ChatStatusAnnouncement/helperComponents/TextContent/index.ts +1 -0
- package/src/components/ChatStatusAnnouncement/index.ts +1 -0
- package/src/components/ChatStatusAnnouncement/styled.module.scss +65 -0
- package/src/components/ChatStatusAnnouncement/types.ts +17 -0
- package/src/components/ChatStatusAnnouncement/utils/index.ts +52 -0
- package/src/components/IconGiga/IconGiga.tsx +64 -0
- package/src/components/IconGiga/constants.ts +23 -0
- package/src/components/IconGiga/index.ts +1 -0
- package/src/components/RecommendPannel/RecommendPanel.tsx +131 -0
- package/src/components/RecommendPannel/helperComponents/Chip/Chip.tsx +47 -0
- package/src/components/RecommendPannel/helperComponents/Chip/index.ts +1 -0
- package/src/components/RecommendPannel/helperComponents/Chip/styles.module.scss +45 -0
- package/src/components/RecommendPannel/helperComponents/ClaudiaChip/ClaudiaChip.tsx +40 -0
- package/src/components/RecommendPannel/helperComponents/ClaudiaChip/index.ts +1 -0
- package/src/components/RecommendPannel/helperComponents/CloseChip/CloseChip.tsx +106 -0
- package/src/components/RecommendPannel/helperComponents/CloseChip/index.ts +1 -0
- package/src/components/RecommendPannel/helperComponents/CloseChip/styles.module.scss +73 -0
- package/src/components/RecommendPannel/helperComponents/DropdownChip/DropdownChip.tsx +112 -0
- package/src/components/RecommendPannel/helperComponents/DropdownChip/index.ts +1 -0
- package/src/components/RecommendPannel/helperComponents/DropdownChip/styles.module.scss +56 -0
- package/src/components/RecommendPannel/hooks/index.ts +15 -0
- package/src/components/RecommendPannel/index.ts +1 -0
- package/src/components/RecommendPannel/styles.module.scss +4 -0
- package/src/components/RecommendPannel/types.ts +21 -0
- package/src/components/RecommendPannel/utils/gitVisibleChipsCount.ts +57 -0
- package/src/components/SshField/SshField.tsx +222 -0
- package/src/components/SshField/components/MobileFieldAi/MobileFieldAi.tsx +71 -0
- package/src/components/SshField/components/MobileFieldAi/index.ts +1 -0
- package/src/components/SshField/components/MobileFieldAi/styles.module.scss +80 -0
- package/src/components/SshField/components/TextArea/TextArea.tsx +113 -0
- package/src/components/SshField/components/TextArea/index.ts +1 -0
- package/src/components/SshField/components/TextArea/styles.module.scss +35 -0
- package/src/components/SshField/helperComponents/DropZoneContent/DropZoneContent.tsx +15 -0
- package/src/components/SshField/helperComponents/DropZoneContent/index.ts +1 -0
- package/src/components/SshField/helperComponents/DropZoneContent/styles.module.scss +17 -0
- package/src/components/SshField/helperComponents/FieldSubmitButton/FieldSubmitButton.tsx +45 -0
- package/src/components/SshField/helperComponents/FieldSubmitButton/index.ts +1 -0
- package/src/components/SshField/helperComponents/TextAreaActionsFooter/TextAreaActionsFooter.tsx +18 -0
- package/src/components/SshField/helperComponents/TextAreaActionsFooter/index.ts +1 -0
- package/src/components/SshField/helperComponents/TextAreaActionsFooter/styles.module.scss +23 -0
- package/src/components/SshField/index.ts +1 -0
- package/src/components/SshField/styles.module.scss +54 -0
- package/src/components/SshField/utils/handleFileError.ts +41 -0
- package/src/components/SshField/utils/isTouchDevice.ts +5 -0
- package/src/components/SshField/utils/readFileContent.ts +23 -0
- package/src/components/SshField/utils/validateSSHKey.ts +84 -0
- package/src/components/index.ts +6 -0
- package/src/index.ts +1 -0
package/README.md
ADDED
|
@@ -0,0 +1,586 @@
|
|
|
1
|
+
# Claudia
|
|
2
|
+
|
|
3
|
+
- в пакете только компоненты для ai ассистента
|
|
4
|
+
- контрибьют в пакет идет мимо процесса PDS
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
`pnpm add @cloud-ru/uikit-product-claudia`
|
|
9
|
+
|
|
10
|
+
[Changelog](./CHANGELOG.md)
|
|
11
|
+
|
|
12
|
+
[//]: DOCUMENTATION_SECTION_START
|
|
13
|
+
[//]: THIS_SECTION_IS_AUTOGENERATED_PLEASE_DONT_EDIT_IT
|
|
14
|
+
## ButtonClaudia
|
|
15
|
+
### Props
|
|
16
|
+
| name | type | default value | description |
|
|
17
|
+
|------|------|---------------|-------------|
|
|
18
|
+
| href | `string` | - | Ссылка |
|
|
19
|
+
| target | `HTMLAttributeAnchorTarget` | _blank | HTML-аттрибут target |
|
|
20
|
+
| className | `string` | - | CSS-класс |
|
|
21
|
+
| disabled | `boolean` | - | Флаг неактивности компонента |
|
|
22
|
+
| icon | `ReactElement` | - | Иконка |
|
|
23
|
+
| label | `string` | - | Текст кнопки |
|
|
24
|
+
| loading | `boolean` | - | Флаг состояния загрузки |
|
|
25
|
+
| onClick | `MouseEventHandler<HTMLElement>` | - | Колбек обработки клика |
|
|
26
|
+
| onKeyDown | `KeyboardEventHandler<HTMLElement>` | - | Колбек обработки нажатия клавиши |
|
|
27
|
+
| onFocus | `FocusEventHandler<HTMLButtonElement \| HTMLAnchorElement>` | - | Колбек обработки фокуса |
|
|
28
|
+
| onBlur | `FocusEventHandler<HTMLButtonElement \| HTMLAnchorElement>` | - | Колбек обработки блюра |
|
|
29
|
+
| size | enum Size: `"xs"`, `"s"`, `"m"`, `"l"` | s | Размер |
|
|
30
|
+
| type | "submit" \| "reset" \| "button" | button | HTML-аттрибут type |
|
|
31
|
+
| tabIndex | `number` | - | HTML-аттрибут tab-index |
|
|
32
|
+
| fullWidth | `boolean` | - | Сделать кнопку во всю ширину |
|
|
33
|
+
| ref | `LegacyRef<HTMLButtonElement \| HTMLAnchorElement>` | - | Allows getting a ref to the component instance. Once the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs} |
|
|
34
|
+
| key | `Key` | - | |
|
|
35
|
+
## ButtonGigaMama
|
|
36
|
+
### Props
|
|
37
|
+
| name | type | default value | description |
|
|
38
|
+
|------|------|---------------|-------------|
|
|
39
|
+
| href | `string` | - | Ссылка |
|
|
40
|
+
| target | `HTMLAttributeAnchorTarget` | _blank | HTML-аттрибут target |
|
|
41
|
+
| className | `string` | - | CSS-класс |
|
|
42
|
+
| disabled | `boolean` | - | Флаг неактивности компонента |
|
|
43
|
+
| icon | `ReactElement` | - | Иконка |
|
|
44
|
+
| label | `string` | - | Текст кнопки |
|
|
45
|
+
| loading | `boolean` | - | Флаг состояния загрузки |
|
|
46
|
+
| onClick | `MouseEventHandler<HTMLElement>` | - | Колбек обработки клика |
|
|
47
|
+
| onKeyDown | `KeyboardEventHandler<HTMLElement>` | - | Колбек обработки нажатия клавиши |
|
|
48
|
+
| onFocus | `FocusEventHandler<HTMLButtonElement \| HTMLAnchorElement>` | - | Колбек обработки фокуса |
|
|
49
|
+
| onBlur | `FocusEventHandler<HTMLButtonElement \| HTMLAnchorElement>` | - | Колбек обработки блюра |
|
|
50
|
+
| type | "submit" \| "reset" \| "button" | button | HTML-аттрибут type |
|
|
51
|
+
| tabIndex | `number` | - | HTML-аттрибут tab-index |
|
|
52
|
+
| fullWidth | `boolean` | - | Сделать кнопку во всю ширину |
|
|
53
|
+
| ref | `LegacyRef<HTMLButtonElement \| HTMLAnchorElement>` | - | Allows getting a ref to the component instance. Once the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs} |
|
|
54
|
+
| key | `Key` | - | |
|
|
55
|
+
## ButtonGigaOutline
|
|
56
|
+
### Props
|
|
57
|
+
| name | type | default value | description |
|
|
58
|
+
|------|------|---------------|-------------|
|
|
59
|
+
| iconPosition | enum IconPosition: `"before"`, `"after"` | before | Позиция иконки |
|
|
60
|
+
| href | `string` | - | Ссылка |
|
|
61
|
+
| target | `HTMLAttributeAnchorTarget` | _blank | HTML-аттрибут target |
|
|
62
|
+
| className | `string` | - | CSS-класс |
|
|
63
|
+
| disabled | `boolean` | - | Флаг неактивности компонента |
|
|
64
|
+
| icon | `ReactElement` | - | Иконка |
|
|
65
|
+
| label | `string` | - | Текст кнопки |
|
|
66
|
+
| loading | `boolean` | - | Флаг состояния загрузки |
|
|
67
|
+
| onClick | `MouseEventHandler<HTMLElement>` | - | Колбек обработки клика |
|
|
68
|
+
| onKeyDown | `KeyboardEventHandler<HTMLElement>` | - | Колбек обработки нажатия клавиши |
|
|
69
|
+
| onFocus | `FocusEventHandler<HTMLButtonElement \| HTMLAnchorElement>` | - | Колбек обработки фокуса |
|
|
70
|
+
| onBlur | `FocusEventHandler<HTMLButtonElement \| HTMLAnchorElement>` | - | Колбек обработки блюра |
|
|
71
|
+
| size | enum Size: `"xs"`, `"s"`, `"m"`, `"l"` | s | Размер |
|
|
72
|
+
| type | "submit" \| "reset" \| "button" | button | HTML-аттрибут type |
|
|
73
|
+
| tabIndex | `number` | - | HTML-аттрибут tab-index |
|
|
74
|
+
| fullWidth | `boolean` | - | Сделать кнопку во всю ширину |
|
|
75
|
+
| ref | `LegacyRef<HTMLButtonElement \| HTMLAnchorElement>` | - | Allows getting a ref to the component instance. Once the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs} |
|
|
76
|
+
| key | `Key` | - | |
|
|
77
|
+
## ButtonGigaFunction
|
|
78
|
+
### Props
|
|
79
|
+
| name | type | default value | description |
|
|
80
|
+
|------|------|---------------|-------------|
|
|
81
|
+
| iconPosition | enum IconPosition: `"before"`, `"after"` | before | |
|
|
82
|
+
| href | `string` | - | |
|
|
83
|
+
| target | `HTMLAttributeAnchorTarget` | _blank | |
|
|
84
|
+
| className | `string` | - | CSS-класс |
|
|
85
|
+
| disabled | `boolean` | - | |
|
|
86
|
+
| icon | `ReactElement<any, string \| JSXElementConstructor<any>>` | - | |
|
|
87
|
+
| label | `string` | - | |
|
|
88
|
+
| loading | `boolean` | - | |
|
|
89
|
+
| onClick | `MouseEventHandler<HTMLElement>` | - | |
|
|
90
|
+
| onKeyDown | `KeyboardEventHandler<HTMLElement>` | - | |
|
|
91
|
+
| onFocus | `FocusEventHandler<HTMLButtonElement \| HTMLAnchorElement>` | - | |
|
|
92
|
+
| onBlur | `FocusEventHandler<HTMLButtonElement \| HTMLAnchorElement>` | - | |
|
|
93
|
+
| size | enum Size: `"xs"`, `"s"`, `"m"`, `"l"` | s | |
|
|
94
|
+
| type | "submit" \| "reset" \| "button" | button | |
|
|
95
|
+
| tabIndex | `number` | - | |
|
|
96
|
+
| fullWidth | `boolean` | - | |
|
|
97
|
+
| ref | `LegacyRef<HTMLButtonElement \| HTMLAnchorElement>` | - | Allows getting a ref to the component instance. Once the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs} |
|
|
98
|
+
| key | `Key` | - | |
|
|
99
|
+
## ChatStatusAnnouncement
|
|
100
|
+
### Props
|
|
101
|
+
| name | type | default value | description |
|
|
102
|
+
|------|------|---------------|-------------|
|
|
103
|
+
| layoutType* | enum LayoutType: `"mobile"`, `"tablet"`, `"desktop"`, `"desktopSmall"` | - | |
|
|
104
|
+
| actionLabel* | `string` | - | |
|
|
105
|
+
| content* | `ReactNode \| TextItem[]` | - | |
|
|
106
|
+
| icon | `ReactElement<any, string \| JSXElementConstructor<any>>` | - | |
|
|
107
|
+
| onActionClick | `() => void` | - | |
|
|
108
|
+
| className | `string` | - | CSS-класс |
|
|
109
|
+
## IconGiga
|
|
110
|
+
### Props
|
|
111
|
+
| name | type | default value | description |
|
|
112
|
+
|------|------|---------------|-------------|
|
|
113
|
+
| string | `string \| number` | - | |
|
|
114
|
+
| href | `string` | - | |
|
|
115
|
+
| target | `string` | - | |
|
|
116
|
+
| className | `string` | - | CSS-класс |
|
|
117
|
+
| onClick | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
118
|
+
| onKeyDown | `KeyboardEventHandler<SVGSVGElement>` | - | |
|
|
119
|
+
| onFocus | `FocusEventHandler<SVGSVGElement>` | - | |
|
|
120
|
+
| onBlur | `FocusEventHandler<SVGSVGElement>` | - | |
|
|
121
|
+
| size | `number` | 24 | |
|
|
122
|
+
| type | `string` | - | |
|
|
123
|
+
| tabIndex | `number` | - | |
|
|
124
|
+
| key | `Key` | - | |
|
|
125
|
+
| style | `CSSProperties` | - | |
|
|
126
|
+
| withBranding | `boolean` | - | |
|
|
127
|
+
| suppressHydrationWarning | `boolean` | - | |
|
|
128
|
+
| color | `string` | - | |
|
|
129
|
+
| height | `string \| number` | - | |
|
|
130
|
+
| id | `string` | - | |
|
|
131
|
+
| lang | `string` | - | |
|
|
132
|
+
| max | `string \| number` | - | |
|
|
133
|
+
| media | `string` | - | |
|
|
134
|
+
| method | `string` | - | |
|
|
135
|
+
| min | `string \| number` | - | |
|
|
136
|
+
| name | `string` | - | |
|
|
137
|
+
| width | `string \| number` | - | |
|
|
138
|
+
| role | `AriaRole` | - | |
|
|
139
|
+
| crossOrigin | enum CrossOrigin: `""`, `"anonymous"`, `"use-credentials"` | - | |
|
|
140
|
+
| accentHeight | `string \| number` | - | |
|
|
141
|
+
| accumulate | "none" \| "sum" | - | |
|
|
142
|
+
| additive | "sum" \| "replace" | - | |
|
|
143
|
+
| alignmentBaseline | "alphabetic" \| "hanging" \| "ideographic" \| "mathematical" \| "auto" \| "baseline" \| "before-edge" \| "text-before-edge" \| "middle" \| "central" \| "after-edge" \| "text-after-edge" \| "inherit" | - | |
|
|
144
|
+
| allowReorder | "no" \| "yes" | - | |
|
|
145
|
+
| alphabetic | `string \| number` | - | |
|
|
146
|
+
| amplitude | `string \| number` | - | |
|
|
147
|
+
| arabicForm | "initial" \| "medial" \| "terminal" \| "isolated" | - | |
|
|
148
|
+
| ascent | `string \| number` | - | |
|
|
149
|
+
| attributeName | `string` | - | |
|
|
150
|
+
| attributeType | `string` | - | |
|
|
151
|
+
| autoReverse | `Booleanish` | - | |
|
|
152
|
+
| azimuth | `string \| number` | - | |
|
|
153
|
+
| baseFrequency | `string \| number` | - | |
|
|
154
|
+
| baselineShift | `string \| number` | - | |
|
|
155
|
+
| baseProfile | `string \| number` | - | |
|
|
156
|
+
| bbox | `string \| number` | - | |
|
|
157
|
+
| begin | `string \| number` | - | |
|
|
158
|
+
| bias | `string \| number` | - | |
|
|
159
|
+
| by | `string \| number` | - | |
|
|
160
|
+
| calcMode | `string \| number` | - | |
|
|
161
|
+
| capHeight | `string \| number` | - | |
|
|
162
|
+
| clip | `string \| number` | - | |
|
|
163
|
+
| clipPath | `string` | - | |
|
|
164
|
+
| clipPathUnits | `string \| number` | - | |
|
|
165
|
+
| clipRule | `string \| number` | - | |
|
|
166
|
+
| colorInterpolation | `string \| number` | - | |
|
|
167
|
+
| colorInterpolationFilters | "auto" \| "inherit" \| "sRGB" \| "linearRGB" | - | |
|
|
168
|
+
| colorProfile | `string \| number` | - | |
|
|
169
|
+
| colorRendering | `string \| number` | - | |
|
|
170
|
+
| contentScriptType | `string \| number` | - | |
|
|
171
|
+
| contentStyleType | `string \| number` | - | |
|
|
172
|
+
| cursor | `string \| number` | - | |
|
|
173
|
+
| cx | `string \| number` | - | |
|
|
174
|
+
| cy | `string \| number` | - | |
|
|
175
|
+
| d | `string` | - | |
|
|
176
|
+
| decelerate | `string \| number` | - | |
|
|
177
|
+
| descent | `string \| number` | - | |
|
|
178
|
+
| diffuseConstant | `string \| number` | - | |
|
|
179
|
+
| direction | `string \| number` | - | |
|
|
180
|
+
| display | `string \| number` | - | |
|
|
181
|
+
| divisor | `string \| number` | - | |
|
|
182
|
+
| dominantBaseline | `string \| number` | - | |
|
|
183
|
+
| dur | `string \| number` | - | |
|
|
184
|
+
| dx | `string \| number` | - | |
|
|
185
|
+
| dy | `string \| number` | - | |
|
|
186
|
+
| edgeMode | `string \| number` | - | |
|
|
187
|
+
| elevation | `string \| number` | - | |
|
|
188
|
+
| enableBackground | `string \| number` | - | |
|
|
189
|
+
| end | `string \| number` | - | |
|
|
190
|
+
| exponent | `string \| number` | - | |
|
|
191
|
+
| externalResourcesRequired | `Booleanish` | - | |
|
|
192
|
+
| fill | `string` | - | |
|
|
193
|
+
| fillOpacity | `string \| number` | - | |
|
|
194
|
+
| fillRule | "inherit" \| "nonzero" \| "evenodd" | - | |
|
|
195
|
+
| filter | `string` | - | |
|
|
196
|
+
| filterRes | `string \| number` | - | |
|
|
197
|
+
| filterUnits | `string \| number` | - | |
|
|
198
|
+
| floodColor | `string \| number` | - | |
|
|
199
|
+
| floodOpacity | `string \| number` | - | |
|
|
200
|
+
| focusable | `Booleanish \| "auto"` | - | |
|
|
201
|
+
| fontFamily | `string` | - | |
|
|
202
|
+
| fontSize | `string \| number` | - | |
|
|
203
|
+
| fontSizeAdjust | `string \| number` | - | |
|
|
204
|
+
| fontStretch | `string \| number` | - | |
|
|
205
|
+
| fontStyle | `string \| number` | - | |
|
|
206
|
+
| fontVariant | `string \| number` | - | |
|
|
207
|
+
| fontWeight | `string \| number` | - | |
|
|
208
|
+
| format | `string \| number` | - | |
|
|
209
|
+
| fr | `string \| number` | - | |
|
|
210
|
+
| from | `string \| number` | - | |
|
|
211
|
+
| fx | `string \| number` | - | |
|
|
212
|
+
| fy | `string \| number` | - | |
|
|
213
|
+
| g1 | `string \| number` | - | |
|
|
214
|
+
| g2 | `string \| number` | - | |
|
|
215
|
+
| glyphName | `string \| number` | - | |
|
|
216
|
+
| glyphOrientationHorizontal | `string \| number` | - | |
|
|
217
|
+
| glyphOrientationVertical | `string \| number` | - | |
|
|
218
|
+
| glyphRef | `string \| number` | - | |
|
|
219
|
+
| gradientTransform | `string` | - | |
|
|
220
|
+
| gradientUnits | `string` | - | |
|
|
221
|
+
| hanging | `string \| number` | - | |
|
|
222
|
+
| horizAdvX | `string \| number` | - | |
|
|
223
|
+
| horizOriginX | `string \| number` | - | |
|
|
224
|
+
| ideographic | `string \| number` | - | |
|
|
225
|
+
| imageRendering | `string \| number` | - | |
|
|
226
|
+
| in2 | `string \| number` | - | |
|
|
227
|
+
| in | `string` | - | |
|
|
228
|
+
| intercept | `string \| number` | - | |
|
|
229
|
+
| k1 | `string \| number` | - | |
|
|
230
|
+
| k2 | `string \| number` | - | |
|
|
231
|
+
| k3 | `string \| number` | - | |
|
|
232
|
+
| k4 | `string \| number` | - | |
|
|
233
|
+
| k | `string \| number` | - | |
|
|
234
|
+
| kernelMatrix | `string \| number` | - | |
|
|
235
|
+
| kernelUnitLength | `string \| number` | - | |
|
|
236
|
+
| kerning | `string \| number` | - | |
|
|
237
|
+
| keyPoints | `string \| number` | - | |
|
|
238
|
+
| keySplines | `string \| number` | - | |
|
|
239
|
+
| keyTimes | `string \| number` | - | |
|
|
240
|
+
| lengthAdjust | `string \| number` | - | |
|
|
241
|
+
| letterSpacing | `string \| number` | - | |
|
|
242
|
+
| lightingColor | `string \| number` | - | |
|
|
243
|
+
| limitingConeAngle | `string \| number` | - | |
|
|
244
|
+
| local | `string \| number` | - | |
|
|
245
|
+
| markerEnd | `string` | - | |
|
|
246
|
+
| markerHeight | `string \| number` | - | |
|
|
247
|
+
| markerMid | `string` | - | |
|
|
248
|
+
| markerStart | `string` | - | |
|
|
249
|
+
| markerUnits | `string \| number` | - | |
|
|
250
|
+
| markerWidth | `string \| number` | - | |
|
|
251
|
+
| mask | `string` | - | |
|
|
252
|
+
| maskContentUnits | `string \| number` | - | |
|
|
253
|
+
| maskUnits | `string \| number` | - | |
|
|
254
|
+
| mathematical | `string \| number` | - | |
|
|
255
|
+
| mode | `string \| number` | - | |
|
|
256
|
+
| numOctaves | `string \| number` | - | |
|
|
257
|
+
| offset | `string \| number` | - | |
|
|
258
|
+
| opacity | `string \| number` | - | |
|
|
259
|
+
| operator | `string \| number` | - | |
|
|
260
|
+
| order | `string \| number` | - | |
|
|
261
|
+
| orient | `string \| number` | - | |
|
|
262
|
+
| orientation | `string \| number` | - | |
|
|
263
|
+
| origin | `string \| number` | - | |
|
|
264
|
+
| overflow | `string \| number` | - | |
|
|
265
|
+
| overlinePosition | `string \| number` | - | |
|
|
266
|
+
| overlineThickness | `string \| number` | - | |
|
|
267
|
+
| paintOrder | `string \| number` | - | |
|
|
268
|
+
| panose1 | `string \| number` | - | |
|
|
269
|
+
| path | `string` | - | |
|
|
270
|
+
| pathLength | `string \| number` | - | |
|
|
271
|
+
| patternContentUnits | `string` | - | |
|
|
272
|
+
| patternTransform | `string \| number` | - | |
|
|
273
|
+
| patternUnits | `string` | - | |
|
|
274
|
+
| pointerEvents | `string \| number` | - | |
|
|
275
|
+
| points | `string` | - | |
|
|
276
|
+
| pointsAtX | `string \| number` | - | |
|
|
277
|
+
| pointsAtY | `string \| number` | - | |
|
|
278
|
+
| pointsAtZ | `string \| number` | - | |
|
|
279
|
+
| preserveAlpha | `Booleanish` | - | |
|
|
280
|
+
| preserveAspectRatio | `string` | - | |
|
|
281
|
+
| primitiveUnits | `string \| number` | - | |
|
|
282
|
+
| r | `string \| number` | - | |
|
|
283
|
+
| radius | `string \| number` | - | |
|
|
284
|
+
| refX | `string \| number` | - | |
|
|
285
|
+
| refY | `string \| number` | - | |
|
|
286
|
+
| renderingIntent | `string \| number` | - | |
|
|
287
|
+
| repeatCount | `string \| number` | - | |
|
|
288
|
+
| repeatDur | `string \| number` | - | |
|
|
289
|
+
| requiredExtensions | `string \| number` | - | |
|
|
290
|
+
| requiredFeatures | `string \| number` | - | |
|
|
291
|
+
| restart | `string \| number` | - | |
|
|
292
|
+
| result | `string` | - | |
|
|
293
|
+
| rotate | `string \| number` | - | |
|
|
294
|
+
| rx | `string \| number` | - | |
|
|
295
|
+
| ry | `string \| number` | - | |
|
|
296
|
+
| scale | `string \| number` | - | |
|
|
297
|
+
| seed | `string \| number` | - | |
|
|
298
|
+
| shapeRendering | `string \| number` | - | |
|
|
299
|
+
| slope | `string \| number` | - | |
|
|
300
|
+
| spacing | `string \| number` | - | |
|
|
301
|
+
| specularConstant | `string \| number` | - | |
|
|
302
|
+
| specularExponent | `string \| number` | - | |
|
|
303
|
+
| speed | `string \| number` | - | |
|
|
304
|
+
| spreadMethod | `string` | - | |
|
|
305
|
+
| startOffset | `string \| number` | - | |
|
|
306
|
+
| stdDeviation | `string \| number` | - | |
|
|
307
|
+
| stemh | `string \| number` | - | |
|
|
308
|
+
| stemv | `string \| number` | - | |
|
|
309
|
+
| stitchTiles | `string \| number` | - | |
|
|
310
|
+
| stopColor | `string` | - | |
|
|
311
|
+
| stopOpacity | `string \| number` | - | |
|
|
312
|
+
| strikethroughPosition | `string \| number` | - | |
|
|
313
|
+
| strikethroughThickness | `string \| number` | - | |
|
|
314
|
+
| stroke | `string` | - | |
|
|
315
|
+
| strokeDasharray | `string \| number` | - | |
|
|
316
|
+
| strokeDashoffset | `string \| number` | - | |
|
|
317
|
+
| strokeLinecap | "inherit" \| "butt" \| "round" \| "square" | - | |
|
|
318
|
+
| strokeLinejoin | "inherit" \| "round" \| "miter" \| "bevel" | - | |
|
|
319
|
+
| strokeMiterlimit | `string \| number` | - | |
|
|
320
|
+
| strokeOpacity | `string \| number` | - | |
|
|
321
|
+
| strokeWidth | `string \| number` | - | |
|
|
322
|
+
| surfaceScale | `string \| number` | - | |
|
|
323
|
+
| systemLanguage | `string \| number` | - | |
|
|
324
|
+
| tableValues | `string \| number` | - | |
|
|
325
|
+
| targetX | `string \| number` | - | |
|
|
326
|
+
| targetY | `string \| number` | - | |
|
|
327
|
+
| textAnchor | `string` | - | |
|
|
328
|
+
| textDecoration | `string \| number` | - | |
|
|
329
|
+
| textLength | `string \| number` | - | |
|
|
330
|
+
| textRendering | `string \| number` | - | |
|
|
331
|
+
| to | `string \| number` | - | |
|
|
332
|
+
| transform | `string` | - | |
|
|
333
|
+
| u1 | `string \| number` | - | |
|
|
334
|
+
| u2 | `string \| number` | - | |
|
|
335
|
+
| underlinePosition | `string \| number` | - | |
|
|
336
|
+
| underlineThickness | `string \| number` | - | |
|
|
337
|
+
| unicode | `string \| number` | - | |
|
|
338
|
+
| unicodeBidi | `string \| number` | - | |
|
|
339
|
+
| unicodeRange | `string \| number` | - | |
|
|
340
|
+
| unitsPerEm | `string \| number` | - | |
|
|
341
|
+
| vAlphabetic | `string \| number` | - | |
|
|
342
|
+
| values | `string` | - | |
|
|
343
|
+
| vectorEffect | `string \| number` | - | |
|
|
344
|
+
| version | `string` | - | |
|
|
345
|
+
| vertAdvY | `string \| number` | - | |
|
|
346
|
+
| vertOriginX | `string \| number` | - | |
|
|
347
|
+
| vertOriginY | `string \| number` | - | |
|
|
348
|
+
| vHanging | `string \| number` | - | |
|
|
349
|
+
| vIdeographic | `string \| number` | - | |
|
|
350
|
+
| viewBox | `string` | - | |
|
|
351
|
+
| viewTarget | `string \| number` | - | |
|
|
352
|
+
| visibility | `string \| number` | - | |
|
|
353
|
+
| vMathematical | `string \| number` | - | |
|
|
354
|
+
| widths | `string \| number` | - | |
|
|
355
|
+
| wordSpacing | `string \| number` | - | |
|
|
356
|
+
| writingMode | `string \| number` | - | |
|
|
357
|
+
| x1 | `string \| number` | - | |
|
|
358
|
+
| x2 | `string \| number` | - | |
|
|
359
|
+
| x | `string \| number` | - | |
|
|
360
|
+
| xChannelSelector | `string` | - | |
|
|
361
|
+
| xHeight | `string \| number` | - | |
|
|
362
|
+
| xlinkActuate | `string` | - | |
|
|
363
|
+
| xlinkArcrole | `string` | - | |
|
|
364
|
+
| xlinkHref | `string` | - | |
|
|
365
|
+
| xlinkRole | `string` | - | |
|
|
366
|
+
| xlinkShow | `string` | - | |
|
|
367
|
+
| xlinkTitle | `string` | - | |
|
|
368
|
+
| xlinkType | `string` | - | |
|
|
369
|
+
| xmlBase | `string` | - | |
|
|
370
|
+
| xmlLang | `string` | - | |
|
|
371
|
+
| xmlns | `string` | - | |
|
|
372
|
+
| xmlnsXlink | `string` | - | |
|
|
373
|
+
| xmlSpace | `string` | - | |
|
|
374
|
+
| y1 | `string \| number` | - | |
|
|
375
|
+
| y2 | `string \| number` | - | |
|
|
376
|
+
| y | `string \| number` | - | |
|
|
377
|
+
| yChannelSelector | `string` | - | |
|
|
378
|
+
| z | `string \| number` | - | |
|
|
379
|
+
| zoomAndPan | `string` | - | |
|
|
380
|
+
| dangerouslySetInnerHTML | `{ __html: string \| TrustedHTML; }` | - | |
|
|
381
|
+
| onCopy | `ClipboardEventHandler<SVGSVGElement>` | - | |
|
|
382
|
+
| onCopyCapture | `ClipboardEventHandler<SVGSVGElement>` | - | |
|
|
383
|
+
| onCut | `ClipboardEventHandler<SVGSVGElement>` | - | |
|
|
384
|
+
| onCutCapture | `ClipboardEventHandler<SVGSVGElement>` | - | |
|
|
385
|
+
| onPaste | `ClipboardEventHandler<SVGSVGElement>` | - | |
|
|
386
|
+
| onPasteCapture | `ClipboardEventHandler<SVGSVGElement>` | - | |
|
|
387
|
+
| onCompositionEnd | `CompositionEventHandler<SVGSVGElement>` | - | |
|
|
388
|
+
| onCompositionEndCapture | `CompositionEventHandler<SVGSVGElement>` | - | |
|
|
389
|
+
| onCompositionStart | `CompositionEventHandler<SVGSVGElement>` | - | |
|
|
390
|
+
| onCompositionStartCapture | `CompositionEventHandler<SVGSVGElement>` | - | |
|
|
391
|
+
| onCompositionUpdate | `CompositionEventHandler<SVGSVGElement>` | - | |
|
|
392
|
+
| onCompositionUpdateCapture | `CompositionEventHandler<SVGSVGElement>` | - | |
|
|
393
|
+
| onFocusCapture | `FocusEventHandler<SVGSVGElement>` | - | |
|
|
394
|
+
| onBlurCapture | `FocusEventHandler<SVGSVGElement>` | - | |
|
|
395
|
+
| onChange | `FormEventHandler<SVGSVGElement>` | - | |
|
|
396
|
+
| onChangeCapture | `FormEventHandler<SVGSVGElement>` | - | |
|
|
397
|
+
| onBeforeInput | `FormEventHandler<SVGSVGElement>` | - | |
|
|
398
|
+
| onBeforeInputCapture | `FormEventHandler<SVGSVGElement>` | - | |
|
|
399
|
+
| onInput | `FormEventHandler<SVGSVGElement>` | - | |
|
|
400
|
+
| onInputCapture | `FormEventHandler<SVGSVGElement>` | - | |
|
|
401
|
+
| onReset | `FormEventHandler<SVGSVGElement>` | - | |
|
|
402
|
+
| onResetCapture | `FormEventHandler<SVGSVGElement>` | - | |
|
|
403
|
+
| onSubmit | `FormEventHandler<SVGSVGElement>` | - | |
|
|
404
|
+
| onSubmitCapture | `FormEventHandler<SVGSVGElement>` | - | |
|
|
405
|
+
| onInvalid | `FormEventHandler<SVGSVGElement>` | - | |
|
|
406
|
+
| onInvalidCapture | `FormEventHandler<SVGSVGElement>` | - | |
|
|
407
|
+
| onLoad | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
408
|
+
| onLoadCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
409
|
+
| onError | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
410
|
+
| onErrorCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
411
|
+
| onKeyDownCapture | `KeyboardEventHandler<SVGSVGElement>` | - | |
|
|
412
|
+
| onKeyPress | `KeyboardEventHandler<SVGSVGElement>` | - | @deprecated |
|
|
413
|
+
| onKeyPressCapture | `KeyboardEventHandler<SVGSVGElement>` | - | @deprecated |
|
|
414
|
+
| onKeyUp | `KeyboardEventHandler<SVGSVGElement>` | - | |
|
|
415
|
+
| onKeyUpCapture | `KeyboardEventHandler<SVGSVGElement>` | - | |
|
|
416
|
+
| onAbort | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
417
|
+
| onAbortCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
418
|
+
| onCanPlay | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
419
|
+
| onCanPlayCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
420
|
+
| onCanPlayThrough | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
421
|
+
| onCanPlayThroughCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
422
|
+
| onDurationChange | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
423
|
+
| onDurationChangeCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
424
|
+
| onEmptied | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
425
|
+
| onEmptiedCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
426
|
+
| onEncrypted | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
427
|
+
| onEncryptedCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
428
|
+
| onEnded | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
429
|
+
| onEndedCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
430
|
+
| onLoadedData | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
431
|
+
| onLoadedDataCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
432
|
+
| onLoadedMetadata | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
433
|
+
| onLoadedMetadataCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
434
|
+
| onLoadStart | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
435
|
+
| onLoadStartCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
436
|
+
| onPause | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
437
|
+
| onPauseCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
438
|
+
| onPlay | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
439
|
+
| onPlayCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
440
|
+
| onPlaying | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
441
|
+
| onPlayingCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
442
|
+
| onProgress | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
443
|
+
| onProgressCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
444
|
+
| onRateChange | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
445
|
+
| onRateChangeCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
446
|
+
| onResize | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
447
|
+
| onResizeCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
448
|
+
| onSeeked | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
449
|
+
| onSeekedCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
450
|
+
| onSeeking | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
451
|
+
| onSeekingCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
452
|
+
| onStalled | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
453
|
+
| onStalledCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
454
|
+
| onSuspend | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
455
|
+
| onSuspendCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
456
|
+
| onTimeUpdate | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
457
|
+
| onTimeUpdateCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
458
|
+
| onVolumeChange | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
459
|
+
| onVolumeChangeCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
460
|
+
| onWaiting | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
461
|
+
| onWaitingCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
462
|
+
| onAuxClick | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
463
|
+
| onAuxClickCapture | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
464
|
+
| onClickCapture | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
465
|
+
| onContextMenu | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
466
|
+
| onContextMenuCapture | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
467
|
+
| onDoubleClick | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
468
|
+
| onDoubleClickCapture | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
469
|
+
| onDrag | `DragEventHandler<SVGSVGElement>` | - | |
|
|
470
|
+
| onDragCapture | `DragEventHandler<SVGSVGElement>` | - | |
|
|
471
|
+
| onDragEnd | `DragEventHandler<SVGSVGElement>` | - | |
|
|
472
|
+
| onDragEndCapture | `DragEventHandler<SVGSVGElement>` | - | |
|
|
473
|
+
| onDragEnter | `DragEventHandler<SVGSVGElement>` | - | |
|
|
474
|
+
| onDragEnterCapture | `DragEventHandler<SVGSVGElement>` | - | |
|
|
475
|
+
| onDragExit | `DragEventHandler<SVGSVGElement>` | - | |
|
|
476
|
+
| onDragExitCapture | `DragEventHandler<SVGSVGElement>` | - | |
|
|
477
|
+
| onDragLeave | `DragEventHandler<SVGSVGElement>` | - | |
|
|
478
|
+
| onDragLeaveCapture | `DragEventHandler<SVGSVGElement>` | - | |
|
|
479
|
+
| onDragOver | `DragEventHandler<SVGSVGElement>` | - | |
|
|
480
|
+
| onDragOverCapture | `DragEventHandler<SVGSVGElement>` | - | |
|
|
481
|
+
| onDragStart | `DragEventHandler<SVGSVGElement>` | - | |
|
|
482
|
+
| onDragStartCapture | `DragEventHandler<SVGSVGElement>` | - | |
|
|
483
|
+
| onDrop | `DragEventHandler<SVGSVGElement>` | - | |
|
|
484
|
+
| onDropCapture | `DragEventHandler<SVGSVGElement>` | - | |
|
|
485
|
+
| onMouseDown | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
486
|
+
| onMouseDownCapture | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
487
|
+
| onMouseEnter | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
488
|
+
| onMouseLeave | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
489
|
+
| onMouseMove | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
490
|
+
| onMouseMoveCapture | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
491
|
+
| onMouseOut | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
492
|
+
| onMouseOutCapture | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
493
|
+
| onMouseOver | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
494
|
+
| onMouseOverCapture | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
495
|
+
| onMouseUp | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
496
|
+
| onMouseUpCapture | `MouseEventHandler<SVGSVGElement>` | - | |
|
|
497
|
+
| onSelect | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
498
|
+
| onSelectCapture | `ReactEventHandler<SVGSVGElement>` | - | |
|
|
499
|
+
| onTouchCancel | `TouchEventHandler<SVGSVGElement>` | - | |
|
|
500
|
+
| onTouchCancelCapture | `TouchEventHandler<SVGSVGElement>` | - | |
|
|
501
|
+
| onTouchEnd | `TouchEventHandler<SVGSVGElement>` | - | |
|
|
502
|
+
| onTouchEndCapture | `TouchEventHandler<SVGSVGElement>` | - | |
|
|
503
|
+
| onTouchMove | `TouchEventHandler<SVGSVGElement>` | - | |
|
|
504
|
+
| onTouchMoveCapture | `TouchEventHandler<SVGSVGElement>` | - | |
|
|
505
|
+
| onTouchStart | `TouchEventHandler<SVGSVGElement>` | - | |
|
|
506
|
+
| onTouchStartCapture | `TouchEventHandler<SVGSVGElement>` | - | |
|
|
507
|
+
| onPointerDown | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
508
|
+
| onPointerDownCapture | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
509
|
+
| onPointerMove | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
510
|
+
| onPointerMoveCapture | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
511
|
+
| onPointerUp | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
512
|
+
| onPointerUpCapture | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
513
|
+
| onPointerCancel | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
514
|
+
| onPointerCancelCapture | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
515
|
+
| onPointerEnter | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
516
|
+
| onPointerLeave | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
517
|
+
| onPointerOver | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
518
|
+
| onPointerOverCapture | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
519
|
+
| onPointerOut | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
520
|
+
| onPointerOutCapture | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
521
|
+
| onGotPointerCapture | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
522
|
+
| onGotPointerCaptureCapture | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
523
|
+
| onLostPointerCapture | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
524
|
+
| onLostPointerCaptureCapture | `PointerEventHandler<SVGSVGElement>` | - | |
|
|
525
|
+
| onScroll | `UIEventHandler<SVGSVGElement>` | - | |
|
|
526
|
+
| onScrollCapture | `UIEventHandler<SVGSVGElement>` | - | |
|
|
527
|
+
| onWheel | `WheelEventHandler<SVGSVGElement>` | - | |
|
|
528
|
+
| onWheelCapture | `WheelEventHandler<SVGSVGElement>` | - | |
|
|
529
|
+
| onAnimationStart | `AnimationEventHandler<SVGSVGElement>` | - | |
|
|
530
|
+
| onAnimationStartCapture | `AnimationEventHandler<SVGSVGElement>` | - | |
|
|
531
|
+
| onAnimationEnd | `AnimationEventHandler<SVGSVGElement>` | - | |
|
|
532
|
+
| onAnimationEndCapture | `AnimationEventHandler<SVGSVGElement>` | - | |
|
|
533
|
+
| onAnimationIteration | `AnimationEventHandler<SVGSVGElement>` | - | |
|
|
534
|
+
| onAnimationIterationCapture | `AnimationEventHandler<SVGSVGElement>` | - | |
|
|
535
|
+
| onTransitionEnd | `TransitionEventHandler<SVGSVGElement>` | - | |
|
|
536
|
+
| onTransitionEndCapture | `TransitionEventHandler<SVGSVGElement>` | - | |
|
|
537
|
+
| ref | `LegacyRef<SVGSVGElement>` | - | Allows getting a ref to the component instance. Once the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs} |
|
|
538
|
+
## RecommendPanel
|
|
539
|
+
### Props
|
|
540
|
+
| name | type | default value | description |
|
|
541
|
+
|------|------|---------------|-------------|
|
|
542
|
+
| chips* | `ChipProps[]` | - | |
|
|
543
|
+
| size | enum Size: `"s"`, `"m"` | s | |
|
|
544
|
+
| type | enum ChipType: `"default"`, `"outline"` | default | |
|
|
545
|
+
| layoutType | enum LayoutType: `"mobile"`, `"tablet"`, `"desktop"`, `"desktopSmall"` | - | |
|
|
546
|
+
| onCloseClick | `() => void` | - | |
|
|
547
|
+
| onCloseChipLabel | `ReactNode` | - | |
|
|
548
|
+
| tooltip | `ReactNode` | - | |
|
|
549
|
+
| onClaudiaClick | `() => void` | - | |
|
|
550
|
+
## SshField
|
|
551
|
+
### Props
|
|
552
|
+
| name | type | default value | description |
|
|
553
|
+
|------|------|---------------|-------------|
|
|
554
|
+
| layoutType* | enum LayoutType: `"mobile"`, `"tablet"`, `"desktop"`, `"desktopSmall"` | - | |
|
|
555
|
+
| onSubmit* | `(value: string) => void` | - | Колбек действия при отправке |
|
|
556
|
+
| className | `string` | - | CSS-класс |
|
|
557
|
+
| disabled | `boolean` | - | Является ли поле деактивированным |
|
|
558
|
+
| onKeyDown | `KeyboardEventHandler<HTMLTextAreaElement>` | - | Колбек нажатия клавиши клавиатуры |
|
|
559
|
+
| onFocus | `FocusEventHandler<HTMLTextAreaElement>` | - | Колбек получения фокуса |
|
|
560
|
+
| onBlur | `FocusEventHandler<HTMLTextAreaElement>` | - | Колбек потери фокуса |
|
|
561
|
+
| id | `string` | - | HTML-аттрибут id |
|
|
562
|
+
| name | `string` | - | HTML-аттрибут name |
|
|
563
|
+
| onChange | `(value: string, e?: ChangeEvent<HTMLTextAreaElement>) => void` | - | Колбек смены значения |
|
|
564
|
+
| value | `string` | - | HTML-аттрибут value |
|
|
565
|
+
| maxLength | `number` | - | Максимальное кол-во символов |
|
|
566
|
+
| readonly | `boolean` | - | Является ли поле доступным только на чтение |
|
|
567
|
+
| autoFocus | `boolean` | - | Включен ли авто-фокус |
|
|
568
|
+
| inputMode | enum InputMode: `"none"`, `"text"`, `"search"`, `"decimal"`, `"numeric"`, `"tel"`, `"email"`, `"url"` | - | Режим работы экранной клавиатуры |
|
|
569
|
+
| caption | `string` | - | Подпись справа от лейбла |
|
|
570
|
+
| hint | `string` | - | Подсказка внизу |
|
|
571
|
+
| validationState | enum ValidationState: `"default"`, `"error"`, `"warning"`, `"success"` | - | Состояние валидации |
|
|
572
|
+
| showHintIcon | `boolean` | - | Отображать иконку подсказки |
|
|
573
|
+
| labelTooltipPlacement | enum Placement: `"left"`, `"left-start"`, `"left-end"`, `"right"`, `"right-start"`, `"right-end"`, `"top"`, `"top-start"`, `"top-end"`, `"bottom"`, `"bottom-start"`, `"bottom-end"` | top | Расположение подсказки лейбла |
|
|
574
|
+
| error | `string` | - | |
|
|
575
|
+
| minRows | `number` | 3 | Минимальное кол-во строк, до которого размер поля может быть увеличен |
|
|
576
|
+
| maxRows | `number` | 1000 | Максимальное кол-во строк, до которого размер поля может быть увеличен |
|
|
577
|
+
| resizable | `boolean` | - | Может ли ли пользователь изменять размеры поля (если св-во не включено, поле автоматически меняет свой размер) |
|
|
578
|
+
| showCopyButton | `boolean` | - | Отображение кнопки Копировать для поля (актуально только для `readonly = true`) |
|
|
579
|
+
| onCopyButtonClick | `() => void` | - | Колбек клика по кнопке Копировать для поля |
|
|
580
|
+
| showClearButton | `boolean` | true | Отображение кнопки очистки поля |
|
|
581
|
+
| allowMoreThanMaxLength | `boolean` | - | Можно ли вводить больше разрешённого кол-ва символов |
|
|
582
|
+
| ref | `LegacyRef<HTMLTextAreaElement>` | - | Allows getting a ref to the component instance. Once the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref). @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs} |
|
|
583
|
+
| key | `Key` | - | |
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
[//]: DOCUMENTATION_SECTION_END
|
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cloud-ru/uikit-product-claudia",
|
|
3
|
+
"title": "Claudia",
|
|
4
|
+
"version": "1.6.2",
|
|
5
|
+
"sideEffects": [
|
|
6
|
+
"*.css",
|
|
7
|
+
"*.woff",
|
|
8
|
+
"*.woff2"
|
|
9
|
+
],
|
|
10
|
+
"description": "",
|
|
11
|
+
"types": "./dist/esm/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
"import": "./dist/esm/index.js",
|
|
14
|
+
"require": "./dist/cjs/index.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist/esm",
|
|
18
|
+
"dist/cjs",
|
|
19
|
+
"src",
|
|
20
|
+
"./CHANGELOG.md",
|
|
21
|
+
"./LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"homepage": "https://gitverse.ru/cloud-ru-tech/uikit-product/-/tree/master/packages/claudia",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://gitverse.ru/cloud-ru-tech/uikit-product.git",
|
|
27
|
+
"directory": "packages/claudia"
|
|
28
|
+
},
|
|
29
|
+
"author": {
|
|
30
|
+
"name": "Akhremenko Grigorii",
|
|
31
|
+
"url": "https://github.com/AGrigorii"
|
|
32
|
+
},
|
|
33
|
+
"license": "Apache-2.0",
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@cloud-ru/uikit-product-icons": "15.1.1",
|
|
40
|
+
"@cloud-ru/uikit-product-mobile-dropdown": "0.9.21",
|
|
41
|
+
"@cloud-ru/uikit-product-mobile-fields": "0.11.24",
|
|
42
|
+
"@cloud-ru/uikit-product-utils": "7.0.0",
|
|
43
|
+
"@snack-uikit/button": "0.19.16",
|
|
44
|
+
"@snack-uikit/drop-zone": "0.9.6",
|
|
45
|
+
"@snack-uikit/dropdown": "0.5.3",
|
|
46
|
+
"@snack-uikit/input-private": "4.8.3",
|
|
47
|
+
"@snack-uikit/loaders": "0.9.9",
|
|
48
|
+
"@snack-uikit/scroll": "0.10.5",
|
|
49
|
+
"@snack-uikit/tooltip": "0.18.5",
|
|
50
|
+
"@snack-uikit/truncate-string": "0.7.2",
|
|
51
|
+
"@snack-uikit/typography": "0.8.11",
|
|
52
|
+
"@snack-uikit/utils": "4.0.0",
|
|
53
|
+
"classnames": "2.5.1",
|
|
54
|
+
"react-textarea-autosize": "8.5.9"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"@cloud-ru/uikit-product-locale": "*"
|
|
58
|
+
},
|
|
59
|
+
"gitHead": "e8bd79bc92b26a8f52611972eec98a867536ccd3"
|
|
60
|
+
}
|