Home / File/ property-order.ts — tailwindcss Source File

property-order.ts — tailwindcss Source File

Architecture documentation for property-order.ts, a typescript file in the tailwindcss codebase. 0 imports, 1 dependents.

File typescript OxideEngine 1 dependents

Entity Profile

Dependency Diagram

graph LR
  8362228f_a9aa_0b1a_b1b9_8a06801c18ef["property-order.ts"]
  214bac69_e516_bea4_67fa_4e9e092ced3b["compile.ts"]
  214bac69_e516_bea4_67fa_4e9e092ced3b --> 8362228f_a9aa_0b1a_b1b9_8a06801c18ef
  style 8362228f_a9aa_0b1a_b1b9_8a06801c18ef fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

export default [
  'container-type',

  'pointer-events',
  'visibility',
  'position',

  // How do we make `inset-x-0` come before `top-0`?
  'inset',
  'inset-inline',
  'inset-block',
  'inset-inline-start',
  'inset-inline-end',
  'inset-block-start',
  'inset-block-end',
  'top',
  'right',
  'bottom',
  'left',

  'isolation',
  'z-index',
  'order',
  'grid-column',
  'grid-column-start',
  'grid-column-end',
  'grid-row',
  'grid-row-start',
  'grid-row-end',
  'float',
  'clear',

  // Ensure that the included `container` class is always sorted before any
  // custom container extensions
  '--tw-container-component',

  // How do we make `mx-0` come before `mt-0`?
  // Idea: `margin-x` property that we compile away with a Visitor plugin?
  'margin',
  'margin-inline',
  'margin-block',
  'margin-inline-start',
  'margin-inline-end',
  'margin-block-start',
  'margin-block-end',
  'margin-top',
  'margin-right',
  'margin-bottom',
  'margin-left',

  'box-sizing',
  'display',

  'field-sizing',
  'aspect-ratio',
  'height',
  'max-height',
  'min-height',
  'width',
  'max-width',
// ... (374 more lines)

Domain

Frequently Asked Questions

What does property-order.ts do?
property-order.ts is a source file in the tailwindcss codebase, written in typescript. It belongs to the OxideEngine domain.
What files import property-order.ts?
property-order.ts is imported by 1 file(s): compile.ts.
Where is property-order.ts in the architecture?
property-order.ts is located at packages/tailwindcss/src/property-order.ts (domain: OxideEngine, directory: packages/tailwindcss/src).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free