@demos-europe/demosplan-ui 0.4.14 → 0.5.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.
Files changed (531) hide show
  1. package/.idea/codeStyles/Project.xml +62 -0
  2. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  3. package/.idea/inspectionProfiles/Project_Default.xml +6 -0
  4. package/.idea/shelf/Uncommitted_changes_before_Checkout_at_12_05_2025_14_15_[Changes]/shelved.patch +199 -0
  5. package/.idea/shelf/Uncommitted_changes_before_Checkout_at_12_05_2025_14_15__Changes_.xml +4 -0
  6. package/.idea/shelf/Uncommitted_changes_before_Update_at_09_05_2025_14_28_[Changes]/shelved.patch +295 -0
  7. package/.idea/shelf/Uncommitted_changes_before_Update_at_12_05_2025_14_16_[Changes]/shelved.patch +199 -0
  8. package/.idea/shelf/Uncommitted_changes_before_Update_at_12_05_2025_14_16__Changes_.xml +4 -0
  9. package/.idea/vcs.xml +1 -1
  10. package/.idea/workspace.xml +935 -0
  11. package/.yarn/install-state.gz +0 -0
  12. package/CHANGELOG.md +30 -0
  13. package/Dockerfile +14 -0
  14. package/README.md +25 -7
  15. package/dist/demosplan-ui.umd.js +1 -1
  16. package/{docker-compose.local.yml → docker-compose.yml} +7 -5
  17. package/jest/setup.js +11 -1
  18. package/package.json +20 -21
  19. package/postcss.config.mjs +5 -0
  20. package/scripts/buildTokens.js +23 -1
  21. package/scripts/utils/transformTokens.js +200 -1
  22. package/src/components/DpAccordion/{DpAccordion.stories.mdx → DpAccordion.mdx} +8 -12
  23. package/src/components/DpAccordion/DpAccordion.stories.tsx +33 -13
  24. package/src/components/DpAutocomplete/DpAutocomplete.mdx +13 -0
  25. package/src/components/DpAutocomplete/DpAutocomplete.stories.tsx +20 -21
  26. package/src/components/DpAutocomplete/DpAutocomplete.vue +378 -95
  27. package/src/components/DpBadge/DpBadge.mdx +25 -0
  28. package/src/components/DpBadge/DpBadge.stories.tsx +86 -9
  29. package/src/components/DpBulkEditHeader/DpBulkEditHeader.mdx +18 -0
  30. package/src/components/DpBulkEditHeader/DpBulkEditHeader.stories.tsx +78 -81
  31. package/src/components/DpButton/DpButton.mdx +49 -0
  32. package/src/components/DpButton/DpButton.stories.tsx +112 -19
  33. package/src/components/DpButton/DpButton.vue +6 -5
  34. package/src/components/DpButtonIcon/DpButtonIcon.mdx +8 -0
  35. package/src/components/DpButtonRow/DpButtonRow.mdx +25 -0
  36. package/src/components/DpButtonRow/DpButtonRow.stories.tsx +110 -31
  37. package/src/components/DpButtonRow/DpButtonRow.vue +1 -1
  38. package/src/components/DpCard/DpCard.mdx +12 -0
  39. package/src/components/DpCard/DpCard.stories.tsx +7 -8
  40. package/src/components/DpCard/DpCard.vue +1 -1
  41. package/src/components/DpCheckbox/DpCheckbox.mdx +47 -0
  42. package/src/components/DpCheckbox/DpCheckbox.stories.tsx +108 -23
  43. package/src/components/DpCheckboxGroup/DpCheckboxGroup.mdx +22 -0
  44. package/src/components/DpCheckboxGroup/DpCheckboxGroup.stories.tsx +72 -19
  45. package/src/components/DpCheckboxGroup/DpCheckboxGroup.vue +1 -1
  46. package/src/components/DpColumnSelector/DpColumnSelector.mdx +21 -0
  47. package/src/components/DpColumnSelector/DpColumnSelector.stories.tsx +73 -16
  48. package/src/components/DpColumnSelector/DpColumnSelector.vue +6 -1
  49. package/src/components/DpConfirmDialog/DpConfirmDialog.mdx +18 -0
  50. package/src/components/DpConfirmDialog/DpConfirmDialog.stories.tsx +64 -17
  51. package/src/components/DpContextualHelp/DpContextualHelp.mdx +25 -0
  52. package/src/components/DpContextualHelp/DpContextualHelp.stories.tsx +68 -9
  53. package/src/components/DpDataTable/DpDataTable.mdx +33 -0
  54. package/src/components/DpDataTable/DpDataTable.stories.tsx +227 -68
  55. package/src/components/DpDataTable/DpDataTable.vue +4 -4
  56. package/src/components/DpDataTableExtended/DpDataTableExtended.mdx +28 -0
  57. package/src/components/DpDataTableExtended/DpDataTableExtended.stories.tsx +209 -0
  58. package/src/components/DpDateRangePicker/DpDateRangePicker.mdx +21 -0
  59. package/src/components/DpDateRangePicker/DpDateRangePicker.stories.tsx +87 -16
  60. package/src/components/DpDatepicker/DpDatepicker.mdx +30 -0
  61. package/src/components/DpDatepicker/DpDatepicker.stories.tsx +98 -11
  62. package/src/components/DpDatetimePicker/DpDatetimePicker.mdx +35 -0
  63. package/src/components/DpDatetimePicker/DpDatetimePicker.stories.tsx +107 -13
  64. package/src/components/DpDatetimePicker/DpDatetimePicker.vue +4 -2
  65. package/src/components/DpDetails/DpDetails.mdx +23 -0
  66. package/src/components/DpDetails/DpDetails.stories.tsx +83 -18
  67. package/src/components/DpDraggable/DpDraggable.mdx +26 -0
  68. package/src/components/DpDraggable/DpDraggable.stories.tsx +220 -25
  69. package/src/components/DpEditableList/{DpEditableList.stories.mdx → DpEditableList.mdx} +7 -6
  70. package/src/components/DpEditableList/DpEditableList.stories.tsx +22 -22
  71. package/src/components/DpEditableList/DpEditableList.vue +1 -1
  72. package/src/components/DpEditor/DpEditor.mdx +24 -0
  73. package/src/components/DpEditor/DpEditor.stories.tsx +9 -9
  74. package/src/components/DpEditor/DpEditor.vue +3 -3
  75. package/src/components/DpFlyout/DpFlyout.mdx +14 -0
  76. package/src/components/DpFlyout/DpFlyout.stories.tsx +28 -7
  77. package/src/components/DpFlyout/DpFlyout.vue +1 -1
  78. package/src/components/DpFormRow/DpFormRow.mdx +17 -0
  79. package/src/components/DpFormRow/DpFormRow.stories.tsx +7 -3
  80. package/src/components/DpIcon/DpIcon.mdx +20 -0
  81. package/src/components/DpIcon/DpIcon.stories.tsx +136 -11
  82. package/src/components/DpIcon/DpIcon.vue +3 -9
  83. package/src/components/DpIcon/util/iconConfig.ts +3 -0
  84. package/src/components/DpInlineNotification/DpInlineNotification.mdx +26 -0
  85. package/src/components/DpInlineNotification/DpInlineNotification.stories.tsx +30 -8
  86. package/src/components/DpInput/DpInput.mdx +52 -0
  87. package/src/components/DpInput/DpInput.stories.tsx +119 -14
  88. package/src/components/DpInput/DpInput.vue +3 -3
  89. package/src/components/DpLabel/DpLabel.mdx +38 -0
  90. package/src/components/DpLabel/DpLabel.stories.tsx +155 -10
  91. package/src/components/DpLoading/DpLoading.mdx +34 -0
  92. package/src/components/DpLoading/DpLoading.stories.tsx +69 -8
  93. package/src/components/DpModal/DpModal.mdx +38 -0
  94. package/src/components/DpModal/DpModal.stories.tsx +110 -27
  95. package/src/components/DpModal/DpModal.vue +4 -0
  96. package/src/components/DpMultiselect/DpMultiselect.mdx +60 -0
  97. package/src/components/DpMultiselect/DpMultiselect.stories.tsx +158 -28
  98. package/src/components/DpMultiselect/DpMultiselect.vue +114 -3
  99. package/src/components/DpMultistepNav/DpMultistepNav.mdx +19 -0
  100. package/src/components/DpMultistepNav/DpMultistepNav.stories.tsx +43 -21
  101. package/src/components/DpMultistepNav/DpMultistepNav.vue +2 -0
  102. package/src/components/DpNotification/DpNotification.mdx +51 -0
  103. package/src/components/DpNotification/DpNotification.stories.tsx +122 -14
  104. package/src/components/DpPager/DpPager.mdx +18 -0
  105. package/src/components/DpPager/DpPager.stories.tsx +38 -14
  106. package/src/components/DpPager/DpPager.vue +3 -1
  107. package/src/components/DpProgressBar/{DpProgressBar.stories.mdx → DpProgressBar.mdx} +13 -31
  108. package/src/components/DpProgressBar/DpProgressBar.stories.tsx +44 -11
  109. package/src/components/DpRadio/DpRadio.mdx +28 -0
  110. package/src/components/DpRadio/DpRadio.stories.tsx +110 -13
  111. package/src/components/DpRadio/DpRadio.vue +4 -0
  112. package/src/components/DpResettableInput/DpResettableInput.mdx +16 -0
  113. package/src/components/DpResettableInput/DpResettableInput.stories.tsx +64 -22
  114. package/src/components/DpSearchField/DpSearchField.mdx +10 -0
  115. package/src/components/DpSearchField/DpSearchField.stories.tsx +89 -13
  116. package/src/components/DpSelect/DpSelect.mdx +24 -0
  117. package/src/components/DpSelect/DpSelect.stories.tsx +161 -16
  118. package/src/components/DpSkeletonBox/DpSkeletonBox.mdx +35 -0
  119. package/src/components/DpSkeletonBox/DpSkeletonBox.stories.tsx +81 -5
  120. package/src/components/DpSlidebar/DpSlidebar.mdx +31 -0
  121. package/src/components/DpSlidebar/DpSlidebar.stories.tsx +37 -23
  122. package/src/components/DpSlidingPagination/DpSlidingPagination.mdx +36 -0
  123. package/src/components/DpSlidingPagination/DpSlidingPagination.stories.tsx +62 -16
  124. package/src/components/DpSplitButton/DpSplitButton.mdx +9 -0
  125. package/src/components/DpStickyElement/DpStickyElement.mdx +36 -0
  126. package/src/components/DpStickyElement/DpStickyElement.stories.tsx +112 -32
  127. package/src/components/DpTabs/DpTabs.mdx +39 -0
  128. package/src/components/DpTabs/DpTabs.stories.tsx +143 -33
  129. package/src/components/DpTextArea/DpTextArea.mdx +84 -0
  130. package/src/components/DpTextArea/DpTextArea.stories.tsx +272 -9
  131. package/src/components/DpTimePicker/DpTimePicker.mdx +48 -0
  132. package/src/components/DpTimePicker/DpTimePicker.stories.tsx +163 -15
  133. package/src/components/DpToggle/DpToggle.mdx +22 -0
  134. package/src/components/DpToggle/DpToggle.stories.tsx +61 -11
  135. package/src/components/DpTooltip/DpTooltip.mdx +50 -0
  136. package/src/components/DpTooltip/DpTooltip.stories.tsx +213 -22
  137. package/src/components/DpTooltip/utils/tooltip.js +1 -1
  138. package/src/components/DpTransitionExpand/DpTransitionExpand.mdx +18 -0
  139. package/src/components/DpTransitionExpand/DpTransitionExpand.stories.tsx +65 -0
  140. package/src/components/DpTreeList/DpTreeList.mdx +104 -0
  141. package/src/components/DpTreeList/DpTreeList.stories.tsx +470 -90
  142. package/src/components/DpTreeList/DpTreeList.vue +58 -6
  143. package/src/components/DpUploadFiles/DpUploadFiles.mdx +42 -0
  144. package/src/components/DpUploadFiles/DpUploadFiles.stories.tsx +164 -31
  145. package/src/components/DpUploadFiles/DpUploadFiles.vue +12 -0
  146. package/src/components/DpVideoPlayer/DpVideoPlayer.mdx +47 -0
  147. package/src/components/DpVideoPlayer/DpVideoPlayer.stories.tsx +272 -29
  148. package/src/components/index.js +0 -2
  149. package/src/composables/SanitizeHtml/SanitizeHtml.js +16 -0
  150. package/src/composables/index.js +5 -0
  151. package/src/directives/CleanHtml/{CleanHtml.stories.mdx → CleanHtml.mdx} +24 -18
  152. package/src/directives/Tooltip/Tooltip.js +1 -1
  153. package/src/directives/Tooltip/{Tooltip.stories.mdx → Tooltip.mdx} +9 -10
  154. package/src/index.js +3 -0
  155. package/styles/theme.css +11 -0
  156. package/styles/utilities.css +30 -0
  157. package/tailwind.config.js +4 -3
  158. package/tokens/dist/css/theme.css +513 -0
  159. package/tokens/dist/js/boxShadow.js +5 -5
  160. package/tokens/dist/js/breakpoints.js +1 -1
  161. package/tokens/dist/js/color.brand.js +1 -1
  162. package/tokens/dist/js/color.data.js +1 -1
  163. package/tokens/dist/js/color.palette.js +1 -1
  164. package/tokens/dist/js/color.ui.js +1 -1
  165. package/tokens/dist/js/fontSize.js +1 -1
  166. package/tokens/dist/js/rounded.js +10 -10
  167. package/tokens/dist/js/space.js +1 -1
  168. package/tokens/dist/js/zIndex.js +1 -1
  169. package/tokens/dist/scss/_boxShadow.scss +2 -6
  170. package/tokens/dist/scss/_breakpoints.scss +1 -1
  171. package/tokens/dist/scss/_color.brand.scss +1 -1
  172. package/tokens/dist/scss/_color.data.scss +1 -1
  173. package/tokens/dist/scss/_color.palette.scss +1 -1
  174. package/tokens/dist/scss/_color.ui.scss +1 -1
  175. package/tokens/dist/scss/_fontSize.scss +1 -1
  176. package/tokens/dist/scss/_rounded.scss +5 -5
  177. package/tokens/dist/scss/_space.scss +1 -1
  178. package/tokens/dist/scss/_zIndex.scss +1 -1
  179. package/tokens/dist/tailwind/boxShadow.js +1 -1
  180. package/tokens/dist/tailwind/rounded.js +2 -2
  181. package/tokens/src/boxShadow.json +1 -21
  182. package/tokens/src/rounded.json +5 -5
  183. package/tokens/tokens._overview.mdx +169 -0
  184. package/tokens/tokens.boxShadow.mdx +98 -0
  185. package/tokens/tokens.breakpoints.mdx +97 -0
  186. package/tokens/tokens.color.mdx +159 -0
  187. package/tokens/tokens.fontSize.mdx +94 -0
  188. package/tokens/tokens.rounded.mdx +89 -0
  189. package/tokens/tokens.space.mdx +103 -0
  190. package/tokens/tokens.zIndex.mdx +81 -0
  191. package/.idea/demosplan-ui.iml +0 -11
  192. package/.idea/git_toolbox_blame.xml +0 -6
  193. package/.idea/git_toolbox_prj.xml +0 -15
  194. package/.idea/material_theme_project_new.xml +0 -13
  195. package/.idea/modules.xml +0 -8
  196. package/.idea/sonarlint/issuestore/0/2/0233f8559e74312ed5074ade1be1aea02e6e4f1e +0 -0
  197. package/.idea/sonarlint/issuestore/0/2/02d5146f94659f11c56f0ea1d9c504ff9492b546 +0 -0
  198. package/.idea/sonarlint/issuestore/0/2/02f4902c3db5247c732bde5aaf0d4fb55363c3b1 +0 -3
  199. package/.idea/sonarlint/issuestore/0/3/0343acf33ca1b061164f9846ff8ce30429205a2a +0 -0
  200. package/.idea/sonarlint/issuestore/0/4/04d5869ea32abbf6abf5a3cb9a671637ac2e345b +0 -0
  201. package/.idea/sonarlint/issuestore/0/9/0918cbb76f2c44f223706cec9d31a32cd1177ce4 +0 -0
  202. package/.idea/sonarlint/issuestore/0/9/091aff741808a09242f252264b14f4a9adaa5305 +0 -0
  203. package/.idea/sonarlint/issuestore/0/b/0b63533e07c8b10a8fbfe7f35df1bffec8103e14 +0 -0
  204. package/.idea/sonarlint/issuestore/0/c/0c0fd6a370cd10350462b46937e98f903bcb1435 +0 -0
  205. package/.idea/sonarlint/issuestore/0/e/0e600c187f4cf8bd0dd6b678f55067a8300ab570 +0 -0
  206. package/.idea/sonarlint/issuestore/0/f/0f43007644f06a63afbfbfc129aadd61bf40318a +0 -0
  207. package/.idea/sonarlint/issuestore/1/4/14148858b7b4a0aa23ddfdc41ef62be2db925c70 +0 -0
  208. package/.idea/sonarlint/issuestore/1/5/15ff6a89ff653ef3176ddb9c5e0b59c16c2db949 +0 -0
  209. package/.idea/sonarlint/issuestore/1/6/169d7dbe9a819ce675ee66de130c5a7c92bb763d +0 -0
  210. package/.idea/sonarlint/issuestore/1/8/18a1ebb3a44ad977a5cfa60b6620a47ba00163a3 +0 -0
  211. package/.idea/sonarlint/issuestore/1/f/1fd3ecff7dd864e5b00c14a4333d8cde8c9faf11 +0 -0
  212. package/.idea/sonarlint/issuestore/2/0/204a133d39c4a2c7b86de23f541f342e0a7a3234 +0 -0
  213. package/.idea/sonarlint/issuestore/2/4/2491406c07bfc2b0f7ed8e010e56d6e468c374d0 +0 -0
  214. package/.idea/sonarlint/issuestore/2/5/257d0fa8d58da6d96f5a7af9724b2e1c92c62a2d +0 -3
  215. package/.idea/sonarlint/issuestore/2/8/282dcb1e4436703724dd35bb567086834c3ebdb4 +0 -3
  216. package/.idea/sonarlint/issuestore/2/a/2aeb7bd71ee8453ff4601a1fc8fcd4fa9c5fe355 +0 -0
  217. package/.idea/sonarlint/issuestore/2/c/2c25e229323612e7988c659ad7b51c7b1e2b2403 +0 -0
  218. package/.idea/sonarlint/issuestore/2/f/2fa1946a2afc952506e41d87833ed29401fc29a0 +0 -0
  219. package/.idea/sonarlint/issuestore/3/4/3463c59843592ad2a00c54f39e2943583bd6fff9 +0 -0
  220. package/.idea/sonarlint/issuestore/3/9/390f31a969ba7940070bf32aac2a0d1f7b7bd78b +0 -0
  221. package/.idea/sonarlint/issuestore/3/e/3ebc20bbfa3c33cf20481a2de7591c997c68abb9 +0 -0
  222. package/.idea/sonarlint/issuestore/4/1/417425bfa2cef1f22539e792dcb0a7f7784f9604 +0 -0
  223. package/.idea/sonarlint/issuestore/4/1/41ac9772c7dd3fc038485f99106b427a5e28f2e3 +0 -0
  224. package/.idea/sonarlint/issuestore/4/4/44d3ca69a31c68c4d920b1fbb0083732713d2690 +0 -2
  225. package/.idea/sonarlint/issuestore/4/8/48a8ec70d252121fbc7df4e8a45044e964b5d6b7 +0 -0
  226. package/.idea/sonarlint/issuestore/4/9/49e951d8246d0914f9d10b3955a7178866cfcee9 +0 -0
  227. package/.idea/sonarlint/issuestore/4/d/4def76d1eea91e36f7789929705c032be6df27cd +0 -0
  228. package/.idea/sonarlint/issuestore/4/f/4f40ac4df99b3f8bbd80db9b729d3b4b401623eb +0 -0
  229. package/.idea/sonarlint/issuestore/4/f/4f4bba1840f039e57f25bbd19ec0e20c15fc0e1d +0 -0
  230. package/.idea/sonarlint/issuestore/5/1/51f466e675bcd7ca84bf6287bab7404cde26db22 +0 -0
  231. package/.idea/sonarlint/issuestore/5/2/5222c3d19fd979fed770b7f3664147b2ed16b230 +0 -0
  232. package/.idea/sonarlint/issuestore/5/2/52cb9deee3ee8b8add01ec855fc4a45818ac7638 +0 -5
  233. package/.idea/sonarlint/issuestore/5/3/53585a096fe3a3b96321113856ae62602995a33b +0 -0
  234. package/.idea/sonarlint/issuestore/5/4/5471e6ec0c0e189560fccc7f474993fc6e1f758a +0 -0
  235. package/.idea/sonarlint/issuestore/5/7/578f3ebc33c3ca6ab8e66c97f3c2eba2237b40ea +0 -0
  236. package/.idea/sonarlint/issuestore/5/8/5831775a729fcf9cb12959996af17091f46f440b +0 -0
  237. package/.idea/sonarlint/issuestore/5/8/5842d31a915855888fd63b1aca8c3a4dd8c95880 +0 -0
  238. package/.idea/sonarlint/issuestore/5/c/5ce582bce204b2edd80e7602b279b3d64cc737e0 +0 -0
  239. package/.idea/sonarlint/issuestore/5/f/5f2f0e365ced14f666cef2ac164c93530d4e0c2a +0 -0
  240. package/.idea/sonarlint/issuestore/6/0/60882ef9544224120d1d72534f44b973f3a57746 +0 -0
  241. package/.idea/sonarlint/issuestore/6/0/60a7f3adc2729926865b49b02008b2874d65429d +0 -2
  242. package/.idea/sonarlint/issuestore/6/0/60b89c88214907466f4d004bb8a2e56a468da7f5 +0 -0
  243. package/.idea/sonarlint/issuestore/6/0/60bb79bf1ee7929bf0f8c20166ae12e49d7af9ea +0 -3
  244. package/.idea/sonarlint/issuestore/6/1/61ebb9fd6e8cf9082658121d5d81e297791dacd0 +0 -0
  245. package/.idea/sonarlint/issuestore/6/5/65c98391f12bde62f0955f439128e0f8cb1eac6a +0 -0
  246. package/.idea/sonarlint/issuestore/6/7/6733e547a8a62f0e2b41358995a67255b967bfeb +0 -0
  247. package/.idea/sonarlint/issuestore/6/8/68e29ca13d4f4cada132a831a6a1b52c0a0ebfd3 +0 -0
  248. package/.idea/sonarlint/issuestore/6/9/692f3fce406d97e843fbf744ad689b51e3754dff +0 -0
  249. package/.idea/sonarlint/issuestore/6/a/6a835d16be742d060f08912c5808bbf862426d3d +0 -0
  250. package/.idea/sonarlint/issuestore/6/c/6cd35da18772c8847edacba05dd265c15ded5d0b +0 -0
  251. package/.idea/sonarlint/issuestore/6/e/6e142af7dffa0e82efece3ff58722e96f4283a3f +0 -0
  252. package/.idea/sonarlint/issuestore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
  253. package/.idea/sonarlint/issuestore/7/2/725cc9c146a136cafafef5ffec4cb307badb1d0e +0 -0
  254. package/.idea/sonarlint/issuestore/7/3/73e399246034aaf963bb1ad4b0a0e2b5228f57cc +0 -0
  255. package/.idea/sonarlint/issuestore/7/7/7710090cd8b91b750ed58a2f3196d971d7de988b +0 -0
  256. package/.idea/sonarlint/issuestore/7/8/785055d2374e9ff4841f875174c20cad0c0d9a80 +0 -0
  257. package/.idea/sonarlint/issuestore/7/8/78a09338d0e7bb67a5d2643580367940bee1e5b2 +0 -0
  258. package/.idea/sonarlint/issuestore/7/9/793162cb1b4e542cbf5f8db45406f4e91f736c0e +0 -0
  259. package/.idea/sonarlint/issuestore/7/a/7a6581baac8c66b8e331b8187db03c64201001f1 +0 -0
  260. package/.idea/sonarlint/issuestore/8/5/852060cc24633564871605ce8d1e59970ef2485c +0 -0
  261. package/.idea/sonarlint/issuestore/8/5/85e8222943093a270d57ab07964a75d9a15648eb +0 -0
  262. package/.idea/sonarlint/issuestore/8/6/86abd2602e79b84f352d24c72f079541f41aeb6d +0 -0
  263. package/.idea/sonarlint/issuestore/8/8/881d5d47bdc17ef8facebef59b68b5fc099a0293 +0 -0
  264. package/.idea/sonarlint/issuestore/8/8/882c515e635f40a7e1ad419c70c0f2d2c17e2f37 +0 -0
  265. package/.idea/sonarlint/issuestore/8/9/89d3df066dd0ec67c57e82d68cce94cb72f820b5 +0 -0
  266. package/.idea/sonarlint/issuestore/8/b/8bff50de15c7d9b1166aa9ad98243d1a04b7e4c4 +0 -0
  267. package/.idea/sonarlint/issuestore/8/c/8c5bbc0d4ce626bd35d05b960ef906abfd312014 +0 -0
  268. package/.idea/sonarlint/issuestore/9/0/900448384f6077c203e834650b95017f7a373583 +0 -2
  269. package/.idea/sonarlint/issuestore/9/1/912f3a935b193eb148539815f9aef4a4252c12ba +0 -0
  270. package/.idea/sonarlint/issuestore/9/4/94dd0b13f6f12ba5eae129046b1d061ddd546d72 +0 -5
  271. package/.idea/sonarlint/issuestore/9/5/958a078793035ab0aad2086f7be79b55628402c0 +0 -0
  272. package/.idea/sonarlint/issuestore/9/6/96dcf27dc8ae3662215096d9e00c194897d29c0b +0 -0
  273. package/.idea/sonarlint/issuestore/9/7/9730e89df0a4367176020e461c38c37b7ae58b9a +0 -0
  274. package/.idea/sonarlint/issuestore/9/8/98c4f1f9f94adc9e53100dbf68ce8c5df2a47f01 +0 -0
  275. package/.idea/sonarlint/issuestore/9/9/9920d82d6cbbfe404d91c79781048e0c0514767e +0 -0
  276. package/.idea/sonarlint/issuestore/9/c/9cc6b3192a90fe4d986d791c393ab1ac7101ac48 +0 -0
  277. package/.idea/sonarlint/issuestore/a/1/a1991714da3efb5da4456ee802727afe63035aa5 +0 -0
  278. package/.idea/sonarlint/issuestore/a/7/a70ff2c42b6ffb69f1686cf6ced65733a75e056f +0 -0
  279. package/.idea/sonarlint/issuestore/a/8/a8b0d4ad8d44e8bb48b2ca34ddbd84b549ee9105 +0 -3
  280. package/.idea/sonarlint/issuestore/a/a/aaf524b8c18d54117ff8a4de5b06cdd7f5776d0d +0 -0
  281. package/.idea/sonarlint/issuestore/a/b/ab09011fa121d0a2bb9fa4ca76094f2482b902b7 +0 -0
  282. package/.idea/sonarlint/issuestore/b/0/b0a40903f86afa7d5940f95f66995a290b6d4fe2 +0 -0
  283. package/.idea/sonarlint/issuestore/b/2/b26e3039f1510dfa296fdfb6a1a5f12cdca84371 +0 -0
  284. package/.idea/sonarlint/issuestore/b/3/b3349079128f17cb6e0cecf3cccfa4fe5188f92f +0 -3
  285. package/.idea/sonarlint/issuestore/b/4/b4a9acebce4d56aa444e5b857fa140163bcbd47f +0 -0
  286. package/.idea/sonarlint/issuestore/b/5/b5320db1c0a02ceb68cb70d050f5dc9d420b928b +0 -0
  287. package/.idea/sonarlint/issuestore/b/7/b7d694611d1aa415d97c7872253457c54d8f1ed7 +0 -0
  288. package/.idea/sonarlint/issuestore/b/9/b9f0a0a757a4dc7cc57724b3534dfdf189c25ea6 +0 -0
  289. package/.idea/sonarlint/issuestore/b/b/bb971971f3915fff5703a078f2784df410b7298e +0 -0
  290. package/.idea/sonarlint/issuestore/b/e/be023cb04cabb819ee6a97d9fc2a088cb4eded97 +0 -0
  291. package/.idea/sonarlint/issuestore/b/e/be633e1bf05efdb3dec5eae2777f024e1aee5599 +0 -0
  292. package/.idea/sonarlint/issuestore/c/2/c2b3144db64026759165a569b0f1f5086c6be0d3 +0 -0
  293. package/.idea/sonarlint/issuestore/c/6/c62bdf361b714427c19bdc47c8c97f90cce4dad3 +0 -0
  294. package/.idea/sonarlint/issuestore/c/6/c680d0675608db3debbc56eab6dae6478ea3d2db +0 -0
  295. package/.idea/sonarlint/issuestore/c/b/cb44f758b6159383fc5e20e1b38c4a3781d4e4bc +0 -0
  296. package/.idea/sonarlint/issuestore/c/c/ccc24fa53ed888a7471d8f2d4afae2e0ae89171d +0 -0
  297. package/.idea/sonarlint/issuestore/c/e/ced731c009a96db35c13542868ab840aa2ef6de4 +0 -0
  298. package/.idea/sonarlint/issuestore/d/1/d13af3479d43279b14b3cf9dbac30965ada1dadb +0 -0
  299. package/.idea/sonarlint/issuestore/d/2/d2b81feb53c8d963c77dbd7e63afdc568883baad +0 -0
  300. package/.idea/sonarlint/issuestore/d/3/d350eccaa5bdadf800f3540db3f0e94c0417a0f3 +0 -0
  301. package/.idea/sonarlint/issuestore/d/3/d3f37835937f760d81f9a81b56b898afec37a1e7 +0 -0
  302. package/.idea/sonarlint/issuestore/d/4/d4e02cf17e1477bc4516d78f557bdcd1b933fafd +0 -0
  303. package/.idea/sonarlint/issuestore/d/5/d5595158cc48f9bf3e51b06f6e6805a8fd2d6262 +0 -0
  304. package/.idea/sonarlint/issuestore/d/6/d690bc5bd5193edbd3f7e29b2d1be4d3f991937b +0 -0
  305. package/.idea/sonarlint/issuestore/d/7/d76f3a535e1a92673864b9fca18992b4f862dbba +0 -2
  306. package/.idea/sonarlint/issuestore/d/a/dac4ed416fff2cc3bff02b81a88328ec7c19de0e +0 -0
  307. package/.idea/sonarlint/issuestore/e/0/e00bc8f8672ab358b454ac1d2030d3526a374653 +0 -0
  308. package/.idea/sonarlint/issuestore/e/0/e017677da38130b31bd766d7a84884050023d597 +0 -0
  309. package/.idea/sonarlint/issuestore/e/1/e15a6d4820640fb201495dfd5875489fd536ebb3 +0 -0
  310. package/.idea/sonarlint/issuestore/e/4/e4ba9c2909b6e543ec138e95d86cee25af778d54 +0 -0
  311. package/.idea/sonarlint/issuestore/e/8/e804956e69c2d0944d08ff64caa3e6286590814b +0 -0
  312. package/.idea/sonarlint/issuestore/f/0/f039b4d90e01657caf0dbfd31860e93d585b6752 +0 -0
  313. package/.idea/sonarlint/issuestore/f/0/f096934f71a0918e4829a4f76b3bba64b8d65f1e +0 -0
  314. package/.idea/sonarlint/issuestore/f/1/f11f7a7b3a7306f994e28b2eba9c69a5b555c017 +0 -0
  315. package/.idea/sonarlint/issuestore/f/1/f1b96288c62ba6818b30b3d2e7506e30c1b4a742 +0 -3
  316. package/.idea/sonarlint/issuestore/f/3/f351a44ab2314976174827d1ca2495fd38ea8df8 +0 -0
  317. package/.idea/sonarlint/issuestore/f/3/f37789881b66dffd7123fa80ee7ad838f3bdafaf +0 -0
  318. package/.idea/sonarlint/issuestore/f/4/f40b81d4c7242e4401b8ae55bdcab1c38b860071 +0 -0
  319. package/.idea/sonarlint/issuestore/f/4/f425d43e761ebef46b781334764eb5d3bb913cf8 +0 -3
  320. package/.idea/sonarlint/issuestore/f/6/f61f9b480b4da03d8ff7d137ce344656354cd190 +0 -0
  321. package/.idea/sonarlint/issuestore/f/6/f65d6b8cc814626bac7a38f2cd1c930554388594 +0 -0
  322. package/.idea/sonarlint/issuestore/f/9/f900edc44cb929c2267a16100a32851f6d5b477d +0 -0
  323. package/.idea/sonarlint/issuestore/f/b/fb8261203d602a51243c9a77b6c1ee63bb7b6966 +0 -0
  324. package/.idea/sonarlint/issuestore/f/f/ff7918f0784b416c82bb974889323c13506e7d0a +0 -0
  325. package/.idea/sonarlint/issuestore/index.pb +0 -259
  326. package/.idea/sonarlint/securityhotspotstore/0/2/0233f8559e74312ed5074ade1be1aea02e6e4f1e +0 -0
  327. package/.idea/sonarlint/securityhotspotstore/0/2/02d5146f94659f11c56f0ea1d9c504ff9492b546 +0 -0
  328. package/.idea/sonarlint/securityhotspotstore/0/2/02f4902c3db5247c732bde5aaf0d4fb55363c3b1 +0 -0
  329. package/.idea/sonarlint/securityhotspotstore/0/3/0343acf33ca1b061164f9846ff8ce30429205a2a +0 -0
  330. package/.idea/sonarlint/securityhotspotstore/0/4/04d5869ea32abbf6abf5a3cb9a671637ac2e345b +0 -0
  331. package/.idea/sonarlint/securityhotspotstore/0/9/0918cbb76f2c44f223706cec9d31a32cd1177ce4 +0 -0
  332. package/.idea/sonarlint/securityhotspotstore/0/9/091aff741808a09242f252264b14f4a9adaa5305 +0 -0
  333. package/.idea/sonarlint/securityhotspotstore/0/b/0b63533e07c8b10a8fbfe7f35df1bffec8103e14 +0 -0
  334. package/.idea/sonarlint/securityhotspotstore/0/c/0c0fd6a370cd10350462b46937e98f903bcb1435 +0 -0
  335. package/.idea/sonarlint/securityhotspotstore/0/e/0e600c187f4cf8bd0dd6b678f55067a8300ab570 +0 -0
  336. package/.idea/sonarlint/securityhotspotstore/0/f/0f43007644f06a63afbfbfc129aadd61bf40318a +0 -0
  337. package/.idea/sonarlint/securityhotspotstore/1/4/14148858b7b4a0aa23ddfdc41ef62be2db925c70 +0 -0
  338. package/.idea/sonarlint/securityhotspotstore/1/5/15ff6a89ff653ef3176ddb9c5e0b59c16c2db949 +0 -0
  339. package/.idea/sonarlint/securityhotspotstore/1/6/169d7dbe9a819ce675ee66de130c5a7c92bb763d +0 -0
  340. package/.idea/sonarlint/securityhotspotstore/1/8/18a1ebb3a44ad977a5cfa60b6620a47ba00163a3 +0 -0
  341. package/.idea/sonarlint/securityhotspotstore/1/f/1fd3ecff7dd864e5b00c14a4333d8cde8c9faf11 +0 -0
  342. package/.idea/sonarlint/securityhotspotstore/2/0/204a133d39c4a2c7b86de23f541f342e0a7a3234 +0 -0
  343. package/.idea/sonarlint/securityhotspotstore/2/4/2491406c07bfc2b0f7ed8e010e56d6e468c374d0 +0 -0
  344. package/.idea/sonarlint/securityhotspotstore/2/5/257d0fa8d58da6d96f5a7af9724b2e1c92c62a2d +0 -0
  345. package/.idea/sonarlint/securityhotspotstore/2/8/282dcb1e4436703724dd35bb567086834c3ebdb4 +0 -0
  346. package/.idea/sonarlint/securityhotspotstore/2/a/2aeb7bd71ee8453ff4601a1fc8fcd4fa9c5fe355 +0 -0
  347. package/.idea/sonarlint/securityhotspotstore/2/c/2c25e229323612e7988c659ad7b51c7b1e2b2403 +0 -0
  348. package/.idea/sonarlint/securityhotspotstore/2/f/2fa1946a2afc952506e41d87833ed29401fc29a0 +0 -0
  349. package/.idea/sonarlint/securityhotspotstore/3/4/3463c59843592ad2a00c54f39e2943583bd6fff9 +0 -0
  350. package/.idea/sonarlint/securityhotspotstore/3/9/390f31a969ba7940070bf32aac2a0d1f7b7bd78b +0 -0
  351. package/.idea/sonarlint/securityhotspotstore/3/e/3ebc20bbfa3c33cf20481a2de7591c997c68abb9 +0 -0
  352. package/.idea/sonarlint/securityhotspotstore/4/1/417425bfa2cef1f22539e792dcb0a7f7784f9604 +0 -0
  353. package/.idea/sonarlint/securityhotspotstore/4/1/41ac9772c7dd3fc038485f99106b427a5e28f2e3 +0 -0
  354. package/.idea/sonarlint/securityhotspotstore/4/4/44d3ca69a31c68c4d920b1fbb0083732713d2690 +0 -0
  355. package/.idea/sonarlint/securityhotspotstore/4/8/48a8ec70d252121fbc7df4e8a45044e964b5d6b7 +0 -0
  356. package/.idea/sonarlint/securityhotspotstore/4/9/49e951d8246d0914f9d10b3955a7178866cfcee9 +0 -0
  357. package/.idea/sonarlint/securityhotspotstore/4/d/4def76d1eea91e36f7789929705c032be6df27cd +0 -0
  358. package/.idea/sonarlint/securityhotspotstore/4/f/4f40ac4df99b3f8bbd80db9b729d3b4b401623eb +0 -0
  359. package/.idea/sonarlint/securityhotspotstore/4/f/4f4bba1840f039e57f25bbd19ec0e20c15fc0e1d +0 -0
  360. package/.idea/sonarlint/securityhotspotstore/5/1/51f466e675bcd7ca84bf6287bab7404cde26db22 +0 -0
  361. package/.idea/sonarlint/securityhotspotstore/5/2/5222c3d19fd979fed770b7f3664147b2ed16b230 +0 -0
  362. package/.idea/sonarlint/securityhotspotstore/5/2/52cb9deee3ee8b8add01ec855fc4a45818ac7638 +0 -0
  363. package/.idea/sonarlint/securityhotspotstore/5/3/53585a096fe3a3b96321113856ae62602995a33b +0 -0
  364. package/.idea/sonarlint/securityhotspotstore/5/4/5471e6ec0c0e189560fccc7f474993fc6e1f758a +0 -0
  365. package/.idea/sonarlint/securityhotspotstore/5/7/578f3ebc33c3ca6ab8e66c97f3c2eba2237b40ea +0 -0
  366. package/.idea/sonarlint/securityhotspotstore/5/8/5831775a729fcf9cb12959996af17091f46f440b +0 -0
  367. package/.idea/sonarlint/securityhotspotstore/5/8/5842d31a915855888fd63b1aca8c3a4dd8c95880 +0 -0
  368. package/.idea/sonarlint/securityhotspotstore/5/c/5ce582bce204b2edd80e7602b279b3d64cc737e0 +0 -0
  369. package/.idea/sonarlint/securityhotspotstore/5/f/5f2f0e365ced14f666cef2ac164c93530d4e0c2a +0 -0
  370. package/.idea/sonarlint/securityhotspotstore/6/0/60882ef9544224120d1d72534f44b973f3a57746 +0 -0
  371. package/.idea/sonarlint/securityhotspotstore/6/0/60a7f3adc2729926865b49b02008b2874d65429d +0 -0
  372. package/.idea/sonarlint/securityhotspotstore/6/0/60b89c88214907466f4d004bb8a2e56a468da7f5 +0 -0
  373. package/.idea/sonarlint/securityhotspotstore/6/0/60bb79bf1ee7929bf0f8c20166ae12e49d7af9ea +0 -0
  374. package/.idea/sonarlint/securityhotspotstore/6/1/61ebb9fd6e8cf9082658121d5d81e297791dacd0 +0 -0
  375. package/.idea/sonarlint/securityhotspotstore/6/5/65c98391f12bde62f0955f439128e0f8cb1eac6a +0 -0
  376. package/.idea/sonarlint/securityhotspotstore/6/7/6733e547a8a62f0e2b41358995a67255b967bfeb +0 -0
  377. package/.idea/sonarlint/securityhotspotstore/6/8/68e29ca13d4f4cada132a831a6a1b52c0a0ebfd3 +0 -0
  378. package/.idea/sonarlint/securityhotspotstore/6/9/692f3fce406d97e843fbf744ad689b51e3754dff +0 -0
  379. package/.idea/sonarlint/securityhotspotstore/6/a/6a835d16be742d060f08912c5808bbf862426d3d +0 -0
  380. package/.idea/sonarlint/securityhotspotstore/6/e/6e142af7dffa0e82efece3ff58722e96f4283a3f +0 -0
  381. package/.idea/sonarlint/securityhotspotstore/7/0/7030d0b2f71b999ff89a343de08c414af32fc93a +0 -0
  382. package/.idea/sonarlint/securityhotspotstore/7/2/725cc9c146a136cafafef5ffec4cb307badb1d0e +0 -0
  383. package/.idea/sonarlint/securityhotspotstore/7/3/73e399246034aaf963bb1ad4b0a0e2b5228f57cc +0 -0
  384. package/.idea/sonarlint/securityhotspotstore/7/7/7710090cd8b91b750ed58a2f3196d971d7de988b +0 -0
  385. package/.idea/sonarlint/securityhotspotstore/7/8/785055d2374e9ff4841f875174c20cad0c0d9a80 +0 -0
  386. package/.idea/sonarlint/securityhotspotstore/7/8/78a09338d0e7bb67a5d2643580367940bee1e5b2 +0 -0
  387. package/.idea/sonarlint/securityhotspotstore/7/9/793162cb1b4e542cbf5f8db45406f4e91f736c0e +0 -0
  388. package/.idea/sonarlint/securityhotspotstore/7/a/7a6581baac8c66b8e331b8187db03c64201001f1 +0 -0
  389. package/.idea/sonarlint/securityhotspotstore/8/5/852060cc24633564871605ce8d1e59970ef2485c +0 -0
  390. package/.idea/sonarlint/securityhotspotstore/8/5/85e8222943093a270d57ab07964a75d9a15648eb +0 -2
  391. package/.idea/sonarlint/securityhotspotstore/8/6/86abd2602e79b84f352d24c72f079541f41aeb6d +0 -0
  392. package/.idea/sonarlint/securityhotspotstore/8/8/881d5d47bdc17ef8facebef59b68b5fc099a0293 +0 -0
  393. package/.idea/sonarlint/securityhotspotstore/8/8/882c515e635f40a7e1ad419c70c0f2d2c17e2f37 +0 -0
  394. package/.idea/sonarlint/securityhotspotstore/8/9/89d3df066dd0ec67c57e82d68cce94cb72f820b5 +0 -0
  395. package/.idea/sonarlint/securityhotspotstore/8/b/8bff50de15c7d9b1166aa9ad98243d1a04b7e4c4 +0 -0
  396. package/.idea/sonarlint/securityhotspotstore/8/c/8c5bbc0d4ce626bd35d05b960ef906abfd312014 +0 -0
  397. package/.idea/sonarlint/securityhotspotstore/9/0/900448384f6077c203e834650b95017f7a373583 +0 -0
  398. package/.idea/sonarlint/securityhotspotstore/9/1/912f3a935b193eb148539815f9aef4a4252c12ba +0 -0
  399. package/.idea/sonarlint/securityhotspotstore/9/4/94dd0b13f6f12ba5eae129046b1d061ddd546d72 +0 -0
  400. package/.idea/sonarlint/securityhotspotstore/9/5/958a078793035ab0aad2086f7be79b55628402c0 +0 -0
  401. package/.idea/sonarlint/securityhotspotstore/9/6/96dcf27dc8ae3662215096d9e00c194897d29c0b +0 -0
  402. package/.idea/sonarlint/securityhotspotstore/9/7/9730e89df0a4367176020e461c38c37b7ae58b9a +0 -0
  403. package/.idea/sonarlint/securityhotspotstore/9/8/98c4f1f9f94adc9e53100dbf68ce8c5df2a47f01 +0 -0
  404. package/.idea/sonarlint/securityhotspotstore/9/9/9920d82d6cbbfe404d91c79781048e0c0514767e +0 -0
  405. package/.idea/sonarlint/securityhotspotstore/9/c/9cc6b3192a90fe4d986d791c393ab1ac7101ac48 +0 -0
  406. package/.idea/sonarlint/securityhotspotstore/a/1/a1991714da3efb5da4456ee802727afe63035aa5 +0 -0
  407. package/.idea/sonarlint/securityhotspotstore/a/7/a70ff2c42b6ffb69f1686cf6ced65733a75e056f +0 -0
  408. package/.idea/sonarlint/securityhotspotstore/a/8/a8b0d4ad8d44e8bb48b2ca34ddbd84b549ee9105 +0 -0
  409. package/.idea/sonarlint/securityhotspotstore/a/a/aaf524b8c18d54117ff8a4de5b06cdd7f5776d0d +0 -0
  410. package/.idea/sonarlint/securityhotspotstore/a/b/ab09011fa121d0a2bb9fa4ca76094f2482b902b7 +0 -0
  411. package/.idea/sonarlint/securityhotspotstore/b/0/b0a40903f86afa7d5940f95f66995a290b6d4fe2 +0 -0
  412. package/.idea/sonarlint/securityhotspotstore/b/2/b26e3039f1510dfa296fdfb6a1a5f12cdca84371 +0 -0
  413. package/.idea/sonarlint/securityhotspotstore/b/3/b3349079128f17cb6e0cecf3cccfa4fe5188f92f +0 -0
  414. package/.idea/sonarlint/securityhotspotstore/b/4/b4a9acebce4d56aa444e5b857fa140163bcbd47f +0 -0
  415. package/.idea/sonarlint/securityhotspotstore/b/5/b5320db1c0a02ceb68cb70d050f5dc9d420b928b +0 -0
  416. package/.idea/sonarlint/securityhotspotstore/b/7/b7d694611d1aa415d97c7872253457c54d8f1ed7 +0 -0
  417. package/.idea/sonarlint/securityhotspotstore/b/9/b9f0a0a757a4dc7cc57724b3534dfdf189c25ea6 +0 -0
  418. package/.idea/sonarlint/securityhotspotstore/b/b/bb971971f3915fff5703a078f2784df410b7298e +0 -0
  419. package/.idea/sonarlint/securityhotspotstore/b/e/be023cb04cabb819ee6a97d9fc2a088cb4eded97 +0 -0
  420. package/.idea/sonarlint/securityhotspotstore/b/e/be633e1bf05efdb3dec5eae2777f024e1aee5599 +0 -0
  421. package/.idea/sonarlint/securityhotspotstore/c/2/c2b3144db64026759165a569b0f1f5086c6be0d3 +0 -0
  422. package/.idea/sonarlint/securityhotspotstore/c/6/c62bdf361b714427c19bdc47c8c97f90cce4dad3 +0 -0
  423. package/.idea/sonarlint/securityhotspotstore/c/6/c680d0675608db3debbc56eab6dae6478ea3d2db +0 -0
  424. package/.idea/sonarlint/securityhotspotstore/c/b/cb44f758b6159383fc5e20e1b38c4a3781d4e4bc +0 -0
  425. package/.idea/sonarlint/securityhotspotstore/c/e/ced731c009a96db35c13542868ab840aa2ef6de4 +0 -0
  426. package/.idea/sonarlint/securityhotspotstore/d/1/d13af3479d43279b14b3cf9dbac30965ada1dadb +0 -0
  427. package/.idea/sonarlint/securityhotspotstore/d/2/d2b81feb53c8d963c77dbd7e63afdc568883baad +0 -0
  428. package/.idea/sonarlint/securityhotspotstore/d/3/d3f37835937f760d81f9a81b56b898afec37a1e7 +0 -0
  429. package/.idea/sonarlint/securityhotspotstore/d/4/d4e02cf17e1477bc4516d78f557bdcd1b933fafd +0 -0
  430. package/.idea/sonarlint/securityhotspotstore/d/5/d5595158cc48f9bf3e51b06f6e6805a8fd2d6262 +0 -0
  431. package/.idea/sonarlint/securityhotspotstore/d/6/d690bc5bd5193edbd3f7e29b2d1be4d3f991937b +0 -0
  432. package/.idea/sonarlint/securityhotspotstore/d/7/d76f3a535e1a92673864b9fca18992b4f862dbba +0 -0
  433. package/.idea/sonarlint/securityhotspotstore/d/a/dac4ed416fff2cc3bff02b81a88328ec7c19de0e +0 -0
  434. package/.idea/sonarlint/securityhotspotstore/e/0/e00bc8f8672ab358b454ac1d2030d3526a374653 +0 -0
  435. package/.idea/sonarlint/securityhotspotstore/e/1/e15a6d4820640fb201495dfd5875489fd536ebb3 +0 -0
  436. package/.idea/sonarlint/securityhotspotstore/e/8/e804956e69c2d0944d08ff64caa3e6286590814b +0 -0
  437. package/.idea/sonarlint/securityhotspotstore/f/0/f039b4d90e01657caf0dbfd31860e93d585b6752 +0 -0
  438. package/.idea/sonarlint/securityhotspotstore/f/0/f096934f71a0918e4829a4f76b3bba64b8d65f1e +0 -0
  439. package/.idea/sonarlint/securityhotspotstore/f/1/f11f7a7b3a7306f994e28b2eba9c69a5b555c017 +0 -0
  440. package/.idea/sonarlint/securityhotspotstore/f/1/f1b96288c62ba6818b30b3d2e7506e30c1b4a742 +0 -0
  441. package/.idea/sonarlint/securityhotspotstore/f/3/f351a44ab2314976174827d1ca2495fd38ea8df8 +0 -0
  442. package/.idea/sonarlint/securityhotspotstore/f/3/f37789881b66dffd7123fa80ee7ad838f3bdafaf +0 -0
  443. package/.idea/sonarlint/securityhotspotstore/f/4/f40b81d4c7242e4401b8ae55bdcab1c38b860071 +0 -0
  444. package/.idea/sonarlint/securityhotspotstore/f/4/f425d43e761ebef46b781334764eb5d3bb913cf8 +0 -0
  445. package/.idea/sonarlint/securityhotspotstore/f/6/f61f9b480b4da03d8ff7d137ce344656354cd190 +0 -0
  446. package/.idea/sonarlint/securityhotspotstore/f/6/f65d6b8cc814626bac7a38f2cd1c930554388594 +0 -0
  447. package/.idea/sonarlint/securityhotspotstore/f/9/f900edc44cb929c2267a16100a32851f6d5b477d +0 -0
  448. package/.idea/sonarlint/securityhotspotstore/f/b/fb8261203d602a51243c9a77b6c1ee63bb7b6966 +0 -0
  449. package/.idea/sonarlint/securityhotspotstore/f/f/ff7918f0784b416c82bb974889323c13506e7d0a +0 -0
  450. package/.idea/sonarlint/securityhotspotstore/index.pb +0 -249
  451. package/.idea/sonarlint-state.xml +0 -6
  452. package/.idea/sonarlint.xml +0 -8
  453. package/.yarn/releases/yarn-1.22.22.cjs +0 -148049
  454. package/postcss.config.js +0 -6
  455. package/src/components/DpAutocomplete/DpAutocomplete.stories.mdx +0 -34
  456. package/src/components/DpBadge/DpBadge.stories.mdx +0 -18
  457. package/src/components/DpBulkEditHeader/DpBulkEditHeader.stories.mdx +0 -49
  458. package/src/components/DpButton/DpButton.stories.mdx +0 -189
  459. package/src/components/DpButtonIcon/DpButtonIcon.stories.mdx +0 -21
  460. package/src/components/DpButtonIcon/DpButtonIcon.stories.tsx +0 -28
  461. package/src/components/DpButtonRow/DpButtonRow.stories.mdx +0 -44
  462. package/src/components/DpCard/DpCard.stories.mdx +0 -29
  463. package/src/components/DpCheckbox/DpCheckbox.stories.mdx +0 -117
  464. package/src/components/DpCheckboxGroup/DpCheckboxGroup.stories.mdx +0 -23
  465. package/src/components/DpColumnSelector/DpColumnSelector.stories.mdx +0 -23
  466. package/src/components/DpConfirmDialog/DpConfirmDialog.stories.mdx +0 -19
  467. package/src/components/DpContextualHelp/DpContextualHelp.stories.mdx +0 -17
  468. package/src/components/DpDataTable/DpDataTable.stories.mdx +0 -81
  469. package/src/components/DpDataTableExtended/DpDataTableExtended.stories.mdx +0 -41
  470. package/src/components/DpDateRangePicker/DpDateRangePicker.stories.mdx +0 -22
  471. package/src/components/DpDatepicker/DpDatepicker.stories.mdx +0 -21
  472. package/src/components/DpDatetimePicker/DpDatetimePicker.stories.mdx +0 -22
  473. package/src/components/DpDetails/DpDetails.stories.mdx +0 -54
  474. package/src/components/DpDraggable/DpDraggable.stories.mdx +0 -27
  475. package/src/components/DpEditor/DpEditor.stories.mdx +0 -63
  476. package/src/components/DpFlyout/DpFlyout.stories.mdx +0 -21
  477. package/src/components/DpFormRow/DpFormRow.stories.mdx +0 -25
  478. package/src/components/DpIcon/DpIcon.stories.mdx +0 -574
  479. package/src/components/DpInlineNotification/DpInlineNotification.stories.mdx +0 -57
  480. package/src/components/DpInput/DpInput.stories.mdx +0 -127
  481. package/src/components/DpLabel/DpLabel.stories.mdx +0 -103
  482. package/src/components/DpLoading/DpLoading.stories.mdx +0 -62
  483. package/src/components/DpModal/DpModal.stories.mdx +0 -30
  484. package/src/components/DpMultiselect/DpMultiselect.stories.mdx +0 -52
  485. package/src/components/DpMultistepNav/DpMultistepNav.stories.mdx +0 -32
  486. package/src/components/DpNotification/DpNotification.stories.mdx +0 -23
  487. package/src/components/DpPager/DpPager.stories.mdx +0 -24
  488. package/src/components/DpRadio/DpRadio.stories.mdx +0 -136
  489. package/src/components/DpResettableInput/DpResettableInput.stories.mdx +0 -15
  490. package/src/components/DpSearchField/DpSearchField.stories.mdx +0 -19
  491. package/src/components/DpSelect/DpSelect.stories.mdx +0 -104
  492. package/src/components/DpSkeletonBox/DpSkeletonBox.stories.mdx +0 -21
  493. package/src/components/DpSlidebar/DpSlidebar.stories.mdx +0 -25
  494. package/src/components/DpSlidingPagination/DpSlidingPagination.stories.mdx +0 -29
  495. package/src/components/DpSplitButton/DpSplitButton.stories.mdx +0 -29
  496. package/src/components/DpSplitButton/DpSplitButton.stories.tsx +0 -34
  497. package/src/components/DpStickyElement/DpStickyElement.stories.mdx +0 -22
  498. package/src/components/DpTabs/DpTabs.stories.mdx +0 -39
  499. package/src/components/DpTextArea/DpTextArea.stories.mdx +0 -161
  500. package/src/components/DpTimePicker/DpTimePicker.stories.mdx +0 -19
  501. package/src/components/DpToggle/DpToggle.stories.mdx +0 -15
  502. package/src/components/DpTooltip/DpTooltip.stories.mdx +0 -115
  503. package/src/components/DpTooltipIcon/DpTooltipIcon.stories.mdx +0 -26
  504. package/src/components/DpTooltipIcon/DpTooltipIcon.stories.tsx +0 -23
  505. package/src/components/DpTooltipIcon/DpTooltipIcon.vue +0 -40
  506. package/src/components/DpTooltipIcon/index.ts +0 -2
  507. package/src/components/DpTreeList/DpTreeList.stories.mdx +0 -58
  508. package/src/components/DpUploadFiles/DpUploadFiles.stories.mdx +0 -21
  509. package/src/components/DpVideoPlayer/DpVideoPlayer.stories.mdx +0 -21
  510. package/tokens/dist/js/color.ui-tailwind.js +0 -1899
  511. package/tokens/dist/tailwind/color.brand.js +0 -8
  512. package/tokens/dist/tailwind/color.data.js +0 -30
  513. package/tokens/dist/tailwind/color.palette.js +0 -60
  514. package/tokens/scss/_boxShadow.scss +0 -8
  515. package/tokens/scss/_color.brand.scss +0 -10
  516. package/tokens/scss/_color.data.scss +0 -32
  517. package/tokens/scss/_color.palette.scss +0 -62
  518. package/tokens/scss/_color.scss +0 -89
  519. package/tokens/scss/_color.ui.scss +0 -60
  520. package/tokens/scss/_fontSize.scss +0 -26
  521. package/tokens/scss/_rounded.scss +0 -9
  522. package/tokens/scss/_space.scss +0 -13
  523. package/tokens/tokens._overview.stories.mdx +0 -49
  524. package/tokens/tokens.boxShadow.stories.mdx +0 -50
  525. package/tokens/tokens.breakpoints.stories.mdx +0 -46
  526. package/tokens/tokens.color.stories.mdx +0 -184
  527. package/tokens/tokens.fontSize.stories.mdx +0 -83
  528. package/tokens/tokens.rounded.stories.mdx +0 -51
  529. package/tokens/tokens.space.stories.mdx +0 -84
  530. package/tokens/tokens.zIndex.stories.mdx +0 -67
  531. package/yarn-error.log +0 -14081
