@k-int/stripes-kint-components 2.2.0 → 2.3.2

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 (274) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/es/index.js +125 -9
  3. package/es/lib/ActionList/ActionList.js +8 -33
  4. package/es/lib/ActionList/ActionListFieldArray.js +50 -49
  5. package/es/lib/ActionList/index.js +1 -5
  6. package/es/lib/CustomProperties/Config/CustomPropertiesLookup.js +1 -35
  7. package/es/lib/CustomProperties/Config/CustomPropertiesSettings.js +3 -39
  8. package/es/lib/CustomProperties/Config/CustomPropertyForm.js +1 -34
  9. package/es/lib/CustomProperties/Config/{CustomPropertiesView.js → CustomPropertyView.js} +4 -33
  10. package/es/lib/CustomProperties/Config/index.js +7 -9
  11. package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.js +43 -0
  12. package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +100 -0
  13. package/es/lib/CustomProperties/Edit/CustomPropertiesListField.js +243 -0
  14. package/es/lib/CustomProperties/Edit/CustomPropertyField.js +337 -0
  15. package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.js +127 -0
  16. package/es/lib/CustomProperties/Edit/index.js +47 -0
  17. package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.js +183 -0
  18. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +204 -0
  19. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +126 -0
  20. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +90 -0
  21. package/es/lib/CustomProperties/Filter/CustomPropertiesRule.js +139 -0
  22. package/es/lib/CustomProperties/Filter/index.js +55 -0
  23. package/es/lib/CustomProperties/Filter/useOperators.js +100 -0
  24. package/es/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +64 -0
  25. package/es/lib/CustomProperties/Filter/useValueProps.js +67 -0
  26. package/es/lib/CustomProperties/View/CustomPropertiesView.js +44 -0
  27. package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.js +155 -0
  28. package/es/lib/CustomProperties/View/CustomPropertyCard.js +175 -0
  29. package/es/lib/CustomProperties/View/index.js +31 -0
  30. package/es/lib/CustomProperties/index.js +121 -0
  31. package/es/lib/EditableRefdataList/EditableRefdataList.js +13 -51
  32. package/es/lib/EditableRefdataList/index.js +1 -5
  33. package/es/lib/EditableSettingsList/EditableSettingsList.js +1 -30
  34. package/es/lib/EditableSettingsList/EditableSettingsListFieldArray.js +1 -30
  35. package/es/lib/EditableSettingsList/EditableSettingsListFieldArray.test.js +1 -30
  36. package/es/lib/EditableSettingsList/SettingField/EditSettingValue.js +1 -34
  37. package/es/lib/EditableSettingsList/SettingField/EditSettingValue.test.js +1 -34
  38. package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.js +1 -34
  39. package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.test.js +1 -41
  40. package/es/lib/EditableSettingsList/SettingField/SettingField.js +1 -34
  41. package/es/lib/EditableSettingsList/SettingField/SettingField.test.js +1 -30
  42. package/es/lib/EditableSettingsList/SettingField/index.js +1 -5
  43. package/es/lib/EditableSettingsList/index.js +1 -5
  44. package/es/lib/FormModal/FormModal.js +21 -34
  45. package/es/lib/FormModal/index.js +1 -5
  46. package/es/lib/NoResultsMessage/NoResultsMessage.js +1 -30
  47. package/es/lib/NoResultsMessage/index.js +1 -5
  48. package/es/lib/QueryTypedown/QueryTypedown.js +9 -37
  49. package/es/lib/QueryTypedown/index.js +1 -5
  50. package/es/lib/RefdataButtons/RefdataButtons.js +1 -34
  51. package/es/lib/RefdataButtons/index.js +1 -5
  52. package/es/lib/SASQLookupComponent/SASQLookupComponent.js +1 -34
  53. package/es/lib/SASQLookupComponent/index.js +1 -5
  54. package/es/lib/SASQRoute/SASQRoute.js +1 -30
  55. package/es/lib/SASQRoute/index.js +1 -5
  56. package/es/lib/SASQViewComponent/SASQViewComponent.js +1 -34
  57. package/es/lib/SASQViewComponent/index.js +1 -5
  58. package/es/lib/SearchField/SearchField.js +1 -31
  59. package/es/lib/SearchField/index.js +1 -5
  60. package/es/lib/SettingPage/SettingPage.js +1 -34
  61. package/es/lib/SettingPage/SettingPagePane.js +1 -32
  62. package/es/lib/SettingPage/index.js +1 -5
  63. package/es/lib/Typedown/Typedown.js +1 -34
  64. package/es/lib/Typedown/index.js +1 -5
  65. package/es/lib/constants/customProperties.js +3 -37
  66. package/es/lib/constants/eventCodes.js +1 -31
  67. package/es/lib/contexts/SettingsContext.js +1 -30
  68. package/es/lib/contexts/index.js +1 -5
  69. package/es/lib/hooks/index.js +16 -4
  70. package/es/lib/hooks/settingsHooks/index.js +1 -5
  71. package/es/lib/hooks/settingsHooks/useSettingSection.js +1 -34
  72. package/es/lib/hooks/settingsHooks/useSettings.js +1 -36
  73. package/es/lib/hooks/typedownHooks/index.js +1 -5
  74. package/es/lib/hooks/typedownHooks/useTypedown.js +1 -34
  75. package/es/lib/hooks/typedownHooks/useTypedownData.js +9 -35
  76. package/es/lib/hooks/typedownHooks/useTypedownToggle.js +1 -34
  77. package/es/lib/hooks/useActiveElement.js +1 -32
  78. package/es/lib/hooks/useAvailableCustomProperties.js +73 -0
  79. package/es/lib/hooks/useCustomProperties.js +1 -34
  80. package/es/lib/hooks/useHelperApp.js +1 -34
  81. package/es/lib/hooks/useInvalidateRefdata.js +20 -0
  82. package/es/lib/hooks/useKiwtFieldArray.js +1 -34
  83. package/es/lib/hooks/useKiwtSASQuery.js +1 -35
  84. package/es/lib/hooks/useLocalStorageState.js +1 -34
  85. package/es/lib/hooks/useMutateCustomProperties.js +1 -34
  86. package/es/lib/hooks/useMutateRefdataValue.js +10 -38
  87. package/es/lib/hooks/useQIndex.js +1 -34
  88. package/es/lib/hooks/useRefdata.js +2 -37
  89. package/es/lib/hooks/useTemplates.js +1 -34
  90. package/es/lib/utils/buildUrl.js +2 -31
  91. package/es/lib/utils/generateKiwtQuery.js +1 -30
  92. package/es/lib/utils/generateKiwtQueryParams.js +1 -30
  93. package/es/lib/utils/groupCustomPropertiesByCtx.js +41 -0
  94. package/es/lib/utils/index.js +25 -5
  95. package/es/lib/utils/refdataOptions.js +1 -30
  96. package/es/lib/utils/refdataQueryKey.js +19 -0
  97. package/es/lib/utils/renderHelpText.js +1 -30
  98. package/es/lib/utils/selectorSafe.js +1 -30
  99. package/es/lib/utils/sortByLabel.js +1 -30
  100. package/es/lib/utils/toCamelCase.js +1 -30
  101. package/es/lib/utils/typedownQueryKey.js +19 -0
  102. package/es/lib/utils/validators.js +59 -31
  103. package/git_translate.sh +8 -0
  104. package/package.json +1 -1
  105. package/src/index.js +27 -3
  106. package/src/lib/ActionList/ActionList.js +5 -2
  107. package/src/lib/ActionList/ActionListFieldArray.js +31 -9
  108. package/src/lib/ActionList/README.md +23 -20
  109. package/src/lib/CustomProperties/Config/CustomPropertiesSettings.js +2 -2
  110. package/src/lib/CustomProperties/Config/{CustomPropertiesView.js → CustomPropertyView.js} +3 -3
  111. package/src/lib/CustomProperties/Config/index.js +1 -1
  112. package/src/lib/CustomProperties/Edit/CustomPropertiesEdit.js +35 -0
  113. package/src/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +85 -0
  114. package/src/lib/CustomProperties/Edit/CustomPropertiesListField.js +194 -0
  115. package/src/lib/CustomProperties/Edit/CustomPropertyField.js +299 -0
  116. package/src/lib/CustomProperties/Edit/CustomPropertyFormCard.js +131 -0
  117. package/src/lib/CustomProperties/Edit/index.js +5 -0
  118. package/src/lib/CustomProperties/Filter/CustomPropertiesFilter.js +125 -0
  119. package/src/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +148 -0
  120. package/src/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +113 -0
  121. package/src/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +74 -0
  122. package/src/lib/CustomProperties/Filter/CustomPropertiesRule.js +122 -0
  123. package/src/lib/CustomProperties/Filter/index.js +6 -0
  124. package/src/lib/CustomProperties/Filter/useOperators.js +55 -0
  125. package/src/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +35 -0
  126. package/src/lib/CustomProperties/Filter/useValueProps.js +45 -0
  127. package/src/lib/CustomProperties/View/CustomPropertiesView.js +36 -0
  128. package/src/lib/CustomProperties/View/CustomPropertiesViewCtx.js +112 -0
  129. package/src/lib/CustomProperties/View/CustomPropertyCard.js +177 -0
  130. package/src/lib/CustomProperties/View/index.js +3 -0
  131. package/src/lib/CustomProperties/index.js +30 -0
  132. package/src/lib/EditableRefdataList/EditableRefdataList.js +13 -10
  133. package/src/lib/FormModal/FormModal.js +39 -17
  134. package/src/lib/QueryTypedown/QueryTypedown.js +3 -1
  135. package/src/lib/constants/customProperties.js +1 -0
  136. package/src/lib/hooks/index.js +2 -0
  137. package/src/lib/hooks/typedownHooks/useTypedownData.js +9 -3
  138. package/src/lib/hooks/useAvailableCustomProperties.js +40 -0
  139. package/src/lib/hooks/useInvalidateRefdata.js +11 -0
  140. package/src/lib/hooks/useMutateRefdataValue.js +7 -3
  141. package/src/lib/hooks/useRefdata.js +2 -3
  142. package/src/lib/utils/groupCustomPropertiesByCtx.js +13 -0
  143. package/src/lib/utils/index.js +5 -0
  144. package/src/lib/utils/refdataQueryKey.js +9 -0
  145. package/src/lib/utils/typedownQueryKey.js +9 -0
  146. package/src/lib/utils/validators.js +40 -0
  147. package/translate.sh +63 -0
  148. package/translations/stripes-kint-components/ar.json +105 -0
  149. package/translations/stripes-kint-components/ca.json +1 -0
  150. package/translations/stripes-kint-components/cs_CZ.json +105 -0
  151. package/translations/stripes-kint-components/da.json +1 -0
  152. package/translations/stripes-kint-components/de.json +105 -0
  153. package/translations/stripes-kint-components/en.json +54 -2
  154. package/translations/stripes-kint-components/es.json +105 -0
  155. package/translations/stripes-kint-components/fr.json +105 -0
  156. package/translations/stripes-kint-components/he.json +1 -0
  157. package/translations/stripes-kint-components/hi_IN.json +105 -0
  158. package/translations/stripes-kint-components/hu.json +105 -0
  159. package/translations/stripes-kint-components/it_IT.json +105 -0
  160. package/translations/stripes-kint-components/ja.json +105 -0
  161. package/translations/stripes-kint-components/ko.json +105 -0
  162. package/translations/stripes-kint-components/nb.json +1 -0
  163. package/translations/stripes-kint-components/nn.json +1 -0
  164. package/translations/stripes-kint-components/pl.json +105 -0
  165. package/translations/stripes-kint-components/pt_PT.json +105 -0
  166. package/translations/stripes-kint-components/ru.json +105 -0
  167. package/translations/stripes-kint-components/sv.json +105 -0
  168. package/translations/stripes-kint-components/ur.json +1 -0
  169. package/translations/stripes-kint-components/zh_CN.json +105 -0
  170. package/es/artifacts/coverage-jest/lcov-report/block-navigation.js +0 -109
  171. package/es/artifacts/coverage-jest/lcov-report/prettify.js +0 -998
  172. package/es/artifacts/coverage-jest/lcov-report/sorter.js +0 -238
  173. package/junit.xml +0 -79
  174. package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionList.js.html +0 -286
  175. package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionListFieldArray.js.html +0 -925
  176. package/src/artifacts/coverage-jest/lcov-report/ActionList/index.html +0 -146
  177. package/src/artifacts/coverage-jest/lcov-report/ActionList/index.js.html +0 -88
  178. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesLookup.js.html +0 -418
  179. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesSettings.js.html +0 -808
  180. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesView.js.html +0 -601
  181. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertyForm.js.html +0 -1135
  182. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/index.html +0 -176
  183. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/index.js.html +0 -97
  184. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/EditableRefdataList.js.html +0 -373
  185. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.html +0 -131
  186. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.js.html +0 -88
  187. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsList.js.html +0 -223
  188. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsListFieldArray.js.html +0 -211
  189. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/EditSettingValue.js.html +0 -376
  190. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/RenderSettingValue.js.html +0 -262
  191. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/SettingField.js.html +0 -436
  192. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.html +0 -161
  193. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.js.html +0 -94
  194. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.html +0 -146
  195. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.js.html +0 -94
  196. package/src/artifacts/coverage-jest/lcov-report/FormModal/FormModal.js.html +0 -283
  197. package/src/artifacts/coverage-jest/lcov-report/FormModal/index.html +0 -131
  198. package/src/artifacts/coverage-jest/lcov-report/FormModal/index.js.html +0 -88
  199. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/NoResultsMessage.js.html +0 -319
  200. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/index.html +0 -131
  201. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/index.js.html +0 -88
  202. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/QueryTypedown.js.html +0 -184
  203. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/index.html +0 -131
  204. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/index.js.html +0 -88
  205. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/RefdataButtons.js.html +0 -370
  206. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/index.html +0 -131
  207. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/index.js.html +0 -88
  208. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/SASQLookupComponent.js.html +0 -949
  209. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/index.html +0 -131
  210. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/index.js.html +0 -88
  211. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/SASQRoute.js.html +0 -301
  212. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/index.html +0 -131
  213. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/index.js.html +0 -88
  214. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/SASQViewComponent.js.html +0 -253
  215. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/index.html +0 -131
  216. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/index.js.html +0 -88
  217. package/src/artifacts/coverage-jest/lcov-report/SearchField/SearchField.js.html +0 -214
  218. package/src/artifacts/coverage-jest/lcov-report/SearchField/index.html +0 -131
  219. package/src/artifacts/coverage-jest/lcov-report/SearchField/index.js.html +0 -88
  220. package/src/artifacts/coverage-jest/lcov-report/SettingPage/SettingPage.js.html +0 -211
  221. package/src/artifacts/coverage-jest/lcov-report/SettingPage/SettingPagePane.js.html +0 -178
  222. package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.html +0 -146
  223. package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.js.html +0 -91
  224. package/src/artifacts/coverage-jest/lcov-report/Typedown/Typedown.js.html +0 -919
  225. package/src/artifacts/coverage-jest/lcov-report/Typedown/index.html +0 -131
  226. package/src/artifacts/coverage-jest/lcov-report/Typedown/index.js.html +0 -88
  227. package/src/artifacts/coverage-jest/lcov-report/base.css +0 -224
  228. package/src/artifacts/coverage-jest/lcov-report/block-navigation.js +0 -87
  229. package/src/artifacts/coverage-jest/lcov-report/constants/customProperties.js.html +0 -112
  230. package/src/artifacts/coverage-jest/lcov-report/constants/eventCodes.js.html +0 -94
  231. package/src/artifacts/coverage-jest/lcov-report/constants/index.html +0 -131
  232. package/src/artifacts/coverage-jest/lcov-report/contexts/SettingsContext.js.html +0 -97
  233. package/src/artifacts/coverage-jest/lcov-report/contexts/index.html +0 -131
  234. package/src/artifacts/coverage-jest/lcov-report/contexts/index.js.html +0 -91
  235. package/src/artifacts/coverage-jest/lcov-report/favicon.png +0 -0
  236. package/src/artifacts/coverage-jest/lcov-report/hooks/index.html +0 -281
  237. package/src/artifacts/coverage-jest/lcov-report/hooks/index.js.html +0 -121
  238. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.html +0 -146
  239. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.js.html +0 -91
  240. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettingSection.js.html +0 -163
  241. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettings.js.html +0 -403
  242. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/index.html +0 -161
  243. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/index.js.html +0 -94
  244. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedown.js.html +0 -520
  245. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedownData.js.html +0 -163
  246. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedownToggle.js.html +0 -163
  247. package/src/artifacts/coverage-jest/lcov-report/hooks/useActiveElement.js.html +0 -157
  248. package/src/artifacts/coverage-jest/lcov-report/hooks/useCustomProperties.js.html +0 -313
  249. package/src/artifacts/coverage-jest/lcov-report/hooks/useHelperApp.js.html +0 -283
  250. package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtFieldArray.js.html +0 -274
  251. package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtSASQuery.js.html +0 -178
  252. package/src/artifacts/coverage-jest/lcov-report/hooks/useLocalStorageState.js.html +0 -136
  253. package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateCustomProperties.js.html +0 -271
  254. package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateRefdataValue.js.html +0 -301
  255. package/src/artifacts/coverage-jest/lcov-report/hooks/useQIndex.js.html +0 -208
  256. package/src/artifacts/coverage-jest/lcov-report/hooks/useRefdata.js.html +0 -268
  257. package/src/artifacts/coverage-jest/lcov-report/hooks/useTemplates.js.html +0 -166
  258. package/src/artifacts/coverage-jest/lcov-report/index.html +0 -416
  259. package/src/artifacts/coverage-jest/lcov-report/prettify.css +0 -1
  260. package/src/artifacts/coverage-jest/lcov-report/prettify.js +0 -2
  261. package/src/artifacts/coverage-jest/lcov-report/sort-arrow-sprite.png +0 -0
  262. package/src/artifacts/coverage-jest/lcov-report/sorter.js +0 -196
  263. package/src/artifacts/coverage-jest/lcov-report/utils/buildUrl.js.html +0 -193
  264. package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQuery.js.html +0 -109
  265. package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQueryParams.js.html +0 -454
  266. package/src/artifacts/coverage-jest/lcov-report/utils/index.html +0 -251
  267. package/src/artifacts/coverage-jest/lcov-report/utils/index.js.html +0 -121
  268. package/src/artifacts/coverage-jest/lcov-report/utils/refdataOptions.js.html +0 -106
  269. package/src/artifacts/coverage-jest/lcov-report/utils/renderHelpText.js.html +0 -166
  270. package/src/artifacts/coverage-jest/lcov-report/utils/selectorSafe.js.html +0 -103
  271. package/src/artifacts/coverage-jest/lcov-report/utils/sortByLabel.js.html +0 -130
  272. package/src/artifacts/coverage-jest/lcov-report/utils/toCamelCase.js.html +0 -127
  273. package/src/artifacts/coverage-jest/lcov-report/utils/validators.js.html +0 -202
  274. package/src/artifacts/coverage-jest/lcov.info +0 -2562
