@mediusinc/mng-commons 1.3.0-1c14fa2b → 2.0.0-rc.0-08f92864

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 (230) hide show
  1. package/assets/i18n/en.json +9 -0
  2. package/assets/i18n/sl.json +9 -0
  3. package/esm2020/lib/api/utils/medius-rest.util.mjs +1 -1
  4. package/esm2020/lib/components/action/action.component.mjs +76 -20
  5. package/esm2020/lib/components/action/editor/action-editor.component.mjs +12 -12
  6. package/esm2020/lib/components/action/localization/data-language-dropdown.component.mjs +6 -6
  7. package/esm2020/lib/components/action/models/action-component.model.mjs +1 -1
  8. package/esm2020/lib/components/action/models/action-confirmation-service.model.mjs +1 -1
  9. package/esm2020/lib/components/action/models/action-execution.model.mjs +1 -1
  10. package/esm2020/lib/components/action/route/action-route.component.mjs +6 -5
  11. package/esm2020/lib/components/form/autocomplete/autocomplete.component.mjs +11 -10
  12. package/esm2020/lib/components/form/date-range/date-range.component.mjs +9 -8
  13. package/esm2020/lib/components/form/dropdown/dropdown.component.mjs +13 -11
  14. package/esm2020/lib/components/form/editor/form-editor.component.mjs +14 -11
  15. package/esm2020/lib/components/form/formly/fields/formly-field-action/formly-field-action.component.mjs +13 -9
  16. package/esm2020/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +8 -7
  17. package/esm2020/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +8 -7
  18. package/esm2020/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.mjs +11 -9
  19. package/esm2020/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +50 -20
  20. package/esm2020/lib/components/form/formly/fields/formly-field-label/formly-field-label.component.mjs +5 -5
  21. package/esm2020/lib/components/form/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.mjs +27 -17
  22. package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +32 -12
  23. package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +21 -12
  24. package/esm2020/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +13 -11
  25. package/esm2020/lib/components/form/formly/models/formly-field.model.mjs +1 -1
  26. package/esm2020/lib/components/form/formly/wrappers/formly-field-no-label-wrapper/formly-field-no-label-wrapper.component.mjs +10 -9
  27. package/esm2020/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.mjs +11 -10
  28. package/esm2020/lib/components/form/models/field-action-context.model.mjs +1 -1
  29. package/esm2020/lib/components/layout/breadcrumb.component.mjs +7 -6
  30. package/esm2020/lib/components/layout/footer.component.mjs +6 -5
  31. package/esm2020/lib/components/layout/main-layout.component.mjs +8 -8
  32. package/esm2020/lib/components/layout/menu-item.component.mjs +43 -23
  33. package/esm2020/lib/components/layout/menu.component.mjs +24 -13
  34. package/esm2020/lib/components/layout/services/main-layout.component.service.mjs +3 -3
  35. package/esm2020/lib/components/layout/topbar.component.mjs +14 -12
  36. package/esm2020/lib/components/layout/version.component.mjs +6 -6
  37. package/esm2020/lib/components/tableview/models/table.event.mjs +1 -1
  38. package/esm2020/lib/components/tableview/route/tableview-route.abstract.component.mjs +38 -10
  39. package/esm2020/lib/components/tableview/route/tableview-route.component.mjs +5 -6
  40. package/esm2020/lib/components/tableview/table/column-filter/column-filter.component.mjs +14 -13
  41. package/esm2020/lib/components/tableview/table/column-value/column-value.component.mjs +29 -12
  42. package/esm2020/lib/components/tableview/table/table.component.mjs +33 -17
  43. package/esm2020/lib/components/tableview/tableview.component.mjs +13 -11
  44. package/esm2020/lib/descriptors/action/action-button.descriptor.mjs +60 -0
  45. package/esm2020/lib/descriptors/action/action-confirmation.descriptor.mjs +2 -2
  46. package/esm2020/lib/descriptors/action/action.descriptor.mjs +579 -0
  47. package/esm2020/lib/descriptors/action/index.mjs +4 -0
  48. package/esm2020/lib/descriptors/editor/editor.descriptor.mjs +291 -0
  49. package/esm2020/lib/descriptors/editor/field-validation.descriptor.mjs +25 -0
  50. package/esm2020/lib/descriptors/editor/field.descriptor.mjs +990 -0
  51. package/esm2020/lib/descriptors/editor/index.mjs +4 -0
  52. package/esm2020/lib/descriptors/filter/filter.descriptor.mjs +370 -0
  53. package/esm2020/lib/descriptors/filter/index.mjs +2 -0
  54. package/esm2020/lib/descriptors/index.mjs +1 -11
  55. package/esm2020/lib/descriptors/table/column.descriptor.mjs +406 -0
  56. package/esm2020/lib/descriptors/table/index.mjs +3 -0
  57. package/esm2020/lib/descriptors/table/table.descriptor.mjs +497 -0
  58. package/esm2020/lib/descriptors/tableview/index.mjs +2 -0
  59. package/esm2020/lib/descriptors/tableview/tableview.descriptor.mjs +346 -0
  60. package/esm2020/lib/directives/component.directive.mjs +5 -4
  61. package/esm2020/lib/directives/template.directive.mjs +5 -4
  62. package/esm2020/lib/mng-commons.module.mjs +108 -138
  63. package/esm2020/lib/models/column-value.model.mjs +1 -1
  64. package/esm2020/lib/models/config.model.mjs +1 -1
  65. package/esm2020/lib/models/menu.model.mjs +1 -1
  66. package/esm2020/lib/models/view-container.model.mjs +1 -1
  67. package/esm2020/lib/pipes/boolean.pipe.mjs +5 -4
  68. package/esm2020/lib/pipes/class-map.pipe.mjs +5 -4
  69. package/esm2020/lib/pipes/enum.pipe.mjs +5 -4
  70. package/esm2020/lib/pipes/enumerate-async.pipe.mjs +5 -4
  71. package/esm2020/lib/pipes/enumerate.pipe.mjs +5 -4
  72. package/esm2020/lib/pipes/getter.pipe.mjs +5 -4
  73. package/esm2020/lib/pipes/i18n-property.pipe.mjs +5 -4
  74. package/esm2020/lib/pipes/json-path.pipe.mjs +5 -4
  75. package/esm2020/lib/pipes/locale-default-row-class.pipe.mjs +5 -4
  76. package/esm2020/lib/pipes/parametrize.pipe.mjs +5 -4
  77. package/esm2020/lib/pipes/template.pipe.mjs +5 -4
  78. package/esm2020/lib/provide-commons.mjs +73 -0
  79. package/esm2020/lib/router/index.mjs +2 -1
  80. package/esm2020/lib/router/models/router.model.mjs +1 -1
  81. package/esm2020/lib/router/route-builder.mjs +31 -144
  82. package/esm2020/lib/router/routes-builder.mjs +67 -0
  83. package/esm2020/lib/router/tableview-route-builder.mjs +2 -2
  84. package/esm2020/lib/security/authorization.guard.mjs +8 -5
  85. package/esm2020/lib/security/authorization.service.mjs +8 -5
  86. package/esm2020/lib/services/action-executor.service.mjs +13 -7
  87. package/esm2020/lib/services/commons.service.mjs +15 -10
  88. package/esm2020/lib/services/configuration.service.mjs +27 -20
  89. package/esm2020/lib/services/internal/commons-init.service.mjs +13 -7
  90. package/esm2020/lib/services/navigation.service.mjs +8 -5
  91. package/esm2020/lib/services/providers/config-service.provider.mjs +5 -4
  92. package/esm2020/lib/services/router.service.mjs +97 -0
  93. package/esm2020/lib/services/version.service.mjs +8 -5
  94. package/esm2020/lib/services/view-container.component.service.mjs +4 -4
  95. package/esm2020/lib/styles/styles.util.mjs +1 -1
  96. package/esm2020/lib/utils/action-data-provider.util.mjs +1 -1
  97. package/esm2020/lib/utils/editor-formly.util.mjs +2 -2
  98. package/esm2020/lib/utils/export.util.mjs +20 -0
  99. package/esm2020/lib/utils/i18n.util.mjs +1 -1
  100. package/esm2020/lib/utils/index.mjs +2 -1
  101. package/esm2020/lib/utils/notification.util.mjs +1 -1
  102. package/esm2020/lib/utils/route.util.mjs +13 -1
  103. package/esm2020/lib/utils/tableview.util.mjs +1 -1
  104. package/esm2020/public-api.mjs +7 -1
  105. package/fesm2015/mediusinc-mng-commons.mjs +6767 -6381
  106. package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
  107. package/fesm2020/mediusinc-mng-commons.mjs +6707 -6325
  108. package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
  109. package/lib/api/utils/medius-rest.util.d.ts +1 -1
  110. package/lib/components/action/action.component.d.ts +10 -5
  111. package/lib/components/action/editor/action-editor.component.d.ts +2 -2
  112. package/lib/components/action/localization/data-language-dropdown.component.d.ts +2 -2
  113. package/lib/components/action/models/action-component.model.d.ts +1 -1
  114. package/lib/components/action/models/action-confirmation-service.model.d.ts +1 -1
  115. package/lib/components/action/models/action-execution.model.d.ts +2 -2
  116. package/lib/components/action/route/action-route.component.d.ts +2 -2
  117. package/lib/components/form/autocomplete/autocomplete.component.d.ts +1 -1
  118. package/lib/components/form/date-range/date-range.component.d.ts +1 -1
  119. package/lib/components/form/dropdown/dropdown.component.d.ts +1 -1
  120. package/lib/components/form/editor/form-editor.component.d.ts +2 -2
  121. package/lib/components/form/formly/fields/formly-field-action/formly-field-action.component.d.ts +2 -2
  122. package/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +2 -2
  123. package/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +2 -2
  124. package/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.d.ts +2 -2
  125. package/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.d.ts +2 -2
  126. package/lib/components/form/formly/fields/formly-field-label/formly-field-label.component.d.ts +1 -1
  127. package/lib/components/form/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.d.ts +2 -2
  128. package/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +3 -2
  129. package/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.d.ts +2 -2
  130. package/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.d.ts +1 -1
  131. package/lib/components/form/formly/models/formly-field.model.d.ts +2 -2
  132. package/lib/components/form/formly/wrappers/formly-field-no-label-wrapper/formly-field-no-label-wrapper.component.d.ts +1 -1
  133. package/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.d.ts +2 -2
  134. package/lib/components/form/models/field-action-context.model.d.ts +1 -1
  135. package/lib/components/layout/breadcrumb.component.d.ts +1 -1
  136. package/lib/components/layout/footer.component.d.ts +1 -1
  137. package/lib/components/layout/main-layout.component.d.ts +1 -1
  138. package/lib/components/layout/menu-item.component.d.ts +6 -2
  139. package/lib/components/layout/menu.component.d.ts +9 -3
  140. package/lib/components/layout/topbar.component.d.ts +1 -1
  141. package/lib/components/layout/version.component.d.ts +1 -1
  142. package/lib/components/tableview/models/table.event.d.ts +1 -1
  143. package/lib/components/tableview/route/tableview-route.abstract.component.d.ts +9 -2
  144. package/lib/components/tableview/route/tableview-route.component.d.ts +3 -2
  145. package/lib/components/tableview/table/column-filter/column-filter.component.d.ts +2 -2
  146. package/lib/components/tableview/table/column-value/column-value.component.d.ts +2 -2
  147. package/lib/components/tableview/table/table.component.d.ts +4 -2
  148. package/lib/components/tableview/tableview.component.d.ts +3 -2
  149. package/lib/descriptors/{action-button.descriptor.d.ts → action/action-button.descriptor.d.ts} +1 -1
  150. package/lib/descriptors/action/action-confirmation.descriptor.d.ts +2 -2
  151. package/lib/descriptors/{action.descriptor.d.ts → action/action.descriptor.d.ts} +16 -8
  152. package/lib/descriptors/action/index.d.ts +3 -0
  153. package/lib/descriptors/{editor.descriptor.d.ts → editor/editor.descriptor.d.ts} +9 -6
  154. package/lib/descriptors/{field-validation.descriptor.d.ts → editor/field-validation.descriptor.d.ts} +1 -1
  155. package/lib/descriptors/{field.descriptor.d.ts → editor/field.descriptor.d.ts} +14 -10
  156. package/lib/descriptors/editor/index.d.ts +3 -0
  157. package/lib/descriptors/{filter.descriptor.d.ts → filter/filter.descriptor.d.ts} +11 -9
  158. package/lib/descriptors/filter/index.d.ts +1 -0
  159. package/lib/descriptors/index.d.ts +0 -10
  160. package/lib/descriptors/{column.descriptor.d.ts → table/column.descriptor.d.ts} +4 -4
  161. package/lib/descriptors/table/index.d.ts +2 -0
  162. package/lib/descriptors/{table.descriptor.d.ts → table/table.descriptor.d.ts} +12 -7
  163. package/lib/descriptors/tableview/index.d.ts +1 -0
  164. package/lib/descriptors/{tableview.descriptor.d.ts → tableview/tableview.descriptor.d.ts} +9 -7
  165. package/lib/directives/component.directive.d.ts +1 -1
  166. package/lib/directives/template.directive.d.ts +1 -1
  167. package/lib/mng-commons.module.d.ts +90 -88
  168. package/lib/models/column-value.model.d.ts +1 -1
  169. package/lib/models/config.model.d.ts +1 -0
  170. package/lib/models/menu.model.d.ts +1 -1
  171. package/lib/models/version.model.d.ts +1 -1
  172. package/lib/models/view-container.model.d.ts +1 -1
  173. package/lib/pipes/boolean.pipe.d.ts +1 -1
  174. package/lib/pipes/class-map.pipe.d.ts +1 -1
  175. package/lib/pipes/enum.pipe.d.ts +1 -1
  176. package/lib/pipes/enumerate-async.pipe.d.ts +1 -1
  177. package/lib/pipes/enumerate.pipe.d.ts +1 -1
  178. package/lib/pipes/getter.pipe.d.ts +1 -1
  179. package/lib/pipes/i18n-property.pipe.d.ts +1 -1
  180. package/lib/pipes/json-path.pipe.d.ts +1 -1
  181. package/lib/pipes/locale-default-row-class.pipe.d.ts +2 -2
  182. package/lib/pipes/parametrize.pipe.d.ts +1 -1
  183. package/lib/pipes/template.pipe.d.ts +1 -1
  184. package/lib/provide-commons.d.ts +3 -0
  185. package/lib/router/index.d.ts +1 -0
  186. package/lib/router/models/router.model.d.ts +5 -2
  187. package/lib/router/route-builder.d.ts +12 -48
  188. package/lib/router/routes-builder.d.ts +29 -0
  189. package/lib/router/tableview-route-builder.d.ts +2 -1
  190. package/lib/services/action-executor.service.d.ts +2 -1
  191. package/lib/services/commons.service.d.ts +3 -3
  192. package/lib/services/configuration.service.d.ts +4 -1
  193. package/lib/services/internal/commons-init.service.d.ts +4 -2
  194. package/lib/services/router.service.d.ts +22 -0
  195. package/lib/services/view-container.component.service.d.ts +1 -1
  196. package/lib/styles/styles.util.d.ts +2 -1
  197. package/lib/types/type.model.d.ts +8 -8
  198. package/lib/utils/editor-formly.util.d.ts +1 -1
  199. package/lib/utils/export.util.d.ts +5 -0
  200. package/lib/utils/i18n.util.d.ts +2 -1
  201. package/lib/utils/index.d.ts +1 -0
  202. package/lib/utils/notification.util.d.ts +2 -1
  203. package/lib/utils/route.util.d.ts +55 -0
  204. package/lib/utils/tableview.util.d.ts +1 -1
  205. package/package.json +6 -6
  206. package/public-api.d.ts +6 -0
  207. package/scss/common/layout/_breadcrumb.scss +12 -2
  208. package/scss/common/layout/_exception.scss +1 -1
  209. package/scss/common/layout/_inlinemenu.scss +13 -0
  210. package/scss/common/layout/_login.scss +1 -0
  211. package/scss/common/layout/_rightmenu.scss +5 -0
  212. package/scss/common/layout/menu/_menu_common.scss +1 -1
  213. package/scss/common/theme/designer/_components.scss +4 -4
  214. package/scss/common/theme/designer/_mixins.scss +29 -0
  215. package/scss/common/theme/extensions/_datatable.scss +2 -2
  216. package/scss/common/variables/layout/_layout_dark.scss +0 -1
  217. package/scss/common/variables/layout/_layout_light.scss +0 -1
  218. package/scss/common/variables/theme/_theme_dark.scss +72 -46
  219. package/scss/common/variables/theme/_theme_light.scss +70 -33
  220. package/scss/mng-overrides/_layout_menu.scss +4 -0
  221. package/version-info.json +6 -6
  222. package/esm2020/lib/descriptors/action-button.descriptor.mjs +0 -60
  223. package/esm2020/lib/descriptors/action.descriptor.mjs +0 -560
  224. package/esm2020/lib/descriptors/column.descriptor.mjs +0 -405
  225. package/esm2020/lib/descriptors/editor.descriptor.mjs +0 -290
  226. package/esm2020/lib/descriptors/field-validation.descriptor.mjs +0 -25
  227. package/esm2020/lib/descriptors/field.descriptor.mjs +0 -987
  228. package/esm2020/lib/descriptors/filter.descriptor.mjs +0 -368
  229. package/esm2020/lib/descriptors/table.descriptor.mjs +0 -482
  230. package/esm2020/lib/descriptors/tableview.descriptor.mjs +0 -344
