@deviceinsight/ng-ui-basic-components 3.13.0-SNAPSHOT

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 (239) hide show
  1. package/LICENSE +1 -0
  2. package/README.md +102 -0
  3. package/lib/cjs/__mocks__/react-i18next.d.ts +2 -0
  4. package/lib/cjs/__mocks__/react-i18next.d.ts.map +1 -0
  5. package/lib/cjs/__mocks__/react-i18next.js +18 -0
  6. package/lib/cjs/assets/img/icon-arrow-back.png +0 -0
  7. package/lib/cjs/assets/img/icon_folder_closed.png +0 -0
  8. package/lib/cjs/assets/img/icon_folder_closed_light.png +0 -0
  9. package/lib/cjs/assets/img/icon_folder_open.png +0 -0
  10. package/lib/cjs/assets/img/icon_folder_open_light.png +0 -0
  11. package/lib/cjs/assets/img/icon_help_light_24.png +0 -0
  12. package/lib/cjs/assets/img/icon_variablenode.png +0 -0
  13. package/lib/cjs/assets/img/icon_variablenode_light.png +0 -0
  14. package/lib/cjs/assets/img/toastify_msg_error_24.png +0 -0
  15. package/lib/cjs/assets/img/toastify_msg_success_24.png +0 -0
  16. package/lib/cjs/assets/search-box.css +29 -0
  17. package/lib/cjs/assets/style.css +219 -0
  18. package/lib/cjs/assets/svg/icon_add.svg +3 -0
  19. package/lib/cjs/assets/svg/icon_calendar.svg +50 -0
  20. package/lib/cjs/assets/svg/icon_chevron_left.svg +6 -0
  21. package/lib/cjs/assets/svg/icon_chevron_right.svg +6 -0
  22. package/lib/cjs/assets/svg/icon_cross.svg +3 -0
  23. package/lib/cjs/assets/svg/icon_download.svg +5 -0
  24. package/lib/cjs/assets/svg/icon_duplicate.svg +10 -0
  25. package/lib/cjs/assets/svg/icon_edit.svg +6 -0
  26. package/lib/cjs/assets/svg/icon_folder_loading.svg +21 -0
  27. package/lib/cjs/assets/svg/icon_fullscreen.svg +6 -0
  28. package/lib/cjs/assets/svg/icon_gear.svg +5 -0
  29. package/lib/cjs/assets/svg/icon_help_light.svg +3 -0
  30. package/lib/cjs/assets/svg/icon_key.svg +3 -0
  31. package/lib/cjs/assets/svg/icon_lupe.svg +14 -0
  32. package/lib/cjs/assets/svg/icon_menu_horizontal.svg +5 -0
  33. package/lib/cjs/assets/svg/icon_menu_vertical.svg +5 -0
  34. package/lib/cjs/assets/svg/icon_reload.svg +6 -0
  35. package/lib/cjs/assets/svg/icon_star.svg +4 -0
  36. package/lib/cjs/assets/svg/icon_upload.svg +7 -0
  37. package/lib/cjs/assets/svg/icon_warning_triangle.svg +12 -0
  38. package/lib/cjs/assets/svg/triangle_down.svg +3 -0
  39. package/lib/cjs/assets/svg/triangle_left.svg +3 -0
  40. package/lib/cjs/assets/svg/triangle_right.svg +3 -0
  41. package/lib/cjs/assets/svg/triangle_up.svg +3 -0
  42. package/lib/cjs/assets/svg/triangle_up_and_down.svg +4 -0
  43. package/lib/cjs/components/accordion/Accordion.d.ts +25 -0
  44. package/lib/cjs/components/accordion/Accordion.d.ts.map +1 -0
  45. package/lib/cjs/components/accordion/Accordion.js +60 -0
  46. package/lib/cjs/components/accordionComponents/AccordionItem.d.ts +32 -0
  47. package/lib/cjs/components/accordionComponents/AccordionItem.d.ts.map +1 -0
  48. package/lib/cjs/components/accordionComponents/AccordionItem.js +50 -0
  49. package/lib/cjs/components/bubble/Bubble.d.ts +35 -0
  50. package/lib/cjs/components/bubble/Bubble.d.ts.map +1 -0
  51. package/lib/cjs/components/bubble/Bubble.js +42 -0
  52. package/lib/cjs/components/button/Button.d.ts +33 -0
  53. package/lib/cjs/components/button/Button.d.ts.map +1 -0
  54. package/lib/cjs/components/button/Button.js +22 -0
  55. package/lib/cjs/components/button/ButtonRow.d.ts +23 -0
  56. package/lib/cjs/components/button/ButtonRow.d.ts.map +1 -0
  57. package/lib/cjs/components/button/ButtonRow.js +35 -0
  58. package/lib/cjs/components/confirm/Confirm.d.ts +19 -0
  59. package/lib/cjs/components/confirm/Confirm.d.ts.map +1 -0
  60. package/lib/cjs/components/confirm/Confirm.js +49 -0
  61. package/lib/cjs/components/confirm/ConfirmProvider.d.ts +14 -0
  62. package/lib/cjs/components/confirm/ConfirmProvider.d.ts.map +1 -0
  63. package/lib/cjs/components/confirm/ConfirmProvider.js +63 -0
  64. package/lib/cjs/components/confirm/useConfirm.d.ts +9 -0
  65. package/lib/cjs/components/confirm/useConfirm.d.ts.map +1 -0
  66. package/lib/cjs/components/confirm/useConfirm.js +13 -0
  67. package/lib/cjs/components/confirm/utils.d.ts +4 -0
  68. package/lib/cjs/components/confirm/utils.d.ts.map +1 -0
  69. package/lib/cjs/components/confirm/utils.js +11 -0
  70. package/lib/cjs/components/confirm/withConfirm.d.ts +7 -0
  71. package/lib/cjs/components/confirm/withConfirm.d.ts.map +1 -0
  72. package/lib/cjs/components/confirm/withConfirm.js +43 -0
  73. package/lib/cjs/components/icon/Icon.d.ts +24 -0
  74. package/lib/cjs/components/icon/Icon.d.ts.map +1 -0
  75. package/lib/cjs/components/icon/Icon.js +116 -0
  76. package/lib/cjs/components/input/Checkbox.d.ts +29 -0
  77. package/lib/cjs/components/input/Checkbox.d.ts.map +1 -0
  78. package/lib/cjs/components/input/Checkbox.js +75 -0
  79. package/lib/cjs/components/input/SearchBox.d.ts +21 -0
  80. package/lib/cjs/components/input/SearchBox.d.ts.map +1 -0
  81. package/lib/cjs/components/input/SearchBox.js +90 -0
  82. package/lib/cjs/components/label/Label.d.ts +23 -0
  83. package/lib/cjs/components/label/Label.d.ts.map +1 -0
  84. package/lib/cjs/components/label/Label.js +24 -0
  85. package/lib/cjs/components/modal/Modal.d.ts +29 -0
  86. package/lib/cjs/components/modal/Modal.d.ts.map +1 -0
  87. package/lib/cjs/components/modal/Modal.js +65 -0
  88. package/lib/cjs/components/modalComponents/ModalContainer.d.ts +6 -0
  89. package/lib/cjs/components/modalComponents/ModalContainer.d.ts.map +1 -0
  90. package/lib/cjs/components/modalComponents/ModalContainer.js +12 -0
  91. package/lib/cjs/components/modalComponents/ModalWindow.d.ts +4 -0
  92. package/lib/cjs/components/modalComponents/ModalWindow.d.ts.map +1 -0
  93. package/lib/cjs/components/modalComponents/ModalWindow.js +50 -0
  94. package/lib/cjs/components/popup/Popup.d.ts +38 -0
  95. package/lib/cjs/components/popup/Popup.d.ts.map +1 -0
  96. package/lib/cjs/components/popup/Popup.js +78 -0
  97. package/lib/cjs/components/popupComponents/PopupArea.d.ts +18 -0
  98. package/lib/cjs/components/popupComponents/PopupArea.d.ts.map +1 -0
  99. package/lib/cjs/components/popupComponents/PopupArea.js +46 -0
  100. package/lib/cjs/components/spinner/Spinner.d.ts +20 -0
  101. package/lib/cjs/components/spinner/Spinner.d.ts.map +1 -0
  102. package/lib/cjs/components/spinner/Spinner.js +34 -0
  103. package/lib/cjs/components/spinner/SpinnerContainer.d.ts +23 -0
  104. package/lib/cjs/components/spinner/SpinnerContainer.d.ts.map +1 -0
  105. package/lib/cjs/components/spinner/SpinnerContainer.js +24 -0
  106. package/lib/cjs/components/tabs/Tabs.d.ts +34 -0
  107. package/lib/cjs/components/tabs/Tabs.d.ts.map +1 -0
  108. package/lib/cjs/components/tabs/Tabs.js +75 -0
  109. package/lib/cjs/components/tooltip/Tooltip.d.ts +28 -0
  110. package/lib/cjs/components/tooltip/Tooltip.d.ts.map +1 -0
  111. package/lib/cjs/components/tooltip/Tooltip.js +39 -0
  112. package/lib/cjs/hooks/useOutsideClick.d.ts +3 -0
  113. package/lib/cjs/hooks/useOutsideClick.d.ts.map +1 -0
  114. package/lib/cjs/hooks/useOutsideClick.js +42 -0
  115. package/lib/cjs/index.d.ts +22 -0
  116. package/lib/cjs/index.d.ts.map +1 -0
  117. package/lib/cjs/index.js +46 -0
  118. package/lib/cjs/types/i18n.d.ts +5 -0
  119. package/lib/cjs/types/i18n.d.ts.map +1 -0
  120. package/lib/cjs/types/i18n.js +2 -0
  121. package/lib/esm/__mocks__/react-i18next.d.ts +2 -0
  122. package/lib/esm/__mocks__/react-i18next.d.ts.map +1 -0
  123. package/lib/esm/__mocks__/react-i18next.js +17 -0
  124. package/lib/esm/assets/img/icon-arrow-back.png +0 -0
  125. package/lib/esm/assets/img/icon_folder_closed.png +0 -0
  126. package/lib/esm/assets/img/icon_folder_closed_light.png +0 -0
  127. package/lib/esm/assets/img/icon_folder_open.png +0 -0
  128. package/lib/esm/assets/img/icon_folder_open_light.png +0 -0
  129. package/lib/esm/assets/img/icon_help_light_24.png +0 -0
  130. package/lib/esm/assets/img/icon_variablenode.png +0 -0
  131. package/lib/esm/assets/img/icon_variablenode_light.png +0 -0
  132. package/lib/esm/assets/img/toastify_msg_error_24.png +0 -0
  133. package/lib/esm/assets/img/toastify_msg_success_24.png +0 -0
  134. package/lib/esm/assets/search-box.css +29 -0
  135. package/lib/esm/assets/style.css +219 -0
  136. package/lib/esm/assets/svg/icon_add.svg +3 -0
  137. package/lib/esm/assets/svg/icon_calendar.svg +50 -0
  138. package/lib/esm/assets/svg/icon_chevron_left.svg +6 -0
  139. package/lib/esm/assets/svg/icon_chevron_right.svg +6 -0
  140. package/lib/esm/assets/svg/icon_cross.svg +3 -0
  141. package/lib/esm/assets/svg/icon_download.svg +5 -0
  142. package/lib/esm/assets/svg/icon_duplicate.svg +10 -0
  143. package/lib/esm/assets/svg/icon_edit.svg +6 -0
  144. package/lib/esm/assets/svg/icon_folder_loading.svg +21 -0
  145. package/lib/esm/assets/svg/icon_fullscreen.svg +6 -0
  146. package/lib/esm/assets/svg/icon_gear.svg +5 -0
  147. package/lib/esm/assets/svg/icon_help_light.svg +3 -0
  148. package/lib/esm/assets/svg/icon_key.svg +3 -0
  149. package/lib/esm/assets/svg/icon_lupe.svg +14 -0
  150. package/lib/esm/assets/svg/icon_menu_horizontal.svg +5 -0
  151. package/lib/esm/assets/svg/icon_menu_vertical.svg +5 -0
  152. package/lib/esm/assets/svg/icon_reload.svg +6 -0
  153. package/lib/esm/assets/svg/icon_star.svg +4 -0
  154. package/lib/esm/assets/svg/icon_upload.svg +7 -0
  155. package/lib/esm/assets/svg/icon_warning_triangle.svg +12 -0
  156. package/lib/esm/assets/svg/triangle_down.svg +3 -0
  157. package/lib/esm/assets/svg/triangle_left.svg +3 -0
  158. package/lib/esm/assets/svg/triangle_right.svg +3 -0
  159. package/lib/esm/assets/svg/triangle_up.svg +3 -0
  160. package/lib/esm/assets/svg/triangle_up_and_down.svg +4 -0
  161. package/lib/esm/components/accordion/Accordion.d.ts +25 -0
  162. package/lib/esm/components/accordion/Accordion.d.ts.map +1 -0
  163. package/lib/esm/components/accordion/Accordion.js +34 -0
  164. package/lib/esm/components/accordionComponents/AccordionItem.d.ts +32 -0
  165. package/lib/esm/components/accordionComponents/AccordionItem.d.ts.map +1 -0
  166. package/lib/esm/components/accordionComponents/AccordionItem.js +24 -0
  167. package/lib/esm/components/bubble/Bubble.d.ts +35 -0
  168. package/lib/esm/components/bubble/Bubble.d.ts.map +1 -0
  169. package/lib/esm/components/bubble/Bubble.js +36 -0
  170. package/lib/esm/components/button/Button.d.ts +33 -0
  171. package/lib/esm/components/button/Button.d.ts.map +1 -0
  172. package/lib/esm/components/button/Button.js +17 -0
  173. package/lib/esm/components/button/ButtonRow.d.ts +23 -0
  174. package/lib/esm/components/button/ButtonRow.d.ts.map +1 -0
  175. package/lib/esm/components/button/ButtonRow.js +10 -0
  176. package/lib/esm/components/confirm/Confirm.d.ts +19 -0
  177. package/lib/esm/components/confirm/Confirm.d.ts.map +1 -0
  178. package/lib/esm/components/confirm/Confirm.js +20 -0
  179. package/lib/esm/components/confirm/ConfirmProvider.d.ts +14 -0
  180. package/lib/esm/components/confirm/ConfirmProvider.d.ts.map +1 -0
  181. package/lib/esm/components/confirm/ConfirmProvider.js +34 -0
  182. package/lib/esm/components/confirm/useConfirm.d.ts +9 -0
  183. package/lib/esm/components/confirm/useConfirm.d.ts.map +1 -0
  184. package/lib/esm/components/confirm/useConfirm.js +10 -0
  185. package/lib/esm/components/confirm/utils.d.ts +4 -0
  186. package/lib/esm/components/confirm/utils.d.ts.map +1 -0
  187. package/lib/esm/components/confirm/utils.js +7 -0
  188. package/lib/esm/components/confirm/withConfirm.d.ts +7 -0
  189. package/lib/esm/components/confirm/withConfirm.d.ts.map +1 -0
  190. package/lib/esm/components/confirm/withConfirm.js +37 -0
  191. package/lib/esm/components/icon/Icon.d.ts +24 -0
  192. package/lib/esm/components/icon/Icon.d.ts.map +1 -0
  193. package/lib/esm/components/icon/Icon.js +110 -0
  194. package/lib/esm/components/input/Checkbox.d.ts +29 -0
  195. package/lib/esm/components/input/Checkbox.d.ts.map +1 -0
  196. package/lib/esm/components/input/Checkbox.js +50 -0
  197. package/lib/esm/components/input/SearchBox.d.ts +21 -0
  198. package/lib/esm/components/input/SearchBox.d.ts.map +1 -0
  199. package/lib/esm/components/input/SearchBox.js +62 -0
  200. package/lib/esm/components/label/Label.d.ts +23 -0
  201. package/lib/esm/components/label/Label.d.ts.map +1 -0
  202. package/lib/esm/components/label/Label.js +18 -0
  203. package/lib/esm/components/modal/Modal.d.ts +29 -0
  204. package/lib/esm/components/modal/Modal.d.ts.map +1 -0
  205. package/lib/esm/components/modal/Modal.js +59 -0
  206. package/lib/esm/components/modalComponents/ModalContainer.d.ts +6 -0
  207. package/lib/esm/components/modalComponents/ModalContainer.d.ts.map +1 -0
  208. package/lib/esm/components/modalComponents/ModalContainer.js +6 -0
  209. package/lib/esm/components/modalComponents/ModalWindow.d.ts +4 -0
  210. package/lib/esm/components/modalComponents/ModalWindow.d.ts.map +1 -0
  211. package/lib/esm/components/modalComponents/ModalWindow.js +21 -0
  212. package/lib/esm/components/popup/Popup.d.ts +38 -0
  213. package/lib/esm/components/popup/Popup.d.ts.map +1 -0
  214. package/lib/esm/components/popup/Popup.js +49 -0
  215. package/lib/esm/components/popupComponents/PopupArea.d.ts +18 -0
  216. package/lib/esm/components/popupComponents/PopupArea.d.ts.map +1 -0
  217. package/lib/esm/components/popupComponents/PopupArea.js +17 -0
  218. package/lib/esm/components/spinner/Spinner.d.ts +20 -0
  219. package/lib/esm/components/spinner/Spinner.d.ts.map +1 -0
  220. package/lib/esm/components/spinner/Spinner.js +28 -0
  221. package/lib/esm/components/spinner/SpinnerContainer.d.ts +23 -0
  222. package/lib/esm/components/spinner/SpinnerContainer.d.ts.map +1 -0
  223. package/lib/esm/components/spinner/SpinnerContainer.js +18 -0
  224. package/lib/esm/components/tabs/Tabs.d.ts +34 -0
  225. package/lib/esm/components/tabs/Tabs.d.ts.map +1 -0
  226. package/lib/esm/components/tabs/Tabs.js +46 -0
  227. package/lib/esm/components/tooltip/Tooltip.d.ts +28 -0
  228. package/lib/esm/components/tooltip/Tooltip.d.ts.map +1 -0
  229. package/lib/esm/components/tooltip/Tooltip.js +33 -0
  230. package/lib/esm/hooks/useOutsideClick.d.ts +3 -0
  231. package/lib/esm/hooks/useOutsideClick.d.ts.map +1 -0
  232. package/lib/esm/hooks/useOutsideClick.js +40 -0
  233. package/lib/esm/index.d.ts +22 -0
  234. package/lib/esm/index.d.ts.map +1 -0
  235. package/lib/esm/index.js +21 -0
  236. package/lib/esm/types/i18n.d.ts +5 -0
  237. package/lib/esm/types/i18n.d.ts.map +1 -0
  238. package/lib/esm/types/i18n.js +1 -0
  239. package/package.json +80 -0
