allaw-ui 4.2.4 → 4.2.5

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.
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  import { Pro } from "./AvatarToggleGroup";
3
- interface ProSwitchProps {
3
+ export interface ProSwitchProps {
4
4
  pros: Pro[];
5
5
  selected: string[];
6
6
  mode: "single" | "multiple";
@@ -0,0 +1,6 @@
1
+ export { default as ProSwitch } from "./ProSwitch";
2
+ export type { ProSwitchProps } from "./ProSwitch";
3
+ export { default as AvatarBubble } from "./AvatarBubble";
4
+ export type { AvatarBubbleProps } from "./AvatarBubble";
5
+ export { default as AvatarToggleGroup } from "./AvatarToggleGroup";
6
+ export type { AvatarToggleGroupProps } from "./AvatarToggleGroup";
@@ -0,0 +1,3 @@
1
+ export { default as ProSwitch } from "./ProSwitch";
2
+ export { default as AvatarBubble } from "./AvatarBubble";
3
+ export { default as AvatarToggleGroup } from "./AvatarToggleGroup";
package/dist/index.d.ts CHANGED
@@ -120,3 +120,4 @@ export { default as blogTextImageBlock } from "./components/molecules/blogTextIm
120
120
  export type { BlogTextImageBlockProps } from "./components/molecules/blogTextImageBlock/BlogTextImageBlock";
121
121
  export { default as FileUploader } from "./components/molecules/fileUploader/FileUploader";
122
122
  export type { FileUploaderProps } from "./components/molecules/fileUploader/FileUploader";
123
+ export { default as AvatarBubble } from "./components/molecules/proSwitch/AvatarBubble";
package/dist/index.js CHANGED
@@ -115,3 +115,4 @@ export { default as BlogText } from "./components/molecules/blogText/BlogText";
115
115
  export { default as blogTextImageBlock } from "./components/molecules/blogTextImageBlock/BlogTextImageBlock";
116
116
  // File Uploader
117
117
  export { default as FileUploader } from "./components/molecules/fileUploader/FileUploader";
118
+ export { default as AvatarBubble } from "./components/molecules/proSwitch/AvatarBubble";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "allaw-ui",
3
- "version": "4.2.4",
3
+ "version": "4.2.5",
4
4
  "description": "Composants UI pour l'application Allaw",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",