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/dist/index.d.ts +16 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/stylesheets/shares.styles.ts +6 -1
- package/src/typeds/shares.typed.ts +18 -1
package/package.json
CHANGED
|
@@ -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
|
+
}
|