@longline/aqua-ui 1.0.18 → 1.0.20
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/controls/Fab/Fab.d.ts +1 -1
- package/controls/Icon/Icon.d.ts +1 -1
- package/controls/PrimaryButton/PrimaryButton.d.ts +1 -1
- package/controls/SecondaryButton/SecondaryButton.d.ts +1 -1
- package/package.json +1 -1
- package/services/Dialog/Dialog.d.ts +6 -8
- package/services/Dialog/Dialog.js +20 -6
- package/services/Dialog/DialogFooter.js +1 -1
- package/services/Dialog/DialogWindow.d.ts +4 -0
- package/services/Dialog/DialogWindow.js +3 -3
- package/svg/editor/index.d.ts +8 -8
- package/svg/editor/index.js +8 -8
- package/svg/file/index.d.ts +3 -3
- package/svg/file/index.js +3 -3
- package/svg/icons/index.d.ts +34 -34
- package/svg/icons/index.js +34 -34
- package/svg/menu/index.d.ts +6 -6
- package/svg/menu/index.js +6 -6
- package/svg/other/index.d.ts +1 -1
- package/svg/other/index.js +1 -1
- /package/{spritemap.svg → aquaui-sprites.svg} +0 -0
package/controls/Fab/Fab.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ interface IProps {
|
|
|
7
7
|
*/
|
|
8
8
|
children?: React.ReactNode;
|
|
9
9
|
/**
|
|
10
|
-
* Path to an SVG symbol, e.g. `/sprites.svg#close`. The `SVG` enumeration
|
|
10
|
+
* Path to an SVG symbol, e.g. `/aquaui-sprites.svg#close`. The `SVG` enumeration
|
|
11
11
|
* exists that offers preset paths.
|
|
12
12
|
*/
|
|
13
13
|
icon: string;
|
package/controls/Icon/Icon.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ interface IProps {
|
|
|
33
33
|
*/
|
|
34
34
|
title?: string;
|
|
35
35
|
/**
|
|
36
|
-
* Path to an SVG symbol, e.g. `/sprites.svg#close`. The `SVG` enumeration
|
|
36
|
+
* Path to an SVG symbol, e.g. `/aquaui-sprites.svg#close`. The `SVG` enumeration
|
|
37
37
|
* exists that offers preset paths.
|
|
38
38
|
*/
|
|
39
39
|
icon?: string;
|
|
@@ -8,7 +8,7 @@ interface IProps {
|
|
|
8
8
|
*/
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
/**
|
|
11
|
-
* Path to an SVG symbol, e.g. `/sprites.svg#close`. The `SVG` enumeration
|
|
11
|
+
* Path to an SVG symbol, e.g. `/aquaui-sprites.svg#close`. The `SVG` enumeration
|
|
12
12
|
* exists that offers preset paths.
|
|
13
13
|
*/
|
|
14
14
|
icon: string;
|
package/package.json
CHANGED
|
@@ -24,6 +24,11 @@ interface IProps {
|
|
|
24
24
|
* @default true
|
|
25
25
|
*/
|
|
26
26
|
canClose?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* If true, inverteds Dialog colors.
|
|
29
|
+
* @default false
|
|
30
|
+
*/
|
|
31
|
+
inverted?: boolean;
|
|
27
32
|
/**
|
|
28
33
|
* This optional callback is called when the user closes the Dialog
|
|
29
34
|
* window.
|
|
@@ -31,15 +36,8 @@ interface IProps {
|
|
|
31
36
|
*/
|
|
32
37
|
onClose?: () => void;
|
|
33
38
|
}
|
|
34
|
-
/**
|
|
35
|
-
* A Dialog is an overlay window that is shown when the Dialog’s `open`
|
|
36
|
-
* attribute is set to `true`. The calling code is responsible for setting
|
|
37
|
-
* `open` to false when the Dialog should close. The Dialog also calls
|
|
38
|
-
* `onClose` when the user clicks outside the Dialog (`canClose` can be set
|
|
39
|
-
* to prevent this behavior).
|
|
40
|
-
*/
|
|
41
39
|
declare const Dialog: {
|
|
42
|
-
({ open, canClose, width, ...props }: IProps): React.JSX.Element;
|
|
40
|
+
({ open, canClose, width, inverted, ...props }: IProps): React.JSX.Element;
|
|
43
41
|
/**
|
|
44
42
|
* Dialog.Header contains dialog header content.
|
|
45
43
|
*/
|
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
1
12
|
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
13
|
var t = {};
|
|
3
14
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -27,8 +38,7 @@ import { XhrDialog } from './XhrDialog';
|
|
|
27
38
|
* `onClose` when the user clicks outside the Dialog (`canClose` can be set
|
|
28
39
|
* to prevent this behavior).
|
|
29
40
|
*/
|
|
30
|
-
var
|
|
31
|
-
var _b = _a.open, open = _b === void 0 ? false : _b, _c = _a.canClose, canClose = _c === void 0 ? true : _c, _d = _a.width, width = _d === void 0 ? 600 : _d, props = __rest(_a, ["open", "canClose", "width"]);
|
|
41
|
+
var DialogBase = function (props) {
|
|
32
42
|
var windowRef = React.useRef(null);
|
|
33
43
|
// Listen for document-wide mousedown event when component mounts.
|
|
34
44
|
React.useEffect(function () {
|
|
@@ -43,7 +53,7 @@ var Dialog = function (_a) {
|
|
|
43
53
|
// prop is not set to false.
|
|
44
54
|
var handleClickOutside = function (event) {
|
|
45
55
|
var elem = event.target;
|
|
46
|
-
if (windowRef.current && !windowRef.current.contains(elem) && props.onClose && canClose !== false) {
|
|
56
|
+
if (windowRef.current && !windowRef.current.contains(elem) && props.onClose && props.canClose !== false) {
|
|
47
57
|
props.onClose();
|
|
48
58
|
}
|
|
49
59
|
};
|
|
@@ -55,10 +65,14 @@ var Dialog = function (_a) {
|
|
|
55
65
|
// and
|
|
56
66
|
// https://veerasundar.com/blog/2018/12/how-to-animate-page-transition-in-react-using-styled-components/
|
|
57
67
|
return (React.createElement(React.Fragment, null,
|
|
58
|
-
React.createElement(CSSTransition, { in: open, timeout: 300, unmountOnExit: true, classNames: "fade" },
|
|
68
|
+
React.createElement(CSSTransition, { in: props.open, timeout: 300, unmountOnExit: true, classNames: "fade" },
|
|
59
69
|
React.createElement(DialogBackground, null)),
|
|
60
|
-
React.createElement(CSSTransition, { in: open, timeout: 300, unmountOnExit: true, classNames: "fade" },
|
|
61
|
-
React.createElement(DialogWindow, { width: width, ref: windowRef }, props.children))));
|
|
70
|
+
React.createElement(CSSTransition, { in: props.open, timeout: 300, unmountOnExit: true, classNames: "fade" },
|
|
71
|
+
React.createElement(DialogWindow, { inverted: props.inverted, width: props.width, ref: windowRef }, props.children))));
|
|
72
|
+
};
|
|
73
|
+
var Dialog = function (_a) {
|
|
74
|
+
var _b = _a.open, open = _b === void 0 ? false : _b, _c = _a.canClose, canClose = _c === void 0 ? true : _c, _d = _a.width, width = _d === void 0 ? 600 : _d, _e = _a.inverted, inverted = _e === void 0 ? false : _e, props = __rest(_a, ["open", "canClose", "width", "inverted"]);
|
|
75
|
+
return React.createElement(DialogBase, __assign({ open: open, canClose: canClose, width: width, inverted: inverted }, props));
|
|
62
76
|
};
|
|
63
77
|
/**
|
|
64
78
|
* Dialog.Header contains dialog header content.
|
|
@@ -27,7 +27,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
27
27
|
import * as React from 'react';
|
|
28
28
|
import styled from 'styled-components';
|
|
29
29
|
var DialogFooterBase = function (props) {
|
|
30
|
-
return React.createElement("div", { className: props.className }, props.children);
|
|
30
|
+
return React.createElement("div", { className: "".concat(props.className, " footer") }, props.children);
|
|
31
31
|
};
|
|
32
32
|
var DialogFooterStyled = styled(DialogFooterBase)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n flex-direction: row;\n align-items: center;\n gap: 16px;\n justify-content: ", ";\n padding: 0 20px 0 20px;\n height: 80px;\n background-color: ", ";\n border-bottom-left-radius: ", "px;\n border-bottom-right-radius: ", "px;\n"], ["\n display: flex;\n flex-direction: row;\n align-items: center;\n gap: 16px;\n justify-content: ", ";\n padding: 0 20px 0 20px;\n height: 80px;\n background-color: ", ";\n border-bottom-left-radius: ", "px;\n border-bottom-right-radius: ", "px;\n"
|
|
33
33
|
/**
|
|
@@ -6,6 +6,10 @@ interface IProps {
|
|
|
6
6
|
children?: React.ReactNode;
|
|
7
7
|
windowRef?: any;
|
|
8
8
|
width?: number;
|
|
9
|
+
/**
|
|
10
|
+
* Are Dialog colors inverted?
|
|
11
|
+
*/
|
|
12
|
+
inverted?: boolean;
|
|
9
13
|
}
|
|
10
14
|
declare const DialogWindow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<Omit<IProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
11
15
|
ref?: React.Ref<HTMLDivElement>;
|
|
@@ -3,10 +3,10 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
|
|
|
3
3
|
return cooked;
|
|
4
4
|
};
|
|
5
5
|
import * as React from 'react';
|
|
6
|
-
import styled from 'styled-components';
|
|
6
|
+
import styled, { css } from 'styled-components';
|
|
7
7
|
var DialogWindowBase = React.forwardRef(function (props, ref) {
|
|
8
8
|
return React.createElement("div", { className: props.className, ref: ref }, props.children);
|
|
9
9
|
});
|
|
10
|
-
var DialogWindow = styled(DialogWindowBase)(
|
|
10
|
+
var DialogWindow = styled(DialogWindowBase)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n position: fixed;\n z-index: 3000;\n left: 50%;\n top: 50%;\n transform-origin: center center;\n transform: translateX(-50%) translateY(-50%);\n border-radius: ", "px;\n background-color: ", ";\n box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);\n\n ", "\n\n // Font:\n font: ", ";\n color: ", "; \n\n /* Dialog window width:\n * Narrower on small screen. */\n width: ", "px;\n @media (max-width: ", "px) {\n width: ", "px;\n }\n\n /* CSSTransition classes: */\n &.fade-enter {\n opacity: 0;\n transform: translateX(-50%) translateY(-50%) scale(0.8);\n }\n &.fade-enter-active {\n opacity: 1;\n transform: translateX(-50%) translateY(-50%);\n transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.17,.89,.35,1.67);\n }\n &.fade-exit {\n opacity: 1;\n }\n &.fade-exit-active {\n opacity: 0;\n transform: translateX(-50%) translateY(-50%) scale(0.8);\n transition: opacity 0.3s ease, transform 0.3s ease;\n }\n"], ["\n position: fixed;\n z-index: 3000;\n left: 50%;\n top: 50%;\n transform-origin: center center;\n transform: translateX(-50%) translateY(-50%);\n border-radius: ", "px;\n background-color: ", ";\n box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);\n\n ", "\n\n // Font:\n font: ", ";\n color: ", "; \n\n /* Dialog window width:\n * Narrower on small screen. */\n width: ", "px;\n @media (max-width: ", "px) {\n width: ", "px;\n }\n\n /* CSSTransition classes: */\n &.fade-enter {\n opacity: 0;\n transform: translateX(-50%) translateY(-50%) scale(0.8);\n }\n &.fade-enter-active {\n opacity: 1;\n transform: translateX(-50%) translateY(-50%);\n transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.17,.89,.35,1.67);\n }\n &.fade-exit {\n opacity: 1;\n }\n &.fade-exit-active {\n opacity: 0;\n transform: translateX(-50%) translateY(-50%) scale(0.8);\n transition: opacity 0.3s ease, transform 0.3s ease;\n }\n"])), function (p) { return p.theme.radius.normal; }, function (p) { return p.inverted ? p.theme.colors.primary[4] : p.theme.colors.neutral[100]; }, function (p) { return p.inverted && css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n .footer {\n background: ", ";\n } \n "], ["\n .footer {\n background: ", ";\n } \n "])), function (p) { return p.theme.colors.primary[5]; }); }, function (p) { return p.theme.font.bodyLarge; }, function (p) { return p.inverted ? p.theme.colors.neutral[100] : p.theme.colors.neutral[10]; }, function (p) { return p.width ? p.width : 600; }, function (p) { return p.theme.screen.small; }, function (p) { return p.width ? (p.width > 400 ? 400 : p.width) : 400; });
|
|
11
11
|
export { DialogWindow };
|
|
12
|
-
var templateObject_1;
|
|
12
|
+
var templateObject_1, templateObject_2;
|
package/svg/editor/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare enum Editor {
|
|
2
|
-
Bold = "/sprites.svg#editor-bold",
|
|
3
|
-
Code = "/sprites.svg#editor-code",
|
|
4
|
-
CodeBlock = "/sprites.svg#editor-code-block",
|
|
5
|
-
Italic = "/sprites.svg#editor-italic",
|
|
6
|
-
Link = "/sprites.svg#editor-link",
|
|
7
|
-
OrderedList = "/sprites.svg#editor-ordered-list",
|
|
8
|
-
Strikethrough = "/sprites.svg#editor-strikethrough",
|
|
9
|
-
BulletList = "/sprites.svg#editor-bullet-list"
|
|
2
|
+
Bold = "/aquaui-sprites.svg#editor-bold",
|
|
3
|
+
Code = "/aquaui-sprites.svg#editor-code",
|
|
4
|
+
CodeBlock = "/aquaui-sprites.svg#editor-code-block",
|
|
5
|
+
Italic = "/aquaui-sprites.svg#editor-italic",
|
|
6
|
+
Link = "/aquaui-sprites.svg#editor-link",
|
|
7
|
+
OrderedList = "/aquaui-sprites.svg#editor-ordered-list",
|
|
8
|
+
Strikethrough = "/aquaui-sprites.svg#editor-strikethrough",
|
|
9
|
+
BulletList = "/aquaui-sprites.svg#editor-bullet-list"
|
|
10
10
|
}
|
package/svg/editor/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export var Editor;
|
|
2
2
|
(function (Editor) {
|
|
3
|
-
Editor["Bold"] = "/sprites.svg#editor-bold";
|
|
4
|
-
Editor["Code"] = "/sprites.svg#editor-code";
|
|
5
|
-
Editor["CodeBlock"] = "/sprites.svg#editor-code-block";
|
|
6
|
-
Editor["Italic"] = "/sprites.svg#editor-italic";
|
|
7
|
-
Editor["Link"] = "/sprites.svg#editor-link";
|
|
8
|
-
Editor["OrderedList"] = "/sprites.svg#editor-ordered-list";
|
|
9
|
-
Editor["Strikethrough"] = "/sprites.svg#editor-strikethrough";
|
|
10
|
-
Editor["BulletList"] = "/sprites.svg#editor-bullet-list";
|
|
3
|
+
Editor["Bold"] = "/aquaui-sprites.svg#editor-bold";
|
|
4
|
+
Editor["Code"] = "/aquaui-sprites.svg#editor-code";
|
|
5
|
+
Editor["CodeBlock"] = "/aquaui-sprites.svg#editor-code-block";
|
|
6
|
+
Editor["Italic"] = "/aquaui-sprites.svg#editor-italic";
|
|
7
|
+
Editor["Link"] = "/aquaui-sprites.svg#editor-link";
|
|
8
|
+
Editor["OrderedList"] = "/aquaui-sprites.svg#editor-ordered-list";
|
|
9
|
+
Editor["Strikethrough"] = "/aquaui-sprites.svg#editor-strikethrough";
|
|
10
|
+
Editor["BulletList"] = "/aquaui-sprites.svg#editor-bullet-list";
|
|
11
11
|
})(Editor || (Editor = {}));
|
package/svg/file/index.d.ts
CHANGED
package/svg/file/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export var File;
|
|
2
2
|
(function (File) {
|
|
3
|
-
File["Csv"] = "/sprites.svg#file-csv";
|
|
4
|
-
File["Excel"] = "/sprites.svg#file-excel";
|
|
5
|
-
File["Pdf"] = "/sprites.svg#file-pdf";
|
|
3
|
+
File["Csv"] = "/aquaui-sprites.svg#file-csv";
|
|
4
|
+
File["Excel"] = "/aquaui-sprites.svg#file-excel";
|
|
5
|
+
File["Pdf"] = "/aquaui-sprites.svg#file-pdf";
|
|
6
6
|
})(File || (File = {}));
|
package/svg/icons/index.d.ts
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
1
|
export declare enum Icons {
|
|
2
|
-
Arrow = "/sprites.svg#icon-arrow",
|
|
3
|
-
Brush = "/sprites.svg#icon-brush",
|
|
4
|
-
Calendar = "/sprites.svg#icon-calendar",
|
|
5
|
-
Caret = "/sprites.svg#icon-caret",
|
|
6
|
-
Check = "/sprites.svg#icon-check",
|
|
7
|
-
Chevron = "/sprites.svg#icon-chevron",
|
|
8
|
-
Circle = "/sprites.svg#icon-circle",
|
|
9
|
-
Cmd = "/sprites.svg#icon-cmd",
|
|
10
|
-
Columns = "/sprites.svg#icon-columns",
|
|
11
|
-
Compass = "/sprites.svg#icon-compass",
|
|
12
|
-
Copy = "/sprites.svg#icon-copy",
|
|
13
|
-
Cross = "/sprites.svg#icon-cross",
|
|
14
|
-
Crosshairs = "/sprites.svg#icon-crosshairs",
|
|
15
|
-
Delete = "/sprites.svg#icon-delete",
|
|
16
|
-
Download = "/sprites.svg#icon-download",
|
|
17
|
-
Edit = "/sprites.svg#icon-edit",
|
|
18
|
-
Expand = "/sprites.svg#icon-expand",
|
|
19
|
-
Export = "/sprites.svg#icon-export",
|
|
20
|
-
Eye = "/sprites.svg#icon-eye",
|
|
21
|
-
Filter = "/sprites.svg#icon-filter",
|
|
22
|
-
Fullscreen = "/sprites.svg#icon-fullscreen",
|
|
23
|
-
Help = "/sprites.svg#icon-help",
|
|
24
|
-
Info = "/sprites.svg#icon-info",
|
|
25
|
-
Language = "/sprites.svg#icon-language",
|
|
26
|
-
Layers = "/sprites.svg#icon-layers",
|
|
27
|
-
Leaf = "/sprites.svg#icon-leaf",
|
|
28
|
-
List = "/sprites.svg#icon-list",
|
|
29
|
-
Locked = "/sprites.svg#icon-locked",
|
|
30
|
-
Minus = "/sprites.svg#icon-minus",
|
|
31
|
-
Plus = "/sprites.svg#icon-plus",
|
|
32
|
-
Reset = "/sprites.svg#icon-reset",
|
|
33
|
-
Search = "/sprites.svg#icon-search",
|
|
34
|
-
Tag = "/sprites.svg#icon-tag",
|
|
35
|
-
Unlocked = "/sprites.svg#icon-unlocked"
|
|
2
|
+
Arrow = "/aquaui-sprites.svg#icon-arrow",
|
|
3
|
+
Brush = "/aquaui-sprites.svg#icon-brush",
|
|
4
|
+
Calendar = "/aquaui-sprites.svg#icon-calendar",
|
|
5
|
+
Caret = "/aquaui-sprites.svg#icon-caret",
|
|
6
|
+
Check = "/aquaui-sprites.svg#icon-check",
|
|
7
|
+
Chevron = "/aquaui-sprites.svg#icon-chevron",
|
|
8
|
+
Circle = "/aquaui-sprites.svg#icon-circle",
|
|
9
|
+
Cmd = "/aquaui-sprites.svg#icon-cmd",
|
|
10
|
+
Columns = "/aquaui-sprites.svg#icon-columns",
|
|
11
|
+
Compass = "/aquaui-sprites.svg#icon-compass",
|
|
12
|
+
Copy = "/aquaui-sprites.svg#icon-copy",
|
|
13
|
+
Cross = "/aquaui-sprites.svg#icon-cross",
|
|
14
|
+
Crosshairs = "/aquaui-sprites.svg#icon-crosshairs",
|
|
15
|
+
Delete = "/aquaui-sprites.svg#icon-delete",
|
|
16
|
+
Download = "/aquaui-sprites.svg#icon-download",
|
|
17
|
+
Edit = "/aquaui-sprites.svg#icon-edit",
|
|
18
|
+
Expand = "/aquaui-sprites.svg#icon-expand",
|
|
19
|
+
Export = "/aquaui-sprites.svg#icon-export",
|
|
20
|
+
Eye = "/aquaui-sprites.svg#icon-eye",
|
|
21
|
+
Filter = "/aquaui-sprites.svg#icon-filter",
|
|
22
|
+
Fullscreen = "/aquaui-sprites.svg#icon-fullscreen",
|
|
23
|
+
Help = "/aquaui-sprites.svg#icon-help",
|
|
24
|
+
Info = "/aquaui-sprites.svg#icon-info",
|
|
25
|
+
Language = "/aquaui-sprites.svg#icon-language",
|
|
26
|
+
Layers = "/aquaui-sprites.svg#icon-layers",
|
|
27
|
+
Leaf = "/aquaui-sprites.svg#icon-leaf",
|
|
28
|
+
List = "/aquaui-sprites.svg#icon-list",
|
|
29
|
+
Locked = "/aquaui-sprites.svg#icon-locked",
|
|
30
|
+
Minus = "/aquaui-sprites.svg#icon-minus",
|
|
31
|
+
Plus = "/aquaui-sprites.svg#icon-plus",
|
|
32
|
+
Reset = "/aquaui-sprites.svg#icon-reset",
|
|
33
|
+
Search = "/aquaui-sprites.svg#icon-search",
|
|
34
|
+
Tag = "/aquaui-sprites.svg#icon-tag",
|
|
35
|
+
Unlocked = "/aquaui-sprites.svg#icon-unlocked"
|
|
36
36
|
}
|
package/svg/icons/index.js
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
export var Icons;
|
|
2
2
|
(function (Icons) {
|
|
3
|
-
Icons["Arrow"] = "/sprites.svg#icon-arrow";
|
|
4
|
-
Icons["Brush"] = "/sprites.svg#icon-brush";
|
|
5
|
-
Icons["Calendar"] = "/sprites.svg#icon-calendar";
|
|
6
|
-
Icons["Caret"] = "/sprites.svg#icon-caret";
|
|
7
|
-
Icons["Check"] = "/sprites.svg#icon-check";
|
|
8
|
-
Icons["Chevron"] = "/sprites.svg#icon-chevron";
|
|
9
|
-
Icons["Circle"] = "/sprites.svg#icon-circle";
|
|
10
|
-
Icons["Cmd"] = "/sprites.svg#icon-cmd";
|
|
11
|
-
Icons["Columns"] = "/sprites.svg#icon-columns";
|
|
12
|
-
Icons["Compass"] = "/sprites.svg#icon-compass";
|
|
13
|
-
Icons["Copy"] = "/sprites.svg#icon-copy";
|
|
14
|
-
Icons["Cross"] = "/sprites.svg#icon-cross";
|
|
15
|
-
Icons["Crosshairs"] = "/sprites.svg#icon-crosshairs";
|
|
16
|
-
Icons["Delete"] = "/sprites.svg#icon-delete";
|
|
17
|
-
Icons["Download"] = "/sprites.svg#icon-download";
|
|
18
|
-
Icons["Edit"] = "/sprites.svg#icon-edit";
|
|
19
|
-
Icons["Expand"] = "/sprites.svg#icon-expand";
|
|
20
|
-
Icons["Export"] = "/sprites.svg#icon-export";
|
|
21
|
-
Icons["Eye"] = "/sprites.svg#icon-eye";
|
|
22
|
-
Icons["Filter"] = "/sprites.svg#icon-filter";
|
|
23
|
-
Icons["Fullscreen"] = "/sprites.svg#icon-fullscreen";
|
|
24
|
-
Icons["Help"] = "/sprites.svg#icon-help";
|
|
25
|
-
Icons["Info"] = "/sprites.svg#icon-info";
|
|
26
|
-
Icons["Language"] = "/sprites.svg#icon-language";
|
|
27
|
-
Icons["Layers"] = "/sprites.svg#icon-layers";
|
|
28
|
-
Icons["Leaf"] = "/sprites.svg#icon-leaf";
|
|
29
|
-
Icons["List"] = "/sprites.svg#icon-list";
|
|
30
|
-
Icons["Locked"] = "/sprites.svg#icon-locked";
|
|
31
|
-
Icons["Minus"] = "/sprites.svg#icon-minus";
|
|
32
|
-
Icons["Plus"] = "/sprites.svg#icon-plus";
|
|
33
|
-
Icons["Reset"] = "/sprites.svg#icon-reset";
|
|
34
|
-
Icons["Search"] = "/sprites.svg#icon-search";
|
|
35
|
-
Icons["Tag"] = "/sprites.svg#icon-tag";
|
|
36
|
-
Icons["Unlocked"] = "/sprites.svg#icon-unlocked";
|
|
3
|
+
Icons["Arrow"] = "/aquaui-sprites.svg#icon-arrow";
|
|
4
|
+
Icons["Brush"] = "/aquaui-sprites.svg#icon-brush";
|
|
5
|
+
Icons["Calendar"] = "/aquaui-sprites.svg#icon-calendar";
|
|
6
|
+
Icons["Caret"] = "/aquaui-sprites.svg#icon-caret";
|
|
7
|
+
Icons["Check"] = "/aquaui-sprites.svg#icon-check";
|
|
8
|
+
Icons["Chevron"] = "/aquaui-sprites.svg#icon-chevron";
|
|
9
|
+
Icons["Circle"] = "/aquaui-sprites.svg#icon-circle";
|
|
10
|
+
Icons["Cmd"] = "/aquaui-sprites.svg#icon-cmd";
|
|
11
|
+
Icons["Columns"] = "/aquaui-sprites.svg#icon-columns";
|
|
12
|
+
Icons["Compass"] = "/aquaui-sprites.svg#icon-compass";
|
|
13
|
+
Icons["Copy"] = "/aquaui-sprites.svg#icon-copy";
|
|
14
|
+
Icons["Cross"] = "/aquaui-sprites.svg#icon-cross";
|
|
15
|
+
Icons["Crosshairs"] = "/aquaui-sprites.svg#icon-crosshairs";
|
|
16
|
+
Icons["Delete"] = "/aquaui-sprites.svg#icon-delete";
|
|
17
|
+
Icons["Download"] = "/aquaui-sprites.svg#icon-download";
|
|
18
|
+
Icons["Edit"] = "/aquaui-sprites.svg#icon-edit";
|
|
19
|
+
Icons["Expand"] = "/aquaui-sprites.svg#icon-expand";
|
|
20
|
+
Icons["Export"] = "/aquaui-sprites.svg#icon-export";
|
|
21
|
+
Icons["Eye"] = "/aquaui-sprites.svg#icon-eye";
|
|
22
|
+
Icons["Filter"] = "/aquaui-sprites.svg#icon-filter";
|
|
23
|
+
Icons["Fullscreen"] = "/aquaui-sprites.svg#icon-fullscreen";
|
|
24
|
+
Icons["Help"] = "/aquaui-sprites.svg#icon-help";
|
|
25
|
+
Icons["Info"] = "/aquaui-sprites.svg#icon-info";
|
|
26
|
+
Icons["Language"] = "/aquaui-sprites.svg#icon-language";
|
|
27
|
+
Icons["Layers"] = "/aquaui-sprites.svg#icon-layers";
|
|
28
|
+
Icons["Leaf"] = "/aquaui-sprites.svg#icon-leaf";
|
|
29
|
+
Icons["List"] = "/aquaui-sprites.svg#icon-list";
|
|
30
|
+
Icons["Locked"] = "/aquaui-sprites.svg#icon-locked";
|
|
31
|
+
Icons["Minus"] = "/aquaui-sprites.svg#icon-minus";
|
|
32
|
+
Icons["Plus"] = "/aquaui-sprites.svg#icon-plus";
|
|
33
|
+
Icons["Reset"] = "/aquaui-sprites.svg#icon-reset";
|
|
34
|
+
Icons["Search"] = "/aquaui-sprites.svg#icon-search";
|
|
35
|
+
Icons["Tag"] = "/aquaui-sprites.svg#icon-tag";
|
|
36
|
+
Icons["Unlocked"] = "/aquaui-sprites.svg#icon-unlocked";
|
|
37
37
|
})(Icons || (Icons = {}));
|
package/svg/menu/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare enum Menu {
|
|
2
|
-
Account = "/sprites.svg#menu-account",
|
|
3
|
-
Company = "/sprites.svg#menu-company",
|
|
4
|
-
Inbox = "/sprites.svg#menu-inbox",
|
|
5
|
-
MapMarker = "/sprites.svg#menu-map-marker",
|
|
6
|
-
Signout = "/sprites.svg#menu-signout",
|
|
7
|
-
Standards = "/sprites.svg#menu-standards"
|
|
2
|
+
Account = "/aquaui-sprites.svg#menu-account",
|
|
3
|
+
Company = "/aquaui-sprites.svg#menu-company",
|
|
4
|
+
Inbox = "/aquaui-sprites.svg#menu-inbox",
|
|
5
|
+
MapMarker = "/aquaui-sprites.svg#menu-map-marker",
|
|
6
|
+
Signout = "/aquaui-sprites.svg#menu-signout",
|
|
7
|
+
Standards = "/aquaui-sprites.svg#menu-standards"
|
|
8
8
|
}
|
package/svg/menu/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export var Menu;
|
|
2
2
|
(function (Menu) {
|
|
3
|
-
Menu["Account"] = "/sprites.svg#menu-account";
|
|
4
|
-
Menu["Company"] = "/sprites.svg#menu-company";
|
|
5
|
-
Menu["Inbox"] = "/sprites.svg#menu-inbox";
|
|
6
|
-
Menu["MapMarker"] = "/sprites.svg#menu-map-marker";
|
|
7
|
-
Menu["Signout"] = "/sprites.svg#menu-signout";
|
|
8
|
-
Menu["Standards"] = "/sprites.svg#menu-standards";
|
|
3
|
+
Menu["Account"] = "/aquaui-sprites.svg#menu-account";
|
|
4
|
+
Menu["Company"] = "/aquaui-sprites.svg#menu-company";
|
|
5
|
+
Menu["Inbox"] = "/aquaui-sprites.svg#menu-inbox";
|
|
6
|
+
Menu["MapMarker"] = "/aquaui-sprites.svg#menu-map-marker";
|
|
7
|
+
Menu["Signout"] = "/aquaui-sprites.svg#menu-signout";
|
|
8
|
+
Menu["Standards"] = "/aquaui-sprites.svg#menu-standards";
|
|
9
9
|
})(Menu || (Menu = {}));
|
package/svg/other/index.d.ts
CHANGED
package/svg/other/index.js
CHANGED
|
File without changes
|