forstok-ui-lib 6.5.4 → 6.5.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "6.5.4",
3
+ "version": "6.5.6",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -425,7 +425,12 @@ const getTabsColumnModFunc = ({ $mode, $content }:{ $mode?: string, $content?: s
425
425
  grid-auto-flow: column;
426
426
  }
427
427
  `
428
- }
428
+ } else if ($mode === 'store-order') {
429
+ style +=`
430
+ align-items: start;
431
+ gap: 8px;
432
+ `
433
+ }
429
434
  if ($content === 'right') {
430
435
  style +=`
431
436
  grid-gap: 10px;
@@ -292,4 +292,21 @@ export type ModeListTableColumn =
292
292
  | 'archived'
293
293
  | 'order'
294
294
  | 'order-nocheck'
295
- | 'table-customheader';
295
+ | 'table-customheader';
296
+
297
+ export type TInDetail = TInPart & {
298
+ firstDispatch?: Dispatch<any>
299
+ resetByOption: (opt?: string | string[], callback?: () => void, noScroll?: boolean) => void
300
+ activeStatusTab?: string
301
+ evClickTab?: TMouseEvent
302
+ abortRef: AbortController
303
+ isForceUpdate: boolean
304
+ isResetSubscription?: boolean
305
+ isReadyQuery: boolean
306
+ }
307
+
308
+ export type TInDetailProps = {
309
+ hasTab?: boolean
310
+ tabDef?: string
311
+ hasSubscription?: boolean
312
+ }