@@ -77,7 +77,7 @@
77
77
  max-width: 320px;
78
78
  }
79
79
 
80
- p-button {
80
+ button {
81
81
  margin-top: 50px;
82
82
  }
83
83
  }
@@ -15,6 +15,9 @@
15
15
  cursor: pointer;
16
16
  padding: 2rem 2rem 1rem 2rem;
17
17
  color: $textColor;
18
+ display: flex;
19
+ flex-direction: row;
20
+ align-items: center;
18
21
 
19
22
  img {
20
23
  border-radius: 22px;
@@ -23,6 +26,13 @@
23
26
 
24
27
  .layout-inline-menu-text {
25
28
  font-weight: 500;
29
+ display: flex;
30
+ flex-direction: column;
31
+ margin-left: 0.5rem;
32
+ }
33
+
34
+ .layout-inline-menu-icon {
35
+ margin-left: auto;
26
36
  }
27
37
  }
28
38
 
@@ -41,6 +51,9 @@
41
51
  }
42
52
 
43
53
  a {
54
+ display: flex;
55
+ flex-direction: row;
56
+ align-items: center;
44
57
  padding: 0.5rem 1rem;
45
58
  border-left: 8px solid transparent;
46
59
  border-radius: 8px;
@@ -8,6 +8,7 @@
8
8
 
9
9
  img {
10
10
  height: 100vh;
11
+ max-width: 490px;
11
12
  }
12
13
  }
