@flywheel-io/vision 0.11.3 → 0.13.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 (142) hide show
  1. package/README.md +28 -2
  2. package/components/button/button.component.d.ts +2 -1
  3. package/components/button/button.directives.d.ts +37 -0
  4. package/components/button/button.module.d.ts +5 -4
  5. package/components/card/card-attribute/card-attribute.component.d.ts +7 -0
  6. package/components/card/card-author/card-author.component.d.ts +7 -0
  7. package/components/card/card-content/card-content.component.d.ts +5 -0
  8. package/components/card/card-footer/card-footer.component.d.ts +9 -0
  9. package/components/card/card-header/card-header.component.d.ts +8 -0
  10. package/components/card/card.component.d.ts +12 -0
  11. package/components/card/card.module.d.ts +15 -0
  12. package/components/chip/chip.component.d.ts +1 -0
  13. package/components/dialog/dialog-confirm.component.d.ts +22 -0
  14. package/components/dialog/dialog-simple.component.d.ts +19 -0
  15. package/components/dialog/dialog.component.d.ts +41 -0
  16. package/components/dialog/dialogs.module.d.ts +15 -0
  17. package/components/icon-button/icon-button.component.d.ts +1 -0
  18. package/components/layouts/context/context.component.d.ts +12 -0
  19. package/components/layouts/layout-group.component.d.ts +7 -0
  20. package/components/layouts/layout-width.d.ts +6 -0
  21. package/components/layouts/layouts.module.d.ts +9 -0
  22. package/components/layouts/toolbar/toolbar.component.d.ts +5 -0
  23. package/components/{dialog → legacy/dialog}/choice-dialog.component.d.ts +4 -1
  24. package/components/{dialog → legacy/dialog}/confirm-dialog.component.d.ts +4 -1
  25. package/components/{dialog → legacy/dialog}/dialog.module.d.ts +4 -1
  26. package/components/{dialog → legacy/dialog}/dialog.service.d.ts +3 -0
  27. package/components/{dialog → legacy/dialog}/error-dialog.component.d.ts +4 -1
  28. package/components/{dialog → legacy/dialog}/portal-dialog.component.d.ts +4 -1
  29. package/components/{notification → legacy/notification}/notification.module.d.ts +2 -2
  30. package/components/menu/menu-container/menu-container.component.d.ts +21 -0
  31. package/components/menu/menu-header/menu-header.component.d.ts +5 -0
  32. package/components/menu/menu-item/menu-item.component.d.ts +22 -0
  33. package/components/menu/menu-separator/menu-separator.component.d.ts +5 -0
  34. package/components/menu/menu.component.d.ts +32 -0
  35. package/components/menu/menu.module.d.ts +20 -0
  36. package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +54 -0
  37. package/components/select-menu/select-menu.component.d.ts +38 -0
  38. package/components/select-menu/select-menu.module.d.ts +16 -0
  39. package/components/stepper/step.component.d.ts +20 -0
  40. package/components/stepper/stepper.component.d.ts +23 -0
  41. package/components/stepper/stepper.module.d.ts +11 -0
  42. package/components/text-input/text-input.component.d.ts +2 -1
  43. package/esm2020/components/alert/alert.component.mjs +2 -2
  44. package/esm2020/components/button/button.component.mjs +7 -4
  45. package/esm2020/components/button/button.directives.mjs +129 -0
  46. package/esm2020/components/button/button.module.mjs +24 -3
  47. package/esm2020/components/button-group/button-group.component.mjs +2 -2
  48. package/esm2020/components/card/card-attribute/card-attribute.component.mjs +17 -0
  49. package/esm2020/components/card/card-author/card-author.component.mjs +15 -0
  50. package/esm2020/components/card/card-content/card-content.component.mjs +11 -0
  51. package/esm2020/components/card/card-footer/card-footer.component.mjs +29 -0
  52. package/esm2020/components/card/card-header/card-header.component.mjs +19 -0
  53. package/esm2020/components/card/card.component.mjs +27 -0
  54. package/esm2020/components/card/card.module.mjs +57 -0
  55. package/esm2020/components/chip/chip.component.mjs +9 -3
  56. package/esm2020/components/dialog/dialog-confirm.component.mjs +56 -0
  57. package/esm2020/components/dialog/dialog-simple.component.mjs +46 -0
  58. package/esm2020/components/dialog/dialog.component.mjs +122 -0
  59. package/esm2020/components/dialog/dialogs.module.mjs +66 -0
  60. package/esm2020/components/icon-button/icon-button.component.mjs +6 -3
  61. package/esm2020/components/layouts/context/context.component.mjs +38 -0
  62. package/esm2020/components/layouts/layout-group.component.mjs +27 -0
  63. package/esm2020/components/layouts/layout-width.mjs +8 -0
  64. package/esm2020/components/layouts/layouts.module.mjs +29 -0
  65. package/esm2020/components/layouts/toolbar/toolbar.component.mjs +11 -0
  66. package/esm2020/components/legacy/dialog/choice-dialog.component.mjs +107 -0
  67. package/esm2020/components/legacy/dialog/confirm-dialog.component.mjs +61 -0
  68. package/esm2020/components/legacy/dialog/dialog.module.mjs +82 -0
  69. package/esm2020/components/legacy/dialog/dialog.service.mjs +75 -0
  70. package/esm2020/components/legacy/dialog/error-dialog.component.mjs +52 -0
  71. package/esm2020/components/legacy/dialog/portal-dialog.component.mjs +109 -0
  72. package/esm2020/components/legacy/notification/notification/notification.component.mjs +74 -0
  73. package/esm2020/components/legacy/notification/notification/notification.model.mjs +9 -0
  74. package/esm2020/components/legacy/notification/notification-container/notification-container.component.mjs +98 -0
  75. package/esm2020/components/legacy/notification/notification-timer.service.mjs +29 -0
  76. package/esm2020/components/legacy/notification/notification.module.mjs +51 -0
  77. package/esm2020/components/legacy/notification/notification.service.mjs +36 -0
  78. package/esm2020/components/legacy/popover/popover-trigger.component.mjs +66 -0
  79. package/esm2020/components/legacy/popover/popover-trigger.directive.mjs +139 -0
  80. package/esm2020/components/{popover → legacy/popover}/popover.component.mjs +1 -1
  81. package/esm2020/components/{popover → legacy/popover}/popover.module.mjs +1 -1
  82. package/esm2020/components/menu/menu-container/menu-container.component.mjs +71 -0
  83. package/esm2020/components/menu/menu-header/menu-header.component.mjs +11 -0
  84. package/esm2020/components/menu/menu-item/menu-item.component.mjs +70 -0
  85. package/esm2020/components/menu/menu-separator/menu-separator.component.mjs +11 -0
  86. package/esm2020/components/menu/menu.component.mjs +165 -0
  87. package/esm2020/components/menu/menu.module.mjs +76 -0
  88. package/esm2020/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +281 -0
  89. package/esm2020/components/select-menu/select-menu.component.mjs +127 -0
  90. package/esm2020/components/select-menu/select-menu.module.mjs +57 -0
  91. package/esm2020/components/stepper/step.component.mjs +52 -0
  92. package/esm2020/components/stepper/stepper.component.mjs +95 -0
  93. package/esm2020/components/stepper/stepper.module.mjs +37 -0
  94. package/esm2020/components/text-input/text-input.component.mjs +6 -4
  95. package/esm2020/public-api.mjs +44 -16
  96. package/fesm2015/flywheel-io-vision.mjs +1927 -249
  97. package/fesm2015/flywheel-io-vision.mjs.map +1 -1
  98. package/fesm2020/flywheel-io-vision.mjs +1925 -253
  99. package/fesm2020/flywheel-io-vision.mjs.map +1 -1
  100. package/package.json +1 -9
  101. package/public-api.d.ts +43 -15
  102. package/scss/config/general.scss +4 -0
  103. package/scss/config/typography.scss +1 -1
  104. package/scss/config/vision-colors.scss +5 -5
  105. package/scss/icons/_icon-glyphs.scss +1 -0
  106. package/styles.css +12 -7
  107. package/elements/README.md +0 -20
  108. package/elements/elements.d.ts +0 -3
  109. package/elements/index.d.ts +0 -5
  110. package/elements/polyfills.d.ts +0 -57
  111. package/elements/public-api.d.ts +0 -1
  112. package/esm2020/components/dialog/choice-dialog.component.mjs +0 -90
  113. package/esm2020/components/dialog/confirm-dialog.component.mjs +0 -54
  114. package/esm2020/components/dialog/dialog.module.mjs +0 -79
  115. package/esm2020/components/dialog/dialog.service.mjs +0 -72
  116. package/esm2020/components/dialog/error-dialog.component.mjs +0 -49
  117. package/esm2020/components/dialog/portal-dialog.component.mjs +0 -106
  118. package/esm2020/components/notification/notification/notification.component.mjs +0 -74
  119. package/esm2020/components/notification/notification/notification.model.mjs +0 -9
  120. package/esm2020/components/notification/notification-container/notification-container.component.mjs +0 -98
  121. package/esm2020/components/notification/notification-timer.service.mjs +0 -29
  122. package/esm2020/components/notification/notification.module.mjs +0 -51
  123. package/esm2020/components/notification/notification.service.mjs +0 -36
  124. package/esm2020/components/popover/popover-trigger.component.mjs +0 -66
  125. package/esm2020/components/popover/popover-trigger.directive.mjs +0 -139
  126. package/esm2020/elements/elements.mjs +0 -59
  127. package/esm2020/elements/flywheel-io-vision-elements.mjs +0 -5
  128. package/esm2020/elements/polyfills.mjs +0 -60
  129. package/esm2020/elements/public-api.mjs +0 -2
  130. package/fesm2015/flywheel-io-vision-elements.mjs +0 -83
  131. package/fesm2015/flywheel-io-vision-elements.mjs.map +0 -1
  132. package/fesm2020/flywheel-io-vision-elements.mjs +0 -83
  133. package/fesm2020/flywheel-io-vision-elements.mjs.map +0 -1
  134. /package/components/{notification → legacy/notification}/notification/notification.component.d.ts +0 -0
  135. /package/components/{notification → legacy/notification}/notification/notification.model.d.ts +0 -0
  136. /package/components/{notification → legacy/notification}/notification-container/notification-container.component.d.ts +0 -0
  137. /package/components/{notification → legacy/notification}/notification-timer.service.d.ts +0 -0
  138. /package/components/{notification → legacy/notification}/notification.service.d.ts +0 -0
  139. /package/components/{popover → legacy/popover}/popover-trigger.component.d.ts +0 -0
  140. /package/components/{popover → legacy/popover}/popover-trigger.directive.d.ts +0 -0
  141. /package/components/{popover → legacy/popover}/popover.component.d.ts +0 -0
  142. /package/components/{popover → legacy/popover}/popover.module.d.ts +0 -0
