@loja-integrada/admin-components 0.19.10 → 0.21.0

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 (42) hide show
  1. package/dist/Forms/commonStyles.d.ts +2 -2
  2. package/dist/Indicators/Alert/Alert.d.ts +1 -0
  3. package/dist/admin-components.cjs.development.js +3629 -3621
  4. package/dist/admin-components.cjs.development.js.map +1 -1
  5. package/dist/admin-components.cjs.production.min.js +1 -1
  6. package/dist/admin-components.cjs.production.min.js.map +1 -1
  7. package/dist/admin-components.esm.js +3629 -3621
  8. package/dist/admin-components.esm.js.map +1 -1
  9. package/package.json +2 -2
  10. package/src/Components/Button/Button.tsx +6 -6
  11. package/src/Components/HelpLink/index.tsx +1 -1
  12. package/src/Components/Modal/Modal.tsx +1 -1
  13. package/src/Components/Table/Table.tsx +2 -2
  14. package/src/Components/TableList/TableList.tsx +4 -4
  15. package/src/Components/TableList/TableListItemWrapper.tsx +1 -1
  16. package/src/Components/Tabs/TabsItem.tsx +1 -1
  17. package/src/Components/Timeline/TimelineItem.tsx +3 -3
  18. package/src/Forms/Checkbox/Checkbox.tsx +4 -4
  19. package/src/Forms/Dropdown/Dropdown.tsx +7 -6
  20. package/src/Forms/Input/Input.tsx +1 -1
  21. package/src/Forms/InputHelpText/InputHelpText.tsx +1 -1
  22. package/src/Forms/InputLabel/InputLabel.tsx +1 -1
  23. package/src/Forms/Toggle/Toggle.tsx +1 -1
  24. package/src/Forms/ToggleButton/ToggleButton.tsx +1 -1
  25. package/src/Forms/commonStyles.ts +9 -8
  26. package/src/Indicators/Alert/Alert.spec.tsx +1 -1
  27. package/src/Indicators/Alert/Alert.tsx +33 -16
  28. package/src/Indicators/Badge/Badge.spec.tsx +1 -1
  29. package/src/Indicators/Badge/Badge.tsx +2 -2
  30. package/src/Indicators/InformationBox/InformationBox.spec.tsx +2 -2
  31. package/src/Indicators/InformationBox/InformationBox.tsx +4 -4
  32. package/src/Indicators/Tag/Tag.tsx +1 -1
  33. package/src/Indicators/Tooltip/style.scss +1 -1
  34. package/src/Layout/Box/Components/Header/BoxHeader.tsx +2 -4
  35. package/src/Layout/ListActions/ListActions.tsx +2 -2
  36. package/src/Layout/Sidebar/Item.tsx +1 -1
  37. package/src/Layout/Sidebar/ItemSub.tsx +1 -1
  38. package/src/Navigation/Breadcrumb/index.tsx +2 -2
  39. package/src/Navigation/Pagination/PaginationInfo.tsx +1 -1
  40. package/src/Navigation/Pagination/PaginationNav.tsx +1 -1
  41. package/src/Navigation/Stepper/index.tsx +2 -2
  42. package/src/tailwind.scss +1 -1
@@ -35,7 +35,7 @@ export const Stepper: React.FC<StepperProps> = React.memo(
35
35
  >
36
36
  <span
37
37
  onClick={() => item.handleClick?.()}
38
- className={`font-bold ${
38
+ className={`font-semibold ${
39
39
  item.handleClick ? 'cursor-pointer' : ''
40
40
  }`}
41
41
  >
@@ -47,7 +47,7 @@ export const Stepper: React.FC<StepperProps> = React.memo(
47
47
  onClick={() => item.handleClick?.()}
48
48
  className={`text-center my-auto text-sm ${showText ? '' : ''}
49
49
  ${item.step < 2 ? 'cursor-pointer' : ''}
50
- ${currentStep === item.step ? 'font-bold' : ''}`}
50
+ ${currentStep === item.step ? 'font-semibold' : ''}`}
51
51
  >
52
52
  {item.text}
53
53
  </span>
package/src/tailwind.scss CHANGED
@@ -2,7 +2,7 @@
2
2
  @tailwind components;
3
3
  @tailwind utilities;
4
4
 
5
- @import '@loja-integrada/tailwindcss-config/styles/_variables.scss';
5
+ @import '@loja-integrada/tailwindcss-config/styles/variables';
6
6
 
7
7
  body {
8
8
  @apply antialiased;