@libs-ui/exports 0.1.1-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 +3 -0
- package/esm2022/index.mjs +98 -0
- package/esm2022/libs-ui-exports.mjs +5 -0
- package/fesm2022/libs-ui-exports.mjs +92 -0
- package/fesm2022/libs-ui-exports.mjs.map +1 -0
- package/index.d.ts +87 -0
- package/package.json +120 -0
package/README.md
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
export * from '@libs-ui/interfaces-types';
|
|
2
|
+
export * from '@libs-ui/utils';
|
|
3
|
+
//Pipes
|
|
4
|
+
export * from '@libs-ui/pipes-call-function-in-template';
|
|
5
|
+
export * from '@libs-ui/pipes-check-selected-by-key';
|
|
6
|
+
export * from '@libs-ui/pipes-clone-object';
|
|
7
|
+
export * from '@libs-ui/pipes-convert-object-to-signal';
|
|
8
|
+
export * from '@libs-ui/pipes-convert-signal-to-object';
|
|
9
|
+
export * from '@libs-ui/pipes-escape-html';
|
|
10
|
+
export * from '@libs-ui/pipes-format-date';
|
|
11
|
+
export * from '@libs-ui/pipes-format-number';
|
|
12
|
+
export * from '@libs-ui/pipes-format-text-capitalize';
|
|
13
|
+
export * from '@libs-ui/pipes-format-text-first-letter-to-uppercase';
|
|
14
|
+
export * from '@libs-ui/pipes-format-text-full-name-format';
|
|
15
|
+
export * from '@libs-ui/pipes-format-text-highlight-by-keyword';
|
|
16
|
+
export * from '@libs-ui/pipes-get-value-of-object';
|
|
17
|
+
export * from '@libs-ui/pipes-security-trust';
|
|
18
|
+
//Directive
|
|
19
|
+
export * from '@libs-ui/components-click-outside';
|
|
20
|
+
export * from '@libs-ui/components-device-support';
|
|
21
|
+
export * from '@libs-ui/components-drag-drop';
|
|
22
|
+
export * from '@libs-ui/components-draw-line';
|
|
23
|
+
export * from '@libs-ui/components-minimap';
|
|
24
|
+
export * from '@libs-ui/components-scroll-measure-items-direction-horizontal';
|
|
25
|
+
export * from '@libs-ui/components-scroll-overlay';
|
|
26
|
+
// Components Other
|
|
27
|
+
export * from '@libs-ui/components-audio';
|
|
28
|
+
export * from '@libs-ui/components-avatar';
|
|
29
|
+
export * from '@libs-ui/components-badge';
|
|
30
|
+
export * from '@libs-ui/components-breadcrumb';
|
|
31
|
+
export * from '@libs-ui/components-card';
|
|
32
|
+
export * from '@libs-ui/components-color-picker';
|
|
33
|
+
export * from '@libs-ui/components-component-outlet';
|
|
34
|
+
export * from '@libs-ui/components-dropdown';
|
|
35
|
+
export * from '@libs-ui/components-gallery';
|
|
36
|
+
export * from '@libs-ui/components-image-editor';
|
|
37
|
+
export * from '@libs-ui/components-inputs-emoji';
|
|
38
|
+
export * from '@libs-ui/components-inputs-multi-language';
|
|
39
|
+
export * from '@libs-ui/components-inputs-password';
|
|
40
|
+
export * from '@libs-ui/components-inputs-upload';
|
|
41
|
+
export * from '@libs-ui/components-label';
|
|
42
|
+
export * from '@libs-ui/components-line-clamp';
|
|
43
|
+
export * from '@libs-ui/components-list';
|
|
44
|
+
export * from '@libs-ui/components-modal';
|
|
45
|
+
export * from '@libs-ui/components-pages-template-detail';
|
|
46
|
+
export * from '@libs-ui/components-pages-template-full-screen';
|
|
47
|
+
export * from '@libs-ui/components-pagination';
|
|
48
|
+
export * from '@libs-ui/components-popover';
|
|
49
|
+
export * from '@libs-ui/components-preview-file';
|
|
50
|
+
export * from '@libs-ui/components-skeleton';
|
|
51
|
+
export * from '@libs-ui/components-spinner';
|
|
52
|
+
export * from '@libs-ui/components-switch';
|
|
53
|
+
export * from '@libs-ui/components-table';
|
|
54
|
+
export * from '@libs-ui/components-tabs';
|
|
55
|
+
export * from '@libs-ui/components-tags';
|
|
56
|
+
export * from '@libs-ui/icons';
|
|
57
|
+
// Components Process Bar
|
|
58
|
+
export * from '@libs-ui/components-process-bar-standard';
|
|
59
|
+
export * from '@libs-ui/components-process-bar-steps';
|
|
60
|
+
// Components Buttons
|
|
61
|
+
export * from '@libs-ui/components-buttons-button';
|
|
62
|
+
export * from '@libs-ui/components-buttons-dropdown';
|
|
63
|
+
export * from '@libs-ui/components-buttons-group';
|
|
64
|
+
export * from '@libs-ui/components-buttons-select-color';
|
|
65
|
+
export * from '@libs-ui/components-buttons-sort';
|
|
66
|
+
export * from '@libs-ui/components-buttons-status';
|
|
67
|
+
export * from '@libs-ui/components-buttons-tab';
|
|
68
|
+
// Components Inputs
|
|
69
|
+
export * from '@libs-ui/components-inputs-add';
|
|
70
|
+
export * from '@libs-ui/components-inputs-calculator';
|
|
71
|
+
export * from '@libs-ui/components-inputs-color';
|
|
72
|
+
export * from '@libs-ui/components-inputs-input';
|
|
73
|
+
export * from '@libs-ui/components-inputs-keyboard';
|
|
74
|
+
export * from '@libs-ui/components-inputs-mention';
|
|
75
|
+
export * from '@libs-ui/components-inputs-quill';
|
|
76
|
+
export * from '@libs-ui/components-inputs-range-slider';
|
|
77
|
+
export * from '@libs-ui/components-inputs-search';
|
|
78
|
+
export * from '@libs-ui/components-inputs-valid';
|
|
79
|
+
// Components Checkbox
|
|
80
|
+
export * from '@libs-ui/components-checkbox-group';
|
|
81
|
+
export * from '@libs-ui/components-checkbox-single';
|
|
82
|
+
// Components Radio
|
|
83
|
+
export * from '@libs-ui/components-radio-group';
|
|
84
|
+
export * from '@libs-ui/components-radio-single';
|
|
85
|
+
// Components Datetime
|
|
86
|
+
export * from '@libs-ui/components-datetime-dropdown';
|
|
87
|
+
export * from '@libs-ui/components-datetime-input';
|
|
88
|
+
export * from '@libs-ui/components-datetime-picker';
|
|
89
|
+
//Services
|
|
90
|
+
export * from '@libs-ui/services-base-request-abstract';
|
|
91
|
+
export * from '@libs-ui/services-config-project';
|
|
92
|
+
export * from '@libs-ui/services-dialog';
|
|
93
|
+
export * from '@libs-ui/services-dynamic-component';
|
|
94
|
+
export * from '@libs-ui/services-format-date';
|
|
95
|
+
export * from '@libs-ui/services-http-request';
|
|
96
|
+
export * from '@libs-ui/services-notification';
|
|
97
|
+
export * from '@libs-ui/services-translate';
|
|
98
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9leHBvcnRzL3NyYy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsZ0JBQWdCLENBQUM7QUFFL0IsT0FBTztBQUNQLGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYyxzQ0FBc0MsQ0FBQztBQUNyRCxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYyx5Q0FBeUMsQ0FBQztBQUN4RCxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsc0RBQXNELENBQUM7QUFDckUsY0FBYyw2Q0FBNkMsQ0FBQztBQUM1RCxjQUFjLGlEQUFpRCxDQUFDO0FBQ2hFLGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYywrQkFBK0IsQ0FBQztBQUU5QyxXQUFXO0FBQ1gsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLG9DQUFvQyxDQUFDO0FBQ25ELGNBQWMsK0JBQStCLENBQUM7QUFDOUMsY0FBYywrQkFBK0IsQ0FBQztBQUM5QyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsK0RBQStELENBQUM7QUFDOUUsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxtQkFBbUI7QUFDbkIsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyxnQ0FBZ0MsQ0FBQztBQUMvQyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsa0NBQWtDLENBQUM7QUFDakQsY0FBYyxzQ0FBc0MsQ0FBQztBQUNyRCxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsNkJBQTZCLENBQUM7QUFDNUMsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsMkNBQTJDLENBQUM7QUFDMUQsY0FBYyxxQ0FBcUMsQ0FBQztBQUNwRCxjQUFjLG1DQUFtQyxDQUFDO0FBQ2xELGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyxnQ0FBZ0MsQ0FBQztBQUMvQyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYywyQ0FBMkMsQ0FBQztBQUMxRCxjQUFjLGdEQUFnRCxDQUFDO0FBQy9ELGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsZ0JBQWdCLENBQUM7QUFFL0IseUJBQXlCO0FBQ3pCLGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYyx1Q0FBdUMsQ0FBQztBQUV0RCxxQkFBcUI7QUFDckIsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLHNDQUFzQyxDQUFDO0FBQ3JELGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYywwQ0FBMEMsQ0FBQztBQUN6RCxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyxpQ0FBaUMsQ0FBQztBQUVoRCxvQkFBb0I7QUFDcEIsY0FBYyxnQ0FBZ0MsQ0FBQztBQUMvQyxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsa0NBQWtDLENBQUM7QUFDakQsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLHFDQUFxQyxDQUFDO0FBQ3BELGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLHlDQUF5QyxDQUFDO0FBQ3hELGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYyxrQ0FBa0MsQ0FBQztBQUVqRCxzQkFBc0I7QUFDdEIsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLHFDQUFxQyxDQUFDO0FBRXBELG1CQUFtQjtBQUNuQixjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsa0NBQWtDLENBQUM7QUFFakQsc0JBQXNCO0FBQ3RCLGNBQWMsdUNBQXVDLENBQUM7QUFDdEQsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLHFDQUFxQyxDQUFDO0FBRXBELFVBQVU7QUFDVixjQUFjLHlDQUF5QyxDQUFDO0FBQ3hELGNBQWMsa0NBQWtDLENBQUM7QUFDakQsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLHFDQUFxQyxDQUFDO0FBQ3BELGNBQWMsK0JBQStCLENBQUM7QUFDOUMsY0FBYyxnQ0FBZ0MsQ0FBQztBQUMvQyxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsNkJBQTZCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICdAbGlicy11aS9pbnRlcmZhY2VzLXR5cGVzJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL3V0aWxzJztcblxuLy9QaXBlc1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvcGlwZXMtY2FsbC1mdW5jdGlvbi1pbi10ZW1wbGF0ZSc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9waXBlcy1jaGVjay1zZWxlY3RlZC1ieS1rZXknO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvcGlwZXMtY2xvbmUtb2JqZWN0JztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL3BpcGVzLWNvbnZlcnQtb2JqZWN0LXRvLXNpZ25hbCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9waXBlcy1jb252ZXJ0LXNpZ25hbC10by1vYmplY3QnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvcGlwZXMtZXNjYXBlLWh0bWwnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvcGlwZXMtZm9ybWF0LWRhdGUnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvcGlwZXMtZm9ybWF0LW51bWJlcic7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9waXBlcy1mb3JtYXQtdGV4dC1jYXBpdGFsaXplJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL3BpcGVzLWZvcm1hdC10ZXh0LWZpcnN0LWxldHRlci10by11cHBlcmNhc2UnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvcGlwZXMtZm9ybWF0LXRleHQtZnVsbC1uYW1lLWZvcm1hdCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9waXBlcy1mb3JtYXQtdGV4dC1oaWdobGlnaHQtYnkta2V5d29yZCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9waXBlcy1nZXQtdmFsdWUtb2Ytb2JqZWN0JztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL3BpcGVzLXNlY3VyaXR5LXRydXN0JztcblxuLy9EaXJlY3RpdmVcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtY2xpY2stb3V0c2lkZSc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWRldmljZS1zdXBwb3J0JztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtZHJhZy1kcm9wJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtZHJhdy1saW5lJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtbWluaW1hcCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLXNjcm9sbC1tZWFzdXJlLWl0ZW1zLWRpcmVjdGlvbi1ob3Jpem9udGFsJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtc2Nyb2xsLW92ZXJsYXknO1xuLy8gQ29tcG9uZW50cyBPdGhlclxuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1hdWRpbyc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWF2YXRhcic7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWJhZGdlJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtYnJlYWRjcnVtYic7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWNhcmQnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1jb2xvci1waWNrZXInO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1jb21wb25lbnQtb3V0bGV0JztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtZHJvcGRvd24nO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1nYWxsZXJ5JztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtaW1hZ2UtZWRpdG9yJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtaW5wdXRzLWVtb2ppJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtaW5wdXRzLW11bHRpLWxhbmd1YWdlJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtaW5wdXRzLXBhc3N3b3JkJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtaW5wdXRzLXVwbG9hZCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWxhYmVsJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtbGluZS1jbGFtcCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWxpc3QnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1tb2RhbCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLXBhZ2VzLXRlbXBsYXRlLWRldGFpbCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLXBhZ2VzLXRlbXBsYXRlLWZ1bGwtc2NyZWVuJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtcGFnaW5hdGlvbic7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLXBvcG92ZXInO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1wcmV2aWV3LWZpbGUnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1za2VsZXRvbic7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLXNwaW5uZXInO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1zd2l0Y2gnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy10YWJsZSc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLXRhYnMnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy10YWdzJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2ljb25zJztcblxuLy8gQ29tcG9uZW50cyBQcm9jZXNzIEJhclxuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1wcm9jZXNzLWJhci1zdGFuZGFyZCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLXByb2Nlc3MtYmFyLXN0ZXBzJztcblxuLy8gQ29tcG9uZW50cyBCdXR0b25zXG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWJ1dHRvbnMtYnV0dG9uJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtYnV0dG9ucy1kcm9wZG93bic7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWJ1dHRvbnMtZ3JvdXAnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1idXR0b25zLXNlbGVjdC1jb2xvcic7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWJ1dHRvbnMtc29ydCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWJ1dHRvbnMtc3RhdHVzJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtYnV0dG9ucy10YWInO1xuXG4vLyBDb21wb25lbnRzIElucHV0c1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1pbnB1dHMtYWRkJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtaW5wdXRzLWNhbGN1bGF0b3InO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1pbnB1dHMtY29sb3InO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1pbnB1dHMtaW5wdXQnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1pbnB1dHMta2V5Ym9hcmQnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1pbnB1dHMtbWVudGlvbic7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWlucHV0cy1xdWlsbCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWlucHV0cy1yYW5nZS1zbGlkZXInO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1pbnB1dHMtc2VhcmNoJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtaW5wdXRzLXZhbGlkJztcblxuLy8gQ29tcG9uZW50cyBDaGVja2JveFxuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1jaGVja2JveC1ncm91cCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWNoZWNrYm94LXNpbmdsZSc7XG5cbi8vIENvbXBvbmVudHMgUmFkaW9cbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtcmFkaW8tZ3JvdXAnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1yYWRpby1zaW5nbGUnO1xuXG4vLyBDb21wb25lbnRzIERhdGV0aW1lXG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9jb21wb25lbnRzLWRhdGV0aW1lLWRyb3Bkb3duJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL2NvbXBvbmVudHMtZGF0ZXRpbWUtaW5wdXQnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvY29tcG9uZW50cy1kYXRldGltZS1waWNrZXInO1xuXG4vL1NlcnZpY2VzXG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9zZXJ2aWNlcy1iYXNlLXJlcXVlc3QtYWJzdHJhY3QnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvc2VydmljZXMtY29uZmlnLXByb2plY3QnO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvc2VydmljZXMtZGlhbG9nJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL3NlcnZpY2VzLWR5bmFtaWMtY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL3NlcnZpY2VzLWZvcm1hdC1kYXRlJztcbmV4cG9ydCAqIGZyb20gJ0BsaWJzLXVpL3NlcnZpY2VzLWh0dHAtcmVxdWVzdCc7XG5leHBvcnQgKiBmcm9tICdAbGlicy11aS9zZXJ2aWNlcy1ub3RpZmljYXRpb24nO1xuZXhwb3J0ICogZnJvbSAnQGxpYnMtdWkvc2VydmljZXMtdHJhbnNsYXRlJztcbiJdfQ==
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './index';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGlicy11aS1leHBvcnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vZXhwb3J0cy9zcmMvbGlicy11aS1leHBvcnRzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuIl19
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
export * from '@libs-ui/interfaces-types';
|
|
2
|
+
export * from '@libs-ui/utils';
|
|
3
|
+
export * from '@libs-ui/pipes-call-function-in-template';
|
|
4
|
+
export * from '@libs-ui/pipes-check-selected-by-key';
|
|
5
|
+
export * from '@libs-ui/pipes-clone-object';
|
|
6
|
+
export * from '@libs-ui/pipes-convert-object-to-signal';
|
|
7
|
+
export * from '@libs-ui/pipes-convert-signal-to-object';
|
|
8
|
+
export * from '@libs-ui/pipes-escape-html';
|
|
9
|
+
export * from '@libs-ui/pipes-format-date';
|
|
10
|
+
export * from '@libs-ui/pipes-format-number';
|
|
11
|
+
export * from '@libs-ui/pipes-format-text-capitalize';
|
|
12
|
+
export * from '@libs-ui/pipes-format-text-first-letter-to-uppercase';
|
|
13
|
+
export * from '@libs-ui/pipes-format-text-full-name-format';
|
|
14
|
+
export * from '@libs-ui/pipes-format-text-highlight-by-keyword';
|
|
15
|
+
export * from '@libs-ui/pipes-get-value-of-object';
|
|
16
|
+
export * from '@libs-ui/pipes-security-trust';
|
|
17
|
+
export * from '@libs-ui/components-click-outside';
|
|
18
|
+
export * from '@libs-ui/components-device-support';
|
|
19
|
+
export * from '@libs-ui/components-drag-drop';
|
|
20
|
+
export * from '@libs-ui/components-draw-line';
|
|
21
|
+
export * from '@libs-ui/components-minimap';
|
|
22
|
+
export * from '@libs-ui/components-scroll-measure-items-direction-horizontal';
|
|
23
|
+
export * from '@libs-ui/components-scroll-overlay';
|
|
24
|
+
export * from '@libs-ui/components-audio';
|
|
25
|
+
export * from '@libs-ui/components-avatar';
|
|
26
|
+
export * from '@libs-ui/components-badge';
|
|
27
|
+
export * from '@libs-ui/components-breadcrumb';
|
|
28
|
+
export * from '@libs-ui/components-card';
|
|
29
|
+
export * from '@libs-ui/components-color-picker';
|
|
30
|
+
export * from '@libs-ui/components-component-outlet';
|
|
31
|
+
export * from '@libs-ui/components-dropdown';
|
|
32
|
+
export * from '@libs-ui/components-gallery';
|
|
33
|
+
export * from '@libs-ui/components-image-editor';
|
|
34
|
+
export * from '@libs-ui/components-inputs-emoji';
|
|
35
|
+
export * from '@libs-ui/components-inputs-multi-language';
|
|
36
|
+
export * from '@libs-ui/components-inputs-password';
|
|
37
|
+
export * from '@libs-ui/components-inputs-upload';
|
|
38
|
+
export * from '@libs-ui/components-label';
|
|
39
|
+
export * from '@libs-ui/components-line-clamp';
|
|
40
|
+
export * from '@libs-ui/components-list';
|
|
41
|
+
export * from '@libs-ui/components-modal';
|
|
42
|
+
export * from '@libs-ui/components-pages-template-detail';
|
|
43
|
+
export * from '@libs-ui/components-pages-template-full-screen';
|
|
44
|
+
export * from '@libs-ui/components-pagination';
|
|
45
|
+
export * from '@libs-ui/components-popover';
|
|
46
|
+
export * from '@libs-ui/components-preview-file';
|
|
47
|
+
export * from '@libs-ui/components-skeleton';
|
|
48
|
+
export * from '@libs-ui/components-spinner';
|
|
49
|
+
export * from '@libs-ui/components-switch';
|
|
50
|
+
export * from '@libs-ui/components-table';
|
|
51
|
+
export * from '@libs-ui/components-tabs';
|
|
52
|
+
export * from '@libs-ui/components-tags';
|
|
53
|
+
export * from '@libs-ui/icons';
|
|
54
|
+
export * from '@libs-ui/components-process-bar-standard';
|
|
55
|
+
export * from '@libs-ui/components-process-bar-steps';
|
|
56
|
+
export * from '@libs-ui/components-buttons-button';
|
|
57
|
+
export * from '@libs-ui/components-buttons-dropdown';
|
|
58
|
+
export * from '@libs-ui/components-buttons-group';
|
|
59
|
+
export * from '@libs-ui/components-buttons-select-color';
|
|
60
|
+
export * from '@libs-ui/components-buttons-sort';
|
|
61
|
+
export * from '@libs-ui/components-buttons-status';
|
|
62
|
+
export * from '@libs-ui/components-buttons-tab';
|
|
63
|
+
export * from '@libs-ui/components-inputs-add';
|
|
64
|
+
export * from '@libs-ui/components-inputs-calculator';
|
|
65
|
+
export * from '@libs-ui/components-inputs-color';
|
|
66
|
+
export * from '@libs-ui/components-inputs-input';
|
|
67
|
+
export * from '@libs-ui/components-inputs-keyboard';
|
|
68
|
+
export * from '@libs-ui/components-inputs-mention';
|
|
69
|
+
export * from '@libs-ui/components-inputs-quill';
|
|
70
|
+
export * from '@libs-ui/components-inputs-range-slider';
|
|
71
|
+
export * from '@libs-ui/components-inputs-search';
|
|
72
|
+
export * from '@libs-ui/components-inputs-valid';
|
|
73
|
+
export * from '@libs-ui/components-checkbox-group';
|
|
74
|
+
export * from '@libs-ui/components-checkbox-single';
|
|
75
|
+
export * from '@libs-ui/components-radio-group';
|
|
76
|
+
export * from '@libs-ui/components-radio-single';
|
|
77
|
+
export * from '@libs-ui/components-datetime-dropdown';
|
|
78
|
+
export * from '@libs-ui/components-datetime-input';
|
|
79
|
+
export * from '@libs-ui/components-datetime-picker';
|
|
80
|
+
export * from '@libs-ui/services-base-request-abstract';
|
|
81
|
+
export * from '@libs-ui/services-config-project';
|
|
82
|
+
export * from '@libs-ui/services-dialog';
|
|
83
|
+
export * from '@libs-ui/services-dynamic-component';
|
|
84
|
+
export * from '@libs-ui/services-format-date';
|
|
85
|
+
export * from '@libs-ui/services-http-request';
|
|
86
|
+
export * from '@libs-ui/services-notification';
|
|
87
|
+
export * from '@libs-ui/services-translate';
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Generated bundle index. Do not edit.
|
|
91
|
+
*/
|
|
92
|
+
//# sourceMappingURL=libs-ui-exports.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"libs-ui-exports.mjs","sources":["../../../exports/src/libs-ui-exports.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AAEG"}
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
export * from '@libs-ui/interfaces-types';
|
|
2
|
+
export * from '@libs-ui/utils';
|
|
3
|
+
export * from '@libs-ui/pipes-call-function-in-template';
|
|
4
|
+
export * from '@libs-ui/pipes-check-selected-by-key';
|
|
5
|
+
export * from '@libs-ui/pipes-clone-object';
|
|
6
|
+
export * from '@libs-ui/pipes-convert-object-to-signal';
|
|
7
|
+
export * from '@libs-ui/pipes-convert-signal-to-object';
|
|
8
|
+
export * from '@libs-ui/pipes-escape-html';
|
|
9
|
+
export * from '@libs-ui/pipes-format-date';
|
|
10
|
+
export * from '@libs-ui/pipes-format-number';
|
|
11
|
+
export * from '@libs-ui/pipes-format-text-capitalize';
|
|
12
|
+
export * from '@libs-ui/pipes-format-text-first-letter-to-uppercase';
|
|
13
|
+
export * from '@libs-ui/pipes-format-text-full-name-format';
|
|
14
|
+
export * from '@libs-ui/pipes-format-text-highlight-by-keyword';
|
|
15
|
+
export * from '@libs-ui/pipes-get-value-of-object';
|
|
16
|
+
export * from '@libs-ui/pipes-security-trust';
|
|
17
|
+
export * from '@libs-ui/components-click-outside';
|
|
18
|
+
export * from '@libs-ui/components-device-support';
|
|
19
|
+
export * from '@libs-ui/components-drag-drop';
|
|
20
|
+
export * from '@libs-ui/components-draw-line';
|
|
21
|
+
export * from '@libs-ui/components-minimap';
|
|
22
|
+
export * from '@libs-ui/components-scroll-measure-items-direction-horizontal';
|
|
23
|
+
export * from '@libs-ui/components-scroll-overlay';
|
|
24
|
+
export * from '@libs-ui/components-audio';
|
|
25
|
+
export * from '@libs-ui/components-avatar';
|
|
26
|
+
export * from '@libs-ui/components-badge';
|
|
27
|
+
export * from '@libs-ui/components-breadcrumb';
|
|
28
|
+
export * from '@libs-ui/components-card';
|
|
29
|
+
export * from '@libs-ui/components-color-picker';
|
|
30
|
+
export * from '@libs-ui/components-component-outlet';
|
|
31
|
+
export * from '@libs-ui/components-dropdown';
|
|
32
|
+
export * from '@libs-ui/components-gallery';
|
|
33
|
+
export * from '@libs-ui/components-image-editor';
|
|
34
|
+
export * from '@libs-ui/components-inputs-emoji';
|
|
35
|
+
export * from '@libs-ui/components-inputs-multi-language';
|
|
36
|
+
export * from '@libs-ui/components-inputs-password';
|
|
37
|
+
export * from '@libs-ui/components-inputs-upload';
|
|
38
|
+
export * from '@libs-ui/components-label';
|
|
39
|
+
export * from '@libs-ui/components-line-clamp';
|
|
40
|
+
export * from '@libs-ui/components-list';
|
|
41
|
+
export * from '@libs-ui/components-modal';
|
|
42
|
+
export * from '@libs-ui/components-pages-template-detail';
|
|
43
|
+
export * from '@libs-ui/components-pages-template-full-screen';
|
|
44
|
+
export * from '@libs-ui/components-pagination';
|
|
45
|
+
export * from '@libs-ui/components-popover';
|
|
46
|
+
export * from '@libs-ui/components-preview-file';
|
|
47
|
+
export * from '@libs-ui/components-skeleton';
|
|
48
|
+
export * from '@libs-ui/components-spinner';
|
|
49
|
+
export * from '@libs-ui/components-switch';
|
|
50
|
+
export * from '@libs-ui/components-table';
|
|
51
|
+
export * from '@libs-ui/components-tabs';
|
|
52
|
+
export * from '@libs-ui/components-tags';
|
|
53
|
+
export * from '@libs-ui/icons';
|
|
54
|
+
export * from '@libs-ui/components-process-bar-standard';
|
|
55
|
+
export * from '@libs-ui/components-process-bar-steps';
|
|
56
|
+
export * from '@libs-ui/components-buttons-button';
|
|
57
|
+
export * from '@libs-ui/components-buttons-dropdown';
|
|
58
|
+
export * from '@libs-ui/components-buttons-group';
|
|
59
|
+
export * from '@libs-ui/components-buttons-select-color';
|
|
60
|
+
export * from '@libs-ui/components-buttons-sort';
|
|
61
|
+
export * from '@libs-ui/components-buttons-status';
|
|
62
|
+
export * from '@libs-ui/components-buttons-tab';
|
|
63
|
+
export * from '@libs-ui/components-inputs-add';
|
|
64
|
+
export * from '@libs-ui/components-inputs-calculator';
|
|
65
|
+
export * from '@libs-ui/components-inputs-color';
|
|
66
|
+
export * from '@libs-ui/components-inputs-input';
|
|
67
|
+
export * from '@libs-ui/components-inputs-keyboard';
|
|
68
|
+
export * from '@libs-ui/components-inputs-mention';
|
|
69
|
+
export * from '@libs-ui/components-inputs-quill';
|
|
70
|
+
export * from '@libs-ui/components-inputs-range-slider';
|
|
71
|
+
export * from '@libs-ui/components-inputs-search';
|
|
72
|
+
export * from '@libs-ui/components-inputs-valid';
|
|
73
|
+
export * from '@libs-ui/components-checkbox-group';
|
|
74
|
+
export * from '@libs-ui/components-checkbox-single';
|
|
75
|
+
export * from '@libs-ui/components-radio-group';
|
|
76
|
+
export * from '@libs-ui/components-radio-single';
|
|
77
|
+
export * from '@libs-ui/components-datetime-dropdown';
|
|
78
|
+
export * from '@libs-ui/components-datetime-input';
|
|
79
|
+
export * from '@libs-ui/components-datetime-picker';
|
|
80
|
+
export * from '@libs-ui/services-base-request-abstract';
|
|
81
|
+
export * from '@libs-ui/services-config-project';
|
|
82
|
+
export * from '@libs-ui/services-dialog';
|
|
83
|
+
export * from '@libs-ui/services-dynamic-component';
|
|
84
|
+
export * from '@libs-ui/services-format-date';
|
|
85
|
+
export * from '@libs-ui/services-http-request';
|
|
86
|
+
export * from '@libs-ui/services-notification';
|
|
87
|
+
export * from '@libs-ui/services-translate';
|
package/package.json
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@libs-ui/exports",
|
|
3
|
+
"version": "0.1.1-1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@libs-ui/interfaces-types": "0.1.1-1",
|
|
6
|
+
"@libs-ui/utils": "0.1.1-1",
|
|
7
|
+
"@libs-ui/icons": "0.1.1-1",
|
|
8
|
+
"@libs-ui/icon-font": "0.1.1-1",
|
|
9
|
+
"@libs-ui/pipes-security-trust": "0.1.1-1",
|
|
10
|
+
"@libs-ui/pipes-call-function-in-template": "0.1.1-1",
|
|
11
|
+
"@libs-ui/pipes-format-date": "0.1.1-1",
|
|
12
|
+
"@libs-ui/pipes-escape-html": "0.1.1-1",
|
|
13
|
+
"@libs-ui/pipes-check-selected-by-key": "0.1.1-1",
|
|
14
|
+
"@libs-ui/pipes-convert-object-to-signal": "0.1.1-1",
|
|
15
|
+
"@libs-ui/pipes-convert-signal-to-object": "0.1.1-1",
|
|
16
|
+
"@libs-ui/pipes-clone-object": "0.1.1-1",
|
|
17
|
+
"@libs-ui/pipes-format-number": "0.1.1-1",
|
|
18
|
+
"@libs-ui/pipes-get-value-of-object": "0.1.1-1",
|
|
19
|
+
"@libs-ui/pipes-format-text-capitalize": "0.1.1-1",
|
|
20
|
+
"@libs-ui/pipes-format-text-first-letter-to-uppercase": "0.1.1-1",
|
|
21
|
+
"@libs-ui/pipes-format-text-full-name-format": "0.1.1-1",
|
|
22
|
+
"@libs-ui/pipes-format-text-highlight-by-keyword": "0.1.1-1",
|
|
23
|
+
"@libs-ui/services-base-request-abstract": "0.1.1-1",
|
|
24
|
+
"@libs-ui/services-dynamic-component": "0.1.1-1",
|
|
25
|
+
"@libs-ui/services-notification": "0.1.1-1",
|
|
26
|
+
"@libs-ui/services-http-request": "0.1.1-1",
|
|
27
|
+
"@libs-ui/services-config-project": "0.1.1-1",
|
|
28
|
+
"@libs-ui/services-translate": "0.1.1-1",
|
|
29
|
+
"@libs-ui/services-dialog": "0.1.1-1",
|
|
30
|
+
"@libs-ui/services-format-date": "0.1.1-1",
|
|
31
|
+
"@libs-ui/components-pagination": "0.1.1-1",
|
|
32
|
+
"@libs-ui/components-process-bar-standard": "0.1.1-1",
|
|
33
|
+
"@libs-ui/components-process-bar-steps": "0.1.1-1",
|
|
34
|
+
"@libs-ui/components-scroll-overlay": "0.1.1-1",
|
|
35
|
+
"@libs-ui/components-click-outside": "0.1.1-1",
|
|
36
|
+
"@libs-ui/components-scroll-measure-items-direction-horizontal": "0.1.1-1",
|
|
37
|
+
"@libs-ui/components-drag-drop": "0.1.1-1",
|
|
38
|
+
"@libs-ui/components-draw-line": "0.1.1-1",
|
|
39
|
+
"@libs-ui/components-minimap": "0.1.1-1",
|
|
40
|
+
"@libs-ui/components-device-support": "0.1.1-1",
|
|
41
|
+
"@libs-ui/components-component-outlet": "0.1.1-1",
|
|
42
|
+
"@libs-ui/components-popover": "0.1.1-1",
|
|
43
|
+
"@libs-ui/components-spinner": "0.1.1-1",
|
|
44
|
+
"@libs-ui/components-label": "0.1.1-1",
|
|
45
|
+
"@libs-ui/components-skeleton": "0.1.1-1",
|
|
46
|
+
"@libs-ui/components-switch": "0.1.1-1",
|
|
47
|
+
"@libs-ui/components-card": "0.1.1-1",
|
|
48
|
+
"@libs-ui/components-gallery": "0.1.1-1",
|
|
49
|
+
"@libs-ui/components-modal": "0.1.1-1",
|
|
50
|
+
"@libs-ui/components-audio": "0.1.1-1",
|
|
51
|
+
"@libs-ui/components-color-picker": "0.1.1-1",
|
|
52
|
+
"@libs-ui/components-line-clamp": "0.1.1-1",
|
|
53
|
+
"@libs-ui/components-table": "0.1.1-1",
|
|
54
|
+
"@libs-ui/components-pages-template-full-screen": "0.1.1-1",
|
|
55
|
+
"@libs-ui/components-pages-template-detail": "0.1.1-1",
|
|
56
|
+
"@libs-ui/components-preview-file": "0.1.1-1",
|
|
57
|
+
"@libs-ui/components-inputs-upload": "0.1.1-1",
|
|
58
|
+
"@libs-ui/components-image-editor": "0.1.1-1",
|
|
59
|
+
"@libs-ui/components-buttons-button": "0.1.1-1",
|
|
60
|
+
"@libs-ui/components-buttons-sort": "0.1.1-1",
|
|
61
|
+
"@libs-ui/components-buttons-status": "0.1.1-1",
|
|
62
|
+
"@libs-ui/components-buttons-group": "0.1.1-1",
|
|
63
|
+
"@libs-ui/components-buttons-dropdown": "0.1.1-1",
|
|
64
|
+
"@libs-ui/components-buttons-tab": "0.1.1-1",
|
|
65
|
+
"@libs-ui/components-inputs-input": "0.1.1-1",
|
|
66
|
+
"@libs-ui/components-inputs-valid": "0.1.1-1",
|
|
67
|
+
"@libs-ui/components-inputs-color": "0.1.1-1",
|
|
68
|
+
"@libs-ui/components-inputs-add": "0.1.1-1",
|
|
69
|
+
"@libs-ui/components-inputs-quill": "0.1.1-1",
|
|
70
|
+
"@libs-ui/components-inputs-mention": "0.1.1-1",
|
|
71
|
+
"@libs-ui/components-inputs-search": "0.1.1-1",
|
|
72
|
+
"@libs-ui/components-inputs-password": "0.1.1-1",
|
|
73
|
+
"@libs-ui/components-inputs-multi-language": "0.1.1-1",
|
|
74
|
+
"@libs-ui/components-inputs-emoji": "0.1.1-1",
|
|
75
|
+
"@libs-ui/components-inputs-range-slider": "0.1.1-1",
|
|
76
|
+
"@libs-ui/components-inputs-calculator": "0.1.1-1",
|
|
77
|
+
"@libs-ui/components-inputs-keyboard": "0.1.1-1",
|
|
78
|
+
"@libs-ui/components-badge": "0.1.1-1",
|
|
79
|
+
"@libs-ui/components-avatar": "0.1.1-1",
|
|
80
|
+
"@libs-ui/components-checkbox-single": "0.1.1-1",
|
|
81
|
+
"@libs-ui/components-checkbox-group": "0.1.1-1",
|
|
82
|
+
"@libs-ui/components-radio-single": "0.1.1-1",
|
|
83
|
+
"@libs-ui/components-radio-group": "0.1.1-1",
|
|
84
|
+
"@libs-ui/components-buttons-select-color": "0.1.1-1",
|
|
85
|
+
"@libs-ui/components-tabs": "0.1.1-1",
|
|
86
|
+
"@libs-ui/components-list": "0.1.1-1",
|
|
87
|
+
"@libs-ui/components-dropdown": "0.1.1-1",
|
|
88
|
+
"@libs-ui/components-tags": "0.1.1-1",
|
|
89
|
+
"@libs-ui/components-breadcrumb": "0.1.1-1",
|
|
90
|
+
"@libs-ui/components-datetime-picker": "0.1.1-1",
|
|
91
|
+
"@libs-ui/components-datetime-input": "0.1.1-1",
|
|
92
|
+
"@libs-ui/components-datetime-dropdown": "0.1.1-1",
|
|
93
|
+
"@iharbeck/ngx-virtual-scroller": "15.2.0",
|
|
94
|
+
"@ngx-translate/core": "15.0.0",
|
|
95
|
+
"@messageformat/core": "3.3.0",
|
|
96
|
+
"@ngx-translate/http-loader": "8.0.0",
|
|
97
|
+
"ngx-translate-messageformat-compiler": "7.0.0",
|
|
98
|
+
"quill": "1.3.7",
|
|
99
|
+
"dayjs": "1.11.5",
|
|
100
|
+
"crypto-es": "^2.1.0",
|
|
101
|
+
"device-detector-js": "3.0.3"
|
|
102
|
+
},
|
|
103
|
+
"sideEffects": false,
|
|
104
|
+
"module": "fesm2022/libs-ui-exports.mjs",
|
|
105
|
+
"typings": "index.d.ts",
|
|
106
|
+
"exports": {
|
|
107
|
+
"./package.json": {
|
|
108
|
+
"default": "./package.json"
|
|
109
|
+
},
|
|
110
|
+
".": {
|
|
111
|
+
"types": "./index.d.ts",
|
|
112
|
+
"esm2022": "./esm2022/libs-ui-exports.mjs",
|
|
113
|
+
"esm": "./esm2022/libs-ui-exports.mjs",
|
|
114
|
+
"default": "./fesm2022/libs-ui-exports.mjs"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"dependencies": {
|
|
118
|
+
"tslib": "^2.3.0"
|
|
119
|
+
}
|
|
120
|
+
}
|