@theseam/ui-common 0.4.18 → 0.4.19-beta.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 (134) hide show
  1. package/breadcrumbs/breadcrumbs/breadcrumbs.component.scss +1 -1
  2. package/datatable/datatable/datatable.component.d.ts +10 -1
  3. package/datatable/models/action-item-column-position.d.ts +13 -0
  4. package/datatable/services/columns-manager.service.d.ts +7 -0
  5. package/datatable/utils/create-action-menu-column.d.ts +1 -1
  6. package/esm2020/breadcrumbs/breadcrumbs/breadcrumbs.component.mjs +2 -2
  7. package/esm2020/datatable/datatable/datatable.component.mjs +20 -4
  8. package/esm2020/datatable/datatable-action-menu/datatable-action-menu.component.mjs +2 -2
  9. package/esm2020/datatable/datatable-column-preferences-button/datatable-column-preferences-button.component.mjs +1 -1
  10. package/esm2020/datatable/datatable-export-button/datatable-export-button.component.mjs +1 -1
  11. package/esm2020/datatable/models/action-item-column-position.mjs +5 -0
  12. package/esm2020/datatable/services/columns-manager.service.mjs +27 -2
  13. package/esm2020/datatable/utils/create-action-menu-column.mjs +4 -3
  14. package/esm2020/datatable-dynamic/datatable-dynamic-action-menu/datatable-dynamic-action-menu.component.mjs +1 -1
  15. package/esm2020/datatable-dynamic/datatable-dynamic.component.mjs +1 -1
  16. package/esm2020/framework/base-layout/base-layout.component.mjs +14 -4
  17. package/esm2020/framework/base-layout/base-layout.module.mjs +6 -1
  18. package/esm2020/framework/base-layout/directives/base-layout-nav-toggle.directive.mjs +21 -5
  19. package/esm2020/framework/base-layout/directives/base-layout-side-bar-header.directive.mjs +16 -0
  20. package/esm2020/framework/base-layout/index.mjs +2 -1
  21. package/esm2020/framework/nav/horizontal-nav/horizontal-nav.component.mjs +55 -0
  22. package/esm2020/framework/nav/index.mjs +6 -0
  23. package/esm2020/framework/nav/nav-item/nav-item.component.mjs +227 -0
  24. package/esm2020/framework/nav/nav-utils.mjs +107 -0
  25. package/esm2020/framework/nav/nav.models.mjs +2 -0
  26. package/esm2020/framework/nav/nav.module.mjs +67 -0
  27. package/esm2020/framework/nav/nav.service.mjs +204 -0
  28. package/esm2020/framework/public-api.mjs +2 -1
  29. package/esm2020/framework/schema-form/schema-form-framework.mjs +5 -5
  30. package/esm2020/framework/schema-form-controls/schema-form-input/schema-form-input.component.mjs +3 -3
  31. package/esm2020/framework/schema-form-controls/schema-form-select/schema-form-select.component.mjs +3 -3
  32. package/esm2020/framework/schema-form-controls/schema-form-submit-split/schema-form-submit-split.component.mjs +2 -2
  33. package/esm2020/framework/side-nav/side-nav-item/side-nav-item.component.mjs +28 -67
  34. package/esm2020/framework/side-nav/side-nav-toggle/side-nav-toggle.component.mjs +12 -5
  35. package/esm2020/framework/side-nav/side-nav.component.mjs +116 -38
  36. package/esm2020/framework/side-nav/side-nav.models.mjs +1 -1
  37. package/esm2020/framework/side-nav/side-nav.module.mjs +9 -39
  38. package/esm2020/framework/side-nav/side-nav.service.mjs +1 -1
  39. package/esm2020/framework/top-bar/index.mjs +3 -1
  40. package/esm2020/framework/top-bar/top-bar-compact-menu-btn-detail.directive.mjs +16 -0
  41. package/esm2020/framework/top-bar/top-bar-item.directive.mjs +10 -4
  42. package/esm2020/framework/top-bar/top-bar-menu-button/top-bar-menu-button.component.mjs +6 -4
  43. package/esm2020/framework/top-bar/top-bar-nav-toggle-btn-detail.directive.mjs +16 -0
  44. package/esm2020/framework/top-bar/top-bar.component.mjs +55 -11
  45. package/esm2020/framework/top-bar/top-bar.module.mjs +15 -5
  46. package/esm2020/google-maps/google-maps-places-autocomplete/google-maps-places-autocomplete.component.mjs +3 -3
  47. package/esm2020/layout/layout.service.mjs +12 -2
  48. package/esm2020/menu/menu-toggle.directive.mjs +7 -2
  49. package/esm2020/table-cell-types/table-cell-type-string/table-cell-type-string.component.mjs +4 -2
  50. package/esm2020/utils/geo-json/coerce-feature-collection.mjs +1 -1
  51. package/esm2020/utils/geo-json/is-feature-collection.validator.mjs +1 -1
  52. package/esm2020/utils/geo-json/is-only-geometry-types.mjs +1 -1
  53. package/esm2020/utils/geo-json/merge-polygons.mjs +1 -1
  54. package/esm2020/utils/geo-json/no-inner-rings.validator.mjs +1 -1
  55. package/esm2020/utils/geo-json/split-multi-polygons.mjs +1 -1
  56. package/fesm2015/theseam-ui-common-breadcrumbs.mjs +2 -2
  57. package/fesm2015/theseam-ui-common-breadcrumbs.mjs.map +1 -1
  58. package/fesm2015/theseam-ui-common-datatable-dynamic.mjs +2 -2
  59. package/fesm2015/theseam-ui-common-datatable-dynamic.mjs.map +1 -1
  60. package/fesm2015/theseam-ui-common-datatable.mjs +56 -10
  61. package/fesm2015/theseam-ui-common-datatable.mjs.map +1 -1
  62. package/fesm2015/theseam-ui-common-framework.mjs +913 -164
  63. package/fesm2015/theseam-ui-common-framework.mjs.map +1 -1
  64. package/fesm2015/theseam-ui-common-google-maps.mjs +2 -2
  65. package/fesm2015/theseam-ui-common-google-maps.mjs.map +1 -1
  66. package/fesm2015/theseam-ui-common-layout.mjs +11 -2
  67. package/fesm2015/theseam-ui-common-layout.mjs.map +1 -1
  68. package/fesm2015/theseam-ui-common-menu.mjs +6 -1
  69. package/fesm2015/theseam-ui-common-menu.mjs.map +1 -1
  70. package/fesm2015/theseam-ui-common-table-cell-types.mjs +3 -1
  71. package/fesm2015/theseam-ui-common-table-cell-types.mjs.map +1 -1
  72. package/fesm2015/theseam-ui-common-utils.mjs.map +1 -1
  73. package/fesm2020/theseam-ui-common-breadcrumbs.mjs +2 -2
  74. package/fesm2020/theseam-ui-common-breadcrumbs.mjs.map +1 -1
  75. package/fesm2020/theseam-ui-common-datatable-dynamic.mjs +2 -2
  76. package/fesm2020/theseam-ui-common-datatable-dynamic.mjs.map +1 -1
  77. package/fesm2020/theseam-ui-common-datatable.mjs +56 -10
  78. package/fesm2020/theseam-ui-common-datatable.mjs.map +1 -1
  79. package/fesm2020/theseam-ui-common-framework.mjs +915 -164
  80. package/fesm2020/theseam-ui-common-framework.mjs.map +1 -1
  81. package/fesm2020/theseam-ui-common-google-maps.mjs +2 -2
  82. package/fesm2020/theseam-ui-common-google-maps.mjs.map +1 -1
  83. package/fesm2020/theseam-ui-common-layout.mjs +11 -2
  84. package/fesm2020/theseam-ui-common-layout.mjs.map +1 -1
  85. package/fesm2020/theseam-ui-common-menu.mjs +6 -1
  86. package/fesm2020/theseam-ui-common-menu.mjs.map +1 -1
  87. package/fesm2020/theseam-ui-common-table-cell-types.mjs +3 -1
  88. package/fesm2020/theseam-ui-common-table-cell-types.mjs.map +1 -1
  89. package/fesm2020/theseam-ui-common-utils.mjs.map +1 -1
  90. package/framework/base-layout/base-layout.component.d.ts +4 -2
  91. package/framework/base-layout/base-layout.component.scss +18 -10
  92. package/framework/base-layout/base-layout.module.d.ts +11 -10
  93. package/framework/base-layout/directives/base-layout-nav-toggle.directive.d.ts +8 -3
  94. package/framework/base-layout/directives/base-layout-side-bar-header.directive.d.ts +9 -0
  95. package/framework/base-layout/index.d.ts +1 -0
  96. package/framework/base-layout/styles/_variables.scss +21 -0
  97. package/framework/nav/_nav-theme.scss +4 -0
  98. package/framework/nav/horizontal-nav/horizontal-nav.component.d.ts +25 -0
  99. package/framework/nav/horizontal-nav/horizontal-nav.component.scss +50 -0
  100. package/framework/nav/index.d.ts +5 -0
  101. package/framework/nav/nav-item/nav-item.component.d.ts +74 -0
  102. package/framework/nav/nav-item/nav-item.component.scss +203 -0
  103. package/framework/nav/nav-utils.d.ts +20 -0
  104. package/framework/nav/nav.models.d.ts +77 -0
  105. package/framework/nav/nav.module.d.ts +17 -0
  106. package/framework/nav/nav.service.d.ts +27 -0
  107. package/framework/nav/styles/_themes/light/_variables.scss +56 -0
  108. package/framework/nav/styles/_themes/primary/_variables.scss +56 -0
  109. package/framework/nav/styles/_utilities.scss +3 -0
  110. package/framework/nav/styles/_variables.scss +2 -0
  111. package/framework/public-api.d.ts +1 -0
  112. package/framework/side-nav/side-nav-item/side-nav-item.component.d.ts +7 -14
  113. package/framework/side-nav/side-nav-item/side-nav-item.component.scss +7 -5
  114. package/framework/side-nav/side-nav-toggle/side-nav-toggle.component.d.ts +5 -3
  115. package/framework/side-nav/side-nav-toggle/side-nav-toggle.component.scss +3 -6
  116. package/framework/side-nav/side-nav.component.d.ts +13 -1
  117. package/framework/side-nav/side-nav.component.scss +0 -1
  118. package/framework/side-nav/side-nav.models.d.ts +7 -1
  119. package/framework/side-nav/side-nav.module.d.ts +1 -9
  120. package/framework/side-nav/styles/_themes/light/_variables.scss +24 -14
  121. package/framework/side-nav/styles/_themes/primary/_variables.scss +8 -0
  122. package/framework/top-bar/index.d.ts +2 -0
  123. package/framework/top-bar/top-bar-compact-menu-btn-detail.directive.d.ts +8 -0
  124. package/framework/top-bar/top-bar-item.directive.d.ts +4 -1
  125. package/framework/top-bar/top-bar-menu-button/top-bar-menu-button.component.d.ts +5 -2
  126. package/framework/top-bar/top-bar-nav-toggle-btn-detail.directive.d.ts +8 -0
  127. package/framework/top-bar/top-bar.component.d.ts +25 -3
  128. package/framework/top-bar/top-bar.component.scss +7 -2
  129. package/framework/top-bar/top-bar.module.d.ts +10 -8
  130. package/layout/layout.service.d.ts +9 -1
  131. package/menu/menu-toggle.directive.d.ts +2 -1
  132. package/package.json +2 -2
  133. package/styles/vendor/ngx-datatable/_ngx-datatable.scss +57 -14
  134. package/styles/vendor/ngx-datatable/_themes/bootstrap/_variables.scss +33 -5
