@pepperi-addons/ngx-lib 0.4.2-beta.31 → 0.4.2-beta.310

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 (408) hide show
  1. package/README.md +35 -0
  2. package/address/address.component.d.ts +9 -2
  3. package/attachment/attachment.component.d.ts +3 -1
  4. package/carousel/carousel.component.d.ts +3 -2
  5. package/checkbox/checkbox.component.d.ts +8 -1
  6. package/chips/chips.component.d.ts +4 -7
  7. package/chips/chips.service.d.ts +0 -3
  8. package/core/common/directives/base-destroyer.directive.d.ts +10 -0
  9. package/core/common/directives/public-api.d.ts +1 -0
  10. package/core/common/pipes/common-pipes.d.ts +5 -2
  11. package/core/common/services/addon.service.d.ts +6 -4
  12. package/core/common/services/file.service.d.ts +7 -2
  13. package/core/common/services/session.service.d.ts +2 -0
  14. package/core/common/services/utilities.service.d.ts +4 -4
  15. package/core/customization/customization.model.d.ts +4 -1
  16. package/core/customization/customization.service.d.ts +4 -0
  17. package/date/date.component.d.ts +4 -2
  18. package/draggable-items/draggable-item/draggable-item.component.d.ts +16 -2
  19. package/draggable-items/draggable-items.component.d.ts +3 -6
  20. package/draggable-items/draggable-items.module.d.ts +4 -3
  21. package/elements/README.md +256 -0
  22. package/esm2020/address/address.component.mjs +93 -5
  23. package/esm2020/assets/i18n/ar.ngx-lib.json +180 -0
  24. package/esm2020/assets/i18n/de.ngx-lib.json +180 -0
  25. package/esm2020/assets/i18n/en.ngx-lib.json +186 -0
  26. package/esm2020/assets/i18n/es.ngx-lib.json +180 -0
  27. package/esm2020/assets/i18n/fr.ngx-lib.json +180 -0
  28. package/esm2020/assets/i18n/he.ngx-lib.json +180 -0
  29. package/esm2020/assets/i18n/hu.ngx-lib.json +79 -0
  30. package/esm2020/assets/i18n/it.ngx-lib.json +180 -0
  31. package/esm2020/assets/i18n/ja.ngx-lib.json +180 -0
  32. package/esm2020/assets/i18n/nl.ngx-lib.json +79 -0
  33. package/esm2020/assets/i18n/pl.ngx-lib.json +180 -0
  34. package/esm2020/assets/i18n/pt.ngx-lib.json +180 -0
  35. package/esm2020/assets/i18n/ru.ngx-lib.json +79 -0
  36. package/esm2020/assets/i18n/sr.ngx-lib.json +180 -0
  37. package/esm2020/assets/i18n/zh.ngx-lib.json +180 -0
  38. package/esm2020/attachment/attachment.component.mjs +16 -6
  39. package/esm2020/carousel/carousel.component.mjs +14 -4
  40. package/esm2020/checkbox/checkbox.component.mjs +37 -3
  41. package/esm2020/chips/chips.component.mjs +11 -16
  42. package/esm2020/chips/chips.service.mjs +2 -11
  43. package/esm2020/color/color-picker.component.mjs +3 -3
  44. package/esm2020/color/color.component.mjs +3 -3
  45. package/esm2020/core/common/directives/base-destroyer.directive.mjs +22 -0
  46. package/esm2020/core/common/directives/public-api.mjs +2 -1
  47. package/esm2020/core/common/pipes/common-pipes.mjs +18 -8
  48. package/esm2020/core/common/services/addon.service.mjs +31 -7
  49. package/esm2020/core/common/services/data-convertor.service.mjs +3 -3
  50. package/esm2020/core/common/services/file.service.mjs +57 -20
  51. package/esm2020/core/common/services/session.service.mjs +5 -1
  52. package/esm2020/core/common/services/utilities.service.mjs +7 -7
  53. package/esm2020/core/customization/customization.model.mjs +46 -10
  54. package/esm2020/core/customization/customization.service.mjs +29 -1
  55. package/esm2020/core/http/services/http.service.mjs +17 -8
  56. package/esm2020/core/http/services/loader.service.mjs +3 -3
  57. package/esm2020/date/date.component.mjs +35 -13
  58. package/esm2020/dialog/dialog.component.mjs +3 -3
  59. package/esm2020/draggable-items/draggable-item/draggable-item.component.mjs +44 -4
  60. package/esm2020/draggable-items/draggable-items.component.mjs +7 -15
  61. package/esm2020/draggable-items/draggable-items.module.mjs +5 -1
  62. package/esm2020/field-title/field-title.component.mjs +6 -3
  63. package/esm2020/files-uploader/files-uploader.component.mjs +23 -32
  64. package/esm2020/form/field-generator.component.mjs +3 -3
  65. package/esm2020/form/form.component.mjs +7 -4
  66. package/esm2020/form/internal-button.component.mjs +2 -2
  67. package/esm2020/form/internal-carusel.component.mjs +10 -6
  68. package/esm2020/form/internal-field-generator.component.mjs +3 -3
  69. package/esm2020/form/internal-form.component.mjs +5 -3
  70. package/esm2020/form/internal-list.component.mjs +2 -2
  71. package/esm2020/form/internal-menu.component.mjs +4 -6
  72. package/esm2020/form/internal-page.component.mjs +3 -4
  73. package/esm2020/group-buttons/group-buttons.component.mjs +2 -2
  74. package/esm2020/icon/icon.component.mjs +36 -6
  75. package/esm2020/icon/icon.service.mjs +5 -1
  76. package/esm2020/image/image.component.mjs +15 -3
  77. package/esm2020/image/image.service.mjs +2 -4
  78. package/esm2020/images-filmstrip/images-filmstrip.component.mjs +99 -25
  79. package/esm2020/json-editor/json-editor.component.mjs +288 -0
  80. package/esm2020/json-editor/json-editor.module.mjs +83 -0
  81. package/esm2020/json-editor/json-tree-node.component.mjs +32 -0
  82. package/esm2020/json-editor/pepperi-addons-ngx-lib-json-editor.mjs +5 -0
  83. package/esm2020/json-editor/public-api.mjs +6 -0
  84. package/esm2020/lib/i18n/embedded-i18n.mjs +33 -0
  85. package/esm2020/link/link.component.mjs +25 -4
  86. package/esm2020/list/list-actions.component.mjs +1 -1
  87. package/esm2020/list/list-chooser.component.mjs +1 -1
  88. package/esm2020/list/list-pager.component.mjs +1 -1
  89. package/esm2020/list/list-sorting.component.mjs +1 -1
  90. package/esm2020/list/list-total.component.mjs +6 -3
  91. package/esm2020/list/list-views.component.mjs +1 -1
  92. package/esm2020/list/list.component.mjs +230 -37
  93. package/esm2020/list/list.model.mjs +1 -1
  94. package/esm2020/menu/menu-item.component.mjs +3 -3
  95. package/esm2020/menu/menu.component.mjs +6 -3
  96. package/esm2020/menu/menu.model.mjs +2 -1
  97. package/esm2020/page-layout/page-layout.component.mjs +28 -7
  98. package/esm2020/profile-data-views-list/profile-data-view/profile-data-view.component.mjs +1 -1
  99. package/esm2020/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.mjs +25 -9
  100. package/esm2020/profile-data-views-list/profile-data-views-list.component.mjs +58 -26
  101. package/esm2020/profile-data-views-list/profile-data-views-list.model.mjs +1 -1
  102. package/esm2020/public-api.mjs +2 -1
  103. package/esm2020/quantity-selector/quantity-selector.component.mjs +67 -33
  104. package/esm2020/query-builder/common/model/legacy.mjs +1 -1
  105. package/esm2020/query-builder/common/model/operator.mjs +73 -63
  106. package/esm2020/query-builder/common/services/output-query.service.mjs +5 -3
  107. package/esm2020/query-builder/common/services/query-structure.service.mjs +34 -2
  108. package/esm2020/query-builder/query-builder-item/query-builder-item.component.mjs +14 -12
  109. package/esm2020/query-builder/query-builder-section/query-builder-section.component.mjs +3 -3
  110. package/esm2020/query-builder/query-builder.module.mjs +14 -3
  111. package/esm2020/query-builder/query-builder.service.mjs +2 -2
  112. package/esm2020/remote-loader/addon-block-loader.component.mjs +26 -16
  113. package/esm2020/remote-loader/addon-block-loader.service.mjs +5 -2
  114. package/esm2020/remote-loader/remote-loader-element.component.mjs +81 -27
  115. package/esm2020/remote-loader/remote-loader.component.mjs +1 -3
  116. package/esm2020/remote-loader/remote-loader.model.mjs +1 -1
  117. package/esm2020/remote-loader/remote-loader.service.mjs +49 -26
  118. package/esm2020/reset-configuration-field/pepperi-addons-ngx-lib-reset-configuration-field.mjs +5 -0
  119. package/esm2020/reset-configuration-field/public-api.mjs +3 -0
  120. package/esm2020/reset-configuration-field/reset-configuration-field.component.mjs +55 -0
  121. package/esm2020/reset-configuration-field/reset-configuration-field.module.mjs +36 -0
  122. package/esm2020/rich-html-textarea/rich-html-textarea.component.mjs +19 -3
  123. package/esm2020/search/search.component.mjs +43 -16
  124. package/esm2020/select/select.component.mjs +124 -53
  125. package/esm2020/select-panel/select-panel.component.mjs +4 -6
  126. package/esm2020/side-bar/side-bar.component.mjs +18 -4
  127. package/esm2020/signature/public-api.mjs +2 -1
  128. package/esm2020/signature/signature-dialog.component.mjs +79 -0
  129. package/esm2020/signature/signature.component.mjs +84 -68
  130. package/esm2020/signature/signature.module.mjs +6 -5
  131. package/esm2020/size-detector/size-detector.component.mjs +16 -6
  132. package/esm2020/skeleton-loader/public-api.mjs +2 -2
  133. package/esm2020/skeleton-loader/skeleton-loader.component.mjs +33 -9
  134. package/esm2020/slider/slider.component.mjs +2 -2
  135. package/esm2020/smart-filters/boolean-filter/boolean-filter.component.mjs +1 -1
  136. package/esm2020/smart-filters/common/model/base-filter-component.mjs +5 -11
  137. package/esm2020/smart-filters/common/model/operator.mjs +15 -6
  138. package/esm2020/smart-filters/common/model/type.mjs +1 -1
  139. package/esm2020/smart-filters/date-filter/date-filter.component.mjs +1 -1
  140. package/esm2020/smart-filters/multi-select-filter/multi-select-filter.component.mjs +3 -3
  141. package/esm2020/smart-filters/number-filter/number-filter.component.mjs +3 -3
  142. package/esm2020/smart-filters/smart-filters.component.mjs +2 -2
  143. package/esm2020/smart-filters/text-filter/text-filter.component.mjs +27 -7
  144. package/esm2020/snack-bar/snack-bar.component.mjs +19 -4
  145. package/esm2020/textarea/textarea.component.mjs +12 -3
  146. package/esm2020/textbox/textbox-validation.directive.mjs +2 -4
  147. package/esm2020/textbox/textbox.component.mjs +85 -10
  148. package/esm2020/textbox-icon/textbox-icon.component.mjs +3 -3
  149. package/esm2020/top-bar/top-bar.component.mjs +26 -15
  150. package/fesm2015/pepperi-addons-ngx-lib-address.mjs +92 -5
  151. package/fesm2015/pepperi-addons-ngx-lib-address.mjs.map +1 -1
  152. package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs +15 -5
  153. package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs.map +1 -1
  154. package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs +13 -3
  155. package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs.map +1 -1
  156. package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs +37 -2
  157. package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -1
  158. package/fesm2015/pepperi-addons-ngx-lib-chips.mjs +11 -25
  159. package/fesm2015/pepperi-addons-ngx-lib-chips.mjs.map +1 -1
  160. package/fesm2015/pepperi-addons-ngx-lib-color.mjs +4 -4
  161. package/fesm2015/pepperi-addons-ngx-lib-color.mjs.map +1 -1
  162. package/fesm2015/pepperi-addons-ngx-lib-date.mjs +35 -12
  163. package/fesm2015/pepperi-addons-ngx-lib-date.mjs.map +1 -1
  164. package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs +2 -2
  165. package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs.map +1 -1
  166. package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs +54 -19
  167. package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -1
  168. package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs +5 -2
  169. package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs.map +1 -1
  170. package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs +22 -31
  171. package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -1
  172. package/fesm2015/pepperi-addons-ngx-lib-form.mjs +31 -25
  173. package/fesm2015/pepperi-addons-ngx-lib-form.mjs.map +1 -1
  174. package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs +2 -2
  175. package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -1
  176. package/fesm2015/pepperi-addons-ngx-lib-icon.mjs +40 -5
  177. package/fesm2015/pepperi-addons-ngx-lib-icon.mjs.map +1 -1
  178. package/fesm2015/pepperi-addons-ngx-lib-image.mjs +15 -5
  179. package/fesm2015/pepperi-addons-ngx-lib-image.mjs.map +1 -1
  180. package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs +101 -24
  181. package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -1
  182. package/fesm2015/pepperi-addons-ngx-lib-json-editor.mjs +407 -0
  183. package/fesm2015/pepperi-addons-ngx-lib-json-editor.mjs.map +1 -0
  184. package/fesm2015/pepperi-addons-ngx-lib-link.mjs +24 -3
  185. package/fesm2015/pepperi-addons-ngx-lib-link.mjs.map +1 -1
  186. package/fesm2015/pepperi-addons-ngx-lib-list.mjs +241 -43
  187. package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +1 -1
  188. package/fesm2015/pepperi-addons-ngx-lib-menu.mjs +8 -4
  189. package/fesm2015/pepperi-addons-ngx-lib-menu.mjs.map +1 -1
  190. package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs +27 -6
  191. package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -1
  192. package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs +81 -33
  193. package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -1
  194. package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs +66 -31
  195. package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -1
  196. package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs +140 -81
  197. package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -1
  198. package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs +169 -83
  199. package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -1
  200. package/fesm2015/pepperi-addons-ngx-lib-reset-configuration-field.mjs +95 -0
  201. package/fesm2015/pepperi-addons-ngx-lib-reset-configuration-field.mjs.map +1 -0
  202. package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs +18 -2
  203. package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -1
  204. package/fesm2015/pepperi-addons-ngx-lib-search.mjs +45 -15
  205. package/fesm2015/pepperi-addons-ngx-lib-search.mjs.map +1 -1
  206. package/fesm2015/pepperi-addons-ngx-lib-select-panel.mjs +3 -5
  207. package/fesm2015/pepperi-addons-ngx-lib-select-panel.mjs.map +1 -1
  208. package/fesm2015/pepperi-addons-ngx-lib-select.mjs +123 -51
  209. package/fesm2015/pepperi-addons-ngx-lib-select.mjs.map +1 -1
  210. package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs +17 -3
  211. package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -1
  212. package/fesm2015/pepperi-addons-ngx-lib-signature.mjs +173 -81
  213. package/fesm2015/pepperi-addons-ngx-lib-signature.mjs.map +1 -1
  214. package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs +15 -5
  215. package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -1
  216. package/fesm2015/pepperi-addons-ngx-lib-skeleton-loader.mjs +33 -9
  217. package/fesm2015/pepperi-addons-ngx-lib-skeleton-loader.mjs.map +1 -1
  218. package/fesm2015/pepperi-addons-ngx-lib-slider.mjs +2 -2
  219. package/fesm2015/pepperi-addons-ngx-lib-slider.mjs.map +1 -1
  220. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs +53 -30
  221. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -1
  222. package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs +18 -3
  223. package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -1
  224. package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs +11 -2
  225. package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs.map +1 -1
  226. package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs +2 -2
  227. package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -1
  228. package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs +87 -12
  229. package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs.map +1 -1
  230. package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs +26 -15
  231. package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -1
  232. package/fesm2015/pepperi-addons-ngx-lib.mjs +3420 -577
  233. package/fesm2015/pepperi-addons-ngx-lib.mjs.map +1 -1
  234. package/fesm2020/pepperi-addons-ngx-lib-address.mjs +92 -5
  235. package/fesm2020/pepperi-addons-ngx-lib-address.mjs.map +1 -1
  236. package/fesm2020/pepperi-addons-ngx-lib-attachment.mjs +15 -5
  237. package/fesm2020/pepperi-addons-ngx-lib-attachment.mjs.map +1 -1
  238. package/fesm2020/pepperi-addons-ngx-lib-carousel.mjs +13 -3
  239. package/fesm2020/pepperi-addons-ngx-lib-carousel.mjs.map +1 -1
  240. package/fesm2020/pepperi-addons-ngx-lib-checkbox.mjs +36 -2
  241. package/fesm2020/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -1
  242. package/fesm2020/pepperi-addons-ngx-lib-chips.mjs +11 -25
  243. package/fesm2020/pepperi-addons-ngx-lib-chips.mjs.map +1 -1
  244. package/fesm2020/pepperi-addons-ngx-lib-color.mjs +4 -4
  245. package/fesm2020/pepperi-addons-ngx-lib-color.mjs.map +1 -1
  246. package/fesm2020/pepperi-addons-ngx-lib-date.mjs +34 -12
  247. package/fesm2020/pepperi-addons-ngx-lib-date.mjs.map +1 -1
  248. package/fesm2020/pepperi-addons-ngx-lib-dialog.mjs +2 -2
  249. package/fesm2020/pepperi-addons-ngx-lib-dialog.mjs.map +1 -1
  250. package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs +54 -19
  251. package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -1
  252. package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs +5 -2
  253. package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs.map +1 -1
  254. package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs +22 -31
  255. package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -1
  256. package/fesm2020/pepperi-addons-ngx-lib-form.mjs +31 -25
  257. package/fesm2020/pepperi-addons-ngx-lib-form.mjs.map +1 -1
  258. package/fesm2020/pepperi-addons-ngx-lib-group-buttons.mjs +2 -2
  259. package/fesm2020/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -1
  260. package/fesm2020/pepperi-addons-ngx-lib-icon.mjs +39 -5
  261. package/fesm2020/pepperi-addons-ngx-lib-icon.mjs.map +1 -1
  262. package/fesm2020/pepperi-addons-ngx-lib-image.mjs +15 -5
  263. package/fesm2020/pepperi-addons-ngx-lib-image.mjs.map +1 -1
  264. package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs +98 -24
  265. package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -1
  266. package/fesm2020/pepperi-addons-ngx-lib-json-editor.mjs +403 -0
  267. package/fesm2020/pepperi-addons-ngx-lib-json-editor.mjs.map +1 -0
  268. package/fesm2020/pepperi-addons-ngx-lib-link.mjs +24 -3
  269. package/fesm2020/pepperi-addons-ngx-lib-link.mjs.map +1 -1
  270. package/fesm2020/pepperi-addons-ngx-lib-list.mjs +238 -42
  271. package/fesm2020/pepperi-addons-ngx-lib-list.mjs.map +1 -1
  272. package/fesm2020/pepperi-addons-ngx-lib-menu.mjs +8 -4
  273. package/fesm2020/pepperi-addons-ngx-lib-menu.mjs.map +1 -1
  274. package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs +27 -6
  275. package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -1
  276. package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs +81 -33
  277. package/fesm2020/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -1
  278. package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs +65 -31
  279. package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -1
  280. package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs +136 -80
  281. package/fesm2020/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -1
  282. package/fesm2020/pepperi-addons-ngx-lib-remote-loader.mjs +157 -69
  283. package/fesm2020/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -1
  284. package/fesm2020/pepperi-addons-ngx-lib-reset-configuration-field.mjs +95 -0
  285. package/fesm2020/pepperi-addons-ngx-lib-reset-configuration-field.mjs.map +1 -0
  286. package/fesm2020/pepperi-addons-ngx-lib-rich-html-textarea.mjs +18 -2
  287. package/fesm2020/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -1
  288. package/fesm2020/pepperi-addons-ngx-lib-search.mjs +42 -15
  289. package/fesm2020/pepperi-addons-ngx-lib-search.mjs.map +1 -1
  290. package/fesm2020/pepperi-addons-ngx-lib-select-panel.mjs +3 -5
  291. package/fesm2020/pepperi-addons-ngx-lib-select-panel.mjs.map +1 -1
  292. package/fesm2020/pepperi-addons-ngx-lib-select.mjs +122 -51
  293. package/fesm2020/pepperi-addons-ngx-lib-select.mjs.map +1 -1
  294. package/fesm2020/pepperi-addons-ngx-lib-side-bar.mjs +17 -3
  295. package/fesm2020/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -1
  296. package/fesm2020/pepperi-addons-ngx-lib-signature.mjs +169 -81
  297. package/fesm2020/pepperi-addons-ngx-lib-signature.mjs.map +1 -1
  298. package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs +15 -5
  299. package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -1
  300. package/fesm2020/pepperi-addons-ngx-lib-skeleton-loader.mjs +33 -9
  301. package/fesm2020/pepperi-addons-ngx-lib-skeleton-loader.mjs.map +1 -1
  302. package/fesm2020/pepperi-addons-ngx-lib-slider.mjs +2 -2
  303. package/fesm2020/pepperi-addons-ngx-lib-slider.mjs.map +1 -1
  304. package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs +53 -30
  305. package/fesm2020/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -1
  306. package/fesm2020/pepperi-addons-ngx-lib-snack-bar.mjs +18 -3
  307. package/fesm2020/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -1
  308. package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs +11 -2
  309. package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs.map +1 -1
  310. package/fesm2020/pepperi-addons-ngx-lib-textbox-icon.mjs +2 -2
  311. package/fesm2020/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -1
  312. package/fesm2020/pepperi-addons-ngx-lib-textbox.mjs +85 -12
  313. package/fesm2020/pepperi-addons-ngx-lib-textbox.mjs.map +1 -1
  314. package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs +25 -14
  315. package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -1
  316. package/fesm2020/pepperi-addons-ngx-lib.mjs +3416 -574
  317. package/fesm2020/pepperi-addons-ngx-lib.mjs.map +1 -1
  318. package/field-title/field-title.component.d.ts +2 -1
  319. package/files-uploader/files-uploader.component.d.ts +4 -2
  320. package/form/internal-carusel.component.d.ts +1 -0
  321. package/form/internal-menu.component.d.ts +1 -2
  322. package/icon/icon.component.d.ts +4 -0
  323. package/image/image.component.d.ts +3 -1
  324. package/images-filmstrip/images-filmstrip.component.d.ts +24 -8
  325. package/json-editor/index.d.ts +5 -0
  326. package/json-editor/json-editor.component.d.ts +75 -0
  327. package/json-editor/json-editor.component.theme.scss +5 -0
  328. package/json-editor/json-editor.module.d.ts +24 -0
  329. package/json-editor/json-tree-node.component.d.ts +18 -0
  330. package/json-editor/public-api.d.ts +2 -0
  331. package/lib/i18n/embedded-i18n.d.ts +1 -0
  332. package/link/link.component.d.ts +7 -2
  333. package/list/list-total.component.d.ts +2 -1
  334. package/list/list.component.d.ts +21 -5
  335. package/list/list.model.d.ts +2 -1
  336. package/menu/menu.component.d.ts +2 -1
  337. package/menu/menu.model.d.ts +1 -0
  338. package/package.json +18 -2
  339. package/page-layout/page-layout.component.d.ts +8 -2
  340. package/profile-data-views-list/profile-data-view/profile-data-view.component.d.ts +3 -3
  341. package/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.d.ts +5 -4
  342. package/profile-data-views-list/profile-data-views-list.component.d.ts +13 -10
  343. package/profile-data-views-list/profile-data-views-list.model.d.ts +8 -0
  344. package/public-api.d.ts +1 -0
  345. package/quantity-selector/quantity-selector.component.d.ts +9 -9
  346. package/query-builder/common/model/legacy.d.ts +2 -0
  347. package/query-builder/common/model/operator.d.ts +11 -1
  348. package/query-builder/common/services/query-structure.service.d.ts +1 -0
  349. package/query-builder/query-builder-item/query-builder-item.component.d.ts +3 -1
  350. package/query-builder/query-builder.module.d.ts +7 -3
  351. package/remote-loader/addon-block-loader.component.d.ts +4 -2
  352. package/remote-loader/remote-loader-element.component.d.ts +8 -1
  353. package/remote-loader/remote-loader.model.d.ts +1 -0
  354. package/remote-loader/remote-loader.service.d.ts +3 -1
  355. package/reset-configuration-field/index.d.ts +5 -0
  356. package/reset-configuration-field/public-api.d.ts +2 -0
  357. package/reset-configuration-field/reset-configuration-field.component.d.ts +23 -0
  358. package/reset-configuration-field/reset-configuration-field.module.d.ts +12 -0
  359. package/rich-html-textarea/rich-html-textarea.component.d.ts +4 -1
  360. package/rich-html-textarea/rich-html-textarea.component.theme.scss +4 -2
  361. package/search/search.component.d.ts +9 -3
  362. package/select/select.component.d.ts +18 -2
  363. package/select-panel/select-panel.component.d.ts +1 -2
  364. package/side-bar/side-bar.component.d.ts +4 -1
  365. package/signature/public-api.d.ts +1 -0
  366. package/signature/signature-dialog.component.d.ts +29 -0
  367. package/signature/signature.component.d.ts +3 -13
  368. package/signature/signature.module.d.ts +16 -15
  369. package/size-detector/size-detector.component.d.ts +6 -3
  370. package/skeleton-loader/skeleton-loader.component.d.ts +15 -7
  371. package/slider/slider.component.theme.scss +4 -0
  372. package/smart-filters/boolean-filter/boolean-filter.component.d.ts +3 -0
  373. package/smart-filters/common/model/base-filter-component.d.ts +2 -4
  374. package/smart-filters/common/model/operator.d.ts +3 -0
  375. package/smart-filters/common/model/type.d.ts +1 -1
  376. package/smart-filters/date-filter/date-filter.component.d.ts +3 -0
  377. package/smart-filters/multi-select-filter/multi-select-filter.component.d.ts +3 -0
  378. package/smart-filters/number-filter/number-filter.component.d.ts +3 -0
  379. package/smart-filters/text-filter/text-filter.component.d.ts +4 -0
  380. package/snack-bar/snack-bar.component.d.ts +9 -4
  381. package/src/assets/i18n/ar.ngx-lib.json +180 -0
  382. package/src/assets/i18n/de.ngx-lib.json +106 -4
  383. package/src/assets/i18n/en.ngx-lib.json +14 -3
  384. package/src/assets/i18n/es.ngx-lib.json +113 -11
  385. package/src/assets/i18n/fr.ngx-lib.json +105 -4
  386. package/src/assets/i18n/he.ngx-lib.json +105 -4
  387. package/src/assets/i18n/it.ngx-lib.json +114 -13
  388. package/src/assets/i18n/ja.ngx-lib.json +105 -4
  389. package/src/assets/i18n/pl.ngx-lib.json +105 -4
  390. package/src/assets/i18n/pt.ngx-lib.json +105 -4
  391. package/src/assets/i18n/sr.ngx-lib.json +180 -0
  392. package/src/assets/i18n/zh.ngx-lib.json +105 -2
  393. package/src/core/style/abstracts/mixins.scss +135 -26
  394. package/src/core/style/abstracts/variables.scss +10 -1
  395. package/src/core/style/base/Spacing.stories.mdx +22 -22
  396. package/src/core/style/base/base.scss +16 -14
  397. package/src/core/style/base/typography.scss +2 -1
  398. package/src/core/style/components/button.scss +11 -0
  399. package/src/core/style/components/checkbox.scss +13 -63
  400. package/src/core/style/components/file.scss +4 -4
  401. package/src/core/style/components/general.scss +27 -9
  402. package/src/core/style/components/textarea.scss +13 -0
  403. package/textarea/textarea.component.d.ts +2 -1
  404. package/textbox/textbox.component.d.ts +10 -3
  405. package/theming.scss +5 -1
  406. package/top-bar/top-bar.component.d.ts +2 -0
  407. package/src/assets/images/sail-away.jpg +0 -0
  408. package/src/core/style/abstracts/AbstractsIntro.stories.mdx +0 -7
