fis-component 0.0.33 → 0.0.35

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 (44) hide show
  1. package/dist/cjs/index.js +237 -35
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/src/assets/icons/ChevronLeftIcon.d.ts +3 -0
  4. package/dist/cjs/types/src/assets/icons/ChevronRightIcon.d.ts +3 -0
  5. package/dist/cjs/types/src/assets/icons/InfoIcon.d.ts +1 -2
  6. package/dist/cjs/types/src/assets/icons/index.d.ts +2 -0
  7. package/dist/cjs/types/src/components/Breadcrumb/index.d.ts +1 -1
  8. package/dist/cjs/types/src/components/Input/InputStepper/InputStepper.stories.d.ts +311 -0
  9. package/dist/cjs/types/src/components/Input/InputTime/styles.d.ts +0 -2
  10. package/dist/cjs/types/src/components/MenuSelect/types.d.ts +1 -1
  11. package/dist/cjs/types/src/components/Pagination/Pagination.stories.d.ts +8 -0
  12. package/dist/cjs/types/src/components/Pagination/index.d.ts +9 -0
  13. package/dist/cjs/types/src/components/Pagination/styles.d.ts +25 -0
  14. package/dist/cjs/types/src/components/Select/types.d.ts +3 -3
  15. package/dist/cjs/types/src/components/Select/utils.d.ts +2 -0
  16. package/dist/cjs/types/src/components/SelectItem/index.d.ts +1 -5
  17. package/dist/cjs/types/src/components/Toast/ToastContext.d.ts +2 -1
  18. package/dist/cjs/types/src/components/Toast/index.d.ts +1 -0
  19. package/dist/cjs/types/src/components/Toast/styles.d.ts +3 -1
  20. package/dist/cjs/types/src/components/Toast/useToast.d.ts +2 -1
  21. package/dist/cjs/types/src/index.d.ts +5 -0
  22. package/dist/esm/index.js +233 -36
  23. package/dist/esm/index.js.map +1 -1
  24. package/dist/esm/types/src/assets/icons/ChevronLeftIcon.d.ts +3 -0
  25. package/dist/esm/types/src/assets/icons/ChevronRightIcon.d.ts +3 -0
  26. package/dist/esm/types/src/assets/icons/InfoIcon.d.ts +1 -2
  27. package/dist/esm/types/src/assets/icons/index.d.ts +2 -0
  28. package/dist/esm/types/src/components/Breadcrumb/index.d.ts +1 -1
  29. package/dist/esm/types/src/components/Input/InputStepper/InputStepper.stories.d.ts +311 -0
  30. package/dist/esm/types/src/components/Input/InputTime/styles.d.ts +0 -2
  31. package/dist/esm/types/src/components/MenuSelect/types.d.ts +1 -1
  32. package/dist/esm/types/src/components/Pagination/Pagination.stories.d.ts +8 -0
  33. package/dist/esm/types/src/components/Pagination/index.d.ts +9 -0
  34. package/dist/esm/types/src/components/Pagination/styles.d.ts +25 -0
  35. package/dist/esm/types/src/components/Select/types.d.ts +3 -3
  36. package/dist/esm/types/src/components/Select/utils.d.ts +2 -0
  37. package/dist/esm/types/src/components/SelectItem/index.d.ts +1 -5
  38. package/dist/esm/types/src/components/Toast/ToastContext.d.ts +2 -1
  39. package/dist/esm/types/src/components/Toast/index.d.ts +1 -0
  40. package/dist/esm/types/src/components/Toast/styles.d.ts +3 -1
  41. package/dist/esm/types/src/components/Toast/useToast.d.ts +2 -1
  42. package/dist/esm/types/src/index.d.ts +5 -0
  43. package/dist/index.d.ts +75 -27
  44. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ import { SvgIconProps } from "./SVGIconProps";
