@linzjs/lui 15.0.5 → 15.1.0
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/CHANGELOG.md +21 -0
- package/dist/assets/icons/apps.svg +1 -0
- package/dist/assets/icons/arrow_drop_right.svg +1 -5
- package/dist/assets/icons/change_password.svg +1 -0
- package/dist/assets/icons/control_point.svg +1 -11
- package/dist/assets/icons/copy.svg +1 -5
- package/dist/assets/icons/feedback_lightbulb.svg +1 -0
- package/dist/assets/icons/hourglass.svg +1 -0
- package/dist/assets/icons/link.svg +1 -5
- package/dist/assets/icons/menu.svg +1 -5
- package/dist/assets/icons/minimise.svg +1 -5
- package/dist/assets/icons/more_vert.svg +1 -5
- package/dist/assets/icons/numbered_list.svg +1 -5
- package/dist/assets/icons/{polygon selection.svg → polygon_selection.svg} +0 -0
- package/dist/assets/icons/{product list.svg → product_list.svg} +0 -0
- package/dist/assets/icons/{round selection.svg → round_selection.svg} +0 -0
- package/dist/assets/icons/save_download.svg +1 -0
- package/dist/assets/icons/{square selection.svg → square_selection.svg} +0 -0
- package/dist/assets/icons/unlink.svg +1 -5
- package/dist/assets/icons/visiblity_off.svg +1 -0
- package/dist/assets/icons/zoom_centre.svg +1 -5
- package/dist/assets/svg-content.tsx +62 -40
- package/dist/components/LuiButton/LuiButton.d.ts +6 -3
- package/dist/components/LuiHeaderGlobal/LuiHeaderGlobal.d.ts +5 -0
- package/dist/index.js +91 -57
- package/dist/index.js.map +1 -1
- package/dist/lui.css +141 -34
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +91 -57
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiFormElements/LuiCheckboxInput/LuiCheckboxInput.scss +15 -28
- package/dist/scss/Components/LuiFormElements/LuiRadioInput/LuiRadioInput.scss +7 -3
- package/dist/scss/Components/LuiHeaderGlobal/LuiHeaderGlobal.scss +90 -0
- package/dist/scss/Elements/Buttons/buttons.scss +20 -9
- package/dist/scss/Elements/Forms/FormComponents/RadiosCheckboxes.scss +1 -2
- package/dist/scss/Foundation/Variables/_LuiColors.scss +2 -1
- package/dist/scss/base.scss +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
# [15.1.0](https://github.com/linz/lui/compare/v15.0.7...v15.1.0) (2022-03-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Global header in progress ([#593](https://github.com/linz/lui/issues/593)) ([8ddddd1](https://github.com/linz/lui/commit/8ddddd1c54b1f3d03b6475ce157fc39ed56fb52a))
|
|
7
|
+
|
|
8
|
+
## [15.0.7](https://github.com/linz/lui/compare/v15.0.6...v15.0.7) (2022-02-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Luiiconexport 010322 ([#588](https://github.com/linz/lui/issues/588)) ([623bdbc](https://github.com/linz/lui/commit/623bdbc6c305adb94949fb0c1bcd10c84265063a))
|
|
14
|
+
|
|
15
|
+
## [15.0.6](https://github.com/linz/lui/compare/v15.0.5...v15.0.6) (2022-02-28)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* Add disabled styling to group btns, aligned radio & checkboxes styling with FIGLUI ([#584](https://github.com/linz/lui/issues/584)) ([b142e41](https://github.com/linz/lui/commit/b142e41ca24345ca7ee93628f2dedfd584ff7f53))
|
|
21
|
+
|
|
1
22
|
## [15.0.5](https://github.com/linz/lui/compare/v15.0.4...v15.0.5) (2022-02-28)
|
|
2
23
|
|
|
3
24
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8h4V4H4v4Zm6 12h4v-4h-4v4Zm-6 0h4v-4H4v4Zm0-6h4v-4H4v4Zm6 0h4v-4h-4v4Zm6-10v4h4V4h-4Zm-6 4h4V4h-4v4Zm6 6h4v-4h-4v4Zm0 6h4v-4h-4v4Z" fill="#000"/></svg>
|
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
3
|
-
<title>arrow_drop_right</title>
|
|
4
|
-
<path d="M9.492 6.984l5.016 5.016-5.016 5.016v-10.032z"></path>
|
|
5
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M9.492 6.984 14.508 12l-5.016 5.016V6.984z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.65 10a5.998 5.998 0 0 0-6.88-3.88c-2.29.46-4.15 2.29-4.63 4.58A6.006 6.006 0 0 0 7 18a5.99 5.99 0 0 0 5.65-4H17v2c0 1.1.9 2 2 2s2-.9 2-2v-2c1.1 0 2-.9 2-2s-.9-2-2-2h-8.35ZM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2Z" fill="#000"/></svg>
|
|
@@ -1,11 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
3
|
-
<title>control_point</title>
|
|
4
|
-
<path d="M19.446 12.6h-2.9v2.3h2.9v-2.3z"></path>
|
|
5
|
-
<path d="M10.346 10.3c1.9 0 3.4 1.5 3.4 3.4s-1.5 3.4-3.4 3.4c-1.9 0-3.4-1.5-3.4-3.4s1.5-3.4 3.4-3.4zM10.346 12c-0.9 0-1.7 0.8-1.7 1.7s0.8 1.7 1.7 1.7c0.9 0 1.7-0.8 1.7-1.7s-0.8-1.7-1.7-1.7z"></path>
|
|
6
|
-
<path d="M4.046 12.6h-2.9v2.3h2.9v-2.3z"></path>
|
|
7
|
-
<path d="M11.446 4.6h-2.3v2.9h2.3v-2.9z"></path>
|
|
8
|
-
<path d="M11.446 20h-2.3v2.9h2.3v-2.9z"></path>
|
|
9
|
-
<path d="M15.546 11.4c0.3 0.7 0.5 1.5 0.5 2.3 0 3.2-2.6 5.7-5.7 5.7-3.2 0-5.7-2.6-5.7-5.7s2.5-5.7 5.7-5.7c0.8 0 1.6 0.2 2.3 0.5v-1.9c-0.7-0.2-1.5-0.4-2.3-0.4-4.1 0-7.4 3.3-7.4 7.4s3.3 7.4 7.4 7.4 7.4-3.3 7.4-7.4c0-0.8-0.1-1.6-0.4-2.3h-1.8v0.1z"></path>
|
|
10
|
-
<path d="M21.146 1.1h-5.7c-0.9 0-1.7 0.8-1.7 1.7v5.7c0 0.9 0.8 1.7 1.7 1.7h5.7c0.9 0 1.7-0.8 1.7-1.7v-5.6c0.1-1-0.7-1.8-1.7-1.8z"></path>
|
|
11
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M19.446 12.6h-2.9v2.3h2.9v-2.3zm-9.1-2.3c1.9 0 3.4 1.5 3.4 3.4s-1.5 3.4-3.4 3.4-3.4-1.5-3.4-3.4 1.5-3.4 3.4-3.4zm0 1.7c-.9 0-1.7.8-1.7 1.7s.8 1.7 1.7 1.7c.9 0 1.7-.8 1.7-1.7s-.8-1.7-1.7-1.7zm-6.3.6h-2.9v2.3h2.9v-2.3zm7.4-8h-2.3v2.9h2.3V4.6zm0 15.4h-2.3v2.9h2.3V20z"/><path d="M15.546 11.4c.3.7.5 1.5.5 2.3 0 3.2-2.6 5.7-5.7 5.7-3.2 0-5.7-2.6-5.7-5.7s2.5-5.7 5.7-5.7c.8 0 1.6.2 2.3.5V6.6c-.7-.2-1.5-.4-2.3-.4-4.1 0-7.4 3.3-7.4 7.4s3.3 7.4 7.4 7.4 7.4-3.3 7.4-7.4c0-.8-.1-1.6-.4-2.3h-1.8v.1z"/><path d="M21.146 1.1h-5.7c-.9 0-1.7.8-1.7 1.7v5.7c0 .9.8 1.7 1.7 1.7h5.7c.9 0 1.7-.8 1.7-1.7V2.9c.1-1-.7-1.8-1.7-1.8z"/></svg>
|
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
3
|
-
<title>copy</title>
|
|
4
|
-
<path d="M8.5 20h10v-13c0-0.55 0.45-1 1-1s1 0.45 1 1v13c0 1.1-0.9 2-2 2h-10c-0.55 0-1-0.45-1-1s0.45-1 1-1zM3.5 16v-12c0-1.1 0.9-2 2-2h9c1.1 0 2 0.9 2 2v12c0 1.1-0.9 2-2 2h-9c-1.1 0-2-0.9-2-2zM5.5 16h9v-12h-9v12z"></path>
|
|
5
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M8.5 20h10V7c0-.55.45-1 1-1s1 .45 1 1v13c0 1.1-.9 2-2 2h-10c-.55 0-1-.45-1-1s.45-1 1-1zm-5-4V4c0-1.1.9-2 2-2h9c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2h-9c-1.1 0-2-.9-2-2zm2 0h9V4h-9v12z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2Zm-3-3h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1Zm3-17C7.86 2 4.5 5.36 4.5 9.5c0 3.82 2.66 5.86 3.77 6.5h7.46c1.11-.64 3.77-2.68 3.77-6.5C19.5 5.36 16.14 2 12 2Z" fill="#000"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 2c-1.1 0-2 .9-2 2v3.17c0 .53.21 1.04.59 1.42L10 12l-3.42 3.42c-.37.38-.58.89-.58 1.42V20c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3.16c0-.53-.21-1.04-.58-1.41L14 12l3.41-3.4c.38-.38.59-.89.59-1.42V4c0-1.1-.9-2-2-2H8Zm8 14.5V19c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-2.5l4-4 4 4Zm-4-5-4-4V5c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.5l-4 4Z" fill="#000"/></svg>
|
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
3
|
-
<title>link</title>
|
|
4
|
-
<path d="M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zM11 15h-4c-1.65 0-3-1.35-3-3s1.35-3 3-3h4v-2h-4c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zM8 11h8v2h-8v-2z"></path>
|
|
5
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8v-2z"/></svg>
|
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
3
|
-
<title>menu</title>
|
|
4
|
-
<path d="M4 18h16c0.55 0 1-0.45 1-1s-0.45-1-1-1h-16c-0.55 0-1 0.45-1 1s0.45 1 1 1zM4 13h16c0.55 0 1-0.45 1-1s-0.45-1-1-1h-16c-0.55 0-1 0.45-1 1s0.45 1 1 1zM3 7c0 0.55 0.45 1 1 1h16c0.55 0 1-0.45 1-1s-0.45-1-1-1h-16c-0.55 0-1 0.45-1 1z"></path>
|
|
5
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z"/></svg>
|
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
3
|
-
<title>minimise</title>
|
|
4
|
-
<path d="M7 19h10c0.55 0 1 0.45 1 1s-0.45 1-1 1h-10c-0.55 0-1-0.45-1-1s0.45-1 1-1z"></path>
|
|
5
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M7 19h10c.55 0 1 .45 1 1s-.45 1-1 1H7c-.55 0-1-.45-1-1s.45-1 1-1z"/></svg>
|
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
3
|
-
<title>more_vert</title>
|
|
4
|
-
<path d="M12 8c1.1 0 2-0.9 2-2s-0.9-2-2-2c-1.1 0-2 0.9-2 2s0.9 2 2 2zM12 10c-1.1 0-2 0.9-2 2s0.9 2 2 2c1.1 0 2-0.9 2-2s-0.9-2-2-2zM12 16c-1.1 0-2 0.9-2 2s0.9 2 2 2c1.1 0 2-0.9 2-2s-0.9-2-2-2z"></path>
|
|
5
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/></svg>
|
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
3
|
-
<title>numbered_list</title>
|
|
4
|
-
<path d="M21 16h-2c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5h1.5v0.5h-0.5c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5h0.5v0.5h-1.5c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5h2c0.28 0 0.5-0.22 0.5-0.5v-3c0-0.28-0.22-0.5-0.5-0.5zM19 5h0.5v2.5c0 0.28 0.22 0.5 0.5 0.5s0.5-0.22 0.5-0.5v-3c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5zM21.5 10.72v-0.22c0-0.28-0.22-0.5-0.5-0.5h-2c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5h1.3l-1.68 1.96c-0.080 0.090-0.12 0.21-0.12 0.32v0.22c0 0.28 0.22 0.5 0.5 0.5h2c0.28 0 0.5-0.22 0.5-0.5s-0.22-0.5-0.5-0.5h-1.3l1.68-1.96c0.080-0.090 0.12-0.21 0.12-0.32zM15.5 5h-12c-0.55 0-1 0.45-1 1s0.45 1 1 1h12c0.55 0 1-0.45 1-1s-0.45-1-1-1zM15.5 17h-12c-0.55 0-1 0.45-1 1s0.45 1 1 1h12c0.55 0 1-0.45 1-1s-0.45-1-1-1zM15.5 11h-12c-0.55 0-1 0.45-1 1s0.45 1 1 1h12c0.55 0 1-0.45 1-1s-0.45-1-1-1z"></path>
|
|
5
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M21 16h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.5v.5H20c-.28 0-.5.22-.5.5s.22.5.5.5h.5v.5H19c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zM19 5h.5v2.5c0 .28.22.5.5.5s.5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5zm2.5 5.72v-.22c0-.28-.22-.5-.5-.5h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.3l-1.68 1.96a.49.49 0 0 0-.12.32v.22c0 .28.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-1.3l1.68-1.96a.49.49 0 0 0 .12-.32zM15.5 5h-12c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 12h-12c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0-6h-12c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z"/></svg>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 13v5c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1Zm-6-.33 1.88-1.88a.996.996 0 1 1 1.41 1.41l-3.59 3.59a.996.996 0 0 1-1.41 0L7.7 12.2a.996.996 0 1 1 1.41-1.41L11 12.67V4c0-.55.45-1 1-1s1 .45 1 1v8.67Z" fill="#000"/></svg>
|
|
File without changes
|
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
3
|
-
<title>unlink</title>
|
|
4
|
-
<path d="M14.39 11.065l1.61 1.61v-1.61h-1.61zM17 7.065h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-0.77 2.37-1.87 2.84l1.4 1.4c1.42-0.88 2.37-2.45 2.37-4.24 0-2.76-2.24-5-5-5zM2 4.335l3.11 3.11c-1.82 0.74-3.11 2.53-3.11 4.62 0 2.76 2.24 5 5 5h4v-1.9h-4c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.070l2.070 2.070h-0.73v2h2.73l2.27 2.27v1.73h1.73l4.010 4.010 1.41-1.41-16.74-16.74-1.41 1.41z"></path>
|
|
5
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="m14.39 11.065 1.61 1.61v-1.61h-1.61zm2.61-4h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4a4.986 4.986 0 0 0 2.37-4.24c0-2.76-2.24-5-5-5zM2 4.335l3.11 3.11A4.991 4.991 0 0 0 2 12.065c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07l2.07 2.07H8v2h2.73l2.27 2.27v1.73h1.73l4.01 4.01 1.41-1.41L3.41 2.925 2 4.335z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 6.5c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24ZM2.71 3.16a.996.996 0 0 0 0 1.41l1.97 1.97A11.892 11.892 0 0 0 1 11.5C2.73 15.89 7 19 12 19c1.52 0 2.97-.3 4.31-.82l2.72 2.72a.996.996 0 1 0 1.41-1.41L4.13 3.16c-.39-.39-1.03-.39-1.42 0ZM12 16.5c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07L14.14 16c-.65.32-1.37.5-2.14.5Zm2.97-5.33a2.97 2.97 0 0 0-2.64-2.64l2.64 2.64Z" fill="#000"/></svg>
|
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
3
|
-
<title>zoom_centre</title>
|
|
4
|
-
<path d="M17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.76 2.24 5 5 5s5-2.24 5-5zM12 15c-1.65 0-3-1.35-3-3s1.35-3 3-3c1.65 0 3 1.35 3 3s-1.35 3-3 3zM5 15h-2v4c0 1.1 0.9 2 2 2h4v-2h-4v-4zM5 5h4v-2h-4c-1.1 0-2 0.9-2 2v4h2v-4zM19 3h-4v2h4v4h2v-4c0-1.1-0.9-2-2-2zM19 19h-4v2h4c1.1 0 2-0.9 2-2v-4h-2v4z"></path>
|
|
5
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5 3c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm-7 0H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z"/></svg>
|
|
@@ -57,6 +57,12 @@ iconMap['ic_annotations'] = (
|
|
|
57
57
|
</svg>
|
|
58
58
|
);
|
|
59
59
|
|
|
60
|
+
iconMap['ic_apps'] = (
|
|
61
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
62
|
+
<path d="M4 8h4V4H4v4Zm6 12h4v-4h-4v4Zm-6 0h4v-4H4v4Zm0-6h4v-4H4v4Zm6 0h4v-4h-4v4Zm6-10v4h4V4h-4Zm-6 4h4V4h-4v4Zm6 6h4v-4h-4v4Zm0 6h4v-4h-4v4Z" />
|
|
63
|
+
</svg>
|
|
64
|
+
);
|
|
65
|
+
|
|
60
66
|
iconMap['ic_arrow_back'] = (
|
|
61
67
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
62
68
|
<path d="M20.016 11.016v1.969H7.828l5.578 5.625L12 20.016 3.984 12 12 3.984l1.406 1.406-5.578 5.625h12.188z" />
|
|
@@ -76,9 +82,8 @@ iconMap['ic_arrow_drop_down'] = (
|
|
|
76
82
|
);
|
|
77
83
|
|
|
78
84
|
iconMap['ic_arrow_drop_right'] = (
|
|
79
|
-
<svg
|
|
80
|
-
<
|
|
81
|
-
<path d="M9.492 6.984l5.016 5.016-5.016 5.016v-10.032z"></path>
|
|
85
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
86
|
+
<path d="M9.492 6.984 14.508 12l-5.016 5.016V6.984z" />
|
|
82
87
|
</svg>
|
|
83
88
|
);
|
|
84
89
|
|
|
@@ -119,6 +124,12 @@ iconMap['ic_border_color'] = (
|
|
|
119
124
|
</svg>
|
|
120
125
|
);
|
|
121
126
|
|
|
127
|
+
iconMap['ic_change_password'] = (
|
|
128
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
129
|
+
<path d="M12.65 10a5.998 5.998 0 0 0-6.88-3.88c-2.29.46-4.15 2.29-4.63 4.58A6.006 6.006 0 0 0 7 18a5.99 5.99 0 0 0 5.65-4H17v2c0 1.1.9 2 2 2s2-.9 2-2v-2c1.1 0 2-.9 2-2s-.9-2-2-2h-8.35ZM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2Z" />
|
|
130
|
+
</svg>
|
|
131
|
+
);
|
|
132
|
+
|
|
122
133
|
iconMap['ic_check'] = (
|
|
123
134
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
124
135
|
<path d="M8.789 15.891 19.383 5.297l1.406 1.406-12 12-5.578-5.578 1.406-1.406z" />
|
|
@@ -156,22 +167,16 @@ iconMap['ic_columns'] = (
|
|
|
156
167
|
);
|
|
157
168
|
|
|
158
169
|
iconMap['ic_control_point'] = (
|
|
159
|
-
<svg
|
|
160
|
-
<
|
|
161
|
-
<path d="
|
|
162
|
-
<path d="
|
|
163
|
-
<path d="M4.046 12.6h-2.9v2.3h2.9v-2.3z"></path>
|
|
164
|
-
<path d="M11.446 4.6h-2.3v2.9h2.3v-2.9z"></path>
|
|
165
|
-
<path d="M11.446 20h-2.3v2.9h2.3v-2.9z"></path>
|
|
166
|
-
<path d="M15.546 11.4c0.3 0.7 0.5 1.5 0.5 2.3 0 3.2-2.6 5.7-5.7 5.7-3.2 0-5.7-2.6-5.7-5.7s2.5-5.7 5.7-5.7c0.8 0 1.6 0.2 2.3 0.5v-1.9c-0.7-0.2-1.5-0.4-2.3-0.4-4.1 0-7.4 3.3-7.4 7.4s3.3 7.4 7.4 7.4 7.4-3.3 7.4-7.4c0-0.8-0.1-1.6-0.4-2.3h-1.8v0.1z"></path>
|
|
167
|
-
<path d="M21.146 1.1h-5.7c-0.9 0-1.7 0.8-1.7 1.7v5.7c0 0.9 0.8 1.7 1.7 1.7h5.7c0.9 0 1.7-0.8 1.7-1.7v-5.6c0.1-1-0.7-1.8-1.7-1.8z"></path>
|
|
170
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
171
|
+
<path d="M19.446 12.6h-2.9v2.3h2.9v-2.3zm-9.1-2.3c1.9 0 3.4 1.5 3.4 3.4s-1.5 3.4-3.4 3.4-3.4-1.5-3.4-3.4 1.5-3.4 3.4-3.4zm0 1.7c-.9 0-1.7.8-1.7 1.7s.8 1.7 1.7 1.7c.9 0 1.7-.8 1.7-1.7s-.8-1.7-1.7-1.7zm-6.3.6h-2.9v2.3h2.9v-2.3zm7.4-8h-2.3v2.9h2.3V4.6zm0 15.4h-2.3v2.9h2.3V20z" />
|
|
172
|
+
<path d="M15.546 11.4c.3.7.5 1.5.5 2.3 0 3.2-2.6 5.7-5.7 5.7-3.2 0-5.7-2.6-5.7-5.7s2.5-5.7 5.7-5.7c.8 0 1.6.2 2.3.5V6.6c-.7-.2-1.5-.4-2.3-.4-4.1 0-7.4 3.3-7.4 7.4s3.3 7.4 7.4 7.4 7.4-3.3 7.4-7.4c0-.8-.1-1.6-.4-2.3h-1.8v.1z" />
|
|
173
|
+
<path d="M21.146 1.1h-5.7c-.9 0-1.7.8-1.7 1.7v5.7c0 .9.8 1.7 1.7 1.7h5.7c.9 0 1.7-.8 1.7-1.7V2.9c.1-1-.7-1.8-1.7-1.8z" />
|
|
168
174
|
</svg>
|
|
169
175
|
);
|
|
170
176
|
|
|
171
177
|
iconMap['ic_copy'] = (
|
|
172
|
-
<svg
|
|
173
|
-
<
|
|
174
|
-
<path d="M8.5 20h10v-13c0-0.55 0.45-1 1-1s1 0.45 1 1v13c0 1.1-0.9 2-2 2h-10c-0.55 0-1-0.45-1-1s0.45-1 1-1zM3.5 16v-12c0-1.1 0.9-2 2-2h9c1.1 0 2 0.9 2 2v12c0 1.1-0.9 2-2 2h-9c-1.1 0-2-0.9-2-2zM5.5 16h9v-12h-9v12z"></path>
|
|
178
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
179
|
+
<path d="M8.5 20h10V7c0-.55.45-1 1-1s1 .45 1 1v13c0 1.1-.9 2-2 2h-10c-.55 0-1-.45-1-1s.45-1 1-1zm-5-4V4c0-1.1.9-2 2-2h9c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2h-9c-1.1 0-2-.9-2-2zm2 0h9V4h-9v12z" />
|
|
175
180
|
</svg>
|
|
176
181
|
);
|
|
177
182
|
|
|
@@ -235,6 +240,12 @@ iconMap['ic_expand_more'] = (
|
|
|
235
240
|
</svg>
|
|
236
241
|
);
|
|
237
242
|
|
|
243
|
+
iconMap['ic_feedback_lightbulb'] = (
|
|
244
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
245
|
+
<path d="M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2Zm-3-3h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1Zm3-17C7.86 2 4.5 5.36 4.5 9.5c0 3.82 2.66 5.86 3.77 6.5h7.46c1.11-.64 3.77-2.68 3.77-6.5C19.5 5.36 16.14 2 12 2Z" />
|
|
246
|
+
</svg>
|
|
247
|
+
);
|
|
248
|
+
|
|
238
249
|
iconMap['ic_filter_list'] = (
|
|
239
250
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
240
251
|
<path d="M6 12.984v-1.969h12v1.969H6zM3 6h18v2.016H3V6zm6.984 12v-2.016h4.031V18H9.984z" />
|
|
@@ -271,6 +282,12 @@ iconMap['ic_history'] = (
|
|
|
271
282
|
</svg>
|
|
272
283
|
);
|
|
273
284
|
|
|
285
|
+
iconMap['ic_hourglass'] = (
|
|
286
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
287
|
+
<path d="M8 2c-1.1 0-2 .9-2 2v3.17c0 .53.21 1.04.59 1.42L10 12l-3.42 3.42c-.37.38-.58.89-.58 1.42V20c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3.16c0-.53-.21-1.04-.58-1.41L14 12l3.41-3.4c.38-.38.59-.89.59-1.42V4c0-1.1-.9-2-2-2H8Zm8 14.5V19c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-2.5l4-4 4 4Zm-4-5-4-4V5c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.5l-4 4Z" />
|
|
288
|
+
</svg>
|
|
289
|
+
);
|
|
290
|
+
|
|
274
291
|
iconMap['ic_info'] = (
|
|
275
292
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
276
293
|
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2Zm0 15c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1Zm1-8h-2V7h2v2Z" />
|
|
@@ -350,9 +367,8 @@ iconMap['ic_line_vector'] = (
|
|
|
350
367
|
);
|
|
351
368
|
|
|
352
369
|
iconMap['ic_link'] = (
|
|
353
|
-
<svg
|
|
354
|
-
<
|
|
355
|
-
<path d="M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zM11 15h-4c-1.65 0-3-1.35-3-3s1.35-3 3-3h4v-2h-4c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zM8 11h8v2h-8v-2z"></path>
|
|
370
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
371
|
+
<path d="M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8v-2z" />
|
|
356
372
|
</svg>
|
|
357
373
|
);
|
|
358
374
|
|
|
@@ -395,23 +411,20 @@ iconMap['ic_marks'] = (
|
|
|
395
411
|
);
|
|
396
412
|
|
|
397
413
|
iconMap['ic_menu'] = (
|
|
398
|
-
<svg
|
|
399
|
-
<
|
|
400
|
-
<path d="M4 18h16c0.55 0 1-0.45 1-1s-0.45-1-1-1h-16c-0.55 0-1 0.45-1 1s0.45 1 1 1zM4 13h16c0.55 0 1-0.45 1-1s-0.45-1-1-1h-16c-0.55 0-1 0.45-1 1s0.45 1 1 1zM3 7c0 0.55 0.45 1 1 1h16c0.55 0 1-0.45 1-1s-0.45-1-1-1h-16c-0.55 0-1 0.45-1 1z"></path>
|
|
414
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
415
|
+
<path d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" />
|
|
401
416
|
</svg>
|
|
402
417
|
);
|
|
403
418
|
|
|
404
419
|
iconMap['ic_minimise'] = (
|
|
405
|
-
<svg
|
|
406
|
-
<
|
|
407
|
-
<path d="M7 19h10c0.55 0 1 0.45 1 1s-0.45 1-1 1h-10c-0.55 0-1-0.45-1-1s0.45-1 1-1z"></path>
|
|
420
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
421
|
+
<path d="M7 19h10c.55 0 1 .45 1 1s-.45 1-1 1H7c-.55 0-1-.45-1-1s.45-1 1-1z" />
|
|
408
422
|
</svg>
|
|
409
423
|
);
|
|
410
424
|
|
|
411
425
|
iconMap['ic_more_vert'] = (
|
|
412
|
-
<svg
|
|
413
|
-
<
|
|
414
|
-
<path d="M12 8c1.1 0 2-0.9 2-2s-0.9-2-2-2c-1.1 0-2 0.9-2 2s0.9 2 2 2zM12 10c-1.1 0-2 0.9-2 2s0.9 2 2 2c1.1 0 2-0.9 2-2s-0.9-2-2-2zM12 16c-1.1 0-2 0.9-2 2s0.9 2 2 2c1.1 0 2-0.9 2-2s-0.9-2-2-2z"></path>
|
|
426
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
427
|
+
<path d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" />
|
|
415
428
|
</svg>
|
|
416
429
|
);
|
|
417
430
|
|
|
@@ -434,9 +447,8 @@ iconMap['ic_note_add'] = (
|
|
|
434
447
|
);
|
|
435
448
|
|
|
436
449
|
iconMap['ic_numbered_list'] = (
|
|
437
|
-
<svg
|
|
438
|
-
<
|
|
439
|
-
<path d="M21 16h-2c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5h1.5v0.5h-0.5c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5h0.5v0.5h-1.5c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5h2c0.28 0 0.5-0.22 0.5-0.5v-3c0-0.28-0.22-0.5-0.5-0.5zM19 5h0.5v2.5c0 0.28 0.22 0.5 0.5 0.5s0.5-0.22 0.5-0.5v-3c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5zM21.5 10.72v-0.22c0-0.28-0.22-0.5-0.5-0.5h-2c-0.28 0-0.5 0.22-0.5 0.5s0.22 0.5 0.5 0.5h1.3l-1.68 1.96c-0.080 0.090-0.12 0.21-0.12 0.32v0.22c0 0.28 0.22 0.5 0.5 0.5h2c0.28 0 0.5-0.22 0.5-0.5s-0.22-0.5-0.5-0.5h-1.3l1.68-1.96c0.080-0.090 0.12-0.21 0.12-0.32zM15.5 5h-12c-0.55 0-1 0.45-1 1s0.45 1 1 1h12c0.55 0 1-0.45 1-1s-0.45-1-1-1zM15.5 17h-12c-0.55 0-1 0.45-1 1s0.45 1 1 1h12c0.55 0 1-0.45 1-1s-0.45-1-1-1zM15.5 11h-12c-0.55 0-1 0.45-1 1s0.45 1 1 1h12c0.55 0 1-0.45 1-1s-0.45-1-1-1z"></path>
|
|
450
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
451
|
+
<path d="M21 16h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.5v.5H20c-.28 0-.5.22-.5.5s.22.5.5.5h.5v.5H19c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zM19 5h.5v2.5c0 .28.22.5.5.5s.5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5zm2.5 5.72v-.22c0-.28-.22-.5-.5-.5h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.3l-1.68 1.96a.49.49 0 0 0-.12.32v.22c0 .28.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-1.3l1.68-1.96a.49.49 0 0 0 .12-.32zM15.5 5h-12c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 12h-12c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0-6h-12c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z" />
|
|
440
452
|
</svg>
|
|
441
453
|
);
|
|
442
454
|
|
|
@@ -496,7 +508,7 @@ iconMap['ic_picker'] = (
|
|
|
496
508
|
</svg>
|
|
497
509
|
);
|
|
498
510
|
|
|
499
|
-
iconMap['
|
|
511
|
+
iconMap['ic_polygon_selection'] = (
|
|
500
512
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
501
513
|
<path d="M21.02 17H19v-2.02c0-.54-.44-.98-.98-.98h-.03c-.55 0-.99.44-.99.98V17h-2.01c-.54 0-.98.44-.99.98v.03c0 .55.44.99.99.99H17v2.01c0 .54.44.99.99.98h.03c.54 0 .98-.44.98-.98V19h2.02c.54 0 .98-.44.98-.98v-.04c0-.54-.44-.98-.98-.98Z" />
|
|
502
514
|
<path d="M9.793 3.793a1 1 0 0 1 1.327-.078l.791.625-1.239 1.57-.277.11L8.98 4.605l.813-.812Zm4.046 4.617-1.584-1.25 1.24-1.57 1.583 1.25-1.24 1.57Zm-5.07-.765L7.146 9.27 5.73 7.855 7.355 6.23 8.77 7.645Zm8.236 3.265-1.583-1.25 1.24-1.57 1.583 1.25-1.24 1.57ZM5 12.125l.52-1.23L4.105 9.48l-.812.813A1 1 0 0 0 3 11v1.125h2Zm13.589.035 1.239-1.57.792.625A1 1 0 0 1 21 12v1h-2l-.411-.84ZM5 14.375v2.25H3v-2.25h2Zm0 4.5V21H4a1 1 0 0 1-1-1v-1.125h2ZM7 19h2v2H7v-2Zm4 0h2v2h-2v-2Z" />
|
|
@@ -509,7 +521,7 @@ iconMap['ic_pre_validation'] = (
|
|
|
509
521
|
</svg>
|
|
510
522
|
);
|
|
511
523
|
|
|
512
|
-
iconMap['
|
|
524
|
+
iconMap['ic_product_list'] = (
|
|
513
525
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
514
526
|
<path d="M12 9h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1Zm0 4h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1Zm0 4h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1ZM7 7h2v2H7V7Zm0 4h2v2H7v-2Zm0 4h2v2H7v-2ZM20 3H4c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1Zm-1 16H5V5h14v14Z" />
|
|
515
527
|
</svg>
|
|
@@ -539,13 +551,19 @@ iconMap['ic_requisitions'] = (
|
|
|
539
551
|
</svg>
|
|
540
552
|
);
|
|
541
553
|
|
|
542
|
-
iconMap['
|
|
554
|
+
iconMap['ic_round_selection'] = (
|
|
543
555
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
544
556
|
<path d="M21.02 17H19v-2.02c0-.54-.44-.98-.98-.98h-.03c-.55 0-.99.44-.99.98V17h-2.01c-.54 0-.98.44-.99.98v.03c0 .55.44.99.99.99H17v2.01c0 .54.44.99.99.98h.03c.54 0 .98-.44.98-.98V19h2.02c.54 0 .98-.44.98-.98v-.04c0-.54-.44-.98-.98-.98Z" />
|
|
545
557
|
<path d="M12.98 21.953a10.12 10.12 0 0 1-1.96 0l.193-1.991a8.1 8.1 0 0 0 1.574 0l.193 1.99Zm-3.884-.381.58-1.914a7.947 7.947 0 0 1-1.446-.6l-.945 1.763c.573.307 1.179.56 1.811.75Zm-3.44-1.842 1.27-1.545a8.062 8.062 0 0 1-1.111-1.11L4.27 18.343c.415.506.88.97 1.386 1.386Zm-2.477-3.015 1.763-.944a7.938 7.938 0 0 1-.6-1.447l-1.914.58a9.93 9.93 0 0 0 .751 1.81ZM2.047 12.98l1.991-.193a8.12 8.12 0 0 1 0-1.574l-1.99-.193a10.123 10.123 0 0 0 0 1.96Zm.381-3.884 1.914.58c.153-.505.355-.989.6-1.446l-1.763-.945a9.938 9.938 0 0 0-.75 1.811Zm1.842-3.44 1.545 1.27a8.06 8.06 0 0 1 1.11-1.111L5.657 4.27c-.506.415-.97.88-1.386 1.386Zm3.015-2.477.945 1.763a7.938 7.938 0 0 1 1.446-.6l-.58-1.914a9.938 9.938 0 0 0-1.81.751Zm3.735-1.132a10.123 10.123 0 0 1 1.96 0l-.193 1.991a8.12 8.12 0 0 0-1.574 0l-.193-1.99Zm3.884.381-.58 1.914c.505.153.989.355 1.447.6l.944-1.763a9.936 9.936 0 0 0-1.811-.75Zm3.44 1.842-1.27 1.545c.406.333.778.705 1.111 1.11l1.545-1.269a10.06 10.06 0 0 0-1.386-1.386Zm2.477 3.015-1.763.945c.245.457.447.941.6 1.446l1.914-.58a9.937 9.937 0 0 0-.751-1.81Zm1.131 3.735-1.99.193a8.1 8.1 0 0 1 0 1.574l1.99.194a10.123 10.123 0 0 0 0-1.961Z" />
|
|
546
558
|
</svg>
|
|
547
559
|
);
|
|
548
560
|
|
|
561
|
+
iconMap['ic_save_download'] = (
|
|
562
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
563
|
+
<path d="M19 13v5c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1Zm-6-.33 1.88-1.88a.996.996 0 1 1 1.41 1.41l-3.59 3.59a.996.996 0 0 1-1.41 0L7.7 12.2a.996.996 0 1 1 1.41-1.41L11 12.67V4c0-.55.45-1 1-1s1 .45 1 1v8.67Z" />
|
|
564
|
+
</svg>
|
|
565
|
+
);
|
|
566
|
+
|
|
549
567
|
iconMap['ic_saved_area_interest'] = (
|
|
550
568
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
551
569
|
<path d="M5 14H3v4c0 1.1.9 2 2 2h4v-2H5v-4Zm0-8h4V4H5c-1.1 0-2 .9-2 2v4h2V6Zm14-2h-4v2h4v4h2V6c0-1.1-.9-2-2-2Zm0 14h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4Zm-5.027-2.36-1.94-1.13-1.94 1.13a.502.502 0 0 1-.74-.55l.51-2.2-1.69-1.46c-.33-.29-.16-.84.28-.88l2.23-.19.88-2.06c.17-.4.75-.4.92 0l.88 2.06 2.23.19a.5.5 0 0 1 .28.88l-1.69 1.46.51 2.2a.49.49 0 0 1-.72.55Z" />
|
|
@@ -564,7 +582,7 @@ iconMap['ic_send_email_dart'] = (
|
|
|
564
582
|
</svg>
|
|
565
583
|
);
|
|
566
584
|
|
|
567
|
-
iconMap['
|
|
585
|
+
iconMap['ic_square_selection'] = (
|
|
568
586
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
569
587
|
<path d="M17 5h-2V3h2v2Zm2 4h2V7h-2v2Zm0 4h2v-2h-2v2Zm-8 8h2v-2h-2v2ZM7 5h2V3H7v2ZM3 17h2v-2H3v2Zm2 4v-2H3c0 1.1.9 2 2 2ZM19 3v2h2c0-1.1-.9-2-2-2Zm-8 2h2V3h-2v2ZM3 9h2V7H3v2Zm4 12h2v-2H7v2Zm-4-8h2v-2H3v2Zm0-8h2V3c-1.1 0-2 .9-2 2Zm18.02 12H19v-2.02c0-.54-.44-.98-.98-.98h-.03c-.55 0-.99.44-.99.98V17h-2.01c-.54 0-.98.44-.99.98v.03c0 .55.44.99.99.99H17v2.01c0 .54.44.99.99.98h.03c.54 0 .98-.44.98-.98V19h2.02c.54 0 .98-.44.98-.98v-.04c0-.54-.44-.98-.98-.98Z" />
|
|
570
588
|
</svg>
|
|
@@ -621,9 +639,8 @@ iconMap['ic_tune_setting_configure'] = (
|
|
|
621
639
|
);
|
|
622
640
|
|
|
623
641
|
iconMap['ic_unlink'] = (
|
|
624
|
-
<svg
|
|
625
|
-
<
|
|
626
|
-
<path d="M14.39 11.065l1.61 1.61v-1.61h-1.61zM17 7.065h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-0.77 2.37-1.87 2.84l1.4 1.4c1.42-0.88 2.37-2.45 2.37-4.24 0-2.76-2.24-5-5-5zM2 4.335l3.11 3.11c-1.82 0.74-3.11 2.53-3.11 4.62 0 2.76 2.24 5 5 5h4v-1.9h-4c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.070l2.070 2.070h-0.73v2h2.73l2.27 2.27v1.73h1.73l4.010 4.010 1.41-1.41-16.74-16.74-1.41 1.41z"></path>
|
|
642
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
643
|
+
<path d="m14.39 11.065 1.61 1.61v-1.61h-1.61zm2.61-4h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4a4.986 4.986 0 0 0 2.37-4.24c0-2.76-2.24-5-5-5zM2 4.335l3.11 3.11A4.991 4.991 0 0 0 2 12.065c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07l2.07 2.07H8v2h2.73l2.27 2.27v1.73h1.73l4.01 4.01 1.41-1.41L3.41 2.925 2 4.335z" />
|
|
627
644
|
</svg>
|
|
628
645
|
);
|
|
629
646
|
|
|
@@ -663,6 +680,12 @@ iconMap['ic_view_week'] = (
|
|
|
663
680
|
</svg>
|
|
664
681
|
);
|
|
665
682
|
|
|
683
|
+
iconMap['ic_visiblity_off'] = (
|
|
684
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
685
|
+
<path d="M12 6.5c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24ZM2.71 3.16a.996.996 0 0 0 0 1.41l1.97 1.97A11.892 11.892 0 0 0 1 11.5C2.73 15.89 7 19 12 19c1.52 0 2.97-.3 4.31-.82l2.72 2.72a.996.996 0 1 0 1.41-1.41L4.13 3.16c-.39-.39-1.03-.39-1.42 0ZM12 16.5c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07L14.14 16c-.65.32-1.37.5-2.14.5Zm2.97-5.33a2.97 2.97 0 0 0-2.64-2.64l2.64 2.64Z" />
|
|
686
|
+
</svg>
|
|
687
|
+
);
|
|
688
|
+
|
|
666
689
|
iconMap['ic_warning'] = (
|
|
667
690
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
668
691
|
<path d="M4.1 20.844h15.8c1.616 0 2.623-1.752 1.815-3.148l-7.9-13.65c-.808-1.395-2.822-1.395-3.63 0l-7.9 13.65c-.808 1.396.2 3.148 1.815 3.148Zm7.9-7.345c-.577 0-1.05-.472-1.05-1.049V9.186c0-.577.473-1.049 1.05-1.049.577 0 1.05.472 1.05 1.05v3.263c0 .577-.473 1.05-1.05 1.05Zm1.05 4.197h-2.1v-2.098h2.1v2.098Z" />
|
|
@@ -688,9 +711,8 @@ iconMap['ic_xml_file'] = (
|
|
|
688
711
|
);
|
|
689
712
|
|
|
690
713
|
iconMap['ic_zoom_centre'] = (
|
|
691
|
-
<svg
|
|
692
|
-
<
|
|
693
|
-
<path d="M17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.76 2.24 5 5 5s5-2.24 5-5zM12 15c-1.65 0-3-1.35-3-3s1.35-3 3-3c1.65 0 3 1.35 3 3s-1.35 3-3 3zM5 15h-2v4c0 1.1 0.9 2 2 2h4v-2h-4v-4zM5 5h4v-2h-4c-1.1 0-2 0.9-2 2v4h2v-4zM19 3h-4v2h4v4h2v-4c0-1.1-0.9-2-2-2zM19 19h-4v2h4c1.1 0 2-0.9 2-2v-4h-2v4z"></path>
|
|
714
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
715
|
+
<path d="M17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5 3c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm-7 0H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" />
|
|
694
716
|
</svg>
|
|
695
717
|
);
|
|
696
718
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import React, { MouseEvent, ReactNode, Ref } from 'react';
|
|
2
|
-
interface LuiButtonProps extends PlainButtonProps {
|
|
2
|
+
export interface LuiButtonProps extends PlainButtonProps {
|
|
3
3
|
href?: string;
|
|
4
4
|
openInNewTab?: boolean;
|
|
5
5
|
level?: 'text' | 'plain-text' | 'primary' | 'secondary' | 'tertiary' | 'error';
|
|
6
6
|
type?: React.ButtonHTMLAttributes<HTMLButtonElement>['type'];
|
|
7
7
|
size?: 'sm' | '' | /* medium */ 'lg';
|
|
8
8
|
}
|
|
9
|
-
interface PlainButtonProps {
|
|
9
|
+
export interface PlainButtonProps {
|
|
10
10
|
type?: React.ButtonHTMLAttributes<HTMLButtonElement>['type'];
|
|
11
11
|
disabled?: boolean;
|
|
12
12
|
style?: React.CSSProperties;
|
|
@@ -19,8 +19,11 @@ interface PlainButtonProps {
|
|
|
19
19
|
ref: Ref<HTMLButtonElement>;
|
|
20
20
|
children: ReactNode;
|
|
21
21
|
}
|
|
22
|
+
export declare const PlainButton: React.ForwardRefExoticComponent<Pick<PlainButtonProps & {
|
|
23
|
+
level: string;
|
|
24
|
+
size: string;
|
|
25
|
+
}, "type" | "disabled" | "style" | "onClick" | "name" | "title" | "data-testid" | "className" | "buttonProps" | "children" | "level" | "size"> & React.RefAttributes<HTMLButtonElement>>;
|
|
22
26
|
export declare const LuiButton: React.ForwardRefExoticComponent<Pick<React.PropsWithChildren<LuiButtonProps>, "type" | "disabled" | "style" | "onClick" | "name" | "title" | "data-testid" | "className" | "buttonProps" | "children" | "level" | "size" | "href" | "openInNewTab"> & React.RefAttributes<HTMLButtonElement>>;
|
|
23
27
|
export declare const LuiButtonGroup: React.FC<{
|
|
24
28
|
children: any;
|
|
25
29
|
}>;
|
|
26
|
-
export {};
|