@@ -0,0 +1,180 @@
1
+ {
2
+ "COLOR": {
3
+ "AA_COMPLIENT": "AA Compliant",
4
+ "ADD_VALUE_HERE": "Or add (hsl, reg, hex)",
5
+ "CHANGE_HUE": "Change hue",
6
+ "CHANGE_SATURATION": "Change saturation",
7
+ "CHANGE_LIGHTNESS": "Change lightness",
8
+ "DIALOG_TITLE": "Color picker"
9
+ },
10
+ "CHECKBOX": {
11
+ "TRUE": "True",
12
+ "FALSE": "False"
13
+ },
14
+ "CHIPS": {
15
+ "ADD_CHIP": "Add Chip"
16
+ },
17
+ "IMAGE": {
18
+ "NO_IMAGE": "No image",
19
+ "CLICK_TO_ENLARGE": "Click to enlarge"
20
+ },
21
+ "FILE": {
22
+ "HINT": "Drag and drop a file here or click",
23
+ "UPLOADING_FILE": "Uploading File",
24
+ "SEE_ORIGINAL": "See original"
25
+ },
26
+ "QS": {
27
+ "ORDER": "Order"
28
+ },
29
+ "INTERNAL_PAGE": {
30
+ "CLICK_TO_ORDER": "Click to order"
31
+ },
32
+ "PROFILE_DATA_VIEWS_LIST": {
33
+ "ADD_PROFILE": "Add profile",
34
+ "SELECT_PROFILE_DIALOG_TITLE": "Select profile",
35
+ "SELECT_PROFILE": "Select a profile",
36
+ "IMPORT_PROFILE_DIALOG_TITLE": "Import to {{ profileTitle }}",
37
+ "IMPORT_FROM_PROFILE": "Import from",
38
+ "IMPORT_FROM_PROFILE_DESC": "You can select a profile to copy its configuration to the added profile. Leave this option empty for a default profile hierarchy configuration",
39
+ "DEFAULT_PROFILE": "(Default profile)",
40
+ "NO_FIELDS_ASSIGNED": "No fields were assigned"
41
+ },
42
+ "RICH_TEXTAREA": {
43
+ "HINT": "Enter Text"
44
+ },
45
+ "SEARCH": {
46
+ "HINT": "Search",
47
+ "MORE_RESULTS": "More Results"
48
+ },
49
+ "SELECT": {
50
+ "HINT": "Please select an option"
51
+ },
52
+ "SIGNATURE": {
53
+ "HINT": "Signature",
54
+ "TAP_TO_SIGN": "Tap to Sign",
55
+ "DIALOG_TITLE": "Add signature here"
56
+ },
57
+ "SMART_FILTERS": {
58
+ "TITLE": "Smart filters",
59
+ "IS_ON": "Is on",
60
+ "CHOOSE_TIME": "Choose time",
61
+ "AMOUNT": "Amount",
62
+ "VALUE": "Value",
63
+ "TIME_UNIT": "Time unit",
64
+ "START_DATE": "Start date",
65
+ "END_DATE": "End date",
66
+ "CHOOSE_DATE": "Choose a date",
67
+ "TYPE": "Type",
68
+ "MIN": "Min",
69
+ "MAX": "Max",
70
+ "SEARCH": "Search",
71
+ "NO_SEARCH_RESULTS": "No results found",
72
+ "NO_OPTIONS": "No options",
73
+ "OPERATORS": {
74
+ "IN_THE_LAST": "In the last",
75
+ "IN_THE_LAST_CALENDAR": "In the last (calendar)",
76
+ "IN_THE_LAST_VARIABLE": "In the last (variable)",
77
+ "TODAY": "Today",
78
+ "THIS_WEEK": "This week",
79
+ "THIS_MONTH": "This month",
80
+ "DATE_RANGE": "Between",
81
+ "DATE_RANGE_VARIABLE": "Between (variable)",
82
+ "DUE_IN": "Due in",
83
+ "ON": "On",
84
+ "NOT_IN_THE_LAST": "Not in the last",
85
+ "NOT_IN_THE_LAST_CALENDAR": "Not in the last (calendar)",
86
+ "NOT_DUE_IN": "Not due in",
87
+ "IS_EMPTY": "Is empty",
88
+ "IS_NOT_EMPTY": "Is not empty",
89
+ "NOT_EQUAL": "Not equal",
90
+ "NOT_EQUAL_TO_VARIABLE": "Not equal to (variable)",
91
+ "LESS_THEN_OR_EQUAL": "Less than or equal to",
92
+ "LESS_THEN": "Less than",
93
+ "LESS_THAN_VARIABLE": "Less than (variable)",
94
+ "EQUAL": "Equal",
95
+ "EQUAL_TO_VARIABLE": "Equal to (variable)",
96
+ "IN_VARIABLE": "In (variable)",
97
+ "GREATER_THEN": "Greater than",
98
+ "GREATER_THEN_OR_EQUAL": "Greater than or equal to",
99
+ "GREATER_THAN_VARIABLE": "Greater than (variable)",
100
+ "NUMBER_RANGE": "Between",
101
+ "CONTAINS": "Contains",
102
+ "IN": "In",
103
+ "BEGINS_WITH": "Begins with",
104
+ "ENDS_WITH": "Ends with"
105
+ },
106
+ "OPERATOR_UNITS": {
107
+ "DAYS": "Days",
108
+ "WEEKS": "Weeks",
109
+ "MONTHS": "Months",
110
+ "YEARS": "Years"
111
+ }
112
+ },
113
+ "ACTIONS": {
114
+ "APPLY": "Apply",
115
+ "CANCEL": "Cancel",
116
+ "CLEAR": "Clear",
117
+ "CLEAR_ALL": "Clear All",
118
+ "CLOSE": "Close",
119
+ "CONTINUE": "Continue",
120
+ "CREATE_NEW": "Create new",
121
+ "DELETE": "Delete",
122
+ "DONE": "Done",
123
+ "OK": "Ok",
124
+ "REMOVE": "Remove",
125
+ "SAVE": "Save",
126
+ "IMPORT": "Import"
127
+ },
128
+ "LIST": {
129
+ "ALL": "All",
130
+ "NONE": "None",
131
+ "PAGER_PREVIOUS": "Previous",
132
+ "PAGER_NEXT": "Next",
133
+ "PAGER_OUT_OF": "Out of",
134
+ "PAGER_PAGE": "Page",
135
+ "SELECT": "Select",
136
+ "SELECTED": "selected",
137
+ "SORT_BY": "Sort by",
138
+ "SORT_ASC": "Ascending",
139
+ "SORT_DESC": "Descending",
140
+ "TOTAL_RESULTS": "<span class='bold number'>{{ totalRows }}{{ unknownCount }}</span> results",
141
+ "TOTAL_RESULT": "<span class='bold number'>{{ totalRows }}</span> result",
142
+ "TOTAL_RESULTS_OUT_OF": "<span class='bold number'>{{ xRows }}</span> of <span class='bold number'>{{ totalRows }}</span> results",
143
+ "TOTAL_RESULT_OUT_OF_RESULT": "<span class='bold number'>{{ xRows }}</span> of <span class='bold number'>{{ totalRows }}</span> result",
144
+ "TOTAL_OF": "At total of: ",
145
+ "NO_DATA_FOUND": "No results were found.",
146
+ "NO_DATA_FOUND_SUGGESTIONS_TITLE": "We have some suggestions:",
147
+ "NO_DATA_FOUND_SUGGESTIONS_LIST": "<li>Make sure that all words are spelled correctly.</li><li>Try different keywords.</li><li>Try more general keywords.</li>"
148
+ },
149
+ "MESSAGES": {
150
+ "TITLE_NOTICE": "Notice",
151
+ "ERROR_CASE_QUANTITY_LIMIT": "Case quantity",
152
+ "ERROR_FAILD_TO_LOAD_EXTENSION": "Failed to upload file, {{fileExtension}} format is not supported",
153
+ "ERROR_FAILD_TO_LOAD_SIZE": "Failed to upload file, file size limitation is - {{fileSize}} MB",
154
+ "ERROR_INVALID_FIELDS": "Please validate the following fields:",
155
+ "ERROR_INVENTORY_LIMIT": "Max quantity",
156
+ "ERROR_IS_NOT_VALID": "{{field}} is not valid",
157
+ "ERROR_IS_REQUIRED": "{{field}} is mandatory",
158
+ "ERROR_MANDATORY_FIELDS": "Required fields:",
159
+ "ERROR_MAX_QUANTITY_LIMIT": "Max quantity",
160
+ "ERROR_MIN_QUANTITY_LIMIT": "Min quantity",
161
+ "ERROR_RANGE_IS_NOT_VALID": "Value should be between {{min}} and {{max}}",
162
+ "ERROR_INVALID_PATTERN": "Invalid Character",
163
+ "INFO_LOADING_FILE": "Loading",
164
+ "INFO_MISSING_FILE": "Missing file",
165
+ "INFO_MISSING_IMAGE": "Missing image",
166
+ "INFO_MISSING_SIGNATURE": "Signature missing"
167
+ },
168
+ "DATE_AGO": {
169
+ "JUST_NOW": "Just now",
170
+ "SECOND": "second",
171
+ "MINUTE": "minute",
172
+ "HOUR": "hour",
173
+ "DAY": "day",
174
+ "WEEK": "week",
175
+ "MONTH": "month",
176
+ "YEAR": "year",
177
+ "SINGULAR": " ago",
178
+ "PLURAL": "'s ago"
179
+ }
180
+ }
@@ -11,6 +11,9 @@
11
11
  "TRUE": "True",