13
14
 
@@ -56,6 +56,8 @@
56
56
  }
57
57
 
58
58
  .user-tasks {
59
+ display: flex;
60
+ justify-content: space-between;
59
61
  padding: 1.5rem 1rem;
60
62
  border-bottom: 1px solid $dividerColor;
61
63
 
@@ -69,6 +71,9 @@
69
71
  }
70
72
 
71
73
  .task-number {
74
+ display: flex;
75
+ justify-content: center;
76
+ align-items: center;
72
77
  background-color: $rightMenuButtonBg;
73
78
  color: $textColor;
74
79
  text-align: center;
@@ -168,7 +168,7 @@
168
168
  padding: 6px;
169
169
 
170
170
  > a {
171
- padding: 0.75rem 1.25rem;
171
+ padding: 0.75rem 1rem;
172
172
  }
173
173
  }
174
174
  }
@@ -29,7 +29,7 @@
29
29
  //Button
30
30
  @import './components/button/_button';
31
31
  // @import './components/button/_speeddial';
32
- // @import './components/button/_splitbutton';
32
+ @import './components/button/_splitbutton';
33
33
 
34
34
  //Data
35
35
  // @import './components/data/_carousel';
@@ -72,13 +72,13 @@
72
72
  // @import './components/menu/_contextmenu';
73
73
  @import './components/menu/_dock';
74
74
  // @import './components/menu/_megamenu';
75
- // @import './components/menu/_menu';
75
+ @import './components/menu/_menu';
76
76
  // @import './components/menu/_menubar';
77
77
  // @import './components/menu/_panelmenu';
78
- // @import './components/menu/_slidemenu';
78
+ @import './components/menu/_slidemenu';
79
79
  @import './components/menu/_steps';
80
80
  // @import './components/menu/_tabmenu';
81
- // @import './components/menu/_tieredmenu';
81
+ //@import './components/menu/_tieredmenu';
82
82
 
83
83
  //Messages
