1mpacto-react-ui 2.0.29 → 2.0.31

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 (56) hide show
  1. package/dist/assets/style.css +1 -1
  2. package/dist/components/Calendar/CalendarButton.cjs +1 -1
  3. package/dist/components/Calendar/CalendarButton.mjs +12 -11
  4. package/dist/components/Calendar/CalendarCell.cjs +1 -1
  5. package/dist/components/Calendar/CalendarCell.mjs +8 -8
  6. package/dist/components/Calendar/CalendarMonth.cjs +1 -1
  7. package/dist/components/Calendar/CalendarMonth.mjs +28 -28
  8. package/dist/components/Calendar/CalendarYear.cjs +2 -2
  9. package/dist/components/Calendar/CalendarYear.mjs +36 -36
  10. package/dist/components/Calendar/style.module.scss.cjs +1 -1
  11. package/dist/components/Calendar/style.module.scss.mjs +36 -34
  12. package/dist/components/DatePicker/DatePicker.cjs +1 -1
  13. package/dist/components/DatePicker/DatePicker.mjs +45 -44
  14. package/dist/components/DatePicker/FilterDate.cjs +1 -1
  15. package/dist/components/DatePicker/FilterDate.mjs +54 -53
  16. package/dist/components/DatePicker/MonthYearPicker.cjs +1 -1
  17. package/dist/components/DatePicker/MonthYearPicker.mjs +27 -26
  18. package/dist/components/Modal/ModalDialog.cjs +9 -9
  19. package/dist/components/Modal/ModalDialog.config.cjs +1 -1
  20. package/dist/components/Modal/ModalDialog.config.mjs +4 -2
  21. package/dist/components/Modal/ModalDialog.mjs +25 -22
  22. package/dist/components/Modal/style.module.scss.cjs +1 -1
  23. package/dist/components/Modal/style.module.scss.mjs +19 -17
  24. package/dist/components/RadioCheckbox/RadioCheckbox.module.scss.cjs +1 -1
  25. package/dist/components/RadioCheckbox/RadioCheckbox.module.scss.mjs +21 -21
  26. package/dist/components/Tabs/style.module.scss.cjs +1 -1
  27. package/dist/components/Tabs/style.module.scss.mjs +29 -29
  28. package/dist/components/fin/Chat/BubbleChat.cjs +1 -1
  29. package/dist/components/fin/Chat/BubbleChat.mjs +17 -7
  30. package/dist/components/fin/Chat/BubbleChatOption.cjs +1 -1
  31. package/dist/components/fin/Chat/BubbleChatOption.mjs +20 -18
  32. package/dist/components/fin/Chat/BubbleChatUser.cjs +1 -1
  33. package/dist/components/fin/Chat/BubbleChatUser.mjs +11 -4
  34. package/dist/hooks/useCountdown.cjs +1 -1
  35. package/dist/hooks/useCountdown.mjs +21 -19
  36. package/dist/package.json.cjs +1 -1
  37. package/dist/package.json.d.ts +1 -1
  38. package/dist/package.json.mjs +1 -1
  39. package/dist/src/components/Input/InputReguler.stories.d.ts +20 -0
  40. package/dist/src/components/Modal/ModalDialog.config.d.ts +14 -0
  41. package/dist/src/components/Modal/ModalDialog.d.ts +1 -1
  42. package/dist/src/components/Modal/ModalDialog.stories.d.ts +17 -1
  43. package/dist/src/components/Popover/Popover.stories.d.ts +16 -0
  44. package/dist/src/components/Textarea/TextareaFloatingInner.stories.d.ts +16 -0
  45. package/dist/src/components/Upload/UploadMultipleFile.stories.d.ts +13 -0
  46. package/dist/src/components/fin/Chat/BubbleChat.d.ts +1 -1
  47. package/dist/src/components/fin/Chat/BubbleChat.stories.d.ts +99 -0
  48. package/dist/src/components/fin/Chat/BubbleChatOption.d.ts +1 -1
  49. package/dist/src/components/fin/Chat/BubbleChatOption.stories.d.ts +152 -0
  50. package/dist/src/components/fin/Chat/BubbleChatUser.d.ts +1 -1
  51. package/dist/src/components/fin/Chat/BubbleChatUser.stories.d.ts +65 -0
  52. package/dist/src/components/index.d.ts +2 -2
  53. package/dist/src/interfaces/components/Input/index.d.ts +1 -1
  54. package/dist/src/interfaces/components/Modal/index.d.ts +4 -1
  55. package/dist/src/interfaces/components/fin/Chat/index.d.ts +128 -0
  56. package/package.json +1 -1
