desy-angular 5.0.0 → 5.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/bundles/desy-angular.umd.js +1454 -344
  2. package/bundles/desy-angular.umd.js.map +1 -1
  3. package/bundles/desy-angular.umd.min.js +2 -2
  4. package/bundles/desy-angular.umd.min.js.map +1 -1
  5. package/desy-angular.d.ts +29 -24
  6. package/desy-angular.metadata.json +1 -1
  7. package/esm2015/desy-angular.js +30 -25
  8. package/esm2015/lib/desy-buttons/components/dropdown/dropdown.component.js +70 -70
  9. package/esm2015/lib/desy-buttons/components/listbox/listbox-label/listbox-label.component.js +6 -15
  10. package/esm2015/lib/desy-buttons/components/listbox/listbox.component.js +67 -55
  11. package/esm2015/lib/desy-buttons/components/toggle/toggle-off-state/toggle-off-state.component.js +15 -0
  12. package/esm2015/lib/desy-buttons/components/toggle/toggle-on-state/toggle-on-state.component.js +15 -0
  13. package/esm2015/lib/desy-buttons/components/toggle/toggle.component.js +41 -0
  14. package/esm2015/lib/desy-buttons/desy-buttons.module.js +12 -3
  15. package/esm2015/lib/desy-forms/components/tree/interfaces/itree-item.js +3 -0
  16. package/esm2015/lib/desy-forms/components/tree/interfaces/quit-tree-item-focus-options.js +2 -0
  17. package/esm2015/lib/desy-forms/components/tree/tree-checkbox/tree-checkbox.component.js +151 -0
  18. package/esm2015/lib/desy-forms/components/tree/tree-item/tree-item.component.js +370 -0
  19. package/esm2015/lib/desy-forms/components/tree/tree-items-generator/tree-items-generator.component.js +25 -0
  20. package/esm2015/lib/desy-forms/components/tree/tree-sub/tree-sub.component.js +14 -0
  21. package/esm2015/lib/desy-forms/components/tree/tree.component.js +396 -0
  22. package/esm2015/lib/desy-forms/desy-forms.module.js +15 -1
  23. package/esm2015/lib/desy-nav/components/header/header-dropdown/header-dropdown.component.js +8 -3
  24. package/esm2015/lib/desy-nav/components/header/header-offcanvas/header-offcanvas.component.js +7 -4
  25. package/esm2015/lib/desy-nav/components/header/header-subnav/header-subnav.component.js +2 -2
  26. package/esm2015/lib/desy-nav/components/menu-vertical/menu-vertical.component.js +3 -3
  27. package/esm2015/lib/desy-nav/components/menubar/menubar.component.js +1 -1
  28. package/esm2015/lib/desy-nav/components/nav/nav.component.js +38 -2
  29. package/esm2015/lib/desy-pagination/components/pagination/pagination.component.js +2 -2
  30. package/esm2015/public-api.js +5 -1
  31. package/fesm2015/desy-angular.js +1361 -309
  32. package/fesm2015/desy-angular.js.map +1 -1
  33. package/lib/desy-buttons/components/dropdown/dropdown.component.d.ts +4 -7
  34. package/lib/desy-buttons/components/listbox/listbox-label/listbox-label.component.d.ts +2 -6
  35. package/lib/desy-buttons/components/listbox/listbox.component.d.ts +1 -2
  36. package/lib/desy-buttons/components/toggle/toggle-off-state/toggle-off-state.component.d.ts +5 -0
  37. package/lib/desy-buttons/components/toggle/toggle-on-state/toggle-on-state.component.d.ts +5 -0
  38. package/lib/desy-buttons/components/toggle/toggle.component.d.ts +15 -0
  39. package/lib/desy-forms/components/tree/interfaces/itree-item.d.ts +5 -0
  40. package/lib/desy-forms/components/tree/interfaces/quit-tree-item-focus-options.d.ts +5 -0
  41. package/lib/desy-forms/components/tree/tree-checkbox/tree-checkbox.component.d.ts +43 -0
  42. package/lib/desy-forms/components/tree/tree-item/tree-item.component.d.ts +87 -0
  43. package/lib/desy-forms/components/tree/tree-items-generator/tree-items-generator.component.d.ts +10 -0
  44. package/lib/desy-forms/components/tree/tree-sub/tree-sub.component.d.ts +6 -0
  45. package/lib/desy-forms/components/tree/tree.component.d.ts +107 -0
  46. package/lib/desy-nav/components/header/header-dropdown/header-dropdown.component.d.ts +2 -0
  47. package/lib/desy-nav/components/nav/nav.component.d.ts +4 -0
  48. package/package.json +2 -2
  49. package/public-api.d.ts +4 -0