84
84
  // @import './components/messages/_inlinemessage';
@@ -10,6 +10,12 @@
10
10
  box-shadow: $focusShadow;
11
11
  }
12
12
 
13
+ @mixin focused-inset() {
14
+ outline: $focusOutline;
15
+ outline-offset: $focusOutlineOffset;
16
+ box-shadow: inset $focusShadow;
17
+ }
18
+
13
19
  @mixin focused-input() {
14
20
  @include focused();
15
21
  border-color: $inputFocusBorderColor;
@@ -172,3 +178,26 @@
172
178
  @function shade($color, $percentage) {
173
179
  @return mix(#000, $color, $percentage);
174
180
  }
181
+
182
+ @mixin button-states {
183
+ // <button> and <a> tags support :enabled selector.
184
+
185
+ &:enabled,
186
+ &:not(button):not(a):not(.p-disabled) {
187
+ @content;
188
+ }
189
+ }
190
+
191
+ @mixin menuitem-badge {
192
+ background: $badgeBg;
193
+ color: $badgeTextColor;
194
+ font-size: $badgeFontSize;
195
+ font-weight: $badgeFontWeight;
196
+ min-width: $badgeMinWidth;
197
+ height: $badgeHeight;
198
+ line-height: $badgeHeight;
199
+ border-radius: $borderRadius;
200
+ margin-left: $inlineSpacing;
201
+ padding-left: $inlineSpacing;
202
+ padding-right: $inlineSpacing;
203
+ }
@@ -76,8 +76,8 @@
76
76
  }
77
77
 
78
78
  &.p-datatable-scrollable {
79
- .p-datatable-thead {
80
- background: $overlayContentBg;
79
+ .p-datatable-thead th {
80
+ background: $solidSurfaceColor;
81
81
  }
82
82
  }
83
83
  }
@@ -42,7 +42,6 @@ $submenuItemTextColor: $textColor !default;
42
42
  $submenuItemHoverTextColor: $textColor !default;
43
43
  $submenuItemHoverBg: rgba(255, 255, 255, 0.05) !default;
44
44
  $activeSubmenuItemTextColor: $primaryColor !default;
45
- $submenuHeaderFontWeight: 500 !default;
46
45
 
47
46
  $overlayMenuActiveBg: rgba(255, 255, 255, 0.05) !default;
48
47
  $overlayMenuItemActiveBg: $primaryColor !default;
@@ -42,7 +42,6 @@ $submenuItemTextColor: $textColor !default;
42
42
  $submenuItemHoverTextColor: $textColor !default;
43
43
  $submenuItemHoverBg: rgba(68, 72, 109, 0.07) !default;
44
44
  $activeSubmenuItemTextColor: $primaryColor !default;
45
- $submenuHeaderFontWeight: 500 !default;
46
45
 
47
46
  $overlayMenuActiveBg: rgba(68, 72, 109, 0.07) !default;
48
47
  $overlayMenuItemActiveBg: $primaryColor !default;
@@ -8,8 +8,9 @@ $colors: (
8
8
  'teal': #009688,
9
9
  'orange': #f57c00,
10
10
  'bluegray': #607d8b,
11
- 'purple': #9c27b0
12
- );
11
+ 'purple': #9c27b0,
12
+ 'primary': $primaryColor
13
+ ) !default;
13
14
 
14
15
  //shades
15
16
  $shade000: #ffffff !default; //text color
@@ -21,7 +22,9 @@ $shade700: rgba(255, 255, 255, 0.15) !default; //Alpha-03
21
22
  $shade800: rgba(255, 255, 255, 0.2) !default; //Alpha-04
22
23
  $shade900: rgba(255, 255, 255, 0.25) !default; //Alpha-05
23
24
 
24
- $solidSurfaceColor: #0a061a;
25
+ $solidSurfaceColor: #0a061a !default;
26
+
27
+ $hoverBg: rgba(255, 255, 255, 0.03) !default;
25
28
 
26
29
  //global
27
30
  $fontFamily: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default;
@@ -166,16 +169,16 @@ $infoButtonActiveBorderColor: transparent !default;
166
169
  $infoButtonShadow: 0px 0px 10px rgba(135, 62, 254, 0.3) !default;
167
170
  $infoButtonFocusShadow: none !default;
168
171
 
169
- $successButtonBg: #397289 !default;
172
+ $successButtonBg: #0bd18a !default;
170
173
  $successButtonTextColor: #ffffff !default;
171
174
  $successButtonBorder: 1px solid transparent !default;
172
- $successButtonHoverBg: #68a4bb !default;
175
+ $successButtonHoverBg: #049b65 !default;
173
176
  $successButtonTextHoverColor: $successButtonTextColor !default;
174
177
  $successButtonHoverBorderColor: transparent !default;
175
- $successButtonActiveBg: #264e5e !default;
178
+ $successButtonActiveBg: #017e52 !default;
176
179
  $successButtonTextActiveColor: $successButtonTextColor !default;
177
180
  $successButtonActiveBorderColor: transparent !default;
178
- $successButtonShadow: 0px 0px 10px rgba(38, 78, 94, 0.3) !default;
181
+ $successButtonShadow: 0px 0px 10px rgba(11, 209, 138, 0.3) !default;
179
182
  $successButtonFocusShadow: none !default;
180
183
 
181
184
  $warningButtonBg: #eee500 !default;
@@ -202,7 +205,7 @@ $helpButtonActiveBorderColor: transparent !default;
202
205
  $helpButtonShadow: 0px 0px 10px rgba(236, 77, 188, 0.3) !default;
203
206
  $helpButtonFocusShadow: none !default;
204
207
 
205
- $dangerButtonBg: #af1d1d !default;
208
+ $dangerButtonBg: #fc6161 !default;
206
209
  $dangerButtonTextColor: #ffffff !default;
207
210
  $dangerButtonBorder: 1px solid transparent !default;
208
211
  $dangerButtonHoverBg: #e73a3a !default;
@@ -250,6 +253,7 @@ $colorPickerPreviewWidth: 2rem !default;
250
253
  $colorPickerPreviewHeight: 2rem !default;
251
254
  $colorPickerBg: $shade500 !default;
252
255
  $colorPickerBorderColor: $shade500 !default;
256
+ $colorPickerBorder: 1px solid $shade500 !default;
253
257
  $colorPickerHandleColor: #ffffff !default;
254
258
 
255
259
  //togglebutton
@@ -316,6 +320,7 @@ $calendarHeaderCellPadding: 0.357rem !default;
316
320
  $calendarHeaderCellFontWeight: 500 !default;
317
321
  $calendarHeaderCellFontSize: 12px !default;
318
322
  $calendarHeaderCellTextColor: $shade200 !default;
323
+ $calendarMonthYearHeaderHoverTextColor: $primaryColor !default;
319
324
 
320
325
  $calendarCellDateBg: $shade500 !default;
321
326
  $calendarCellDatePadding: 0.357rem !default;
@@ -366,6 +371,7 @@ $panelHeaderTextHoverColor: $shade000 !default;
366
371
 
367
372
  $panelContentBorderColor: $shade700 !default;
