@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,89 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/RangeSlider.js';
3
+ import { Observable } from 'rxjs';
4
+ import { GenericControlValueAccessor } from '../../generic-cva';
5
+ import * as i0 from "@angular/core";
6
+ interface RangeSliderDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change' | 'input'> {
7
+ change: CustomEvent<void>;
8
+ input: CustomEvent<void>;
9
+ }
10
+ interface RangeSliderDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'disabled' | 'labelInterval' | 'max' | 'min' | 'showTickmarks' | 'showTooltip' | 'step' | 'endValue' | 'startValue' | 'change' | 'input'> {
11
+ accessibleName: string;
12
+ disabled: boolean;
13
+ labelInterval: any;
14
+ max: any;
15
+ min: any;
16
+ showTickmarks: boolean;
17
+ showTooltip: boolean;
18
+ step: any;
19
+ endValue: any;
20
+ startValue: any;
21
+ addEventListener<K extends keyof RangeSliderDirectiveEventsMap>(type: K, listener: (this: RangeSliderDirectiveElement, ev: RangeSliderDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
22
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
23
+ removeEventListener<K extends keyof RangeSliderDirectiveEventsMap>(type: K, listener: (this: RangeSliderDirectiveElement, ev: RangeSliderDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
24
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
25
+ clipValue(): any;
26
+ computedValueFromPageX(): any;
27
+ focusInnerElement(): any;
28
+ getPageXValueFromEvent(): any;
29
+ getSteppedValue(): any;
30
+ getStoredPropertyState(): any;
31
+ getValueFromInteraction(): any;
32
+ handleDownBase(): any;
33
+ handleUpBase(): any;
34
+ isCurrentStateOutdated(): any;
35
+ isPropertyUpdated(): any;
36
+ storePropertyState(): any;
37
+ syncUIAndState(): any;
38
+ updateValue(): any;
39
+ }
40
+ declare class RangeSliderDirective {
41
+ private elementRef;
42
+ set accessibleName(val: RangeSliderDirectiveElement['accessibleName']);
43
+ get accessibleName(): RangeSliderDirectiveElement['accessibleName'];
44
+ set disabled(val: RangeSliderDirectiveElement['disabled']);
45
+ get disabled(): RangeSliderDirectiveElement['disabled'];
46
+ set labelInterval(val: RangeSliderDirectiveElement['labelInterval']);
47
+ get labelInterval(): RangeSliderDirectiveElement['labelInterval'];
48
+ set max(val: RangeSliderDirectiveElement['max']);
49
+ get max(): RangeSliderDirectiveElement['max'];
50
+ set min(val: RangeSliderDirectiveElement['min']);
51
+ get min(): RangeSliderDirectiveElement['min'];
52
+ set showTickmarks(val: RangeSliderDirectiveElement['showTickmarks']);
53
+ get showTickmarks(): RangeSliderDirectiveElement['showTickmarks'];
54
+ set showTooltip(val: RangeSliderDirectiveElement['showTooltip']);
55
+ get showTooltip(): RangeSliderDirectiveElement['showTooltip'];
56
+ set step(val: RangeSliderDirectiveElement['step']);
57
+ get step(): RangeSliderDirectiveElement['step'];
58
+ set endValue(val: RangeSliderDirectiveElement['endValue']);
59
+ get endValue(): RangeSliderDirectiveElement['endValue'];
60
+ set startValue(val: RangeSliderDirectiveElement['startValue']);
61
+ get startValue(): RangeSliderDirectiveElement['startValue'];
62
+ change: Observable<RangeSliderDirectiveEventsMap['change']>;
63
+ input: Observable<RangeSliderDirectiveEventsMap['input']>;
64
+ constructor(elementRef: ElementRef<RangeSliderDirectiveElement>);
65
+ get element(): typeof this.elementRef.nativeElement;
66
+ clipValue(): any;
67
+ computedValueFromPageX(): any;
68
+ focusInnerElement(): any;
69
+ getPageXValueFromEvent(): any;
70
+ getSteppedValue(): any;
71
+ getStoredPropertyState(): any;
72
+ getValueFromInteraction(): any;
73
+ handleDownBase(): any;
74
+ handleUpBase(): any;
75
+ isCurrentStateOutdated(): any;
76
+ isPropertyUpdated(): any;
77
+ storePropertyState(): any;
78
+ syncUIAndState(): any;
79
+ updateValue(): any;
80
+ static ɵfac: i0.ɵɵFactoryDeclaration<RangeSliderDirective, never>;
81
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RangeSliderDirective, "ui5-range-slider", ["ui5RangeSlider"], { "accessibleName": "accessibleName"; "disabled": "disabled"; "labelInterval": "labelInterval"; "max": "max"; "min": "min"; "showTickmarks": "showTickmarks"; "showTooltip": "showTooltip"; "step": "step"; "endValue": "endValue"; "startValue": "startValue"; }, { "change": "change"; "input": "input"; }, never, never, false, never>;
82
+ }
83
+ declare class RangeSliderDirectiveCva extends GenericControlValueAccessor {
84
+ private elementRef;
85
+ constructor(elementRef: ElementRef<RangeSliderDirective['element']>);
86
+ static ɵfac: i0.ɵɵFactoryDeclaration<RangeSliderDirectiveCva, never>;
87
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RangeSliderDirectiveCva, "ui5-range-slider", never, {}, {}, never, never, false, never>;
88
+ }
89
+ export { RangeSliderDirective, RangeSliderDirectiveCva, RangeSliderDirectiveEventsMap, RangeSliderDirectiveElement, };
@@ -0,0 +1,37 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/RatingIndicator.js';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ interface RatingIndicatorDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change'> {
6
+ change: CustomEvent<void>;
7
+ }
8
+ interface RatingIndicatorDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'disabled' | 'max' | 'readonly' | 'value' | 'change'> {
9
+ accessibleName: string;
10
+ disabled: boolean;
11
+ max: any;
12
+ readonly: boolean;
13
+ value: any;
14
+ addEventListener<K extends keyof RatingIndicatorDirectiveEventsMap>(type: K, listener: (this: RatingIndicatorDirectiveElement, ev: RatingIndicatorDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
15
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
16
+ removeEventListener<K extends keyof RatingIndicatorDirectiveEventsMap>(type: K, listener: (this: RatingIndicatorDirectiveElement, ev: RatingIndicatorDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
17
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
18
+ }
19
+ declare class RatingIndicatorDirective {
20
+ private elementRef;
21
+ set accessibleName(val: RatingIndicatorDirectiveElement['accessibleName']);
22
+ get accessibleName(): RatingIndicatorDirectiveElement['accessibleName'];
23
+ set disabled(val: RatingIndicatorDirectiveElement['disabled']);
24
+ get disabled(): RatingIndicatorDirectiveElement['disabled'];
25
+ set max(val: RatingIndicatorDirectiveElement['max']);
26
+ get max(): RatingIndicatorDirectiveElement['max'];
27
+ set readonly(val: RatingIndicatorDirectiveElement['readonly']);
28
+ get readonly(): RatingIndicatorDirectiveElement['readonly'];
29
+ set value(val: RatingIndicatorDirectiveElement['value']);
30
+ get value(): RatingIndicatorDirectiveElement['value'];
31
+ change: Observable<RatingIndicatorDirectiveEventsMap['change']>;
32
+ constructor(elementRef: ElementRef<RatingIndicatorDirectiveElement>);
33
+ get element(): typeof this.elementRef.nativeElement;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<RatingIndicatorDirective, never>;
35
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RatingIndicatorDirective, "ui5-rating-indicator", ["ui5RatingIndicator"], { "accessibleName": "accessibleName"; "disabled": "disabled"; "max": "max"; "readonly": "readonly"; "value": "value"; }, { "change": "change"; }, never, never, false, never>;
36
+ }
37
+ export { RatingIndicatorDirective, RatingIndicatorDirectiveEventsMap, RatingIndicatorDirectiveElement, };
@@ -0,0 +1,102 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/ResponsivePopover.js';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ interface ResponsivePopoverDirectiveEventsMap 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 ResponsivePopoverDirectiveElement 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 ResponsivePopoverDirectiveEventsMap>(type: K, listener: (this: ResponsivePopoverDirectiveElement, ev: ResponsivePopoverDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
31
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
32
+ removeEventListener<K extends keyof ResponsivePopoverDirectiveEventsMap>(type: K, listener: (this: ResponsivePopoverDirectiveElement, ev: ResponsivePopoverDirectiveEventsMap[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 ResponsivePopoverDirective {
49
+ private elementRef;
50
+ set accessibleName(val: ResponsivePopoverDirectiveElement['accessibleName']);
51
+ get accessibleName(): ResponsivePopoverDirectiveElement['accessibleName'];
52
+ set accessibleNameRef(val: ResponsivePopoverDirectiveElement['accessibleNameRef']);
53
+ get accessibleNameRef(): ResponsivePopoverDirectiveElement['accessibleNameRef'];
54
+ set initialFocus(val: ResponsivePopoverDirectiveElement['initialFocus']);
55
+ get initialFocus(): ResponsivePopoverDirectiveElement['initialFocus'];
56
+ set open(val: ResponsivePopoverDirectiveElement['open']);
57
+ get open(): ResponsivePopoverDirectiveElement['open'];
58
+ set preventFocusRestore(val: ResponsivePopoverDirectiveElement['preventFocusRestore']);
59
+ get preventFocusRestore(): ResponsivePopoverDirectiveElement['preventFocusRestore'];
60
+ set allowTargetOverlap(val: ResponsivePopoverDirectiveElement['allowTargetOverlap']);
61
+ get allowTargetOverlap(): ResponsivePopoverDirectiveElement['allowTargetOverlap'];
62
+ set headerText(val: ResponsivePopoverDirectiveElement['headerText']);
63
+ get headerText(): ResponsivePopoverDirectiveElement['headerText'];
64
+ set hideArrow(val: ResponsivePopoverDirectiveElement['hideArrow']);
65
+ get hideArrow(): ResponsivePopoverDirectiveElement['hideArrow'];
66
+ set hideBackdrop(val: ResponsivePopoverDirectiveElement['hideBackdrop']);
67
+ get hideBackdrop(): ResponsivePopoverDirectiveElement['hideBackdrop'];
68
+ set horizontalAlign(val: ResponsivePopoverDirectiveElement['horizontalAlign']);
69
+ get horizontalAlign(): ResponsivePopoverDirectiveElement['horizontalAlign'];
70
+ set modal(val: ResponsivePopoverDirectiveElement['modal']);
71
+ get modal(): ResponsivePopoverDirectiveElement['modal'];
72
+ set opener(val: ResponsivePopoverDirectiveElement['opener']);
73
+ get opener(): ResponsivePopoverDirectiveElement['opener'];
74
+ set placementType(val: ResponsivePopoverDirectiveElement['placementType']);
75
+ get placementType(): ResponsivePopoverDirectiveElement['placementType'];
76
+ set verticalAlign(val: ResponsivePopoverDirectiveElement['verticalAlign']);
77
+ get verticalAlign(): ResponsivePopoverDirectiveElement['verticalAlign'];
78
+ afterClose: Observable<ResponsivePopoverDirectiveEventsMap['afterClose']>;
79
+ afterOpen: Observable<ResponsivePopoverDirectiveEventsMap['afterOpen']>;
80
+ beforeClose: Observable<ResponsivePopoverDirectiveEventsMap['beforeClose']>;
81
+ beforeOpen: Observable<ResponsivePopoverDirectiveEventsMap['beforeOpen']>;
82
+ constructor(elementRef: ElementRef<ResponsivePopoverDirectiveElement>);
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<ResponsivePopoverDirective, never>;
100
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ResponsivePopoverDirective, "ui5-responsive-popover", ["ui5ResponsivePopover"], { "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 { ResponsivePopoverDirective, ResponsivePopoverDirectiveEventsMap, ResponsivePopoverDirectiveElement, };
@@ -0,0 +1,52 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/SegmentedButtonItem.js';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ interface SegmentedButtonItemDirectiveEventsMap extends Omit<HTMLElementEventMap, 'click'> {
6
+ click: CustomEvent<void>;
7
+ }
8
+ interface SegmentedButtonItemDirectiveElement extends Omit<HTMLElement, 'accessibilityAttributes' | 'accessibleName' | 'accessibleNameRef' | 'design' | 'disabled' | 'icon' | 'iconEnd' | 'submits' | 'tooltip' | 'pressed' | 'click'> {
9
+ accessibilityAttributes: Record<string, any>;
10
+ accessibleName: string;
11
+ accessibleNameRef: string;
12
+ design: 'Attention' | 'Default' | 'Emphasized' | 'Negative' | 'Positive' | 'Transparent';
13
+ disabled: boolean;
14
+ icon: string;
15
+ iconEnd: boolean;
16
+ submits: boolean;
17
+ tooltip: string;
18
+ pressed: boolean;
19
+ addEventListener<K extends keyof SegmentedButtonItemDirectiveEventsMap>(type: K, listener: (this: SegmentedButtonItemDirectiveElement, ev: SegmentedButtonItemDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
21
+ removeEventListener<K extends keyof SegmentedButtonItemDirectiveEventsMap>(type: K, listener: (this: SegmentedButtonItemDirectiveElement, ev: SegmentedButtonItemDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
22
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
23
+ }
24
+ declare class SegmentedButtonItemDirective {
25
+ private elementRef;
26
+ set accessibilityAttributes(val: SegmentedButtonItemDirectiveElement['accessibilityAttributes']);
27
+ get accessibilityAttributes(): SegmentedButtonItemDirectiveElement['accessibilityAttributes'];
28
+ set accessibleName(val: SegmentedButtonItemDirectiveElement['accessibleName']);
29
+ get accessibleName(): SegmentedButtonItemDirectiveElement['accessibleName'];
30
+ set accessibleNameRef(val: SegmentedButtonItemDirectiveElement['accessibleNameRef']);
31
+ get accessibleNameRef(): SegmentedButtonItemDirectiveElement['accessibleNameRef'];
32
+ set design(val: SegmentedButtonItemDirectiveElement['design']);
33
+ get design(): SegmentedButtonItemDirectiveElement['design'];
34
+ set disabled(val: SegmentedButtonItemDirectiveElement['disabled']);
35
+ get disabled(): SegmentedButtonItemDirectiveElement['disabled'];
36
+ set icon(val: SegmentedButtonItemDirectiveElement['icon']);
37
+ get icon(): SegmentedButtonItemDirectiveElement['icon'];
38
+ set iconEnd(val: SegmentedButtonItemDirectiveElement['iconEnd']);
39
+ get iconEnd(): SegmentedButtonItemDirectiveElement['iconEnd'];
40
+ set submits(val: SegmentedButtonItemDirectiveElement['submits']);
41
+ get submits(): SegmentedButtonItemDirectiveElement['submits'];
42
+ set tooltip(val: SegmentedButtonItemDirectiveElement['tooltip']);
43
+ get tooltip(): SegmentedButtonItemDirectiveElement['tooltip'];
44
+ set pressed(val: SegmentedButtonItemDirectiveElement['pressed']);
45
+ get pressed(): SegmentedButtonItemDirectiveElement['pressed'];
46
+ click: Observable<SegmentedButtonItemDirectiveEventsMap['click']>;
47
+ constructor(elementRef: ElementRef<SegmentedButtonItemDirectiveElement>);
48
+ get element(): typeof this.elementRef.nativeElement;
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<SegmentedButtonItemDirective, never>;
50
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SegmentedButtonItemDirective, "ui5-segmented-button-item", ["ui5SegmentedButtonItem"], { "accessibilityAttributes": "accessibilityAttributes"; "accessibleName": "accessibleName"; "accessibleNameRef": "accessibleNameRef"; "design": "design"; "disabled": "disabled"; "icon": "icon"; "iconEnd": "iconEnd"; "submits": "submits"; "tooltip": "tooltip"; "pressed": "pressed"; }, { "click": "click"; }, never, never, false, never>;
51
+ }
52
+ export { SegmentedButtonItemDirective, SegmentedButtonItemDirectiveEventsMap, SegmentedButtonItemDirectiveElement, };
@@ -0,0 +1,31 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/SegmentedButton.js';
3
+ import { SegmentedButtonItemDirective } from './segmented-button-item';
4
+ import { Observable } from 'rxjs';
5
+ import * as i0 from "@angular/core";
6
+ interface SegmentedButtonDirectiveEventsMap extends Omit<HTMLElementEventMap, 'selectionChange'> {
7
+ selectionChange: CustomEvent<{
8
+ selectedItem: HTMLElement;
9
+ }>;
10
+ }
11
+ interface SegmentedButtonDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'selectedItem' | 'selectionChange'> {
12
+ accessibleName: string;
13
+ selectedItem: SegmentedButtonItemDirective['element'];
14
+ addEventListener<K extends keyof SegmentedButtonDirectiveEventsMap>(type: K, listener: (this: SegmentedButtonDirectiveElement, ev: SegmentedButtonDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
15
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
16
+ removeEventListener<K extends keyof SegmentedButtonDirectiveEventsMap>(type: K, listener: (this: SegmentedButtonDirectiveElement, ev: SegmentedButtonDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
17
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
18
+ }
19
+ declare class SegmentedButtonDirective {
20
+ private elementRef;
21
+ set accessibleName(val: SegmentedButtonDirectiveElement['accessibleName']);
22
+ get accessibleName(): SegmentedButtonDirectiveElement['accessibleName'];
23
+ set selectedItem(val: SegmentedButtonDirectiveElement['selectedItem']);
24
+ get selectedItem(): SegmentedButtonDirectiveElement['selectedItem'];
25
+ selectionChange: Observable<SegmentedButtonDirectiveEventsMap['selectionChange']>;
26
+ constructor(elementRef: ElementRef<SegmentedButtonDirectiveElement>);
27
+ get element(): typeof this.elementRef.nativeElement;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<SegmentedButtonDirective, never>;
29
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SegmentedButtonDirective, "ui5-segmented-button", ["ui5SegmentedButton"], { "accessibleName": "accessibleName"; "selectedItem": "selectedItem"; }, { "selectionChange": "selectionChange"; }, never, never, false, never>;
30
+ }
31
+ export { SegmentedButtonDirective, SegmentedButtonDirectiveEventsMap, SegmentedButtonDirectiveElement, };
@@ -0,0 +1,48 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/Select.js';
3
+ import { OptionDirective } from './option';
4
+ import { Observable } from 'rxjs';
5
+ import * as i0 from "@angular/core";
6
+ interface SelectDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change'> {
7
+ change: CustomEvent<{
8
+ selectedOption: HTMLElement;
9
+ }>;
10
+ }
11
+ interface SelectDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'accessibleNameRef' | 'disabled' | 'name' | 'required' | 'selectedOption' | 'valueState' | 'change' | 'valueStateMessage'> {
12
+ accessibleName: string;
13
+ accessibleNameRef: string;
14
+ disabled: boolean;
15
+ name: string;
16
+ required: boolean;
17
+ selectedOption: OptionDirective['element'];
18
+ valueState: 'Error' | 'Information' | 'None' | 'Success' | 'Warning';
19
+ valueStateMessage: Array<HTMLElement>;
20
+ addEventListener<K extends keyof SelectDirectiveEventsMap>(type: K, listener: (this: SelectDirectiveElement, ev: SelectDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
22
+ removeEventListener<K extends keyof SelectDirectiveEventsMap>(type: K, listener: (this: SelectDirectiveElement, ev: SelectDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
23
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
24
+ }
25
+ declare class SelectDirective {
26
+ private elementRef;
27
+ set accessibleName(val: SelectDirectiveElement['accessibleName']);
28
+ get accessibleName(): SelectDirectiveElement['accessibleName'];
29
+ set accessibleNameRef(val: SelectDirectiveElement['accessibleNameRef']);
30
+ get accessibleNameRef(): SelectDirectiveElement['accessibleNameRef'];
31
+ set disabled(val: SelectDirectiveElement['disabled']);
32
+ get disabled(): SelectDirectiveElement['disabled'];
33
+ set name(val: SelectDirectiveElement['name']);
34
+ get name(): SelectDirectiveElement['name'];
35
+ set required(val: SelectDirectiveElement['required']);
36
+ get required(): SelectDirectiveElement['required'];
37
+ set selectedOption(val: SelectDirectiveElement['selectedOption']);
38
+ get selectedOption(): SelectDirectiveElement['selectedOption'];
39
+ set valueState(val: SelectDirectiveElement['valueState']);
40
+ get valueState(): SelectDirectiveElement['valueState'];
41
+ change: Observable<SelectDirectiveEventsMap['change']>;
42
+ constructor(elementRef: ElementRef<SelectDirectiveElement>);
43
+ get element(): typeof this.elementRef.nativeElement;
44
+ get valueStateMessage(): Array<HTMLElement>;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectDirective, never>;
46
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectDirective, "ui5-select", ["ui5Select"], { "accessibleName": "accessibleName"; "accessibleNameRef": "accessibleNameRef"; "disabled": "disabled"; "name": "name"; "required": "required"; "selectedOption": "selectedOption"; "valueState": "valueState"; }, { "change": "change"; }, never, never, false, never>;
47
+ }
48
+ export { SelectDirective, SelectDirectiveEventsMap, SelectDirectiveElement };
@@ -0,0 +1,76 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/SliderBase.js';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ interface SliderBaseDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change' | 'input'> {
6
+ change: CustomEvent<void>;
7
+ input: CustomEvent<void>;
8
+ }
9
+ interface SliderBaseDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'disabled' | 'labelInterval' | 'max' | 'min' | 'showTickmarks' | 'showTooltip' | 'step' | 'change' | 'input'> {
10
+ accessibleName: string;
11
+ disabled: boolean;
12
+ labelInterval: any;
13
+ max: any;
14
+ min: any;
15
+ showTickmarks: boolean;
16
+ showTooltip: boolean;
17
+ step: any;
18
+ addEventListener<K extends keyof SliderBaseDirectiveEventsMap>(type: K, listener: (this: SliderBaseDirectiveElement, ev: SliderBaseDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
19
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
20
+ removeEventListener<K extends keyof SliderBaseDirectiveEventsMap>(type: K, listener: (this: SliderBaseDirectiveElement, ev: SliderBaseDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
21
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
22
+ clipValue(): any;
23
+ computedValueFromPageX(): any;
24
+ focusInnerElement(): any;
25
+ getPageXValueFromEvent(): any;
26
+ getSteppedValue(): any;
27
+ getStoredPropertyState(): any;
28
+ getValueFromInteraction(): any;
29
+ handleDownBase(): any;
30
+ handleUpBase(): any;
31
+ isCurrentStateOutdated(): any;
32
+ isPropertyUpdated(): any;
33
+ storePropertyState(): any;
34
+ syncUIAndState(): any;
35
+ updateValue(): any;
36
+ }
37
+ declare class SliderBaseDirective {
38
+ private elementRef;
39
+ set accessibleName(val: SliderBaseDirectiveElement['accessibleName']);
40
+ get accessibleName(): SliderBaseDirectiveElement['accessibleName'];
41
+ set disabled(val: SliderBaseDirectiveElement['disabled']);
42
+ get disabled(): SliderBaseDirectiveElement['disabled'];
43
+ set labelInterval(val: SliderBaseDirectiveElement['labelInterval']);
44
+ get labelInterval(): SliderBaseDirectiveElement['labelInterval'];
45
+ set max(val: SliderBaseDirectiveElement['max']);
46
+ get max(): SliderBaseDirectiveElement['max'];
47
+ set min(val: SliderBaseDirectiveElement['min']);
48
+ get min(): SliderBaseDirectiveElement['min'];
49
+ set showTickmarks(val: SliderBaseDirectiveElement['showTickmarks']);
50
+ get showTickmarks(): SliderBaseDirectiveElement['showTickmarks'];
51
+ set showTooltip(val: SliderBaseDirectiveElement['showTooltip']);
52
+ get showTooltip(): SliderBaseDirectiveElement['showTooltip'];
53
+ set step(val: SliderBaseDirectiveElement['step']);
54
+ get step(): SliderBaseDirectiveElement['step'];
55
+ change: Observable<SliderBaseDirectiveEventsMap['change']>;
56
+ input: Observable<SliderBaseDirectiveEventsMap['input']>;
57
+ constructor(elementRef: ElementRef<SliderBaseDirectiveElement>);
58
+ get element(): typeof this.elementRef.nativeElement;
59
+ clipValue(): any;
60
+ computedValueFromPageX(): any;
61
+ focusInnerElement(): any;
62
+ getPageXValueFromEvent(): any;
63
+ getSteppedValue(): any;
64
+ getStoredPropertyState(): any;
65
+ getValueFromInteraction(): any;
66
+ handleDownBase(): any;
67
+ handleUpBase(): any;
68
+ isCurrentStateOutdated(): any;
69
+ isPropertyUpdated(): any;
70
+ storePropertyState(): any;
71
+ syncUIAndState(): any;
72
+ updateValue(): any;
73
+ static ɵfac: i0.ɵɵFactoryDeclaration<SliderBaseDirective, never>;
74
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SliderBaseDirective, "ui5-slider", ["ui5Slider"], { "accessibleName": "accessibleName"; "disabled": "disabled"; "labelInterval": "labelInterval"; "max": "max"; "min": "min"; "showTickmarks": "showTickmarks"; "showTooltip": "showTooltip"; "step": "step"; }, { "change": "change"; "input": "input"; }, never, never, false, never>;
75
+ }
76
+ export { SliderBaseDirective, SliderBaseDirectiveEventsMap, SliderBaseDirectiveElement, };
@@ -0,0 +1,86 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/Slider.js';
3
+ import { Observable } from 'rxjs';
4
+ import { GenericControlValueAccessor } from '../../generic-cva';
5
+ import * as i0 from "@angular/core";
6
+ interface SliderDirectiveEventsMap extends Omit<HTMLElementEventMap, 'change' | 'input'> {
7
+ change: CustomEvent<void>;
8
+ input: CustomEvent<void>;
9
+ }
10
+ interface SliderDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'disabled' | 'labelInterval' | 'max' | 'min' | 'showTickmarks' | 'showTooltip' | 'step' | 'value' | 'change' | 'input'> {
11
+ accessibleName: string;
12
+ disabled: boolean;
13
+ labelInterval: any;
14
+ max: any;
15
+ min: any;
16
+ showTickmarks: boolean;
17
+ showTooltip: boolean;
18
+ step: any;
19
+ value: any;
20
+ addEventListener<K extends keyof SliderDirectiveEventsMap>(type: K, listener: (this: SliderDirectiveElement, ev: SliderDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
22
+ removeEventListener<K extends keyof SliderDirectiveEventsMap>(type: K, listener: (this: SliderDirectiveElement, ev: SliderDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
23
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
24
+ clipValue(): any;
25
+ computedValueFromPageX(): any;
26
+ focusInnerElement(): any;
27
+ getPageXValueFromEvent(): any;
28
+ getSteppedValue(): any;
29
+ getStoredPropertyState(): any;
30
+ getValueFromInteraction(): any;
31
+ handleDownBase(): any;
32
+ handleUpBase(): any;
33
+ isCurrentStateOutdated(): any;
34
+ isPropertyUpdated(): any;
35
+ storePropertyState(): any;
36
+ syncUIAndState(): any;
37
+ updateValue(): any;
38
+ }
39
+ declare class SliderDirective {
40
+ private elementRef;
41
+ set accessibleName(val: SliderDirectiveElement['accessibleName']);
42
+ get accessibleName(): SliderDirectiveElement['accessibleName'];
43
+ set disabled(val: SliderDirectiveElement['disabled']);
44
+ get disabled(): SliderDirectiveElement['disabled'];
45
+ set labelInterval(val: SliderDirectiveElement['labelInterval']);
46
+ get labelInterval(): SliderDirectiveElement['labelInterval'];
47
+ set max(val: SliderDirectiveElement['max']);
48
+ get max(): SliderDirectiveElement['max'];
49
+ set min(val: SliderDirectiveElement['min']);
50
+ get min(): SliderDirectiveElement['min'];
51
+ set showTickmarks(val: SliderDirectiveElement['showTickmarks']);
52
+ get showTickmarks(): SliderDirectiveElement['showTickmarks'];
53
+ set showTooltip(val: SliderDirectiveElement['showTooltip']);
54
+ get showTooltip(): SliderDirectiveElement['showTooltip'];
55
+ set step(val: SliderDirectiveElement['step']);
56
+ get step(): SliderDirectiveElement['step'];
57
+ set value(val: SliderDirectiveElement['value']);
58
+ get value(): SliderDirectiveElement['value'];
59
+ change: Observable<SliderDirectiveEventsMap['change']>;
60
+ input: Observable<SliderDirectiveEventsMap['input']>;
61
+ constructor(elementRef: ElementRef<SliderDirectiveElement>);
62
+ get element(): typeof this.elementRef.nativeElement;
63
+ clipValue(): any;
64
+ computedValueFromPageX(): any;
65
+ focusInnerElement(): any;
66
+ getPageXValueFromEvent(): any;
67
+ getSteppedValue(): any;
68
+ getStoredPropertyState(): any;
69
+ getValueFromInteraction(): any;
70
+ handleDownBase(): any;
71
+ handleUpBase(): any;
72
+ isCurrentStateOutdated(): any;
73
+ isPropertyUpdated(): any;
74
+ storePropertyState(): any;
75
+ syncUIAndState(): any;
76
+ updateValue(): any;
77
+ static ɵfac: i0.ɵɵFactoryDeclaration<SliderDirective, never>;
78
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SliderDirective, "ui5-slider", ["ui5Slider"], { "accessibleName": "accessibleName"; "disabled": "disabled"; "labelInterval": "labelInterval"; "max": "max"; "min": "min"; "showTickmarks": "showTickmarks"; "showTooltip": "showTooltip"; "step": "step"; "value": "value"; }, { "change": "change"; "input": "input"; }, never, never, false, never>;
79
+ }
80
+ declare class SliderDirectiveCva extends GenericControlValueAccessor {
81
+ private elementRef;
82
+ constructor(elementRef: ElementRef<SliderDirective['element']>);
83
+ static ɵfac: i0.ɵɵFactoryDeclaration<SliderDirectiveCva, never>;
84
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SliderDirectiveCva, "ui5-slider", never, {}, {}, never, never, false, never>;
85
+ }
86
+ export { SliderDirective, SliderDirectiveCva, SliderDirectiveEventsMap, SliderDirectiveElement, };
@@ -0,0 +1,39 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/SplitButton.js';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ interface SplitButtonDirectiveEventsMap extends Omit<HTMLElementEventMap, 'arrowClick' | 'click'> {
6
+ arrowClick: CustomEvent<void>;
7
+ click: CustomEvent<void>;
8
+ }
9
+ interface SplitButtonDirectiveElement extends Omit<HTMLElement, 'accessibleName' | 'activeIcon' | 'design' | 'disabled' | 'icon' | 'arrowClick' | 'click'> {
10
+ accessibleName: string;
11
+ activeIcon: string;
12
+ design: 'Attention' | 'Default' | 'Emphasized' | 'Negative' | 'Positive' | 'Transparent';
13
+ disabled: boolean;
14
+ icon: string;
15
+ addEventListener<K extends keyof SplitButtonDirectiveEventsMap>(type: K, listener: (this: SplitButtonDirectiveElement, ev: SplitButtonDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
16
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
17
+ removeEventListener<K extends keyof SplitButtonDirectiveEventsMap>(type: K, listener: (this: SplitButtonDirectiveElement, ev: SplitButtonDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
18
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
19
+ }
20
+ declare class SplitButtonDirective {
21
+ private elementRef;
22
+ set accessibleName(val: SplitButtonDirectiveElement['accessibleName']);
23
+ get accessibleName(): SplitButtonDirectiveElement['accessibleName'];
24
+ set activeIcon(val: SplitButtonDirectiveElement['activeIcon']);
25
+ get activeIcon(): SplitButtonDirectiveElement['activeIcon'];
26
+ set design(val: SplitButtonDirectiveElement['design']);
27
+ get design(): SplitButtonDirectiveElement['design'];
28
+ set disabled(val: SplitButtonDirectiveElement['disabled']);
29
+ get disabled(): SplitButtonDirectiveElement['disabled'];
30
+ set icon(val: SplitButtonDirectiveElement['icon']);
31
+ get icon(): SplitButtonDirectiveElement['icon'];
32
+ arrowClick: Observable<SplitButtonDirectiveEventsMap['arrowClick']>;
33
+ click: Observable<SplitButtonDirectiveEventsMap['click']>;
34
+ constructor(elementRef: ElementRef<SplitButtonDirectiveElement>);
35
+ get element(): typeof this.elementRef.nativeElement;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonDirective, never>;
37
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SplitButtonDirective, "ui5-split-button", ["ui5SplitButton"], { "accessibleName": "accessibleName"; "activeIcon": "activeIcon"; "design": "design"; "disabled": "disabled"; "icon": "icon"; }, { "arrowClick": "arrowClick"; "click": "click"; }, never, never, false, never>;
38
+ }
39
+ export { SplitButtonDirective, SplitButtonDirectiveEventsMap, SplitButtonDirectiveElement, };
@@ -0,0 +1,52 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import '@ui5/webcomponents/dist/StandardListItem.js';
3
+ import { Observable } from 'rxjs';
4
+ import { ButtonDirective } from './button';
5
+ import * as i0 from "@angular/core";
6
+ interface StandardListItemDirectiveEventsMap extends Omit<HTMLElementEventMap, 'detailClick'> {
7
+ detailClick: CustomEvent<void>;
8
+ }
9
+ interface StandardListItemDirectiveElement extends Omit<HTMLElement, 'selected' | 'type' | 'accessibleName' | 'additionalText' | 'additionalTextState' | 'description' | 'icon' | 'iconEnd' | 'image' | 'detailClick' | 'deleteButton'> {
10
+ selected: boolean;
11
+ type: 'Active' | 'Detail' | 'Inactive';
12
+ accessibleName: string;
13
+ additionalText: string;
14
+ additionalTextState: 'Error' | 'Information' | 'None' | 'Success' | 'Warning';
15
+ description: string;
16
+ icon: string;
17
+ iconEnd: boolean;
18
+ image: string;
19
+ deleteButton: ButtonDirective['element'];
20
+ addEventListener<K extends keyof StandardListItemDirectiveEventsMap>(type: K, listener: (this: StandardListItemDirectiveElement, ev: StandardListItemDirectiveEventsMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
22
+ removeEventListener<K extends keyof StandardListItemDirectiveEventsMap>(type: K, listener: (this: StandardListItemDirectiveElement, ev: StandardListItemDirectiveEventsMap[K]) => any, options?: boolean | EventListenerOptions): void;
23
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
24
+ }
25
+ declare class StandardListItemDirective {
26
+ private elementRef;
27
+ set selected(val: StandardListItemDirectiveElement['selected']);
28
+ get selected(): StandardListItemDirectiveElement['selected'];
29
+ set type(val: StandardListItemDirectiveElement['type']);
30
+ get type(): StandardListItemDirectiveElement['type'];
31
+ set accessibleName(val: StandardListItemDirectiveElement['accessibleName']);
32
+ get accessibleName(): StandardListItemDirectiveElement['accessibleName'];
33
+ set additionalText(val: StandardListItemDirectiveElement['additionalText']);
34
+ get additionalText(): StandardListItemDirectiveElement['additionalText'];
35
+ set additionalTextState(val: StandardListItemDirectiveElement['additionalTextState']);
36
+ get additionalTextState(): StandardListItemDirectiveElement['additionalTextState'];
37
+ set description(val: StandardListItemDirectiveElement['description']);
38
+ get description(): StandardListItemDirectiveElement['description'];
39
+ set icon(val: StandardListItemDirectiveElement['icon']);
40
+ get icon(): StandardListItemDirectiveElement['icon'];
41
+ set iconEnd(val: StandardListItemDirectiveElement['iconEnd']);
42
+ get iconEnd(): StandardListItemDirectiveElement['iconEnd'];
43
+ set image(val: StandardListItemDirectiveElement['image']);
44
+ get image(): StandardListItemDirectiveElement['image'];
45
+ detailClick: Observable<StandardListItemDirectiveEventsMap['detailClick']>;
46
+ constructor(elementRef: ElementRef<StandardListItemDirectiveElement>);
47
+ get element(): typeof this.elementRef.nativeElement;
48
+ get deleteButton(): ButtonDirective['element'];
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<StandardListItemDirective, never>;
50
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StandardListItemDirective, "ui5-li", ["ui5Li"], { "selected": "selected"; "type": "type"; "accessibleName": "accessibleName"; "additionalText": "additionalText"; "additionalTextState": "additionalTextState"; "description": "description"; "icon": "icon"; "iconEnd": "iconEnd"; "image": "image"; }, { "detailClick": "detailClick"; }, never, never, false, never>;
51
+ }
52
+ export { StandardListItemDirective, StandardListItemDirectiveEventsMap, StandardListItemDirectiveElement, };