package/LICENSE ADDED
@@ -0,0 +1 @@
1
+ (c) Copyright Device Insight GmbH, all rights reserved.
package/README.md ADDED
@@ -0,0 +1,102 @@
1
+ # General
2
+
3
+ This project contains basic components and custom projects.
4
+
5
+ # Linking for local development
6
+
7
+ We recommend using `yalc` tool for linking `ng-ui-basic-components`. It's because `yalc` generates exactly the same package as
8
+ it would be published to the npm registry, especially it removes files that should be ignored and their existence cause
9
+ problems when we use `yarn link`.
10
+
11
+ Here's how to do the linking:
12
+
13
+ ```shell
14
+ yarn link-local
15
+
16
+ # in the project where you want to link this library to:
17
+ yalc link "@deviceinsight/ng-ui-basic-components"
18
+ ```
19
+
20
+ # Releasing the library using git flow
21
+
22
+ ## Prerequisites
23
+
24
+ ### git flow
25
+
26
+ The git flow tools need to be installed. This depends on your operating system.
27
+
28
+ They can be also installed from the git repo: https://github.com/petervanderdoes/gitflow-avh
29
+
30
+ After git flow is installed, the repo needs to be initialized. Run `git flow init` and answer every
31
+ question with the default (press Enter/Return).
32
+
33
+ ## Building a release
34
+
35
+ To build a release of this library, execute `./release.sh`, which consists of the following steps:
36
+
37
+ ### Before the release: Check for vulnerabilities and run the tests
38
+
39
+ Vulnerabilities can occur at any time.
40
+ To be sure, the pipeline for the branches and the tags created
41
+ in the release process will not fail, it is wise to run the checks locally before building the
42
+ release.
43
+ To do this, run:
44
+
45
+ ```
46
+ npm install
47
+ npm run scan
48
+ npm run test
49
+ ```
50
+
51
+ ### Building the release
52
+
53
+ 1. Switch to develop branch and make sure both main and develop are current:
54
+
55
+ `git checkout develop && git pull && git fetch origin main:main`
56
+
57
+ 2. Get the upcoming release from `package.json` and start the release:
58
+
59
+ `git flow release start $RELEASE_VERSION`, e.g. `git flow release start 1.2.0`.
60
+
61
+ 3. Edit the version in `package.json`.
62
+
63
+ 3.1. Edit the version in `package.json`, remove the `-SNAPSHOT`.
64
+
65
+ 3.2. Commit `package.json`. Commit message should be `Release $RELEASE_VERSION`, e.g. `Release 1.2.0`.
66
+
67
+ 4. Finish the release:
68
+
69
+ `git flow release finish`
70
+
71
+ This will merge the release branch into the `main` branch and create a tag. It will also merge the release branch into the `develop` branch.
72
+
73
+ After this you should be on the `develop` branch.
74
+
75
+ 4.1 A merge conflict might occur in `package.json` for the `version`, when main is merged into the develop branch:
76
+
77
+ Resolve it by taking the version of the `develop` branch. Then run `npm install` to resolve conflicts in `package-lock.version`.
78
+
79
+ Run `git status` to see if there are more conflicts. If there are, resolve them and `git add` the fixed files.
80
+
81
+ If there are no more conflicts, run `git add package*` and `git commit`.
82
+
83
+ 5. Start a new snapshot version:
84
+
85
+ 5.1.
86
+ Edit the version in `package.json`,
87
+ increment the minor version (e.g., from `1.1.0` to `1.2.0`) and add the `-SNAPSHOT` again,
88
+ so that the version is e.g. `1.2.0-SNAPSHOT`.
89
+
90
+ 5.2. Run `npm install`.
91
+
92
+ 5.2. Commit `package.json` and `package-lock.json`. Commit message should be `Starting $NEW_SNAPSHOT_VERSION`, e.g. `Starting 1.2.0`.
93
+
94
+ 6. Push the branches and the tag:
95
+
96
+ On branch `develop`:
97
+
98
+ `git push`
99
+ `git checkout main`
100
+ `git push`
101
+ `git push --tags`
102
+ `git checkout develop`
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=react-i18next.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react-i18next.d.ts","sourceRoot":"","sources":["../../../src/__mocks__/react-i18next.ts"],"names":[],"mappings":""}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ module.exports = {
4
+ withTranslation: () => (Component) => {
5
+ Component.defaultProps = {
6
+ ...Component.defaultProps,
7
+ t: (key) => key,
8
+ i18n: {
9
+ language: 'de-DE'
10
+ }
11
+ };
12
+ return Component;
13
+ },
14
+ Trans: ({ i18nKey, children }) => i18nKey || children,
15
+ useTranslation: () => ({
16
+ t: (key) => key
17
+ })
18
+ };
@@ -0,0 +1,29 @@
1
+
2
+ .search-box {
3
+ height: 32px;
4
+ padding: 0 30px 0 0;
5
+ border: 1px solid #ccc;
6
+ border-radius: 5px;
7
+ position: relative;
8
+ background: #fff;
9
+ }
10
+
11
+ .search-box input {
12
+ width: 100%;
13
+ height: 30px;
14
+ padding: 0 8px 0 15px;
15
+ background: none;
16
+ margin-top: 0;
17
+ border: none;
18
+ outline: none;
19
+ font-size: 12px;
20
+ box-shadow: none;
21
+ border-radius: 0;
22
+ }
23
+
24
+ .search-box .di.button {
25
+ position: absolute;
26
+ right: 0;
27
+ margin-right: 0;
28
+ padding: 7px 10px;
29
+ }
@@ -0,0 +1,219 @@
1
+ /**
2
+ * CS NG
3
+ * UI Components
4
+ */
5
+
6
+ /* Button */
7
+ .di.button * {vertical-align:middle;}
8
+ .di.button {height:32px; font-size:11px; font-weight:bold; padding:0 15px; margin:0 4px 0 0; display:inline-block; color:#333; background-color:#fff; border-radius:3px; cursor:pointer; border:1px solid #ddd; border-bottom:1px solid #aaa;}
9
+ .di.button img {opacity:0.8; margin:0;}
10
+ .di.button img + span {margin:0 0 0 8px;}
11
+ .di.button:hover {background-color:rgba(0,0,0,0.07);}
12
+ .di.button:active,
13
+ .di.button.active {background-color:rgba(0,0,0,.1);}
14
+ .di.button.active {border:1px solid #333;}
15
+ .di.button.small {height:24px; margin: 0 1px; padding:0 10px;}
16
+ .di.button.link {display:inline-block; border:none; background-color:transparent; box-shadow:none; cursor:pointer;}
17
+ .di.button.link:hover {text-decoration: none; background-color:rgba(0,0,0,.07); border-radius:3px;}
18
+ .di.button.link:active {background-color:rgba(0,0,0,.1);}
19
+ .di.button.primary {background-color:var(--primary-color, #1a8ed3); border:none; color:#fff; border:1px solid var(--primary-color, #1a8ed3); border-bottom:1px solid var(--primary-color-darker, #1575ad);}
20
+ .di.button.primary:hover,
21
+ .di.button.primary:focus,
22
+ .di.button.primary:active {background-color:var(--primary-color-darker, #1575ad); color:#fff}
23
+ .di.button.danger {background-color:#FF494F; border:none; color:#fff; border:1px solid #FF494F; border-bottom:1px solid #E1494F;}
24
+ .di.button.danger:hover,
25
+ .di.button.danger:focus,
26
+ .di.button.danger:active {background-color:#E1494F; color:#fff;}
27
+ .di.button:disabled,
28
+ .di.button.disabled {opacity:0.35; cursor:default; pointer-events:none; filter:grayscale(100%)}
29
+
30
+ .di.button::-moz-focus-inner {border:0; padding:0;}
31
+
32
+ /* ButtonRow */
33
+ .di.button-row {margin:30px 0 40px; display:flex;}
34
+ .di.button-row.dividing {padding:25px 0 0; border-top:1px solid #ddd;}
35
+ .di.button-row .button {min-width:70px;}
36
+
37
+ /* Modal */
38
+ .di.modal {position:fixed; top:0; right:0; bottom:0; left:0; background-color:rgba(255, 255, 255, 0); z-index: 99999; }
39
+ .di.modal {transition:all .15s linear; pointer-events:none;}
40
+ .di.modal .modal-window {margin:7vh auto 0; border-radius:4px; background-color: #fff; box-shadow:0 5px 10px rgba(0,0,0,0.2); overflow:hidden;}
41
+ .di.modal .modal-window {transition:margin .3s ease-out .2s, opacity .3s ease-out .2s; opacity:0;}
42
+ .di.modal .modal-header {padding:20px 30px; min-height:60px; cursor: move; font-size:20px; line-height:25px; border-bottom:1px solid #ddd;}
43
+ .di.modal .modal-content {padding:20px 30px; max-height:calc(80vh - 100px); overflow:auto; clear:both;}
44
+ .di.modal .modal-footer {margin:0px 0 0 0; text-align:right; padding:20px 30px; border-radius:0 0 4px 4px; border-top:1px solid #ddd;}
45
+
46
+ .di.modal.show {background-color:rgba(0,0,0,0.5); pointer-events:auto;}
47
+ .di.modal.show .modal-window {margin:10vh auto 0; opacity:1;}
48
+
49
+ /* Spinner */
50
+ .di.spinner {border: 2px solid #bababa; border-top: 2px solid var(--primary-color, #1a8ed3); border-radius:50%; animation: spin 1s linear infinite; flex-shrink:0;}
51
+ .di.spinner-wrapper {position:relative; height:100%; z-index:0;}
52
+ .di.spinner-wrapper .spinner-container {opacity:0; transition:opacity .1s ease; background-color:rgba(255,255,255,.75);}
53
+ .di.spinner-wrapper .spinner-container {position:absolute; left:0; right:0; top:0; bottom:0; z-index:1; visibility:hidden;}
54
+ .di.spinner-wrapper .spinner-container.visible {opacity:1; visibility:visible;}
55
+
56
+ @keyframes spin {
57
+ 0% { transform: rotate(0deg); }
58
+ 100% { transform: rotate(360deg); }
59
+ }
60
+
61
+ /* Checkbox */
62
+ .di.toggle { position: relative; display: inline-block; width: 60px; height: 30px; }
63
+ .di.toggle input { display: none; }
64
+ .di.toggle .switch { position: absolute; background-color: grey; border-radius: 15px; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; }
65
+ .di.toggle .switch:before { content: ''; width: 28px; height: 28px; background-color: white; position: absolute; right: 1px; top: 1px; border-radius: 14px;}
66
+ .di.toggle .switch, .di.toggle .switch:before { transition: transform 0.1s ease-out, background-color 0.05s ease-out 0.05s; }
67
+ .di.toggle input:checked + .switch:before { transform: translateX(0px); }
68
+ .di.toggle input + .switch:before { transform: translateX(-30px); }
69
+
70
+ .di.toggle-small { width: 40px; height: 20px; }
71
+ .di.toggle .switch-small:before { width: 18px; height: 18px; }
72
+ .di.toggle input + .switch-small:before { transform: translateX(-20px); }
73
+
74
+ .di.checkbox { cursor: pointer; }
75
+ .di.checkbox > input:disabled + div, .di.toggle > input:disabled + div { opacity: 0.4; cursor: auto; }
76
+ .di.checkbox > input { display: none; }
77
+ .di.checkbox .box, .di.checkbox .radio { display: inline-block; text-align: left; width: 16px; height: 16px; border: 1px solid black; vertical-align: middle; }
78
+ .di.checkbox .radio { border-radius: 10px; }
79
+ .di.checkbox input:checked + .box:before { content: '\2713'; /* checkbox tick */ left: -1px; top:0; position: relative; float: right; font-size: 14px; line-height: 14px; }
80
+ .di.checkbox input:checked + .radio:before { content: ''; display: block; position: relative; height: 6px; width: 6px; background-color: #222; border-radius: 3px; top: 4px; left: 4px; }
81
+ .di .textlabel { user-select: none; font-size: 12px; vertical-align: middle; padding-left: 5px; }
82
+
83
+ /* Label */
84
+ .di.label {height:22px; padding:0 10px; margin-right:6px; color: #333; border:1px solid #bbb; border-radius:20px; display:inline-flex; align-items:center; font-size:12px; white-space:nowrap;}
85
+
86
+ .di.label.removable {padding-right:0}
87
+ .di.label .remove {margin:0 2px 0 8px; width:18px; height:18px; display:flex; justify-content: center; align-items: center;}
88
+ .di.label .remove {background-color:rgba(0,0,0,0.3); border-radius:50%; cursor:pointer;}
89
+ .di.label .remove:hover {background-color:rgba(0,0,0,0.5);}
90
+ .di.label .remove:active {background-color:rgba(0,0,0,0.7);}
91
+ .di.label .remove img {flex-shrink:0;}
92
+
93
+ .di.label.danger {background-color:#e50000; border-color:transparent; color:#fff;}
94
+ .di.label.success {background-color:#00cc0a; border-color:transparent; color:#fff;}
95
+ .di.label.warning {background-color:#ffb400; border-color:transparent; color: #fff;}
96
+ .di.label.neutral {background-color:#ddd; border-color:transparent;}
97
+
98
+ .di.label.small {height:16px; font-size:11px;}
99
+ .di.label.small .remove {width:12px; height:12px;}
100
+ .di.label.small .remove img {width:10px}
101
+ .di.label.large {height:30px;}
102
+ .di.label.large .remove {width:24px; height:24px;}
103
+
104
+ .di.label.clickable {cursor:pointer;}
105
+
106
+ a .di.label {text-decoration:solid inherit underline; font-weight:normal;}
107
+ a .di.label:hover {background-color:rgba(0,0,0,.07); text-decoration:underline;}
108
+ a .di.label:active {background-color:rgba(0,0,0,.1);}
109
+
110
+ /* misc */
111
+ .clearfix::after {content:""; clear:both; display:block; visibility:hidden; height:0px;}
112
+ .disabled {opacity:0.35; pointer-events:none; cursor:default;}
113
+
114
+ /* Tabs */
115
+ .di.tabs {margin:5px 0 20px 0; border-bottom:1px solid #ddd; display:flex; flex-wrap:wrap; align-items:center;}
116
+ .di.tabs .item {padding:12px 15px; margin-bottom:-1px; font-size:14px; text-decoration:none; border-bottom:2px solid transparent; color:#666; background:none; border-top:0; border-left:0; border-right:0; border-radius:0; cursor:pointer;}
117
+ .di.tabs .item:hover {background-color:rgba(0, 0, 0, 0.07);}
118
+ .di.tabs .item:active {background-color:rgba(0, 0, 0, 0.1);}
119
+ .di.tabs .item.active, .dragging.item.active {font-weight:bold; color:#333; border-bottom:2px solid var(--primary-color, #1a8ed3); }
120
+ .di.tabs .item.disabled {opacity:0.35; pointer-events:none; cursor:default;}
121
+ .di.tabs .item .add {background:url('./svg/icon_add.svg') no-repeat center; padding:0 25px; background-size: 16px 16px;}
122
+ .dragging.item {padding:12px 15px; margin-bottom:-1px; font-size:14px; text-decoration:none; border-bottom:2px solid transparent; color:#666; background-color:rgba(0, 0, 0, 0.1); border-top:0; border-left:0; border-right:0; border-radius:0; cursor: move; white-space: nowrap;}
123
+ .draggable-area * { cursor: move;}
124
+ .di.tabs .tab-header, .dragging .tab-header { position: relative;}
125
+ .di.tabs .tab-header:after, .dragging .tab-header:after { position: absolute; content: ''; top: 0; bottom: 0; right: 0; left: 0; }
126
+
127
+ /* Accordion */
128
+ .di.accordion {width:auto;}
129
+ .di.accordion .item {border-bottom:1px solid #bbb;}
130
+ .di.accordion .head {display:flex; align-items:center; justify-content: space-between; transition:.1s all ease;}
131
+ .di.accordion .head:hover {background-color:rgba(0,0,0,.07); transition-duration: 0s;}
132
+ .di.accordion .head::before {content:''; position:absolute;display:inline-block; width:0; height:0; margin:0 0 0 3px; border-top:4px solid transparent; border-bottom:4px solid transparent; border-left:4px solid black;pointer-events:none;}
133
+ .di.accordion .head::before {transition:.1s all ease;}
134
+ .di.accordion .title {width:100%; padding:15px 15px 15px 20px; display:flex; align-items:center; cursor:pointer;}
135
+ .di.accordion .title * {margin:initial} /* h1, h2 etc. no IE11 */
136
+ .di.accordion .title span {margin-right:10px;}
137
+ .di.accordion .tools {padding:0 0 0 15px; display:flex; align-items:center;}
138
+ .di.accordion .cont {height:0px; overflow:hidden; padding:0 0 0 25px; opacity:.3; transition:.25s all ease; transform:scaleY(.90); transform-origin: top left;}
139
+ .di.accordion .item.open .cont {height:auto; padding:15px 0 15px 25px; opacity:1; transform:scaleY(1)}
140
+ .di.accordion .item.open .head:before {transform:rotate(90deg); transition:.3s ease;}
141
+ .di.accordion .item.open .head {border-bottom:1px dashed #eee;}
142
+ .di.accordion .accordion {background-color:rgba(0,0,0,.05);} /* nested */
143
+ .di.accordion h2 {margin-top:0px !important;}
144
+
145
+ /* Popup */
146
+ .di.popup {min-width:40px; margin-top:-3px; z-index:1000; top:0; left:0; background-color:#fff; border:1px solid rgba(0,0,0,.2); box-shadow:0 1px 3px rgba(0,0,0,0.2); border-radius:3px; opacity:0}
147
+ .di.popup {transition:opacity .1s ease, margin .1s ease;}
148
+ .di.popup-wrapper.hidden, .di.popup-wrapper.hidden > * {opacity: 0 !important; pointer-events: none;}
149
+ .di.popup-wrapper {transition: opacity 200ms ease;}
150
+
151
+ .di.popup[class*='bottom'],
152
+ .di.popup[class*='top'],
153
+ .di.popup[class*='right'],
154
+ .di.popup[class*='left'] {opacity:1;}
155
+ .di.popup[class*='bottom'] {margin-top:12px;}
156
+ .di.popup[class*='top'] {margin-top:-12px;}
157
+ .di.popup[class*='right'] {margin-left:12px;}
158
+ .di.popup[class*='left'] {margin-right:15px;}
159
+
160
+ .di.popup .popup-arrow {width:10px; height:10px; margin:0; background-color:#fff; position:absolute; z-index:0; border:1px solid rgba(0,0,0,0.2); border-right:none; border-bottom:none;}
161
+ .di.popup .popup-arrow[class*='bottom'] {top: -6px;}
162
+ .di.popup .popup-arrow[class*='top'] {bottom: -6px;}
163
+ .di.popup .popup-arrow[class*='left'] {right: -6px;}
164
+ .di.popup .popup-arrow[class*='right'] {left: -6px;}
165
+
166
+ .di.popup .popup-arrow[class*='bottom']::before {
167
+ border-bottom: none;
168
+ border-right: none;
169
+ transform: rotate(45deg);
170
+ }
171
+
172
+ .di.popup .popup-arrow[class*='top']::before {
173
+ border-bottom: none;
174
+ border-right: none;
175
+ transform: rotate(-135deg);
176
+ }
177
+
178
+ .di.popup .popup-arrow[class*='left']::before {
179
+ border-bottom: none;
180
+ border-right: none;
181
+ transform: rotate(135deg);
182
+ }
183
+
184
+ .di.popup .popup-arrow[class*='right']::before {
185
+ border-bottom: none;
186
+ border-right: none;
187
+ transform: rotate(-45deg);
188
+ }
189
+ .di.popup .popup-arrow, .di.popup .popup-arrow::before {
190
+ position: absolute;
191
+ width: 8px;
192
+ height: 8px;
193
+ background: inherit;
194
+ border: 1px solid rgba(0, 0, 0, 0.2)
195
+ }
196
+
197
+ .di.popup .popup-arrow {
198
+ visibility: hidden;
199
+ }
200
+
201
+ .di.popup .popup-arrow::before {
202
+ visibility: visible;
203
+ content: '';
204
+ }
205
+
206
+ .di.popup .popup-content {margin:10px;}
207
+
208
+ .di.popup.inverted {background-color:#333; box-shadow:none;}
209
+ .di.popup.inverted .popup-arrow {background-color:#333; border:none;}
210
+ .di.popup.inverted .popup-content {color:#fff;}
211
+ .di.popup.inverted a {color:#fff; text-decoration:none; vertical-align:middle;}
212
+ .di.popup.inverted a:hover {text-decoration:underline;}
213
+
214
+ /* Bubble */
215
+ .di.popup.bubble .bubble-content {padding:5px; white-space:nowrap; display:inline-block;}
216
+
217
+ /* Tooltip */
218
+ .di.popup.tooltip {transition:none; transition:opacity .1s ease;}
219
+ .di.popup.tooltip .tooltip-content{white-space:nowrap; display:inline-block; line-height:12px;}
@@ -0,0 +1,3 @@
1
+ <svg id="icon-add_24_sga" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <polygon id="plus" points="20 10 14 10 14 4 10 4 10 10 4 10 4 14 10 14 10 20 14 20 14 14 20 14 20 10"/>
3
+ </svg>
@@ -0,0 +1,50 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
2
+ <defs>
3
+ <style>
4
+ .cls-1 {
5
+ fill: #fff;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g>
10
+ <g>
11
+ <rect class="cls-1" x="3.5" y="7.5" width="2" height="2"/>
12
+ <path d="M5,8V9H4V8H5M6,7H3v3H6V7Z"/>
13
+ </g>
14
+ <g>
15
+ <rect class="cls-1" x="8" y="7" width="1" height="1"/>
16
+ <polygon points="9 7 8 7 8 8 9 8 9 7 9 7"/>
17
+ </g>
18
+ <g>
19
+ <rect class="cls-1" x="10" y="7" width="1" height="1"/>
20
+ <polygon points="11 7 10 7 10 8 11 8 11 7 11 7"/>
21
+ </g>
22
+ <g>
23
+ <rect class="cls-1" x="12" y="7" width="1" height="1"/>
24
+ <polygon points="13 7 12 7 12 8 13 8 13 7 13 7"/>
25
+ </g>
26
+ <g>
27
+ <rect class="cls-1" x="8" y="9" width="1" height="1"/>
28
+ <polygon points="9 9 8 9 8 10 9 10 9 9 9 9"/>
29
+ </g>
30
+ <g>
31
+ <rect class="cls-1" x="8" y="11" width="1" height="1"/>
32
+ <polygon points="9 11 8 11 8 12 9 12 9 11 9 11"/>
33
+ </g>
34
+ <g>
35
+ <rect class="cls-1" x="6" y="11" width="1" height="1"/>
36
+ <polygon points="7 11 6 11 6 12 7 12 7 11 7 11"/>
37
+ </g>
38
+ <g>
39
+ <rect class="cls-1" x="4" y="11" width="1" height="1"/>
40
+ <polygon points="5 11 4 11 4 12 5 12 5 11 5 11"/>
41
+ </g>
42
+ <g>
43
+ <rect class="cls-1" x="10.5" y="9.5" width="2" height="2"/>
44
+ <path d="M12,10v1H11V10h1m1-1H10v3h3V9Z"/>
45
+ </g>
46
+ <path d="M15.31,2H.69A.69.69,0,0,0,0,2.69V14.31A.69.69,0,0,0,.69,15H15.31a.69.69,0,0,0,.69-.69V2.69A.69.69,0,0,0,15.31,2ZM14,13H2V6H14Z"/>
47
+ </g>
48
+ <rect x="3" width="3" height="2"/>
49
+ <rect x="10" width="3" height="2"/>
50
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
2
+ <g>
3
+ <polygon points="3.59 8 9.94 1.65 11.35 3.06 6.41 8 11.35 12.94 9.94 14.35 3.59 8"/>
4
+ <path d="M9.94,2.35l.71.71L6.41,7.29,5.71,8l.7.71,4.24,4.23-.71.71L4.29,8,9.94,2.35m0-1.41L2.88,8l7.06,7.06,2.12-2.12L7.12,8l4.94-4.94L9.94.94Z"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
2
+ <g>
3
+ <polygon points="3.59 12.94 8.53 8 3.59 3.06 5 1.65 11.35 8 5 14.35 3.59 12.94"/>
4
+ <path d="M5,2.35,10.65,8,5,13.65l-.71-.71L8.53,8.71,9.23,8l-.7-.71L4.29,3.06,5,2.35M5,.94,2.88,3.06,7.82,8,2.88,12.94,5,15.06,12.06,8,5,.94Z"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg id="icon-cross_24_sga" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <polygon id="icon-cross_24" points="20 6.28 17.87 4 12 9.78 6.13 4 4 6.28 9.78 11.97 4 17.66 6.13 19.93 12 14.15 17.87 19.93 20 17.66 14.22 11.97 20 6.28"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
2
+ <polygon points="7.92 12 2.84 7 13 7 7.92 12"/>
3
+ <rect x="5" y="2" width="6" height="5"/>
4
+ <rect x="2" y="14" width="12" height="1"/>
5
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <g>
3
+ <path d="M22.1,4.91a3,3,0,0,0-3-3H6.44a2.4,2.4,0,0,1,1.34-.4h12.6A2.12,2.12,0,0,1,22.5,3.62V17.26a1.42,1.42,0,0,1-.4,1Z"/>
4
+ <path d="M20.38,1H7.78A3,3,0,0,0,5.26,2.4H19.09A2.51,2.51,0,0,1,21.6,4.91V19.12A1.94,1.94,0,0,0,23,17.26V3.62A2.62,2.62,0,0,0,20.38,1Z"/>
5
+ </g>
6
+ <g>
7
+ <path d="M4,21.5A1.5,1.5,0,0,1,2.5,20V5.8A1.5,1.5,0,0,1,4,4.3H18.2a1.5,1.5,0,0,1,1.5,1.5V20a1.5,1.5,0,0,1-1.5,1.5ZM9.5,18a.5.5,0,0,0,.5.5h2a.5.5,0,0,0,.5-.5V14.5H16a.5.5,0,0,0,.5-.5V12a.5.5,0,0,0-.5-.5H12.5V8a.5.5,0,0,0-.5-.5H10a.5.5,0,0,0-.5.5v3.5H6a.5.5,0,0,0-.5.5v2a.5.5,0,0,0,.5.5H9.5Z"/>
8
+ <path d="M18.2,4.8a1,1,0,0,1,1,1V20a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V5.8a1,1,0,0,1,1-1H18.2M9,11H6a1,1,0,0,0-1,1v2a1,1,0,0,0,1,1H9v3a1,1,0,0,0,1,1h2a1,1,0,0,0,1-1V15h3a1,1,0,0,0,1-1V12a1,1,0,0,0-1-1H13V8a1,1,0,0,0-1-1H10A1,1,0,0,0,9,8v3m9.2-7.2H4a2,2,0,0,0-2,2V20a2,2,0,0,0,2,2H18.2a2,2,0,0,0,2-2V5.8a2,2,0,0,0-2-2ZM6,14V12h4V8h2v4h4v2H12v4H10V14Z"/>
9
+ </g>
10
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg id="icon-edit-24_sga" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <g id="stift">
3
+ <path d="M7.35,12.65a.5.5,0,0,0,0,.7l3.3,3.3a.5.5,0,0,0,.7,0l8.3-8.3A1.4,1.4,0,0,0,20,7.5v-1a1.4,1.4,0,0,0-.35-.85l-1.3-1.3A1.4,1.4,0,0,0,17.5,4h-1a1.4,1.4,0,0,0-.85.35Z"/>
4
+ </g>
5
+ <path d="M5.9,14.49c.06-.27.26-.33.45-.14l3.3,3.3c.19.19.13.39-.14.45l-4,.8a.3.3,0,0,1-.39-.39Z"/>
6
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
2
+ width="24px" height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 50 50;" xml:space="preserve">
3
+ <rect x="0" y="0" width="5" height="10" fill="#000">
4
+ <animateTransform attributeType="xml"
5
+ attributeName="transform" type="translate"
6
+ values="0 0; 0 14; 0 0"
7
+ begin="0" dur="0.6s" repeatCount="indefinite" />
8
+ </rect>
9
+ <rect x="9" y="0" width="5" height="10" fill="#000">
10
+ <animateTransform attributeType="xml"
11
+ attributeName="transform" type="translate"
12
+ values="0 0; 0 14; 0 0"
13
+ begin="0.2s" dur="0.6s" repeatCount="indefinite" />
14
+ </rect>
15
+ <rect x="19" y="0" width="5" height="10" fill="#000">
16
+ <animateTransform attributeType="xml"
17
+ attributeName="transform" type="translate"
18
+ values="0 0; 0 14; 0 0"
19
+ begin="0.4s" dur="0.6s" repeatCount="indefinite" />
20
+ </rect>
21
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg data-name="icon_fullscreen_sga" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
2
+ <polygon id="ecke" points="2 14 2 10 0 10 0 16 6 16 6 14 2 14"/>
3
+ <polygon id="ecke-2" data-name="ecke" points="2 2 6 2 6 0 0 0 0 6 2 6 2 2"/>
4
+ <polygon id="ecke-3" data-name="ecke" points="14 14 10 14 10 16 16 16 16 10 14 10 14 14"/>
5
+ <polygon id="ecke-4" data-name="ecke" points="10 0 10 2 14 2 14 6 16 6 16 0 10 0"/>
6
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg id="icon-gear-24_sga" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <g id="icon-gear-24_sga-2" data-name="icon-gear-24_sga">
3
+ <path d="M22.82,14.06A1.25,1.25,0,0,0,24,13,7.66,7.66,0,0,0,24,12,7.66,7.66,0,0,0,24,11a1.25,1.25,0,0,0-1.13-1l-1.09,0A1.49,1.49,0,0,1,20.44,9c-.15-.47-.44-2-.07-2.37l.74-.81a1.16,1.16,0,0,0,0-1.5L19.7,2.87a1.16,1.16,0,0,0-1.5,0l-.81.74a1.5,1.5,0,0,1-1.54.27c-.44-.23-1.72-1.08-1.74-1.63l0-1.09A1.25,1.25,0,0,0,13,.05a7.66,7.66,0,0,0-1,0,7.66,7.66,0,0,0-1,.05,1.25,1.25,0,0,0-1,1.13l0,1.09A1.52,1.52,0,0,1,9,3.56c-.47.15-2,.44-2.37.07L5.8,2.89a1.16,1.16,0,0,0-1.5,0L2.86,4.3a1.18,1.18,0,0,0,0,1.5l.74.81A1.5,1.5,0,0,1,3.9,8.15c-.23.44-1.08,1.72-1.63,1.74l-1.09,0A1.25,1.25,0,0,0,.05,11a7.66,7.66,0,0,0,0,1,7.66,7.66,0,0,0,.05,1,1.25,1.25,0,0,0,1.13,1l1.09,0A1.47,1.47,0,0,1,3.55,15c.16.48.45,2,.08,2.37l-.74.81a1.16,1.16,0,0,0,0,1.5L4.3,21.13a1.16,1.16,0,0,0,1.5,0l.81-.74a1.5,1.5,0,0,1,1.54-.27c.44.23,1.72,1.08,1.75,1.63l0,1.09A1.25,1.25,0,0,0,11,24,7.66,7.66,0,0,0,12,24,7.66,7.66,0,0,0,13,24a1.25,1.25,0,0,0,1-1.13l0-1.09A1.49,1.49,0,0,1,15,20.44c.47-.15,2-.44,2.37-.07l.81.74a1.16,1.16,0,0,0,1.5,0l1.43-1.43a1.16,1.16,0,0,0,0-1.5l-.74-.81a1.5,1.5,0,0,1-.27-1.54c.23-.44,1.08-1.72,1.63-1.74ZM12,15.5A3.5,3.5,0,1,1,15.5,12,3.5,3.5,0,0,1,12,15.5Z"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg id="Icon_help" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path id="icon_help-2" data-name="icon_help" d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm1,16H11V15h2Zm1.7-6.26a4.85,4.85,0,0,1-.49.81l-1,1.37a1.36,1.36,0,0,0-.18.34,1,1,0,0,0-.07.38L13,14H11l.1-.49a2,2,0,0,1,.13-.77,3.18,3.18,0,0,1,.4-.69l1-1.33a3.21,3.21,0,0,0,.29-.46,1.19,1.19,0,0,0,.11-.47,1.17,1.17,0,0,0-.3-.82,1.07,1.07,0,0,0-.83-.33A1,1,0,0,0,11.1,9a1.25,1.25,0,0,0-.28.83H9a2.94,2.94,0,0,1,.23-1.17,2.45,2.45,0,0,1,.63-.88,2.9,2.9,0,0,1,.93-.55A3.13,3.13,0,0,1,11.94,7a3.31,3.31,0,0,1,1.13.19,2.82,2.82,0,0,1,.94.54,2.62,2.62,0,0,1,.65.88A3,3,0,0,1,14.9,9.8,2.16,2.16,0,0,1,14.7,10.74Z" style="opacity: 0.2"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-name="icon_key" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 27.02 27">
2
+ <path d="M35.07,16.5a8.52,8.52,0,0,0-7.69,12L17.2,38.8a2.46,2.46,0,0,0,0,3.46,2.41,2.41,0,0,0,3.42,0l1.69-1.7,2.91,2.94L31,37.63l-2.92-3,2.44-2.46a8.31,8.31,0,0,0,4.51,1.33,8.53,8.53,0,0,0,0-17Zm0,3.91A4.62,4.62,0,1,1,30.5,25,4.6,4.6,0,0,1,35.07,20.41Z" transform="translate(-16.49 -16.5)"/>
3
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
2
+ <defs>
3
+ <style>
4
+ .cls-1 {
5
+ fill: #fff;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <g>
10
+ <circle class="cls-1" cx="5.5" cy="5.5" r="4.5"/>
11
+ <path d="M5.5,2A3.5,3.5,0,1,1,2,5.5,3.5,3.5,0,0,1,5.5,2m0-1A4.5,4.5,0,1,0,10,5.5,4.49,4.49,0,0,0,5.5,1Z"/>
12
+ </g>
13
+ <rect x="6.79" y="10.04" width="7.74" height="2.16" transform="translate(10.98 -4.28) rotate(45)"/>
14
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
2
+ <circle cx="12.5" cy="7.5" r="1.5"/>
3
+ <circle cx="8.5" cy="7.5" r="1.5"/>
4
+ <circle cx="4.5" cy="7.5" r="1.5"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
2
+ <circle cx="7.5" cy="3.5" r="1.5"/>
3
+ <circle cx="7.5" cy="7.5" r="1.5"/>
4
+ <circle cx="7.5" cy="11.5" r="1.5"/>
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <g id="Pfeilende">
3
+ <path d="M24,10H15l9-8.93Z"/>
4
+ </g>
5
+ <path d="M18.45,18.78A9.33,9.33,0,0,1,2.62,14.86,9.8,9.8,0,0,1,8.89,2.69,9.42,9.42,0,0,1,20.72,9.14H23A11.72,11.72,0,0,0,11.68,0,11.74,11.74,0,0,0,.34,9.14,12,12,0,0,0,8.89,23.65a11.43,11.43,0,0,0,11.16-3.31Z"/>
6
+ </svg>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="icon_star_16" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
3
+ <path id="star" d="M8,0l2.45,4.97,5.55,.76-4.04,3.83,.99,5.44-4.94-2.61-4.94,2.61,.99-5.44L0,5.73l5.55-.76L8,0Z"/>
4
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg id="upload_cloud_32" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <path id="wolke" d="M25.08,12.31A9.54,9.54,0,0,0,7.26,9.76,7.64,7.64,0,0,0,8.08,25H24.63a6.35,6.35,0,0,0,.45-12.69Z"/>
3
+ <g id="Pfeil">
4
+ <polyline points="10 20 16 14 22 20" style="fill: none;stroke: #fff;stroke-linecap: round;stroke-miterlimit: 10;stroke-width: 2px"/>
5
+ <rect x="14" y="15" width="4" height="11" style="fill: #fff"/>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <defs>
3
+ <style>
4
+ .cls-1 {
5
+ fill: #fff;
6
+ }
7
+ </style>
8
+ </defs>
9
+ <path d="M11.22,2.93,1,20.82a1,1,0,0,0,.86,1.5H22.32a1,1,0,0,0,.87-1.5L13,2.93A1,1,0,0,0,11.22,2.93Z"/>
10
+ <rect class="cls-1" x="10.6" y="16.34" width="2.99" height="2.99"/>
11
+ <rect class="cls-1" x="10.6" y="8.88" width="2.99" height="5.98"/>
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
2
+ <polygon points="7.5 10 4 6 11 6 7.5 10"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
2
+ <polygon points="6 8.02 10 12 10 4.04 6 8.02"/>
3
+ </svg>