@@ -0,0 +1,105 @@
1
+ {
2
+ "AND": "och",
3
+ "OR": "eller",
4
+ "create": "Skapa",
5
+ "edit": "Edit",
6
+ "save": "Spara",
7
+ "cancel": "Avbokning",
8
+ "delete": "Delete",
9
+ "apply": "Applicera",
10
+ "notSet": "Inte set",
11
+ "errors.hasNonAlphaName": "Namnet kan endast innehålla latinska alfabetiska tecken (a-z) och icke-ledande numeriska tecken.",
12
+ "settings.noCurrentValue": "Inget nuvarande värde",
13
+ "settings.default": "Default",
14
+ "settings.edit": "Edit",
15
+ "settings.settingLoading": "Loading",
16
+ "settings.finishEditing": "Finish redigering",
17
+ "settings.valueFor": "Värde för inställning {namn}",
18
+ "actionList.save": "Spara",
19
+ "actionList.cancel": "Avbokning",
20
+ "actionList.create": "Skapa",
21
+ "actionList.actions": "Åtgärder",
22
+ "editableRefdataList.edit": "Edit",
23
+ "editableRefdataList.delete": "Delete",
24
+ "editableRefdataList.label": "Etikett",
25
+ "editableRefdataList.value": "Värde",
26
+ "sasqLookupComponent.mainPane.found": "{total} rekord funna",
27
+ "noResultsMessage.showFilters": "Visa filter",
28
+ "customProperties": "Anpassade egenskaper",
29
+ "customProperties.all": "Allt allt",
30
+ "customProperties.none": "Ingen",
31
+ "customProperties.label": "Etikett",
32
+ "customProperties.primary": "Primär",
33
+ "customProperties.retired": "Pensionerad",
34
+ "customProperties.ctx": "Kontext",
35
+ "customProperties.ctx.addContext": "Lägg till kontext {värde}",
36
+ "customProperties.weight": "Ordervikt",
37
+ "customProperties.type": "Typ",
38
+ "customProperties.internalFalse": "Offentliga",
39
+ "customProperties.internalNote": "Intern anmärkning",
40
+ "customProperties.internalTrue": "Interna",
41
+ "customProperties.publicNote": "Public note",
42
+ "customProperties.name": "Namnnamn",
43
+ "customProperties.description": "Beskrivning",
44
+ "customProperties.category": "Picklist",
45
+ "customProperties.defaultVisibility": "Standard synlighet",
46
+ "customProperties.noCtxFound": "Inget matchande sammanhang hittades",
47
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBlob": "Blob",
48
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBoolean": "Boolean",
49
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyContainer": "Container",
50
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyDecimal": "Decimal",
51
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyInteger": "Integer",
52
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdata": "Refdata",
53
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdataDefinition": "Refdata definition",
54
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyText": "Texttext",
55
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyLocalDate": "Datum",
56
+ "customProperties.delete.confirmLabel": "Delete",
57
+ "customProperties.delete.confirmHeading": "Ta bort anpassad egendom",
58
+ "customProperties.delete.confirmMessage": "Anpassad egendom <strong>{nameś/strong> kommer att vara <strong>rade</strong>.",
59
+ "customProperties.primaryProperties": "Primära egenskaper",
60
+ "customProperties.optionalProperties": "Valfria egenskaper",
61
+ "customProperties.addProperty": "Lägg till egendom",
62
+ "customProperties.ctx.title": "Anpassade egenskaper ({cx})",
63
+ "customProperty.optionalPropertyHeader": "Fastighet {number}",
64
+ "customProperty.remove": "Ta bort egendom {number}",
65
+ "search": "Sök efter Sök",
66
+ "yes": "Ja ja ja ja ja",
67
+ "no": "Ingen",
68
+ "errors.invalidNumber": "Ange ett giltigt nummer för att fortsätta",
69
+ "errors.primaryRetired": "En egen egendom kan inte vara både primär och pensionerad",
70
+ "errors.customPropertyNoteInvalidNumber": "Ett giltigt nummer måste anges för att spara en anteckning",
71
+ "errors.customPropertyInvalidNumber": "Ange ett giltigt nummer för att fortsätta",
72
+ "errors.customPropertyNoteWithoutValue": "Ett värde måste ställas in för att spara en anteckning",
73
+ "errors.customPropertyValueNotInRange": "Ange ett helt nummer i intervallet {min} till {max} för att fortsätta",
74
+ "errors.customPropertyDecimalValueNotInRange": "Ange ett nummer i intervallet {min} till {max} för att fortsätta",
75
+ "errors.customPropertyMaxTwoDecimals": "Ange ett nummer med högst 2 decimaler",
76
+ "customProperty": "Anpassad egendom",
77
+ "customProperty.name": "Namnnamn",
78
+ "customProperty.value": "Värde",
79
+ "customProperty.internalNote": "Intern anmärkning",
80
+ "customProperty.visibility": "Synlighet",
81
+ "customProperty.publicNote": "Public note",
82
+ "customProperty.internalTrue": "Interna",
83
+ "customProperty.internalFalse": "Offentliga",
84
+ "customProperty.filtersApplied": "anpassade egenskaper filter tillämpas",
85
+ "customProperty.editCustomPropertyFilters": "Redigera anpassade fastighetsfilter",
86
+ "customProperty.filterBuilder": "Anpassad fastighet filter byggare",
87
+ "customProperty.filterIndex": "Anpassad egendom filter {index}",
88
+ "customProperty.removeFilter": "Ta bort anpassat fastighetsfilter {number}",
89
+ "customProperty.removeRule": "Ta bort regeln {number}",
90
+ "customProperty.addFilter": "Lägg till anpassat fastighetsfilter",
91
+ "customProperty.retiredName": "RETIRED: {namn}",
92
+ "customProperty.notSet": "Inte set",
93
+ "operator.isSet": "Är set",
94
+ "operator.isNotSet": "Är inte inställd",
95
+ "operator.equals": "Likaså",
96
+ "operator.doesNotEqual": "Är inte lika",
97
+ "operator.isGreaterThanOrEqual": "är större än eller lika med",
98
+ "operator.isLessThanOrEqual": "är mindre än eller lika med",
99
+ "operator.isOnOrAfter": "Är på eller efter",
100
+ "operator.isOnOrBefore": "Är på eller före",
101
+ "operator.is": "Är",
102
+ "operator.isNot": "Är inte",
103
+ "operator.contains": "Innehåll",
104
+ "operator.doesNotContain": "Innehåller inte"
105
+ }
@@ -0,0 +1,105 @@
1
+ {
2
+ "AND": "导 言",
3
+ "OR": "其他资源",
4
+ "create": "创建",
5
+ "edit": "编辑",
6
+ "save": "拯救",
7
+ "cancel": "增 编",
8
+ "delete": "删除",
9
+ "apply": "附录",
10
+ "notSet": "没有",
11
+ "errors.hasNonAlphaName": "该名称只可包括拉丁美洲名录(a-z)和非导体。",
12
+ "settings.noCurrentValue": "现值",
13
+ "settings.default": "违约",
14
+ "settings.edit": "编辑",
15
+ "settings.settingLoading": "损失",
16
+ "settings.finishEditing": "编辑",
17
+ "settings.valueFor": "确定名称的价值",
18
+ "actionList.save": "拯救",
19
+ "actionList.cancel": "增 编",
20
+ "actionList.create": "创建",
21
+ "actionList.actions": "行动",
22
+ "editableRefdataList.edit": "编辑",
23
+ "editableRefdataList.delete": "删除",
24
+ "editableRefdataList.label": "Label",
25
+ "editableRefdataList.value": "价值",
26
+ "sasqLookupComponent.mainPane.found": "目 录",
27
+ "noResultsMessage.showFilters": "技术过滤",
28
+ "customProperties": "习惯财产",
29
+ "customProperties.all": "一. 导言",
30
+ "customProperties.none": "无",
31
+ "customProperties.label": "Label",
32
+ "customProperties.primary": "小学",
33
+ "customProperties.retired": "重新谈判",
34
+ "customProperties.ctx": "背景",
35
+ "customProperties.ctx.addContext": "增 温",
36
+ "customProperties.weight": "命令",
37
+ "customProperties.type": "类型",
38
+ "customProperties.internalFalse": "公共",
39
+ "customProperties.internalNote": "内部说明",
40
+ "customProperties.internalTrue": "内部",
41
+ "customProperties.publicNote": "公开说明",
42
+ "customProperties.name": "姓名",
43
+ "customProperties.description": "说明",
44
+ "customProperties.category": "Picklist",
45
+ "customProperties.defaultVisibility": "A. Default可见度",
46
+ "customProperties.noCtxFound": "未发现的匹配情况",
47
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBlob": "Blob",
48
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBoolean": "Boolean",
49
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyContainer": "集装箱",
50
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyDecimal": "残疾",
51
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyInteger": "附录",
52
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdata": "数据",
53
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdataDefinition": "数据定义",
54
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyText": "案文",
55
+ "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyLocalDate": "日期",
56
+ "customProperties.delete.confirmLabel": "删除",
57
+ "customProperties.delete.confirmHeading": "删除习俗财产",
58
+ "customProperties.delete.confirmMessage": "习惯财产<strong> ivi-</strong><strong>。",
59
+ "customProperties.primaryProperties": "初级财产",
60
+ "customProperties.optionalProperties": "备选案文财产",
61
+ "customProperties.addProperty": "增加财产",
62
+ "customProperties.ctx.title": "习惯财产(四分之三)",
63
+ "customProperty.optionalPropertyHeader": "财产编号",
64
+ "customProperty.remove": "搬离财产编号",
65
+ "search": "建 议",
66
+ "yes": "否",
67
+ "no": "注",
68
+ "errors.invalidNumber": "请获得继续有效数目",
69
+ "errors.primaryRetired": "习惯财产不能是初级和退休。",
70
+ "errors.customPropertyNoteInvalidNumber": "必须持有有效数目以挽救说明",
71
+ "errors.customPropertyInvalidNumber": "请获得继续有效数目",
72
+ "errors.customPropertyNoteWithoutValue": "必须确定价值,以挽救说明",
73
+ "errors.customPropertyValueNotInRange": "请进入继续保留的编号。",
74
+ "errors.customPropertyDecimalValueNotInRange": "请进入继续保留的编号。",
75
+ "errors.customPropertyMaxTwoDecimals": "请注意",
76
+ "customProperty": "习惯财产",
77
+ "customProperty.name": "姓名",
78
+ "customProperty.value": "价值",
79
+ "customProperty.internalNote": "内部说明",
80
+ "customProperty.visibility": "有效性",
81
+ "customProperty.publicNote": "公开说明",
82
+ "customProperty.internalTrue": "内部",
83
+ "customProperty.internalFalse": "公共",
84
+ "customProperty.filtersApplied": "(三) 习惯财产过滤",
85
+ "customProperty.editCustomPropertyFilters": "编辑财产过滤",
86
+ "customProperty.filterBuilder": "习惯财产过滤器",
87
+ "customProperty.filterIndex": "习惯财产过滤器",
88
+ "customProperty.removeFilter": "移用习俗财产过滤编号",
89
+ "customProperty.removeRule": "搬离规则编号",
90
+ "customProperty.addFilter": "增加习俗财产",
91
+ "customProperty.retiredName": "评 注:",
92
+ "customProperty.notSet": "没有",
93
+ "operator.isSet": "附 件",
94
+ "operator.isNotSet": "未作规定",
95
+ "operator.equals": "平等",
96
+ "operator.doesNotEqual": "否",
97
+ "operator.isGreaterThanOrEqual": "大于或等于",
98
+ "operator.isLessThanOrEqual": "低于或等于",
99
+ "operator.isOnOrAfter": "地点或之后",
100
+ "operator.isOnOrBefore": "议 程",
101
+ "operator.is": "附 件",
102
+ "operator.isNot": "目 录",
103
+ "operator.contains": "集装箱",
104
+ "operator.doesNotContain": "不含"
105
+ }
@@ -1,109 +0,0 @@
1
- "use strict";
2
-
3
- (function () {
4
- var enterModule = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.enterModule : undefined;
5
- enterModule && enterModule(module);
6
- })();
7
-
8
- var __signature__ = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
9
- return a;
10
- };
11
-
12
- /* eslint-disable */
13
- var jumpToCode = function init() {
14
- // Classes of code we would like to highlight in the file view
15
- var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no']; // Elements to highlight in the file listing view
16
-
17
- var fileListingElements = ['td.pct.low']; // We don't want to select elements that are direct descendants of another match
18
-
19
- var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > `
20
- // Selecter that finds elements on the page to which we can jump
21
-
22
- var selector = fileListingElements.join(', ') + ', ' + notSelector + missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b`
23
- // The NodeList of matching elements
24
-
25
- var missingCoverageElements = document.querySelectorAll(selector);
26
- var currentIndex;
27
-
28
- function toggleClass(index) {
29
- missingCoverageElements.item(currentIndex).classList.remove('highlighted');
30
- missingCoverageElements.item(index).classList.add('highlighted');
31
- }
32
-
33
- function makeCurrent(index) {
34
- toggleClass(index);
35
- currentIndex = index;
36
- missingCoverageElements.item(index).scrollIntoView({
37
- behavior: 'smooth',
38
- block: 'center',
39
- inline: 'center'
40
- });
41
- }
42
-
43
- function goToPrevious() {
44
- var nextIndex = 0;
45
-
46
- if (typeof currentIndex !== 'number' || currentIndex === 0) {
47
- nextIndex = missingCoverageElements.length - 1;
48
- } else if (missingCoverageElements.length > 1) {
49
- nextIndex = currentIndex - 1;
50
- }
51
-
52
- makeCurrent(nextIndex);
53
- }
54
-
55
- function goToNext() {
56
- var nextIndex = 0;
57
-
58
- if (typeof currentIndex === 'number' && currentIndex < missingCoverageElements.length - 1) {
59
- nextIndex = currentIndex + 1;
60
- }
61
-
62
- makeCurrent(nextIndex);
63
- }
64
-
65
- return function jump(event) {
66
- if (document.getElementById('fileSearch') === document.activeElement && document.activeElement != null) {
67
- // if we're currently focused on the search input, we don't want to navigate
68
- return;
69
- }
70
-
71
- switch (event.which) {
72
- case 78: // n
73
-
74
- case 74:
75
- // j
76
- goToNext();
77
- break;
78
-
79
- case 66: // b
80
-
81
- case 75: // k
82
-
83
- case 80:
84
- // p
85
- goToPrevious();
86
- break;
87
- }
88
- };
89
- }();
90
-
91
- window.addEventListener('keydown', jumpToCode);
92
- ;
93
-
94
- (function () {
95
- var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined;
96
-
97
- if (!reactHotLoader) {
98
- return;
99
- }
100
-
101
- reactHotLoader.register(jumpToCode, "jumpToCode", "/home/ethan/FolioModules/stripes-kint-components/src/artifacts/coverage-jest/lcov-report/block-navigation.js");
102
- })();
103
-
104
- ;
105
-
106
- (function () {
107
- var leaveModule = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.leaveModule : undefined;
108
- leaveModule && leaveModule(module);
109
- })();