12
12
  "FALSE": "False"
13
13
  },
14
+ "CHIPS": {
15
+ "ADD_CHIP": "添加芯片"
16
+ },
14
17
  "IMAGE": {
15
18
  "NO_IMAGE": "无图片",
16
19
  "CLICK_TO_ENLARGE": "点击放大"
@@ -26,9 +29,23 @@
26
29
  "INTERNAL_PAGE": {
27
30
  "CLICK_TO_ORDER": "点击订购"
28
31
  },
32
+ "PROFILE_DATA_VIEWS_LIST": {
33
+ "ADD_PROFILE": "添加配置文件",
34
+ "SELECT_PROFILE_DIALOG_TITLE": "选择配置文件",
35
+ "SELECT_PROFILE": "选择配置文件",
36
+ "IMPORT_PROFILE_DIALOG_TITLE": "导入到 {{ profileTitle }}",
37
+ "IMPORT_FROM_PROFILE": "从...导入",
38
+ "IMPORT_FROM_PROFILE_DESC": "您可以选择一个配置文件,将其配置复制到添加的配置文件中。如果要使用默认配置文件层次结构配置,请将此选项留空",
39
+ "DEFAULT_PROFILE": "(默认配置文件)",
40
+ "NO_FIELDS_ASSIGNED": "未分配字段"
41
+ },
29
42
  "RICH_TEXTAREA": {
30
43
  "HINT": "输入文本"
31
44
  },
45
+ "SEARCH": {
46
+ "HINT": "搜索",
47
+ "MORE_RESULTS": "更多结果"
48
+ },
32
49
  "SELECT": {
33
50
  "HINT": "请选择一个选项"
34
51
  },
@@ -37,24 +54,97 @@
37
54
  "TAP_TO_SIGN": "点击签名",
38
55
  "DIALOG_TITLE": "在此添加签名"
39
56
  },