368
373
  $panelContentBorder: 1px solid $shade700 !default;
374
+ $panelContentEvenRowBg: rgba(255, 255, 255, 0.01) !default;
369
375
  $panelContentBg: transparent !default;
370
376
  $panelContentTextColor: $shade000 !default;
371
377
  $panelContentPadding: 1.143rem !default;
@@ -685,6 +691,7 @@ $progressBarHeight: 0.571rem !default;
685
691
  $progressBarBorder: 0 none !default;
686
692
  $progressBarBg: $shade600 !default;
687
693
  $progressBarValueBg: $primaryColor !default;
694
+ $progressBarValueTextColor: $primaryTextColor !default;
688
695
 
689
696
  //menu (e.g. menu, menubar, tieredmenu)
690
697
  $menuWidth: 12.5rem !default;
@@ -813,38 +820,38 @@ $galleriaThumbnailNavigatorWidth: 2rem !default;
813
820
  $galleriaThumbnailNavigatorHeight: 2rem !default;
814
821
 
815
822
  //divider
816
- $dividerHorizontalMargin: 1rem 0;
817
- $dividerHorizontalPadding: 0 1rem;
818
- $dividerVerticalMargin: 0 1rem;
819
- $dividerVerticalPadding: 1rem 0;
820
- $dividerSize: 1px;
821
- $dividerColor: $shade700;
823
+ $dividerHorizontalMargin: 1rem 0 !default;
824
+ $dividerHorizontalPadding: 0 1rem !default;
825
+ $dividerVerticalMargin: 0 1rem !default;
826
+ $dividerVerticalPadding: 1rem 0 !default;
827
+ $dividerSize: 1px !default;
828
+ $dividerColor: $shade700 !default;
822
829
 
823
830
  //avatar
824
- $avatarBg: $shade500;
825
- $avatarTextColor: $textColor;
831
+ $avatarBg: $shade500 !default;
832
+ $avatarTextColor: $textColor !default;
826
833
 
827
834
  //chip
828
- $chipBg: $shade500;
829
- $chipTextColor: $textColor;
830
- $chipBorderRadius: 16px;
835
+ $chipBg: $shade500 !default;
836
+ $chipTextColor: $textColor !default;
837
+ $chipBorderRadius: 16px !default;
831
838
 
832
839
  //scrollTop
833
- $scrollTopBg: $highlightBg;
834
- $scrollTopHoverBg: scale-color($highlightBg, $alpha: 24%);
835
- $scrollTopWidth: 3rem;
836
- $scrollTopHeight: 3rem;
837
- $scrollTopBorderRadius: 50%;
838
- $scrollTopFontSize: 1.5rem;
839
- $scrollTopTextColor: $highlightTextColor;
840
+ $scrollTopBg: $highlightBg !default;
841
+ $scrollTopHoverBg: scale-color($highlightBg, $alpha: 24%) !default;
842
+ $scrollTopWidth: 3rem !default;
843
+ $scrollTopHeight: 3rem !default;
844
+ $scrollTopBorderRadius: 50% !default;
845
+ $scrollTopFontSize: 1.5rem !default;
846
+ $scrollTopTextColor: $highlightTextColor !default;
840
847
 
841
848
  //skeleton
842
- $skeletonBg: rgba(255, 255, 255, 0.06);
843
- $skeletonAnimationBg: rgba(255, 255, 255, 0.04);
849
+ $skeletonBg: rgba(255, 255, 255, 0.06) !default;
850
+ $skeletonAnimationBg: rgba(255, 255, 255, 0.04) !default;
844
851
 
845
852
  //splitter
846
- $splitterGutterBg: $shade700;
847
- $splitterGutterHandleBg: $shade700;
853
+ $splitterGutterBg: $shade700 !default;
854
+ $splitterGutterHandleBg: $shade700 !default;
848
855
 
849
856
  //speeddial
850
857
  $speedDialButtonWidth: 4rem !default;
@@ -884,28 +891,47 @@ $imagePreviewActionIconFontSize: 1.5rem !default;
884
891
  $imagePreviewActionIconBorderRadius: 50% !default;
885
892
 
