@aveonline/ui-react 1.17.1 → 1.18.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 +126 -126
- package/dist/components/atoms/Tooltip/TooltipAnchor.d.ts +1 -1
- package/dist/components/atoms/Tooltip/TooltipFloat.d.ts +1 -1
- package/dist/components/index.d.ts +3 -0
- package/dist/components/molecules/Card/Simple/ICardSimple.d.ts +13 -0
- package/dist/components/molecules/Card/Simple/Simple.d.ts +2 -0
- package/dist/components/molecules/Card/Simple/index.d.ts +2 -0
- package/dist/components/molecules/DateInputPicker/Atoms/CustomButton.d.ts +3 -0
- package/dist/components/molecules/DateInputPicker/Atoms/CustomInput.d.ts +3 -0
- package/dist/components/molecules/DateInputPicker/Atoms/CustomRangeInput.d.ts +3 -0
- package/dist/components/molecules/DateInputPicker/Atoms/PluginEspecialDates.d.ts +3 -0
- package/dist/components/molecules/DateInputPicker/DateInputPicker.d.ts +3 -0
- package/dist/components/molecules/DateInputPicker/Datelocate.d.ts +7 -0
- package/dist/components/molecules/DateInputPicker/IDateInputPicker.d.ts +42 -0
- package/dist/components/templates/SecondMain/SecondMain.d.ts +9 -0
- package/dist/components/templates/SecondMain/index.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/reset.css +273 -273
- package/dist/tailwind.config.js +242 -242
- package/dist/tailwind.css +1 -1
- package/dist/tokens.css +160 -160
- package/dist/types/Template.d.ts +2 -2
- package/dist/types/Tokens.d.ts +4 -1
- package/dist/ui-react.mjs +9610 -7506
- package/dist/ui-react.umd.js +42 -34
- package/dist/vite-env.d.ts +2 -2
- package/package.json +110 -108
- package/dist/components/molecules/Selectable/select.d.ts +0 -27
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,108 +1,110 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@aveonline/ui-react",
|
|
3
|
-
"description": "Home base for Aveonline design system - ecosystem react",
|
|
4
|
-
"private": false,
|
|
5
|
-
"version": "1.
|
|
6
|
-
"types": "./dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist"
|
|
9
|
-
],
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"import": "./dist/ui-react.mjs",
|
|
13
|
-
"require": "./dist/ui-react.umd.mjs"
|
|
14
|
-
},
|
|
15
|
-
"./tailwind.css": {
|
|
16
|
-
"import": "./dist/tailwind.css",
|
|
17
|
-
"require": "./dist/tailwind.css"
|
|
18
|
-
},
|
|
19
|
-
"./tokens.css": {
|
|
20
|
-
"import": "./dist/tokens.css",
|
|
21
|
-
"require": "./dist/tokens.css"
|
|
22
|
-
},
|
|
23
|
-
"./tailwind.config.js": {
|
|
24
|
-
"import": "./dist/tailwind.config.js",
|
|
25
|
-
"require": "./dist/tailwind.config.js"
|
|
26
|
-
},
|
|
27
|
-
"./index.css": {
|
|
28
|
-
"import": "./dist/index.css",
|
|
29
|
-
"require": "./dist/index.css"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"keywords": [
|
|
33
|
-
"react",
|
|
34
|
-
"react-kit"
|
|
35
|
-
],
|
|
36
|
-
"license": "MIT",
|
|
37
|
-
"scripts": {
|
|
38
|
-
"dev": "start-storybook -p 6006 --no-manager-cache",
|
|
39
|
-
"build": "vite build && npm run build:tailwind && npm run cp:tailwind-config && npm run cp:tokens",
|
|
40
|
-
"build:storybook": "build-storybook",
|
|
41
|
-
"lint": "eslint --ignore-path .gitignore \"./src/**/*.+(tsx,ts)\" --fix",
|
|
42
|
-
"build:tailwind": "npx tailwindcss -o ./dist/tailwind.css --minify",
|
|
43
|
-
"clean": "rm -rf dist",
|
|
44
|
-
"cp:tailwind-config": "cp tailwind.config.js dist/",
|
|
45
|
-
"cp:tokens": "cp ./src/design-tokens/styles/tokens.css dist/",
|
|
46
|
-
"test": "vitest",
|
|
47
|
-
"coverage": "vitest run --coverage",
|
|
48
|
-
"test:ui": "vitest --ui",
|
|
49
|
-
"chromatic": "npx chromatic --project-token=53dce1ebae91",
|
|
50
|
-
"changelog": "conventional-changelog -i CHANGELOG-current.md -s -r 0"
|
|
51
|
-
},
|
|
52
|
-
"dependencies": {
|
|
53
|
-
"@floating-ui/react-dom-interactions": "0.11.0",
|
|
54
|
-
"@headlessui/react": "1.7.4",
|
|
55
|
-
"@tanstack/match-sorter-utils": "8.7.6",
|
|
56
|
-
"@tanstack/react-table": "8.7.8",
|
|
57
|
-
"country-flag-icons": "1.5.5",
|
|
58
|
-
"react
|
|
59
|
-
"react-input-
|
|
60
|
-
"react-
|
|
61
|
-
"react-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"@storybook/addon-
|
|
67
|
-
"@storybook/addon-
|
|
68
|
-
"@storybook/
|
|
69
|
-
"@storybook/
|
|
70
|
-
"@storybook/
|
|
71
|
-
"@storybook/
|
|
72
|
-
"@
|
|
73
|
-
"@
|
|
74
|
-
"@
|
|
75
|
-
"@
|
|
76
|
-
"@
|
|
77
|
-
"@types/
|
|
78
|
-
"@types/react
|
|
79
|
-
"@types/react-
|
|
80
|
-
"@
|
|
81
|
-
"@
|
|
82
|
-
"@
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"tailwindcss": "
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"vite
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@aveonline/ui-react",
|
|
3
|
+
"description": "Home base for Aveonline design system - ecosystem react",
|
|
4
|
+
"private": false,
|
|
5
|
+
"version": "1.18.1",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/ui-react.mjs",
|
|
13
|
+
"require": "./dist/ui-react.umd.mjs"
|
|
14
|
+
},
|
|
15
|
+
"./tailwind.css": {
|
|
16
|
+
"import": "./dist/tailwind.css",
|
|
17
|
+
"require": "./dist/tailwind.css"
|
|
18
|
+
},
|
|
19
|
+
"./tokens.css": {
|
|
20
|
+
"import": "./dist/tokens.css",
|
|
21
|
+
"require": "./dist/tokens.css"
|
|
22
|
+
},
|
|
23
|
+
"./tailwind.config.js": {
|
|
24
|
+
"import": "./dist/tailwind.config.js",
|
|
25
|
+
"require": "./dist/tailwind.config.js"
|
|
26
|
+
},
|
|
27
|
+
"./index.css": {
|
|
28
|
+
"import": "./dist/index.css",
|
|
29
|
+
"require": "./dist/index.css"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"react",
|
|
34
|
+
"react-kit"
|
|
35
|
+
],
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"scripts": {
|
|
38
|
+
"dev": "start-storybook -p 6006 --no-manager-cache",
|
|
39
|
+
"build": "vite build && npm run build:tailwind && npm run cp:tailwind-config && npm run cp:tokens",
|
|
40
|
+
"build:storybook": "build-storybook",
|
|
41
|
+
"lint": "eslint --ignore-path .gitignore \"./src/**/*.+(tsx,ts)\" --fix",
|
|
42
|
+
"build:tailwind": "npx tailwindcss -o ./dist/tailwind.css --minify",
|
|
43
|
+
"clean": "rm -rf dist",
|
|
44
|
+
"cp:tailwind-config": "cp tailwind.config.js dist/",
|
|
45
|
+
"cp:tokens": "cp ./src/design-tokens/styles/tokens.css dist/",
|
|
46
|
+
"test": "vitest",
|
|
47
|
+
"coverage": "vitest run --coverage",
|
|
48
|
+
"test:ui": "vitest --ui",
|
|
49
|
+
"chromatic": "npx chromatic --project-token=53dce1ebae91",
|
|
50
|
+
"changelog": "conventional-changelog -i CHANGELOG-current.md -s -r 0"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@floating-ui/react-dom-interactions": "0.11.0",
|
|
54
|
+
"@headlessui/react": "1.7.4",
|
|
55
|
+
"@tanstack/match-sorter-utils": "8.7.6",
|
|
56
|
+
"@tanstack/react-table": "8.7.8",
|
|
57
|
+
"country-flag-icons": "1.5.5",
|
|
58
|
+
"hamburger-react": "^2.5.0",
|
|
59
|
+
"react-currency-input-field": "3.6.9",
|
|
60
|
+
"react-input-mask": "^3.0.0-alpha.2",
|
|
61
|
+
"react-merge-refs": "2.0.1",
|
|
62
|
+
"react-multi-date-picker": "^3.3.4",
|
|
63
|
+
"react-select": "5.6.0"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@storybook/addon-a11y": "6.5.13",
|
|
67
|
+
"@storybook/addon-essentials": "6.5.13",
|
|
68
|
+
"@storybook/addon-interactions": "6.5.13",
|
|
69
|
+
"@storybook/addon-links": "6.5.13",
|
|
70
|
+
"@storybook/addons": "6.5.13",
|
|
71
|
+
"@storybook/builder-vite": "0.2.5",
|
|
72
|
+
"@storybook/react": "6.5.13",
|
|
73
|
+
"@storybook/theming": "6.5.13",
|
|
74
|
+
"@tailwindcss/forms": "0.5.3",
|
|
75
|
+
"@testing-library/jest-dom": "5.16.5",
|
|
76
|
+
"@testing-library/react": "13.4.0",
|
|
77
|
+
"@types/node": "16.11.6",
|
|
78
|
+
"@types/react": "18.0.22",
|
|
79
|
+
"@types/react-dom": "18.0.7",
|
|
80
|
+
"@types/react-input-mask": "^3.0.2",
|
|
81
|
+
"@types/react-text-mask": "^5.4.11",
|
|
82
|
+
"@vitejs/plugin-react": "2.2.0",
|
|
83
|
+
"@vitest/coverage-c8": "0.24.5",
|
|
84
|
+
"@vitest/ui": "0.24.5",
|
|
85
|
+
"autoprefixer": "10.4.13",
|
|
86
|
+
"chromatic": "6.11.4",
|
|
87
|
+
"classnames": "2.3.2",
|
|
88
|
+
"conventional-changelog-cli": "2.2.2",
|
|
89
|
+
"cssnano": "5.0.9",
|
|
90
|
+
"jsdom": "20.0.2",
|
|
91
|
+
"postcss": "8.3.11",
|
|
92
|
+
"postcss-import": "15.0.0",
|
|
93
|
+
"prettier-plugin-tailwindcss": "0.1.5",
|
|
94
|
+
"react": "18.2.0",
|
|
95
|
+
"react-dom": "18.2.0",
|
|
96
|
+
"sd-tailwindcss-transformer": "1.2.0",
|
|
97
|
+
"style-dictionary": "3.7.1",
|
|
98
|
+
"tailwindcss": "3.2.4",
|
|
99
|
+
"ts-dedent": "2.2.0",
|
|
100
|
+
"typescript": "4.6.4",
|
|
101
|
+
"vite": "3.2.0",
|
|
102
|
+
"vite-plugin-dts": "1.6.6",
|
|
103
|
+
"vite-plugin-svgr": "2.4.0",
|
|
104
|
+
"vitest": "0.24.4"
|
|
105
|
+
},
|
|
106
|
+
"peerDependencies": {
|
|
107
|
+
"react": "18.2.0",
|
|
108
|
+
"react-dom": "18.2.0"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { GroupBase } from 'react-select'
|
|
2
|
-
import { IOptionSelectButton, ITooltipSelect } from '../..'
|
|
3
|
-
|
|
4
|
-
declare module 'react-select/dist/declarations/src/Select' {
|
|
5
|
-
export interface Props<
|
|
6
|
-
Option,
|
|
7
|
-
IsMulti extends boolean,
|
|
8
|
-
Group extends GroupBase<Option>
|
|
9
|
-
> {
|
|
10
|
-
/**
|
|
11
|
-
* Our prop for control icon tooltip inside component atom Control
|
|
12
|
-
*/
|
|
13
|
-
iconTooltip?: ITooltipSelect
|
|
14
|
-
/**
|
|
15
|
-
* Our prop for control click first element - SelectButton
|
|
16
|
-
*/
|
|
17
|
-
addButton?: ((value: IOptionSelectButton) => void) | undefined
|
|
18
|
-
/**
|
|
19
|
-
* Our prop for verify inside atom SingleValue show ui
|
|
20
|
-
*/
|
|
21
|
-
hasLabelPlaceholder?: boolean
|
|
22
|
-
/**
|
|
23
|
-
* Our prop for verify dropdown indicator - default true
|
|
24
|
-
*/
|
|
25
|
-
isActiveDropdownIndicator?: boolean
|
|
26
|
-
}
|
|
27
|
-
}
|