wuic-framework-lib 0.0.1

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 (154) hide show
  1. package/README.md +24 -0
  2. package/fesm2022/wuic-framework-lib.mjs +45009 -0
  3. package/fesm2022/wuic-framework-lib.mjs.map +1 -0
  4. package/index.d.ts +5 -0
  5. package/lib/app.routes.d.ts +2 -0
  6. package/lib/class/IBindable.d.ts +17 -0
  7. package/lib/class/IDesigner.d.ts +4 -0
  8. package/lib/class/IDesignerProperties.d.ts +7 -0
  9. package/lib/class/IFieldEditor.d.ts +21 -0
  10. package/lib/class/aggregationInfo.d.ts +5 -0
  11. package/lib/class/carouselOptions.d.ts +27 -0
  12. package/lib/class/chartOptions.d.ts +31 -0
  13. package/lib/class/comboParams.d.ts +12 -0
  14. package/lib/class/customException.d.ts +6 -0
  15. package/lib/class/designerTool.d.ts +57 -0
  16. package/lib/class/filterInfo.d.ts +6 -0
  17. package/lib/class/filterItem.d.ts +14 -0
  18. package/lib/class/formOptions.d.ts +5 -0
  19. package/lib/class/groupInfo.d.ts +7 -0
  20. package/lib/class/lingua.d.ts +5 -0
  21. package/lib/class/mapOptions.d.ts +31 -0
  22. package/lib/class/metaInfo.d.ts +26 -0
  23. package/lib/class/metadati_colonna.d.ts +234 -0
  24. package/lib/class/metadati_condition_group.d.ts +30 -0
  25. package/lib/class/metadati_custom_actions_tabelle.d.ts +19 -0
  26. package/lib/class/metadati_tabella.d.ts +214 -0
  27. package/lib/class/metadati_ui_stili_colonna.d.ts +8 -0
  28. package/lib/class/metadati_ui_stili_tabella.d.ts +7 -0
  29. package/lib/class/metadati_utenti_autorizzazioni_colonna.d.ts +10 -0
  30. package/lib/class/rawPagedResult.d.ts +7 -0
  31. package/lib/class/resultInfo.d.ts +14 -0
  32. package/lib/class/schedulerOptions.d.ts +14 -0
  33. package/lib/class/sortInfo.d.ts +5 -0
  34. package/lib/class/trackedChanges.d.ts +13 -0
  35. package/lib/class/translation.d.ts +7 -0
  36. package/lib/class/treeOptions.d.ts +15 -0
  37. package/lib/class/updateInfo.d.ts +9 -0
  38. package/lib/class/userInfo.d.ts +19 -0
  39. package/lib/class/validationRule.d.ts +10 -0
  40. package/lib/class/widgetDefinition.d.ts +28 -0
  41. package/lib/component/archetype-configurator/archetype-configurator.component.d.ts +28 -0
  42. package/lib/component/bounded-repeater/bounded-repeater.component.d.ts +32 -0
  43. package/lib/component/carousel-list/carousel-list.component.d.ts +66 -0
  44. package/lib/component/chart-list/chart-list.component.d.ts +135 -0
  45. package/lib/component/code-editor/code-editor.component.d.ts +86 -0
  46. package/lib/component/code-editor/editor-options.d.ts +12 -0
  47. package/lib/component/code-editor/html-parser.d.ts +27 -0
  48. package/lib/component/code-editor/sql-model.d.ts +87 -0
  49. package/lib/component/code-editor/sql-parser.d.ts +157 -0
  50. package/lib/component/code-editor/ts-parser.d.ts +93 -0
  51. package/lib/component/code-editor/wuic-component-bindings.d.ts +7 -0
  52. package/lib/component/code-editor/wuic-component-selectors.d.ts +1 -0
  53. package/lib/component/css-sheet-editor/css-sheet-editor.component.d.ts +71 -0
  54. package/lib/component/dashboard/dashboard.component.d.ts +12 -0
  55. package/lib/component/data-action-button/data-action-button.component.d.ts +45 -0
  56. package/lib/component/data-repeater/data-repeater.component.d.ts +32 -0
  57. package/lib/component/data-source/data-source.component.d.ts +147 -0
  58. package/lib/component/designer/designer.component.d.ts +269 -0
  59. package/lib/component/dynamic-dashboard-template/dynamic-dashboard-template.component.d.ts +39 -0
  60. package/lib/component/dynamic-form-template/dynamic-form-template.component.d.ts +11 -0
  61. package/lib/component/dynamic-generic-template/dynamic-generic-template.component.d.ts +20 -0
  62. package/lib/component/dynamic-repeater-template/dynamic-repeater-template.component.d.ts +15 -0
  63. package/lib/component/dynamic-template/dynamic-template.component.d.ts +31 -0
  64. package/lib/component/edit-form/edit-form.component.d.ts +62 -0
  65. package/lib/component/field/boolean-editor/boolean-editor.component.d.ts +23 -0
  66. package/lib/component/field/button-editor/button-editor.component.d.ts +25 -0
  67. package/lib/component/field/code-area-editor/code-area-editor.component.d.ts +20 -0
  68. package/lib/component/field/color-editor/color-editor.component.d.ts +23 -0
  69. package/lib/component/field/date-editor/date-editor.component.d.ts +25 -0
  70. package/lib/component/field/dictionary-editor/dictionary-editor.component.d.ts +35 -0
  71. package/lib/component/field/field-editor/field-editor.component.d.ts +65 -0
  72. package/lib/component/field/field-filter/field-filter.component.d.ts +43 -0
  73. package/lib/component/field/html-editor/html-editor.component.d.ts +24 -0
  74. package/lib/component/field/lookup-editor/lookup-editor.component.d.ts +35 -0
  75. package/lib/component/field/number-editor/number-editor.component.d.ts +26 -0
  76. package/lib/component/field/point-filter/point-filter.component.d.ts +34 -0
  77. package/lib/component/field/property-array-editor/property-array-editor.component.d.ts +27 -0
  78. package/lib/component/field/property-object-editor/property-object-editor.component.d.ts +26 -0
  79. package/lib/component/field/text-area-editor/text-area-editor.component.d.ts +24 -0
  80. package/lib/component/field/text-editor/text-editor.component.d.ts +25 -0
  81. package/lib/component/field/tree-view-selector/tree-view-selector.component.d.ts +22 -0
  82. package/lib/component/field/upload-editor/upload-editor.component.d.ts +38 -0
  83. package/lib/component/filter-bar/filter-bar.component.d.ts +67 -0
  84. package/lib/component/image-wrapper/image-wrapper.component.d.ts +15 -0
  85. package/lib/component/list-grid/list-grid.component.d.ts +238 -0
  86. package/lib/component/map-list/map-list.component.d.ts +137 -0
  87. package/lib/component/meta-menu/meta-menu.component.d.ts +97 -0
  88. package/lib/component/metadata-editor/metadata-editor.component.d.ts +125 -0
  89. package/lib/component/pager/pager.component.d.ts +41 -0
  90. package/lib/component/parametric-dialog/parametric-dialog.component.d.ts +44 -0
  91. package/lib/component/report-designer/report-designer.component.d.ts +19 -0
  92. package/lib/component/report-viewer/report-viewer.component.d.ts +20 -0
  93. package/lib/component/scheduler-list/scheduler-list.component.d.ts +54 -0
  94. package/lib/component/split/gutter/gutter-num-token.d.ts +7 -0
  95. package/lib/component/split/gutter/split-gutter-dynamic-injector.directive.d.ts +19 -0
  96. package/lib/component/split/gutter/split-gutter.directive.d.ts +54 -0
  97. package/lib/component/split/helpers/angular-split-config.token.d.ts +20 -0
  98. package/lib/component/split/helpers/models.d.ts +11 -0
  99. package/lib/component/split/helpers/split-custom-events-behavior.directive.d.ts +22 -0
  100. package/lib/component/split/helpers/utils.d.ts +30 -0
  101. package/lib/component/split/helpers/validations.d.ts +3 -0
  102. package/lib/component/split/split.component.d.ts +65 -0
  103. package/lib/component/split-area/split-area.component.d.ts +36 -0
  104. package/lib/component/spreadsheet-list/spreadsheet-list.component.d.ts +132 -0
  105. package/lib/component/tab-panel-wrapper/tab-panel-wrapper.component.d.ts +6 -0
  106. package/lib/component/tab-view-wrapper/tab-view-wrapper.component.d.ts +8 -0
  107. package/lib/component/tree-list/tree-list.component.d.ts +43 -0
  108. package/lib/component/workflow-designer/workflow-designer-node.component.d.ts +50 -0
  109. package/lib/component/workflow-designer/workflow-designer.component.d.ts +262 -0
  110. package/lib/component/workflow-runner/workflow-runner.component.d.ts +91 -0
  111. package/lib/directive/angular-resizable.directive.d.ts +153 -0
  112. package/lib/directive/classes/ngx-draggable-point.d.ts +5 -0
  113. package/lib/directive/classes/ngx-draggable-rect.d.ts +27 -0
  114. package/lib/directive/data-bound.directive.d.ts +16 -0
  115. package/lib/directive/events/ngx-draggable-dom-bounds-check-event.d.ts +32 -0
  116. package/lib/directive/events/ngx-draggable-dom-move-event.d.ts +28 -0
  117. package/lib/directive/helpers/helper-block.d.ts +12 -0
  118. package/lib/directive/helpers/ngx-draggable-dom-math.d.ts +65 -0
  119. package/lib/directive/helpers/ngx-draggable-dom-utilities.d.ts +26 -0
  120. package/lib/directive/helpers/resize-handle.d.ts +14 -0
  121. package/lib/directive/models/position.d.ts +21 -0
  122. package/lib/directive/models/resize-event.d.ts +16 -0
  123. package/lib/directive/models/resize-handle-type.d.ts +11 -0
  124. package/lib/directive/models/size.d.ts +12 -0
  125. package/lib/directive/ngx-draggable-dom.directive.d.ts +175 -0
  126. package/lib/handler/GlobalHandler.d.ts +11 -0
  127. package/lib/handler/mime.d.ts +11 -0
  128. package/lib/pipe/async-callback.pipe.d.ts +11 -0
  129. package/lib/pipe/available-operators.pipe.d.ts +8 -0
  130. package/lib/pipe/callback.pipe.d.ts +7 -0
  131. package/lib/pipe/callback2.pipe.d.ts +7 -0
  132. package/lib/pipe/format-grid-view-value.pipe.d.ts +8 -0
  133. package/lib/pipe/get-src-upload-preview.pipe.d.ts +9 -0
  134. package/lib/pipe/is-selected-row.pipe.d.ts +8 -0
  135. package/lib/pipe/prop-converter.pipe.d.ts +7 -0
  136. package/lib/pipe/show-filter-bar.pipe.d.ts +9 -0
  137. package/lib/pipe/to-date.pipe.d.ts +7 -0
  138. package/lib/pipe/visible-field-list.pipe.d.ts +7 -0
  139. package/lib/service/auth-session.service.d.ts +52 -0
  140. package/lib/service/client-side-crud.service.d.ts +35 -0
  141. package/lib/service/data-provider-meta.service.d.ts +32 -0
  142. package/lib/service/data-provider-odata.service.d.ts +18 -0
  143. package/lib/service/data-provider-webservice.service.d.ts +15 -0
  144. package/lib/service/data-provider.service.d.ts +64 -0
  145. package/lib/service/metadata-editor.service.d.ts +16 -0
  146. package/lib/service/metadata-provider.service.d.ts +160 -0
  147. package/lib/service/translation-manager.service.d.ts +38 -0
  148. package/lib/service/user-info.service.d.ts +24 -0
  149. package/lib/service/workflow-runtime-menu.service.d.ts +15 -0
  150. package/lib/service/workflow-runtime-metadata.service.d.ts +28 -0
  151. package/lib/service/wtoolbox.service.d.ts +145 -0
  152. package/package.json +63 -0
  153. package/public-api.d.ts +48 -0
  154. package/styles/styles.scss +87 -0