57
+ "SMART_FILTERS": {
58
+ "TITLE": "智能筛选器",
59
+ "IS_ON": "开启",
60
+ "CHOOSE_TIME": "选择时间",
61
+ "AMOUNT": "数量",
62
+ "VALUE": "金额",
63
+ "TIME_UNIT": "时间单位",
64
+ "START_DATE": "开始日期",
65
+ "END_DATE": "结束日期",
66
+ "CHOOSE_DATE": "选择日期",
67
+ "TYPE": "类型",
68
+ "MIN": "最小",
69
+ "MAX": "最大值",
70
+ "SEARCH": "搜索",
71
+ "NO_SEARCH_RESULTS": "未找到结果",
72
+ "NO_OPTIONS": "无选项",
73
+ "OPERATORS": {
74
+ "IN_THE_LAST": "最后",
75
+ "IN_THE_LAST_CALENDAR": "最后(日历)",
76
+ "IN_THE_LAST_VARIABLE": "最后(变量)",
77
+ "TODAY": "今天",
78
+ "THIS_WEEK": "本周",
79
+ "THIS_MONTH": "本月",
80
+ "DATE_RANGE": "之间",
81
+ "DATE_RANGE_VARIABLE": "之间(可变)",
82
+ "DUE_IN": "到期",
83
+ "ON": "在",
84
+ "NOT_IN_THE_LAST": "不在最后",
85
+ "NOT_IN_THE_LAST_CALENDAR": "上次(日历)",
86
+ "NOT_DUE_IN": "未到期",
87
+ "IS_EMPTY": "为空",
88
+ "IS_NOT_EMPTY": "不为空",
89
+ "NOT_EQUAL": "不等于",
90
+ "NOT_EQUAL_TO_VARIABLE": "不等于(变量)",
91
+ "LESS_THEN_OR_EQUAL": "小于或等于",
92
+ "LESS_THEN": "小于",
93
+ "LESS_THAN_VARIABLE": "小于(变量)",
94
+ "EQUAL": "等于",
95
+ "EQUAL_TO_VARIABLE": "等于(变量)",
96
+ "IN_VARIABLE": "在(变量)",
97
+ "GREATER_THEN": "大于",
98
+ "GREATER_THEN_OR_EQUAL": "大于或等于",
99
+ "GREATER_THAN_VARIABLE": "大于(变量)",
100
+ "NUMBER_RANGE": "介于",
101
+ "CONTAINS": "包含",
102
+ "IN": "以",
103
+ "BEGINS_WITH": "开始于",
104
+ "ENDS_WITH": "结束于"
105
+ },
106
+ "OPERATOR_UNITS": {
107
+ "DAYS": "天数",
108
+ "WEEKS": "周数",
109
+ "MONTHS": "月",
110
+ "YEARS": "年"
111
+ }
112
+ },
40
113
  "ACTIONS": {
41
114
  "APPLY": "使用",
42
115
  "CANCEL": "取消",
43
116
  "CLEAR": "清除",
44
117
  "CLEAR_ALL": "全部清除",
45
118
  "CLOSE": "关闭",
119
+ "CONTINUE": "继续",
46
120
  "CREATE_NEW": "创建新的",
121
+ "DELETE": "删除",
47
122
  "DONE": "完成",
48
123
  "OK": "确定",
49
- "SAVE": "保存"
124
+ "REMOVE": "移除",
125
+ "SAVE": "保存",
126
+ "IMPORT": "导入"
50
127
  },
