@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.
- package/README.md +93 -93
- package/dist/reset.css +273 -273
- package/dist/tailwind.config.js +246 -246
- package/dist/tailwind.css +1 -1
- package/dist/tokens.css +160 -160
- package/dist/ui/molecules/Indicator/TimeLine/atoms/CustomShap.d.ts +7 -0
- package/dist/ui/molecules/Indicator/TimeLine/atoms/constants.d.ts +6 -0
- package/dist/ui-react.mjs +3014 -2950
- package/dist/vite-env.d.ts +2 -2
- package/package.json +1 -1
- package/dist/ui/molecules/Selectable/select.d.ts +0 -28
package/dist/vite-env.d.ts
CHANGED
|
@@ -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
|
@@ -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
|
-
}
|