@@ -0,0 +1,152 @@
1
+ import { StoryObj } from '@storybook/react-vite';
2
+ declare const meta: {
3
+ title: string;
4
+ component: ({ id, icon, type, header, content, options, optionDirection, classNameContainer, onClick, onCopy, onDislike, onLike, onReply, }: import('../..').IBubbleChatOption) => import("react/jsx-runtime").JSX.Element;
5
+ parameters: {
6
+ layout: string;
7
+ };
8
+ tags: string[];
9
+ argTypes: {
10
+ id: {
11
+ control: "text";
12
+ description: string;
13
+ table: {
14
+ category: string;
15
+ type: {
16
+ summary: string;
17
+ };
18
+ };
19
+ };
20
+ header: {
21
+ description: string;
22
+ table: {
23
+ category: string;
24
+ type: {
25
+ summary: string;
26
+ };
27
+ };
28
+ };
29
+ content: {
30
+ description: string;
31
+ table: {
32
+ category: string;
33
+ type: {
34
+ summary: string;
35
+ };
36
+ };
37
+ };
38
+ icon: {
39
+ control: false;
40
+ description: string;
41
+ table: {
42
+ category: string;
43
+ type: {
44
+ summary: string;
45
+ };
46
+ };
47
+ };
48
+ options: {
49
+ control: "object";
50
+ description: string;
51
+ table: {
52
+ category: string;
53
+ type: {
54
+ summary: string;
55
+ };
56
+ };
57
+ };
58
+ type: {
59
+ control: {
60
+ type: "select";
61
+ };
62
+ options: string[];
63
+ description: string;
64
+ table: {
65
+ category: string;
66
+ type: {
67
+ summary: string;
68
+ };
69
+ defaultValue: {
70
+ summary: string;
71
+ };
72
+ };
73
+ };
74
+ optionDirection: {
75
+ control: {
76
+ type: "radio";
77
+ };
78
+ options: string[];
79
+ description: string;
80
+ table: {
81
+ category: string;
82
+ type: {
83
+ summary: string;
84
+ };
85
+ defaultValue: {
86
+ summary: string;
87
+ };
88
+ };
89
+ };
90
+ onClick: {
91
+ action: string;
92
+ description: string;
93
+ table: {
94
+ category: string;
95
+ type: {
96
+ summary: string;
97
+ };
98
+ };
99
+ };
100
+ onCopy: {
101
+ action: string;
102
+ description: string;
103
+ table: {
104
+ category: string;
105
+ type: {
106
+ summary: string;
107
+ };
108
+ };
109
+ };
110
+ onLike: {
111
+ action: string;
112
+ description: string;
113
+ table: {
114
+ category: string;
115
+ type: {
116
+ summary: string;
117
+ };
118
+ };
119
+ };
120
+ onDislike: {
121
+ action: string;
122
+ description: string;
123
+ table: {
124
+ category: string;
125
+ type: {
126
+ summary: string;
127
+ };
128
+ };
129
+ };
130
+ onReply: {
131
+ action: string;
132
+ description: string;
133
+ table: {
134
+ category: string;
135
+ type: {
136
+ summary: string;
137
+ };
138
+ };
139
+ };
140
+ };
141
+ args: {
142
+ onClick: import('@vitest/spy').Mock<(...args: any[]) => any>;
143
+ onCopy: import('@vitest/spy').Mock<(...args: any[]) => any>;
144
+ onLike: import('@vitest/spy').Mock<(...args: any[]) => any>;
145
+ onDislike: import('@vitest/spy').Mock<(...args: any[]) => any>;
146
+ onReply: import('@vitest/spy').Mock<(...args: any[]) => any>;
147
+ };
148
+ render: (args: import('../..').IBubbleChatOption) => import("react/jsx-runtime").JSX.Element;
149
+ };
150
+ export default meta;
151
+ type Story = StoryObj<typeof meta>;
152
+ export declare const Default: Story;
@@ -1,3 +1,3 @@
1
1
  import { IBubbleChatUser } from '../../../interfaces/components/fin/Chat';
