@aveonline/ui-react 2.1.4 → 2.2.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.
Files changed (27) hide show
  1. package/README.md +10 -0
  2. package/dist/index.d.ts +1 -4
  3. package/dist/tailwind.css +1 -1
  4. package/dist/ui/atoms/Icon/IIcon.d.ts +1 -1
  5. package/dist/ui/index.d.ts +1 -4
  6. package/dist/ui/molecules/Dropdowns/DropdownFilter/Command.d.ts +38 -0
  7. package/dist/ui/molecules/Dropdowns/DropdownFilter/DropdownFilter.d.ts +3 -0
  8. package/dist/ui/molecules/Dropdowns/DropdownFilter/IDropdownFilter.d.ts +19 -0
  9. package/dist/ui/molecules/Dropdowns/DropdownFilter/Popover.d.ts +6 -0
  10. package/dist/ui/molecules/Dropdowns/DropdownFilter/index.d.ts +2 -0
  11. package/dist/ui/molecules/Table/ITable.d.ts +15 -6
  12. package/dist/ui/molecules/Table/Table.d.ts +1 -1
  13. package/dist/ui/molecules/Table/atoms/IPagination.d.ts +5 -14
  14. package/dist/ui/molecules/Table/atoms/Pagination.d.ts +1 -2
  15. package/dist/ui/molecules/Table/atoms/Table.d.ts +9 -0
  16. package/dist/ui/molecules/Table/atoms/index.d.ts +1 -0
  17. package/dist/ui-react.mjs +15079 -12059
  18. package/dist/ui-react.umd.js +137 -94
  19. package/package.json +4 -3
  20. package/dist/ui/molecules/Cards/CardSimple/CardSimple.d.ts +0 -3
  21. package/dist/ui/molecules/Cards/CardSimple/ICardSimple.d.ts +0 -13
  22. package/dist/ui/molecules/Cards/CardSimple/index.d.ts +0 -2
  23. package/dist/ui/molecules/Dropdowns/DropdownSearchMultiple/DropdownSearchMultiple.d.ts +0 -3
  24. package/dist/ui/molecules/Dropdowns/DropdownSearchMultiple/IDropdownSearchMultiple.d.ts +0 -12
  25. package/dist/ui/molecules/Dropdowns/DropdownSearchMultiple/index.d.ts +0 -2
  26. package/dist/ui/templates/SecondMain/SecondMain.d.ts +0 -10
  27. package/dist/ui/templates/SecondMain/index.d.ts +0 -1
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.1.4",
5
+ "version": "2.2.1",
6
6
  "types": "./dist/index.d.ts",
7
7
  "files": [
8
8
  "dist"
@@ -55,10 +55,11 @@
55
55
  "dependencies": {
56
56
  "@floating-ui/react-dom-interactions": "0.11.0",
57
57
  "@headlessui/react": "1.7.4",
58
+ "@radix-ui/react-popover": "1.0.6",
58
59
  "@tanstack/match-sorter-utils": "8.7.6",
59
60
  "@tanstack/react-table": "8.9.1",
61
+ "cmdk": "0.2.0",
60
62
  "country-flag-icons": "1.5.5",
61
- "hamburger-react": "2.5.0",
62
63
  "react-currency-input-field": "3.6.9",
63
64
  "react-input-mask": "3.0.0-alpha.2",
64
65
  "react-merge-refs": "2.0.1",
@@ -127,7 +128,7 @@
127
128
  },
128
129
  "packageManager": "npm@9.5.1",
129
130
  "engines": {
130
- "node": ">=16.15.1 <18.0.0 || >=18.11",
131
+ "node": ">=16.15.1",
131
132
  "pnpm": "please-use-npm",
132
133
  "yarn": "please-use-npm",
133
134
  "npm": ">=8.0.0"
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- import { ICardSimple } from './ICardSimple';
3
- export default function CardSimple({ title, description, size, children, button }: ICardSimple): JSX.Element;
@@ -1,13 +0,0 @@
1
- import { IChildren } from '../../../../types';
2
- interface IButtonCardSimple {
3
- title?: string;
4
- action?: () => void;
5
- }
6
- interface ICardSimple extends IChildren {
7
- id: string;
8
- description?: string;
9
- title?: string;
10
- size?: 'sm' | 'md';
11
- button?: IButtonCardSimple;
12
- }
13
- export type { ICardSimple, IButtonCardSimple };
@@ -1,2 +0,0 @@
1
- export { default as CardSimple } from './CardSimple';
2
- export * from './ICardSimple';
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- import { IDropdownSearchMultiple } from './IDropdownSearchMultiple';
3
- export default function DropdownSearchMultiple({ options, title, titleNotFound, onSelected, placement, placeholderSearch }: IDropdownSearchMultiple): JSX.Element;
@@ -1,12 +0,0 @@
1
- export declare type IOptionSelect = {
2
- label: string;
3
- value: string | number;
4
- };
5
- export interface IDropdownSearchMultiple {
6
- title: string;
7
- titleNotFound?: string;
8
- options?: IOptionSelect[] | [];
9
- onSelected?: (state: IOptionSelect[]) => void;
10
- placement?: 'start' | 'end';
11
- placeholderSearch?: string;
12
- }
@@ -1,2 +0,0 @@
1
- export { default as DropdownSearchMultiple } from './DropdownSearchMultiple';
2
- export * from './IDropdownSearchMultiple';
@@ -1,10 +0,0 @@
1
- /// <reference types="react" />
2
- import { ITemplate } from '../../../types';
3
- /**
4
- * Template: Layout main
5
- */
6
- declare function Layout({ children, className, title, ...rest }: ITemplate): JSX.Element;
7
- declare namespace Layout {
8
- var Main: ({ children, className, ...rest }: ITemplate) => JSX.Element;
9
- }
10
- export default Layout;
@@ -1 +0,0 @@
1
- export { default as LayoutSecondMain } from './SecondMain';