@aveonline/ui-react 2.7.0 → 2.7.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.
@@ -1,2 +1,2 @@
1
- /// <reference types="vite/client" />
2
- /// <reference types="vite-plugin-svgr/client" />
1
+ /// <reference types="vite/client" />
2
+ /// <reference types="vite-plugin-svgr/client" />
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@aveonline/ui-react",
3
3
  "description": "Home base for Aveonline design system - ecosystem react",
4
4
  "private": false,
5
- "version": "2.7.0",
5
+ "version": "2.7.1",
6
6
  "types": "./dist/index.d.ts",
7
7
  "files": [
8
8
  "dist"
@@ -1,28 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-unused-vars */
2
- import { GroupBase } from 'react-select'
3
- import { IOptionSelectButton, ITooltipSelect } from '../..'
4
-
5
- declare module 'react-select/dist/declarations/src/Select' {
6
- export interface Props<
7
- Option,
8
- IsMulti extends boolean,
9
- Group extends GroupBase<Option>
10
- > {
11
- /**
12
- * Our prop for control icon tooltip inside component atom Control
13
- */
14
- iconTooltip?: ITooltipSelect
15
- /**
16
- * Our prop for control click first element - SelectButton
17
- */
18
- addButton?: ((value: IOptionSelectButton) => void) | undefined
19
- /**
20
- * Our prop for verify inside atom SingleValue show ui
21
- */
22
- hasLabelPlaceholder?: boolean
23
- /**
24
- * Our prop for verify dropdown indicator - default true
25
- */
26
- isActiveDropdownIndicator?: boolean
27
- }
28
- }