886
893
  :root {
887
- --surface-a: #{$shade200};
888
- --surface-b: #{$shade500};
889
- --surface-c: #{$shade600};
890
- --surface-d: #{$shade700};
894
+ --surface-a: #{$shade800};
895
+ --surface-b: #{$shade900};
896
+ --surface-c: #{$hoverBg};
897
+ --surface-d: #{$shade600};
891
898
  --surface-e: #{$shade800};
892
- --surface-f: #{$shade900};
899
+ --surface-f: #{$shade800};
893
900
  --text-color: #{$shade000};
894
901
  --text-color-secondary: #{$shade100};
895
902
  --primary-color: #{$primaryColor};
896
903
  --primary-color-text: #{$primaryTextColor};
897
904
  --font-family: #{$fontFamily};
898
- --surface-0: #17212f;
899
- --surface-50: #1d2734;
900
- --surface-100: #232c39;
901
- --surface-200: #28323f;
902
- --surface-300: #2e3744;
903
- --surface-400: #343d49;
904
- --surface-500: #3a424e;
905
- --surface-600: #404853;
906
- --surface-700: #454d59;
907
- --surface-800: #4b535e;
908
- --surface-900: #515963;
905
+ --surface-0: #0a061a;
906
+ --surface-50: #231f31;
907
+ --surface-100: #3b3848;
908
+ --surface-200: #54515f;
909
+ --surface-300: #6c6a76;
910
+ --surface-400: #85838d;
911
+ --surface-500: #9d9ba3;
912
+ --surface-600: #b6b4ba;
913
+ --surface-700: #cecdd1;
914
+ --surface-800: #e7e6e8;
915
+ --surface-900: #ffffff;
916
+ --gray-50: #e7e6e8;
917
+ --gray-100: #cecdd1;
918
+ --gray-200: #b6b4ba;
919
+ --gray-300: #9d9ba3;
920
+ --gray-400: #85838d;
921
+ --gray-500: #6c6a76;
922
+ --gray-600: #54515f;
923
+ --gray-700: #3b3848;
924
+ --gray-800: #231f31;
925
+ --gray-900: #0a061a;
909
926
  --content-padding: #{$panelContentPadding};
910
927
  --inline-spacing: #{$inlineSpacing};
928
+ --border-radius: #{$borderRadius};
929
+ --surface-ground: linear-gradient(180deg, #2e323f 0%, #0a061a 100%);
930
+ --surface-section: linear-gradient(180deg, #2e323f 0%, #0a061a 100%);
931
+ --surface-card: rgba(255, 255, 255, 0.05);
932
+ --surface-overlay: linear-gradient(180deg, #2e323f 0%, #0a061a 100%);
933
+ --surface-border: rgba(255, 255, 255, 0.15);
934
+ --surface-hover: rgba(255, 255, 255, 0.05);
935
+ --maskbg: #{$maskBg};
936
+ --focus-ring: #{$focusShadow};
911
937
  }
@@ -8,8 +8,9 @@ $colors: (
8
8
  'teal': #009688,
9
9
  'orange': #f57c00,
10
10
  'bluegray': #607d8b,
11
- 'purple': #9c27b0
12
- );
11
+ 'purple': #9c27b0,
12
+ 'primary': $primaryColor
13
+ ) !default;
13
14
 
14
15
  //reused color variables
15
16
  $shade000: transparent !default; //surface
@@ -21,7 +22,7 @@ $shade500: #8a8ea6 !default; //text third color
21
22
  $shade600: #676b89 !default; //text secondary color
22
23
  $shade700: #44486d !default; //text color
23
24
 
24
- $solidSurfaceColor: white;
25
+ $solidSurfaceColor: #ececf9 !default;
25
26
 
26
27
  //global
27
28
  $fontFamily: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default;
@@ -74,7 +75,7 @@ $inputHoverBorderColor: transparent !default;
74
75
  $inputFocusBorderColor: $primaryColor !default;
75
76
  $inputErrorBorderColor: $errorColor !default;
76
77
  $inputPlaceholderTextColor: $shade500 !default;
77
- $inputFilledBg: $shade000 !default; //??
78
+ $inputFilledBg: $shade000 !default;
78
79
  $inputFilledHoverBg: $inputFilledBg !default;
79
80
  $inputFilledFocusBg: $shade100 !default;
80
81
 
@@ -166,16 +167,16 @@ $infoButtonActiveBorderColor: transparent !default;
166
167
  $infoButtonShadow: 0px 0px 10px rgba(135, 62, 254, 0.25) !default;
167
168
  $infoButtonFocusShadow: none !default;
168
169
 
169
- $successButtonBg: #397289 !default;
170
+ $successButtonBg: #0bd18a !default;
170
171
  $successButtonTextColor: #ffffff !default;
171
172
  $successButtonBorder: 1px solid transparent !default;
172
- $successButtonHoverBg: #68a4bb !default;
173
+ $successButtonHoverBg: #049b65 !default;
173
174
  $successButtonTextHoverColor: $successButtonTextColor !default;
174
175
  $successButtonHoverBorderColor: transparent !default;
175
- $successButtonActiveBg: #264e5e !default;
176
+ $successButtonActiveBg: #017e52 !default;
176
177
  $successButtonTextActiveColor: $successButtonTextColor !default;
177
178
  $successButtonActiveBorderColor: transparent !default;
178
- $successButtonShadow: 0px 0px 10px rgba(38, 78, 94, 0.3) !default;
179
+ $successButtonShadow: 0px 0px 10px rgba(11, 209, 138, 0.25) !default;
179
180
  $successButtonFocusShadow: none !default;
180
181
 
181
182
  $warningButtonBg: #eee500 !default;
@@ -202,7 +203,7 @@ $helpButtonActiveBorderColor: transparent !default;
202
203
  $helpButtonShadow: 0px 0px 10px rgba(236, 77, 188, 0.25) !default;
203
204
  $helpButtonFocusShadow: none !default;
204
205
 
205
- $dangerButtonBg: #af1d1d !default;
206
+ $dangerButtonBg: #fc6161 !default;
206
207
  $dangerButtonTextColor: #ffffff !default;
207
208
  $dangerButtonBorder: 1px solid transparent !default;
208
209
  $dangerButtonHoverBg: #e73a3a !default;
@@ -250,6 +251,7 @@ $colorPickerPreviewWidth: 2rem !default;
250
251
  $colorPickerPreviewHeight: 2rem !default;
251
252
  $colorPickerBg: $shade100 !default;
252
253
  $colorPickerBorderColor: #191919 !default;
254
+ $colorPickerBorder: 1px solid #191919 !default;
253
255
  $colorPickerHandleColor: #191919 !default;
254
256
 
255
257
  //togglebutton
@@ -316,6 +318,7 @@ $calendarHeaderCellPadding: 0.357rem !default;
316
318
  $calendarHeaderCellFontWeight: 500 !default;
317
319
  $calendarHeaderCellFontSize: 12px !default;
318
320
  $calendarHeaderCellTextColor: $shade500 !default;
321
+ $calendarMonthYearHeaderHoverTextColor: $primaryColor !default;
319
322
 
320
323
  $calendarCellDateBg: $shade100 !default;
321
324
  $calendarCellDatePadding: 0.357rem !default;
@@ -367,6 +370,7 @@ $panelHeaderTextHoverColor: $shade700 !default;
367
370
  $panelContentBorderColor: $shade300 !default;
368
371
  $panelContentBorder: 1px solid $shade300 !default;
369
372
  $panelContentBg: transparent !default;
373
+ $panelContentEvenRowBg: scale-color($panelContentBg, $lightness: -1%) !default;
370
374
  $panelContentTextColor: $shade700 !default;
371
375
  $panelContentPadding: 1.143rem !default;
372
376
 
@@ -686,6 +690,7 @@ $progressBarHeight: 0.571rem !default;
686
690
  $progressBarBorder: 0 none !default;
687
691
  $progressBarBg: $shade200 !default;
688
692
  $progressBarValueBg: $primaryColor !default;
693
+ $progressBarValueTextColor: $primaryTextColor !default;
689
694
 
690
695
  //menu (e.g. menu, menubar, tieredmenu)
691
696
  $menuWidth: 12.5rem !default;
@@ -814,38 +819,38 @@ $galleriaThumbnailNavigatorWidth: 2rem !default;
814
819
  $galleriaThumbnailNavigatorHeight: 2rem !default;
815
820
 
816
821
  //divider
817
- $dividerHorizontalMargin: 1rem 0;
818
- $dividerHorizontalPadding: 0 1rem;
819
- $dividerVerticalMargin: 0 1rem;
820
- $dividerVerticalPadding: 1rem 0;
821
- $dividerSize: 1px;
822
- $dividerColor: $shade300;
822
+ $dividerHorizontalMargin: 1rem 0 !default;
823
+ $dividerHorizontalPadding: 0 1rem !default;
824
+ $dividerVerticalMargin: 0 1rem !default;
825
+ $dividerVerticalPadding: 1rem 0 !default;
826
+ $dividerSize: 1px !default;
827
+ $dividerColor: $shade300 !default;
823
828
 
824
829
  //avatar
825
- $avatarBg: $shade300;
826
- $avatarTextColor: $textColor;
830
+ $avatarBg: $shade300 !default;
831
+ $avatarTextColor: $textColor !default;
827
832
 
828
833
  //chip
829
- $chipBg: $shade300;
830
- $chipTextColor: $textColor;
831
- $chipBorderRadius: 16px;
834
+ $chipBg: $shade300 !default;
835
+ $chipTextColor: $textColor !default;
836
+ $chipBorderRadius: 16px !default;
832
837
 
833
838
  //scrollTop
834
- $scrollTopBg: rgba(0, 0, 0, 0.7);
835
- $scrollTopHoverBg: rgba(0, 0, 0, 0.8);
836
- $scrollTopWidth: 3rem;
837
- $scrollTopHeight: 3rem;
838
- $scrollTopBorderRadius: 50%;
839
- $scrollTopFontSize: 1.5rem;
840
- $scrollTopTextColor: $shade000;
839
+ $scrollTopBg: rgba(0, 0, 0, 0.7) !default;
840
+ $scrollTopHoverBg: rgba(0, 0, 0, 0.8) !default;
841
+ $scrollTopWidth: 3rem !default;
842
+ $scrollTopHeight: 3rem !default;
843
+ $scrollTopBorderRadius: 50% !default;
844
+ $scrollTopFontSize: 1.5rem !default;
845
+ $scrollTopTextColor: $shade000 !default;
841
846
 
842
847
  //skeleton
843
- $skeletonBg: $shade100;
844
- $skeletonAnimationBg: rgba(255, 255, 255, 0.4);
848
+ $skeletonBg: $shade100 !default;
849
+ $skeletonAnimationBg: rgba(255, 255, 255, 0.4) !default;
845
850
 
846
851
  //splitter
847
- $splitterGutterBg: $shade300;
848
- $splitterGutterHandleBg: $shade300;
852
+ $splitterGutterBg: $shade300 !default;
853
+ $splitterGutterHandleBg: $shade300 !default;
849
854
 
850
855
  //speeddial
851
856
  $speedDialButtonWidth: 4rem !default;
@@ -889,11 +894,43 @@ $imagePreviewActionIconBorderRadius: 50% !default;
889
894
  --surface-b: #{$shade100};
890
895
  --surface-c: #{$shade200};
891
896
  --surface-d: #{$shade300};
892
- --surface-e: #{$shade400};
893
- --surface-f: #{$shade500};
897
+ --surface-e: #{$shade000};
898
+ --surface-f: #{$shade000};
894
899
  --text-color: #{$shade700};
895
900
  --text-color-secondary: #{$shade600};
896
901
  --primary-color: #{$primaryColor};
897
902
  --primary-color-text: #{$primaryTextColor};
898
903
  --font-family: #{$fontFamily};
904
+ --surface-0: #ffffff;
905
+ --surface-50: #e1e2e8;
906
+ --surface-100: #cbccd6;
907
+ --surface-200: #b4b6c5;
908
+ --surface-300: #9ea0b3;
909
+ --surface-400: #878aa2;
910
+ --surface-500: #717490;
911
+ --surface-600: #5a5e7f;
912
+ --surface-700: #44486d;
913
+ --surface-800: #3c3f60;
914
+ --surface-900: #343753;
915
+ --gray-50: #e1e2e8;
916
+ --gray-100: #cbccd6;
917
+ --gray-200: #b4b6c5;
918
+ --gray-300: #9ea0b3;
919
+ --gray-400: #878aa2;
920
+ --gray-500: #717490;
921
+ --gray-600: #5a5e7f;
922
+ --gray-700: #44486d;
923
+ --gray-800: #3c3f60;
924
+ --gray-900: #343753;
925
+ --content-padding: #{$panelContentPadding};
926
+ --inline-spacing: #{$inlineSpacing};
927
+ --border-radius: #{$borderRadius};
928
+ --surface-ground: linear-gradient(180deg, #f6f9fc 0%, #ececf9 100%);
929
+ --surface-section: #ffffff;
930
+ --surface-card: rgba(255, 255, 255, 0.9);
931
+ --surface-overlay: #ececf9;
932
+ --surface-border: rgba(68, 72, 109, 0.2);
933
+ --surface-hover: rgba(68, 72, 109, 0.07);
934
+ --maskbg: #{$maskBg};
935
+ --focus-ring: #{$focusShadow};
899
936
  }
@@ -4,3 +4,7 @@
4
4
  font-size: 0.875rem;
5
5
  }
6
6
  }
