@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,63 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/StepInput.js';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ interface StepInputDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change'> {
6
+ change: CustomEvent<void>;
7
+ }
8
+ interface StepInputDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'accessibleNameRef' | 'disabled' | 'max' | 'min' | 'name' | 'placeholder' | 'readonly' | 'required' | 'step' | 'value' | 'valuePrecision' | 'valueState' | 'change' | 'valueStateMessage'> {
9
+ accessibleName: string;
10
+ accessibleNameRef: string;
11
+ disabled: boolean;
12
+ max: any;
13
+ min: any;
14
+ name: string;
15
+ placeholder: string;
16
+ readonly: boolean;
17
+ required: boolean;
18
+ step: any;
19
+ value: any;
20
+ valuePrecision: any;
21
+ valueState: 'Error' | 'Information' | 'None' | 'Success' | 'Warning';
22
+ valueStateMessage: HTMLElement;
23
+ addEventListener<K extends keyof StepInputDirectiveEventsMap>(type: K, listener: (this: StepInputDirectiveElement, ev: StepInputDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
24
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
25
+ removeEventListener<K extends keyof StepInputDirectiveEventsMap>(type: K, listener: (this: StepInputDirectiveElement, ev: StepInputDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
26
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
27
+ }
28
+ declare class StepInputDirective {
29
+ private elementRef;
30
+ set accessibleName(val: StepInputDirectiveElement['accessibleName']);
31
+ get accessibleName(): StepInputDirectiveElement['accessibleName'];
32
+ set accessibleNameRef(val: StepInputDirectiveElement['accessibleNameRef']);
33
+ get accessibleNameRef(): StepInputDirectiveElement['accessibleNameRef'];
34
+ set disabled(val: StepInputDirectiveElement['disabled']);
35
+ get disabled(): StepInputDirectiveElement['disabled'];
36
+ set max(val: StepInputDirectiveElement['max']);
37
+ get max(): StepInputDirectiveElement['max'];
38
+ set min(val: StepInputDirectiveElement['min']);
39
+ get min(): StepInputDirectiveElement['min'];
40
+ set name(val: StepInputDirectiveElement['name']);
41
+ get name(): StepInputDirectiveElement['name'];
42
+ set placeholder(val: StepInputDirectiveElement['placeholder']);
43
+ get placeholder(): StepInputDirectiveElement['placeholder'];
44
+ set readonly(val: StepInputDirectiveElement['readonly']);
45
+ get readonly(): StepInputDirectiveElement['readonly'];
46
+ set required(val: StepInputDirectiveElement['required']);
47
+ get required(): StepInputDirectiveElement['required'];
48
+ set step(val: StepInputDirectiveElement['step']);
49
+ get step(): StepInputDirectiveElement['step'];
50
+ set value(val: StepInputDirectiveElement['value']);
51
+ get value(): StepInputDirectiveElement['value'];
52
+ set valuePrecision(val: StepInputDirectiveElement['valuePrecision']);
53
+ get valuePrecision(): StepInputDirectiveElement['valuePrecision'];
54
+ set valueState(val: StepInputDirectiveElement['valueState']);
55
+ get valueState(): StepInputDirectiveElement['valueState'];
56
+ change: Observable<StepInputDirectiveEventsMap['change']>;
57
+ constructor(elementRef: ElementRef<StepInputDirectiveElement>);
58
+ get element(): typeof this.elementRef.nativeElement;
59
+ get valueStateMessage(): HTMLElement;
60
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepInputDirective, never>;
61
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StepInputDirective, "ui5-step-input", ["ui5StepInput"], { "accessibleName": "accessibleName"; "accessibleNameRef": "accessibleNameRef"; "disabled": "disabled"; "max": "max"; "min": "min"; "name": "name"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "step": "step"; "value": "value"; "valuePrecision": "valuePrecision"; "valueState": "valueState"; }, { "change": "change"; }, never, never, false, never>;
62
+ }
63
+ export { StepInputDirective, StepInputDirectiveEventsMap, StepInputDirectiveElement, };
@@ -0,0 +1,16 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/SuggestionGroupItem.js';
3
+ import * as i0 from "@angular/core";
4
+ interface SuggestionGroupItemDirectiveElement extends Omit<HTMLElement, 'text'> {
5
+ text: string;
6
+ }
7
+ declare class SuggestionGroupItemDirective {
8
+ private elementRef;
9
+ set text(val: SuggestionGroupItemDirectiveElement['text']);
10
+ get text(): SuggestionGroupItemDirectiveElement['text'];
11
+ constructor(elementRef: ElementRef<SuggestionGroupItemDirectiveElement>);
12
+ get element(): typeof this.elementRef.nativeElement;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<SuggestionGroupItemDirective, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SuggestionGroupItemDirective, "ui5-suggestion-group-item", ["ui5SuggestionGroupItem"], { "text": "text"; }, {}, never, never, false, never>;
15
+ }
16
+ export { SuggestionGroupItemDirective, SuggestionGroupItemDirectiveElement };
@@ -0,0 +1,37 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/SuggestionItem.js';
3
+ import * as i0 from "@angular/core";
4
+ interface SuggestionItemDirectiveElement extends Omit<HTMLElement, 'additionalText' | 'additionalTextState' | 'description' | 'icon' | 'iconEnd' | 'image' | 'text' | 'type'> {
5
+ additionalText: string;
6
+ additionalTextState: 'Error' | 'Information' | 'None' | 'Success' | 'Warning';
7
+ description: string;
8
+ icon: string;
9
+ iconEnd: boolean;
10
+ image: string;
11
+ text: string;
12
+ type: 'Active' | 'Detail' | 'Inactive';
13
+ }
14
+ declare class SuggestionItemDirective {
15
+ private elementRef;
16
+ set additionalText(val: SuggestionItemDirectiveElement['additionalText']);
17
+ get additionalText(): SuggestionItemDirectiveElement['additionalText'];
18
+ set additionalTextState(val: SuggestionItemDirectiveElement['additionalTextState']);
19
+ get additionalTextState(): SuggestionItemDirectiveElement['additionalTextState'];
20
+ set description(val: SuggestionItemDirectiveElement['description']);
21
+ get description(): SuggestionItemDirectiveElement['description'];
22
+ set icon(val: SuggestionItemDirectiveElement['icon']);
23
+ get icon(): SuggestionItemDirectiveElement['icon'];
24
+ set iconEnd(val: SuggestionItemDirectiveElement['iconEnd']);
25
+ get iconEnd(): SuggestionItemDirectiveElement['iconEnd'];
26
+ set image(val: SuggestionItemDirectiveElement['image']);
27
+ get image(): SuggestionItemDirectiveElement['image'];
28
+ set text(val: SuggestionItemDirectiveElement['text']);
29
+ get text(): SuggestionItemDirectiveElement['text'];
30
+ set type(val: SuggestionItemDirectiveElement['type']);
31
+ get type(): SuggestionItemDirectiveElement['type'];
32
+ constructor(elementRef: ElementRef<SuggestionItemDirectiveElement>);
33
+ get element(): typeof this.elementRef.nativeElement;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<SuggestionItemDirective, never>;
35
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SuggestionItemDirective, "ui5-suggestion-item", ["ui5SuggestionItem"], { "additionalText": "additionalText"; "additionalTextState": "additionalTextState"; "description": "description"; "icon": "icon"; "iconEnd": "iconEnd"; "image": "image"; "text": "text"; "type": "type"; }, {}, never, never, false, never>;
36
+ }
37
+ export { SuggestionItemDirective, SuggestionItemDirectiveElement };
@@ -0,0 +1,53 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/Switch.js';
3
+ import { Observable } from 'rxjs';
4
+ import { GenericControlValueAccessor } from '../../generic-cva';
5
+ import * as i0 from "@angular/core";
6
+ interface SwitchDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change'> {
7
+ change: CustomEvent<void>;
8
+ }
9
+ interface SwitchDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'accessibleNameRef' | 'checked' | 'design' | 'disabled' | 'textOff' | 'textOn' | 'tooltip' | 'change'> {
10
+ accessibleName: string;
11
+ accessibleNameRef: string;
12
+ checked: boolean;
13
+ design: 'Graphical' | 'Textual';
14
+ disabled: boolean;
15
+ textOff: string;
16
+ textOn: string;
17
+ tooltip: string;
18
+ addEventListener<K extends keyof SwitchDirectiveEventsMap>(type: K, listener: (this: SwitchDirectiveElement, ev: SwitchDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
19
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
20
+ removeEventListener<K extends keyof SwitchDirectiveEventsMap>(type: K, listener: (this: SwitchDirectiveElement, ev: SwitchDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
21
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
22
+ }
23
+ declare class SwitchDirective {
24
+ private elementRef;
25
+ set accessibleName(val: SwitchDirectiveElement['accessibleName']);
26
+ get accessibleName(): SwitchDirectiveElement['accessibleName'];
27
+ set accessibleNameRef(val: SwitchDirectiveElement['accessibleNameRef']);
28
+ get accessibleNameRef(): SwitchDirectiveElement['accessibleNameRef'];
29
+ set checked(val: SwitchDirectiveElement['checked']);
30
+ get checked(): SwitchDirectiveElement['checked'];
31
+ set design(val: SwitchDirectiveElement['design']);
32
+ get design(): SwitchDirectiveElement['design'];
33
+ set disabled(val: SwitchDirectiveElement['disabled']);
34
+ get disabled(): SwitchDirectiveElement['disabled'];
35
+ set textOff(val: SwitchDirectiveElement['textOff']);
36
+ get textOff(): SwitchDirectiveElement['textOff'];
37
+ set textOn(val: SwitchDirectiveElement['textOn']);
38
+ get textOn(): SwitchDirectiveElement['textOn'];
39
+ set tooltip(val: SwitchDirectiveElement['tooltip']);
40
+ get tooltip(): SwitchDirectiveElement['tooltip'];
41
+ change: Observable<SwitchDirectiveEventsMap['change']>;
42
+ constructor(elementRef: ElementRef<SwitchDirectiveElement>);
43
+ get element(): typeof this.elementRef.nativeElement;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwitchDirective, never>;
45
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SwitchDirective, "ui5-switch", ["ui5Switch"], { "accessibleName": "accessibleName"; "accessibleNameRef": "accessibleNameRef"; "checked": "checked"; "design": "design"; "disabled": "disabled"; "textOff": "textOff"; "textOn": "textOn"; "tooltip": "tooltip"; }, { "change": "change"; }, never, never, false, never>;
46
+ }
47
+ declare class SwitchDirectiveCva extends GenericControlValueAccessor {
48
+ private elementRef;
49
+ constructor(elementRef: ElementRef<SwitchDirective['element']>);
50
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwitchDirectiveCva, never>;
51
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SwitchDirectiveCva, "ui5-switch", never, {}, {}, never, never, false, never>;
52
+ }
53
+ export { SwitchDirective, SwitchDirectiveCva, SwitchDirectiveEventsMap, SwitchDirectiveElement, };
@@ -0,0 +1,56 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/TabContainer.js';
3
+ import { TabDirective } from './tab';
4
+ import { TabSeparatorDirective } from './tab-separator';
5
+ import { Observable } from 'rxjs';
6
+ import { ButtonDirective } from './button';
7
+ import * as i0 from "@angular/core";
8
+ interface TabContainerDirectiveEventsMap extends Omit<HTMLElementEventMap, 'tabSelect'> {
9
+ tabSelect: CustomEvent<{
10
+ tab: HTMLElement;
11
+ tabIndex: number;
12
+ }>;
13
+ }
14
+ interface TabContainerDirectiveElement extends Omit<HTMLElement, 'allItems' | 'collapsed' | 'contentBackgroundDesign' | 'fixed' | 'headerBackgroundDesign' | 'showOverflow' | 'tabLayout' | 'tabsOverflowMode' | 'tabSelect' | 'overflowButton' | 'startOverflowButton'> {
15
+ allItems: Array<TabDirective['element'] | TabSeparatorDirective['element']>;
16
+ collapsed: boolean;
17
+ contentBackgroundDesign: 'Solid' | 'Translucent' | 'Transparent';
18
+ fixed: boolean;
19
+ headerBackgroundDesign: 'Solid' | 'Translucent' | 'Transparent';
20
+ showOverflow: boolean;
21
+ tabLayout: 'Inline' | 'Standard';
22
+ tabsOverflowMode: 'End' | 'StartAndEnd';
23
+ overflowButton: ButtonDirective['element'];
24
+ startOverflowButton: ButtonDirective['element'];
25
+ addEventListener<K extends keyof TabContainerDirectiveEventsMap>(type: K, listener: (this: TabContainerDirectiveElement, ev: TabContainerDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
26
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
27
+ removeEventListener<K extends keyof TabContainerDirectiveEventsMap>(type: K, listener: (this: TabContainerDirectiveElement, ev: TabContainerDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
28
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
29
+ }
30
+ declare class TabContainerDirective {
31
+ private elementRef;
32
+ set allItems(val: TabContainerDirectiveElement['allItems']);
33
+ get allItems(): TabContainerDirectiveElement['allItems'];
34
+ set collapsed(val: TabContainerDirectiveElement['collapsed']);
35
+ get collapsed(): TabContainerDirectiveElement['collapsed'];
36
+ set contentBackgroundDesign(val: TabContainerDirectiveElement['contentBackgroundDesign']);
37
+ get contentBackgroundDesign(): TabContainerDirectiveElement['contentBackgroundDesign'];
38
+ set fixed(val: TabContainerDirectiveElement['fixed']);
39
+ get fixed(): TabContainerDirectiveElement['fixed'];
40
+ set headerBackgroundDesign(val: TabContainerDirectiveElement['headerBackgroundDesign']);
41
+ get headerBackgroundDesign(): TabContainerDirectiveElement['headerBackgroundDesign'];
42
+ set showOverflow(val: TabContainerDirectiveElement['showOverflow']);
43
+ get showOverflow(): TabContainerDirectiveElement['showOverflow'];
44
+ set tabLayout(val: TabContainerDirectiveElement['tabLayout']);
45
+ get tabLayout(): TabContainerDirectiveElement['tabLayout'];
46
+ set tabsOverflowMode(val: TabContainerDirectiveElement['tabsOverflowMode']);
47
+ get tabsOverflowMode(): TabContainerDirectiveElement['tabsOverflowMode'];
48
+ tabSelect: Observable<TabContainerDirectiveEventsMap['tabSelect']>;
49
+ constructor(elementRef: ElementRef<TabContainerDirectiveElement>);
50
+ get element(): typeof this.elementRef.nativeElement;
51
+ get overflowButton(): ButtonDirective['element'];
52
+ get startOverflowButton(): ButtonDirective['element'];
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabContainerDirective, never>;
54
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TabContainerDirective, "ui5-tabcontainer", ["ui5Tabcontainer"], { "allItems": "allItems"; "collapsed": "collapsed"; "contentBackgroundDesign": "contentBackgroundDesign"; "fixed": "fixed"; "headerBackgroundDesign": "headerBackgroundDesign"; "showOverflow": "showOverflow"; "tabLayout": "tabLayout"; "tabsOverflowMode": "tabsOverflowMode"; }, { "tabSelect": "tabSelect"; }, never, never, false, never>;
55
+ }
56
+ export { TabContainerDirective, TabContainerDirectiveEventsMap, TabContainerDirectiveElement, };
@@ -0,0 +1,15 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/TabSeparator.js';
3
+ import * as i0 from "@angular/core";
4
+ interface TabSeparatorDirectiveElement extends HTMLElement {
5
+ getTabInStripDomRef(): any;
6
+ }
7
+ declare class TabSeparatorDirective {
8
+ private elementRef;
9
+ constructor(elementRef: ElementRef<TabSeparatorDirectiveElement>);
10
+ get element(): typeof this.elementRef.nativeElement;
11
+ getTabInStripDomRef(): any;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabSeparatorDirective, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TabSeparatorDirective, "ui5-tab-separator", ["ui5TabSeparator"], {}, {}, never, never, false, never>;
14
+ }
15
+ export { TabSeparatorDirective, TabSeparatorDirectiveElement };
@@ -0,0 +1,36 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/Tab.js';
3
+ import { TabSeparatorDirective } from './tab-separator';
4
+ import * as i0 from "@angular/core";
5
+ interface TabDirectiveElement extends Omit<HTMLElement, 'additionalText' | 'design' | 'disabled' | 'icon' | 'selected' | 'text' | 'subTabs'> {
6
+ additionalText: string;
7
+ design: 'Critical' | 'Default' | 'Negative' | 'Neutral' | 'Positive';
8
+ disabled: boolean;
9
+ icon: string;
10
+ selected: boolean;
11
+ text: string;
12
+ subTabs: Array<TabSeparatorDirective['element'] | TabDirective['element']>;
13
+ getTabInStripDomRef(): any;
14
+ }
15
+ declare class TabDirective {
16
+ private elementRef;
17
+ set additionalText(val: TabDirectiveElement['additionalText']);
18
+ get additionalText(): TabDirectiveElement['additionalText'];
19
+ set design(val: TabDirectiveElement['design']);
20
+ get design(): TabDirectiveElement['design'];
21
+ set disabled(val: TabDirectiveElement['disabled']);
22
+ get disabled(): TabDirectiveElement['disabled'];
23
+ set icon(val: TabDirectiveElement['icon']);
24
+ get icon(): TabDirectiveElement['icon'];
25
+ set selected(val: TabDirectiveElement['selected']);
26
+ get selected(): TabDirectiveElement['selected'];
27
+ set text(val: TabDirectiveElement['text']);
28
+ get text(): TabDirectiveElement['text'];
29
+ constructor(elementRef: ElementRef<TabDirectiveElement>);
30
+ get element(): typeof this.elementRef.nativeElement;
31
+ get subTabs(): Array<TabSeparatorDirective['element'] | TabDirective['element']>;
32
+ getTabInStripDomRef(): any;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabDirective, never>;
34
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TabDirective, "ui5-tab", ["ui5Tab"], { "additionalText": "additionalText"; "design": "design"; "disabled": "disabled"; "icon": "icon"; "selected": "selected"; "text": "text"; }, {}, never, never, false, never>;
35
+ }
36
+ export { TabDirective, TabDirectiveElement };
@@ -0,0 +1,13 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/TableCell.js';
3
+ import * as i0 from "@angular/core";
4
+ interface TableCellDirectiveElement extends HTMLElement {
5
+ }
6
+ declare class TableCellDirective {
7
+ private elementRef;
8
+ constructor(elementRef: ElementRef<TableCellDirectiveElement>);
9
+ get element(): typeof this.elementRef.nativeElement;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableCellDirective, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableCellDirective, "ui5-table-cell", ["ui5TableCell"], {}, {}, never, never, false, never>;
12
+ }
13
+ export { TableCellDirective, TableCellDirectiveElement };
@@ -0,0 +1,22 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/TableColumn.js';
3
+ import * as i0 from "@angular/core";
4
+ interface TableColumnDirectiveElement extends Omit<HTMLElement, 'demandPopin' | 'minWidth' | 'popinText'> {
5
+ demandPopin: boolean;
6
+ minWidth: any;
7
+ popinText: string;
8
+ }
9
+ declare class TableColumnDirective {
10
+ private elementRef;
11
+ set demandPopin(val: TableColumnDirectiveElement['demandPopin']);
12
+ get demandPopin(): TableColumnDirectiveElement['demandPopin'];
13
+ set minWidth(val: TableColumnDirectiveElement['minWidth']);
14
+ get minWidth(): TableColumnDirectiveElement['minWidth'];
15
+ set popinText(val: TableColumnDirectiveElement['popinText']);
16
+ get popinText(): TableColumnDirectiveElement['popinText'];
17
+ constructor(elementRef: ElementRef<TableColumnDirectiveElement>);
18
+ get element(): typeof this.elementRef.nativeElement;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableColumnDirective, never>;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableColumnDirective, "ui5-table-column", ["ui5TableColumn"], { "demandPopin": "demandPopin"; "minWidth": "minWidth"; "popinText": "popinText"; }, {}, never, never, false, never>;
21
+ }
22
+ export { TableColumnDirective, TableColumnDirectiveElement };
@@ -0,0 +1,13 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/TableGroupRow.js';
3
+ import * as i0 from "@angular/core";
4
+ interface TableGroupRowDirectiveElement extends HTMLElement {
5
+ }
6
+ declare class TableGroupRowDirective {
7
+ private elementRef;
8
+ constructor(elementRef: ElementRef<TableGroupRowDirectiveElement>);
9
+ get element(): typeof this.elementRef.nativeElement;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableGroupRowDirective, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableGroupRowDirective, "ui5-table-group-row", ["ui5TableGroupRow"], {}, {}, never, never, false, never>;
12
+ }
13
+ export { TableGroupRowDirective, TableGroupRowDirectiveElement };
@@ -0,0 +1,22 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/TableRow.js';
3
+ import * as i0 from "@angular/core";
4
+ interface TableRowDirectiveElement extends Omit<HTMLElement, 'navigated' | 'selected' | 'type'> {
5
+ navigated: boolean;
6
+ selected: boolean;
7
+ type: 'Active' | 'Inactive';
8
+ }
9
+ declare class TableRowDirective {
10
+ private elementRef;
11
+ set navigated(val: TableRowDirectiveElement['navigated']);
12
+ get navigated(): TableRowDirectiveElement['navigated'];
13
+ set selected(val: TableRowDirectiveElement['selected']);
14
+ get selected(): TableRowDirectiveElement['selected'];
15
+ set type(val: TableRowDirectiveElement['type']);
16
+ get type(): TableRowDirectiveElement['type'];
17
+ constructor(elementRef: ElementRef<TableRowDirectiveElement>);
18
+ get element(): typeof this.elementRef.nativeElement;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableRowDirective, never>;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableRowDirective, "ui5-table-row", ["ui5TableRow"], { "navigated": "navigated"; "selected": "selected"; "type": "type"; }, {}, never, never, false, never>;
21
+ }
22
+ export { TableRowDirective, TableRowDirectiveElement };
@@ -0,0 +1,71 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/Table.js';
3
+ import { Observable } from 'rxjs';
4
+ import { TableColumnDirective } from './table-column';
5
+ import * as i0 from "@angular/core";
6
+ interface TableDirectiveEventsMap extends Omit<HTMLElementEventMap, 'loadMore' | 'popinChange' | 'rowClick' | 'selectionChange'> {
7
+ loadMore: CustomEvent<void>;
8
+ popinChange: CustomEvent<{
9
+ poppedColumns: Array<any>;
10
+ }>;
11
+ rowClick: CustomEvent<{
12
+ row: HTMLElement;
13
+ }>;
14
+ selectionChange: CustomEvent<{
15
+ selectedRows: Array<any>;
16
+ previouslySelectedRows: Array<any>;
17
+ }>;
18
+ }
19
+ interface TableDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'accessibleNameRef' | 'busy' | 'busyDelay' | 'growing' | 'growingButtonSubtext' | 'growingButtonText' | 'hideNoData' | 'mode' | 'noDataText' | 'stickyColumnHeader' | 'loadMore' | 'popinChange' | 'rowClick' | 'selectionChange' | 'columns'> {
20
+ accessibleName: string;
21
+ accessibleNameRef: string;
22
+ busy: boolean;
23
+ busyDelay: any;
24
+ growing: 'Button' | 'None' | 'Scroll';
25
+ growingButtonSubtext: string;
26
+ growingButtonText: string;
27
+ hideNoData: boolean;
28
+ mode: 'MultiSelect' | 'None' | 'SingleSelect';
29
+ noDataText: string;
30
+ stickyColumnHeader: boolean;
31
+ columns: Array<TableColumnDirective['element']>;
32
+ addEventListener<K extends keyof TableDirectiveEventsMap>(type: K, listener: (this: TableDirectiveElement, ev: TableDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
33
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
34
+ removeEventListener<K extends keyof TableDirectiveEventsMap>(type: K, listener: (this: TableDirectiveElement, ev: TableDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
35
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
36
+ }
37
+ declare class TableDirective {
38
+ private elementRef;
39
+ set accessibleName(val: TableDirectiveElement['accessibleName']);
40
+ get accessibleName(): TableDirectiveElement['accessibleName'];
41
+ set accessibleNameRef(val: TableDirectiveElement['accessibleNameRef']);
42
+ get accessibleNameRef(): TableDirectiveElement['accessibleNameRef'];
43
+ set busy(val: TableDirectiveElement['busy']);
44
+ get busy(): TableDirectiveElement['busy'];
45
+ set busyDelay(val: TableDirectiveElement['busyDelay']);
46
+ get busyDelay(): TableDirectiveElement['busyDelay'];
47
+ set growing(val: TableDirectiveElement['growing']);
48
+ get growing(): TableDirectiveElement['growing'];
49
+ set growingButtonSubtext(val: TableDirectiveElement['growingButtonSubtext']);
50
+ get growingButtonSubtext(): TableDirectiveElement['growingButtonSubtext'];
51
+ set growingButtonText(val: TableDirectiveElement['growingButtonText']);
52
+ get growingButtonText(): TableDirectiveElement['growingButtonText'];
53
+ set hideNoData(val: TableDirectiveElement['hideNoData']);
54
+ get hideNoData(): TableDirectiveElement['hideNoData'];
55
+ set mode(val: TableDirectiveElement['mode']);
56
+ get mode(): TableDirectiveElement['mode'];
57
+ set noDataText(val: TableDirectiveElement['noDataText']);
58
+ get noDataText(): TableDirectiveElement['noDataText'];
59
+ set stickyColumnHeader(val: TableDirectiveElement['stickyColumnHeader']);
60
+ get stickyColumnHeader(): TableDirectiveElement['stickyColumnHeader'];
61
+ loadMore: Observable<TableDirectiveEventsMap['loadMore']>;
62
+ popinChange: Observable<TableDirectiveEventsMap['popinChange']>;
63
+ rowClick: Observable<TableDirectiveEventsMap['rowClick']>;
64
+ selectionChange: Observable<TableDirectiveEventsMap['selectionChange']>;
65
+ constructor(elementRef: ElementRef<TableDirectiveElement>);
66
+ get element(): typeof this.elementRef.nativeElement;
67
+ get columns(): Array<TableColumnDirective['element']>;
68
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableDirective, never>;
69
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableDirective, "ui5-table", ["ui5Table"], { "accessibleName": "accessibleName"; "accessibleNameRef": "accessibleNameRef"; "busy": "busy"; "busyDelay": "busyDelay"; "growing": "growing"; "growingButtonSubtext": "growingButtonSubtext"; "growingButtonText": "growingButtonText"; "hideNoData": "hideNoData"; "mode": "mode"; "noDataText": "noDataText"; "stickyColumnHeader": "stickyColumnHeader"; }, { "loadMore": "loadMore"; "popinChange": "popinChange"; "rowClick": "rowClick"; "selectionChange": "selectionChange"; }, never, never, false, never>;
70
+ }
71
+ export { TableDirective, TableDirectiveEventsMap, TableDirectiveElement };
@@ -0,0 +1,68 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/TextArea.js';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ interface TextAreaDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change' | 'input'> {
6
+ change: CustomEvent<void>;
7
+ input: CustomEvent<void>;
8
+ }
9
+ interface TextAreaDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'accessibleNameRef' | 'disabled' | 'growing' | 'growingMaxLines' | 'maxlength' | 'name' | 'placeholder' | 'readonly' | 'required' | 'rows' | 'showExceededText' | 'value' | 'valueState' | 'change' | 'input' | 'valueStateMessage'> {
10
+ accessibleName: string;
11
+ accessibleNameRef: string;
12
+ disabled: boolean;
13
+ growing: boolean;
14
+ growingMaxLines: any;
15
+ maxlength: any;
16
+ name: string;
17
+ placeholder: string;
18
+ readonly: boolean;
19
+ required: boolean;
20
+ rows: any;
21
+ showExceededText: boolean;
22
+ value: string;
23
+ valueState: 'Error' | 'Information' | 'None' | 'Success' | 'Warning';
24
+ valueStateMessage: Array<HTMLElement>;
25
+ addEventListener<K extends keyof TextAreaDirectiveEventsMap>(type: K, listener: (this: TextAreaDirectiveElement, ev: TextAreaDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
26
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
27
+ removeEventListener<K extends keyof TextAreaDirectiveEventsMap>(type: K, listener: (this: TextAreaDirectiveElement, ev: TextAreaDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
28
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
29
+ }
30
+ declare class TextAreaDirective {
31
+ private elementRef;
32
+ set accessibleName(val: TextAreaDirectiveElement['accessibleName']);
33
+ get accessibleName(): TextAreaDirectiveElement['accessibleName'];
34
+ set accessibleNameRef(val: TextAreaDirectiveElement['accessibleNameRef']);
35
+ get accessibleNameRef(): TextAreaDirectiveElement['accessibleNameRef'];
36
+ set disabled(val: TextAreaDirectiveElement['disabled']);
37
+ get disabled(): TextAreaDirectiveElement['disabled'];
38
+ set growing(val: TextAreaDirectiveElement['growing']);
39
+ get growing(): TextAreaDirectiveElement['growing'];
40
+ set growingMaxLines(val: TextAreaDirectiveElement['growingMaxLines']);
41
+ get growingMaxLines(): TextAreaDirectiveElement['growingMaxLines'];
42
+ set maxlength(val: TextAreaDirectiveElement['maxlength']);
43
+ get maxlength(): TextAreaDirectiveElement['maxlength'];
44
+ set name(val: TextAreaDirectiveElement['name']);
45
+ get name(): TextAreaDirectiveElement['name'];
46
+ set placeholder(val: TextAreaDirectiveElement['placeholder']);
47
+ get placeholder(): TextAreaDirectiveElement['placeholder'];
48
+ set readonly(val: TextAreaDirectiveElement['readonly']);
49
+ get readonly(): TextAreaDirectiveElement['readonly'];
50
+ set required(val: TextAreaDirectiveElement['required']);
51
+ get required(): TextAreaDirectiveElement['required'];
52
+ set rows(val: TextAreaDirectiveElement['rows']);
53
+ get rows(): TextAreaDirectiveElement['rows'];
54
+ set showExceededText(val: TextAreaDirectiveElement['showExceededText']);
55
+ get showExceededText(): TextAreaDirectiveElement['showExceededText'];
56
+ set value(val: TextAreaDirectiveElement['value']);
57
+ get value(): TextAreaDirectiveElement['value'];
58
+ set valueState(val: TextAreaDirectiveElement['valueState']);
59
+ get valueState(): TextAreaDirectiveElement['valueState'];
60
+ change: Observable<TextAreaDirectiveEventsMap['change']>;
61
+ input: Observable<TextAreaDirectiveEventsMap['input']>;
62
+ constructor(elementRef: ElementRef<TextAreaDirectiveElement>);
63
+ get element(): typeof this.elementRef.nativeElement;
64
+ get valueStateMessage(): Array<HTMLElement>;
65
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaDirective, never>;
66
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TextAreaDirective, "ui5-textarea", ["ui5Textarea"], { "accessibleName": "accessibleName"; "accessibleNameRef": "accessibleNameRef"; "disabled": "disabled"; "growing": "growing"; "growingMaxLines": "growingMaxLines"; "maxlength": "maxlength"; "name": "name"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "rows": "rows"; "showExceededText": "showExceededText"; "value": "value"; "valueState": "valueState"; }, { "change": "change"; "input": "input"; }, never, never, false, never>;
67
+ }
68
+ export { TextAreaDirective, TextAreaDirectiveEventsMap, TextAreaDirectiveElement, };
@@ -0,0 +1,64 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/TimePicker.js';
3
+ import { Observable } from 'rxjs';
4
+ import { GenericControlValueAccessor } from '../../generic-cva';
5
+ import * as i0 from "@angular/core";
6
+ interface TimePickerDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change' | 'input'> {
7
+ change: CustomEvent<void>;
8
+ input: CustomEvent<void>;
9
+ }
10
+ interface TimePickerDirectiveElement extends Omit<HTMLElement, 'disabled' | 'formatPattern' | 'placeholder' | 'readonly' | 'value' | 'valueState' | 'dateValue' | 'change' | 'input' | 'valueStateMessage'> {
11
+ disabled: boolean;
12
+ formatPattern: string;
13
+ placeholder: string;
14
+ readonly: boolean;
15
+ value: string;
16
+ valueState: 'Error' | 'Information' | 'None' | 'Success' | 'Warning';
17
+ dateValue: any;
18
+ valueStateMessage: HTMLElement;
19
+ addEventListener<K extends keyof TimePickerDirectiveEventsMap>(type: K, listener: (this: TimePickerDirectiveElement, ev: TimePickerDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
21
+ removeEventListener<K extends keyof TimePickerDirectiveEventsMap>(type: K, listener: (this: TimePickerDirectiveElement, ev: TimePickerDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
22
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
23
+ closePicker(): any;
24
+ formatValue(date: Record<string, any>): string;
25
+ isOpen(): boolean;
26
+ isValid(value: string): boolean;
27
+ openPicker(): any;
28
+ }
29
+ declare class TimePickerDirective {
30
+ private elementRef;
31
+ set disabled(val: TimePickerDirectiveElement['disabled']);
32
+ get disabled(): TimePickerDirectiveElement['disabled'];
33
+ set formatPattern(val: TimePickerDirectiveElement['formatPattern']);
34
+ get formatPattern(): TimePickerDirectiveElement['formatPattern'];
35
+ set placeholder(val: TimePickerDirectiveElement['placeholder']);
36
+ get placeholder(): TimePickerDirectiveElement['placeholder'];
37
+ set readonly(val: TimePickerDirectiveElement['readonly']);
38
+ get readonly(): TimePickerDirectiveElement['readonly'];
39
+ set value(val: TimePickerDirectiveElement['value']);
40
+ get value(): TimePickerDirectiveElement['value'];
41
+ set valueState(val: TimePickerDirectiveElement['valueState']);
42
+ get valueState(): TimePickerDirectiveElement['valueState'];
43
+ set dateValue(val: TimePickerDirectiveElement['dateValue']);
44
+ get dateValue(): TimePickerDirectiveElement['dateValue'];
45
+ change: Observable<TimePickerDirectiveEventsMap['change']>;
46
+ input: Observable<TimePickerDirectiveEventsMap['input']>;
47
+ constructor(elementRef: ElementRef<TimePickerDirectiveElement>);
48
+ get element(): typeof this.elementRef.nativeElement;
49
+ get valueStateMessage(): HTMLElement;
50
+ closePicker(): any;
51
+ formatValue(date: Record<string, any>): string;
52
+ isOpen(): boolean;
53
+ isValid(value: string): boolean;
54
+ openPicker(): any;
55
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerDirective, never>;
56
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TimePickerDirective, "ui5-time-picker", ["ui5TimePicker"], { "disabled": "disabled"; "formatPattern": "formatPattern"; "placeholder": "placeholder"; "readonly": "readonly"; "value": "value"; "valueState": "valueState"; "dateValue": "dateValue"; }, { "change": "change"; "input": "input"; }, never, never, false, never>;
57
+ }
58
+ declare class TimePickerDirectiveCva extends GenericControlValueAccessor {
59
+ private elementRef;
60
+ constructor(elementRef: ElementRef<TimePickerDirective['element']>);
61
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerDirectiveCva, never>;
62
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TimePickerDirectiveCva, "ui5-time-picker", never, {}, {}, never, never, false, never>;
63
+ }
64
+ export { TimePickerDirective, TimePickerDirectiveCva, TimePickerDirectiveEventsMap, TimePickerDirectiveElement, };
@@ -0,0 +1,19 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/Title.js';
3
+ import * as i0 from "@angular/core";
4
+ interface TitleDirectiveElement extends Omit<HTMLElement, 'level' | 'wrappingType'> {
5
+ level: 'H1' | 'H2' | 'H3' | 'H4' | 'H5' | 'H6';
6
+ wrappingType: 'None' | 'Normal';
7
+ }
8
+ declare class TitleDirective {
9
+ private elementRef;
10
+ set level(val: TitleDirectiveElement['level']);
11
+ get level(): TitleDirectiveElement['level'];
12
+ set wrappingType(val: TitleDirectiveElement['wrappingType']);
13
+ get wrappingType(): TitleDirectiveElement['wrappingType'];
14
+ constructor(elementRef: ElementRef<TitleDirectiveElement>);
15
+ get element(): typeof this.elementRef.nativeElement;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<TitleDirective, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TitleDirective, "ui5-title", ["ui5Title"], { "level": "level"; "wrappingType": "wrappingType"; }, {}, never, never, false, never>;
18
+ }
19
+ export { TitleDirective, TitleDirectiveElement };
@@ -0,0 +1,21 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/Toast.js';
3
+ import * as i0 from "@angular/core";
4
+ interface ToastDirectiveElement extends Omit<HTMLElement, 'duration' | 'placement'> {
5
+ duration: any;
6
+ placement: 'BottomCenter' | 'BottomEnd' | 'BottomStart' | 'MiddleCenter' | 'MiddleEnd' | 'MiddleStart' | 'TopCenter' | 'TopEnd' | 'TopStart';
7
+ show(): any;
8
+ }
9
+ declare class ToastDirective {
10
+ private elementRef;
11
+ set duration(val: ToastDirectiveElement['duration']);
12
+ get duration(): ToastDirectiveElement['duration'];
13
+ set placement(val: ToastDirectiveElement['placement']);
14
+ get placement(): ToastDirectiveElement['placement'];
15
+ constructor(elementRef: ElementRef<ToastDirectiveElement>);
16
+ get element(): typeof this.elementRef.nativeElement;
17
+ show(): any;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToastDirective, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ToastDirective, "ui5-toast", ["ui5Toast"], { "duration": "duration"; "placement": "placement"; }, {}, never, never, false, never>;
20
+ }
21
+ export { ToastDirective, ToastDirectiveElement };