2
+ declare function ChevronLeftIcon(props: SvgIconProps): import("react/jsx-runtime").JSX.Element;
3
+ export default ChevronLeftIcon;
@@ -0,0 +1,3 @@
1
+ import { SvgIconProps } from "./SVGIconProps";
2
+ declare function ChevronRightIcon(props: SvgIconProps): import("react/jsx-runtime").JSX.Element;
3
+ export default ChevronRightIcon;
@@ -1,3 +1,2 @@
1
1
  import { SvgIconProps } from "./SVGIconProps";
2
- declare function InfoIcon(props: SvgIconProps): import("react/jsx-runtime").JSX.Element;
3
- export default InfoIcon;
2
+ export default function InfoIcon(props: SvgIconProps): import("react/jsx-runtime").JSX.Element;
@@ -37,3 +37,5 @@ export { default as MoreIcon } from "./MoreIcon";
37
37
  export { default as NoDataIcon } from "./NoDataIcon";
38
38
  export { default as NoResultIcon } from "./NoResultIcon";
39
39
  export { default as RemoveIcon } from "./RemoveIcon";
40
+ export { default as ChevronLeftIcon } from "./ChevronLeftIcon";
41
+ export { default as ChevronRightIcon } from "./ChevronRightIcon";
@@ -3,7 +3,7 @@ export interface BreadcrumbItemProps extends ComponentPropsWithoutRef<"button">
3
3
  icon?: React.ReactNode;
4
4
  label?: string;
5
5
  active?: boolean;
6
- onClick: () => void;
6
+ onClick?: () => void;
7
7
  }
8
8
  export type BreadcrumbProps = {
9
9
  items: BreadcrumbItemProps[];
@@ -10,6 +10,317 @@ declare const meta: {
10
10
  };
11
11
  };
12
12
  };
