@skysoftware-co/bayan-hr-widgets-ui 1.0.6 → 1.0.8

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 (23) hide show
  1. package/README.md +1 -1
  2. package/fesm2022/skysoftware-co-bayan-hr-widgets-ui.mjs +1020 -75
  3. package/fesm2022/skysoftware-co-bayan-hr-widgets-ui.mjs.map +1 -1
  4. package/lib/my-bank-information-widget/my-bank-information-widget.component.d.ts +41 -0
  5. package/lib/my-calendar-widget/my-calendar-widget.component.d.ts +6 -6
  6. package/lib/my-main-details-widget/my-main-details-widget.component.d.ts +6 -6
  7. package/lib/my-upcoming-events-widget/{event-item → components/event-item}/event-item.component.d.ts +3 -3
  8. package/lib/my-upcoming-events-widget/{event-tab-bar → components/event-tab-bar}/event-tab-bar.component.d.ts +3 -3
  9. package/lib/my-upcoming-events-widget/{events-popup → components/events-popup}/events-popup.component.d.ts +1 -1
  10. package/lib/my-upcoming-events-widget/my-upcoming-events-widget.component.d.ts +4 -4
  11. package/lib/personal-info-address-widget/personal-info-address-widget.component.d.ts +25 -0
  12. package/lib/personal-info-contact-widget/personal-info-contact-widget.component.d.ts +28 -0
  13. package/lib/personal-info-languages-widget/personal-info-languages-widget.component.d.ts +22 -0
  14. package/lib/personal-info-main-widget/personal-info-main-widget.component.d.ts +28 -0
  15. package/lib/personal-info-other-nationalities-widget/personal-info-other-nationalities-widget.component.d.ts +22 -0
  16. package/lib/services/hr-self-widgets.service.d.ts +25 -0
  17. package/lib/shared/components/info-field/info-field.component.d.ts +10 -0
  18. package/lib/shared/services/bank-information-cache.service.d.ts +12 -0
  19. package/lib/shared/services/common-methods.service.d.ts +4 -0
  20. package/lib/shared/services/personal-information-cache.service.d.ts +25 -0
  21. package/lib/shared/types/common.d.ts +42 -0
  22. package/package.json +1 -1
  23. package/public-api.d.ts +6 -0
package/README.md CHANGED
@@ -189,7 +189,7 @@ This component displays upcoming events (birthdays and public holidays) in a car
189
189
  | `showProperty` | boolean | `true` | Show employee property badge on birthday events |
190
190
  | `externalViewAll` | boolean | `false` | When true, emits `viewAllClicked` instead of opening popup |
191
191
  | `cardClass` | string | `'bg-light-gray border-0 card p-3 card-shadow rounded rounded-4 mt-3'` | Card container CSS class |
192
- | `noEventsTextClass` | string | `'text-center my-4 text-light-gray'` | No events text CSS class |
192
+ | `noEventsTextClass` | string | `'text-center my-3 text-light-gray'` | No events text CSS class |
193
193
  | `viewAllLinkClass` | string | `'fs-14 mt-2'` | View all link CSS class |
194
194
  | `viewAllContainerClass` | string | `'d-flex justify-content-end cursor-pointer'` | View all container CSS class |
195
195
  | `warningTextClass` | string | `'text-center my-2 text-light-gray'` | Warning text CSS class |