@@ -0,0 +1,62 @@
1
+ <component name="ProjectCodeStyleConfiguration">
2
+ <code_scheme name="Project" version="173">
3
+ <option name="FORMATTER_TAGS_ENABLED" value="false" />
4
+ <option name="DO_NOT_FORMAT">
5
+ <list>
6
+ <fileSet type="globPattern" pattern="[!php]" />
7
+ </list>
8
+ </option>
9
+ <HTMLCodeStyleSettings>
10
+ <option name="HTML_ENFORCE_QUOTES" value="true" />
11
+ </HTMLCodeStyleSettings>
12
+ <JSCodeStyleSettings version="0">
13
+ <option name="USE_SEMICOLON_AFTER_STATEMENT" value="false" />
14
+ <option name="FORCE_SEMICOLON_STYLE" value="true" />
15
+ <option name="USE_DOUBLE_QUOTES" value="false" />
16
+ <option name="FORCE_QUOTE_STYlE" value="true" />
17
+ <option name="ENFORCE_TRAILING_COMMA" value="Remove" />
18
+ <option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
19
+ <option name="SPACES_WITHIN_IMPORTS" value="true" />
20
+ <option name="IMPORT_SORT_MODULE_NAME" value="true" />
21
+ </JSCodeStyleSettings>
22
+ <TypeScriptCodeStyleSettings version="0">
23
+ <option name="USE_SEMICOLON_AFTER_STATEMENT" value="false" />
24
+ <option name="FORCE_SEMICOLON_STYLE" value="true" />
25
+ <option name="USE_DOUBLE_QUOTES" value="false" />
26
+ <option name="FORCE_QUOTE_STYlE" value="true" />
27
+ <option name="ENFORCE_TRAILING_COMMA" value="Remove" />
28
+ <option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
29
+ <option name="SPACES_WITHIN_IMPORTS" value="true" />
30
+ </TypeScriptCodeStyleSettings>
31
+ <editorconfig>
32
+ <option name="ENABLED" value="false" />
33
+ </editorconfig>
34
+ <codeStyleSettings language="HTML">
35
+ <indentOptions>
36
+ <option name="INDENT_SIZE" value="2" />
37
+ <option name="CONTINUATION_INDENT_SIZE" value="2" />
38
+ <option name="TAB_SIZE" value="2" />
39
+ </indentOptions>
40
+ </codeStyleSettings>
41
+ <codeStyleSettings language="JavaScript">
42
+ <option name="SPACE_BEFORE_METHOD_PARENTHESES" value="true" />
43
+ <indentOptions>
44
+ <option name="INDENT_SIZE" value="2" />
45
+ <option name="CONTINUATION_INDENT_SIZE" value="2" />
46
+ <option name="TAB_SIZE" value="2" />
47
+ </indentOptions>
48
+ </codeStyleSettings>
49
+ <codeStyleSettings language="TypeScript">
50
+ <indentOptions>
51
+ <option name="INDENT_SIZE" value="2" />
52
+ <option name="CONTINUATION_INDENT_SIZE" value="2" />
53
+ <option name="TAB_SIZE" value="2" />
54
+ </indentOptions>
55
+ </codeStyleSettings>
56
+ <codeStyleSettings language="Vue">
57
+ <indentOptions>
58
+ <option name="CONTINUATION_INDENT_SIZE" value="2" />
59
+ </indentOptions>
60
+ </codeStyleSettings>
61
+ </code_scheme>
62
+ </component>
@@ -0,0 +1,5 @@
1
+ <component name="ProjectCodeStyleConfiguration">
2
+ <state>
3
+ <option name="USE_PER_PROJECT_SETTINGS" value="true" />
4
+ </state>
5
+ </component>
@@ -0,0 +1,6 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0">
3
+ <option name="myName" value="Project Default" />
4
+ <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
+ </profile>
6
+ </component>
@@ -0,0 +1,199 @@
1
+ Index: tests/components/DpTreeList/DpTreeList.spec.js
2
+ IDEA additional info:
3
+ Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
4
+ <+>import { mockNode, mockSelectedNodes, mockUpdatedNodes } from './DpTreeListMockData'\nimport { shallowMount } from '@vue/test-utils'\nimport DpTreeList from '~/components/DpTreeList/DpTreeList.vue'\n\ndescribe('DpTreeList', () => {\n let propsData\n let wrapper\n\n beforeEach(() => {\n propsData = {\n branchIdentifier: jest.fn(),\n draggable: true,\n onMove: jest.fn(),\n options: {},\n treeData: []\n }\n\n wrapper = shallowMount(DpTreeList, {\n propsData\n })\n })\n\n afterEach(() => {\n wrapper.unmount()\n })\n\n it('renders component correctly', () => {\n expect(wrapper.exists()).toBe(true)\n })\n\n it('returns an empty array if a nodes \"nodeIsSelected\" state is false', () => {\n wrapper = shallowMount(DpTreeList, {\n props: {\n branchIdentifier: jest.fn(),\n draggable: true,\n onMove: jest.fn(),\n options: {},\n treeData: [\n mockNode\n ]\n }\n })\n\n wrapper.vm.handleSelectEvent()\n\n expect(wrapper.vm.selectedNodesObjects).toEqual([])\n })\n\n it('returns an array with the selected nodes if the node has a positive \"nodeIsSelected\" state', () => {\n wrapper = shallowMount(DpTreeList, {\n props: {\n branchIdentifier: jest.fn(),\n draggable: true,\n onMove: jest.fn(),\n options: {},\n treeData: [\n mockUpdatedNodes\n ]\n }\n })\n\n wrapper.vm.handleSelectEvent()\n\n expect(wrapper.vm.selectedNodesObjects).toEqual(mockSelectedNodes)\n })\n})\n
5
+ Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
6
+ <+>UTF-8
7
+ ===================================================================
8
+ diff --git a/tests/components/DpTreeList/DpTreeList.spec.js b/tests/components/DpTreeList/DpTreeList.spec.js
9
+ --- a/tests/components/DpTreeList/DpTreeList.spec.js (revision f2fab2be07a606e9c45348b8e108dc03aa4992e4)
10
+ +++ b/tests/components/DpTreeList/DpTreeList.spec.js (date 1746793685132)
11
+ @@ -3,11 +3,11 @@
12
+ import DpTreeList from '~/components/DpTreeList/DpTreeList.vue'
13
+
14
+ describe('DpTreeList', () => {
15
+ - let propsData
16
+ + let props
17
+ let wrapper
18
+
19
+ beforeEach(() => {
20
+ - propsData = {
21
+ + props = {
22
+ branchIdentifier: jest.fn(),
23
+ draggable: true,
24
+ onMove: jest.fn(),
25
+ @@ -16,7 +16,7 @@
26
+ }
27
+
28
+ wrapper = shallowMount(DpTreeList, {
29
+ - propsData
30
+ + props
31
+ })
32
+ })
33
+
34
+ @@ -38,6 +38,12 @@
35
+ treeData: [
36
+ mockNode
37
+ ]
38
+ + },
39
+ + stubs: {
40
+ + DpTreeListNode: {
41
+ + template: '<div class="tree-list-node-stub"></div>',
42
+ + props: ['node', 'nodeId', 'children', 'level', 'parentId', 'checkBranch', 'handleChange', 'handleDrag', 'onMove', 'options']
43
+ + }
44
+ }
45
+ })
46
+
47
+ Index: jest/setup.js
48
+ IDEA additional info:
49
+ Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
50
+ <+>const hasPermission = jest.fn(() => true)\nconst Translator = {\n trans: jest.fn(key => key)\n}\nconst prefixClass = jest.fn(key => key)\n\nglobal.prefixClass = prefixClass\nglobal.Translator = Translator\nglobal.hasPermission = hasPermission\n\njest.mock('@vueuse/components', () => {\n return {\n vOnClickOutside: jest.fn()\n }\n})\njest.mock('@uppy/core', () => () => 'mock result')\njest.mock('@uppy/drag-drop', () => () => 'mock result')\njest.mock('@uppy/progress-bar', () => () => 'mock result')\njest.mock('@uppy/tus', () => () => 'mock result')\njest.mock('vue-omnibox', () => () => 'mock result')\njest.mock('a11y-datepicker', () => () => 'mock result')\njest.mock('~/lib/Stickier', () => jest.fn().mockImplementation(function() {\n return {\n update: jest.fn(),\n destroy: jest.fn()\n }\n}))\n\n\n
51
+ Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
52
+ <+>UTF-8
53
+ ===================================================================
54
+ diff --git a/jest/setup.js b/jest/setup.js
55
+ --- a/jest/setup.js (revision f2fab2be07a606e9c45348b8e108dc03aa4992e4)
56
+ +++ b/jest/setup.js (date 1746793943987)
57
+ @@ -17,7 +17,6 @@
58
+ jest.mock('@uppy/drag-drop', () => () => 'mock result')
59
+ jest.mock('@uppy/progress-bar', () => () => 'mock result')
60
+ jest.mock('@uppy/tus', () => () => 'mock result')
61
+ -jest.mock('vue-omnibox', () => () => 'mock result')
62
+ jest.mock('a11y-datepicker', () => () => 'mock result')
63
+ jest.mock('~/lib/Stickier', () => jest.fn().mockImplementation(function() {
64
+ return {
65
+ Index: src/components/DpTreeList/DpTreeListNode.vue
66
+ IDEA additional info:
67
+ Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
68
+ <+><template>\n <li\n :id=\"nodeId\"\n class=\"border--top relative\"\n data-cy=\"treeListNode\">\n <div class=\"c-treelist__node flex\">\n <div\n v-if=\"isDraggable\"\n class=\"inline-block u-p-0_25 u-pr-0 u-mt-0_125\"\n :class=\"dragHandle\">\n <dp-icon\n class=\"c-treelist__drag-handle-icon\"\n icon=\"drag-handle\" />\n </div>\n <dp-tree-list-checkbox\n v-if=\"isSelectable\"\n :checked=\"node.nodeIsSelected\"\n :name=\"checkboxIdentifier\"\n :string-value=\"nodeId\"\n @check=\"setSelectionState(!node.nodeIsSelected)\" />\n <div\n class=\"flex grow items-start\"\n :style=\"indentationStyle\">\n <dp-tree-list-toggle\n v-if=\"isBranch\"\n v-model=\"isExpanded\"\n class=\"c-treelist__folder text--left u-pv-0_25\"\n :class=\"{ 'pointer-events-none': 0 === children.length }\"\n :icon-class-prop=\"iconClassFolder\" />\n <div class=\"grow u-pl-0 u-p-0_25\">\n <slot\n v-if=\"isBranch\"\n name=\"branch\"\n :node-element=\"node\"\n :node-children=\"children\"\n :node-id=\"nodeId\"\n :parent-id=\"parentId\" />\n <slot\n v-if=\"isLeaf\"\n name=\"leaf\"\n :node-element=\"node\"\n :node-id=\"nodeId\"\n :parent-id=\"parentId\" />\n </div>\n </div>\n <dp-tree-list-toggle\n v-if=\"isBranch\"\n v-model=\"isExpanded\"\n v-tooltip=\"!hasToggle ? translations.noElementsExisting : ''\"\n data-cy=\"treeListChildToggle\"\n class=\"self-start\"\n :disabled=\"!hasToggle\" />\n <div\n v-else\n class=\"min-w-4\" />\n </div>\n <component\n :is=\"draggable ? 'dp-draggable' : 'div'\"\n :drag-across-branches=\"options.dragAcrossBranches ? options.dragAcrossBranches : null\"\n class=\"list-style-none u-mb-0 u-1-of-1\"\n :content-data=\"draggable ? children : []\"\n data-cy=\"treeListChild\"\n draggable-tag=\"ul\"\n :group-id=\"nodeId\"\n :handle-change=\"handleChange\"\n :handle-drag=\"handleDrag\"\n :is-draggable=\"hasDraggableChildren ? hasDraggableChildren : null\"\n :node-id=\"nodeId\"\n :on-move=\"onMove\"\n :opts=\"options.draggable\">\n <dp-tree-list-node\n v-for=\"(child, idx) in children\"\n v-show=\"true === isExpanded\"\n :ref=\"`node_${child.id}`\"\n :key=\"child.id\"\n :data-cy=\"`treeListChild:${idx}`\"\n :check-branch=\"checkBranch\"\n :children=\"child.children || []\"\n :handle-change=\"handleChange\"\n :handle-drag=\"handleDrag\"\n :level=\"level + 1\"\n :node=\"child\"\n :node-id=\"child.id\"\n :on-move=\"onMove\"\n :options=\"options\"\n :parent-id=\"nodeId\"\n @draggable:change=\"bubbleDraggableChange\"\n @end=\"handleDrag('end')\"\n @node-selected=\"handleChildSelectionChange(child)\"\n @start=\"handleDrag('start')\"\n @tree:change=\"bubbleChangeEvent\">\n <template\n v-for=\"slot in Object.keys($slots)\"\n v-slot:[slot]=\"scope\">\n <slot\n v-bind=\"scope\"\n :name=\"slot\" />\n </template>\n </dp-tree-list-node>\n </component>\n </li>\n</template>\n\n<script>\nimport { checkboxWidth, dragHandleWidth, levelIndentationWidth } from './utils/constants'\nimport { de } from \"~/components/shared/translations\"\nimport DpDraggable from '~/components/DpDraggable'\nimport DpIcon from '~/components/DpIcon'\nimport DpTreeListCheckbox from './DpTreeListCheckbox'\nimport DpTreeListToggle from './DpTreeListToggle'\nimport { Tooltip } from '~/directives'\n\nexport default {\n name: 'DpTreeListNode',\n\n components: {\n DpDraggable,\n DpIcon,\n DpTreeListCheckbox,\n DpTreeListToggle\n },\n\n directives: {\n tooltip: Tooltip\n },\n\n props: {\n checkBranch: {\n type: Function,\n required: true\n },\n\n children: {\n type: Array,\n required: true\n },\n\n draggable: {\n type: Boolean,\n required: false,\n default: true\n },\n\n /*\n * The function to handle the draggable \"change\" event is passed as a prop here.\n * This way we do not run into performance issues with deeply nested lists.\n * @see https://www.digitalocean.com/community/tutorials/vuejs-communicating-recursive-components\n */\n handleChange: {\n type: Function,\n required: true\n },\n\n /*\n * The function to handle the draggable \"start\" and \"end\" events is passed as a prop here.\n */\n handleDrag: {\n type: Function,\n required: true\n },\n\n level: {\n type: Number,\n required: true\n },\n\n node: {\n type: Object,\n required: true\n },\n\n nodeId: {\n type: String,\n required: true\n },\n\n onMove: {\n type: Function,\n required: true\n },\n\n options: {\n type: Object,\n required: false,\n default: () => ({})\n },\n\n parentId: {\n type: String,\n required: false,\n default: ''\n },\n\n parentSelected: {\n type: Boolean,\n required: false,\n default: false\n }\n },\n\n data () {\n return {\n isExpanded: false,\n translations: {\n noElementsExisting: de.noElementsExisting\n }\n }\n },\n\n computed: {\n checkboxIdentifier () {\n const prefix = this.isBranch\n ? this.options.checkboxIdentifier.branch\n : this.options.checkboxIdentifier.leaf\n return prefix + ':' + this.nodeId\n },\n\n dragHandle () {\n const str = this.options.draggable.handle\n return str.substring(1, str.length)\n },\n\n hasDraggableChildren () {\n return this.isBranch && (this.options.dragLeaves || this.options.dragBranches) && this.draggable\n },\n\n hasToggle () {\n return this.isBranch && this.children.length > 0\n },\n\n iconClassFolder () {\n const hasContent = this.children.length > 0\n let folderClass\n if (hasContent) {\n folderClass = this.isExpanded ? 'fa-folder-open' : 'fa-folder'\n } else {\n folderClass = 'fa-folder-o'\n }\n return 'fa ' + folderClass\n },\n\n indentationStyle () {\n let margin = this.level * levelIndentationWidth\n\n // If leaves are draggable, but branches are not, or vice versa, add extra space\n if ((this.isBranch && !this.options.dragBranches && this.options.dragLeaves) ||\n (this.isLeaf && this.options.dragBranches && !this.options.dragLeaves)) {\n margin += dragHandleWidth\n }\n\n // If leaves are selectable, but branches are not, or vice versa, add extra space\n if ((this.isBranch && !this.options.branchesSelectable && this.options.leavesSelectable) ||\n (this.isLeaf && this.options.branchesSelectable && !this.options.leavesSelectable)) {\n margin += checkboxWidth\n }\n\n return `margin-left: ${margin}px;`\n },\n\n isBranch () {\n return this.checkBranch({ node: this.node, children: this.children, id: this.nodeId })\n },\n\n isDraggable () {\n return this.isDraggableLeaf || this.isDraggableBranch\n },\n\n isDraggableBranch () {\n return this.options.dragBranches && this.isBranch\n },\n\n isDraggableLeaf () {\n return this.options.dragLeaves && this.isLeaf\n },\n\n isLeaf () {\n return this.isBranch === false\n },\n\n isSelectable () {\n return (this.isBranch && this.options.branchesSelectable) || (this.isLeaf && this.options.leavesSelectable) || false\n },\n\n // See docblock in `tree` computed of parent component.\n tree: {\n get () {\n return this.children\n },\n\n set (payload) {\n this.$emit('tree:change', payload)\n }\n }\n },\n\n watch: {\n parentSelected (val) {\n if (this.options.selectOn.parentSelect || this.options.deselectOn.parentDeselect) {\n this.setSelectionState(val)\n }\n }\n },\n\n methods: {\n bubbleChangeEvent (payload) {\n this.$emit('tree:change', payload)\n },\n\n bubbleDraggableChange (payload) {\n this.$emit('draggable:change', payload)\n },\n\n handleChildSelectionChange (child) {\n if (this.options.deselectOn.childDeselect && child.nodeIsSelected === false && this.node.nodeIsSelected === true) {\n this.setSelectionState(child.nodeIsSelected)\n } else if (this.options.selectOn.childSelect && child.nodeIsSelected === true && this.node.nodeIsSelected === false) {\n this.setSelectionState(child.nodeIsSelected)\n // Just bubble the event if the current node doesn't require any changes\n } else {\n this.$emit('node-selected')\n }\n },\n\n setNodeAndChildrenSelection (selectionState) {\n this.node.nodeId = this.nodeId\n this.node.nodeIsSelected = selectionState\n this.node.nodeType = this.isBranch === true ? 'branch' : 'leaf'\n\n if (this.node.children && this.node.children.length > 0) {\n this.setSelectionRecursively(this.node.children, selectionState)\n }\n },\n\n // Update isSelected property of the parent element and call recursively updateSelectedStatus on children\n setSelectionRecursively (childObjects, state) {\n childObjects.forEach(childObj => {\n childObj.nodeId = childObj.id\n childObj.nodeIsSelected = state\n childObj.nodeType = this.checkBranch({ node: childObj }) === true ? 'branch' : 'leaf'\n\n\n if (childObj.children && childObj.children.length > 0) {\n this.setSelectionRecursively(childObj.children, state)\n }\n })\n },\n\n setSelectionState (selectionState) {\n this.setNodeAndChildrenSelection(selectionState)\n this.$emit('node-selected')\n }\n },\n\n mounted () {\n this.$root.$on('treelist:toggle-all', (expanded) => (this.isExpanded = expanded))\n }\n}\n</script>\n
69
+ Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
70
+ <+>UTF-8
71
+ ===================================================================
72
+ diff --git a/src/components/DpTreeList/DpTreeListNode.vue b/src/components/DpTreeList/DpTreeListNode.vue
73
+ --- a/src/components/DpTreeList/DpTreeListNode.vue (revision f2fab2be07a606e9c45348b8e108dc03aa4992e4)
74
+ +++ b/src/components/DpTreeList/DpTreeListNode.vue (date 1746793685144)
75
+ @@ -14,10 +14,10 @@
76
+ </div>
77
+ <dp-tree-list-checkbox
78
+ v-if="isSelectable"
79
+ - :checked="node.nodeIsSelected"
80
+ + :checked="localNode.nodeIsSelected"
81
+ :name="checkboxIdentifier"
82
+ :string-value="nodeId"
83
+ - @check="setSelectionState(!node.nodeIsSelected)" />
84
+ + @check="setSelectionState(!localNode.nodeIsSelected)" />
85
+ <div
86
+ class="flex grow items-start"
87
+ :style="indentationStyle">
88
+ @@ -31,14 +31,14 @@
89
+ <slot
90
+ v-if="isBranch"
91
+ name="branch"
92
+ - :node-element="node"
93
+ + :node-element="localNode"
94
+ :node-children="children"
95
+ :node-id="nodeId"
96
+ :parent-id="parentId" />
97
+ <slot
98
+ v-if="isLeaf"
99
+ name="leaf"
100
+ - :node-element="node"
101
+ + :node-element="localNode"
102
+ :node-id="nodeId"
103
+ :parent-id="parentId" />
104
+ </div>
105
+ @@ -201,6 +201,7 @@
106
+ data () {
107
+ return {
108
+ isExpanded: false,
109
+ + localNode: this.node,
110
+ translations: {
111
+ noElementsExisting: de.noElementsExisting
112
+ }
113
+ @@ -311,9 +312,9 @@
114
+ },
115
+
116
+ handleChildSelectionChange (child) {
117
+ - if (this.options.deselectOn.childDeselect && child.nodeIsSelected === false && this.node.nodeIsSelected === true) {
118
+ + if (this.options.deselectOn.childDeselect && child.nodeIsSelected === false && this.localNode.nodeIsSelected === true) {
119
+ this.setSelectionState(child.nodeIsSelected)
120
+ - } else if (this.options.selectOn.childSelect && child.nodeIsSelected === true && this.node.nodeIsSelected === false) {
121
+ + } else if (this.options.selectOn.childSelect && child.nodeIsSelected === true && this.localNode.nodeIsSelected === false) {
122
+ this.setSelectionState(child.nodeIsSelected)
123
+ // Just bubble the event if the current node doesn't require any changes
124
+ } else {
125
+ @@ -322,12 +323,12 @@
126
+ },
127
+
128
+ setNodeAndChildrenSelection (selectionState) {
129
+ - this.node.nodeId = this.nodeId
130
+ - this.node.nodeIsSelected = selectionState
131
+ - this.node.nodeType = this.isBranch === true ? 'branch' : 'leaf'
132
+ + this.localNode.nodeId = this.nodeId
133
+ + this.localNode.nodeIsSelected = selectionState
134
+ + this.localNode.nodeType = this.isBranch === true ? 'branch' : 'leaf'
135
+
136
+ - if (this.node.children && this.node.children.length > 0) {
137
+ - this.setSelectionRecursively(this.node.children, selectionState)
138
+ + if (this.localNode.children && this.localNode.children.length > 0) {
139
+ + this.setSelectionRecursively(this.localNode.children, selectionState)
140
+ }
141
+ },
142
+
143
+ Index: tests/form/DpInput.spec.js
144
+ IDEA additional info:
145
+ Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
146
+ <+>import { runBooleanAttrTests, runStringAttrTests } from './shared/Attributes'\nimport { runLabelTests } from './shared/Label'\nimport DpInput from '~/components/DpInput'\nimport { shallowMount } from '@vue/test-utils'\n\nconst wrapper = shallowMount(DpInput, {\n props: {\n id: 'inputId',\n label: {\n hint: 'test hint'\n }\n }\n})\n\nrunLabelTests(wrapper)\n\nconst input = wrapper.find('input[type=\"text\"]')\nrunBooleanAttrTests(wrapper, input, 'required')\nrunBooleanAttrTests(wrapper, input, 'disabled')\nrunBooleanAttrTests(wrapper, input, 'readonly')\nrunStringAttrTests(wrapper, input, 'placeholder', 'This is a placeholder.', 'placeholder')\nrunStringAttrTests(wrapper, input, 'dataDpValidateError', 'Bitte füllen Sie alle Pflichtfelder(*) korrekt aus.', 'data-dp-validate-error')\nrunStringAttrTests(wrapper, input, 'dataDpValidateIf', '#r_getEvaluation', 'data-dp-validate-if')\nrunStringAttrTests(wrapper, input, 'dataDpValidateShouldEqual', 'This is a placeholder.', 'data-dp-validate-should-equal')\n\ndescribe('DpInput', () => {\n let wrapper\n\n beforeEach(() => {\n wrapper = shallowMount(DpInput, {\n props: {\n id: 'inputId',\n label: {\n hint: 'test hint'\n }\n }\n })\n })\n\n it('emits an event on input with the new value as argument', async () => {\n const newValue = 'some text'\n const input = wrapper.find('input')\n await input.setValue(newValue)\n\n expect(wrapper.emitted().input[0][0]).toEqual(newValue)\n })\n\n it('emits an event on keydown enter', async () => {\n const input = wrapper.find('input')\n await input.trigger('keydown.enter')\n expect(wrapper.emitted().enter).toBeDefined()\n })\n})\n
147
+ Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
148
+ <+>UTF-8
149
+ ===================================================================
150
+ diff --git a/tests/form/DpInput.spec.js b/tests/form/DpInput.spec.js
151
+ --- a/tests/form/DpInput.spec.js (revision f2fab2be07a606e9c45348b8e108dc03aa4992e4)
152
+ +++ b/tests/form/DpInput.spec.js (date 1746793699952)
153
+ @@ -7,7 +7,11 @@
154
+ props: {
155
+ id: 'inputId',
156
+ label: {
157
+ - hint: 'test hint'
158
+ + bold: true,
159
+ + hide: false,
160
+ + hint: 'test hint',
161
+ + text: '',
162
+ + tooltip: ''
163
+ }
164
+ }
165
+ })
166
+ @@ -31,7 +35,11 @@
167
+ props: {
168
+ id: 'inputId',
169
+ label: {
170
+ - hint: 'test hint'
171
+ + hint: 'test hint',
172
+ + bold: true,
173
+ + hide: false,
174
+ + text: '',
175
+ + tooltip: ''
176
+ }
177
+ }
178
+ })
179
+ Index: src/mixins/dpValidateMixin.js
180
+ IDEA additional info:
181
+ Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
182
+ <+>/*\n * This is the dpValidate vue mixin that allows us to validate inputs in vue components.\n * It is to be used in vue components. To use it in vanilla JS-context see: src/lib/validation/dpValidate.js\n *\n * Up to date documentation and usage examples can be found here:\n * https://dplan-documentation.demos-europe.eu/development/application-architecture/validation/frontend/#_1-use-as-a-vue-mixin-dpvalidatemixin-js\n */\n\nimport { de } from '~/components/shared/translations'\nimport { errorClass, scrollToVisibleElement } from '~/lib/validation/utils/helpers'\nimport { assignHandlersForInputs } from '~/lib/validation/utils/assignHandlersForInputs'\nimport hasOwnProp from '~/utils/hasOwnProp'\nimport validateForm from '~/lib/validation/utils/validateForm'\n\nexport default {\n data () {\n return {\n dpValidate: {}\n }\n },\n\n methods: {\n /**\n *\n * @param formId\n * @param callback\n * @param forceCallback if true, the callback function is called even if the form is invalid\n */\n dpValidateAction (formId, callback, forceCallback = true) {\n const isForm = this.$el.hasAttribute('data-dp-validate') && this.$el.getAttribute('data-dp-validate') === formId\n const form = isForm ? this.$el : this.$el.querySelector(`[data-dp-validate=${formId}]`)\n const formValidation = validateForm(form)\n this.dpValidate = { ...this.dpValidate, [formId]: formValidation.valid }\n\n if (hasOwnProp(this.dpValidate, 'invalidFields') === false) {\n this.dpValidate.invalidFields = {}\n }\n this.dpValidate.invalidFields[formId] = formValidation.invalidFields\n\n if (this.dpValidate[formId] === false) {\n const invalidFields = this.dpValidate.invalidFields[formId]\n const customErrors = invalidFields\n .filter(element => element.hasAttribute('data-dp-validate-error'))\n .map(element => element.dataset.dpValidateError)\n customErrors.forEach(error => dplan.notify.notify('error', error))\n\n if (customErrors.length === 0) {\n const nonEmptyUniqueFieldNames = invalidFields\n .map(field => field.getAttribute('data-dp-validate-error-fieldname'))\n .filter(Boolean)\n .filter((field, idx, arr) => arr.indexOf(field) === idx)\n\n if (nonEmptyUniqueFieldNames.length) {\n const fieldsString = nonEmptyUniqueFieldNames ? nonEmptyUniqueFieldNames.join(', ') : ' '\n const errorMandatoryFields = de.error.mandatoryFields.intro + fieldsString + de.error.mandatoryFields.outro\n dplan.notify.notify('error', errorMandatoryFields)\n } else {\n dplan.notify.notify('error', de.error.mandatoryFields.default)\n }\n }\n const firstErrorElement = form.querySelector('.' + errorClass)\n scrollToVisibleElement(firstErrorElement)\n }\n\n // In some cases, we want to call the callback even if the form is invalid\n if ((this.dpValidate[formId] === false && forceCallback) || this.dpValidate[formId]) {\n return callback()\n }\n }\n },\n\n mounted () {\n // Set the initial values for form validity to true and add event listener for input fields (focus and blur)\n let forms = []\n if (this.$el.hasAttribute('data-dp-validate')) {\n this.isComponentForm = true // It means a whole component is a form to be validated; it has no child-forms\n forms.push(this.$el)\n } else {\n this.isComponentForm = false // It means in this component there are several forms that need to be validated\n forms = Array.from(this.$el.querySelectorAll('[data-dp-validate]'))\n }\n\n this.dpValidateForms = forms\n\n this.dpValidateForms.forEach(form => {\n const formId = form.getAttribute('data-dp-validate')\n this.dpValidate[formId] = true\n assignHandlersForInputs(form)\n })\n },\n\n updated () {\n this.$nextTick(() => {\n // Check if new forms were added - only if component is not a form itself\n if (this.isComponentForm === false) {\n // Collect all forms, that are in DOM after the update\n const afterUpdateForms = Array.from(this.$el.querySelectorAll('[data-dp-validate]'))\n // Merge forms that are currently in DOM with the forms that were previously in DOM\n const allForms = afterUpdateForms.concat(this.dpValidateForms)\n // Loop over all forms\n allForms.forEach(form => {\n if (this.dpValidateForms.includes(form) && afterUpdateForms.includes(form) === false) {\n // Remove form from dpValidateForms if it is no longer in DOM\n const idx = this.dpValidateForms.findIndex(el => el === form)\n delete this.dpValidateForms[idx]\n } else if (this.dpValidateForms.includes(form) === false && afterUpdateForms.includes(form)) {\n // If it is a new form (was just added to DOM), add it to dpValidateForms and assign handlers to each field\n this.dpValidateForms.push(form)\n const formId = form.getAttribute('data-dp-validate')\n this.dpValidate[formId] = true\n assignHandlersForInputs(form)\n } else {\n // If the form was previously in DOM and was not removed, reassign handlers as the required/validateIf/pattern properties may have changed\n assignHandlersForInputs(form)\n }\n })\n } else {\n // If component is a form, only reassign handlers in existing forms\n this.dpValidateForms.forEach(form => {\n assignHandlersForInputs(form)\n })\n }\n })\n }\n}\n
183
+ Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
184
+ <+>UTF-8
185
+ ===================================================================
186
+ diff --git a/src/mixins/dpValidateMixin.js b/src/mixins/dpValidateMixin.js
187
+ --- a/src/mixins/dpValidateMixin.js (revision f2fab2be07a606e9c45348b8e108dc03aa4992e4)
188
+ +++ b/src/mixins/dpValidateMixin.js (date 1746793699960)
189
+ @@ -6,9 +6,9 @@
190
+ * https://dplan-documentation.demos-europe.eu/development/application-architecture/validation/frontend/#_1-use-as-a-vue-mixin-dpvalidatemixin-js
191
+ */
192
+
193
+ -import { de } from '~/components/shared/translations'
194
+ import { errorClass, scrollToVisibleElement } from '~/lib/validation/utils/helpers'
195
+ import { assignHandlersForInputs } from '~/lib/validation/utils/assignHandlersForInputs'
196
+ +import { de } from '~/components/shared/translations'
197
+ import hasOwnProp from '~/utils/hasOwnProp'
198
+ import validateForm from '~/lib/validation/utils/validateForm'
199
+
@@ -0,0 +1,4 @@
1
+ <changelist name="Uncommitted_changes_before_Checkout_at_12_05_2025_14_15_[Changes]" date="1747052155138" recycled="true" deleted="true">
2
+ <option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Uncommitted_changes_before_Checkout_at_12_05_2025_14_15_[Changes]/shelved.patch" />
3
+ <option name="DESCRIPTION" value="Uncommitted changes before Checkout at 12 05 2025 14:15 [Changes]" />
4
+ </changelist>