All files / packages/design-system-2/scripts/buildCss import-order.js

100% Statements 2/2
100% Branches 0/0
100% Functions 1/1
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150                  3x                                                                                                                                                                                                                                                                                        
/**
 * Canonical component import order, matching design-system-internal's _index.scss.
 * https://github.com/salesforce-ux-emu/design-system-internal
 *
 * Files absent from this list (e.g. theme files named "cosmos") sort to the end so
 * foundation/reset files always come first.
 *
 * @param {string} theme Active theme name (e.g. "cosmos").
 */
export const buildImportOrder = (theme) => [
  // ── Token foundation (must precede all component CSS) ──────────────────────
  'config',
  `${theme}.reference.tokens`,
  `${theme}.global.tokens`,
  `${theme}.shared.tokens`,
  'deprecated-hooks',
  `${theme}.component.hooks`,
  // ── Component CSS ──────────────────────────────────────────────────────────
  'reset',
  'icon.type',
  'activityTimeline',
  'badge',
  'breadcrumbs',
  'buttonGroup',
  'button.deprecated',
  'button',
  'buttonStateful',
  'buttonDualStateful',
  'buttonIcon.deprecated',
  'buttonIcon',
  'colorPicker',
  'icon',
  'accordion',
  'dynamicIcons',
  'dynamicMenu',
  'carousel',
  'card.deprecated',
  'card',
  'chat',
  'datetimePicker',
  'form-element',
  'input',
  'counter',
  'textarea',
  'radioGroup',
  'radioButtonGroup',
  'checkbox',
  'checkboxToggle',
  'checkboxButton',
  'checkboxButtonGroup',
  'select',
  'dockedFormFooter',
  'slider',
  'fileSelector',
  'pageHeader',
  'pageHeader.deprecated',
  'brandBand',
  'panel',
  'popover',
  'popover.deprecated',
  'tooltip.deprecated',
  'tooltip',
  'menu',
  'picklist.deprecated',
  'combobox',
  'duelingPicklist.deprecated',
  'duelingPicklist',
  'datepicker.deprecated',
  'datepicker',
  'dockedComposer.deprecated',
  'dockedComposer',
  'dockedUtilityBar',
  'dropZone',
  'globalHeader',
  'globalNavigation',
  'expression',
  'builderHeader',
  'publisher',
  'feed',
  'modal',
  'map',
  'appLauncher',
  'visualPicker',
  'pill',
  'wizard.deprecated',
  'pathSimple.deprecated',
  'path',
  'progressBar',
  'progressIndicator',
  'progressRing',
  'richTextEditor',
  'spinner',
  'splitView',
  'tile',
  'tabs',
  'verticalNavigation.deprecated',
  'verticalNavigation',
  'alert',
  'prompt',
  'toast',
  'scopedNotifications',
  'notifications',
  'trialBar',
  'lookup.deprecated',
  'avatar',
  'avatarGroup',
  'file',
  'dataTable',
  'trees',
  'treeGrid',
  'expandableSection',
  'illustration',
  'regions',
  'welcomeMat',
  'summaryDetail',
  'setupAssistant',
  'template',
 
  // Utilities
  'utilities.deprecated',
  'grid',
  'alignment',
  'mediaObject',
  'margin',
  'padding',
  'floats',
  'borders',
  'interactions',
  'verticalList',
  'horizontalList',
  'descriptionList',
  'nameValueList',
  'truncate',
  'hyphenation',
  'box',
  'text',
  'color',
  'scrolling',
  'sizing',
  'layout',
  'position',
  'print',
  'visibility',
  'lineClamp',
  'darkMode',
 
  // scoped-themes
  'agentforce',
];