2
- declare const BubbleChatUser: ({ id, content, otherContentTop, otherContentBottom, onCopy }: IBubbleChatUser) => import("react/jsx-runtime").JSX.Element;
2
+ declare const BubbleChatUser: ({ id, content, otherContentTop, otherContentBottom, classNameContainer, onCopy, }: IBubbleChatUser) => import("react/jsx-runtime").JSX.Element;
3
3
  export default BubbleChatUser;
@@ -0,0 +1,65 @@
1
+ import { StoryObj } from '@storybook/react-vite';
2
+ declare const meta: {
3
+ title: string;
4
+ component: ({ id, content, otherContentTop, otherContentBottom, classNameContainer, onCopy, }: import('../..').IBubbleChatUser) => import("react/jsx-runtime").JSX.Element;
5
+ parameters: {
6
+ layout: string;
7
+ };
8
+ tags: string[];
9
+ argTypes: {
10
+ id: {
11
+ control: "text";
12
+ description: string;
13
+ table: {
14
+ category: string;
15
+ type: {
16
+ summary: string;
17
+ };
18
+ };
19
+ };
20
+ content: {
21
+ description: string;
22
+ table: {
23
+ category: string;
24
+ type: {
25
+ summary: string;
26
+ };
27
+ };
28
+ };
29
+ otherContentTop: {
30
+ description: string;
31
+ table: {
32
+ category: string;
33
+ type: {
34
+ summary: string;
35
+ };
36
+ };
37
+ };
38
+ otherContentBottom: {
39
+ description: string;
40
+ table: {
41
+ category: string;
42
+ type: {
43
+ summary: string;
44
+ };
45
+ };
46
+ };
47
+ onCopy: {
48
+ action: string;
49
+ description: string;
50
+ table: {
51
+ category: string;
52
+ type: {
53
+ summary: string;
54
+ };
55
+ };
56
+ };
57
+ };
58
+ args: {
59
+ onCopy: import('@vitest/spy').Mock<(...args: any[]) => any>;
60
+ };
61
+ render: (args: import('../..').IBubbleChatUser) => import("react/jsx-runtime").JSX.Element;
62
+ };
63
+ export default meta;
64
+ type Story = StoryObj<typeof meta>;
65
+ export declare const Default: Story;
@@ -85,9 +85,9 @@ import { default as InputInnerLabel } from './Input/InputInnerLabel';
85
85
  import { default as Text } from './Text/Text';
86
86
  import { default as Slider } from './Slider/Slider';
87
87
  import { BubbleChat, BubbleChatOption, BubbleChatUser } from './fin';
88
- import { IBubbleChat, IBubbleChatOption, IDataOptionBubbleChat } from '../interfaces/components/fin/Chat';
88
+ import { IBubbleChat, IBubbleChatOption, IDataOptionBubbleChat, IBubbleChatUser } from '../interfaces/components/fin/Chat';
89
89
  import * as utilTable from '@tanstack/react-table';
90
90
  import type * as SelectDropdownContainerType from 'react-select';
91
91
  import type * as FilterContainerType from '../interfaces/components/FilterContainer';
92
92
  export { TPublish, Button, Popover, Calendar, CalendarRange, DatePicker, DateRangePicker, FilterDate, InputFloatingInner, InputReguler, Pagination, Tabs, TabPanel, Table, TableVirtualization, ListVirtualization, SelectDropdownContainer, utilTable, Switch, ButtonIcon, Badges, Chips, RadioCheckbox, RadioCheckboxLabel, Breadcrumbs, Sidebar, Collapse, ModalDialog, SelectDropdownContainerComponents, Timeline, FilterContainer, NumberFormat, PatternFormat, DefaultCheckedChecboxIcon, DefaultRadioChecboxIcon, ConfigTable, PortalComponent, AlertContainer, UploadFile, TruncateComponent, UploadImage, Textarea, DoughnutChart, MonthYearPicker, CheckboxTable, InputNative, UploadMultipleFile, ErrorMessage, TextareaFloatingInner, Step, LineChart, Tooltip, ButtonPopover, GradientLineChart, GradientBarChart, PieChart, StepIndicator, TextEditor, CollapseV2, TableSubComponent, TimeRange, TextareaInnerLabel, InputInnerLabel, Text, Slider, BubbleChat, BubbleChatOption, BubbleChatUser, };
