fixa-admin 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 (73) hide show
  1. package/README.md +24 -0
  2. package/esm2022/lib/class/index.api.mjs +2 -0
  3. package/esm2022/lib/class/popover.mjs +28 -0
  4. package/esm2022/lib/components/captcha/captcha.component.mjs +56 -0
  5. package/esm2022/lib/components/grid/filter/date-filter.component.mjs +122 -0
  6. package/esm2022/lib/components/grid/filter/index.api.mjs +2 -0
  7. package/esm2022/lib/components/grid/grid.component.mjs +491 -0
  8. package/esm2022/lib/components/grid/render/action-button.component.mjs +26 -0
  9. package/esm2022/lib/components/index.api.mjs +6 -0
  10. package/esm2022/lib/components/map/map.component.mjs +134 -0
  11. package/esm2022/lib/components/spinner/spinner.component.mjs +14 -0
  12. package/esm2022/lib/directive/char-input.directive.mjs +37 -0
  13. package/esm2022/lib/directive/index.api.mjs +4 -0
  14. package/esm2022/lib/directive/mask.directive.mjs +58 -0
  15. package/esm2022/lib/directive/mask.mjs +78 -0
  16. package/esm2022/lib/directive/numeric-input.directive.mjs +44 -0
  17. package/esm2022/lib/guard/auth.guard.mjs +25 -0
  18. package/esm2022/lib/guard/index.api.mjs +2 -0
  19. package/esm2022/lib/layouts/blank/blank.layout.mjs +14 -0
  20. package/esm2022/lib/layouts/index.api.mjs +3 -0
  21. package/esm2022/lib/layouts/master/master.layout.mjs +53 -0
  22. package/esm2022/lib/models/index.api.mjs +2 -0
  23. package/esm2022/lib/models/shared.model.mjs +28 -0
  24. package/esm2022/lib/pipes/date.pipe.mjs +25 -0
  25. package/esm2022/lib/pipes/index.api.mjs +3 -0
  26. package/esm2022/lib/pipes/timer.pipe.mjs +30 -0
  27. package/esm2022/lib/services/confirm.service.mjs +39 -0
  28. package/esm2022/lib/services/dialog.service.mjs +65 -0
  29. package/esm2022/lib/services/form.service.mjs +22 -0
  30. package/esm2022/lib/services/index.api.mjs +6 -0
  31. package/esm2022/lib/services/shared.service.mjs +15 -0
  32. package/esm2022/lib/services/toast.service.mjs +21 -0
  33. package/esm2022/lib/shared.module.mjs +196 -0
  34. package/esm2022/public-api.mjs +14 -0
  35. package/esm2022/shared.mjs +5 -0
  36. package/fesm2022/shared.mjs +1558 -0
  37. package/fesm2022/shared.mjs.map +1 -0
  38. package/index.d.ts +5 -0
  39. package/lib/class/index.api.d.ts +1 -0
  40. package/lib/class/popover.d.ts +14 -0
  41. package/lib/components/captcha/captcha.component.d.ts +13 -0
  42. package/lib/components/grid/filter/date-filter.component.d.ts +24 -0
  43. package/lib/components/grid/filter/index.api.d.ts +1 -0
  44. package/lib/components/grid/grid.component.d.ts +64 -0
  45. package/lib/components/grid/render/action-button.component.d.ts +13 -0
  46. package/lib/components/index.api.d.ts +5 -0
  47. package/lib/components/map/map.component.d.ts +26 -0
  48. package/lib/components/spinner/spinner.component.d.ts +8 -0
  49. package/lib/directive/char-input.directive.d.ts +12 -0
  50. package/lib/directive/index.api.d.ts +3 -0
  51. package/lib/directive/mask.d.ts +19 -0
  52. package/lib/directive/mask.directive.d.ts +15 -0
  53. package/lib/directive/numeric-input.directive.d.ts +12 -0
  54. package/lib/guard/auth.guard.d.ts +10 -0
  55. package/lib/guard/index.api.d.ts +1 -0
  56. package/lib/layouts/blank/blank.layout.d.ts +8 -0
  57. package/lib/layouts/index.api.d.ts +2 -0
  58. package/lib/layouts/master/master.layout.d.ts +20 -0
  59. package/lib/models/index.api.d.ts +1 -0
  60. package/lib/models/shared.model.d.ts +120 -0
  61. package/lib/pipes/date.pipe.d.ts +7 -0
  62. package/lib/pipes/index.api.d.ts +2 -0
  63. package/lib/pipes/timer.pipe.d.ts +7 -0
  64. package/lib/services/confirm.service.d.ts +9 -0
  65. package/lib/services/dialog.service.d.ts +11 -0
  66. package/lib/services/form.service.d.ts +8 -0
  67. package/lib/services/index.api.d.ts +5 -0
  68. package/lib/services/shared.service.d.ts +8 -0
  69. package/lib/services/toast.service.d.ts +9 -0
  70. package/lib/shared.module.d.ts +41 -0
  71. package/package.json +43 -0
  72. package/public-api.d.ts +10 -0
  73. package/src/style.scss +9 -0
@@ -0,0 +1,14 @@
1
+ /*
2
+ * Public API Surface of shared
3
+ */
4
+ export * from './lib/services/index.api';
5
+ export * from './lib/shared.module';
6
+ export * from './lib/layouts/index.api';
7
+ export * from './lib/components/index.api';
8
+ export * from './lib/models/index.api';
9
+ export * from './lib/class/index.api';
10
+ export * from './lib/guard/index.api';
11
+ export * from './lib/pipes/index.api';
12
+ export * from './lib/directive/index.api';
13
+ export * from './lib/components/grid/filter/index.api';
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL3NoYXJlZC9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsd0NBQXdDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuICogUHVibGljIEFQSSBTdXJmYWNlIG9mIHNoYXJlZFxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlcnZpY2VzL2luZGV4LmFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zaGFyZWQubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2xheW91dHMvaW5kZXguYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvaW5kZXguYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVscy9pbmRleC5hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY2xhc3MvaW5kZXguYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2d1YXJkL2luZGV4LmFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9waXBlcy9pbmRleC5hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlL2luZGV4LmFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2dyaWQvZmlsdGVyL2luZGV4LmFwaSc7Il19
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2hhcmVkLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcHJvamVjdHMvc2hhcmVkL3NyYy9zaGFyZWQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==