51
128
  "LIST": {
52
129
  "ALL": "全部",
53
130
  "NONE": "无",
131
+ "PAGER_PREVIOUS": "Previous",
132
+ "PAGER_NEXT": "Next",
133
+ "PAGER_OUT_OF": "Out of",
134
+ "PAGER_PAGE": "Page",
54
135
  "SELECT": "选择",
55
136
  "SELECTED": "已选",
137
+ "SORT_BY": "Sort by",
56
138
  "SORT_ASC": "升序",
57
- "SORT_DESC": "降序"
139
+ "SORT_DESC": "降序",
140
+ "TOTAL_RESULTS": "<span class='bold number'>{{ totalRows }}{{ unknownCount }}</span> 结果",
141
+ "TOTAL_RESULT": "<span class='bold number'>{{ totalRows }}</span> 结果",
142
+ "TOTAL_RESULTS_OUT_OF": "第 <span class='bold number'>{{ xRows }}</span> 条,共 <span class='bold number'>{{ totalRows }}</span> 条结果",
143
+ "TOTAL_RESULT_OUT_OF_RESULT": "第 <span class='bold number'>{{ xRows }}</span> 条,共 <span class='bold number'>{{ totalRows }}</span> 条结果",
144
+ "TOTAL_OF": "At total of: ",
145
+ "NO_DATA_FOUND": "No results were found.",
146
+ "NO_DATA_FOUND_SUGGESTIONS_TITLE": "We have some suggestions:",
147
+ "NO_DATA_FOUND_SUGGESTIONS_LIST": "<li> 确保所有单词拼写正确。</li> <li> 尝试不同的关键词。</li> <li>尝试更通用的关键词。 </li>"
58
148
  },