@@ -0,0 +1,57 @@
1
+ import { CdkMenuModule } from '@angular/cdk/menu';
2
+ import { CommonModule } from '@angular/common';
3
+ import { NgModule } from '@angular/core';
4
+ import { FormsModule } from '@angular/forms';
5
+ import { RouterModule } from '@angular/router';
6
+ import { FwChipModule } from '../chip/chip.module';
7
+ import { FwIconModule } from '../icon/icon.module';
8
+ import { FwMenuModule } from '../menu/menu.module';
9
+ import { FwTextInputModule } from '../text-input/text-input.module';
10
+ import { FwMultiSelectMenuComponent } from './multi-select-menu/multi-select-menu.component';
11
+ import { FwSelectMenuComponent } from './select-menu.component';
12
+ import * as i0 from "@angular/core";
13
+ export class FwSelectMenuModule {
14
+ }
15
+ FwSelectMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FwSelectMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16
+ FwSelectMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: FwSelectMenuModule, declarations: [FwMultiSelectMenuComponent,
17
+ FwSelectMenuComponent], imports: [CommonModule,
18
+ CdkMenuModule,
19
+ FormsModule,
20
+ FwChipModule,
21
+ FwIconModule,
22
+ FwMenuModule,
23
+ FwTextInputModule,
24
+ RouterModule], exports: [FwMultiSelectMenuComponent,
25
+ FwSelectMenuComponent] });
26
+ FwSelectMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FwSelectMenuModule, imports: [CommonModule,
27
+ CdkMenuModule,
28
+ FormsModule,
29
+ FwChipModule,
30
+ FwIconModule,
31
+ FwMenuModule,
32
+ FwTextInputModule,
33
+ RouterModule] });
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FwSelectMenuModule, decorators: [{
35
+ type: NgModule,
36
+ args: [{
37
+ imports: [
38
+ CommonModule,
39
+ CdkMenuModule,
40
+ FormsModule,
41
+ FwChipModule,
42
+ FwIconModule,
43
+ FwMenuModule,
44
+ FwTextInputModule,
45
+ RouterModule,
46
+ ],
47
+ exports: [
48
+ FwMultiSelectMenuComponent,
49
+ FwSelectMenuComponent,
50
+ ],
51
+ declarations: [
52
+ FwMultiSelectMenuComponent,
53
+ FwSelectMenuComponent,
54
+ ],
55
+ }]
56
+ }] });
57
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LW1lbnUubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvc2VsZWN0LW1lbnUvc2VsZWN0LW1lbnUubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUNsRCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDN0MsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBRS9DLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDbkQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ25ELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3BFLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLGlEQUFpRCxDQUFDO0FBQzdGLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDOztBQXNCaEUsTUFBTSxPQUFPLGtCQUFrQjs7K0dBQWxCLGtCQUFrQjtnSEFBbEIsa0JBQWtCLGlCQUozQiwwQkFBMEI7UUFDMUIscUJBQXFCLGFBZnJCLFlBQVk7UUFDWixhQUFhO1FBQ2IsV0FBVztRQUNYLFlBQVk7UUFDWixZQUFZO1FBQ1osWUFBWTtRQUNaLGlCQUFpQjtRQUNqQixZQUFZLGFBR1osMEJBQTBCO1FBQzFCLHFCQUFxQjtnSEFPWixrQkFBa0IsWUFsQjNCLFlBQVk7UUFDWixhQUFhO1FBQ2IsV0FBVztRQUNYLFlBQVk7UUFDWixZQUFZO1FBQ1osWUFBWTtRQUNaLGlCQUFpQjtRQUNqQixZQUFZOzJGQVdILGtCQUFrQjtrQkFwQjlCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osYUFBYTt3QkFDYixXQUFXO3dCQUNYLFlBQVk7d0JBQ1osWUFBWTt3QkFDWixZQUFZO3dCQUNaLGlCQUFpQjt3QkFDakIsWUFBWTtxQkFDYjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsMEJBQTBCO3dCQUMxQixxQkFBcUI7cUJBQ3RCO29CQUNELFlBQVksRUFBRTt3QkFDWiwwQkFBMEI7d0JBQzFCLHFCQUFxQjtxQkFDdEI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDZGtNZW51TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL21lbnUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IFJvdXRlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5cbmltcG9ydCB7IEZ3Q2hpcE1vZHVsZSB9IGZyb20gJy4uL2NoaXAvY2hpcC5tb2R1bGUnO1xuaW1wb3J0IHsgRndJY29uTW9kdWxlIH0gZnJvbSAnLi4vaWNvbi9pY29uLm1vZHVsZSc7XG5pbXBvcnQgeyBGd01lbnVNb2R1bGUgfSBmcm9tICcuLi9tZW51L21lbnUubW9kdWxlJztcbmltcG9ydCB7IEZ3VGV4dElucHV0TW9kdWxlIH0gZnJvbSAnLi4vdGV4dC1pbnB1dC90ZXh0LWlucHV0Lm1vZHVsZSc7XG5pbXBvcnQgeyBGd011bHRpU2VsZWN0TWVudUNvbXBvbmVudCB9IGZyb20gJy4vbXVsdGktc2VsZWN0LW1lbnUvbXVsdGktc2VsZWN0LW1lbnUuY29tcG9uZW50JztcbmltcG9ydCB7IEZ3U2VsZWN0TWVudUNvbXBvbmVudCB9IGZyb20gJy4vc2VsZWN0LW1lbnUuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBDZGtNZW51TW9kdWxlLFxuICAgIEZvcm1zTW9kdWxlLFxuICAgIEZ3Q2hpcE1vZHVsZSxcbiAgICBGd0ljb25Nb2R1bGUsXG4gICAgRndNZW51TW9kdWxlLFxuICAgIEZ3VGV4dElucHV0TW9kdWxlLFxuICAgIFJvdXRlck1vZHVsZSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIEZ3TXVsdGlTZWxlY3RNZW51Q29tcG9uZW50LFxuICAgIEZ3U2VsZWN0TWVudUNvbXBvbmVudCxcbiAgXSxcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgRndNdWx0aVNlbGVjdE1lbnVDb21wb25lbnQsXG4gICAgRndTZWxlY3RNZW51Q29tcG9uZW50LFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBGd1NlbGVjdE1lbnVNb2R1bGUge1xufVxuIl19