@festo-ui/angular 3.1.0 → 3.2.1-pre-20220624.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 (292) hide show
  1. package/README.md +5 -1
  2. package/css/bundle.css +1 -0
  3. package/css/image-gallery.css +1 -0
  4. package/css/popover.css +1 -0
  5. package/esm2020/festo-ui-angular.mjs +5 -0
  6. package/esm2020/index.mjs +20 -0
  7. package/esm2020/lib/components/accordion/accordion-header/accordion-header.component.mjs +11 -0
  8. package/esm2020/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.mjs +15 -0
  9. package/esm2020/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.mjs +28 -0
  10. package/esm2020/lib/components/accordion/accordion-item/accordion-item.component.mjs +143 -0
  11. package/esm2020/lib/components/accordion/accordion.component.mjs +59 -0
  12. package/esm2020/lib/components/accordion/index.mjs +6 -0
  13. package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +23 -0
  14. package/esm2020/lib/components/buttons/button/button.component.mjs +41 -0
  15. package/esm2020/lib/components/buttons/link-button/link-button.component.mjs +33 -0
  16. package/esm2020/lib/components/chips/chip/chip.component.mjs +37 -0
  17. package/esm2020/lib/components/chips/chip-container/chip-container.component.mjs +16 -0
  18. package/esm2020/lib/components/click-outside.directive.mjs +28 -0
  19. package/esm2020/lib/components/components.module.mjs +223 -0
  20. package/esm2020/lib/components/image-gallery/image-gallery.component.mjs +58 -0
  21. package/esm2020/lib/components/image-gallery/image-gallery.module.mjs +21 -0
  22. package/esm2020/lib/components/loading-indicator/loading-indicator.component.mjs +16 -0
  23. package/esm2020/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.mjs +38 -0
  24. package/esm2020/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.mjs +64 -0
  25. package/esm2020/lib/components/mobile-flyout/mobile-flyout.component.mjs +68 -0
  26. package/esm2020/lib/components/modals/alert/alert.component.mjs +52 -0
  27. package/esm2020/lib/components/modals/confirm/confirm.component.mjs +53 -0
  28. package/esm2020/lib/components/modals/custom-modal/custom-modal.component.mjs +70 -0
  29. package/esm2020/lib/components/modals/index.mjs +2 -0
  30. package/esm2020/lib/components/modals/modal.service.mjs +121 -0
  31. package/esm2020/lib/components/modals/modals.module.mjs +31 -0
  32. package/esm2020/lib/components/modals/prompt/prompt.component.mjs +102 -0
  33. package/esm2020/lib/components/pagination/pagination.component.mjs +55 -0
  34. package/esm2020/lib/components/popovers/legend/legend.component.mjs +42 -0
  35. package/esm2020/lib/components/popovers/legend/legend.directive.mjs +31 -0
  36. package/esm2020/lib/components/popovers/popover/popover.component.mjs +31 -0
  37. package/esm2020/lib/components/popovers/popover-content/popover-content.component.mjs +82 -0
  38. package/esm2020/lib/components/popovers/popover-content/popover-content.directive.mjs +39 -0
  39. package/esm2020/lib/components/popovers/popover-menu/popover-menu.component.mjs +68 -0
  40. package/esm2020/lib/components/popovers/popover-ref.mjs +25 -0
  41. package/esm2020/lib/components/popovers/popover.defaults.mjs +60 -0
  42. package/esm2020/lib/components/popovers/popover.models.mjs +23 -0
  43. package/esm2020/lib/components/popovers/popover.service.mjs +123 -0
  44. package/esm2020/lib/components/popovers/tooltip/tooltip.directive.mjs +100 -0
  45. package/esm2020/lib/components/progress/progress.component.mjs +20 -0
  46. package/esm2020/lib/components/scroll/index.mjs +2 -0
  47. package/esm2020/lib/components/scroll/scrollable.directive.mjs +72 -0
  48. package/esm2020/lib/components/search-input/safe-html.pipe.mjs +21 -0
  49. package/esm2020/lib/components/search-input/search-input.component.mjs +172 -0
  50. package/esm2020/lib/components/snackbar/snackbar-container.component.mjs +21 -0
  51. package/esm2020/lib/components/snackbar/snackbar-container.directive.mjs +83 -0
  52. package/esm2020/lib/components/snackbar/snackbar.component.mjs +79 -0
  53. package/esm2020/lib/components/snackbar/snackbar.models.mjs +2 -0
  54. package/esm2020/lib/components/snackbar/snackbar.module.mjs +26 -0
  55. package/esm2020/lib/components/snackbar/snackbar.service.mjs +23 -0
  56. package/esm2020/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.mjs +19 -0
  57. package/esm2020/lib/components/stepper-horizontal/stepper-horizontal.component.mjs +51 -0
  58. package/esm2020/lib/components/stepper-vertical/step-vertical/step-vertical.component.mjs +56 -0
  59. package/esm2020/lib/components/stepper-vertical/stepper-vertical.component.mjs +54 -0
  60. package/esm2020/lib/components/table-header-cell/table-header-cell.directive.mjs +58 -0
  61. package/esm2020/lib/components/tabs/tab-pane/tab-pane.component.mjs +31 -0
  62. package/esm2020/lib/components/tabs/tabs.component.mjs +353 -0
  63. package/esm2020/lib/content/content.module.mjs +20 -0
  64. package/esm2020/lib/content/icon/icon.component.mjs +17 -0
  65. package/esm2020/lib/festo-angular.module.mjs +65 -0
  66. package/esm2020/lib/forms/checkbox/checkbox.component.mjs +149 -0
  67. package/esm2020/lib/forms/color-indicator/color-indicator.component.mjs +68 -0
  68. package/esm2020/lib/forms/color-picker/color-helper.mjs +121 -0
  69. package/esm2020/lib/forms/color-picker/color-picker.component.mjs +273 -0
  70. package/esm2020/lib/forms/container-host.mjs +27 -0
  71. package/esm2020/lib/forms/date-picker/date-picker.component.mjs +199 -0
  72. package/esm2020/lib/forms/date-range-picker/date-range-picker.component.mjs +224 -0
  73. package/esm2020/lib/forms/forms.module.mjs +146 -0
  74. package/esm2020/lib/forms/radio/radio.component.mjs +346 -0
  75. package/esm2020/lib/forms/segment/segment-control/segment-control.component.mjs +57 -0
  76. package/esm2020/lib/forms/segment/segment.component.mjs +109 -0
  77. package/esm2020/lib/forms/select/chip-text.pipe.mjs +34 -0
  78. package/esm2020/lib/forms/select/select-option/select-option.component.mjs +22 -0
  79. package/esm2020/lib/forms/select/select.component.mjs +257 -0
  80. package/esm2020/lib/forms/slider/slider.component.mjs +110 -0
  81. package/esm2020/lib/forms/switch/switch.component.mjs +120 -0
  82. package/esm2020/lib/forms/text-area/text-area.component.mjs +180 -0
  83. package/esm2020/lib/forms/text-editor/text-editor.component.mjs +286 -0
  84. package/esm2020/lib/forms/text-input/text-input.component.mjs +183 -0
  85. package/esm2020/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.mjs +89 -0
  86. package/esm2020/lib/forms/time-picker/time-picker.component.mjs +188 -0
  87. package/esm2020/lib/forms/unique-selection-dispatcher.mjs +39 -0
  88. package/esm2020/lib/forms/value-accessor-base.mjs +41 -0
  89. package/esm2020/lib/layout/layout.module.mjs +18 -0
  90. package/esm2020/lib/wrappers/flatpickr/flatpickr.component.mjs +59 -0
  91. package/fesm2015/festo-ui-angular.mjs +6172 -0
  92. package/fesm2015/festo-ui-angular.mjs.map +1 -0
  93. package/fesm2020/festo-ui-angular.mjs +6154 -0
  94. package/fesm2020/festo-ui-angular.mjs.map +1 -0
  95. package/index.d.ts +1 -0
  96. package/lib/components/accordion/accordion-header/accordion-header.component.d.ts +5 -0
  97. package/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.d.ts +6 -0
  98. package/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.d.ts +15 -0
  99. package/lib/components/accordion/accordion-item/accordion-item.component.d.ts +34 -0
  100. package/lib/components/accordion/accordion.component.d.ts +24 -0
  101. package/lib/components/accordion/index.d.ts +5 -0
  102. package/lib/components/components.module.d.ts +40 -20
  103. package/lib/components/image-gallery/image-gallery.component.d.ts +33 -0
  104. package/lib/components/image-gallery/image-gallery.module.d.ts +10 -0
  105. package/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.d.ts +15 -0
  106. package/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.d.ts +19 -0
  107. package/lib/components/mobile-flyout/mobile-flyout.component.d.ts +17 -0
  108. package/lib/components/modals/confirm/confirm.component.d.ts +1 -3
  109. package/lib/components/modals/custom-modal/custom-modal.component.d.ts +21 -0
  110. package/lib/components/modals/modal.service.d.ts +2 -0
  111. package/lib/components/modals/modals.module.d.ts +8 -5
  112. package/lib/components/popovers/tooltip/tooltip.directive.d.ts +5 -3
  113. package/lib/components/search-input/safe-html.pipe.d.ts +10 -0
  114. package/lib/components/search-input/search-input.component.d.ts +22 -5
  115. package/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.d.ts +7 -0
  116. package/lib/components/stepper-horizontal/stepper-horizontal.component.d.ts +14 -0
  117. package/lib/components/stepper-vertical/step-vertical/step-vertical.component.d.ts +18 -0
  118. package/lib/components/stepper-vertical/stepper-vertical.component.d.ts +14 -0
  119. package/lib/festo-angular.module.d.ts +2 -1
  120. package/package.json +41 -19
  121. package/scss/base/components/accordion/accordion-header/accordion-header.component.scss +12 -0
  122. package/scss/base/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.scss +109 -0
  123. package/scss/base/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.scss +9 -0
  124. package/scss/base/components/accordion/accordion-item/accordion-item.component.scss +71 -0
  125. package/scss/base/components/accordion/accordion.component.scss +6 -0
  126. package/scss/base/components/breadcrumb/breadcrumb.component.scss +0 -1
  127. package/scss/base/components/buttons/button/button.component.scss +5 -3
  128. package/scss/base/components/image-gallery/image-gallery.component.scss +0 -0
  129. package/scss/base/components/image-gallery/styles.scss +5 -0
  130. package/scss/base/components/modals/prompt/prompt.component.scss +0 -1
  131. package/scss/base/components/popovers/legend/legend.component.scss +2 -2
  132. package/scss/base/components/popovers/popover/styles.scss +2 -3
  133. package/scss/base/components/popovers/popover-content/popover-content.component.scss +1 -1
  134. package/scss/base/components/scroll/scroll-story-helper.scss +1 -3
  135. package/scss/base/components/search-input/search-input.component.scss +4 -0
  136. package/scss/base/components/snackbar/snackbar.component.scss +1 -1
  137. package/scss/base/components/stepper-horizontal/step-horizontal/step-horizontal.component.scss +23 -0
  138. package/scss/base/components/stepper-vertical/step-vertical/step-vertical.component.scss +6 -0
  139. package/scss/base/forms/color-indicator/color-indicator.component.scss +1 -1
  140. package/scss/base/forms/color-picker/color-picker.component.scss +15 -15
  141. package/scss/base/forms/date-picker/date-picker.component.scss +1 -1
  142. package/scss/base/forms/date-range-picker/date-range-picker.component.scss +1 -1
  143. package/scss/base/forms/text-area/text-area.component.scss +4 -4
  144. package/scss/base/forms/text-editor/text-editor.component.scss +8 -10
  145. package/scss/base/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.scss +1 -1
  146. package/bundles/festo-ui-angular.umd.js +0 -6429
  147. package/bundles/festo-ui-angular.umd.js.map +0 -1
  148. package/esm2015/festo-ui-angular.js +0 -5
  149. package/esm2015/festo-ui-angular.js.map +0 -1
  150. package/esm2015/index.js +0 -18
  151. package/esm2015/index.js.map +0 -1
  152. package/esm2015/lib/components/breadcrumb/breadcrumb.component.js +0 -27
  153. package/esm2015/lib/components/breadcrumb/breadcrumb.component.js.map +0 -1
  154. package/esm2015/lib/components/buttons/button/button.component.js +0 -46
  155. package/esm2015/lib/components/buttons/button/button.component.js.map +0 -1
  156. package/esm2015/lib/components/buttons/link-button/link-button.component.js +0 -38
  157. package/esm2015/lib/components/buttons/link-button/link-button.component.js.map +0 -1
  158. package/esm2015/lib/components/chips/chip/chip.component.js +0 -42
  159. package/esm2015/lib/components/chips/chip/chip.component.js.map +0 -1
  160. package/esm2015/lib/components/chips/chip-container/chip-container.component.js +0 -21
  161. package/esm2015/lib/components/chips/chip-container/chip-container.component.js.map +0 -1
  162. package/esm2015/lib/components/click-outside.directive.js +0 -28
  163. package/esm2015/lib/components/click-outside.directive.js.map +0 -1
  164. package/esm2015/lib/components/components.module.js +0 -155
  165. package/esm2015/lib/components/components.module.js.map +0 -1
  166. package/esm2015/lib/components/loading-indicator/loading-indicator.component.js +0 -21
  167. package/esm2015/lib/components/loading-indicator/loading-indicator.component.js.map +0 -1
  168. package/esm2015/lib/components/modals/alert/alert.component.js +0 -57
  169. package/esm2015/lib/components/modals/alert/alert.component.js.map +0 -1
  170. package/esm2015/lib/components/modals/confirm/confirm.component.js +0 -73
  171. package/esm2015/lib/components/modals/confirm/confirm.component.js.map +0 -1
  172. package/esm2015/lib/components/modals/index.js +0 -2
  173. package/esm2015/lib/components/modals/index.js.map +0 -1
  174. package/esm2015/lib/components/modals/modal.service.js +0 -91
  175. package/esm2015/lib/components/modals/modal.service.js.map +0 -1
  176. package/esm2015/lib/components/modals/modals.module.js +0 -28
  177. package/esm2015/lib/components/modals/modals.module.js.map +0 -1
  178. package/esm2015/lib/components/modals/prompt/prompt.component.js +0 -110
  179. package/esm2015/lib/components/modals/prompt/prompt.component.js.map +0 -1
  180. package/esm2015/lib/components/pagination/pagination.component.js +0 -60
  181. package/esm2015/lib/components/pagination/pagination.component.js.map +0 -1
  182. package/esm2015/lib/components/popovers/legend/legend.component.js +0 -46
  183. package/esm2015/lib/components/popovers/legend/legend.component.js.map +0 -1
  184. package/esm2015/lib/components/popovers/legend/legend.directive.js +0 -31
  185. package/esm2015/lib/components/popovers/legend/legend.directive.js.map +0 -1
  186. package/esm2015/lib/components/popovers/popover/popover.component.js +0 -35
  187. package/esm2015/lib/components/popovers/popover/popover.component.js.map +0 -1
  188. package/esm2015/lib/components/popovers/popover-content/popover-content.component.js +0 -86
  189. package/esm2015/lib/components/popovers/popover-content/popover-content.component.js.map +0 -1
  190. package/esm2015/lib/components/popovers/popover-content/popover-content.directive.js +0 -39
  191. package/esm2015/lib/components/popovers/popover-content/popover-content.directive.js.map +0 -1
  192. package/esm2015/lib/components/popovers/popover-menu/popover-menu.component.js +0 -72
  193. package/esm2015/lib/components/popovers/popover-menu/popover-menu.component.js.map +0 -1
  194. package/esm2015/lib/components/popovers/popover-ref.js +0 -25
  195. package/esm2015/lib/components/popovers/popover-ref.js.map +0 -1
  196. package/esm2015/lib/components/popovers/popover.defaults.js +0 -60
  197. package/esm2015/lib/components/popovers/popover.defaults.js.map +0 -1
  198. package/esm2015/lib/components/popovers/popover.models.js +0 -23
  199. package/esm2015/lib/components/popovers/popover.models.js.map +0 -1
  200. package/esm2015/lib/components/popovers/popover.service.js +0 -117
  201. package/esm2015/lib/components/popovers/popover.service.js.map +0 -1
  202. package/esm2015/lib/components/popovers/tooltip/tooltip.directive.js +0 -96
  203. package/esm2015/lib/components/popovers/tooltip/tooltip.directive.js.map +0 -1
  204. package/esm2015/lib/components/progress/progress.component.js +0 -23
  205. package/esm2015/lib/components/progress/progress.component.js.map +0 -1
  206. package/esm2015/lib/components/scroll/index.js +0 -2
  207. package/esm2015/lib/components/scroll/index.js.map +0 -1
  208. package/esm2015/lib/components/scroll/scrollable.directive.js +0 -73
  209. package/esm2015/lib/components/scroll/scrollable.directive.js.map +0 -1
  210. package/esm2015/lib/components/search-input/search-input.component.js +0 -155
  211. package/esm2015/lib/components/search-input/search-input.component.js.map +0 -1
  212. package/esm2015/lib/components/snackbar/snackbar-container.component.js +0 -26
  213. package/esm2015/lib/components/snackbar/snackbar-container.component.js.map +0 -1
  214. package/esm2015/lib/components/snackbar/snackbar-container.directive.js +0 -83
  215. package/esm2015/lib/components/snackbar/snackbar-container.directive.js.map +0 -1
  216. package/esm2015/lib/components/snackbar/snackbar.component.js +0 -85
  217. package/esm2015/lib/components/snackbar/snackbar.component.js.map +0 -1
  218. package/esm2015/lib/components/snackbar/snackbar.models.js +0 -2
  219. package/esm2015/lib/components/snackbar/snackbar.models.js.map +0 -1
  220. package/esm2015/lib/components/snackbar/snackbar.module.js +0 -26
  221. package/esm2015/lib/components/snackbar/snackbar.module.js.map +0 -1
  222. package/esm2015/lib/components/snackbar/snackbar.service.js +0 -23
  223. package/esm2015/lib/components/snackbar/snackbar.service.js.map +0 -1
  224. package/esm2015/lib/components/stepper/stepper.component.js +0 -28
  225. package/esm2015/lib/components/stepper/stepper.component.js.map +0 -1
  226. package/esm2015/lib/components/table-header-cell/table-header-cell.directive.js +0 -58
  227. package/esm2015/lib/components/table-header-cell/table-header-cell.directive.js.map +0 -1
  228. package/esm2015/lib/components/tabs/tab-pane/tab-pane.component.js +0 -35
  229. package/esm2015/lib/components/tabs/tab-pane/tab-pane.component.js.map +0 -1
  230. package/esm2015/lib/components/tabs/tabs.component.js +0 -362
  231. package/esm2015/lib/components/tabs/tabs.component.js.map +0 -1
  232. package/esm2015/lib/content/content.module.js +0 -24
  233. package/esm2015/lib/content/content.module.js.map +0 -1
  234. package/esm2015/lib/content/icon/icon.component.js +0 -23
  235. package/esm2015/lib/content/icon/icon.component.js.map +0 -1
  236. package/esm2015/lib/festo-angular.module.js +0 -58
  237. package/esm2015/lib/festo-angular.module.js.map +0 -1
  238. package/esm2015/lib/forms/checkbox/checkbox.component.js +0 -156
  239. package/esm2015/lib/forms/checkbox/checkbox.component.js.map +0 -1
  240. package/esm2015/lib/forms/color-indicator/color-indicator.component.js +0 -72
  241. package/esm2015/lib/forms/color-indicator/color-indicator.component.js.map +0 -1
  242. package/esm2015/lib/forms/color-picker/color-helper.js +0 -121
  243. package/esm2015/lib/forms/color-picker/color-helper.js.map +0 -1
  244. package/esm2015/lib/forms/color-picker/color-picker.component.js +0 -280
  245. package/esm2015/lib/forms/color-picker/color-picker.component.js.map +0 -1
  246. package/esm2015/lib/forms/container-host.js +0 -27
  247. package/esm2015/lib/forms/container-host.js.map +0 -1
  248. package/esm2015/lib/forms/date-picker/date-picker.component.js +0 -205
  249. package/esm2015/lib/forms/date-picker/date-picker.component.js.map +0 -1
  250. package/esm2015/lib/forms/date-range-picker/date-range-picker.component.js +0 -230
  251. package/esm2015/lib/forms/date-range-picker/date-range-picker.component.js.map +0 -1
  252. package/esm2015/lib/forms/forms.module.js +0 -146
  253. package/esm2015/lib/forms/forms.module.js.map +0 -1
  254. package/esm2015/lib/forms/radio/radio.component.js +0 -353
  255. package/esm2015/lib/forms/radio/radio.component.js.map +0 -1
  256. package/esm2015/lib/forms/segment/segment-control/segment-control.component.js +0 -58
  257. package/esm2015/lib/forms/segment/segment-control/segment-control.component.js.map +0 -1
  258. package/esm2015/lib/forms/segment/segment.component.js +0 -116
  259. package/esm2015/lib/forms/segment/segment.component.js.map +0 -1
  260. package/esm2015/lib/forms/select/chip-text.pipe.js +0 -34
  261. package/esm2015/lib/forms/select/chip-text.pipe.js.map +0 -1
  262. package/esm2015/lib/forms/select/select-option/select-option.component.js +0 -29
  263. package/esm2015/lib/forms/select/select-option/select-option.component.js.map +0 -1
  264. package/esm2015/lib/forms/select/select.component.js +0 -265
  265. package/esm2015/lib/forms/select/select.component.js.map +0 -1
  266. package/esm2015/lib/forms/slider/slider.component.js +0 -116
  267. package/esm2015/lib/forms/slider/slider.component.js.map +0 -1
  268. package/esm2015/lib/forms/switch/switch.component.js +0 -127
  269. package/esm2015/lib/forms/switch/switch.component.js.map +0 -1
  270. package/esm2015/lib/forms/text-area/text-area.component.js +0 -186
  271. package/esm2015/lib/forms/text-area/text-area.component.js.map +0 -1
  272. package/esm2015/lib/forms/text-editor/text-editor.component.js +0 -294
  273. package/esm2015/lib/forms/text-editor/text-editor.component.js.map +0 -1
  274. package/esm2015/lib/forms/text-input/text-input.component.js +0 -189
  275. package/esm2015/lib/forms/text-input/text-input.component.js.map +0 -1
  276. package/esm2015/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.js +0 -103
  277. package/esm2015/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.js.map +0 -1
  278. package/esm2015/lib/forms/time-picker/time-picker.component.js +0 -194
  279. package/esm2015/lib/forms/time-picker/time-picker.component.js.map +0 -1
  280. package/esm2015/lib/forms/unique-selection-dispatcher.js +0 -39
  281. package/esm2015/lib/forms/unique-selection-dispatcher.js.map +0 -1
  282. package/esm2015/lib/forms/value-accessor-base.js +0 -41
  283. package/esm2015/lib/forms/value-accessor-base.js.map +0 -1
  284. package/esm2015/lib/layout/layout.module.js +0 -18
  285. package/esm2015/lib/layout/layout.module.js.map +0 -1
  286. package/esm2015/lib/wrappers/flatpickr/flatpickr.component.js +0 -63
  287. package/esm2015/lib/wrappers/flatpickr/flatpickr.component.js.map +0 -1
  288. package/fesm2015/festo-ui-angular.js +0 -5596
  289. package/fesm2015/festo-ui-angular.js.map +0 -1
  290. package/lib/components/stepper/stepper.component.d.ts +0 -30
  291. package/scss/base/components/stepper/stepper.component.scss +0 -118
  292. package/scss/styles.scss +0 -2056
