@ui5/webcomponents-ngx 0.0.1-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (280) hide show
  1. package/README.md +3 -0
  2. package/esm2020/fiori/directives/bar.mjs +36 -0
  3. package/esm2020/fiori/directives/barcode-scanner-dialog.mjs +35 -0
  4. package/esm2020/fiori/directives/dynamic-side-content.mjs +80 -0
  5. package/esm2020/fiori/directives/filter-item-option.mjs +38 -0
  6. package/esm2020/fiori/directives/filter-item.mjs +33 -0
  7. package/esm2020/fiori/directives/flexible-column-layout.mjs +107 -0
  8. package/esm2020/fiori/directives/illustrated-message.mjs +68 -0
  9. package/esm2020/fiori/directives/media-gallery-item.mjs +49 -0
  10. package/esm2020/fiori/directives/media-gallery.mjs +72 -0
  11. package/esm2020/fiori/directives/notification-action.mjs +54 -0
  12. package/esm2020/fiori/directives/notification-list-group-item.mjs +104 -0
  13. package/esm2020/fiori/directives/notification-list-item-base.mjs +85 -0
  14. package/esm2020/fiori/directives/notification-list-item.mjs +99 -0
  15. package/esm2020/fiori/directives/page.mjs +60 -0
  16. package/esm2020/fiori/directives/product-switch-item.mjs +66 -0
  17. package/esm2020/fiori/directives/product-switch.mjs +22 -0
  18. package/esm2020/fiori/directives/shell-bar-item.mjs +50 -0
  19. package/esm2020/fiori/directives/shell-bar.mjs +171 -0
  20. package/esm2020/fiori/directives/side-navigation-item.mjs +62 -0
  21. package/esm2020/fiori/directives/side-navigation-sub-item.mjs +46 -0
  22. package/esm2020/fiori/directives/side-navigation.mjs +40 -0
  23. package/esm2020/fiori/directives/sort-item.mjs +38 -0
  24. package/esm2020/fiori/directives/timeline-item.mjs +66 -0
  25. package/esm2020/fiori/directives/timeline.mjs +38 -0
  26. package/esm2020/fiori/directives/upload-collection-item.mjs +124 -0
  27. package/esm2020/fiori/directives/upload-collection.mjs +75 -0
  28. package/esm2020/fiori/directives/view-settings-dialog.mjs +52 -0
  29. package/esm2020/fiori/directives/wizard-step.mjs +70 -0
  30. package/esm2020/fiori/directives/wizard.mjs +26 -0
  31. package/esm2020/fiori/ui5-fiori.module.mjs +134 -0
  32. package/esm2020/generic-cva.mjs +41 -0
  33. package/esm2020/index.mjs +114 -0
  34. package/esm2020/main/directives/avatar-group.mjs +56 -0
  35. package/esm2020/main/directives/avatar.mjs +81 -0
  36. package/esm2020/main/directives/badge.mjs +33 -0
  37. package/esm2020/main/directives/breadcrumbs-item.mjs +46 -0
  38. package/esm2020/main/directives/breadcrumbs.mjs +42 -0
  39. package/esm2020/main/directives/busy-indicator.mjs +54 -0
  40. package/esm2020/main/directives/button.mjs +98 -0
  41. package/esm2020/main/directives/calendar-date.mjs +30 -0
  42. package/esm2020/main/directives/calendar.mjs +88 -0
  43. package/esm2020/main/directives/card-header.mjs +64 -0
  44. package/esm2020/main/directives/card.mjs +41 -0
  45. package/esm2020/main/directives/carousel.mjs +85 -0
  46. package/esm2020/main/directives/check-box.mjs +154 -0
  47. package/esm2020/main/directives/color-palette-item.mjs +30 -0
  48. package/esm2020/main/directives/color-palette-popover.mjs +67 -0
  49. package/esm2020/main/directives/color-palette.mjs +26 -0
  50. package/esm2020/main/directives/color-picker.mjs +34 -0
  51. package/esm2020/main/directives/combo-box-group-item.mjs +30 -0
  52. package/esm2020/main/directives/combo-box-item.mjs +38 -0
  53. package/esm2020/main/directives/combo-box.mjs +158 -0
  54. package/esm2020/main/directives/custom-list-item.mjs +53 -0
  55. package/esm2020/main/directives/date-picker.mjs +242 -0
  56. package/esm2020/main/directives/date-range-picker.mjs +274 -0
  57. package/esm2020/main/directives/date-time-picker.mjs +242 -0
  58. package/esm2020/main/directives/day-picker.mjs +111 -0
  59. package/esm2020/main/directives/dialog.mjs +160 -0
  60. package/esm2020/main/directives/file-uploader.mjs +141 -0
  61. package/esm2020/main/directives/group-header-list-item.mjs +38 -0
  62. package/esm2020/main/directives/icon.mjs +62 -0
  63. package/esm2020/main/directives/input.mjs +210 -0
  64. package/esm2020/main/directives/label.mjs +54 -0
  65. package/esm2020/main/directives/link.mjs +98 -0
  66. package/esm2020/main/directives/list.mjs +146 -0
  67. package/esm2020/main/directives/menu-item.mjs +70 -0
  68. package/esm2020/main/directives/menu.mjs +40 -0
  69. package/esm2020/main/directives/message-strip.mjs +53 -0
  70. package/esm2020/main/directives/month-picker.mjs +95 -0
  71. package/esm2020/main/directives/multi-combo-box-group-item.mjs +30 -0
  72. package/esm2020/main/directives/multi-combo-box-item.mjs +46 -0
  73. package/esm2020/main/directives/multi-combo-box.mjs +177 -0
  74. package/esm2020/main/directives/multi-input.mjs +227 -0
  75. package/esm2020/main/directives/option.mjs +62 -0
  76. package/esm2020/main/directives/panel.mjs +85 -0
  77. package/esm2020/main/directives/popover.mjs +192 -0
  78. package/esm2020/main/directives/progress-indicator.mjs +62 -0
  79. package/esm2020/main/directives/radio-button.mjs +154 -0
  80. package/esm2020/main/directives/range-slider.mjs +195 -0
  81. package/esm2020/main/directives/rating-indicator.mjs +66 -0
  82. package/esm2020/main/directives/responsive-popover.mjs +192 -0
  83. package/esm2020/main/directives/segmented-button-item.mjs +106 -0
  84. package/esm2020/main/directives/segmented-button.mjs +42 -0
  85. package/esm2020/main/directives/select.mjs +85 -0
  86. package/esm2020/main/directives/slider-base.mjs +135 -0
  87. package/esm2020/main/directives/slider.mjs +183 -0
  88. package/esm2020/main/directives/split-button.mjs +69 -0
  89. package/esm2020/main/directives/standard-list-item.mjs +101 -0
  90. package/esm2020/main/directives/step-input.mjs +133 -0
  91. package/esm2020/main/directives/suggestion-group-item.mjs +30 -0
  92. package/esm2020/main/directives/suggestion-item.mjs +86 -0
  93. package/esm2020/main/directives/switch.mjs +130 -0
  94. package/esm2020/main/directives/tab-container.mjs +96 -0
  95. package/esm2020/main/directives/tab-separator.mjs +25 -0
  96. package/esm2020/main/directives/tab.mjs +76 -0
  97. package/esm2020/main/directives/table-cell.mjs +22 -0
  98. package/esm2020/main/directives/table-column.mjs +46 -0
  99. package/esm2020/main/directives/table-group-row.mjs +22 -0
  100. package/esm2020/main/directives/table-row.mjs +46 -0
  101. package/esm2020/main/directives/table.mjs +126 -0
  102. package/esm2020/main/directives/text-area.mjs +144 -0
  103. package/esm2020/main/directives/time-picker.mjs +143 -0
  104. package/esm2020/main/directives/title.mjs +38 -0
  105. package/esm2020/main/directives/toast.mjs +41 -0
  106. package/esm2020/main/directives/toggle-button.mjs +106 -0
  107. package/esm2020/main/directives/token.mjs +53 -0
  108. package/esm2020/main/directives/tree-item-custom.mjs +115 -0
  109. package/esm2020/main/directives/tree-item.mjs +120 -0
  110. package/esm2020/main/directives/tree.mjs +104 -0
  111. package/esm2020/main/directives/wheel-slider.mjs +62 -0
  112. package/esm2020/main/directives/year-picker.mjs +95 -0
  113. package/esm2020/main/ui5-main.module.mjs +376 -0
  114. package/esm2020/main/ui5-webcomponents-theming.module.mjs +21 -0
  115. package/esm2020/main/ui5-webcomponents-theming.service.mjs +34 -0
  116. package/esm2020/ui5-angular.module.mjs +22 -0
  117. package/esm2020/ui5-webcomponents-ngx.mjs +5 -0
  118. package/fesm2015/ui5-webcomponents-ngx.mjs +9375 -0
  119. package/fesm2015/ui5-webcomponents-ngx.mjs.map +1 -0
  120. package/fesm2020/ui5-webcomponents-ngx.mjs +9368 -0
  121. package/fesm2020/ui5-webcomponents-ngx.mjs.map +1 -0
  122. package/fiori/directives/bar.d.ts +20 -0
  123. package/fiori/directives/barcode-scanner-dialog.d.ts +33 -0
  124. package/fiori/directives/dynamic-side-content.d.ts +49 -0
  125. package/fiori/directives/filter-item-option.d.ts +19 -0
  126. package/fiori/directives/filter-item.d.ts +19 -0
  127. package/fiori/directives/flexible-column-layout.d.ts +63 -0
  128. package/fiori/directives/illustrated-message.d.ts +32 -0
  129. package/fiori/directives/media-gallery-item.d.ts +24 -0
  130. package/fiori/directives/media-gallery.d.ts +43 -0
  131. package/fiori/directives/notification-action.d.ts +25 -0
  132. package/fiori/directives/notification-list-group-item.d.ts +54 -0
  133. package/fiori/directives/notification-list-item-base.d.ts +46 -0
  134. package/fiori/directives/notification-list-item.d.ts +54 -0
  135. package/fiori/directives/page.d.ts +30 -0
  136. package/fiori/directives/product-switch-item.d.ts +37 -0
  137. package/fiori/directives/product-switch.d.ts +13 -0
  138. package/fiori/directives/shell-bar-item.d.ts +33 -0
  139. package/fiori/directives/shell-bar.d.ts +106 -0
  140. package/fiori/directives/side-navigation-item.d.ts +28 -0
  141. package/fiori/directives/side-navigation-sub-item.d.ts +22 -0
  142. package/fiori/directives/side-navigation.d.ts +32 -0
  143. package/fiori/directives/sort-item.d.ts +19 -0
  144. package/fiori/directives/timeline-item.d.ts +37 -0
  145. package/fiori/directives/timeline.d.ts +19 -0
  146. package/fiori/directives/upload-collection-item.d.ts +65 -0
  147. package/fiori/directives/upload-collection.d.ts +49 -0
  148. package/fiori/directives/view-settings-dialog.d.ts +51 -0
  149. package/fiori/directives/wizard-step.d.ts +31 -0
  150. package/fiori/directives/wizard.d.ts +26 -0
  151. package/fiori/ui5-fiori.module.d.ts +36 -0
  152. package/generic-cva.d.ts +27 -0
  153. package/index.d.ts +113 -0
  154. package/main/directives/avatar-group.d.ts +38 -0
  155. package/main/directives/avatar.d.ts +36 -0
  156. package/main/directives/badge.d.ts +19 -0
  157. package/main/directives/breadcrumbs-item.d.ts +22 -0
  158. package/main/directives/breadcrumbs.d.ts +34 -0
  159. package/main/directives/busy-indicator.d.ts +25 -0
  160. package/main/directives/button.d.ts +53 -0
  161. package/main/directives/calendar-date.d.ts +16 -0
  162. package/main/directives/calendar.d.ts +50 -0
  163. package/main/directives/card-header.d.ts +38 -0
  164. package/main/directives/card.d.ts +21 -0
  165. package/main/directives/carousel.d.ts +47 -0
  166. package/main/directives/check-box.d.ts +62 -0
  167. package/main/directives/color-palette-item.d.ts +16 -0
  168. package/main/directives/color-palette-popover.d.ts +42 -0
  169. package/main/directives/color-palette.d.ts +24 -0
  170. package/main/directives/color-picker.d.ts +25 -0
  171. package/main/directives/combo-box-group-item.d.ts +16 -0
  172. package/main/directives/combo-box-item.d.ts +19 -0
  173. package/main/directives/combo-box.d.ts +70 -0
  174. package/main/directives/custom-list-item.d.ts +34 -0
  175. package/main/directives/date-picker.d.ts +115 -0
  176. package/main/directives/date-range-picker.d.ts +127 -0
  177. package/main/directives/date-time-picker.d.ts +115 -0
  178. package/main/directives/day-picker.d.ts +60 -0
  179. package/main/directives/dialog.d.ts +90 -0
  180. package/main/directives/file-uploader.d.ts +60 -0
  181. package/main/directives/group-header-list-item.d.ts +19 -0
  182. package/main/directives/icon.d.ts +28 -0
  183. package/main/directives/input.d.ts +98 -0
  184. package/main/directives/label.d.ts +25 -0
  185. package/main/directives/link.d.ts +57 -0
  186. package/main/directives/list.d.ts +85 -0
  187. package/main/directives/menu-item.d.ts +31 -0
  188. package/main/directives/menu.d.ts +32 -0
  189. package/main/directives/message-strip.d.ts +34 -0
  190. package/main/directives/month-picker.d.ts +54 -0
  191. package/main/directives/multi-combo-box-group-item.d.ts +16 -0
  192. package/main/directives/multi-combo-box-item.d.ts +22 -0
  193. package/main/directives/multi-combo-box.d.ts +78 -0
  194. package/main/directives/multi-input.d.ts +110 -0
  195. package/main/directives/option.d.ts +28 -0
  196. package/main/directives/panel.d.ts +45 -0
  197. package/main/directives/popover.d.ts +102 -0
  198. package/main/directives/progress-indicator.d.ts +28 -0
  199. package/main/directives/radio-button.d.ts +62 -0
  200. package/main/directives/range-slider.d.ts +89 -0
  201. package/main/directives/rating-indicator.d.ts +37 -0
  202. package/main/directives/responsive-popover.d.ts +102 -0
  203. package/main/directives/segmented-button-item.d.ts +52 -0
  204. package/main/directives/segmented-button.d.ts +31 -0
  205. package/main/directives/select.d.ts +48 -0
  206. package/main/directives/slider-base.d.ts +76 -0
  207. package/main/directives/slider.d.ts +86 -0
  208. package/main/directives/split-button.d.ts +39 -0
  209. package/main/directives/standard-list-item.d.ts +52 -0
  210. package/main/directives/step-input.d.ts +63 -0
  211. package/main/directives/suggestion-group-item.d.ts +16 -0
  212. package/main/directives/suggestion-item.d.ts +37 -0
  213. package/main/directives/switch.d.ts +53 -0
  214. package/main/directives/tab-container.d.ts +56 -0
  215. package/main/directives/tab-separator.d.ts +15 -0
  216. package/main/directives/tab.d.ts +36 -0
  217. package/main/directives/table-cell.d.ts +13 -0
  218. package/main/directives/table-column.d.ts +22 -0
  219. package/main/directives/table-group-row.d.ts +13 -0
  220. package/main/directives/table-row.d.ts +22 -0
  221. package/main/directives/table.d.ts +71 -0
  222. package/main/directives/text-area.d.ts +68 -0
  223. package/main/directives/time-picker.d.ts +64 -0
  224. package/main/directives/title.d.ts +19 -0
  225. package/main/directives/toast.d.ts +21 -0
  226. package/main/directives/toggle-button.d.ts +52 -0
  227. package/main/directives/token.d.ts +34 -0
  228. package/main/directives/tree-item-custom.d.ts +59 -0
  229. package/main/directives/tree-item.d.ts +60 -0
  230. package/main/directives/tree.d.ts +74 -0
  231. package/main/directives/wheel-slider.d.ts +28 -0
  232. package/main/directives/year-picker.d.ts +54 -0
  233. package/main/ui5-main.module.d.ts +86 -0
  234. package/main/ui5-webcomponents-theming.module.d.ts +9 -0
  235. package/main/ui5-webcomponents-theming.service.d.ts +16 -0
  236. package/package.json +51 -0
  237. package/schematics/add-dependencies/index.d.ts +3 -0
  238. package/schematics/add-dependencies/index.js +31 -0
  239. package/schematics/add-dependencies/index.js.map +1 -0
  240. package/schematics/add-dependencies/index.ts +24 -0
  241. package/schematics/add-dependencies/schema.json +15 -0
  242. package/schematics/add-styles/index.d.ts +3 -0
  243. package/schematics/add-styles/index.js +38 -0
  244. package/schematics/add-styles/index.js.map +1 -0
  245. package/schematics/add-styles/index.ts +34 -0
  246. package/schematics/add-styles/schema.json +15 -0
  247. package/schematics/add-theming/index.d.ts +5 -0
  248. package/schematics/add-theming/index.js +91 -0
  249. package/schematics/add-theming/index.js.map +1 -0
  250. package/schematics/add-theming/index.ts +116 -0
  251. package/schematics/add-theming/schema.json +15 -0
  252. package/schematics/collection.json +34 -0
  253. package/schematics/ng-add/available-themes.d.ts +4 -0
  254. package/schematics/ng-add/available-themes.js +38 -0
  255. package/schematics/ng-add/available-themes.js.map +1 -0
  256. package/schematics/ng-add/available-themes.ts +34 -0
  257. package/schematics/ng-add/common-css-parts.d.ts +4 -0
  258. package/schematics/ng-add/common-css-parts.js +46 -0
  259. package/schematics/ng-add/common-css-parts.js.map +1 -0
  260. package/schematics/ng-add/common-css-parts.ts +42 -0
  261. package/schematics/ng-add/index.d.ts +4 -0
  262. package/schematics/ng-add/index.js +93 -0
  263. package/schematics/ng-add/index.js.map +1 -0
  264. package/schematics/ng-add/index.ts +92 -0
  265. package/schematics/ng-add/schema.json +16 -0
  266. package/schematics/schema.d.ts +6 -0
  267. package/schematics/schema.js +3 -0
  268. package/schematics/schema.js.map +1 -0
  269. package/schematics/schema.ts +6 -0
  270. package/schematics/types.d.ts +1 -0
  271. package/schematics/utils/package-config.d.ts +5 -0
  272. package/schematics/utils/package-config.js +45 -0
  273. package/schematics/utils/package-config.js.map +1 -0
  274. package/schematics/utils/package-config.ts +55 -0
  275. package/schematics/utils/promt.d.ts +1 -0
  276. package/schematics/utils/promt.js +22 -0
  277. package/schematics/utils/promt.js.map +1 -0
  278. package/schematics/utils/promt.ts +6 -0
  279. package/ui5-angular.module.d.ts +10 -0
  280. package/ui5-webcomponents-ngx-v0.0.1-rc.0.tgz +0 -0