7
+
8
+ .p-slidemenu {
9
+ width: auto !important;
10
+ }
package/version-info.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@mediusinc/mng-commons",
3
- "version": "1.3.0-1c14fa2b",
4
- "tag": "v1.3.0",
5
- "distance": 0,
6
- "hash": "1c14fa2b",
3
+ "version": "2.0.0-rc.0-08f92864",
4
+ "tag": "v1.4.0-rc.0",
5
+ "distance": 21,
6
+ "hash": "08f92864",
7
7
  "dirty": true,
8
- "semver": "1.3.0+0.g1c14fa2b.dirty",
9
- "raw": "v1.3.0-1c14fa2b-dirty"
8
+ "semver": "1.4.0-rc.0+21.g08f92864.dirty",
9
+ "raw": "v1.4.0-rc.0-21-08f92864-dirty"
10
10
  }
@@ -1,60 +0,0 @@
1
- import { ButtonStyleBuilder } from '../styles';
2
- export class ActionButtonDescriptor {
3
- constructor() {
4
- this._iconPosition = 'left';
5
- this._styleClass = new ButtonStyleBuilder();
6
- }
7
- withLabel(label) {
8
- this._label = label;
9
- return this;
10
- }
11
- withIcon(icon) {
12
- this._icon = icon;
13
- return this;
14
- }
15
- withIconPosition(iconPosition) {
16
- this._iconPosition = iconPosition;
17
- return this;
18
- }
19
- withStyleClass(style) {
20
- this._styleClass = style;
21
- return this;
22
- }
23
- withBadge(badge) {
24
- this._badge = badge;
25
- return this;
26
- }
27
- withTooltip(tooltip) {
28
- this._tooltip = tooltip;
29
- return this;
30
- }
31
- get label() {
32
- return this._label;
33
- }
34
- get icon() {
35
- return this._icon;
36
- }
37
- get iconPosition() {
38
- return this._iconPosition;
39
- }
40
- get styleClass() {
41
- return this._styleClass;
42
- }
43
- get badge() {
44
- return this._badge;
45
- }
46
- get tooltip() {
47
- return this._tooltip;
48
- }
49
- copy() {
50
- const descriptor = new ActionButtonDescriptor();
51
- descriptor._label = this._label;
52
- descriptor._icon = this._icon;
53
- descriptor._iconPosition = this._iconPosition;
54
- descriptor._styleClass = this._styleClass;
55
- descriptor._badge = this._badge;
56
- descriptor._tooltip = this._tooltip;
57
- return descriptor;
58
- }
59
- }
60
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLWJ1dHRvbi5kZXNjcmlwdG9yLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2xpYi9kZXNjcmlwdG9ycy9hY3Rpb24tYnV0dG9uLmRlc2NyaXB0b3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLGtCQUFrQixFQUFDLE1BQU0sV0FBVyxDQUFDO0FBRTdDLE1BQU0sT0FBTyxzQkFBc0I7SUFBbkM7UUFJWSxrQkFBYSxHQUFxQixNQUFNLENBQUM7UUFFekMsZ0JBQVcsR0FBRyxJQUFJLGtCQUFrQixFQUFFLENBQUM7SUFxRW5ELENBQUM7SUFoRVUsU0FBUyxDQUFDLEtBQXFCO1FBQ2xDLElBQUksQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDO1FBQ3BCLE9BQU8sSUFBSSxDQUFDO0lBQ2hCLENBQUM7SUFFTSxRQUFRLENBQUMsSUFBbUI7UUFDL0IsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7UUFDbEIsT0FBTyxJQUFJLENBQUM7SUFDaEIsQ0FBQztJQUVNLGdCQUFnQixDQUFDLFlBQThCO1FBQ2xELElBQUksQ0FBQyxhQUFhLEdBQUcsWUFBWSxDQUFDO1FBQ2xDLE9BQU8sSUFBSSxDQUFDO0lBQ2hCLENBQUM7SUFFTSxjQUFjLENBQUMsS0FBeUI7UUFDM0MsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7UUFDekIsT0FBTyxJQUFJLENBQUM7SUFDaEIsQ0FBQztJQUVNLFNBQVMsQ0FBQyxLQUFhO1FBQzFCLElBQUksQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDO1FBQ3BCLE9BQU8sSUFBSSxDQUFDO0lBQ2hCLENBQUM7SUFFTSxXQUFXLENBQUMsT0FBZTtRQUM5QixJQUFJLENBQUMsUUFBUSxHQUFHLE9BQU8sQ0FBQztRQUN4QixPQUFPLElBQUksQ0FBQztJQUNoQixDQUFDO0lBRUQsSUFBVyxLQUFLO1FBQ1osT0FBTyxJQUFJLENBQUMsTUFBTSxDQUFDO0lBQ3ZCLENBQUM7SUFFRCxJQUFXLElBQUk7UUFDWCxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUM7SUFDdEIsQ0FBQztJQUVELElBQVcsWUFBWTtRQUNuQixPQUFPLElBQUksQ0FBQyxhQUFhLENBQUM7SUFDOUIsQ0FBQztJQUVELElBQVcsVUFBVTtRQUNqQixPQUFPLElBQUksQ0FBQyxXQUFXLENBQUM7SUFDNUIsQ0FBQztJQUVELElBQVcsS0FBSztRQUNaLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQztJQUN2QixDQUFDO0lBRUQsSUFBVyxPQUFPO1FBQ2QsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDO0lBQ3pCLENBQUM7SUFFTSxJQUFJO1FBQ1AsTUFBTSxVQUFVLEdBQUcsSUFBSSxzQkFBc0IsRUFBRSxDQUFDO1FBQ2hELFVBQVUsQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQztRQUNoQyxVQUFVLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUM7UUFDOUIsVUFBVSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDO1FBQzlDLFVBQVUsQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQztRQUMxQyxVQUFVLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUM7UUFDaEMsVUFBVSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDO1FBQ3BDLE9BQU8sVUFBVSxDQUFDO0lBQ3RCLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7QnV0dG9uU3R5bGVCdWlsZGVyfSBmcm9tICcuLi9zdHlsZXMnO1xuXG5leHBvcnQgY2xhc3MgQWN0aW9uQnV0dG9uRGVzY3JpcHRvciB7XG4gICAgcHJpdmF0ZSBfbGFiZWw/OiBzdHJpbmcgfCBudWxsO1xuXG4gICAgcHJpdmF0ZSBfaWNvbj86IHN0cmluZyB8IG51bGw7XG4gICAgcHJpdmF0ZSBfaWNvblBvc2l0aW9uOiAnbGVmdCcgfCAncmlnaHQnID0gJ2xlZnQnO1xuXG4gICAgcHJpdmF0ZSBfc3R5bGVDbGFzcyA9IG5ldyBCdXR0b25TdHlsZUJ1aWxkZXIoKTtcblxuICAgIHByaXZhdGUgX2JhZGdlPzogc3RyaW5nO1xuICAgIHByaXZhdGUgX3Rvb2x0aXA/OiBzdHJpbmc7XG5cbiAgICBwdWJsaWMgd2l0aExhYmVsKGxhYmVsPzogc3RyaW5nIHwgbnVsbCk6IHRoaXMge1xuICAgICAgICB0aGlzLl9sYWJlbCA9IGxhYmVsO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgd2l0aEljb24oaWNvbjogc3RyaW5nIHwgbnVsbCk6IHRoaXMge1xuICAgICAgICB0aGlzLl9pY29uID0gaWNvbjtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIHdpdGhJY29uUG9zaXRpb24oaWNvblBvc2l0aW9uOiAnbGVmdCcgfCAncmlnaHQnKTogdGhpcyB7XG4gICAgICAgIHRoaXMuX2ljb25Qb3NpdGlvbiA9IGljb25Qb3NpdGlvbjtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIHdpdGhTdHlsZUNsYXNzKHN0eWxlOiBCdXR0b25TdHlsZUJ1aWxkZXIpOiB0aGlzIHtcbiAgICAgICAgdGhpcy5fc3R5bGVDbGFzcyA9IHN0eWxlO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgd2l0aEJhZGdlKGJhZGdlOiBzdHJpbmcpOiB0aGlzIHtcbiAgICAgICAgdGhpcy5fYmFkZ2UgPSBiYWRnZTtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIHdpdGhUb29sdGlwKHRvb2x0aXA6IHN0cmluZyk6IHRoaXMge1xuICAgICAgICB0aGlzLl90b29sdGlwID0gdG9vbHRpcDtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBsYWJlbCgpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2xhYmVsO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgaWNvbigpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2ljb247XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBpY29uUG9zaXRpb24oKSB7XG4gICAgICAgIHJldHVybiB0aGlzLl9pY29uUG9zaXRpb247XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBzdHlsZUNsYXNzKCkge1xuICAgICAgICByZXR1cm4gdGhpcy5fc3R5bGVDbGFzcztcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IGJhZGdlKCkge1xuICAgICAgICByZXR1cm4gdGhpcy5fYmFkZ2U7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCB0b29sdGlwKCkge1xuICAgICAgICByZXR1cm4gdGhpcy5fdG9vbHRpcDtcbiAgICB9XG5cbiAgICBwdWJsaWMgY29weSgpOiBBY3Rpb25CdXR0b25EZXNjcmlwdG9yIHtcbiAgICAgICAgY29uc3QgZGVzY3JpcHRvciA9IG5ldyBBY3Rpb25CdXR0b25EZXNjcmlwdG9yKCk7XG4gICAgICAgIGRlc2NyaXB0b3IuX2xhYmVsID0gdGhpcy5fbGFiZWw7XG4gICAgICAgIGRlc2NyaXB0b3IuX2ljb24gPSB0aGlzLl9pY29uO1xuICAgICAgICBkZXNjcmlwdG9yLl9pY29uUG9zaXRpb24gPSB0aGlzLl9pY29uUG9zaXRpb247XG4gICAgICAgIGRlc2NyaXB0b3IuX3N0eWxlQ2xhc3MgPSB0aGlzLl9zdHlsZUNsYXNzO1xuICAgICAgICBkZXNjcmlwdG9yLl9iYWRnZSA9IHRoaXMuX2JhZGdlO1xuICAgICAgICBkZXNjcmlwdG9yLl90b29sdGlwID0gdGhpcy5fdG9vbHRpcDtcbiAgICAgICAgcmV0dXJuIGRlc2NyaXB0b3I7XG4gICAgfVxufVxuIl19