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.
- package/README.md +24 -0
- package/fesm2022/wuic-framework-lib.mjs +45009 -0
- package/fesm2022/wuic-framework-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/app.routes.d.ts +2 -0
- package/lib/class/IBindable.d.ts +17 -0
- package/lib/class/IDesigner.d.ts +4 -0
- package/lib/class/IDesignerProperties.d.ts +7 -0
- package/lib/class/IFieldEditor.d.ts +21 -0
- package/lib/class/aggregationInfo.d.ts +5 -0
- package/lib/class/carouselOptions.d.ts +27 -0
- package/lib/class/chartOptions.d.ts +31 -0
- package/lib/class/comboParams.d.ts +12 -0
- package/lib/class/customException.d.ts +6 -0
- package/lib/class/designerTool.d.ts +57 -0
- package/lib/class/filterInfo.d.ts +6 -0
- package/lib/class/filterItem.d.ts +14 -0
- package/lib/class/formOptions.d.ts +5 -0
- package/lib/class/groupInfo.d.ts +7 -0
- package/lib/class/lingua.d.ts +5 -0
- package/lib/class/mapOptions.d.ts +31 -0
- package/lib/class/metaInfo.d.ts +26 -0
- package/lib/class/metadati_colonna.d.ts +234 -0
- package/lib/class/metadati_condition_group.d.ts +30 -0
- package/lib/class/metadati_custom_actions_tabelle.d.ts +19 -0
- package/lib/class/metadati_tabella.d.ts +214 -0
- package/lib/class/metadati_ui_stili_colonna.d.ts +8 -0
- package/lib/class/metadati_ui_stili_tabella.d.ts +7 -0
- package/lib/class/metadati_utenti_autorizzazioni_colonna.d.ts +10 -0
- package/lib/class/rawPagedResult.d.ts +7 -0
- package/lib/class/resultInfo.d.ts +14 -0
- package/lib/class/schedulerOptions.d.ts +14 -0
- package/lib/class/sortInfo.d.ts +5 -0
- package/lib/class/trackedChanges.d.ts +13 -0
- package/lib/class/translation.d.ts +7 -0
- package/lib/class/treeOptions.d.ts +15 -0
- package/lib/class/updateInfo.d.ts +9 -0
- package/lib/class/userInfo.d.ts +19 -0
- package/lib/class/validationRule.d.ts +10 -0
- package/lib/class/widgetDefinition.d.ts +28 -0
- package/lib/component/archetype-configurator/archetype-configurator.component.d.ts +28 -0
- package/lib/component/bounded-repeater/bounded-repeater.component.d.ts +32 -0
- package/lib/component/carousel-list/carousel-list.component.d.ts +66 -0
- package/lib/component/chart-list/chart-list.component.d.ts +135 -0
- package/lib/component/code-editor/code-editor.component.d.ts +86 -0
- package/lib/component/code-editor/editor-options.d.ts +12 -0
- package/lib/component/code-editor/html-parser.d.ts +27 -0
- package/lib/component/code-editor/sql-model.d.ts +87 -0
- package/lib/component/code-editor/sql-parser.d.ts +157 -0
- package/lib/component/code-editor/ts-parser.d.ts +93 -0
- package/lib/component/code-editor/wuic-component-bindings.d.ts +7 -0
- package/lib/component/code-editor/wuic-component-selectors.d.ts +1 -0
- package/lib/component/css-sheet-editor/css-sheet-editor.component.d.ts +71 -0
- package/lib/component/dashboard/dashboard.component.d.ts +12 -0
- package/lib/component/data-action-button/data-action-button.component.d.ts +45 -0
- package/lib/component/data-repeater/data-repeater.component.d.ts +32 -0
- package/lib/component/data-source/data-source.component.d.ts +147 -0
- package/lib/component/designer/designer.component.d.ts +269 -0
- package/lib/component/dynamic-dashboard-template/dynamic-dashboard-template.component.d.ts +39 -0
- package/lib/component/dynamic-form-template/dynamic-form-template.component.d.ts +11 -0
- package/lib/component/dynamic-generic-template/dynamic-generic-template.component.d.ts +20 -0
- package/lib/component/dynamic-repeater-template/dynamic-repeater-template.component.d.ts +15 -0
- package/lib/component/dynamic-template/dynamic-template.component.d.ts +31 -0
- package/lib/component/edit-form/edit-form.component.d.ts +62 -0
- package/lib/component/field/boolean-editor/boolean-editor.component.d.ts +23 -0
- package/lib/component/field/button-editor/button-editor.component.d.ts +25 -0
- package/lib/component/field/code-area-editor/code-area-editor.component.d.ts +20 -0
- package/lib/component/field/color-editor/color-editor.component.d.ts +23 -0
- package/lib/component/field/date-editor/date-editor.component.d.ts +25 -0
- package/lib/component/field/dictionary-editor/dictionary-editor.component.d.ts +35 -0
- package/lib/component/field/field-editor/field-editor.component.d.ts +65 -0
- package/lib/component/field/field-filter/field-filter.component.d.ts +43 -0
- package/lib/component/field/html-editor/html-editor.component.d.ts +24 -0
- package/lib/component/field/lookup-editor/lookup-editor.component.d.ts +35 -0
- package/lib/component/field/number-editor/number-editor.component.d.ts +26 -0
- package/lib/component/field/point-filter/point-filter.component.d.ts +34 -0
- package/lib/component/field/property-array-editor/property-array-editor.component.d.ts +27 -0
- package/lib/component/field/property-object-editor/property-object-editor.component.d.ts +26 -0
- package/lib/component/field/text-area-editor/text-area-editor.component.d.ts +24 -0
- package/lib/component/field/text-editor/text-editor.component.d.ts +25 -0
- package/lib/component/field/tree-view-selector/tree-view-selector.component.d.ts +22 -0
- package/lib/component/field/upload-editor/upload-editor.component.d.ts +38 -0
- package/lib/component/filter-bar/filter-bar.component.d.ts +67 -0
- package/lib/component/image-wrapper/image-wrapper.component.d.ts +15 -0
- package/lib/component/list-grid/list-grid.component.d.ts +238 -0
- package/lib/component/map-list/map-list.component.d.ts +137 -0
- package/lib/component/meta-menu/meta-menu.component.d.ts +97 -0
- package/lib/component/metadata-editor/metadata-editor.component.d.ts +125 -0
- package/lib/component/pager/pager.component.d.ts +41 -0
- package/lib/component/parametric-dialog/parametric-dialog.component.d.ts +44 -0
- package/lib/component/report-designer/report-designer.component.d.ts +19 -0
- package/lib/component/report-viewer/report-viewer.component.d.ts +20 -0
- package/lib/component/scheduler-list/scheduler-list.component.d.ts +54 -0
- package/lib/component/split/gutter/gutter-num-token.d.ts +7 -0
- package/lib/component/split/gutter/split-gutter-dynamic-injector.directive.d.ts +19 -0
- package/lib/component/split/gutter/split-gutter.directive.d.ts +54 -0
- package/lib/component/split/helpers/angular-split-config.token.d.ts +20 -0
- package/lib/component/split/helpers/models.d.ts +11 -0
- package/lib/component/split/helpers/split-custom-events-behavior.directive.d.ts +22 -0
- package/lib/component/split/helpers/utils.d.ts +30 -0
- package/lib/component/split/helpers/validations.d.ts +3 -0
- package/lib/component/split/split.component.d.ts +65 -0
- package/lib/component/split-area/split-area.component.d.ts +36 -0
- package/lib/component/spreadsheet-list/spreadsheet-list.component.d.ts +132 -0
- package/lib/component/tab-panel-wrapper/tab-panel-wrapper.component.d.ts +6 -0
- package/lib/component/tab-view-wrapper/tab-view-wrapper.component.d.ts +8 -0
- package/lib/component/tree-list/tree-list.component.d.ts +43 -0
- package/lib/component/workflow-designer/workflow-designer-node.component.d.ts +50 -0
- package/lib/component/workflow-designer/workflow-designer.component.d.ts +262 -0
- package/lib/component/workflow-runner/workflow-runner.component.d.ts +91 -0
- package/lib/directive/angular-resizable.directive.d.ts +153 -0
- package/lib/directive/classes/ngx-draggable-point.d.ts +5 -0
- package/lib/directive/classes/ngx-draggable-rect.d.ts +27 -0
- package/lib/directive/data-bound.directive.d.ts +16 -0
- package/lib/directive/events/ngx-draggable-dom-bounds-check-event.d.ts +32 -0
- package/lib/directive/events/ngx-draggable-dom-move-event.d.ts +28 -0
- package/lib/directive/helpers/helper-block.d.ts +12 -0
- package/lib/directive/helpers/ngx-draggable-dom-math.d.ts +65 -0
- package/lib/directive/helpers/ngx-draggable-dom-utilities.d.ts +26 -0
- package/lib/directive/helpers/resize-handle.d.ts +14 -0
- package/lib/directive/models/position.d.ts +21 -0
- package/lib/directive/models/resize-event.d.ts +16 -0
- package/lib/directive/models/resize-handle-type.d.ts +11 -0
- package/lib/directive/models/size.d.ts +12 -0
- package/lib/directive/ngx-draggable-dom.directive.d.ts +175 -0
- package/lib/handler/GlobalHandler.d.ts +11 -0
- package/lib/handler/mime.d.ts +11 -0
- package/lib/pipe/async-callback.pipe.d.ts +11 -0
- package/lib/pipe/available-operators.pipe.d.ts +8 -0
- package/lib/pipe/callback.pipe.d.ts +7 -0
- package/lib/pipe/callback2.pipe.d.ts +7 -0
- package/lib/pipe/format-grid-view-value.pipe.d.ts +8 -0
- package/lib/pipe/get-src-upload-preview.pipe.d.ts +9 -0
- package/lib/pipe/is-selected-row.pipe.d.ts +8 -0
- package/lib/pipe/prop-converter.pipe.d.ts +7 -0
- package/lib/pipe/show-filter-bar.pipe.d.ts +9 -0
- package/lib/pipe/to-date.pipe.d.ts +7 -0
- package/lib/pipe/visible-field-list.pipe.d.ts +7 -0
- package/lib/service/auth-session.service.d.ts +52 -0
- package/lib/service/client-side-crud.service.d.ts +35 -0
- package/lib/service/data-provider-meta.service.d.ts +32 -0
- package/lib/service/data-provider-odata.service.d.ts +18 -0
- package/lib/service/data-provider-webservice.service.d.ts +15 -0
- package/lib/service/data-provider.service.d.ts +64 -0
- package/lib/service/metadata-editor.service.d.ts +16 -0
- package/lib/service/metadata-provider.service.d.ts +160 -0
- package/lib/service/translation-manager.service.d.ts +38 -0
- package/lib/service/user-info.service.d.ts +24 -0
- package/lib/service/workflow-runtime-menu.service.d.ts +15 -0
- package/lib/service/workflow-runtime-metadata.service.d.ts +28 -0
- package/lib/service/wtoolbox.service.d.ts +145 -0
- package/package.json +63 -0
- package/public-api.d.ts +48 -0
- package/styles/styles.scss +87 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# WuicFrameworkLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 18.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project wuic-framework-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project wuic-framework-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project wuic-framework-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build wuic-framework-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build wuic-framework-lib`, go to the dist folder `cd dist/wuic-framework-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test wuic-framework-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
|