@galaxy-ds/core 1.1.58 → 1.1.61
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/dist/Icons/Browse2.d.ts +3 -0
- package/dist/Icons/CoinEuroIcon.d.ts +3 -0
- package/dist/Icons/CoinIcon.d.ts +3 -0
- package/dist/Icons/CoinPoundIcon.d.ts +3 -0
- package/dist/Icons/CurrencyEuroIcon.d.ts +3 -0
- package/dist/Icons/CurrencyIcon.d.ts +3 -0
- package/dist/Icons/CurrencyPoundIcon.d.ts +3 -0
- package/dist/Icons/index.d.ts +32 -0
- package/dist/Menu/Menu.types.d.ts +14 -0
- package/dist/MenuContext/MenuContext.types.d.ts +1 -0
- package/dist/MenuItem/MenuItem.types.d.ts +2 -0
- package/dist/MenuItemSystem/MenuItemSystem.types.d.ts +1 -0
- package/dist/Themes/Core/common.d.ts +2 -0
- package/dist/Themes/Desktop/pallette.d.ts +5 -0
- package/dist/Themes/Web/pallette.d.ts +5 -0
- package/dist/index.esm.js +259 -179
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +259 -179
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/Icons/index.d.ts
CHANGED
|
@@ -6,9 +6,41 @@ export { default as AvatarPersonIcon } from './AvatarPerson';
|
|
|
6
6
|
export { default as AvatarTrustIcon } from './AvatarTrust';
|
|
7
7
|
export { default as ButtonCaretIcon } from './ButtonCaret';
|
|
8
8
|
export { default as BrowseIcon } from "./Browse";
|
|
9
|
+
export { default as Browse2Icon } from "./Browse2";
|
|
9
10
|
export { default as ButtonFilterIcon } from './ButtonFilter';
|
|
10
11
|
export { default as ChevronDownIcon } from './ChevronDown';
|
|
11
12
|
export { default as InsertLinkIcon } from './InsertLink';
|
|
12
13
|
export { default as SearchIcon } from './Search';
|
|
13
14
|
export { default as SelectFilterEmptyIcon } from './SelectFilterEmpty';
|
|
14
15
|
export { default as SelectFilterFilledIcon } from './SelectFilterFilled';
|
|
16
|
+
export { default as CrossIcon16 } from './CrossIcon16';
|
|
17
|
+
export { default as AccessIcon } from './Access';
|
|
18
|
+
export { default as AccountingIcon } from './AccountingIcon';
|
|
19
|
+
export { default as AssignCurvedIcon } from './AssignCurvedIcon';
|
|
20
|
+
export { default as CalendarIcon } from './Calendar';
|
|
21
|
+
export { default as ChevronLeftIcon } from './ChevronLeft';
|
|
22
|
+
export { default as ChevronRightIcon } from './ChevronRight';
|
|
23
|
+
export { default as CrossIcon } from './Cross';
|
|
24
|
+
export { default as EmailSentIconIcon } from './EmailSentIcon';
|
|
25
|
+
export { default as HomeIconIcon } from './HomeIcon';
|
|
26
|
+
export { default as InsertLink } from './InsertLink';
|
|
27
|
+
export { default as MenuIconIcon } from './MenuIcon';
|
|
28
|
+
export { default as MoreVerticalIcon } from './MoreVerticalIcon';
|
|
29
|
+
export { default as NewAppointmentIcon } from './NewAppointment';
|
|
30
|
+
export { default as PreviewIcon } from './Preview';
|
|
31
|
+
export { default as ReportingIcon } from './ReportingIcon';
|
|
32
|
+
export { default as ResponseIcon } from './ResponseIcon';
|
|
33
|
+
export { default as RevokeAccessIcon } from './RevokeAccess';
|
|
34
|
+
export { default as Search } from './Search';
|
|
35
|
+
export { default as SelectFilterEmpty } from './SelectFilterEmpty';
|
|
36
|
+
export { default as SelectFilterFilled } from './SelectFilterFilled';
|
|
37
|
+
export { default as TickIcon } from './Tick';
|
|
38
|
+
export { default as UserLinkIcon } from './UserLink';
|
|
39
|
+
export { default as UserLockIcon } from './UserLock';
|
|
40
|
+
export { default as UsersIcon } from './Users';
|
|
41
|
+
export { default as CoinPoundIcon } from './CoinPoundIcon';
|
|
42
|
+
export { default as CoinIcon } from './CoinIcon';
|
|
43
|
+
export { default as CoinEuroIcon } from './CoinEuroIcon';
|
|
44
|
+
export { default as CurrencyEuroIcon } from './CurrencyEuroIcon';
|
|
45
|
+
export { default as CurrencyPoundIcon } from './CurrencyPoundIcon';
|
|
46
|
+
export { default as CurrencyIcon } from './CurrencyIcon';
|
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
import { MenuProps } from '@material-ui/core';
|
|
2
2
|
export interface CustomMenuProps extends MenuProps {
|
|
3
3
|
children?: any;
|
|
4
|
+
system?: boolean;
|
|
5
|
+
title?: string;
|
|
6
|
+
/**
|
|
7
|
+
* If true, the menu is visible.
|
|
8
|
+
*/
|
|
9
|
+
open: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* A HTML element, or a function that returns it. It's used to set the position of the menu.
|
|
12
|
+
*/
|
|
13
|
+
anchorEl?: any;
|
|
14
|
+
/**
|
|
15
|
+
* Callback fired when the component requests to be closed.
|
|
16
|
+
*/
|
|
17
|
+
onClose?: (event: object, reason: string) => void;
|
|
4
18
|
}
|
|
@@ -17,6 +17,7 @@ export declare const grey: {
|
|
|
17
17
|
50: string;
|
|
18
18
|
};
|
|
19
19
|
export declare const blue: {
|
|
20
|
+
300: string;
|
|
20
21
|
200: string;
|
|
21
22
|
100: string;
|
|
22
23
|
50: string;
|
|
@@ -142,6 +143,7 @@ export declare const brand: {
|
|
|
142
143
|
};
|
|
143
144
|
declare const common: {
|
|
144
145
|
blue: {
|
|
146
|
+
300: string;
|
|
145
147
|
200: string;
|
|
146
148
|
100: string;
|
|
147
149
|
50: string;
|