@@ -10,8 +10,12 @@ $datatable-color: $body-color !default;
10
10
 
11
11
  // common datatable colors
12
12
  $datatable-background: $white !default;
13
- $datatable-box-shadow: none !default;
14
13
  $datatable-row-even-background: rgba(0, 0, 0, 0.05) !default;
14
+ $datatable-left-background: transparent !default;
15
+ $datatable-left-row-even-background: $datatable-left-background !default;
16
+ $datatable-right-background: transparent !default;
17
+ $datatable-right-row-even-background: $datatable-right-background !default;
18
+ $datatable-box-shadow: none !default;
15
19
 
16
20
  // default row and cell background colors
17
21
  $datatable-default-background: $white !default;
@@ -167,8 +171,32 @@ $datatable-summary-row-background: #ddd !default;
167
171
  $datatable-summary-row-background-hover: #ddd !default;
168
172
  $datatable-summary-row-font-weight: bold !default;
169
173
 
170
- $datatable-action-button-color: $body-color !default;
171
- $datatable-action-button-background: transparent !default;
174
+ // Action Menu Button Styles
175
+ $datatable-action-button-background: $primary !default;
176
+ $datatable-action-button-border: $datatable-action-button-background !default;
177
+ $datatable-action-button-hover-background: darken($datatable-action-button-background, 7.5%) !default;
178
+ $datatable-action-button-hover-border: darken($datatable-action-button-border, 10%) !default;
179
+ $datatable-action-button-active-background: darken($datatable-action-button-background, 10%) !default;
180
+ $datatable-action-button-active-border: darken($datatable-action-button-border, 12.5%) !default;
181
+
182
+ $datatable-action-button-color: color-yiq($datatable-action-button-background) !default;
183
+ $datatable-action-button-hover-color: color-yiq($datatable-action-button-hover-background) !default;
184
+ $datatable-action-button-active-color: color-yiq($datatable-action-button-active-background) !default;
185
+
186
+ $datatable-action-button-outline: false !default;
187
+ $datatable-action-button-outline-color: $datatable-action-button-background !default;
188
+ $datatable-action-button-outline-color-hover: color-yiq($datatable-action-button-outline-color) !default;
189
+ $datatable-action-button-outline-active-background: $datatable-action-button-outline-color !default;
190
+ $datatable-action-button-outline-active-border: $datatable-action-button-outline-color !default;
191
+
192
+ $datatable-action-button-outline-background: transparent !default;
193
+
172
194
  $datatable-action-button-box-shadow: none !default;
173
- $datatable-action-button-hover-color: $primary !default;
174
- $datatable-action-button-hover-background: $gray-300 !default;
195
+ $datatable-action-button-font-size: 20px !default;
196
+ $datatable-action-button-line-height: 1 !default;
197
+ $datatable-action-button-size: 30px !default;
198
+ $datatable-action-button-width: $datatable-action-button-size !default;
199
+ $datatable-action-button-height: $datatable-action-button-size !default;
200
+ $datatable-action-button-padding: 0 !default;
201
+ $datatable-action-button-border-radius: 100% !default;
202
+ $datatable-action-button-text-align: center !default;