@arbocollab/arbo-plugin-item-table 0.0.100 → 0.0.102
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.
- package/CHANGELOG.md +563 -0
- package/README.md +175 -50
- package/lib/es/index.es.js +1398 -1413
- package/lib/umd/index.umd.js +43 -43
- package/package.json +4 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,563 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
## [0.0.102] - 2026-01-29
|
|
6
|
+
|
|
7
|
+
### **🚀 New Features**
|
|
8
|
+
|
|
9
|
+
**Filtering & Search**
|
|
10
|
+
|
|
11
|
+
- **Advanced Filter Components:** Added FilterAssignee, FilterArchiveStatus, FilterDateRange, and FilterStatus with improved deep watchers, data exposure methods (getData, clear), and multi-select support.
|
|
12
|
+
- **Complex Logic Support:** Introduced new condition-combine types and behaviors for more complex filtering scenarios.
|
|
13
|
+
- **Dropdown Enhancements:** Filter components now expose methods and emit updates for tighter integration with parent components. SearchList now supports extra items with query context.
|
|
14
|
+
|
|
15
|
+
**UI Components**
|
|
16
|
+
|
|
17
|
+
- **RatingRenderer:** Added a new component to display ratings directly within the item table.
|
|
18
|
+
- **Multi-Date Support:** Updated Calendar.vue, DateInput.vue, MainCalendar.vue, and the useDatePicker composable to handle multiple start/due dates.
|
|
19
|
+
- **Column Management:** Enhanced the column manager to persist configuration and emit change events on updates.
|
|
20
|
+
|
|
21
|
+
**Core & API**
|
|
22
|
+
|
|
23
|
+
- **Caching System:** Implemented useIconMemoryCache and enhanced useImageCache / useRemoteFiles to significantly reduce duplicate network requests for avatars and icons.
|
|
24
|
+
- **ItemService API:** Added getMe, getWorkspaces, and getEntityUserRoles methods, along with improved API configuration.
|
|
25
|
+
|
|
26
|
+
### **⚡ Improvements & Performance**
|
|
27
|
+
|
|
28
|
+
**Performance Optimization**
|
|
29
|
+
|
|
30
|
+
- **Grid Rendering:** Debounced grid template calculations in DisplayWrapper to improve scroll performance.
|
|
31
|
+
- **Data Fetching:** Optimized useItems fetching logic and improved idempotency in Vue3CellWrapper.
|
|
32
|
+
- **Asset Management:** Reduced console noise and cleaned up unused imports across the codebase.
|
|
33
|
+
|
|
34
|
+
**UX & Polish**
|
|
35
|
+
|
|
36
|
+
- **Loading States:** Refined skeleton screens and loading styles; migrated the loading directive to a class-based implementation for smoother transitions.
|
|
37
|
+
- **Filter UI:** Improved FilterBox styling and active states. The isSearchActive property now accounts for selectedAssignees.
|
|
38
|
+
- **Interaction Design:** Enhanced focus handling, cursor styles, and button hover states across filter components.
|
|
39
|
+
- **Visual Consistency:** Adjusted layouts in MainCalendar and CalendarNavigationControl for better responsiveness.
|
|
40
|
+
|
|
41
|
+
### **🐛 Bug Fixes**
|
|
42
|
+
|
|
43
|
+
- **MiniPeopleCard:** Fixed Ctrl+Click behavior.
|
|
44
|
+
- **Renderers:** Resolved loading state edge-cases in useMetricRenderer and related components.
|
|
45
|
+
- **AssigneeGroup:** Added explicit empty array checks to prevent rendering errors.
|
|
46
|
+
- **Metric Generation:** Improved the generation logic for people/insight links.
|
|
47
|
+
|
|
48
|
+
### **🔧 Refactoring & Chores**
|
|
49
|
+
|
|
50
|
+
- **Code Cleanup:** Removed obsolete tests (Button, DisplayWrapper, MetricRender) and deleted unused files.
|
|
51
|
+
- **State Management:** Refactored useMetricRenderer for better icon handling and state clarity.
|
|
52
|
+
- **Reusability:** Centralized the "clear filter" functionality for better code reuse.
|
|
53
|
+
- **Versioning:** Routine package version bumps and dependency updates.
|
|
54
|
+
- **Configuration:** Added getAPIDomain helper and updated base-config endpoints.
|
|
55
|
+
|
|
56
|
+
## [0.0.101] - 2026-01-28
|
|
57
|
+
|
|
58
|
+
### 🚀 Features
|
|
59
|
+
|
|
60
|
+
- enhance README.md with additional badges and features
|
|
61
|
+
- add CHANGELOG.md to publish folder
|
|
62
|
+
|
|
63
|
+
## [0.0.100] - 2026-01-28
|
|
64
|
+
|
|
65
|
+
### 🚀 Features
|
|
66
|
+
|
|
67
|
+
- Updated TypeScript definitions in env.d.ts for consistent formatting.
|
|
68
|
+
- Adjusted ESLint configuration to maintain consistent semicolon usage.
|
|
69
|
+
- Reformatted index.html for improved readability and structure.
|
|
70
|
+
- Added a new format script to package.json for code formatting with Prettier.
|
|
71
|
+
- Enhanced service worker (sw.js) fetch logic for better readability.
|
|
72
|
+
- Reformatted tsconfig.app.json for consistent indentation.
|
|
73
|
+
- Updated changelog.json to include new version 0.0.99 with relevant changes.
|
|
74
|
+
- Integrated tooltip directive in item-table.vue for better user experience.
|
|
75
|
+
- Improved Icon.vue component by optimizing caching logic and style handling.
|
|
76
|
+
- Refactored Visual.vue to enhance caching and image retrieval logic.
|
|
77
|
+
- Enhanced EmptyData.vue to provide clearer messaging for search and filter states.
|
|
78
|
+
- Refactored useRemoteFiles.ts to streamline caching and fetching logic for remote files.
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## [0.0.98] - Beta
|
|
83
|
+
|
|
84
|
+
### 🚀 Features
|
|
85
|
+
|
|
86
|
+
- Update version to 0.0.96
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## [0.0.96] - Beta
|
|
91
|
+
|
|
92
|
+
### 🚀 Features
|
|
93
|
+
|
|
94
|
+
- Add MetricEditorWrapper component
|
|
95
|
+
- Enhance column configurations with suppressMovable property
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## [0.0.95] - Beta
|
|
100
|
+
|
|
101
|
+
### 🚀 Features
|
|
102
|
+
|
|
103
|
+
- Enhance MetricRenderer with number formatting
|
|
104
|
+
- Adjust MoreOptionItem styling
|
|
105
|
+
- Remove unused description in useSceneAction
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## [0.0.91] - Beta
|
|
110
|
+
|
|
111
|
+
### 🚀 Features
|
|
112
|
+
|
|
113
|
+
- Adjust FilterAssignee component styles
|
|
114
|
+
- Enhance wrapper styling
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## [0.0.89] - Beta
|
|
119
|
+
|
|
120
|
+
### 🚀 Features
|
|
121
|
+
|
|
122
|
+
- Enhance AgTable column definition handling
|
|
123
|
+
- Improve column manager logging
|
|
124
|
+
- Refine UI components with style adjustments
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## [0.0.88] - Beta
|
|
129
|
+
|
|
130
|
+
### 🚀 Features
|
|
131
|
+
|
|
132
|
+
- Enhance CellRendererFactory with dynamic cellClass
|
|
133
|
+
- Improve AgTable column sync functionality
|
|
134
|
+
- Refine scene action permissions
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## [0.0.87] - Beta
|
|
139
|
+
|
|
140
|
+
### 🚀 Features
|
|
141
|
+
|
|
142
|
+
- Enhance CellFactory with editable property
|
|
143
|
+
- Adjust MetricRenderer logic
|
|
144
|
+
- Improve FilterRow styling
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
## [0.0.86] - Beta
|
|
149
|
+
|
|
150
|
+
### 🚀 Features
|
|
151
|
+
|
|
152
|
+
- Enhance calendar components with navigation functionality
|
|
153
|
+
- Dropdown improvements
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
157
|
+
## [0.0.85] - Beta
|
|
158
|
+
|
|
159
|
+
### 🚀 Features
|
|
160
|
+
|
|
161
|
+
- Enhance Metric components with new MetricEditor
|
|
162
|
+
- Improved dropdown handling
|
|
163
|
+
- UI styling adjustments
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## [0.0.83] - Beta
|
|
168
|
+
|
|
169
|
+
### 🚀 Features
|
|
170
|
+
|
|
171
|
+
- Enhance dropdown components with bordered styling
|
|
172
|
+
- Adjust layout properties for improved UI consistency
|
|
173
|
+
|
|
174
|
+
---
|
|
175
|
+
|
|
176
|
+
## [0.0.82] - Beta
|
|
177
|
+
|
|
178
|
+
### 🚀 Features
|
|
179
|
+
|
|
180
|
+
- Refactor checkbox column properties
|
|
181
|
+
- Enhance Metric components with improved dropdown handling and styles
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
## [0.0.80] - Beta
|
|
186
|
+
|
|
187
|
+
### 🚀 Features
|
|
188
|
+
|
|
189
|
+
- Enhance UI components with improved styles and consistency
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## [0.0.79] - Beta
|
|
194
|
+
|
|
195
|
+
### 🚀 Features
|
|
196
|
+
|
|
197
|
+
- Enhance saveColumnConfig logic for better source handling
|
|
198
|
+
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
## [0.0.77] - Beta
|
|
202
|
+
|
|
203
|
+
### 🚀 Features
|
|
204
|
+
|
|
205
|
+
- Integrate metric store
|
|
206
|
+
- Enhance various components with improved functionality
|
|
207
|
+
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
## [0.0.73] - Beta
|
|
211
|
+
|
|
212
|
+
### 🚀 Features
|
|
213
|
+
|
|
214
|
+
- Adjust component styles
|
|
215
|
+
- Improve layout for better UI consistency
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## [0.0.72] - Beta
|
|
220
|
+
|
|
221
|
+
### 🚀 Features
|
|
222
|
+
|
|
223
|
+
- Enhance filter functionality with new condition combine type
|
|
224
|
+
- Improve UI components
|
|
225
|
+
|
|
226
|
+
---
|
|
227
|
+
|
|
228
|
+
## [0.0.71] - Beta
|
|
229
|
+
|
|
230
|
+
### 🚀 Features
|
|
231
|
+
|
|
232
|
+
- Enhance filter components with improved focus handling and cursor styles
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
## [0.0.69] - Beta
|
|
237
|
+
|
|
238
|
+
### 🚀 Features
|
|
239
|
+
|
|
240
|
+
- Enhance various components with improved functionality and performance
|
|
241
|
+
|
|
242
|
+
---
|
|
243
|
+
|
|
244
|
+
## [0.0.68] - Beta
|
|
245
|
+
|
|
246
|
+
### 🚀 Features
|
|
247
|
+
|
|
248
|
+
- Refactor filter parameters for improved clarity and functionality
|
|
249
|
+
|
|
250
|
+
---
|
|
251
|
+
|
|
252
|
+
## [0.0.66] - Beta
|
|
253
|
+
|
|
254
|
+
### 🚀 Features
|
|
255
|
+
|
|
256
|
+
- Enhance filter components with new data handling methods
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
## [0.0.62] - Beta
|
|
261
|
+
|
|
262
|
+
### 🚀 Features
|
|
263
|
+
|
|
264
|
+
- Enhance MainCalendar styles for improved UI responsiveness
|
|
265
|
+
|
|
266
|
+
---
|
|
267
|
+
|
|
268
|
+
## [0.0.57] - Beta
|
|
269
|
+
|
|
270
|
+
### 🚀 Features
|
|
271
|
+
|
|
272
|
+
- Enhance refreshTable functionality with async operations
|
|
273
|
+
- Add loading state management
|
|
274
|
+
- Improve skeleton loading styles
|
|
275
|
+
|
|
276
|
+
---
|
|
277
|
+
|
|
278
|
+
## [0.0.51] - Beta
|
|
279
|
+
|
|
280
|
+
### 🚀 Features
|
|
281
|
+
|
|
282
|
+
- Enhance refreshTable functionality
|
|
283
|
+
- Clean up unused imports
|
|
284
|
+
|
|
285
|
+
---
|
|
286
|
+
|
|
287
|
+
## [0.0.47] - Beta
|
|
288
|
+
|
|
289
|
+
### 🚀 Features
|
|
290
|
+
|
|
291
|
+
- Enhance people insight link generation
|
|
292
|
+
- Fix loading state in useMetricRenderer
|
|
293
|
+
|
|
294
|
+
---
|
|
295
|
+
|
|
296
|
+
## [0.0.46] - Beta
|
|
297
|
+
|
|
298
|
+
### 🚀 Features
|
|
299
|
+
|
|
300
|
+
- Add getWorkspaces method to ItemService
|
|
301
|
+
- Enhance API configuration
|
|
302
|
+
- Improve permission handling in CellFactory
|
|
303
|
+
|
|
304
|
+
---
|
|
305
|
+
|
|
306
|
+
## [0.0.43] - Beta
|
|
307
|
+
|
|
308
|
+
### 🚀 Features
|
|
309
|
+
|
|
310
|
+
- Add getMe method to ItemService
|
|
311
|
+
- Implement user store for managing user state
|
|
312
|
+
- Enhance FilterBox to utilize user ID
|
|
313
|
+
|
|
314
|
+
---
|
|
315
|
+
|
|
316
|
+
## [0.0.37] - Beta
|
|
317
|
+
|
|
318
|
+
### 🚀 Features
|
|
319
|
+
|
|
320
|
+
- Update isSearchActive computed property to include selectedAssignees
|
|
321
|
+
- Enhance FilterBox styling for active state
|
|
322
|
+
|
|
323
|
+
---
|
|
324
|
+
|
|
325
|
+
## [0.0.36] - Beta
|
|
326
|
+
|
|
327
|
+
### 🚀 Features
|
|
328
|
+
|
|
329
|
+
- Enhance useItems to ensure all itemIds are included
|
|
330
|
+
- Update item-table.vue to allow column virtualization
|
|
331
|
+
|
|
332
|
+
---
|
|
333
|
+
|
|
334
|
+
## [0.0.35] - Beta
|
|
335
|
+
|
|
336
|
+
### 🚀 Features
|
|
337
|
+
|
|
338
|
+
- Update downloadExcel function to use globalThis
|
|
339
|
+
- Improve event handling in ItemService
|
|
340
|
+
- Enhance useItems for missing itemIds
|
|
341
|
+
|
|
342
|
+
---
|
|
343
|
+
|
|
344
|
+
## [0.0.33] - Beta
|
|
345
|
+
|
|
346
|
+
### 🚀 Features
|
|
347
|
+
|
|
348
|
+
- Update DateRule component spacing in PopupCreateScenes and PopupOverwriteScenes
|
|
349
|
+
|
|
350
|
+
---
|
|
351
|
+
|
|
352
|
+
## [0.0.32] - Beta
|
|
353
|
+
|
|
354
|
+
### 🚀 Features
|
|
355
|
+
|
|
356
|
+
- Update PopupOverwriteScenes to emit import-success event
|
|
357
|
+
- Handle post-success actions in item-table
|
|
358
|
+
|
|
359
|
+
---
|
|
360
|
+
|
|
361
|
+
## [0.0.31] - Beta
|
|
362
|
+
|
|
363
|
+
### 🚀 Features
|
|
364
|
+
|
|
365
|
+
- Update PopupCreateScenes to emit import-success event
|
|
366
|
+
- Handle post-success actions
|
|
367
|
+
- Add console log for table refresh
|
|
368
|
+
|
|
369
|
+
---
|
|
370
|
+
|
|
371
|
+
## [0.0.30] - Beta
|
|
372
|
+
|
|
373
|
+
### 🚀 Features
|
|
374
|
+
|
|
375
|
+
- Update DateRule component with tooltip directive
|
|
376
|
+
- Adjust z-index values in PopupLayout, Snackbar, and usePopup
|
|
377
|
+
|
|
378
|
+
---
|
|
379
|
+
|
|
380
|
+
## [0.0.28] - Beta
|
|
381
|
+
|
|
382
|
+
### 🚀 Features
|
|
383
|
+
|
|
384
|
+
- Update DateRule, PopupCreateScenes, and PopupOverwriteScenes for improved user guidance
|
|
385
|
+
|
|
386
|
+
---
|
|
387
|
+
|
|
388
|
+
## [0.0.27] - Beta
|
|
389
|
+
|
|
390
|
+
### 🚀 Features
|
|
391
|
+
|
|
392
|
+
- Enhance loading states in buttons and file uploader
|
|
393
|
+
- Add loading prop to Button component
|
|
394
|
+
- Improve loading directive
|
|
395
|
+
|
|
396
|
+
---
|
|
397
|
+
|
|
398
|
+
## [0.0.25] - Beta
|
|
399
|
+
|
|
400
|
+
### 🚀 Features
|
|
401
|
+
|
|
402
|
+
- Update DisplayWrapper component to return '100%' for grid template calculation
|
|
403
|
+
|
|
404
|
+
---
|
|
405
|
+
|
|
406
|
+
## [0.0.24] - Beta
|
|
407
|
+
|
|
408
|
+
### 🚀 Features
|
|
409
|
+
|
|
410
|
+
- Implement bulk update store
|
|
411
|
+
- Integrate with item table and UI components for enhanced selection management
|
|
412
|
+
|
|
413
|
+
---
|
|
414
|
+
|
|
415
|
+
## [0.0.22] - Beta
|
|
416
|
+
|
|
417
|
+
### 🚀 Features
|
|
418
|
+
|
|
419
|
+
- Refactor BulkUpdate component by removing unused elements
|
|
420
|
+
|
|
421
|
+
---
|
|
422
|
+
|
|
423
|
+
## [0.0.21] - Beta
|
|
424
|
+
|
|
425
|
+
### 🚀 Features
|
|
426
|
+
|
|
427
|
+
- Enhance ItemService for dynamic filename handling
|
|
428
|
+
- Refactor PopupCreateScenes and PopupOverwriteScenes for improved modal name management
|
|
429
|
+
- Adjust ImportVisual component for better UI responsiveness
|
|
430
|
+
|
|
431
|
+
---
|
|
432
|
+
|
|
433
|
+
## [0.0.20] - Beta
|
|
434
|
+
|
|
435
|
+
### 🚀 Features
|
|
436
|
+
|
|
437
|
+
- Remove console logs
|
|
438
|
+
- Enhance error handling in ItemService, PopupCreateScenes, PopupOverwriteScenes, and StatusSelect
|
|
439
|
+
|
|
440
|
+
---
|
|
441
|
+
|
|
442
|
+
## [0.0.19] - Beta
|
|
443
|
+
|
|
444
|
+
### 🚀 Features
|
|
445
|
+
|
|
446
|
+
- Refactor DateRule component for tooltip content
|
|
447
|
+
- Enhance BulkUpdate and FileUploader components
|
|
448
|
+
|
|
449
|
+
---
|
|
450
|
+
|
|
451
|
+
## [0.0.18] - Beta
|
|
452
|
+
|
|
453
|
+
### 🚀 Features
|
|
454
|
+
|
|
455
|
+
- Refactor ItemService methods for workspace and entity handling
|
|
456
|
+
- Enhance PopupOverwriteScenes for better user feedback
|
|
457
|
+
|
|
458
|
+
---
|
|
459
|
+
|
|
460
|
+
## [0.0.17] - Beta
|
|
461
|
+
|
|
462
|
+
### 🚀 Features
|
|
463
|
+
|
|
464
|
+
- Comment out changeStatus method in ItemService
|
|
465
|
+
- Update notificationMessage to include success messages for bulkUpdate
|
|
466
|
+
|
|
467
|
+
---
|
|
468
|
+
|
|
469
|
+
## [0.0.15] - Beta
|
|
470
|
+
|
|
471
|
+
### 🚀 Features
|
|
472
|
+
|
|
473
|
+
- Remove default status display in PopupCreateScenes component
|
|
474
|
+
|
|
475
|
+
---
|
|
476
|
+
|
|
477
|
+
## [0.0.14] - Beta
|
|
478
|
+
|
|
479
|
+
### 🚀 Features
|
|
480
|
+
|
|
481
|
+
- Add bulkUpdateMetric method and related API configuration
|
|
482
|
+
- Enhance MetricUpdateButton and MetricBulkItem components
|
|
483
|
+
|
|
484
|
+
---
|
|
485
|
+
|
|
486
|
+
## [0.0.12] - Beta
|
|
487
|
+
|
|
488
|
+
### 🚀 Features
|
|
489
|
+
|
|
490
|
+
- Add redraw functionality in item-table component
|
|
491
|
+
|
|
492
|
+
---
|
|
493
|
+
|
|
494
|
+
## [0.0.8] - Beta
|
|
495
|
+
|
|
496
|
+
### 🚀 Features
|
|
497
|
+
|
|
498
|
+
- Comment out primary color in Button styles
|
|
499
|
+
|
|
500
|
+
---
|
|
501
|
+
|
|
502
|
+
## [0.0.5] - Beta
|
|
503
|
+
|
|
504
|
+
### 🚀 Features
|
|
505
|
+
|
|
506
|
+
- Update TableCustomization component to set disabled to false and readOnly to true
|
|
507
|
+
|
|
508
|
+
---
|
|
509
|
+
|
|
510
|
+
## [0.0.4] - Beta
|
|
511
|
+
|
|
512
|
+
### 🚀 Features
|
|
513
|
+
|
|
514
|
+
- Update disabled state styling in RatingComponent
|
|
515
|
+
- Update user status terminology from 'online' to 'active'
|
|
516
|
+
|
|
517
|
+
---
|
|
518
|
+
|
|
519
|
+
## [0.0.3] - Beta
|
|
520
|
+
|
|
521
|
+
### 🚀 Features
|
|
522
|
+
|
|
523
|
+
- Update TableCustomization and MetricRenderer components with improved props handling
|
|
524
|
+
|
|
525
|
+
---
|
|
526
|
+
|
|
527
|
+
## [0.0.1] - Initial Release
|
|
528
|
+
|
|
529
|
+
### 🚀 Core Features
|
|
530
|
+
|
|
531
|
+
- Implement core table functionality with AG Grid integration
|
|
532
|
+
- Implement cursor-based pagination for item fetching
|
|
533
|
+
- Implement ItemService and refactor API structure
|
|
534
|
+
- Implement SessionStorageHelper for session storage management
|
|
535
|
+
- Implement user service and error handling with API response types
|
|
536
|
+
- Add API services with Axios configuration, endpoints, and CRUD operations
|
|
537
|
+
|
|
538
|
+
### 📦 UI Components
|
|
539
|
+
|
|
540
|
+
- Add Avatar, Button, DisplayWrapper, Icon, InputText, StatusBadge, Visual components
|
|
541
|
+
- Add LoadingTable component with skeleton loading UI
|
|
542
|
+
- Add SearchBox component for search functionality
|
|
543
|
+
- Add HyperLinkInlineEditor component
|
|
544
|
+
- Add PopupOverwriteScenes component for scene import
|
|
545
|
+
- Add RatingRenderer component for displaying ratings
|
|
546
|
+
- Add Skeleton component and enhance loading indicators
|
|
547
|
+
- Implement CreateNewScene component and useNewItemForm composable
|
|
548
|
+
|
|
549
|
+
### 🔧 Configuration
|
|
550
|
+
|
|
551
|
+
- Add Cypress configuration and initial test files
|
|
552
|
+
- Add ESLint configuration and update type imports
|
|
553
|
+
- Add Vite configuration for Vue application
|
|
554
|
+
- Add TypeScript types and configuration files
|
|
555
|
+
- Integrate Pinia for state management in Storybook
|
|
556
|
+
|
|
557
|
+
### 🐛 Bug Fixes
|
|
558
|
+
|
|
559
|
+
- Update package.json and pnpm-lock.yaml for dashboard and ui dependencies
|
|
560
|
+
|
|
561
|
+
---
|
|
562
|
+
|
|
563
|
+
[0.0.100]: https://github.com/arbocollab/arbo-plugins/releases/tag/v0.0.100
|