allaw-ui 3.5.4 → 3.5.6

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.
@@ -38,7 +38,7 @@ var InboxButton = function (_a) {
38
38
  }
39
39
  return (React.createElement("button", { className: clsx(styles.inboxBtn, isDisabled && styles.disabled, isQualificationZero && styles.qualificationZero, !isDisabled && !isQualificationZero && styles["bg-".concat(bgKey)], scheme === "qualification" &&
40
40
  !isQualificationZero &&
41
- styles.qualificationActive), disabled: isDisabled, onClick: onClick },
41
+ styles.qualificationActive), disabled: isDisabled, onClick: onClick, "data-testid": "inbox-button" },
42
42
  iconClassName && (React.createElement("i", { className: clsx(styles.icon, iconClassName, !isDisabled && !isQualificationZero && styles["color-".concat(colorKey)], isQualificationZero && styles.colorDarkGrey, scheme === "qualification" &&
43
43
  !isQualificationZero &&
44
44
  styles.colorNoir), "aria-label": iconAriaLabel })),
package/dist/index.d.ts CHANGED
@@ -4,6 +4,8 @@ export { default as FavoriteToggle } from "./components/atoms/buttons/FavoriteTo
4
4
  export { default as FilterButton } from "./components/atoms/buttons/FilterButton";
5
5
  export { default as GhostButton } from "./components/atoms/buttons/GhostButton";
6
6
  export { default as IconButton } from "./components/atoms/buttons/IconButton";
7
+ export { default as InboxButton } from "./components/atoms/buttons/InboxButton";
8
+ export type { InboxButtonProps } from "./components/atoms/buttons/InboxButton";
7
9
  export { default as OAuthProviderButton } from "./components/atoms/buttons/OAuthProviderButton";
8
10
  export { default as PendingDocuments } from "./components/atoms/buttons/PendingDocuments";
9
11
  export { default as Button, default as PrimaryButton, } from "./components/atoms/buttons/PrimaryButton";
package/dist/index.js CHANGED
@@ -5,6 +5,7 @@ export { default as FavoriteToggle } from "./components/atoms/buttons/FavoriteTo
5
5
  export { default as FilterButton } from "./components/atoms/buttons/FilterButton";
6
6
  export { default as GhostButton } from "./components/atoms/buttons/GhostButton";
7
7
  export { default as IconButton } from "./components/atoms/buttons/IconButton";
8
+ export { default as InboxButton } from "./components/atoms/buttons/InboxButton";
8
9
  export { default as OAuthProviderButton } from "./components/atoms/buttons/OAuthProviderButton";
9
10
  export { default as PendingDocuments } from "./components/atoms/buttons/PendingDocuments";
10
11
  export { default as Button, default as PrimaryButton, } from "./components/atoms/buttons/PrimaryButton";
@@ -13,7 +14,7 @@ export { default as TabNavigation } from "./components/atoms/buttons/TabNavigati
13
14
  export { default as TertiaryButton } from "./components/atoms/buttons/TertiaryButton";
14
15
  // Checkboxes
15
16
  export { default as Checkbox } from "./components/atoms/checkboxes/Checkbox";
16
- // Checkboxes
17
+ // Fitler
17
18
  export { default as Fitler } from "./components/atoms/filter/Filter";
18
19
  // Inputs
19
20
  export { default as Input } from "./components/atoms/inputs/Input";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "allaw-ui",
3
- "version": "3.5.4",
3
+ "version": "3.5.6",
4
4
  "description": "Composants UI pour l'application Allaw",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -40,6 +40,7 @@
40
40
  "access": "public"
41
41
  },
42
42
  "dependencies": {
43
+ "allaw-ui": "^3.5.5",
43
44
  "date-fns": "^4.1.0",
44
45
  "next": "14.2.5",
45
46
  "react": "^17.0.0 || ^18.0.0",