13
+ decorators: ((Story: import("@storybook/core/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
14
+ min?: number | undefined;
15
+ max?: number | undefined;
16
+ step?: number | undefined;
17
+ defaultValue?: number | undefined;
18
+ sizeInput?: import("./index").InputSize | undefined;
19
+ negative?: boolean | undefined;
20
+ positive?: boolean | undefined;
21
+ message?: string | undefined;
22
+ disabled?: boolean | undefined;
23
+ readOnly?: boolean | undefined;
24
+ StartIcon?: import("react").ReactNode;
25
+ EndIcon?: import("react").ReactNode;
26
+ onChange?: ((value: number) => void) | undefined;
27
+ name?: string | undefined | undefined;
28
+ dir?: string | undefined | undefined;
29
+ key?: import("react").Key | null | undefined;
30
+ defaultChecked?: boolean | undefined | undefined;
31
+ suppressContentEditableWarning?: boolean | undefined | undefined;
32
+ suppressHydrationWarning?: boolean | undefined | undefined;
33
+ accessKey?: string | undefined | undefined;
34
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
35
+ autoFocus?: boolean | undefined | undefined;
36
+ className?: string | undefined | undefined;
37
+ contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
38
+ contextMenu?: string | undefined | undefined;
39
+ draggable?: (boolean | "false" | "true") | undefined;
40
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
41
+ hidden?: boolean | undefined | undefined;
42
+ id?: string | undefined | undefined;
43
+ lang?: string | undefined | undefined;
44
+ nonce?: string | undefined | undefined;
45
+ slot?: string | undefined | undefined;
46
+ spellCheck?: (boolean | "false" | "true") | undefined;
47
+ style?: import("react").CSSProperties | undefined;
48
+ tabIndex?: number | undefined | undefined;
49
+ title?: string | undefined | undefined;
50
+ translate?: "yes" | "no" | undefined | undefined;
51
+ radioGroup?: string | undefined | undefined;
52
+ role?: import("react").AriaRole | undefined;
53
+ about?: string | undefined | undefined;
54
+ content?: string | undefined | undefined;
55
+ datatype?: string | undefined | undefined;
56
+ inlist?: any;
57
+ prefix?: string | undefined | undefined;
58
+ property?: string | undefined | undefined;
59
+ rel?: string | undefined | undefined;
60
+ resource?: string | undefined | undefined;
61
+ rev?: string | undefined | undefined;
62
+ typeof?: string | undefined | undefined;
63
+ vocab?: string | undefined | undefined;
64
+ autoCorrect?: string | undefined | undefined;
65
+ autoSave?: string | undefined | undefined;
66
+ color?: string | undefined | undefined;
67
+ itemProp?: string | undefined | undefined;
68
+ itemScope?: boolean | undefined | undefined;
69
+ itemType?: string | undefined | undefined;
70
+ itemID?: string | undefined | undefined;
71
+ itemRef?: string | undefined | undefined;
72
+ results?: number | undefined | undefined;
73
+ security?: string | undefined | undefined;
74
+ unselectable?: "on" | "off" | undefined | undefined;
75
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
76
+ is?: string | undefined | undefined;
77
+ exportparts?: string | undefined | undefined;
78
+ part?: string | undefined | undefined;
79
+ "aria-activedescendant"?: string | undefined | undefined;
80
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
81
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
82
+ "aria-braillelabel"?: string | undefined | undefined;
83
+ "aria-brailleroledescription"?: string | undefined | undefined;
84
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
85
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
86
+ "aria-colcount"?: number | undefined | undefined;
87
+ "aria-colindex"?: number | undefined | undefined;
88
+ "aria-colindextext"?: string | undefined | undefined;
89
+ "aria-colspan"?: number | undefined | undefined;
90
+ "aria-controls"?: string | undefined | undefined;
91
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
92
+ "aria-describedby"?: string | undefined | undefined;
93
+ "aria-description"?: string | undefined | undefined;
94
+ "aria-details"?: string | undefined | undefined;
95
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
96
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
97
+ "aria-errormessage"?: string | undefined | undefined;
98
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
99
+ "aria-flowto"?: string | undefined | undefined;
100
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
101
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
102
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
103
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
104
+ "aria-keyshortcuts"?: string | undefined | undefined;
105
+ "aria-label"?: string | undefined | undefined;
106
+ "aria-labelledby"?: string | undefined | undefined;
107
+ "aria-level"?: number | undefined | undefined;
108
+ "aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
109
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
110
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
111
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
112
+ "aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
113
+ "aria-owns"?: string | undefined | undefined;
114
+ "aria-placeholder"?: string | undefined | undefined;
115
+ "aria-posinset"?: number | undefined | undefined;
116
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
117
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
118
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
119
+ "aria-required"?: (boolean | "false" | "true") | undefined;
120
+ "aria-roledescription"?: string | undefined | undefined;
121
+ "aria-rowcount"?: number | undefined | undefined;
122
+ "aria-rowindex"?: number | undefined | undefined;
123
+ "aria-rowindextext"?: string | undefined | undefined;
124
+ "aria-rowspan"?: number | undefined | undefined;
125
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
126
+ "aria-setsize"?: number | undefined | undefined;
127
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
128
+ "aria-valuemax"?: number | undefined | undefined;
129
+ "aria-valuemin"?: number | undefined | undefined;
130
+ "aria-valuenow"?: number | undefined | undefined;
131
+ "aria-valuetext"?: string | undefined | undefined;
132
+ children?: import("react").ReactNode;
133
+ dangerouslySetInnerHTML?: {
134
+ __html: string | TrustedHTML;
135
+ } | undefined | undefined;
136
+ onCopy?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
137
+ onCopyCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
138
+ onCut?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
139
+ onCutCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
140
+ onPaste?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
141
+ onPasteCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
142
+ onCompositionEnd?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
143
+ onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
144
+ onCompositionStart?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
145
+ onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
146
+ onCompositionUpdate?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
147
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
148
+ onFocus?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
149
+ onFocusCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
150
+ onBlur?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
151
+ onBlurCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
152
+ onChangeCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
153
+ onBeforeInput?: import("react").FormEventHandler<HTMLInputElement> | undefined;
154
+ onBeforeInputCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
155
+ onInput?: import("react").FormEventHandler<HTMLInputElement> | undefined;
156
+ onInputCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
157
+ onReset?: import("react").FormEventHandler<HTMLInputElement> | undefined;
158
+ onResetCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
159
+ onSubmit?: import("react").FormEventHandler<HTMLInputElement> | undefined;
160
+ onSubmitCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
161
+ onInvalid?: import("react").FormEventHandler<HTMLInputElement> | undefined;
162
+ onInvalidCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
163
+ onLoad?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
164
+ onLoadCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
165
+ onError?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
166
+ onErrorCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
167
+ onKeyDown?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
168
+ onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
169
+ onKeyPress?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
170
+ onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
171
+ onKeyUp?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
172
+ onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
173
+ onAbort?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
174
+ onAbortCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
175
+ onCanPlay?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
176
+ onCanPlayCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
177
+ onCanPlayThrough?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
178
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
179
+ onDurationChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
180
+ onDurationChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
181
+ onEmptied?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
182
+ onEmptiedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
183
+ onEncrypted?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
184
+ onEncryptedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
185
+ onEnded?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
186
+ onEndedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
187
+ onLoadedData?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
188
+ onLoadedDataCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
189
+ onLoadedMetadata?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
190
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
191
+ onLoadStart?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
192
+ onLoadStartCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
193
+ onPause?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
194
+ onPauseCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
195
+ onPlay?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
196
+ onPlayCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
197
+ onPlaying?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
198
+ onPlayingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
199
+ onProgress?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
200
+ onProgressCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
201
+ onRateChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
202
+ onRateChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
203
+ onResize?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
204
+ onResizeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
205
+ onSeeked?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
206
+ onSeekedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
207
+ onSeeking?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
208
+ onSeekingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
209
+ onStalled?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
210
+ onStalledCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
211
+ onSuspend?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
212
+ onSuspendCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
213
+ onTimeUpdate?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
214
+ onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
215
+ onVolumeChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
216
+ onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
217
+ onWaiting?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
218
+ onWaitingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
219
+ onAuxClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
220
+ onAuxClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
221
+ onClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
222
+ onClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
223
+ onContextMenu?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
224
+ onContextMenuCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
225
+ onDoubleClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
226
+ onDoubleClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
227
+ onDrag?: import("react").DragEventHandler<HTMLInputElement> | undefined;
228
+ onDragCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
229
+ onDragEnd?: import("react").DragEventHandler<HTMLInputElement> | undefined;
230
+ onDragEndCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
231
+ onDragEnter?: import("react").DragEventHandler<HTMLInputElement> | undefined;
232
+ onDragEnterCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
233
+ onDragExit?: import("react").DragEventHandler<HTMLInputElement> | undefined;
234
+ onDragExitCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
235
+ onDragLeave?: import("react").DragEventHandler<HTMLInputElement> | undefined;
236
+ onDragLeaveCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
237
+ onDragOver?: import("react").DragEventHandler<HTMLInputElement> | undefined;
238
+ onDragOverCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
239
+ onDragStart?: import("react").DragEventHandler<HTMLInputElement> | undefined;
240
+ onDragStartCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
241
+ onDrop?: import("react").DragEventHandler<HTMLInputElement> | undefined;
242
+ onDropCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
243
+ onMouseDown?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
244
+ onMouseDownCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
245
+ onMouseEnter?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
246
+ onMouseLeave?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
247
+ onMouseMove?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
248
+ onMouseMoveCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
249
+ onMouseOut?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
250
+ onMouseOutCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
251
+ onMouseOver?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
252
+ onMouseOverCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
253
+ onMouseUp?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
254
+ onMouseUpCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
255
+ onSelect?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
256
+ onSelectCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
257
+ onTouchCancel?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
258
+ onTouchCancelCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
259
+ onTouchEnd?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
260
+ onTouchEndCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
261
+ onTouchMove?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
262
+ onTouchMoveCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
263
+ onTouchStart?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
264
+ onTouchStartCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
265
+ onPointerDown?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
266
+ onPointerDownCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
267
+ onPointerMove?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
268
+ onPointerMoveCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
269
+ onPointerUp?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
270
+ onPointerUpCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
271
+ onPointerCancel?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
272
+ onPointerCancelCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
273
+ onPointerEnter?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
274
+ onPointerLeave?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
275
+ onPointerOver?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
276
+ onPointerOverCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
277
+ onPointerOut?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
278
+ onPointerOutCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
279
+ onGotPointerCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
280
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
281
+ onLostPointerCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
282
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
283
+ onScroll?: import("react").UIEventHandler<HTMLInputElement> | undefined;
284
+ onScrollCapture?: import("react").UIEventHandler<HTMLInputElement> | undefined;
285
+ onWheel?: import("react").WheelEventHandler<HTMLInputElement> | undefined;
286
+ onWheelCapture?: import("react").WheelEventHandler<HTMLInputElement> | undefined;
287
+ onAnimationStart?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
288
+ onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
289
+ onAnimationEnd?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
290
+ onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
291
+ onAnimationIteration?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
292
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
293
+ onTransitionEnd?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
294
+ onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
295
+ alt?: string | undefined | undefined;
296
+ height?: number | string | undefined | undefined;
297
+ src?: string | undefined | undefined;
298
+ width?: number | string | undefined | undefined;
299
+ size?: number | undefined | undefined;
300
+ multiple?: boolean | undefined | undefined;
301
+ form?: string | undefined | undefined;
302
+ formAction?: string | undefined;
303
+ formEncType?: string | undefined | undefined;
304
+ formMethod?: string | undefined | undefined;
305
+ formNoValidate?: boolean | undefined | undefined;
306
+ formTarget?: string | undefined | undefined;
307
+ type?: import("react").HTMLInputTypeAttribute | undefined;
308
+ value?: string | number | readonly string[] | undefined;
309
+ pattern?: string | undefined | undefined;
310
+ autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
311
+ maxLength?: number | undefined | undefined;
312
+ minLength?: number | undefined | undefined;
313
+ placeholder?: string | undefined | undefined;
314
+ required?: boolean | undefined | undefined;
315
+ accept?: string | undefined | undefined;
316
+ capture?: boolean | "user" | "environment" | undefined | undefined;
317
+ checked?: boolean | undefined | undefined;
318
+ list?: string | undefined | undefined;
319
+ textLabel?: string | undefined;
320
+ iconLabel?: import("react").ReactNode;
321
+ onClickIconLabel?: (() => void) | undefined;
322
+ ref?: import("react").LegacyRef<HTMLInputElement> | undefined;
323
+ }>) => import("react/jsx-runtime").JSX.Element)[];
13
324
  argTypes: {
14
325
  min: {
15
326
  control: {
@@ -1,8 +1,6 @@
1
1
  export declare const DivContainerSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
2
2
  export declare const DivHintWrapperSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
3
3
  export declare const SpanHintSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
4
- export declare const DivWrapperSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
5
- export declare const DivInputWrapperSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
6
4
  export declare const HiddenTimePickerSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<Omit<Omit<import("antd").TimePickerProps, "ref"> & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
7
5
  ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
8
6
  }, never>> & string & Omit<import("react").ForwardRefExoticComponent<Omit<import("antd").TimePickerProps, "ref"> & import("react").RefAttributes<import("rc-picker").PickerRef>> & {
@@ -4,7 +4,7 @@ export interface MenuItem {
4
4
  value: string;
5
5
  }
6
6
  export interface MenuGroup {
7
- groupLabel: string;
7
+ groupLabel?: string;
8
8
  items: MenuItem[];
9
9
  }
10
10
  export type MenuSize = "md" | "lg";
@@ -0,0 +1,8 @@
1
+ import type { Meta, StoryObj } from "@storybook/react";
2
+ import { PaginationProps } from "./";
3
+ declare const _default: Meta<PaginationProps>;
4
+ export default _default;
5
+ export declare const Default: StoryObj<PaginationProps>;
6
+ export declare const Minimized: StoryObj<PaginationProps>;
7
+ export declare const CustomTotal: StoryObj<PaginationProps>;
8
+ export declare const WithRecordCounted: StoryObj<PaginationProps>;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { PaginationProps as AntdPaginationProps } from "antd";
3
+ export interface PaginationProps extends AntdPaginationProps {
4
+ minimize?: boolean;
5
+ recordCounted?: boolean;
6
+ onIconPageRecordClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
7
+ }
8
+ declare const FISPagination: React.FC<PaginationProps>;
9
+ export default FISPagination;
@@ -0,0 +1,25 @@
1
+ export declare const PaginationAntdSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("antd").PaginationProps, {
2
+ $minimize?: boolean;
3
+ }>> & string & Omit<import("react").FC<import("antd").PaginationProps>, keyof import("react").Component<any, {}, any>>;
4
+ export declare const DivPaginationContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
5
+ export declare const DivPaginationContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
6
+ export declare const SpanTotalSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
7
+ export declare const SelectPageSizeSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<(Omit<Partial<import("../Input/InputLabel").InputLabelProps> & Omit<import("../MenuSelect/types").MenuProps, "size" | "onClickMenu" | "groups" | "multi" | "selectedValues" | "onChangeSelected"> & Omit<import("../SelectItem").SelectFieldProps, "onChange" | "value"> & {
8
+ options: import("../Select/types").SelectOption[];
9
+ message?: string;
10
+ placeholderSearch?: string;
11
+ positive?: boolean;
12
+ multiDisplayText?: (count: number) => string;
13
+ renderOption?: (option: import("../Select/types").SelectOption) => React.ReactNode;
14
+ } & import("../Select/types").SingleSelect<string> & import("react").RefAttributes<HTMLInputElement>, "ref"> & {
15
+ ref?: ((instance: HTMLInputElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLInputElement> | null | undefined;
16
+ }) | (Omit<Partial<import("../Input/InputLabel").InputLabelProps> & Omit<import("../MenuSelect/types").MenuProps, "size" | "onClickMenu" | "groups" | "multi" | "selectedValues" | "onChangeSelected"> & Omit<import("../SelectItem").SelectFieldProps, "onChange" | "value"> & {
17
+ options: import("../Select/types").SelectOption[];
18
+ message?: string;
19
+ placeholderSearch?: string;
20
+ positive?: boolean;
21
+ multiDisplayText?: (count: number) => string;
22
+ renderOption?: (option: import("../Select/types").SelectOption) => React.ReactNode;
23
+ } & import("../Select/types").MultiSelect<string> & import("react").RefAttributes<HTMLInputElement>, "ref"> & {
24
+ ref?: ((instance: HTMLInputElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLInputElement> | null | undefined;
25
+ }), import("styled-components/dist/types").BaseObject>> & string & Omit<import("react").ForwardRefExoticComponent<import("../Select/types").SelectProps<string> & import("react").RefAttributes<HTMLInputElement>>, keyof import("react").Component<any, {}, any>>;
@@ -1,8 +1,8 @@
1
- import { InputFieldProps } from "../Input/InputField";
2
1
  import { InputLabelProps } from "../Input/InputLabel";
3
2
  import { MenuProps } from "../MenuSelect/types";
3
+ import { SelectFieldProps } from "../SelectItem";
4
4
  export interface SelectOption {
5
- groupLabel: string;
5
+ groupLabel?: string;
6
6
  items: {
7
7
  label: string;
8
8
  description?: string;
@@ -21,7 +21,7 @@ export type MultiSelect<T> = {
21
21
  onChange: (value: T[]) => void;
22
22
  displayValue?: (value: SelectOption[]) => string;
23
23
  };
24
- export type SelectProps<T> = Omit<InputFieldProps, "value" | "onChange"> & Partial<InputLabelProps> & Omit<MenuProps, "groups" | "multi" | "selectedValues" | "onChangeSelected" | "onClickMenu"> & {
24
+ export type SelectProps<T> = Partial<InputLabelProps> & Omit<MenuProps, "groups" | "multi" | "selectedValues" | "onChangeSelected" | "onClickMenu" | "size"> & Omit<SelectFieldProps, "value" | "onChange"> & {
25
25
  options: SelectOption[];
26
26
  message?: string;
27
27
  placeholderSearch?: string;
@@ -0,0 +1,2 @@
1
+ import { MenuSize } from "../MenuSelect/types";
2
+ export declare function isMenuSize(value: any): value is MenuSize;
@@ -1,6 +1,6 @@
1
1
  import { ComponentPropsWithoutRef, JSX } from "react";
2
2
  export type SelectSize = "xs" | "sm" | "md" | "lg";
3
- export interface SelectFieldProps extends Omit<ComponentPropsWithoutRef<"input">, "onClick"> {
3
+ export interface SelectFieldProps extends Omit<ComponentPropsWithoutRef<"input">, "onClick" | "size"> {
4
4
  /**Control the size of the component*/
5
5
  size?: SelectSize;
6
6
  /**Prefix for filter value*/
@@ -11,10 +11,6 @@ export interface SelectFieldProps extends Omit<ComponentPropsWithoutRef<"input">
11
11
  actived?: boolean;
12
12
  /**active-dropdown for current field*/
13
13
  activeDropdown?: boolean;
14
- /** onClickSuffix for current field Button */
15
- onClickSuffix?: () => void;
16
- /** onClickPrefix for current field Button */
17
- onClickPrefix?: () => void;
18
14
  }
19
15
  declare const FISSelectItem: import("react").ForwardRefExoticComponent<SelectFieldProps & import("react").RefAttributes<HTMLInputElement>>;
20
16
  export default FISSelectItem;
@@ -1,7 +1,8 @@
1
1
  import React from "react";
2
- import { ToastProps } from ".";
2
+ import { ToastProps, ToastPositionType } from ".";
3
3
  interface ToastOptions extends ToastProps {
4
4
  duration?: number;
5
+ position?: ToastPositionType;
5
6
  }
6
7
  export interface ToastContextType {
7
8
  showToast: (options: ToastOptions) => void;
@@ -2,6 +2,7 @@ import React from "react";
2
2
  export type ThemeType = "neutral" | "info" | "positive" | "caution" | "negative";
3
3
  export type ToastType = "link" | "button" | "no-action";
4
4
  export type PositionType = "inline" | "bottom";
5
+ export type ToastPositionType = "top-center" | "bottom-center";
5
6
  export type ToastProps = {
6
7
  className?: string;
7
8
  theme?: ThemeType;
@@ -9,5 +9,7 @@ export declare const DivIconSC: import("styled-components/dist/types").IStyledCo
9
9
  export declare const PTitleSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, ToastProps>> & string;
10
10
  export declare const LinkSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, never>> & string;
11
11
  export declare const DivTitleWrap: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, ToastProps>> & string;
12
- export declare const ToastWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
12
+ export declare const ToastWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
13
+ $position?: "top-center" | "bottom-center";
14
+ }>> & string;
13
15
  export {};
@@ -1,2 +1,3 @@
1
1
  import { ToastContextType } from "./ToastContext";
2
- export declare const useToast: () => ToastContextType;
2
+ declare const useToast: () => ToastContextType;
3
+ export default useToast;
@@ -41,3 +41,8 @@ export { default as FISProgressLinear } from "./components/ProgressLinear";
41
41
  export { default as FISSplitButton } from "./components/SplitButton";
42
42
  export { default as FISSelect } from "./components/Select";
43
43
  export { default as FISSelectItem } from "./components/SelectItem";
44
+ export { default as useNotification } from "./components/Notification/useNotification";
45
+ export { default as useToast } from "./components/Toast/useToast";
46
+ export { default as FISHeaderCell } from "./components/Table/HeaderCell";
47
+ export { default as FISColumnCell } from "./components/Table/ColumnCell";
48
+ export { default as Pagination } from "./components/Pagination";