andoncloud-dashboard-toolkit 1.5.20 → 1.5.22

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 (64) hide show
  1. package/dist/components/DashboardFilters/DayTypeSelector/DayTypeSelector.cy.d.ts +1 -0
  2. package/dist/components/DashboardFilters/PeriodList/PeriodList.cy.d.ts +1 -0
  3. package/dist/components/DashboardFilters/ShiftSelector/ShiftSelector.cy.d.ts +1 -0
  4. package/dist/components/DashboardFilters/periods.cy.d.ts +1 -0
  5. package/dist/cypress/support/component.d.ts +9 -0
  6. package/dist/cypress.config.d.ts +2 -0
  7. package/dist/helpers/shifts.cy.d.ts +1 -0
  8. package/dist/helpers/time.cy.d.ts +1 -0
  9. package/dist/index.js +15 -15
  10. package/dist/index.js.map +1 -1
  11. package/dist/src/components/ConfirmTooltip/ConfirmTooltip.cy.d.ts +1 -0
  12. package/dist/src/components/ConfirmTooltip/index.d.ts +13 -0
  13. package/dist/src/components/ConfirmTooltip/styles.d.ts +3 -0
  14. package/dist/src/components/DashboardFilters/AccessDeniedModal/AccessDeniedModal.cy.d.ts +1 -0
  15. package/dist/src/components/DashboardFilters/AccessDeniedModal/index.d.ts +14 -0
  16. package/dist/src/components/DashboardFilters/AccessDeniedModal/styles.d.ts +3 -0
  17. package/dist/src/components/DashboardFilters/DateRangePicker/DateRangePicker.cy.d.ts +1 -0
  18. package/dist/src/components/DashboardFilters/DateRangePicker/index.d.ts +18 -0
  19. package/dist/src/components/DashboardFilters/DateRangePicker/styles.d.ts +3 -0
  20. package/dist/src/components/DashboardFilters/DayTypeSelector/DayTypeSelector.cy.d.ts +1 -0
  21. package/dist/src/components/DashboardFilters/DayTypeSelector/index.d.ts +8 -0
  22. package/dist/src/components/DashboardFilters/DayTypeSelector/styles.d.ts +3 -0
  23. package/dist/src/components/DashboardFilters/PeriodList/PeriodList.cy.d.ts +1 -0
  24. package/dist/src/components/DashboardFilters/PeriodList/index.d.ts +13 -0
  25. package/dist/src/components/DashboardFilters/PeriodList/styles.d.ts +3 -0
  26. package/dist/src/components/DashboardFilters/ShiftSelector/ShiftSelector.cy.d.ts +1 -0
  27. package/dist/src/components/DashboardFilters/ShiftSelector/index.d.ts +9 -0
  28. package/dist/src/components/DashboardFilters/ShiftSelector/styles.d.ts +3 -0
  29. package/dist/src/components/DashboardFilters/constants.d.ts +2 -0
  30. package/dist/src/components/DashboardFilters/index.d.ts +4 -0
  31. package/dist/src/components/DashboardFilters/periods.cy.d.ts +1 -0
  32. package/dist/src/components/DashboardFilters/styles.d.ts +3 -0
  33. package/dist/src/components/DashboardFilters/types.d.ts +36 -0
  34. package/dist/src/components/MetricCard/index.d.ts +14 -0
  35. package/dist/src/components/MetricCard/styles.d.ts +15 -0
  36. package/dist/src/components/SortableSelect/index.d.ts +14 -0
  37. package/dist/src/components/WidgetCard/index.d.ts +7 -0
  38. package/dist/src/components/WidgetCard/styles.d.ts +3 -0
  39. package/dist/src/components/index.d.ts +6 -0
  40. package/dist/src/graphql-request.d.ts +7856 -0
  41. package/dist/src/graphql-ws.d.ts +2 -0
  42. package/dist/src/helpers/periods.d.ts +8 -0
  43. package/dist/src/helpers/sdk.d.ts +74 -0
  44. package/dist/src/helpers/shifts.cy.d.ts +1 -0
  45. package/dist/src/helpers/shifts.d.ts +11 -0
  46. package/dist/src/helpers/time.cy.d.ts +1 -0
  47. package/dist/src/helpers/time.d.ts +2 -0
  48. package/dist/src/hooks/useGqlClients.d.ts +8 -0
  49. package/dist/src/index.d.ts +11 -0
  50. package/dist/src/locales/index.d.ts +95 -0
  51. package/dist/{operations → src/operations/generated}/mutations/index.d.ts +11 -0
  52. package/dist/{operations → src/operations/generated}/queries/index.d.ts +8 -1
  53. package/dist/src/types.d.ts +51 -0
  54. package/dist/src/utils/actioncable-client.d.ts +14 -0
  55. package/dist/src/utils/graphql-ws-client.d.ts +7 -0
  56. package/dist/src/version.d.ts +1 -0
  57. package/dist/version.d.ts +1 -1
  58. package/package.json +20 -22
  59. package/dist/components/DashboardFilters/periods.d.ts +0 -6
  60. /package/dist/components/{DashboardFilters/periods.test.d.ts → ConfirmTooltip/ConfirmTooltip.cy.d.ts} +0 -0
  61. /package/dist/{helpers/shifts.test.d.ts → components/DashboardFilters/AccessDeniedModal/AccessDeniedModal.cy.d.ts} +0 -0
  62. /package/dist/{helpers/time.test.d.ts → components/DashboardFilters/DateRangePicker/DateRangePicker.cy.d.ts} +0 -0
  63. /package/dist/{operations → src/operations/generated}/index.d.ts +0 -0
  64. /package/dist/{operations → src/operations/generated}/subscriptions/index.d.ts +0 -0
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,9 @@
1
+ import { mount } from 'cypress/react';
2
+ declare global {
3
+ namespace Cypress {
4
+ interface Chainable {
5
+ mount: typeof mount;
6
+ getByTestId(selector: string, options?: Partial<Cypress.Loggable & Cypress.Timeoutable & Cypress.Withinable & Cypress.Shadow>): Cypress.Chainable<JQuery<HTMLElement>>;
7
+ }
8
+ }
9
+ }
@@ -0,0 +1,2 @@
1
+ declare const _default: Cypress.ConfigOptions<any>;
2
+ export default _default;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};