package/index.d.ts CHANGED
@@ -4,6 +4,7 @@ export * from './lib/components/snackbar/snackbar.module';
4
4
  export * from './lib/content/content.module';
5
5
  export * from './lib/forms/forms.module';
6
6
  export * from './lib/layout/layout.module';
7
+ export * from './lib/components/image-gallery/image-gallery.module';
7
8
  export * from './lib/festo-angular.module';
8
9
  export * from './lib/components/modals/modal.service';
9
10
  export * from './lib/components/snackbar/snackbar.service';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class AccordionHeaderComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<AccordionHeaderComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<AccordionHeaderComponent, "fng-accordion-header", never, {}, {}, never, ["*"]>;
5
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class AccordionItemBodyComponent {
3
+ id: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemBodyComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemBodyComponent, "fng-accordion-item-body", never, {}, {}, never, ["*"]>;
6
+ }
@@ -0,0 +1,15 @@
1
+ import { OnDestroy } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare enum AccordionHeaderActions {
5
+ Toggle = "toggle"
6
+ }
7
+ export declare class AccordionItemHeaderComponent implements OnDestroy {
8
+ id: string;
9
+ private actions;
10
+ actions$: Observable<AccordionHeaderActions>;
11
+ ngOnDestroy(): void;
12
+ toggle(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemHeaderComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemHeaderComponent, "fng-accordion-item-header", never, {}, {}, never, ["*"]>;
15
+ }
@@ -0,0 +1,34 @@
1
+ import { OnChanges, SimpleChanges, ElementRef, Renderer2, AfterViewInit, ChangeDetectorRef } from '@angular/core';
2
+ import { AccordionItemBodyComponent } from './accordion-item-body/accordion-item-body.component';
3
+ import { AccordionItemHeaderComponent } from './accordion-item-header/accordion-item-header.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AccordionItemComponent implements OnChanges, AfterViewInit {
6
+ private elementRef;
7
+ private renderer;
8
+ private cd;
9
+ static nextId: number;
10
+ componentId: string;
11
+ expanded: boolean;
12
+ _linkText: string;
13
+ get linkText(): string;
14
+ header: AccordionItemHeaderComponent;
15
+ body: AccordionItemBodyComponent;
16
+ id: string;
17
+ parentId: string;
18
+ private accordion;
19
+ private accordionSubscription;
20
+ private accordionItemHeaderSubscription;
21
+ private element;
22
+ private pristine;
23
+ constructor(elementRef: ElementRef, renderer: Renderer2, cd: ChangeDetectorRef);
24
+ ngAfterViewInit(): void;
25
+ ngOnChanges(changes: SimpleChanges): void;
26
+ toggle(): void;
27
+ collapseItem(): void;
28
+ expandItem(): void;
29
+ private handleAction;
30
+ private subscribeToAccordionActions;
31
+ private subscribeToAccordionItemHeaderActions;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemComponent, "fng-accordion-item", never, {}, {}, ["header", "body"], ["*"]>;
34
+ }
@@ -0,0 +1,24 @@
1
+ import { QueryList, AfterViewInit, OnDestroy } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { AccordionItemComponent } from './accordion-item/accordion-item.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare enum AccordionActions {
6
+ OpenAll = "openAll",
7
+ CloseAll = "closeAll"
8
+ }
9
+ export declare class AccordionComponent implements AfterViewInit, OnDestroy {
10
+ static nextId: number;
11
+ readonly componentId: string;
12
+ private actions;
13
+ actions$: Observable<AccordionActions>;
14
+ multi: boolean;
15
+ showMore: string;
16
+ showLess: string;
17
+ items: QueryList<AccordionItemComponent>;
18
+ ngAfterViewInit(): void;
19
+ ngOnDestroy(): void;
20
+ openAll(): void;
21
+ closeAll(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "fng-accordion", never, { "multi": "fngAccordionKeepItemsOpen"; "showMore": "fngAccordionShowMoreText"; "showLess": "fngAccordionShowLessText"; }, {}, ["items"], ["*"]>;
24
+ }
@@ -0,0 +1,5 @@
1
+ export * from './accordion.component';
2
+ export * from './accordion-header/accordion-header.component';
3
+ export * from './accordion-item/accordion-item.component';
4
+ export * from './accordion-item/accordion-item-header/accordion-item-header.component';
5
+ export * from './accordion-item/accordion-item-body/accordion-item-body.component';
@@ -7,24 +7,36 @@ import * as i5 from "./chips/chip-container/chip-container.component";
7
7
  import * as i6 from "./chips/chip/chip.component";
8
8
  import * as i7 from "./pagination/pagination.component";
9
9
  import * as i8 from "./table-header-cell/table-header-cell.directive";
10
- import * as i9 from "./stepper/stepper.component";
11
- import * as i10 from "./popovers/popover/popover.component";
12
- import * as i11 from "./popovers/popover-menu/popover-menu.component";
13
- import * as i12 from "./popovers/tooltip/tooltip.directive";
14
- import * as i13 from "./popovers/popover-content/popover-content.component";
15
- import * as i14 from "./popovers/popover-content/popover-content.directive";
16
- import * as i15 from "./popovers/legend/legend.component";
17
- import * as i16 from "./popovers/legend/legend.directive";
18
- import * as i17 from "./progress/progress.component";
19
- import * as i18 from "./tabs/tabs.component";
20
- import * as i19 from "./tabs/tab-pane/tab-pane.component";
21
- import * as i20 from "./scroll/scrollable.directive";
22
- import * as i21 from "./search-input/search-input.component";
23
- import * as i22 from "./click-outside.directive";
24
- import * as i23 from "@angular/router";
25
- import * as i24 from "@angular/common";
26
- import * as i25 from "@angular/cdk/overlay";
27
- import * as i26 from "@angular/cdk/portal";
10
+ import * as i9 from "./stepper-vertical/stepper-vertical.component";
11
+ import * as i10 from "./stepper-vertical/step-vertical/step-vertical.component";
12
+ import * as i11 from "./stepper-horizontal/stepper-horizontal.component";
13
+ import * as i12 from "./stepper-horizontal/step-horizontal/step-horizontal.component";
14
+ import * as i13 from "./popovers/popover/popover.component";
15
+ import * as i14 from "./popovers/popover-menu/popover-menu.component";
16
+ import * as i15 from "./popovers/tooltip/tooltip.directive";
17
+ import * as i16 from "./popovers/popover-content/popover-content.component";
18
+ import * as i17 from "./popovers/popover-content/popover-content.directive";
19
+ import * as i18 from "./popovers/legend/legend.component";
20
+ import * as i19 from "./popovers/legend/legend.directive";
21
+ import * as i20 from "./progress/progress.component";
22
+ import * as i21 from "./tabs/tabs.component";
23
+ import * as i22 from "./tabs/tab-pane/tab-pane.component";
24
+ import * as i23 from "./scroll/scrollable.directive";
25
+ import * as i24 from "./search-input/search-input.component";
26
+ import * as i25 from "./mobile-flyout/mobile-flyout.component";
27
+ import * as i26 from "./mobile-flyout/mobile-flyout-page/mobile-flyout-page.component";
28
+ import * as i27 from "./mobile-flyout/mobile-flyout-item/mobile-flyout-item.component";
29
+ import * as i28 from "./search-input/safe-html.pipe";
30
+ import * as i29 from "./click-outside.directive";
31
+ import * as i30 from "./accordion/accordion.component";
32
+ import * as i31 from "./accordion/accordion-header/accordion-header.component";
33
+ import * as i32 from "./accordion/accordion-item/accordion-item.component";
34
+ import * as i33 from "./accordion/accordion-item/accordion-item-header/accordion-item-header.component";
35
+ import * as i34 from "./accordion/accordion-item/accordion-item-body/accordion-item-body.component";
36
+ import * as i35 from "@angular/router";
37
+ import * as i36 from "@angular/common";
38
+ import * as i37 from "@angular/cdk/overlay";
39
+ import * as i38 from "@angular/cdk/portal";
28
40
  export * from './buttons/button/button.component';
29
41
  export * from './buttons/link-button/link-button.component';
30
42
  export * from './breadcrumb/breadcrumb.component';
@@ -32,7 +44,10 @@ export * from './loading-indicator/loading-indicator.component';
32
44
  export * from './chips/chip/chip.component';
33
45
  export * from './chips/chip-container/chip-container.component';
34
46
  export * from './table-header-cell/table-header-cell.directive';
35
- export * from './stepper/stepper.component';
47
+ export * from './stepper-vertical/stepper-vertical.component';
48
+ export * from './stepper-vertical/step-vertical/step-vertical.component';
49
+ export * from './stepper-horizontal/stepper-horizontal.component';
50
+ export * from './stepper-horizontal/step-horizontal/step-horizontal.component';
36
51
  export * from './popovers/popover/popover.component';
37
52
  export * from './popovers/popover-menu/popover-menu.component';
38
53
  export * from './popovers/tooltip/tooltip.directive';
@@ -47,9 +62,14 @@ export * from './tabs/tab-pane/tab-pane.component';
47
62
  export * from './pagination/pagination.component';
48
63
  export * from './scroll';
49
64
  export * from './search-input/search-input.component';
65
+ export * from './search-input/safe-html.pipe';
50
66
  export * from './click-outside.directive';
67
+ export * from './mobile-flyout/mobile-flyout.component';
68
+ export * from './mobile-flyout/mobile-flyout-page/mobile-flyout-page.component';
69
+ export * from './mobile-flyout/mobile-flyout-item/mobile-flyout-item.component';
70
+ export * from './accordion';
51
71
  export declare class FestoAngularComponentsModule {
52
72
  static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularComponentsModule, never>;
53
- static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularComponentsModule, [typeof i1.ButtonComponent, typeof i2.LinkButtonComponent, typeof i3.BreadcrumbComponent, typeof i4.LoadingIndicatorComponent, typeof i5.ChipContainerComponent, typeof i6.ChipComponent, typeof i7.PaginationComponent, typeof i8.TableHeaderCellDirective, typeof i9.StepperComponent, typeof i10.PopoverComponent, typeof i11.PopoverMenuComponent, typeof i12.TooltipDirective, typeof i13.PopoverContentComponent, typeof i14.PopoverContentDirective, typeof i15.LegendComponent, typeof i16.LegendDirective, typeof i17.ProgressComponent, typeof i18.TabsComponent, typeof i19.TabPaneComponent, typeof i20.ScrollableDirective, typeof i21.SearchInputComponent, typeof i22.ClickOutsideDirective], [typeof i23.RouterModule, typeof i24.CommonModule, typeof i25.OverlayModule, typeof i26.PortalModule], [typeof i1.ButtonComponent, typeof i2.LinkButtonComponent, typeof i3.BreadcrumbComponent, typeof i4.LoadingIndicatorComponent, typeof i5.ChipContainerComponent, typeof i6.ChipComponent, typeof i7.PaginationComponent, typeof i8.TableHeaderCellDirective, typeof i9.StepperComponent, typeof i10.PopoverComponent, typeof i11.PopoverMenuComponent, typeof i12.TooltipDirective, typeof i13.PopoverContentComponent, typeof i14.PopoverContentDirective, typeof i15.LegendComponent, typeof i16.LegendDirective, typeof i17.ProgressComponent, typeof i18.TabsComponent, typeof i19.TabPaneComponent, typeof i20.ScrollableDirective, typeof i21.SearchInputComponent, typeof i22.ClickOutsideDirective]>;
73
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularComponentsModule, [typeof i1.ButtonComponent, typeof i2.LinkButtonComponent, typeof i3.BreadcrumbComponent, typeof i4.LoadingIndicatorComponent, typeof i5.ChipContainerComponent, typeof i6.ChipComponent, typeof i7.PaginationComponent, typeof i8.TableHeaderCellDirective, typeof i9.StepperVerticalComponent, typeof i10.StepVerticalComponent, typeof i11.StepperHorizontalComponent, typeof i12.StepHorizontalComponent, typeof i13.PopoverComponent, typeof i14.PopoverMenuComponent, typeof i15.TooltipDirective, typeof i16.PopoverContentComponent, typeof i17.PopoverContentDirective, typeof i18.LegendComponent, typeof i19.LegendDirective, typeof i20.ProgressComponent, typeof i21.TabsComponent, typeof i22.TabPaneComponent, typeof i23.ScrollableDirective, typeof i24.SearchInputComponent, typeof i25.MobileFlyoutComponent, typeof i26.MobileFlyoutPageComponent, typeof i27.MobileFlyoutItemComponent, typeof i28.SafeHtmlPipe, typeof i29.ClickOutsideDirective, typeof i30.AccordionComponent, typeof i31.AccordionHeaderComponent, typeof i32.AccordionItemComponent, typeof i33.AccordionItemHeaderComponent, typeof i34.AccordionItemBodyComponent], [typeof i35.RouterModule, typeof i36.CommonModule, typeof i37.OverlayModule, typeof i38.PortalModule], [typeof i1.ButtonComponent, typeof i2.LinkButtonComponent, typeof i3.BreadcrumbComponent, typeof i4.LoadingIndicatorComponent, typeof i5.ChipContainerComponent, typeof i6.ChipComponent, typeof i7.PaginationComponent, typeof i8.TableHeaderCellDirective, typeof i9.StepperVerticalComponent, typeof i10.StepVerticalComponent, typeof i11.StepperHorizontalComponent, typeof i12.StepHorizontalComponent, typeof i13.PopoverComponent, typeof i14.PopoverMenuComponent, typeof i15.TooltipDirective, typeof i16.PopoverContentComponent, typeof i17.PopoverContentDirective, typeof i18.LegendComponent, typeof i19.LegendDirective, typeof i20.ProgressComponent, typeof i21.TabsComponent, typeof i22.TabPaneComponent, typeof i23.ScrollableDirective, typeof i24.SearchInputComponent, typeof i28.SafeHtmlPipe, typeof i29.ClickOutsideDirective, typeof i25.MobileFlyoutComponent, typeof i26.MobileFlyoutPageComponent, typeof i27.MobileFlyoutItemComponent, typeof i30.AccordionComponent, typeof i31.AccordionHeaderComponent, typeof i32.AccordionItemComponent, typeof i33.AccordionItemHeaderComponent, typeof i34.AccordionItemBodyComponent]>;
54
74
  static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularComponentsModule>;
55
75
  }
@@ -0,0 +1,33 @@
1
+ import { ChangeDetectorRef, EventEmitter } from '@angular/core';
2
+ import { Modal } from '../modals';
3
+ import * as i0 from "@angular/core";
4
+ export interface ImageGalleryData {
5
+ startIndex: number;
6
+ images: {
7
+ url: string;
8
+ alt: string;
9
+ }[];
10
+ thumbnailImages?: {
11
+ url: string;
12
+ alt: string;
13
+ }[];
14
+ pagination?: boolean;
15
+ slideChanged?: (index: number) => void;
16
+ }
17
+ export declare class ImageGalleryComponent implements Modal<ImageGalleryData, any> {
18
+ private cd;
19
+ data: ImageGalleryData;
20
+ close: EventEmitter<any>;
21
+ cancel: EventEmitter<any>;
22
+ ok: EventEmitter<any>;
23
+ thumbsSwiper: any;
24
+ currentIndex: number;
25
+ constructor(cd: ChangeDetectorRef);
26
+ onKeyUp(event: KeyboardEvent): void;
27
+ onSlideChange(swiper: {
28
+ activeIndex: number;
29
+ }[]): void;
30
+ onClose(): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageGalleryComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageGalleryComponent, "fng-image-gallery", never, { "data": "data"; }, { "close": "close"; "cancel": "cancel"; "ok": "ok"; }, never, never>;
33
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./image-gallery.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "swiper/angular";
5
+ export * from './image-gallery.component';
6
+ export declare class FestoAngularImageGalleryModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularImageGalleryModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularImageGalleryModule, [typeof i1.ImageGalleryComponent], [typeof i2.CommonModule, typeof i3.SwiperModule], [typeof i1.ImageGalleryComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularImageGalleryModule>;
10
+ }
@@ -0,0 +1,15 @@
1
+ import { OnChanges, SimpleChanges } from '@angular/core';
2
+ import { RouterLinkActive } from '@angular/router';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MobileFlyoutItemComponent implements OnChanges {
5
+ rla: RouterLinkActive;
6
+ icon: string;
7
+ pageLink: string;
8
+ lastElement: boolean;
9
+ onNavigateCallback: ((pageName: string) => void) | undefined;
10
+ constructor(rla: RouterLinkActive);
11
+ ngOnChanges(_: SimpleChanges): void;
12
+ onClick(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<MobileFlyoutItemComponent, [{ optional: true; }]>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<MobileFlyoutItemComponent, "fng-mobile-flyout-item", never, { "icon": "icon"; "pageLink": "pageLink"; "lastElement": "lastElement"; }, {}, never, ["*"]>;
15
+ }
@@ -0,0 +1,19 @@
1
+ import { AfterContentInit, QueryList, OnDestroy } from '@angular/core';
2
+ import { MobileFlyoutItemComponent } from '../mobile-flyout-item/mobile-flyout-item.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MobileFlyoutPageComponent implements AfterContentInit, OnDestroy {
5
+ itemComponents: QueryList<MobileFlyoutItemComponent>;
6
+ name: string;
7
+ back: string;
8
+ isfirstelement: boolean;
9
+ visible: boolean;
10
+ onNavigateCallback: ((pageName: string) => void) | undefined;
11
+ private complete;
12
+ ngAfterContentInit(): void;
13
+ ngOnDestroy(): void;
14
+ onNavigate(pageName: string): void;
15
+ onBack(): void;
16
+ private initItemComponents;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<MobileFlyoutPageComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<MobileFlyoutPageComponent, "fng-mobile-flyout-page", never, { "name": "name"; "back": "back"; }, {}, ["itemComponents"], ["*"]>;
19
+ }
@@ -0,0 +1,17 @@
1
+ import { AfterContentInit, OnDestroy, QueryList, EventEmitter } from '@angular/core';
2
+ import { MobileFlyoutPageComponent } from './mobile-flyout-page/mobile-flyout-page.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MobileFlyoutComponent implements AfterContentInit, OnDestroy {
5
+ flyoutOpenChange: EventEmitter<boolean>;
6
+ pageComponents: QueryList<MobileFlyoutPageComponent>;
7
+ isOpen: boolean;
8
+ private complete;
9
+ ngAfterContentInit(): void;
10
+ ngOnDestroy(): void;
11
+ onNavigate(pageName: string): void;
12
+ toggle(): void;
13
+ onClickOutside(): void;
14
+ private initPageComponents;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<MobileFlyoutComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<MobileFlyoutComponent, "fng-mobile-flyout", never, {}, { "flyoutOpenChange": "flyoutOpenChange"; }, ["pageComponents"], ["*"]>;
17
+ }
@@ -7,23 +7,21 @@ export interface ConfirmData {
7
7
  body: string;
8
8
  cancel?: string;
9
9
  ok?: string;
10
+ large?: boolean;
10
11
  }
11
12
  export declare class ConfirmComponent implements AfterViewInit, Modal<ConfirmData, any> {
12
13
  private cd;
13
- hasScrollableContent: boolean;
14
14
  data: ConfirmData;
15
15
  close: EventEmitter<any>;
16
16
  cancel: EventEmitter<any>;
17
17
  ok: EventEmitter<any>;
18
18
  closeBtn: ElementRef;
19
- content: ElementRef;
20
19
  onKeyUp(event: KeyboardEvent): void;
21
20
  constructor(cd: ChangeDetectorRef);
22
21
  ngAfterViewInit(): void;
23
22
  onClose(): void;
24
23
  onOk(): void;
25
24
  onCancel(): void;
26
- private shouldScroll;
27
25
  static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmComponent, never>;
28
26
  static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmComponent, "fng-confirm", never, { "data": "data"; }, { "close": "close"; "cancel": "cancel"; "ok": "ok"; }, never, never>;
29
27
  }
@@ -0,0 +1,21 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CustomModalComponent {
4
+ closeOnBackdrop: boolean;
5
+ large: boolean;
6
+ visible: boolean;
7
+ visibleChange: EventEmitter<boolean>;
8
+ header: string;
9
+ subheader: string;
10
+ acknowledgeLabel: string;
11
+ acknowledge: EventEmitter<void>;
12
+ cancelLabel: string;
13
+ cancel: EventEmitter<void>;
14
+ closeModal(): void;
15
+ onCancel(): void;
16
+ onAcknowledge(): void;
17
+ onClickOutside(): void;
18
+ onClickInside(event: MouseEvent): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomModalComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomModalComponent, "fng-custom-modal", never, { "closeOnBackdrop": "closeOnBackdrop"; "large": "large"; "visible": "visible"; "header": "header"; "subheader": "subheader"; "acknowledgeLabel": "acknowledgeLabel"; "cancelLabel": "cancelLabel"; }, { "visibleChange": "visibleChange"; "acknowledge": "acknowledge"; "cancel": "cancel"; }, never, ["*"]>;
21
+ }
@@ -5,6 +5,7 @@ import { Modal, ModalOptions, ModalResult } from './index';
5
5
  import { AlertData } from './alert/alert.component';
6
6
  import { ConfirmData } from './confirm/confirm.component';
7
7
  import { PromptData } from './prompt/prompt.component';
8
+ import { ImageGalleryData } from '../image-gallery/image-gallery.component';
8
9
  import * as i0 from "@angular/core";
9
10
  export declare class ModalService {
10
11
  protected overlay: Overlay;
@@ -13,6 +14,7 @@ export declare class ModalService {
13
14
  alert(data: AlertData, options?: ModalOptions): Promise<ModalResult<any>>;
14
15
  confirm(data: ConfirmData, options?: ModalOptions): Promise<ModalResult<any>>;
15
16
  prompt(data: PromptData, options?: ModalOptions): Promise<ModalResult<any>>;
17
+ openImageGallery(data: ImageGalleryData): Promise<ModalResult<any>>;
16
18
  open<TData, TResult, TModal extends Modal<TData, TResult>>(data: TData, modal: ComponentType<TModal>, options: ModalOptions): Promise<ModalResult<TResult>>;
17
19
  private dispose;
18
20
  static ɵfac: i0.ɵɵFactoryDeclaration<ModalService, never>;
@@ -2,16 +2,19 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./alert/alert.component";
3
3
  import * as i2 from "./confirm/confirm.component";
4
4
  import * as i3 from "./prompt/prompt.component";
5
- import * as i4 from "@angular/common";
6
- import * as i5 from "@angular/router";
7
- import * as i6 from "@angular/cdk/overlay";
8
- import * as i7 from "../../forms/forms.module";
5
+ import * as i4 from "./custom-modal/custom-modal.component";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "@angular/router";
8
+ import * as i7 from "@angular/cdk/overlay";
9
+ import * as i8 from "../../forms/forms.module";
10
+ import * as i9 from "../components.module";
9
11
  export * from './index';
10
12
  export * from './alert/alert.component';
11
13
  export * from './confirm/confirm.component';
12
14
  export * from './prompt/prompt.component';
15
+ export * from './custom-modal/custom-modal.component';
13
16
  export declare class FestoAngularModalsModule {
14
17
  static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularModalsModule, never>;
15
- static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularModalsModule, [typeof i1.AlertComponent, typeof i2.ConfirmComponent, typeof i3.PromptComponent], [typeof i4.CommonModule, typeof i5.RouterModule, typeof i6.OverlayModule, typeof i7.FestoAngularFormsModule], [typeof i1.AlertComponent, typeof i2.ConfirmComponent, typeof i3.PromptComponent]>;
18
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularModalsModule, [typeof i1.AlertComponent, typeof i2.ConfirmComponent, typeof i3.PromptComponent, typeof i4.CustomModalComponent], [typeof i5.CommonModule, typeof i6.RouterModule, typeof i7.OverlayModule, typeof i8.FestoAngularFormsModule, typeof i9.FestoAngularComponentsModule], [typeof i1.AlertComponent, typeof i2.ConfirmComponent, typeof i3.PromptComponent, typeof i4.CustomModalComponent]>;
16
19
  static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularModalsModule>;
17
20
  }
@@ -1,4 +1,5 @@
1
- import { ElementRef, OnChanges, SimpleChanges, OnDestroy } from '@angular/core';
1
+ import { ElementRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
2
+ import { PopoverPosition } from './../popover.models';
2
3
  import { PopoverService } from '../popover.service';
3
4
  import * as i0 from "@angular/core";
4
5
  export interface TooltipOptions {
@@ -9,7 +10,8 @@ export declare class TooltipDirective implements OnChanges, OnDestroy {
9
10
  private elmenetRef;
10
11
  private popoverService;
11
12
  text: string;
12
- isVisible?: boolean;
13
+ isVisible: boolean;
14
+ positions: PopoverPosition[];
13
15
  options: TooltipOptions;
14
16
  private origin;
15
17
  private popoverRef;
@@ -23,5 +25,5 @@ export declare class TooltipDirective implements OnChanges, OnDestroy {
23
25
  private open;
24
26
  private close;
25
27
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
26
- static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[fngTooltip]", never, { "text": "fngTooltip"; "isVisible": "fngTooltipVisible"; "options": "options"; }, {}, never>;
28
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[fngTooltip]", never, { "text": "fngTooltip"; "isVisible": "fngTooltipVisible"; "positions": "fngTooltipPositions"; "options": "options"; }, {}, never>;
27
29
  }
@@ -0,0 +1,10 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SafeHtmlPipe implements PipeTransform {
5
+ protected sanitizer: DomSanitizer;
6
+ constructor(sanitizer: DomSanitizer);
7
+ transform(value: any): SafeHtml;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "safeHtml">;
10
+ }
@@ -1,5 +1,22 @@
1
1
  import { ElementRef, EventEmitter } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
+ export declare class SearchSuggestion {
4
+ /**
5
+ * a html-string. e.g.: '<b> hello </b>'
6
+ */
7
+ template: string;
8
+ /**
9
+ * This Value will be used as new query when the user selects the suggestion.
10
+ */
11
+ value: string;
12
+ /**
13
+ * Creates a basic Suggestion from a string. The first query match is highlighted by bold tags.
14
+ * @param suggestionString The suggested string (should contain the whole query)
15
+ * @param query The current query. This string will be highlighted.
16
+ * @returns a html-string.
17
+ */
18
+ static basicSuggestion(suggestionString: string, query: string): SearchSuggestion;
19
+ }
3
20
  /**
4
21
  * A custom form element for search inputs.
5
22
  */
@@ -36,12 +53,12 @@ export declare class SearchInputComponent {
36
53
  /**
37
54
  * The list of suggestions
38
55
  */
39
- set suggestions(value: string[]);
56
+ set suggestions(value: SearchSuggestion[]);
40
57
  /**
41
58
  * The list of suggestions capped by 10 entries
42
59
  */
43
- get cappedSuggestions(): string[];
44
- innerSuggestions: string[];
60
+ get cappedSuggestions(): SearchSuggestion[];
61
+ innerSuggestions: SearchSuggestion[];
45
62
  hideSuggestionList: boolean;
46
63
  selectedSuggestionIndex: number;
47
64
  keyhandler(event: KeyboardEvent): void;
@@ -49,8 +66,8 @@ export declare class SearchInputComponent {
49
66
  onFocus(): void;
50
67
  onInput(event: any): void;
51
68
  onSearch(event: any): void;
52
- onSuggestionClick(suggestion: string): void;
53
- clearQuerry(): void;
69
+ onSuggestionClick(suggestion: SearchSuggestion): void;
70
+ clearQuery(): void;
54
71
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchInputComponent, never>;
55
72
  static ɵcmp: i0.ɵɵComponentDeclaration<SearchInputComponent, "fng-search-input", never, { "label": "label"; "disabled": "disabled"; "value": "value"; "suggestions": "suggestions"; }, { "fngChange": "fngChange"; "fngSearch": "fngSearch"; }, never, never>;
56
73
  }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class StepHorizontalComponent {
3
+ isActive: boolean;
4
+ title: string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepHorizontalComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepHorizontalComponent, "fng-step-horizontal", never, { "isActive": "isActive"; "title": "title"; }, {}, never, ["*"]>;
7
+ }
@@ -0,0 +1,14 @@
1
+ import { AfterContentInit, EventEmitter, OnChanges, QueryList } from '@angular/core';
2
+ import { StepHorizontalComponent } from './step-horizontal/step-horizontal.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class StepperHorizontalComponent implements AfterContentInit, OnChanges {
5
+ stepComponents: QueryList<StepHorizontalComponent>;
6
+ stepIndex: number;
7
+ stepIndexChange: EventEmitter<number>;
8
+ ngOnChanges(): void;
9
+ updateStepComponents(): void;
10
+ ngAfterContentInit(): void;
11
+ onStepClick(index: number): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepperHorizontalComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepperHorizontalComponent, "fng-stepper-horizontal", never, { "stepIndex": "stepIndex"; }, { "stepIndexChange": "stepIndexChange"; }, ["stepComponents"], ["*"]>;
14
+ }
@@ -0,0 +1,18 @@
1
+ import { AfterViewInit, ElementRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class StepVerticalComponent implements AfterViewInit {
4
+ stepContent?: ElementRef;
5
+ stepContentContainer?: ElementRef;
6
+ index: number;
7
+ title: string;
8
+ isDone: boolean;
9
+ isLastElement: boolean;
10
+ set isActive(value: boolean);
11
+ get isActive(): boolean;
12
+ _isActive: boolean;
13
+ onStepClickCallback: (i: number) => void;
14
+ updateHeight(): void;
15
+ ngAfterViewInit(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepVerticalComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepVerticalComponent, "fng-step-vertical", never, { "index": "index"; "title": "title"; "isDone": "isDone"; "isLastElement": "isLastElement"; "isActive": "isActive"; }, {}, never, ["*"]>;
18
+ }
@@ -0,0 +1,14 @@
1
+ import { AfterContentInit, EventEmitter, OnChanges, QueryList } from '@angular/core';
2
+ import { StepVerticalComponent } from './step-vertical/step-vertical.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class StepperVerticalComponent implements AfterContentInit, OnChanges {
5
+ stepComponents: QueryList<StepVerticalComponent>;
6
+ stepIndex: number;
7
+ stepIndexChange: EventEmitter<number>;
8
+ ngOnChanges(): void;
9
+ updateStepComponents(): void;
10
+ ngAfterContentInit(): void;
11
+ onStepClick(index: number): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepperVerticalComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepperVerticalComponent, "fng-stepper-vertical", never, { "stepIndex": "stepIndex"; }, { "stepIndexChange": "stepIndexChange"; }, ["stepComponents"], ["*"]>;
14
+ }
@@ -5,8 +5,9 @@ import * as i3 from "./content/content.module";
5
5
  import * as i4 from "./forms/forms.module";
6
6
  import * as i5 from "./components/modals/modals.module";
7
7
  import * as i6 from "./components/snackbar/snackbar.module";
8
+ import * as i7 from "./components/image-gallery/image-gallery.module";
8
9
  export declare class FestoAngularModule {
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularModule, never, [typeof i1.FestoAngularLayoutModule, typeof i2.FestoAngularComponentsModule, typeof i3.FestoAngularContentModule, typeof i4.FestoAngularFormsModule, typeof i5.FestoAngularModalsModule, typeof i6.FestoAngularSnackbarModule], [typeof i1.FestoAngularLayoutModule, typeof i2.FestoAngularComponentsModule, typeof i3.FestoAngularContentModule, typeof i4.FestoAngularFormsModule, typeof i5.FestoAngularModalsModule, typeof i6.FestoAngularSnackbarModule]>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularModule, never, [typeof i1.FestoAngularLayoutModule, typeof i2.FestoAngularComponentsModule, typeof i3.FestoAngularContentModule, typeof i4.FestoAngularFormsModule, typeof i5.FestoAngularModalsModule, typeof i6.FestoAngularSnackbarModule, typeof i7.FestoAngularImageGalleryModule], [typeof i1.FestoAngularLayoutModule, typeof i2.FestoAngularComponentsModule, typeof i3.FestoAngularContentModule, typeof i4.FestoAngularFormsModule, typeof i5.FestoAngularModalsModule, typeof i6.FestoAngularSnackbarModule, typeof i7.FestoAngularImageGalleryModule]>;
11
12
  static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularModule>;
12
13
  }
package/package.json CHANGED
@@ -1,30 +1,52 @@
1
1
  {
2
2
  "name": "@festo-ui/angular",
3
- "version": "3.1.0",
3
+ "version": "3.2.1-pre-20220624.2",
4
4
  "author": "Festo UI (styleguide@festo.com)",
5
5
  "license": "apache-2.0",
6
+ "description": "CSS framework and utils to build FESTO web applications",
6
7
  "peerDependencies": {
7
- "@angular/common": "^12.2.0",
8
- "@angular/core": "^12.2.0",
9
- "@angular/animations": "^12.2.0",
10
- "@angular/router": "^12.2.0",
11
- "@angular/forms": "^12.2.0",
12
- "@angular/platform-browser": "^12.2.0",
13
- "@angular/cdk": "^12.1.1",
14
- "rxjs": "^6.5.3 || ^7.0.0",
15
- "@festo-ui/web-essentials": "*"
8
+ "@angular/common": "^13.1.1",
9
+ "@angular/core": "^13.1.1",
10
+ "@angular/animations": "^13.1.1",
11
+ "@angular/router": "^13.1.1",
12
+ "@angular/forms": "^13.1.1",
13
+ "@angular/platform-browser": "^13.1.1",
14
+ "@angular/platform-browser-dynamic": "^13.1.1",
15
+ "@angular/cdk": "^13.1.1",
16
+ "rxjs": "^7.4.0",
17
+ "@festo-ui/web-essentials": "*",
18
+ "swiper": "8.0.7",
19
+ "simplebar": "5.3.6",
20
+ "quill": "1.3.7",
21
+ "flatpickr": "^4.6.9"
16
22
  },
17
23
  "dependencies": {
18
- "flatpickr": "^4.6.6",
19
- "quill": "~1.3.7",
20
- "tslib": "^2.1.0",
21
- "simplebar": "5.3.6"
24
+ "tslib": "^2.1.0"
22
25
  },
23
- "main": "bundles/festo-ui-angular.umd.js",
24
- "module": "fesm2015/festo-ui-angular.js",
25
- "es2015": "fesm2015/festo-ui-angular.js",
26
- "esm2015": "esm2015/festo-ui-angular.js",
27
- "fesm2015": "fesm2015/festo-ui-angular.js",
26
+ "optionalDependencies": {
27
+ "flatpickr": "^4.6.9",
28
+ "quill": "1.3.7",
29
+ "simplebar": "5.3.6",
30
+ "swiper": "8.0.7"
31
+ },
32
+ "module": "fesm2015/festo-ui-angular.mjs",
33
+ "es2020": "fesm2020/festo-ui-angular.mjs",
34
+ "esm2020": "esm2020/festo-ui-angular.mjs",
35
+ "fesm2020": "fesm2020/festo-ui-angular.mjs",
36
+ "fesm2015": "fesm2015/festo-ui-angular.mjs",
28
37
  "typings": "festo-ui-angular.d.ts",
38
+ "exports": {
39
+ "./package.json": {
40
+ "default": "./package.json"
41
+ },
42
+ ".": {
43
+ "types": "./festo-ui-angular.d.ts",
44
+ "esm2020": "./esm2020/festo-ui-angular.mjs",
45
+ "es2020": "./fesm2020/festo-ui-angular.mjs",
46
+ "es2015": "./fesm2015/festo-ui-angular.mjs",
47
+ "node": "./fesm2015/festo-ui-angular.mjs",
48
+ "default": "./fesm2020/festo-ui-angular.mjs"
49
+ }
50
+ },
29
51
  "sideEffects": false
30
52
  }