FPSMS-frontend
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 

34 строки
1.1 KiB

  1. /** PO Workbench 2×2 shell grid tokens (production layout; not mock data). */
  2. /** One of four panes in the PO Workbench CSS grid (row-major). */
  3. export type PoWorkbenchGridRegionId =
  4. | "searchCriteria"
  5. | "searchResults"
  6. | "detailsHeader"
  7. | "details";
  8. /** Desktop: 35% search / 65% detail. */
  9. export const PO_WORKBENCH_GRID_TEMPLATE_COLUMNS =
  10. "minmax(0, 35%) minmax(0, 65%)";
  11. /** Top row auto height; bottom row fills remaining space. */
  12. export const PO_WORKBENCH_GRID_TEMPLATE_ROWS = "auto minmax(0, 1fr)";
  13. /** Row-major auto-placement order for the 2×2 grid. */
  14. export const PO_WORKBENCH_GRID_REGION_ORDER: readonly PoWorkbenchGridRegionId[] =
  15. [
  16. "searchCriteria",
  17. "detailsHeader",
  18. "searchResults",
  19. "details",
  20. ] as const;
  21. /** @deprecated Use {@link PO_WORKBENCH_GRID_TEMPLATE_COLUMNS}. */
  22. export const WORKBENCH_GRID_TEMPLATE_COLUMNS = PO_WORKBENCH_GRID_TEMPLATE_COLUMNS;
  23. /** @deprecated Use {@link PO_WORKBENCH_GRID_TEMPLATE_ROWS}. */
  24. export const WORKBENCH_GRID_TEMPLATE_ROWS = PO_WORKBENCH_GRID_TEMPLATE_ROWS;
  25. /** @deprecated Use {@link PoWorkbenchGridRegionId}. */
  26. export type WorkbenchGridRegionId = PoWorkbenchGridRegionId;