59
149
  "MESSAGES": {
60
150
  "TITLE_NOTICE": "通知",
@@ -69,9 +159,22 @@
69
159
  "ERROR_MAX_QUANTITY_LIMIT": "最高数量",
70
160
  "ERROR_MIN_QUANTITY_LIMIT": "最低数量",
71
161
  "ERROR_RANGE_IS_NOT_VALID": "值应介于 {{min}} 和 {{max}} 之间",
162
+ "ERROR_INVALID_PATTERN": "Invalid Character",
72
163
  "INFO_LOADING_FILE": "载入中",
73
164
  "INFO_MISSING_FILE": "缺少文件",
74
165
  "INFO_MISSING_IMAGE": "缺少图像",
75
166
  "INFO_MISSING_SIGNATURE": "签名缺失"
167
+ },
168
+ "DATE_AGO": {
169
+ "JUST_NOW": "Just now",
170
+ "SECOND": "second",
171
+ "MINUTE": "minute",
172
+ "HOUR": "hour",
173
+ "DAY": "day",
174
+ "WEEK": "week",
175
+ "MONTH": "month",
176
+ "YEAR": "year",
177
+ "SINGULAR": " ago",
178
+ "PLURAL": "'s ago"
76
179
  }
77
180
  }
@@ -193,17 +193,17 @@
193
193
  }
