@longline/aqua-ui 1.0.19 → 1.0.22

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.
@@ -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;
@@ -4,7 +4,7 @@ interface IIconProps {
4
4
  /** @ignore */
5
5
  className?: string;
6
6
  /**
7
- * URL of spritesheet and icon, e.g. 'sprites.svg#arrow'
7
+ * URL of spritesheet and icon, e.g. 'aquaui-sprites.svg#arrow'
8
8
  */
9
9
  url: string;
10
10
  /**
@@ -4,6 +4,10 @@ interface IColumnProps {
4
4
  * Column name, e.g. "Number of Users"
5
5
  */
6
6
  name: string;
7
+ /**
8
+ * Optional label. `name` will be used if not specified.
9
+ */
10
+ label?: React.ReactNode;
7
11
  /**
8
12
  * Column width. If a number, e.g. `1`, then it is the column's weight,
9
13
  * relative to other columns. If it is a string, e.g. `50px`, then it is
@@ -19,9 +19,9 @@ var GhostBase = function (props) {
19
19
  return (React.createElement("div", { className: props.className },
20
20
  React.createElement("div", { className: "mask1" }),
21
21
  React.createElement("div", { className: "mask2" }),
22
- props.onCheck && React.createElement(Cell, { "$dark": props.dark, "$shadow": props.shadow, "$content": false }),
23
- props.columns.filter(function (c) { return c.active; }).map(function (c, idx) { return React.createElement(Cell, { "$dark": props.dark, "$shadow": props.shadow, "$content": true, key: idx }); }),
24
- props.columnsEditable && React.createElement(Cell, { "$dark": props.dark, "$shadow": props.shadow, "$content": false })));
22
+ !props.noheader && props.onCheck && React.createElement(Cell, { "$dark": props.dark, "$shadow": props.shadow, "$content": false }),
23
+ !props.noheader && props.columns.filter(function (c) { return c.active; }).map(function (c, idx) { return React.createElement(Cell, { "$dark": props.dark, "$shadow": props.shadow, "$content": true, key: idx }); }),
24
+ !props.noheader && props.columnsEditable && React.createElement(Cell, { "$dark": props.dark, "$shadow": props.shadow, "$content": false })));
25
25
  };
26
26
  var Pulse = keyframes(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n 0% {\n background-position-x: 0px;\n }\n 100% {\n background-position-x: 250px;\n }\n"], ["\n 0% {\n background-position-x: 0px;\n }\n 100% {\n background-position-x: 250px;\n }\n"])));
27
27
  var Pulse2 = keyframes(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n 0% {\n background-position-x: 125px;\n }\n 50% {\n background-position-x: 250px; \n }\n 50.1% {\n background-position-x: 0px; \n } \n 100% {\n background-position-x: 125px;\n }\n"], ["\n 0% {\n background-position-x: 125px;\n }\n 50% {\n background-position-x: 250px; \n }\n 50.1% {\n background-position-x: 0px; \n } \n 100% {\n background-position-x: 125px;\n }\n"])));
@@ -17,6 +17,7 @@ import * as React from 'react';
17
17
  import styled from 'styled-components';
18
18
  import { SortButton } from './SortButton';
19
19
  var HeaderCellBase = function (props) {
20
+ var _a;
20
21
  var sorted = props.sort == props.column.sort;
21
22
  return (React.createElement("th", {
22
23
  // Sorted column gets .sorted class:
@@ -24,8 +25,8 @@ var HeaderCellBase = function (props) {
24
25
  // Sortable column has pointer cursor:
25
26
  cursor: props.column.sort ? 'pointer' : 'auto'
26
27
  }, onClick: (props.column.sort && props.onSortClick) ? function () { return props.onSortClick(props.column); } : null },
27
- React.createElement("span", null, props.column.name),
28
- React.createElement(SortButton, { dark: props.dark, active: sorted,
28
+ React.createElement("div", { style: { width: '100%' } }, (_a = props.column.label) !== null && _a !== void 0 ? _a : props.column.name),
29
+ props.column.sort && React.createElement(SortButton, { dark: props.dark, active: sorted,
29
30
  // If currently sorted, show sort direction.
30
31
  // If not currently sorted, show default sort direction.
31
32
  reverse: sorted ? props.reverse : props.column.reverse })));
@@ -3,6 +3,11 @@ interface IListViewProps {
3
3
  * Array of data to show in the table
4
4
  */
5
5
  data: any[];
6
+ /**
7
+ * If set, show no header.
8
+ * @default false
9
+ */
10
+ noheader?: boolean;
6
11
  /**
7
12
  * Does this `ListView` use the `dark` style?
8
13
  * @default false
@@ -11,7 +11,7 @@ interface IProps extends IListViewProps {
11
11
  children?: React.ReactElement<IColumnProps> | React.ReactElement<IColumnProps>[];
12
12
  }
13
13
  declare const ListView: {
14
- ({ dark, hover, striped, grid, total, singular, plural, narrow, shadow, ghost, columnsEditable, ...props }: IProps): React.JSX.Element;
14
+ ({ dark, noheader, hover, striped, grid, total, singular, plural, narrow, shadow, ghost, columnsEditable, ...props }: IProps): React.JSX.Element;
15
15
  Column: {
16
16
  (_: IColumnProps): null;
17
17
  displayName: string;
@@ -90,8 +90,8 @@ var ListViewBase = function (props) {
90
90
  };
91
91
  // Wrapper for default values:
92
92
  var ListView = function (_a) {
93
- var _b = _a.dark, dark = _b === void 0 ? false : _b, _c = _a.hover, hover = _c === void 0 ? false : _c, _d = _a.striped, striped = _d === void 0 ? false : _d, _e = _a.grid, grid = _e === void 0 ? false : _e, _f = _a.total, total = _f === void 0 ? false : _f, _g = _a.singular, singular = _g === void 0 ? "record" : _g, _h = _a.plural, plural = _h === void 0 ? "records" : _h, _j = _a.narrow, narrow = _j === void 0 ? false : _j, _k = _a.shadow, shadow = _k === void 0 ? false : _k, _l = _a.ghost, ghost = _l === void 0 ? false : _l, _m = _a.columnsEditable, columnsEditable = _m === void 0 ? false : _m, props = __rest(_a, ["dark", "hover", "striped", "grid", "total", "singular", "plural", "narrow", "shadow", "ghost", "columnsEditable"]);
94
- return React.createElement(ListViewBase, __assign({ dark: dark, hover: hover, striped: striped, grid: grid, total: total, singular: singular, plural: plural, narrow: narrow, shadow: shadow, ghost: ghost, columnsEditable: columnsEditable }, props));
93
+ var _b = _a.dark, dark = _b === void 0 ? false : _b, _c = _a.noheader, noheader = _c === void 0 ? false : _c, _d = _a.hover, hover = _d === void 0 ? false : _d, _e = _a.striped, striped = _e === void 0 ? false : _e, _f = _a.grid, grid = _f === void 0 ? false : _f, _g = _a.total, total = _g === void 0 ? false : _g, _h = _a.singular, singular = _h === void 0 ? "record" : _h, _j = _a.plural, plural = _j === void 0 ? "records" : _j, _k = _a.narrow, narrow = _k === void 0 ? false : _k, _l = _a.shadow, shadow = _l === void 0 ? false : _l, _m = _a.ghost, ghost = _m === void 0 ? false : _m, _o = _a.columnsEditable, columnsEditable = _o === void 0 ? false : _o, props = __rest(_a, ["dark", "noheader", "hover", "striped", "grid", "total", "singular", "plural", "narrow", "shadow", "ghost", "columnsEditable"]);
94
+ return React.createElement(ListViewBase, __assign({ dark: dark, noheader: noheader, hover: hover, striped: striped, grid: grid, total: total, singular: singular, plural: plural, narrow: narrow, shadow: shadow, ghost: ghost, columnsEditable: columnsEditable }, props));
95
95
  };
96
96
  ListView.Column = Column;
97
97
  export { ListView };
@@ -71,7 +71,7 @@ var TableBase = function (_a) {
71
71
  React.createElement(AuxHolder, { ref: auxRef, style: { visibility: (props.active && props.aux && props.data.includes(props.active)) ? 'visible' : 'hidden' } }, (props.active && props.aux && props.data.includes(props.active)) && React.cloneElement(props.aux, { value: props.active })),
72
72
  React.createElement(Inner, { onScroll: handleScroll, ref: innerRef },
73
73
  React.createElement("table", { className: className },
74
- React.createElement(Header, __assign({}, props, { columns: activeColumns, onOpenColumns: props.onOpenColumns })),
74
+ props.noheader != true && React.createElement(Header, __assign({}, props, { columns: activeColumns, onOpenColumns: props.onOpenColumns })),
75
75
  React.createElement(Body, __assign({}, props, { columns: activeColumns })))),
76
76
  props.total && React.createElement(Total, { value: props.data.length, singular: props.singular, plural: props.plural })));
77
77
  };
@@ -0,0 +1 @@
1
+ export { ListView } from './ListView';
@@ -0,0 +1 @@
1
+ export { ListView } from './ListView';
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longline/aqua-ui",
3
- "version": "1.0.19",
3
+ "version": "1.0.22",
4
4
  "description": "AquaUI",
5
5
  "author": "Alexander van Oostenrijk / Longline Environment",
6
6
  "license": "Commercial",
@@ -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
  }
@@ -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 = {}));
@@ -1,5 +1,5 @@
1
1
  export declare enum File {
2
- Csv = "/sprites.svg#file-csv",
3
- Excel = "/sprites.svg#file-excel",
4
- Pdf = "/sprites.svg#file-pdf"
2
+ Csv = "/aquaui-sprites.svg#file-csv",
3
+ Excel = "/aquaui-sprites.svg#file-excel",
4
+ Pdf = "/aquaui-sprites.svg#file-pdf"
5
5
  }
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 = {}));
@@ -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
  }
@@ -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 = {}));
@@ -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 = {}));
@@ -1,3 +1,3 @@
1
1
  export declare enum Other {
2
- CloudUpload = "/sprites.svg#cloud-upload"
2
+ CloudUpload = "/aquaui-sprites.svg#cloud-upload"
3
3
  }
@@ -1,4 +1,4 @@
1
1
  export var Other;
2
2
  (function (Other) {
3
- Other["CloudUpload"] = "/sprites.svg#cloud-upload";
3
+ Other["CloudUpload"] = "/aquaui-sprites.svg#cloud-upload";
4
4
  })(Other || (Other = {}));
File without changes