@inceptionbg/iui 2.0.17 → 2.0.20

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 (35) hide show
  1. package/dist/index.d.ts +16 -7
  2. package/dist/index.js +1 -1
  3. package/dist/index.js.map +1 -1
  4. package/dist/iui.css +1 -1
  5. package/package.json +2 -1
  6. package/src/components/Accordions/Accordions.tsx +35 -27
  7. package/src/components/Dialog/Dialog.tsx +27 -25
  8. package/src/components/Header/Components/EnvBadge.tsx +17 -0
  9. package/src/components/Header/Header.tsx +7 -3
  10. package/src/components/Inputs/Selects/components/SelectWrapper.tsx +4 -33
  11. package/src/components/Pullover/Pullover.tsx +32 -26
  12. package/src/components/Table/components/items/TableItemActions.tsx +5 -7
  13. package/src/components/Table/contexts/TableContext.tsx +8 -5
  14. package/src/components/Table/hooks/localHooks/useLocalTableData.tsx +1 -1
  15. package/src/components/Table/hooks/localHooks/useLocalTableKeyboard.ts +3 -1
  16. package/src/components/Table/hooks/useTableEdit.tsx +9 -2
  17. package/src/components/Table/hooks/useTableSearch.ts +2 -1
  18. package/src/components/Tabs/Tabs.tsx +3 -3
  19. package/src/components/Tooltip/Tooltip.tsx +14 -81
  20. package/src/index.ts +2 -0
  21. package/src/styles/common/_typography.scss +2 -2
  22. package/src/styles/components/_accordions.scss +1 -0
  23. package/src/styles/components/_dialog.scss +25 -19
  24. package/src/styles/components/_header.scss +5 -0
  25. package/src/styles/components/_table.scss +1 -1
  26. package/src/styles/components/_tabs.scss +1 -1
  27. package/src/types/ISelect.ts +1 -0
  28. package/src/types/ITable.ts +1 -1
  29. package/src/utils/InputPatternValidation.ts +2 -2
  30. package/src/utils/objectUtils.ts +15 -5
  31. package/src/assets/icons/duotone/faPen.ts +0 -18
  32. package/src/assets/icons/duotone/faTrashCan.ts +0 -18
  33. package/src/assets/icons/regular/faEllipsisVertical.ts +0 -15
  34. package/src/components/Inputs/Select2/Select.tsx +0 -258
  35. package/src/components/Inputs/Select2/select.scss +0 -42