package/desy-angular.d.ts CHANGED
@@ -2,33 +2,38 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './public-api';
5
- export { DateInputDayComponent as ɵbe } from './lib/desy-forms/components/date-input/date-input-day/date-input-day.component';
6
- export { DateInputDividerComponent as ɵbd } from './lib/desy-forms/components/date-input/date-input-divider/date-input-divider.component';
5
+ export { ToggleOffStateComponent as ɵu } from './lib/desy-buttons/components/toggle/toggle-off-state/toggle-off-state.component';
6
+ export { ToggleOnStateComponent as ɵt } from './lib/desy-buttons/components/toggle/toggle-on-state/toggle-on-state.component';
7
+ export { ToggleComponent as ɵs } from './lib/desy-buttons/components/toggle/toggle.component';
8
+ export { DateInputDayComponent as ɵbj } from './lib/desy-forms/components/date-input/date-input-day/date-input-day.component';
9
+ export { DateInputDividerComponent as ɵbi } from './lib/desy-forms/components/date-input/date-input-divider/date-input-divider.component';
7
10
  export { DateInputItemComponent as ɵj } from './lib/desy-forms/components/date-input/date-input-item/date-input-item.component';
8
- export { DateInputMonthComponent as ɵbf } from './lib/desy-forms/components/date-input/date-input-month/date-input-month.component';
9
- export { DateInputYearComponent as ɵbg } from './lib/desy-forms/components/date-input/date-input-year/date-input-year.component';
11
+ export { DateInputMonthComponent as ɵbk } from './lib/desy-forms/components/date-input/date-input-month/date-input-month.component';
12
+ export { DateInputYearComponent as ɵbl } from './lib/desy-forms/components/date-input/date-input-year/date-input-year.component';
10
13
  export { FormFieldComponent as ɵf } from './lib/desy-forms/components/form-field/form-field.component';
11
14
  export { InputGroupItemComponent as ɵi } from './lib/desy-forms/components/input-group/input-group-item/input-group-item.component';
12
15
  export { SelectItemComponent as ɵg } from './lib/desy-forms/components/select/select-item/select-item.component';