194
194
  }
195
195
 
196
- @mixin font-title($fs: variables.$fs-md, $lh: variables.$lh-md) {
197
- font-family: variables.$font-family-title !important;
198
- font-weight: variables.$font-weight-bold !important;
196
+ @mixin font-title($fs: variables.$fs-md, $lh: variables.$lh-md, $font-family: variables.$font-family-title, $font-weight: variables.$font-weight-bold) {
197
+ font-family: $font-family !important;
198
+ font-weight: $font-weight !important;
199
199
 
200
200
  @include font-size($fs);
201
201
  @include line-height($lh);
202
202
  }
203
203
 
204
- @mixin font-body($fs: variables.$fs-sm, $lh: variables.$lh-sm) {
205
- font-family: variables.$font-family-body !important;
206
- font-weight: variables.$font-weight-normal;
204
+ @mixin font-body($fs: variables.$fs-sm, $lh: variables.$lh-sm, $font-family: variables.$font-family-body, $font-weight: variables.$font-weight-normal) {
205
+ font-family: $font-family !important;
206
+ font-weight: $font-weight;
207
207
 
208
208
  @include font-size($fs);
209
209
  @include line-height($lh);
@@ -306,6 +306,37 @@
306
306
  );
307
307
  }
308
308
 
309
+ @mixin pep-full-width-loader($loader-color: variables.$color-loader-base) {
310
+ $loader-bg: color-mix(in hsl, $loader-color 0%, transparent);
311
+
312
+ height: 0.25rem;
313
+ z-index: variables.$z-index-high;
314
+ width: 100%;
315
+ background: linear-gradient(0.25turn, $loader-bg 0%, $loader-color 50%, $loader-bg 50%);
316
+ background-size: 200% 200%;
317
+ animation-timing-function: ease-out;
318
+ animation-name: slidein;
319
+ animation-iteration-count: infinite;
320
+ animation-duration: 1.5s;
321
+
322
+ &.rtl {
323
+ animation-name: slideinRtl;
324
+ background: linear-gradient(0.75turn, $loader-bg 0%, $loader-color 50%, $loader-bg 50%);
325
+ background-size: 200% 200%;
326
+ }
327
+
328
+ @keyframes slidein {
329
+ 0% { background-position: 100%; }
330
+ 75% { background-position: -100%; }
331
+ 100% { background-position: -100%; }
332
+ }
333
+ @keyframes slideinRtl {
334
+ 0% { background-position: -100%; }
335
+ 75% { background-position: 100%; }
336
+ 100% { background-position: 100%; }
337
+ }
338
+ }
339
+
309
340
  // ******************************************************************************
310
341
  // General state declerations
311
342
  // ******************************************************************************
@@ -388,13 +419,15 @@
388
419
  }
389
420
 
390
421
  // ******************************************************************************
391
- // State weak declerations
422
+ // State declerations
392
423
  // ******************************************************************************