@@ -1,258 +0,0 @@
1
- import './select.scss';
2
-
3
- import { useState, useRef, useEffect, ChangeEvent, FC, UIEvent } from 'react';
4
- import clsx from 'clsx';
5
- import { InputWrapper } from '../InputWrapper';
6
- import { createPortal } from 'react-dom';
7
- import { rootDir } from '../../../utils/rootDir';
8
- import { useMenuPosition } from '../../Menu/hooks/useMenuPosition';
9
- import { IMenuPlacement } from '../../../types/IMenu';
10
-
11
- export interface OptionType {
12
- label: string;
13
- value: any;
14
- }
15
-
16
- // interface LoadOptionsParams {
17
- // inputValue: string;
18
- // loadedOptions: OptionType[];
19
- // page: number;
20
- // }
21
-
22
- interface LoadOptionsResponse {
23
- options: OptionType[];
24
- hasMore: boolean;
25
- }
26
-
27
- interface CustomSelectProps {
28
- label: string;
29
- value?: any;
30
- setValue: (option: OptionType | null) => void;
31
- required?: boolean;
32
- disabled?: boolean;
33
- isMulti?: boolean;
34
- isAsync?: boolean;
35
- isCreatable?: boolean;
36
- options?: OptionType[];
37
- placeholder?: string;
38
- loadOptions?: (
39
- inputValue: string,
40
- loadedOptions: OptionType[],
41
- params: { page: number }
42
- ) => Promise<LoadOptionsResponse>;
43
- onCreateOption?: (inputValue: string) => Promise<OptionType>;
44
- isClearable: boolean;
45
- onClearInput?: () => void;
46
- helperText?: string;
47
- errorText?: string;
48
- error?: boolean;
49
- menuPlacement?: IMenuPlacement;
50
- className?: string;
51
- // minWidth?: number;
52
- }
53
-
54
- export const Select: FC<CustomSelectProps> = ({
55
- label,
56
- value,
57
- setValue,
58
- onCreateOption,
59
- required,
60
- disabled,
61
- options = [],
62
- loadOptions,
63
- placeholder = 'Select...',
64
- isMulti,
65
- isAsync = false,
66
- isCreatable = false,
67
- isClearable = true,
68
- onClearInput,
69
- helperText,
70
- errorText,
71
- error,
72
- menuPlacement = 'bottom-left',
73
- className,
74
- // minWidth,
75
- }) => {
76
- const [inputValue, setInputValue] = useState<string | null>(null);
77
- const [dropdownVisible, setDropdownVisible] = useState(false);
78
- const [filteredOptions, setFilteredOptions] = useState<OptionType[]>([]);
79
- const [page, setPage] = useState(0);
80
- const [index, setIndex] = useState<number | null>(null);
81
- const [hasMore, setHasMore] = useState(true);
82
-
83
- const containerRef = useRef<HTMLDivElement>(null);
84
- const dropdownRef = useRef<HTMLDivElement>(null);
85
-
86
- const menuStyle = useMenuPosition({
87
- isOpen: dropdownVisible,
88
- placement: menuPlacement,
89
- containerRef,
90
- menuRef: dropdownRef,
91
- withMinWidth: true,
92
- });
93
-
94
- useEffect(() => {
95
- if (!isAsync) {
96
- const filtered = inputValue
97
- ? options.filter(opt =>
98
- opt.label.toLowerCase().includes(inputValue.toLowerCase())
99
- )
100
- : options;
101
- setFilteredOptions(filtered);
102
- }
103
- }, [inputValue, options, isAsync]);
104
-
105
- useEffect(() => {
106
- if (isAsync && loadOptions) {
107
- loadOptions(inputValue ?? '', filteredOptions, { page }).then(
108
- ({ options: newOptions, hasMore }) => {
109
- setFilteredOptions(prev => [...prev, ...newOptions]);
110
- setHasMore(hasMore);
111
- }
112
- );
113
- }
114
- // eslint-disable-next-line react-hooks/exhaustive-deps
115
- }, [page]);
116
-
117
- const handleOptionClick = (option: OptionType) => {
118
- setValue(option);
119
- setInputValue(null);
120
- setTimeout(() => {
121
- setIndex(null);
122
- // setDropdownVisible(false);
123
- });
124
- };
125
-
126
- const handleInput = (e: ChangeEvent<HTMLInputElement>) => {
127
- const inputValue = e.target.value;
128
- setInputValue(
129
- e.target.defaultValue === value?.label
130
- ? // @ts-ignore
131
- (e.nativeEvent?.data ?? '')
132
- : inputValue
133
- );
134
- // setFilteredOptions([]);
135
- setPage(0);
136
- if (isAsync && loadOptions) {
137
- loadOptions(inputValue, [], { page: 0 }).then(({ options, hasMore }) => {
138
- setFilteredOptions(options);
139
- setHasMore(hasMore);
140
- });
141
- }
142
- };
143
-
144
- const handleScroll = (e: UIEvent<HTMLDivElement>) => {
145
- const { scrollTop, scrollHeight, clientHeight } = e.currentTarget;
146
- if (scrollHeight - scrollTop === clientHeight && hasMore) {
147
- setPage(prev => prev + 1);
148
- }
149
- };
150
-
151
- const handleCreate = async () => {
152
- if (onCreateOption && inputValue?.trim()) {
153
- const newOption = await onCreateOption(inputValue);
154
- setFilteredOptions(prev => [newOption, ...prev]);
155
- setValue(newOption);
156
- setInputValue(null);
157
- setDropdownVisible(false);
158
- }
159
- };
160
-
161
- return (
162
- <div
163
- className="customSelect"
164
- onFocus={() => setDropdownVisible(true)}
165
- onBlur={() => {
166
- setDropdownVisible(false);
167
- setInputValue(null);
168
- }}
169
- >
170
- <InputWrapper
171
- label={label}
172
- required={required}
173
- disabled={disabled}
174
- // endText={endText}
175
- // endButton={endButton}
176
- onClearInput={
177
- isClearable && value
178
- ? () => {
179
- setValue(null);
180
- setInputValue('');
181
- // setSelectedOption(null);
182
- }
183
- : undefined
184
- }
185
- helperText={helperText}
186
- errorText={errorText}
187
- error={error}
188
- inputFieldRef={containerRef}
189
- className={className}
190
- >
191
- <input
192
- value={inputValue ?? value?.label ?? ''}
193
- onChange={handleInput}
194
- required={required}
195
- disabled={disabled}
196
- // onFocus={e => e.currentTarget.select()}
197
- // autoFocus={autoFocus}
198
- placeholder={value?.label || placeholder}
199
- onKeyDown={e => {
200
- if (e.key === 'ArrowUp') {
201
- e.preventDefault();
202
- if (index === null || index === 0) {
203
- setIndex(filteredOptions.length - 1);
204
- } else {
205
- setIndex(prev => prev! - 1);
206
- }
207
- } else if (e.key === 'ArrowDown') {
208
- e.preventDefault();
209
- if (index === null || index === filteredOptions.length - 1) {
210
- setIndex(0);
211
- } else {
212
- setIndex(prev => prev! + 1);
213
- dropdownRef.current?.scrollTo({ top: 20 * ((index ?? 0) + 1) });
214
- }
215
- } else if (e.key === 'Enter' && index !== null) {
216
- e.preventDefault();
217
- e.currentTarget.blur();
218
- handleOptionClick(filteredOptions[index]);
219
- } else if (e.key === 'Escape') {
220
- e.preventDefault();
221
- e.currentTarget.blur();
222
- }
223
- }}
224
- />
225
- </InputWrapper>
226
-
227
- {dropdownVisible
228
- ? createPortal(
229
- <div
230
- ref={dropdownRef}
231
- className="select-dropdown"
232
- onScroll={handleScroll}
233
- style={menuStyle}
234
- >
235
- {filteredOptions.map((option, i) => (
236
- <div
237
- key={i}
238
- className={clsx('option', { hover: index === i })}
239
- onMouseDown={() => handleOptionClick(option)}
240
- >
241
- {option.label}
242
- </div>
243
- ))}
244
- {!filteredOptions.length && <div className="option">No options</div>}
245
- {isCreatable &&
246
- inputValue &&
247
- !filteredOptions.some(opt => opt.label === inputValue) && (
248
- <div className="option createOption" onClick={handleCreate}>
249
- {`Create ${inputValue}`}
250
- </div>
251
- )}
252
- </div>,
253
- rootDir
254
- )
255
- : null}
256
- </div>
257
- );
258
- };
@@ -1,42 +0,0 @@
1
- .customSelect {
2
- position: relative;
3
- width: 300px;
4
- font-family: sans-serif;
5
-
6
- .inputWrapper {
7
- input {
8
- width: 100%;
9
- padding: 8px 12px;
10
- border: 1px solid #ccc;
11
- border-radius: 4px;
12
- font-size: 14px;
13
- }
14
- }
15
- }
16
-
17
- .select-dropdown {
18
- position: absolute;
19
- z-index: 1000;
20
- // width: 100%;
21
- min-width: 200px;
22
- max-height: 200px;
23
- overflow-y: auto;
24
- background: #fff;
25
- border: var(--border);
26
- border-radius: 8px;
27
- // border-radius: 0 0 8px 8px;
28
- margin-top: 2px;
29
- .option {
30
- padding: 8px 12px;
31
- cursor: pointer;
32
-
33
- &.hover,
34
- &:hover {
35
- background-color: #f5f5f5;
36
- }
37
- }
38
- .createOption {
39
- font-weight: bold;
40
- color: #007bff;
41
- }
42
- }