@@ -0,0 +1,87 @@
1
+ $main_background: #fff;
2
+
3
+ :root {
4
+ --main-background: #{$main_background}; // or any global you wish to share with components
5
+ }
6
+
7
+ $widget_edit_popup_height: 90%;
8
+ $widget_edit_popup_width: 75%;
9
+
10
+ .datasource-descriptor {
11
+ display: none;
12
+ }
13
+
14
+ .dashboard-design {
15
+ position: relative;
16
+ overflow: auto;
17
+
18
+ tbody,
19
+ tr,
20
+ td {
21
+ border-style: inherit;
22
+ border-color: inherit;
23
+ border-width: inherit;
24
+ }
25
+ }
26
+
27
+ wuic-dashboard {
28
+ display: contents;
29
+ height: 100%;
30
+ }
31
+
32
+ .dashboard-design wuic-dashboard {
33
+ display: block;
34
+
35
+ .datasource-descriptor {
36
+ display: block;
37
+ border: solid 1px black;
38
+ }
39
+ }
40
+
41
+ ng-content {
42
+ display: contents;
43
+ }
44
+
45
+ a.p-menuitem-link {
46
+ word-break: break-word;
47
+ }
48
+
49
+ .edit-form-button-bar {
50
+ list-style-type: none;
51
+ padding: 0;
52
+ margin: 0;
53
+ }
54
+
55
+ .edit-form-button-bar li {
56
+ margin: 0;
57
+ }
58
+
59
+ ngx-monaco-editor .editor-container {
60
+ overflow: visible !important;
61
+ }
62
+
63
+ // PrimeNG paints cell background on td; propagate row style only to cells that do not have column-level style.
64
+ .p-datatable .p-datatable-tbody>tr.wuic-row-style-applied>td:not(.wuic-cell-style-applied) {
65
+ background-color: inherit !important;
66
+ }
67
+
68
+ .editor-widget.suggest-widget {
69
+ background-color: transparent !important;
70
+ border: none !important;
71
+
72
+ .tree {
73
+ height: 120px !important;
74
+ background-color: #000;
75
+ position: absolute !important;
76
+ bottom: 0 !important;
77
+ left: 0 !important;
78
+
79
+ // .monaco-list-rows {
80
+ // height: 120px !important;
81
+ // }
82
+
83
+ // .invisible.scrollbar.vertical {
84
+ // height: 120px !important;
85
+ // }
86
+ }
87
+ }