93
- export type { ITableColumnDef, IRefPopover, IRefTableVirtualization, IRefListVirtualization, IRefSelectDropdownContainer, IChildrenSelectDropdownContainer, ISidebarModule, SelectDropdownContainerType, FilterContainerType, IInputReguler, IInputFloatingInner, ITableConfig, TButtonVariants, TButtonSize, ITabsList, TTypeEventTabs, ITextarea, IListVirtualization, ITableVirtualization, IRefSidebar, IChildrenIconCompany, ICloneElementSidebar, IDataDoughnutChart, IDataInnerLabelDoughnutChart, ISelectDropdownContainer, IDatePicker, IPopover, IInputNative, IUploadMultipleFileValue, IDataStepList, IDataLineChart, IChips, IRefButtonPopover, TGradientLineChartCustomTooltip, IGradientLineChart, IGradientLineChartDataSet, IGradientLineChartData, TGradientBarChartCustomTooltip, IGradientBarChart, IGradientBarChartDataSet, IGradientBarChartData, IFilterDateButtonList, TKeyFilterDateButtonListType, IDataGradientBarChartCustomTooltip, IDataGradientLineChartCustomTooltip, IPieChart, IPieChartDataSet, IPieChartData, TPieChartCustomTooltip, IDataPieChartCustomTooltip, IPieChartThreshold, ITextEditorProps, ICollapse, ITableColumnBreakpoint, TTableRenderSubComponent, TTableHandlerRowClick, TKeyLocale, ITimeRangeListTime, ITimeRange, TTimeRangeValue, IButton, TButtonIconVariants, TButtonIconSize, IButtonIcon, ISidebar, ISlider, IBubbleChat, IBubbleChatOption, IDataOptionBubbleChat, };
93
+ export type { ITableColumnDef, IRefPopover, IRefTableVirtualization, IRefListVirtualization, IRefSelectDropdownContainer, IChildrenSelectDropdownContainer, ISidebarModule, SelectDropdownContainerType, FilterContainerType, IInputReguler, IInputFloatingInner, ITableConfig, TButtonVariants, TButtonSize, ITabsList, TTypeEventTabs, ITextarea, IListVirtualization, ITableVirtualization, IRefSidebar, IChildrenIconCompany, ICloneElementSidebar, IDataDoughnutChart, IDataInnerLabelDoughnutChart, ISelectDropdownContainer, IDatePicker, IPopover, IInputNative, IUploadMultipleFileValue, IDataStepList, IDataLineChart, IChips, IRefButtonPopover, TGradientLineChartCustomTooltip, IGradientLineChart, IGradientLineChartDataSet, IGradientLineChartData, TGradientBarChartCustomTooltip, IGradientBarChart, IGradientBarChartDataSet, IGradientBarChartData, IFilterDateButtonList, TKeyFilterDateButtonListType, IDataGradientBarChartCustomTooltip, IDataGradientLineChartCustomTooltip, IPieChart, IPieChartDataSet, IPieChartData, TPieChartCustomTooltip, IDataPieChartCustomTooltip, IPieChartThreshold, ITextEditorProps, ICollapse, ITableColumnBreakpoint, TTableRenderSubComponent, TTableHandlerRowClick, TKeyLocale, ITimeRangeListTime, ITimeRange, TTimeRangeValue, IButton, TButtonIconVariants, TButtonIconSize, IButtonIcon, ISidebar, ISlider, IBubbleChat, IBubbleChatOption, IDataOptionBubbleChat, IBubbleChatUser, };
@@ -129,7 +129,7 @@ export interface IInputReguler extends InputHTMLAttributes<HTMLInputElement> {
129
129
  * [ID] : Konten label (opsional).
130
130
  * [EN] : Label content (optional).
131
131
  */
132
- contentLabel?: IInputReguler['startIcon'];
132
+ contentLabel?: ReactNode | ReactNode[] | (() => ReactNode) | (() => ReactNode[]);
133
133
  /**
134
134
  * [ID] : Nama kelas CSS untuk kontainer label (opsional).
135
135
  * [EN] : CSS class name for label container (optional).
@@ -1,4 +1,5 @@
1
1
  import { ReactNode, ElementType } from 'react';
2
+ import { IBorderRadius } from '../../../config/components/borderRadius';
2
3
  /**
3
4
  * [ID] : Interface untuk komponen ModalDialog.
4
5
  * [EN] : Interface for ModalDialog component.
@@ -59,7 +60,9 @@ export interface IModalDialog<T extends ElementType> {
59
60
  * [ID] : Posisi modal (opsional).
60
61
  * [EN] : Modal position (optional).
61
62
  */
62
- position?: 'center' | 'right-top' | 'right-bottom' | 'left-top' | 'left-bottom';
63
+ position?: 'center' | 'center-top' | 'center-bottom' | 'right-top' | 'right-bottom' | 'left-top' | 'left-bottom';
64
+ offset?: string;
65
+ borderRadius?: IBorderRadius | (string & {});
63
66
  /**
64
67
  * [ID] : Handler saat modal ditutup (opsional).
65
68
  * [EN] : Handler when modal is closed (optional).
@@ -1,39 +1,167 @@
1
1
  import { IButton } from '../../Button';
2
+ /**
3
+ * [ID] : Struktur dasar untuk satu bubble chat.
4
+ * [EN] : Base structure for a single chat bubble.
5
+ */
2
6
  export interface IBubble {
7
+ /**
8
+ * [ID] : ID unik bubble.
9
+ * [EN] : Unique identifier of the bubble.
10
+ */
3
11
  id?: string;
12
+ /**
13
+ * [ID] : Isi konten bubble, bisa berupa node tunggal atau array node.
14
+ * [EN] : Bubble content, can be a single node or an array of nodes.
15
+ */
4
16
  content?: React.ReactNode | React.ReactNode[];
17
+ /**
18
+ * [ID] : Handler saat aksi copy konten dipicu.
19
+ * [EN] : Handler triggered when the copy content action fires.
20
+ */
5
21
  onCopy?: () => void;
22
+ /**
23
+ * [ID] : Class name untuk container bubble.
24
+ * [EN] : Class name for the bubble container.
25
+ */
26
+ classNameContainer?: string;
6
27
  }
28
+ /**
29
+ * [ID] : Bubble chat pihak lain (system/bot), dilengkapi aksi like/dislike/reply.
30
+ * [EN] : Chat bubble from the other party (system/bot), with like/dislike/reply actions.
31
+ */
7
32
  export interface IBubbleChat extends IBubble {
33
+ /**
34
+ * [ID] : Ikon yang ditampilkan pada bubble.
35
+ * [EN] : Icon displayed on the bubble.
36
+ */
8
37
  icon?: React.ReactNode;
38
+ /**
39
+ * [ID] : Header/judul bubble, bisa berupa node tunggal atau array node.
40
+ * [EN] : Bubble header/title, can be a single node or an array of nodes.
41
+ */
9
42
  header?: React.ReactNode | React.ReactNode[];
43
+ /**
44
+ * [ID] : Handler saat aksi like dipicu.
45
+ * [EN] : Handler triggered when the like action fires.
46
+ */
10
47
  onLike?: () => void;
48
+ /**
49
+ * [ID] : Handler saat aksi dislike dipicu.
50
+ * [EN] : Handler triggered when the dislike action fires.
51
+ */
11
52
  onDislike?: () => void;
53
+ /**
54
+ * [ID] : Handler saat aksi reply dipicu.
55
+ * [EN] : Handler triggered when the reply action fires.
56
+ */
12
57
  onReply?: () => void;
13
58
  }
59
+ /**
60
+ * [ID] : Bubble chat milik user, dengan slot konten tambahan di atas dan bawah.
61
+ * [EN] : Chat bubble owned by the user, with extra content slots above and below.
62
+ */
14
63
  export interface IBubbleChatUser extends IBubble {
64
+ /**
65
+ * [ID] : Konten tambahan di atas bubble utama.
66
+ * [EN] : Extra content rendered above the main bubble.
67
+ */
15
68
  otherContentTop?: React.ReactNode | React.ReactNode[];
69
+ /**
70
+ * [ID] : Konten tambahan di bawah bubble utama.
71
+ * [EN] : Extra content rendered below the main bubble.
72
+ */
16
73
  otherContentBottom?: React.ReactNode | React.ReactNode[];
17
74
  }
75
+ /**
76
+ * [ID] : Data satu opsi yang ditampilkan dalam bubble chat opsi (system/suggestion/action).
77
+ * [EN] : Data of a single option rendered inside an option chat bubble (system/suggestion/action).
78
+ */
18
79
  export interface IDataOptionBubbleChat {
80
+ /**
81
+ * [ID] : ID unik opsi.
82
+ * [EN] : Unique identifier of the option.
83
+ */
19
84
  id: string;
85
+ /**
86
+ * [ID] : Judul opsi.
87
+ * [EN] : Title of the option.
88
+ */
20
89
  title: string;
90
+ /**
91
+ * [ID] : Subjudul/deskripsi tambahan opsi.
92
+ * [EN] : Subtitle/additional description of the option.
93
+ */
21
94
  subtitle?: string;
95
+ /**
96
+ * [ID] : Ikon di sisi kanan opsi.
97
+ * [EN] : Icon rendered on the right side of the option.
98
+ */
22
99
  iconRight?: React.ReactNode;
100
+ /**
101
+ * [ID] : Ikon di sisi kiri opsi.
102
+ * [EN] : Icon rendered on the left side of the option.
103
+ */
23
104
  iconLeft?: React.ReactNode;
24
105
  }
106
+ /**
107
+ * [ID] : Struktur dasar internal untuk bubble chat yang memiliki daftar opsi.
108
+ * [EN] : Internal base structure for a chat bubble that carries a list of options.
109
+ */
25
110
  interface IBaseBubbleChatOption extends IBubbleChat {
111
+ /**
112
+ * [ID] : Arah tata letak daftar opsi (kolom atau baris).
113
+ * [EN] : Layout direction of the option list (column or row).
114
+ */
26
115
  optionDirection?: 'column' | 'row';
27
116
  }
117
+ /**
118
+ * [ID] : Bubble chat opsi bertipe system, opsi ditampilkan sebagai tombol.
119
+ * [EN] : System-type option chat bubble, options rendered as buttons.
120
+ */
28
121
  interface ISystemBubbleChatOption extends IBaseBubbleChatOption {
122
+ /**
123
+ * [ID] : Penanda tipe bubble opsi sebagai system.
124
+ * [EN] : Discriminator marking the option bubble as system type.
125
+ */
29
126
  type: 'system';
127
+ /**
128
+ * [ID] : Daftar opsi, gabungan properti tombol (tanpa children) dan data opsi.
129
+ * [EN] : List of options, combining button props (without children) and option data.
130
+ */
30
131
  options?: (Omit<IButton, 'children'> & IDataOptionBubbleChat)[];
132
+ /**
133
+ * [ID] : Handler saat salah satu opsi diklik.
134
+ * [EN] : Handler triggered when one of the options is clicked.
135
+ * @param data - [ID] : Data opsi (gabungan properti tombol dan data opsi) yang diklik.
136
+ * [EN] : Option data (button props combined with option data) that was clicked.
137
+ */
31
138
  onClick?: (data: Omit<IButton, 'children'> & IDataOptionBubbleChat) => void;
32
139
  }
140
+ /**
141
+ * [ID] : Bubble chat opsi bertipe suggestion/action.
142
+ * [EN] : Suggestion/action-type option chat bubble.
143
+ */
33
144
  interface IOtherBubbleChatOption extends IBaseBubbleChatOption {
145
+ /**
146
+ * [ID] : Penanda tipe bubble opsi sebagai suggestion atau action.
147
+ * [EN] : Discriminator marking the option bubble as suggestion or action type.
148
+ */
34
149
  type: 'suggestion' | 'action';
150
+ /**
151
+ * [ID] : Daftar opsi yang ditampilkan.
152
+ * [EN] : List of options to render.
153
+ */
35
154
  options?: IDataOptionBubbleChat[];
155
+ /**
156
+ * [ID] : Handler saat salah satu opsi diklik.
157
+ * [EN] : Handler triggered when one of the options is clicked.
158
+ * @param data - [ID] : Data opsi yang diklik. [EN] : Option data that was clicked.
159
+ */
36
160
  onClick?: (data: IDataOptionBubbleChat) => void;
37
161
  }
162
+ /**
163
+ * [ID] : Union tipe bubble chat opsi, bisa system atau suggestion/action.
164
+ * [EN] : Union type of option chat bubbles, either system or suggestion/action.
165
+ */
38
166
  export type IBubbleChatOption = ISystemBubbleChatOption | IOtherBubbleChatOption;
39
167
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "1mpacto-react-ui",
3
3
  "private": false,
4
- "version": "2.0.29",
4
+ "version": "2.0.31",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": ">=22.22.3",