jornada-ui 0.4.16 → 0.4.17

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 (38) hide show
  1. package/lib/commonjs/components/modals/modal-change-activitie-history/helpers/index.js +35 -0
  2. package/lib/commonjs/components/modals/modal-change-activitie-history/helpers/index.js.map +1 -0
  3. package/lib/commonjs/components/modals/modal-change-activitie-history/index.js +203 -0
  4. package/lib/commonjs/components/modals/modal-change-activitie-history/index.js.map +1 -0
  5. package/lib/commonjs/components/modals/modal-change-activitie-history/interface.js +6 -0
  6. package/lib/commonjs/components/modals/modal-change-activitie-history/interface.js.map +1 -0
  7. package/lib/commonjs/components/step-indicator/index.js +131 -68
  8. package/lib/commonjs/components/step-indicator/index.js.map +1 -1
  9. package/lib/module/components/modals/modal-change-activitie-history/helpers/index.js +32 -0
  10. package/lib/module/components/modals/modal-change-activitie-history/helpers/index.js.map +1 -0
  11. package/lib/module/components/modals/modal-change-activitie-history/index.js +196 -0
  12. package/lib/module/components/modals/modal-change-activitie-history/index.js.map +1 -0
  13. package/lib/module/components/modals/modal-change-activitie-history/interface.js +4 -0
  14. package/lib/module/components/modals/modal-change-activitie-history/interface.js.map +1 -0
  15. package/lib/module/components/step-indicator/index.js +129 -65
  16. package/lib/module/components/step-indicator/index.js.map +1 -1
  17. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/helpers/index.d.ts +13 -0
  18. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/helpers/index.d.ts.map +1 -0
  19. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/index.d.ts +10 -0
  20. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/index.d.ts.map +1 -0
  21. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/interface.d.ts +18 -0
  22. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/interface.d.ts.map +1 -0
  23. package/lib/typescript/commonjs/src/components/step-indicator/index.d.ts +3 -9
  24. package/lib/typescript/commonjs/src/components/step-indicator/index.d.ts.map +1 -1
  25. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/helpers/index.d.ts +13 -0
  26. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/helpers/index.d.ts.map +1 -0
  27. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/index.d.ts +10 -0
  28. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/index.d.ts.map +1 -0
  29. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/interface.d.ts +18 -0
  30. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/interface.d.ts.map +1 -0
  31. package/lib/typescript/module/src/components/step-indicator/index.d.ts +3 -9
  32. package/lib/typescript/module/src/components/step-indicator/index.d.ts.map +1 -1
  33. package/package.json +1 -1
  34. package/src/components/modals/modal-change-activitie-history/helpers/index.ts +15 -0
  35. package/src/components/modals/modal-change-activitie-history/index.tsx +189 -0
  36. package/src/components/modals/modal-change-activitie-history/interface.ts +16 -0
  37. package/src/components/step-indicator/index.tsx +226 -155
  38. package/src/components/step-indicator/interface.d.ts +3 -2
@@ -4,7 +4,8 @@
4
4
  */
5
5
 
6
6
  type IData = {
7
- id: number;
7
+ id?: number | string;
8
+ jr_tipo_atividade_id?: number;
8
9
  duracao_segundos: string | number;
9
10
  data_inicio: string;
10
11
  data_fim: string;
@@ -38,7 +39,7 @@ interface IStepIndicator {
38
39
  textColorDescription?: string;
39
40
 
40
41
  /**params para lidar com selecionamento de atividade única */
41
- handleOnPressActivitie: (data: IData) => void;
42
+ onChangeActivity?: (activity: any) => void;
42
43
  }
43
44
  /**
44
45
  * EXPORTS