393
424
  @mixin pep-state-default($style: weak, $color-map-key: null, $regularBorder: false) {
394
425
  @if ($style == 'none') {
395
426
  @include state-none-default();
396
427
  } @else if ($style == 'weak-invert') {
397
428
  @include state-weak-invert-default();
429
+ } @else if ($style == 'weak-special') {
430
+ @include state-weak-special-default();
398
431
  } @else if ($style == 'weak') {
399
432
  @include state-weak-default($color-map-key);
400
433
  } @else if ($style == 'strong') {
@@ -408,6 +441,8 @@
408
441
  @include state-none-disable();
409
442
  } @else if ($style == 'weak-invert') {
410
443
  @include state-weak-invert-disable();
444
+ } @else if ($style == 'weak-special') {
445
+ @include state-weak-special-disable();
411
446
  } @else if ($style == 'weak') {
412
447
  @include state-weak-disable($color-map-key);
413
448
  } @else if ($style == 'strong') {
@@ -421,6 +456,8 @@
421
456
  @include state-none-hover();
422
457
  } @else if ($style == 'weak-invert') {
423
458
  @include state-weak-invert-hover();
459
+ } @else if ($style == 'weak-special') {
460
+ @include state-weak-special-hover();
424
461
  } @else if ($style == 'weak') {
425
462
  @include state-weak-hover($color-map-key);
426
463
  } @else if ($style == 'strong') {
@@ -434,6 +471,8 @@
434
471
  @include state-none-active();
435
472
  } @else if ($style == 'weak-invert') {
436
473
  @include state-weak-invert-active();
474
+ } @else if ($style == 'weak-special') {
475
+ @include state-weak-special-active();
437
476
  } @else if ($style == 'weak') {
438
477
  @include state-weak-active($color-map-key);
439
478
  } @else if ($style == 'strong') {
@@ -447,6 +486,8 @@
447
486
  @include state-none-focus();
448
487
  } @else if ($style == 'weak-invert') {
449
488
  @include state-weak-invert-focus();
489
+ } @else if ($style == 'weak-special') {
490
+ @include state-weak-special-focus();
450
491
  } @else if ($style == 'weak') {
451
492
  @include state-weak-focus($color-map-key);
452
493
  } @else if ($style == 'strong') {
@@ -465,7 +506,7 @@
465
506
  @if ($color-map-key == null) {
466
507
  $color-map-key: color-weak;
467
508
  }
468
- background: functions.get-pep-color($color-map-key, color-tran-30);
509
+ background: functions.get-pep-color($color-map-key, color-tran-20);
469
510
  }
470
511
  @mixin state-weak-disable($color-map-key: null) {
471
512
  @include state-disabled();
@@ -473,8 +514,12 @@
473
514
  @if ($color-map-key == null) {
474
515
  $color-map-key: color-weak;
475
516
  }
476
- color:functions.get-pep-color(color-text, color-disabled) !important;
477
- background: functions.get-pep-color($color-map-key, color-tran-10) !important;
517
+
518
+ &:not(.disabled-no-background-no-color) {
519
+ color:functions.get-pep-color(color-text, color-disabled) !important;
520
+ background: functions.get-pep-color($color-map-key, color-tran-10) !important;
521
+ }
522
+
478
523
  }
479
524
  @mixin state-weak-hover($color-map-key: null) {
480
525
  @if ($color-map-key == null) {
@@ -507,33 +552,90 @@
507
552
  // Weak - invert
508
553
  // -----------------------------------------------------------------------------
509
554
  @mixin state-weak-invert-default() {
510
- background: functions.get-pep-color(color-system-primary-invert, color-tran-70);
555
+ background: functions.get-pep-color(color-system-primary-invert, color-tran-30);
511
556
 
512
- // $color: functions.get-pep-color(color-text, color-main);
513
- // color: $color;
514
-
515
- // .svg-icon {
516
- // fill: $color !important;
517
- // }
557
+ $color: functions.get-pep-color(color-text, color-invert);
558
+ color: $color;
559
+
560
+ .svg-icon {
561
+ fill: $color !important;
562
+ }
518
563
  }
519
564
  @mixin state-weak-invert-disable() {
520
565
  @include state-disabled();
521
566
 
522
- color:functions.get-pep-color(color-text, color-disabled) !important;
523
- background: functions.get-pep-color(color-system-primary-invert, color-tran-20) !important;
567
+ &:not(.disabled-no-background-no-color) {
568
+ color:functions.get-pep-color(color-system-primary-invert, color-tran-40) !important;
569
+ background: functions.get-pep-color(color-system-primary-invert, color-tran-10) !important;
570
+ }
571
+
572
+ .svg-icon {
573
+ fill: functions.get-pep-color(color-system-primary-invert, color-tran-40) !important;
574
+ }
524
575
  }
525
576
  @mixin state-weak-invert-hover() {
526
- background: functions.get-pep-color(color-system-primary-invert, color-tran-70);
577
+ background: functions.get-pep-color(color-system-primary-invert, color-tran-50);
527
578
  box-shadow: functions.get-pep-shadow(shadow-xs, soft);
528
579
  cursor: pointer;
529
580
  }
530
581
  @mixin state-weak-invert-active() {
531
582
  background: functions.get-pep-color(color-system-primary-invert, color-base);
532
583
  box-shadow: functions.get-pep-shadow(shadow-xs, regular);
584
+ $color: functions.get-pep-color(color-text, color-main);
585
+ color: $color;
586
+
587
+ .svg-icon {
588
+ fill: $color !important;
589
+ }
533
590
  }
534
591
  @mixin state-weak-invert-focus() {
535
592
  background: functions.get-pep-color(color-system-primary-invert, color-base);
536
593
  @include focus();
594
+ $color: functions.get-pep-color(color-text, color-main);
595
+ color: $color;
596
+
597
+ .svg-icon {
598
+ fill: $color !important;
599
+ }
600
+ }
601
+
602
+ // Weak - special
603
+ // -----------------------------------------------------------------------------
604
+ @mixin state-weak-special-default() {
605
+ background: functions.get-pep-color(color-system-primary-invert, color-tran-50);
606
+ }
607
+ @mixin state-weak-special-disable() {
608
+ @include state-disabled();
609
+
610
+ &:not(.disabled-no-background-no-color) {
611
+ color:functions.get-pep-color(color-text, color-disabled) !important;
612
+ background: functions.get-pep-color(color-system-primary-invert, color-tran-20) !important;
613
+ }
614
+ }
615
+ @mixin state-weak-special-hover() {
616
+ background: functions.get-pep-color(color-system-primary-invert, color-tran-70);
617
+ box-shadow: functions.get-pep-shadow(shadow-xs, soft);
618
+ cursor: pointer;
619
+ }
620
+ @mixin state-weak-special-active() {
621
+ // background: functions.get-pep-color(color-system-primary-invert, color-base);
622
+ // box-shadow: functions.get-pep-shadow(shadow-xs, regular);
623
+ // $color: functions.get-pep-color(color-text, color-main);
624
+ // color: $color;
625
+
626
+ // .svg-icon {
627
+ // fill: $color !important;
628
+ // }
629
+ }
630
+ @mixin state-weak-special-focus() {
631
+ // background: functions.get-pep-color(color-system-primary-invert, color-base);
632
+ // @include focus();
633
+ // $color: functions.get-pep-color(color-text, color-main);
634
+ // color: $color;
635
+
636
+ // .svg-icon {
637
+ // fill: $color !important;
638
+ // }
537
639
  }
538
640
 
539
641
  // ******************************************************************************
@@ -585,8 +687,12 @@
585
687
  @if ($color-map-key == null) {
586
688
  $color-map-key: color-regular;
587
689
  }
588
- color:functions.get-pep-color(color-text, color-disabled) !important;
589
- background: functions.get-pep-color($color-map-key, color-flat-r-30) !important;
690
+
691
+ &:not(.disabled-no-background-no-color) {
692
+ color:functions.get-pep-color(color-text, color-disabled) !important;
693
+ background: functions.get-pep-color($color-map-key, color-flat-r-30) !important;
694
+ }
695
+
590
696
  box-shadow: functions.get-pep-shadow(shadow-xs, xsoft) !important;
591
697
  @include inline(functions.get-pep-color($color-map-key, color-tran-20), 1px, solid, $regularBorder);
592
698
  }
@@ -618,12 +724,15 @@
618
724
  @if ($color-map-key == null) {
619
725
  $color-map-key: color-strong;
620
726
  }
621
- background: functions.get-pep-color($color-map-key, color-base) !important;
622
- opacity: 0.5 !important;
623
-
727
+
624
728
  $color: functions.get-pep-color(color-text, color-invert);
625
729
 
626
- color: $color;
730
+ &:not(.disabled-no-background-no-color) {
731
+ background: functions.get-pep-color($color-map-key, color-base) !important;
732
+ opacity: 0.5 !important;
733
+ color: $color;
734
+ }
735
+
627
736
  .svg-icon {
628
737
  @include svg-icon-color($color);
629
738
  }
@@ -77,7 +77,7 @@ $lh-12xl: var(--pep-line-height-12xl, 10rem);
77
77
  // Fonts weight - General
78
78
  $font-weight-normal: var(--pep-font-weight-normal, 400);
79
79
  $font-weight-bold: var(--pep-font-weight-bold, 600);
80
- $font-weight-bolder: var(--pep-font-weight-bolder, 800);
80
+ $font-weight-bolder: var(--pep-font-weight-bold, 600); // var(--pep-font-weight-bolder, 800);
81
81
 
82
82
  // Round corners
83
83
  // -----------------------------------------------------------------------------
@@ -496,6 +496,15 @@ $color-top-header-flat-r-20: hsl(#{$color-top-header-h}, #{$color-top-header-s},
496
496
  $color-top-header-flat-r-30: hsl(#{$color-top-header-h}, #{$color-top-header-s}, $flat-r-30-lp);
497
497
  $color-top-header-flat-r-40: hsl(#{$color-top-header-h}, #{$color-top-header-s}, $flat-r-40-lp);
498
498
 
499
+ //*********************************************************************************
500
+ // Loader - color
501
+ //*********************************************************************************
502
+ // Base color - default caution color.
503
+ $color-loader-h: var(--pep-color-loader-h, 360);
504
+ $color-loader-s: var(--pep-color-loader-s, 100%);
505
+ $color-loader-l: var(--pep-color-loader-l, 45%);
506
+ $color-loader-base: hsl(#{$color-loader-h}, #{$color-loader-s}, #{$color-loader-l}); // base
507
+
499
508
  //*********************************************************************************
500
509
  // Quantity selector - color
501
510
  //*********************************************************************************