13
- export { TemplateDrivenWrapperComponent as ɵbc } from './lib/desy-forms/components/template-driven-wrapper/template-driven-wrapper.component';
14
- export { HeaderNavigationItemComponent as ɵk } from './lib/desy-nav/components/header/header-navigation/header-navigation-item/header-navigation-item.component';
15
- export { MenubaritemDirective as ɵl } from './lib/desy-nav/components/menubar/directives/menubaritem.directive';
16
- export { CellDirective as ɵn } from './lib/desy-tables/directives/cell.directive';
17
- export { FocusClickedCellDirective as ɵbh } from './lib/desy-tables/directives/focus-clicked-cell.directive';
18
- export { RowDirective as ɵm } from './lib/desy-tables/directives/row.directive';
19
- export { PanelComponent as ɵp } from './lib/desy-views/components/tabs/panel/panel.component';
20
- export { TabItemComponent as ɵo } from './lib/desy-views/components/tabs/tab-item/tab-item.component';
21
- export { TooltipComponent as ɵbb } from './lib/desy-views/components/tooltip/tooltip.component';
22
- export { AccessibilityAndContentRequiredComponent as ɵb, AccessibilityAndTextOrHtmlRequiredComponent as ɵc, AccessibilityComponent as ɵa, ContentBaseComponent as ɵe, TextOrHtmlRequiredComponent as ɵr } from './lib/shared/components';
16
+ export { TemplateDrivenWrapperComponent as ɵbh } from './lib/desy-forms/components/template-driven-wrapper/template-driven-wrapper.component';
17
+ export { ITreeItem as ɵk } from './lib/desy-forms/components/tree/interfaces/itree-item';
18
+ export { TreeCheckboxComponent as ɵl } from './lib/desy-forms/components/tree/tree-checkbox/tree-checkbox.component';
19
+ export { HeaderNavigationItemComponent as ɵm } from './lib/desy-nav/components/header/header-navigation/header-navigation-item/header-navigation-item.component';
20
+ export { MenubaritemDirective as ɵn } from './lib/desy-nav/components/menubar/directives/menubaritem.directive';
21
+ export { CellDirective as ɵp } from './lib/desy-tables/directives/cell.directive';
22
+ export { FocusClickedCellDirective as ɵbm } from './lib/desy-tables/directives/focus-clicked-cell.directive';
23
+ export { RowDirective as ɵo } from './lib/desy-tables/directives/row.directive';
24
+ export { PanelComponent as ɵr } from './lib/desy-views/components/tabs/panel/panel.component';
25
+ export { TabItemComponent as ɵq } from './lib/desy-views/components/tabs/tab-item/tab-item.component';
26
+ export { TooltipComponent as ɵbg } from './lib/desy-views/components/tooltip/tooltip.component';
27
+ export { AccessibilityAndContentRequiredComponent as ɵb, AccessibilityAndTextOrHtmlRequiredComponent as ɵc, AccessibilityComponent as ɵa, ContentBaseComponent as ɵe, TextOrHtmlRequiredComponent as ɵw } from './lib/shared/components';
23
28
  export { DesyContentChild as ɵd } from './lib/shared/decorators/desy-content-child.decorator';
24
29
  export { DesyOnInputChange as ɵh } from './lib/shared/decorators/desy-on-input-change.decorator';
25
- export { AttributeChangeDirective as ɵv } from './lib/shared/directives/attribute-change.directive';
26
- export { ClickOutsideDirective as ɵx } from './lib/shared/directives/click-outside.directive';
27
- export { ContentChangeDirective as ɵy } from './lib/shared/directives/content-change.directive';
28
- export { ContentEmptyDirective as ɵz } from './lib/shared/directives/content-empty.directive';
29
- export { CustomInnerContentDirective as ɵba } from './lib/shared/directives/custom-inner-content.directive';
30
- export { InnerContentDirective as ɵw } from './lib/shared/directives/inner-content.directive';
31
- export { ExternalHrefPipe as ɵu } from './lib/shared/pipes/external-href.pipe';
32
- export { InnerHtmlPipe as ɵs } from './lib/shared/pipes/inner-html.pipe';
33
- export { MakeHtmlListPipe as ɵt } from './lib/shared/pipes/make-html-list.pipe';
34
- export { SharedModule as ɵq } from './lib/shared/shared.module';
30
+ export { AttributeChangeDirective as ɵba } from './lib/shared/directives/attribute-change.directive';
31
+ export { ClickOutsideDirective as ɵbc } from './lib/shared/directives/click-outside.directive';
32
+ export { ContentChangeDirective as ɵbd } from './lib/shared/directives/content-change.directive';
33
+ export { ContentEmptyDirective as ɵbe } from './lib/shared/directives/content-empty.directive';
34
+ export { CustomInnerContentDirective as ɵbf } from './lib/shared/directives/custom-inner-content.directive';
35
+ export { InnerContentDirective as ɵbb } from './lib/shared/directives/inner-content.directive';
36
+ export { ExternalHrefPipe as ɵz } from './lib/shared/pipes/external-href.pipe';
37
+ export { InnerHtmlPipe as ɵx } from './lib/shared/pipes/inner-html.pipe';
38
+ export { MakeHtmlListPipe as ɵy } from './lib/shared/pipes/make-html-list.pipe';
39
+ export { SharedModule as ɵv } from './lib/shared/shared.module';