@@ -0,0 +1,54 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/MonthPicker.js';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ interface MonthPickerDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change' | 'navigate'> {
6
+ change: CustomEvent<void>;
7
+ navigate: CustomEvent<void>;
8
+ }
9
+ interface MonthPickerDirectiveElement extends Omit<HTMLElement, 'formatPattern' | 'maxDate' | 'minDate' | 'primaryCalendarType' | 'secondaryCalendarType' | 'selectedDates' | 'change' | 'navigate'> {
10
+ formatPattern: string;
11
+ maxDate: string;
12
+ minDate: string;
13
+ primaryCalendarType: 'Buddhist' | 'Gregorian' | 'Islamic' | 'Japanese' | 'Persian';
14
+ secondaryCalendarType: 'Buddhist' | 'Gregorian' | 'Islamic' | 'Japanese' | 'Persian';
15
+ selectedDates: Array<any>;
16
+ addEventListener<K extends keyof MonthPickerDirectiveEventsMap>(type: K, listener: (this: MonthPickerDirectiveElement, ev: MonthPickerDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
17
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
18
+ removeEventListener<K extends keyof MonthPickerDirectiveEventsMap>(type: K, listener: (this: MonthPickerDirectiveElement, ev: MonthPickerDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
19
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
20
+ _safelyModifyTimestampBy(amount: any, unit: any): any;
21
+ _safelySetTimestamp(timestamp: any): any;
22
+ _hasNextPage(): any;
23
+ _hasPreviousPage(): any;
24
+ _showNextPage(): any;
25
+ _showPreviousPage(): any;
26
+ }
27
+ declare class MonthPickerDirective {
28
+ private elementRef;
29
+ set formatPattern(val: MonthPickerDirectiveElement['formatPattern']);
30
+ get formatPattern(): MonthPickerDirectiveElement['formatPattern'];
31
+ set maxDate(val: MonthPickerDirectiveElement['maxDate']);
32
+ get maxDate(): MonthPickerDirectiveElement['maxDate'];
33
+ set minDate(val: MonthPickerDirectiveElement['minDate']);
34
+ get minDate(): MonthPickerDirectiveElement['minDate'];
35
+ set primaryCalendarType(val: MonthPickerDirectiveElement['primaryCalendarType']);
36
+ get primaryCalendarType(): MonthPickerDirectiveElement['primaryCalendarType'];
37
+ set secondaryCalendarType(val: MonthPickerDirectiveElement['secondaryCalendarType']);
38
+ get secondaryCalendarType(): MonthPickerDirectiveElement['secondaryCalendarType'];
39
+ set selectedDates(val: MonthPickerDirectiveElement['selectedDates']);
40
+ get selectedDates(): MonthPickerDirectiveElement['selectedDates'];
41
+ change: Observable<MonthPickerDirectiveEventsMap['change']>;
42
+ navigate: Observable<MonthPickerDirectiveEventsMap['navigate']>;
43
+ constructor(elementRef: ElementRef<MonthPickerDirectiveElement>);
44
+ get element(): typeof this.elementRef.nativeElement;
45
+ _safelyModifyTimestampBy(amount: any, unit: any): any;
46
+ _safelySetTimestamp(timestamp: any): any;
47
+ _hasNextPage(): any;
48
+ _hasPreviousPage(): any;
49
+ _showNextPage(): any;
50
+ _showPreviousPage(): any;
51
+ static ɵfac: i0.ɵɵFactoryDeclaration<MonthPickerDirective, never>;
52
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MonthPickerDirective, "ui5-monthpicker", ["ui5Monthpicker"], { "formatPattern": "formatPattern"; "maxDate": "maxDate"; "minDate": "minDate"; "primaryCalendarType": "primaryCalendarType"; "secondaryCalendarType": "secondaryCalendarType"; "selectedDates": "selectedDates"; }, { "change": "change"; "navigate": "navigate"; }, never, never, false, never>;
53
+ }
54
+ export { MonthPickerDirective, MonthPickerDirectiveEventsMap, MonthPickerDirectiveElement, };
@@ -0,0 +1,16 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/MultiComboBoxGroupItem.js';
3
+ import * as i0 from "@angular/core";
4
+ interface MultiComboBoxGroupItemDirectiveElement extends Omit<HTMLElement, 'text'> {
5
+ text: string;
6
+ }
7
+ declare class MultiComboBoxGroupItemDirective {
8
+ private elementRef;
9
+ set text(val: MultiComboBoxGroupItemDirectiveElement['text']);
10
+ get text(): MultiComboBoxGroupItemDirectiveElement['text'];
11
+ constructor(elementRef: ElementRef<MultiComboBoxGroupItemDirectiveElement>);
12
+ get element(): typeof this.elementRef.nativeElement;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiComboBoxGroupItemDirective, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MultiComboBoxGroupItemDirective, "ui5-mcb-group-item", ["ui5McbGroupItem"], { "text": "text"; }, {}, never, never, false, never>;
15
+ }
16
+ export { MultiComboBoxGroupItemDirective, MultiComboBoxGroupItemDirectiveElement, };
@@ -0,0 +1,22 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/MultiComboBoxItem.js';
3
+ import * as i0 from "@angular/core";
4
+ interface MultiComboBoxItemDirectiveElement extends Omit<HTMLElement, 'additionalText' | 'text' | 'selected'> {
5
+ additionalText: string;
6
+ text: string;
7
+ selected: boolean;
8
+ }
9
+ declare class MultiComboBoxItemDirective {
10
+ private elementRef;
11
+ set additionalText(val: MultiComboBoxItemDirectiveElement['additionalText']);
12
+ get additionalText(): MultiComboBoxItemDirectiveElement['additionalText'];
13
+ set text(val: MultiComboBoxItemDirectiveElement['text']);
14
+ get text(): MultiComboBoxItemDirectiveElement['text'];
15
+ set selected(val: MultiComboBoxItemDirectiveElement['selected']);
16
+ get selected(): MultiComboBoxItemDirectiveElement['selected'];
17
+ constructor(elementRef: ElementRef<MultiComboBoxItemDirectiveElement>);
18
+ get element(): typeof this.elementRef.nativeElement;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiComboBoxItemDirective, never>;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MultiComboBoxItemDirective, "ui5-mcb-item", ["ui5McbItem"], { "additionalText": "additionalText"; "text": "text"; "selected": "selected"; }, {}, never, never, false, never>;
21
+ }
22
+ export { MultiComboBoxItemDirective, MultiComboBoxItemDirectiveElement };
@@ -0,0 +1,78 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/MultiComboBox.js';
3
+ import { Observable } from 'rxjs';
4
+ import { GenericControlValueAccessor } from '../../generic-cva';
5
+ import { IconDirective } from './icon';
6
+ import * as i0 from "@angular/core";
7
+ interface MultiComboBoxDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change' | 'input' | 'openChange' | 'selectionChange'> {
8
+ change: CustomEvent<void>;
9
+ input: CustomEvent<void>;
10
+ openChange: CustomEvent<void>;
11
+ selectionChange: CustomEvent<{
12
+ items: Array<any>;
13
+ }>;
14
+ }
15
+ interface MultiComboBoxDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'accessibleNameRef' | 'allowCustomValues' | 'disabled' | 'filter' | 'noTypeahead' | 'open' | 'placeholder' | 'readonly' | 'required' | 'value' | 'valueState' | 'change' | 'input' | 'openChange' | 'selectionChange' | 'icon' | 'valueStateMessage'> {
16
+ accessibleName: string;
17
+ accessibleNameRef: string;
18
+ allowCustomValues: boolean;
19
+ disabled: boolean;
20
+ filter: string;
21
+ noTypeahead: boolean;
22
+ open: boolean;
23
+ placeholder: string;
24
+ readonly: boolean;
25
+ required: boolean;
26
+ value: string;
27
+ valueState: 'Error' | 'Information' | 'None' | 'Success' | 'Warning';
28
+ icon: IconDirective['element'];
29
+ valueStateMessage: Array<HTMLElement>;
30
+ addEventListener<K extends keyof MultiComboBoxDirectiveEventsMap>(type: K, listener: (this: MultiComboBoxDirectiveElement, ev: MultiComboBoxDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
31
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
32
+ removeEventListener<K extends keyof MultiComboBoxDirectiveEventsMap>(type: K, listener: (this: MultiComboBoxDirectiveElement, ev: MultiComboBoxDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
33
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
34
+ }
35
+ declare class MultiComboBoxDirective {
36
+ private elementRef;
37
+ set accessibleName(val: MultiComboBoxDirectiveElement['accessibleName']);
38
+ get accessibleName(): MultiComboBoxDirectiveElement['accessibleName'];
39
+ set accessibleNameRef(val: MultiComboBoxDirectiveElement['accessibleNameRef']);
40
+ get accessibleNameRef(): MultiComboBoxDirectiveElement['accessibleNameRef'];
41
+ set allowCustomValues(val: MultiComboBoxDirectiveElement['allowCustomValues']);
42
+ get allowCustomValues(): MultiComboBoxDirectiveElement['allowCustomValues'];
43
+ set disabled(val: MultiComboBoxDirectiveElement['disabled']);
44
+ get disabled(): MultiComboBoxDirectiveElement['disabled'];
45
+ set filter(val: MultiComboBoxDirectiveElement['filter']);
46
+ get filter(): MultiComboBoxDirectiveElement['filter'];
47
+ set noTypeahead(val: MultiComboBoxDirectiveElement['noTypeahead']);
48
+ get noTypeahead(): MultiComboBoxDirectiveElement['noTypeahead'];
49
+ set open(val: MultiComboBoxDirectiveElement['open']);
50
+ get open(): MultiComboBoxDirectiveElement['open'];
51
+ set placeholder(val: MultiComboBoxDirectiveElement['placeholder']);
52
+ get placeholder(): MultiComboBoxDirectiveElement['placeholder'];
53
+ set readonly(val: MultiComboBoxDirectiveElement['readonly']);
54
+ get readonly(): MultiComboBoxDirectiveElement['readonly'];
55
+ set required(val: MultiComboBoxDirectiveElement['required']);
56
+ get required(): MultiComboBoxDirectiveElement['required'];
57
+ set value(val: MultiComboBoxDirectiveElement['value']);
58
+ get value(): MultiComboBoxDirectiveElement['value'];
59
+ set valueState(val: MultiComboBoxDirectiveElement['valueState']);
60
+ get valueState(): MultiComboBoxDirectiveElement['valueState'];
61
+ change: Observable<MultiComboBoxDirectiveEventsMap['change']>;
62
+ input: Observable<MultiComboBoxDirectiveEventsMap['input']>;
63
+ openChange: Observable<MultiComboBoxDirectiveEventsMap['openChange']>;
64
+ selectionChange: Observable<MultiComboBoxDirectiveEventsMap['selectionChange']>;
65
+ constructor(elementRef: ElementRef<MultiComboBoxDirectiveElement>);
66
+ get element(): typeof this.elementRef.nativeElement;
67
+ get icon(): IconDirective['element'];
68
+ get valueStateMessage(): Array<HTMLElement>;
69
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiComboBoxDirective, never>;
70
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MultiComboBoxDirective, "ui5-multi-combobox", ["ui5MultiCombobox"], { "accessibleName": "accessibleName"; "accessibleNameRef": "accessibleNameRef"; "allowCustomValues": "allowCustomValues"; "disabled": "disabled"; "filter": "filter"; "noTypeahead": "noTypeahead"; "open": "open"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "value": "value"; "valueState": "valueState"; }, { "change": "change"; "input": "input"; "openChange": "openChange"; "selectionChange": "selectionChange"; }, never, never, false, never>;
71
+ }
72
+ declare class MultiComboBoxDirectiveCva extends GenericControlValueAccessor {
73
+ private elementRef;
74
+ constructor(elementRef: ElementRef<MultiComboBoxDirective['element']>);
75
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiComboBoxDirectiveCva, never>;
76
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MultiComboBoxDirectiveCva, "ui5-multi-combobox", never, {}, {}, never, never, false, never>;
77
+ }
78
+ export { MultiComboBoxDirective, MultiComboBoxDirectiveCva, MultiComboBoxDirectiveEventsMap, MultiComboBoxDirectiveElement, };
@@ -0,0 +1,110 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/MultiInput.js';
3
+ import { Observable } from 'rxjs';
4
+ import { GenericControlValueAccessor } from '../../generic-cva';
5
+ import { SuggestionGroupItemDirective } from './suggestion-group-item';
6
+ import { SuggestionItemDirective } from './suggestion-item';
7
+ import { IconDirective } from './icon';
8
+ import { TokenDirective } from './token';
9
+ import * as i0 from "@angular/core";
10
+ interface MultiInputDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change' | 'input' | 'suggestionItemPreview' | 'suggestionItemSelect' | 'tokenDelete' | 'valueHelpTrigger'> {
11
+ change: CustomEvent<void>;
12
+ input: CustomEvent<void>;
13
+ suggestionItemPreview: CustomEvent<{
14
+ item: HTMLElement;
15
+ targetRef: HTMLElement;
16
+ }>;
17
+ suggestionItemSelect: CustomEvent<{
18
+ item: HTMLElement;
19
+ }>;
20
+ tokenDelete: CustomEvent<{
21
+ token: HTMLElement;
22
+ }>;
23
+ valueHelpTrigger: CustomEvent<void>;
24
+ }
25
+ interface MultiInputDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'accessibleNameRef' | 'disabled' | 'maxlength' | 'name' | 'noTypeahead' | 'placeholder' | 'previewItem' | 'readonly' | 'required' | 'showClearIcon' | 'showSuggestions' | 'type' | 'value' | 'valueState' | 'showValueHelpIcon' | 'change' | 'input' | 'suggestionItemPreview' | 'suggestionItemSelect' | 'tokenDelete' | 'valueHelpTrigger' | 'icon' | 'valueStateMessage' | 'tokens'> {
26
+ accessibleName: string;
27
+ accessibleNameRef: string;
28
+ disabled: boolean;
29
+ maxlength: any;
30
+ name: string;
31
+ noTypeahead: boolean;
32
+ placeholder: string;
33
+ previewItem: SuggestionGroupItemDirective['element'] | SuggestionItemDirective['element'];
34
+ readonly: boolean;
35
+ required: boolean;
36
+ showClearIcon: boolean;
37
+ showSuggestions: boolean;
38
+ type: 'Email' | 'Number' | 'Password' | 'Tel' | 'Text' | 'URL';
39
+ value: string;
40
+ valueState: 'Error' | 'Information' | 'None' | 'Success' | 'Warning';
41
+ showValueHelpIcon: boolean;
42
+ icon: Array<IconDirective['element']>;
43
+ valueStateMessage: Array<HTMLElement>;
44
+ tokens: Array<TokenDirective['element']>;
45
+ addEventListener<K extends keyof MultiInputDirectiveEventsMap>(type: K, listener: (this: MultiInputDirectiveElement, ev: MultiInputDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
46
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
47
+ removeEventListener<K extends keyof MultiInputDirectiveEventsMap>(type: K, listener: (this: MultiInputDirectiveElement, ev: MultiInputDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
48
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
49
+ getCaretPosition(): any;
50
+ openPicker(): any;
51
+ setCaretPosition(pos: any): any;
52
+ }
53
+ declare class MultiInputDirective {
54
+ private elementRef;
55
+ set accessibleName(val: MultiInputDirectiveElement['accessibleName']);
56
+ get accessibleName(): MultiInputDirectiveElement['accessibleName'];
57
+ set accessibleNameRef(val: MultiInputDirectiveElement['accessibleNameRef']);
58
+ get accessibleNameRef(): MultiInputDirectiveElement['accessibleNameRef'];
59
+ set disabled(val: MultiInputDirectiveElement['disabled']);
60
+ get disabled(): MultiInputDirectiveElement['disabled'];
61
+ set maxlength(val: MultiInputDirectiveElement['maxlength']);
62
+ get maxlength(): MultiInputDirectiveElement['maxlength'];
63
+ set name(val: MultiInputDirectiveElement['name']);
64
+ get name(): MultiInputDirectiveElement['name'];
65
+ set noTypeahead(val: MultiInputDirectiveElement['noTypeahead']);
66
+ get noTypeahead(): MultiInputDirectiveElement['noTypeahead'];
67
+ set placeholder(val: MultiInputDirectiveElement['placeholder']);
68
+ get placeholder(): MultiInputDirectiveElement['placeholder'];
69
+ set previewItem(val: MultiInputDirectiveElement['previewItem']);
70
+ get previewItem(): MultiInputDirectiveElement['previewItem'];
71
+ set readonly(val: MultiInputDirectiveElement['readonly']);
72
+ get readonly(): MultiInputDirectiveElement['readonly'];
73
+ set required(val: MultiInputDirectiveElement['required']);
74
+ get required(): MultiInputDirectiveElement['required'];
75
+ set showClearIcon(val: MultiInputDirectiveElement['showClearIcon']);
76
+ get showClearIcon(): MultiInputDirectiveElement['showClearIcon'];
77
+ set showSuggestions(val: MultiInputDirectiveElement['showSuggestions']);
78
+ get showSuggestions(): MultiInputDirectiveElement['showSuggestions'];
79
+ set type(val: MultiInputDirectiveElement['type']);
80
+ get type(): MultiInputDirectiveElement['type'];
81
+ set value(val: MultiInputDirectiveElement['value']);
82
+ get value(): MultiInputDirectiveElement['value'];
83
+ set valueState(val: MultiInputDirectiveElement['valueState']);
84
+ get valueState(): MultiInputDirectiveElement['valueState'];
85
+ set showValueHelpIcon(val: MultiInputDirectiveElement['showValueHelpIcon']);
86
+ get showValueHelpIcon(): MultiInputDirectiveElement['showValueHelpIcon'];
87
+ change: Observable<MultiInputDirectiveEventsMap['change']>;
88
+ input: Observable<MultiInputDirectiveEventsMap['input']>;
89
+ suggestionItemPreview: Observable<MultiInputDirectiveEventsMap['suggestionItemPreview']>;
90
+ suggestionItemSelect: Observable<MultiInputDirectiveEventsMap['suggestionItemSelect']>;
91
+ tokenDelete: Observable<MultiInputDirectiveEventsMap['tokenDelete']>;
92
+ valueHelpTrigger: Observable<MultiInputDirectiveEventsMap['valueHelpTrigger']>;
93
+ constructor(elementRef: ElementRef<MultiInputDirectiveElement>);
94
+ get element(): typeof this.elementRef.nativeElement;
95
+ get icon(): Array<IconDirective['element']>;
96
+ get valueStateMessage(): Array<HTMLElement>;
97
+ get tokens(): Array<TokenDirective['element']>;
98
+ getCaretPosition(): any;
99
+ openPicker(): any;
100
+ setCaretPosition(pos: any): any;
101
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiInputDirective, never>;
102
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MultiInputDirective, "ui5-multi-input", ["ui5MultiInput"], { "accessibleName": "accessibleName"; "accessibleNameRef": "accessibleNameRef"; "disabled": "disabled"; "maxlength": "maxlength"; "name": "name"; "noTypeahead": "noTypeahead"; "placeholder": "placeholder"; "previewItem": "previewItem"; "readonly": "readonly"; "required": "required"; "showClearIcon": "showClearIcon"; "showSuggestions": "showSuggestions"; "type": "type"; "value": "value"; "valueState": "valueState"; "showValueHelpIcon": "showValueHelpIcon"; }, { "change": "change"; "input": "input"; "suggestionItemPreview": "suggestionItemPreview"; "suggestionItemSelect": "suggestionItemSelect"; "tokenDelete": "tokenDelete"; "valueHelpTrigger": "valueHelpTrigger"; }, never, never, false, never>;
103
+ }
104
+ declare class MultiInputDirectiveCva extends GenericControlValueAccessor {
105
+ private elementRef;
106
+ constructor(elementRef: ElementRef<MultiInputDirective['element']>);
107
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiInputDirectiveCva, never>;
108
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MultiInputDirectiveCva, "ui5-multi-input", never, {}, {}, never, never, false, never>;
109
+ }
110
+ export { MultiInputDirective, MultiInputDirectiveCva, MultiInputDirectiveEventsMap, MultiInputDirectiveElement, };
@@ -0,0 +1,28 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/Option.js';
3
+ import * as i0 from "@angular/core";
4
+ interface OptionDirectiveElement extends Omit<HTMLElement, 'additionalText' | 'disabled' | 'icon' | 'selected' | 'value'> {
5
+ additionalText: string;
6
+ disabled: boolean;
7
+ icon: string;
8
+ selected: boolean;
9
+ value: string;
10
+ }
11
+ declare class OptionDirective {
12
+ private elementRef;
13
+ set additionalText(val: OptionDirectiveElement['additionalText']);
14
+ get additionalText(): OptionDirectiveElement['additionalText'];
15
+ set disabled(val: OptionDirectiveElement['disabled']);
16
+ get disabled(): OptionDirectiveElement['disabled'];
17
+ set icon(val: OptionDirectiveElement['icon']);
18
+ get icon(): OptionDirectiveElement['icon'];
19
+ set selected(val: OptionDirectiveElement['selected']);
20
+ get selected(): OptionDirectiveElement['selected'];
21
+ set value(val: OptionDirectiveElement['value']);
22
+ get value(): OptionDirectiveElement['value'];
23
+ constructor(elementRef: ElementRef<OptionDirectiveElement>);
24
+ get element(): typeof this.elementRef.nativeElement;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<OptionDirective, never>;
26
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OptionDirective, "ui5-option", ["ui5Option"], { "additionalText": "additionalText"; "disabled": "disabled"; "icon": "icon"; "selected": "selected"; "value": "value"; }, {}, never, never, false, never>;
27
+ }
28
+ export { OptionDirective, OptionDirectiveElement };
@@ -0,0 +1,45 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/Panel.js';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ interface PanelDirectiveEventsMap extends Omit<HTMLElementEventMap, 'toggle'> {
6
+ toggle: CustomEvent<void>;
7
+ }
8
+ interface PanelDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'accessibleRole' | 'collapsed' | 'fixed' | 'headerLevel' | 'headerText' | 'noAnimation' | 'toggle' | 'header'> {
9
+ accessibleName: string;
10
+ accessibleRole: 'Complementary' | 'Form' | 'Region';
11
+ collapsed: boolean;
12
+ fixed: boolean;
13
+ headerLevel: 'H1' | 'H2' | 'H3' | 'H4' | 'H5' | 'H6';
14
+ headerText: string;
15
+ noAnimation: boolean;
16
+ header: Array<HTMLElement>;
17
+ addEventListener<K extends keyof PanelDirectiveEventsMap>(type: K, listener: (this: PanelDirectiveElement, ev: PanelDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
18
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
19
+ removeEventListener<K extends keyof PanelDirectiveEventsMap>(type: K, listener: (this: PanelDirectiveElement, ev: PanelDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
20
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
21
+ }
22
+ declare class PanelDirective {
23
+ private elementRef;
24
+ set accessibleName(val: PanelDirectiveElement['accessibleName']);
25
+ get accessibleName(): PanelDirectiveElement['accessibleName'];
26
+ set accessibleRole(val: PanelDirectiveElement['accessibleRole']);
27
+ get accessibleRole(): PanelDirectiveElement['accessibleRole'];
28
+ set collapsed(val: PanelDirectiveElement['collapsed']);
29
+ get collapsed(): PanelDirectiveElement['collapsed'];
30
+ set fixed(val: PanelDirectiveElement['fixed']);
31
+ get fixed(): PanelDirectiveElement['fixed'];
32
+ set headerLevel(val: PanelDirectiveElement['headerLevel']);
33
+ get headerLevel(): PanelDirectiveElement['headerLevel'];
34
+ set headerText(val: PanelDirectiveElement['headerText']);
35
+ get headerText(): PanelDirectiveElement['headerText'];
36
+ set noAnimation(val: PanelDirectiveElement['noAnimation']);
37
+ get noAnimation(): PanelDirectiveElement['noAnimation'];
38
+ toggle: Observable<PanelDirectiveEventsMap['toggle']>;
39
+ constructor(elementRef: ElementRef<PanelDirectiveElement>);
40
+ get element(): typeof this.elementRef.nativeElement;
41
+ get header(): Array<HTMLElement>;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<PanelDirective, never>;
43
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PanelDirective, "ui5-panel", ["ui5Panel"], { "accessibleName": "accessibleName"; "accessibleRole": "accessibleRole"; "collapsed": "collapsed"; "fixed": "fixed"; "headerLevel": "headerLevel"; "headerText": "headerText"; "noAnimation": "noAnimation"; }, { "toggle": "toggle"; }, never, never, false, never>;
44
+ }
45
+ export { PanelDirective, PanelDirectiveEventsMap, PanelDirectiveElement };
@@ -0,0 +1,102 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/Popover.js';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ interface PopoverDirectiveEventsMap extends Omit<HTMLElementEventMap, 'afterClose' | 'afterOpen' | 'beforeClose' | 'beforeOpen'> {
6
+ afterClose: CustomEvent<void>;
7
+ afterOpen: CustomEvent<void>;
8
+ beforeClose: CustomEvent<{
9
+ escPressed: boolean;
10
+ }>;
11
+ beforeOpen: CustomEvent<void>;
12
+ }
13
+ interface PopoverDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'accessibleNameRef' | 'initialFocus' | 'open' | 'preventFocusRestore' | 'allowTargetOverlap' | 'headerText' | 'hideArrow' | 'hideBackdrop' | 'horizontalAlign' | 'modal' | 'opener' | 'placementType' | 'verticalAlign' | 'afterClose' | 'afterOpen' | 'beforeClose' | 'beforeOpen' | 'footer' | 'header'> {
14
+ accessibleName: string;
15
+ accessibleNameRef: string;
16
+ initialFocus: string;
17
+ open: boolean;
18
+ preventFocusRestore: boolean;
19
+ allowTargetOverlap: boolean;
20
+ headerText: string;
21
+ hideArrow: boolean;
22
+ hideBackdrop: boolean;
23
+ horizontalAlign: 'Center' | 'Left' | 'Right' | 'Stretch';
24
+ modal: boolean;
25
+ opener: any;
26
+ placementType: 'Bottom' | 'Left' | 'Right' | 'Top';
27
+ verticalAlign: 'Bottom' | 'Center' | 'Stretch' | 'Top';
28
+ footer: Array<HTMLElement>;
29
+ header: Array<HTMLElement>;
30
+ addEventListener<K extends keyof PopoverDirectiveEventsMap>(type: K, listener: (this: PopoverDirectiveElement, ev: PopoverDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
31
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
32
+ removeEventListener<K extends keyof PopoverDirectiveEventsMap>(type: K, listener: (this: PopoverDirectiveElement, ev: PopoverDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
33
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
34
+ _addOpenedPopup(): any;
35
+ _open(): any;
36
+ _removeOpenedPopup(): any;
37
+ _show(): any;
38
+ applyFocus(): any;
39
+ applyInitialFocus(): any;
40
+ blockPageScrolling(): any;
41
+ close(): any;
42
+ hide(): any;
43
+ isOpen(): boolean;
44
+ resetFocus(): any;
45
+ unblockPageScrolling(): any;
46
+ showAt(opener: HTMLElement, preventInitialFocus: boolean): any;
47
+ }
48
+ declare class PopoverDirective {
49
+ private elementRef;
50
+ set accessibleName(val: PopoverDirectiveElement['accessibleName']);
51
+ get accessibleName(): PopoverDirectiveElement['accessibleName'];
52
+ set accessibleNameRef(val: PopoverDirectiveElement['accessibleNameRef']);
53
+ get accessibleNameRef(): PopoverDirectiveElement['accessibleNameRef'];
54
+ set initialFocus(val: PopoverDirectiveElement['initialFocus']);
55
+ get initialFocus(): PopoverDirectiveElement['initialFocus'];
56
+ set open(val: PopoverDirectiveElement['open']);
57
+ get open(): PopoverDirectiveElement['open'];
58
+ set preventFocusRestore(val: PopoverDirectiveElement['preventFocusRestore']);
59
+ get preventFocusRestore(): PopoverDirectiveElement['preventFocusRestore'];
60
+ set allowTargetOverlap(val: PopoverDirectiveElement['allowTargetOverlap']);
61
+ get allowTargetOverlap(): PopoverDirectiveElement['allowTargetOverlap'];
62
+ set headerText(val: PopoverDirectiveElement['headerText']);
63
+ get headerText(): PopoverDirectiveElement['headerText'];
64
+ set hideArrow(val: PopoverDirectiveElement['hideArrow']);
65
+ get hideArrow(): PopoverDirectiveElement['hideArrow'];
66
+ set hideBackdrop(val: PopoverDirectiveElement['hideBackdrop']);
67
+ get hideBackdrop(): PopoverDirectiveElement['hideBackdrop'];
68
+ set horizontalAlign(val: PopoverDirectiveElement['horizontalAlign']);
69
+ get horizontalAlign(): PopoverDirectiveElement['horizontalAlign'];
70
+ set modal(val: PopoverDirectiveElement['modal']);
71
+ get modal(): PopoverDirectiveElement['modal'];
72
+ set opener(val: PopoverDirectiveElement['opener']);
73
+ get opener(): PopoverDirectiveElement['opener'];
74
+ set placementType(val: PopoverDirectiveElement['placementType']);
75
+ get placementType(): PopoverDirectiveElement['placementType'];
76
+ set verticalAlign(val: PopoverDirectiveElement['verticalAlign']);
77
+ get verticalAlign(): PopoverDirectiveElement['verticalAlign'];
78
+ afterClose: Observable<PopoverDirectiveEventsMap['afterClose']>;
79
+ afterOpen: Observable<PopoverDirectiveEventsMap['afterOpen']>;
80
+ beforeClose: Observable<PopoverDirectiveEventsMap['beforeClose']>;
81
+ beforeOpen: Observable<PopoverDirectiveEventsMap['beforeOpen']>;
82
+ constructor(elementRef: ElementRef<PopoverDirectiveElement>);
83
+ get element(): typeof this.elementRef.nativeElement;
84
+ get footer(): Array<HTMLElement>;
85
+ get header(): Array<HTMLElement>;
86
+ _addOpenedPopup(): any;
87
+ _open(): any;
88
+ _removeOpenedPopup(): any;
89
+ _show(): any;
90
+ applyFocus(): any;
91
+ applyInitialFocus(): any;
92
+ blockPageScrolling(): any;
93
+ close(): any;
94
+ hide(): any;
95
+ isOpen(): boolean;
96
+ resetFocus(): any;
97
+ unblockPageScrolling(): any;
98
+ showAt(opener: HTMLElement, preventInitialFocus: boolean): any;
99
+ static ɵfac: i0.ɵɵFactoryDeclaration<PopoverDirective, never>;
100
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverDirective, "ui5-popover", ["ui5Popover"], { "accessibleName": "accessibleName"; "accessibleNameRef": "accessibleNameRef"; "initialFocus": "initialFocus"; "open": "open"; "preventFocusRestore": "preventFocusRestore"; "allowTargetOverlap": "allowTargetOverlap"; "headerText": "headerText"; "hideArrow": "hideArrow"; "hideBackdrop": "hideBackdrop"; "horizontalAlign": "horizontalAlign"; "modal": "modal"; "opener": "opener"; "placementType": "placementType"; "verticalAlign": "verticalAlign"; }, { "afterClose": "afterClose"; "afterOpen": "afterOpen"; "beforeClose": "beforeClose"; "beforeOpen": "beforeOpen"; }, never, never, false, never>;
101
+ }
102
+ export { PopoverDirective, PopoverDirectiveEventsMap, PopoverDirectiveElement };
@@ -0,0 +1,28 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/ProgressIndicator.js';
3
+ import * as i0 from "@angular/core";
4
+ interface ProgressIndicatorDirectiveElement extends Omit<HTMLElement, 'disabled' | 'displayValue' | 'hideValue' | 'value' | 'valueState'> {
5
+ disabled: boolean;
6
+ displayValue: string;
7
+ hideValue: boolean;
8
+ value: any;
9
+ valueState: 'Error' | 'Information' | 'None' | 'Success' | 'Warning';
10
+ }
11
+ declare class ProgressIndicatorDirective {
12
+ private elementRef;
13
+ set disabled(val: ProgressIndicatorDirectiveElement['disabled']);
14
+ get disabled(): ProgressIndicatorDirectiveElement['disabled'];
15
+ set displayValue(val: ProgressIndicatorDirectiveElement['displayValue']);
16
+ get displayValue(): ProgressIndicatorDirectiveElement['displayValue'];
17
+ set hideValue(val: ProgressIndicatorDirectiveElement['hideValue']);
18
+ get hideValue(): ProgressIndicatorDirectiveElement['hideValue'];
19
+ set value(val: ProgressIndicatorDirectiveElement['value']);
20
+ get value(): ProgressIndicatorDirectiveElement['value'];
21
+ set valueState(val: ProgressIndicatorDirectiveElement['valueState']);
22
+ get valueState(): ProgressIndicatorDirectiveElement['valueState'];
23
+ constructor(elementRef: ElementRef<ProgressIndicatorDirectiveElement>);
24
+ get element(): typeof this.elementRef.nativeElement;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressIndicatorDirective, never>;
26
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ProgressIndicatorDirective, "ui5-progress-indicator", ["ui5ProgressIndicator"], { "disabled": "disabled"; "displayValue": "displayValue"; "hideValue": "hideValue"; "value": "value"; "valueState": "valueState"; }, {}, never, never, false, never>;
27
+ }
28
+ export { ProgressIndicatorDirective, ProgressIndicatorDirectiveElement };
@@ -0,0 +1,62 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/RadioButton.js';
3
+ import { Observable } from 'rxjs';
4
+ import { GenericControlValueAccessor } from '../../generic-cva';
5
+ import * as i0 from "@angular/core";
6
+ interface RadioButtonDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change'> {
7
+ change: CustomEvent<void>;
8
+ }
9
+ interface RadioButtonDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'accessibleNameRef' | 'checked' | 'disabled' | 'name' | 'readonly' | 'required' | 'text' | 'value' | 'valueState' | 'wrappingType' | 'change'> {
10
+ accessibleName: string;
11
+ accessibleNameRef: string;
12
+ checked: boolean;
13
+ disabled: boolean;
14
+ name: string;
15
+ readonly: boolean;
16
+ required: boolean;
17
+ text: string;
18
+ value: string;
19
+ valueState: 'Error' | 'Information' | 'None' | 'Success' | 'Warning';
20
+ wrappingType: 'None' | 'Normal';
21
+ addEventListener<K extends keyof RadioButtonDirectiveEventsMap>(type: K, listener: (this: RadioButtonDirectiveElement, ev: RadioButtonDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
22
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
23
+ removeEventListener<K extends keyof RadioButtonDirectiveEventsMap>(type: K, listener: (this: RadioButtonDirectiveElement, ev: RadioButtonDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
24
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
25
+ }
26
+ declare class RadioButtonDirective {
27
+ private elementRef;
28
+ set accessibleName(val: RadioButtonDirectiveElement['accessibleName']);
29
+ get accessibleName(): RadioButtonDirectiveElement['accessibleName'];
30
+ set accessibleNameRef(val: RadioButtonDirectiveElement['accessibleNameRef']);
31
+ get accessibleNameRef(): RadioButtonDirectiveElement['accessibleNameRef'];
32
+ set checked(val: RadioButtonDirectiveElement['checked']);
33
+ get checked(): RadioButtonDirectiveElement['checked'];
34
+ set disabled(val: RadioButtonDirectiveElement['disabled']);
35
+ get disabled(): RadioButtonDirectiveElement['disabled'];
36
+ set name(val: RadioButtonDirectiveElement['name']);
37
+ get name(): RadioButtonDirectiveElement['name'];
38
+ set readonly(val: RadioButtonDirectiveElement['readonly']);
39
+ get readonly(): RadioButtonDirectiveElement['readonly'];
40
+ set required(val: RadioButtonDirectiveElement['required']);
41
+ get required(): RadioButtonDirectiveElement['required'];
42
+ set text(val: RadioButtonDirectiveElement['text']);
43
+ get text(): RadioButtonDirectiveElement['text'];
44
+ set value(val: RadioButtonDirectiveElement['value']);
45
+ get value(): RadioButtonDirectiveElement['value'];
46
+ set valueState(val: RadioButtonDirectiveElement['valueState']);
47
+ get valueState(): RadioButtonDirectiveElement['valueState'];
48
+ set wrappingType(val: RadioButtonDirectiveElement['wrappingType']);
49
+ get wrappingType(): RadioButtonDirectiveElement['wrappingType'];
50
+ change: Observable<RadioButtonDirectiveEventsMap['change']>;
51
+ constructor(elementRef: ElementRef<RadioButtonDirectiveElement>);
52
+ get element(): typeof this.elementRef.nativeElement;
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonDirective, never>;
54
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RadioButtonDirective, "ui5-radio-button", ["ui5RadioButton"], { "accessibleName": "accessibleName"; "accessibleNameRef": "accessibleNameRef"; "checked": "checked"; "disabled": "disabled"; "name": "name"; "readonly": "readonly"; "required": "required"; "text": "text"; "value": "value"; "valueState": "valueState"; "wrappingType": "wrappingType"; }, { "change": "change"; }, never, never, false, never>;
55
+ }
56
+ declare class RadioButtonDirectiveCva extends GenericControlValueAccessor {
57
+ private elementRef;
58
+ constructor(elementRef: ElementRef<RadioButtonDirective['element']>);
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonDirectiveCva, never>;
60
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RadioButtonDirectiveCva, "ui5-radio-button", never, {}, {}, never, never, false, never>;
61
+ }
62
+ export { RadioButtonDirective, RadioButtonDirectiveCva, RadioButtonDirectiveEventsMap, RadioButtonDirectiveElement, };