@echelon-foundry/design-system 0.2.0-main.15.1

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.
Files changed (148) hide show
  1. package/README.md +82 -0
  2. package/dist/all.css +3461 -0
  3. package/dist/assessment.css +1123 -0
  4. package/dist/brands/echelon.css +91 -0
  5. package/dist/brands/example-harbor.css +91 -0
  6. package/dist/brands/index.json +17 -0
  7. package/dist/build-metrics.json +152 -0
  8. package/dist/components.css +2123 -0
  9. package/dist/foundations.css +113 -0
  10. package/dist/patterns/alert.html +8 -0
  11. package/dist/patterns/allocation.html +24 -0
  12. package/dist/patterns/best-worst.html +21 -0
  13. package/dist/patterns/binary-choice.html +15 -0
  14. package/dist/patterns/checkbox.html +13 -0
  15. package/dist/patterns/choice-group.html +27 -0
  16. package/dist/patterns/collection-toolbar.html +22 -0
  17. package/dist/patterns/combobox.html +13 -0
  18. package/dist/patterns/command-palette.html +14 -0
  19. package/dist/patterns/composer.html +19 -0
  20. package/dist/patterns/conflict-review.html +17 -0
  21. package/dist/patterns/conversation.html +23 -0
  22. package/dist/patterns/dashboard-grid.html +5 -0
  23. package/dist/patterns/data-grid.html +30 -0
  24. package/dist/patterns/date-range.html +13 -0
  25. package/dist/patterns/dialog.html +15 -0
  26. package/dist/patterns/diff-viewer.html +22 -0
  27. package/dist/patterns/disclosure.html +6 -0
  28. package/dist/patterns/empty-state.html +6 -0
  29. package/dist/patterns/file-upload.html +19 -0
  30. package/dist/patterns/flyout.html +72 -0
  31. package/dist/patterns/hierarchical-choice.html +25 -0
  32. package/dist/patterns/hierarchical-multi-choice.html +27 -0
  33. package/dist/patterns/image-choice.html +25 -0
  34. package/dist/patterns/master-detail.html +16 -0
  35. package/dist/patterns/matrix-single.html +26 -0
  36. package/dist/patterns/menu.html +8 -0
  37. package/dist/patterns/metric-card.html +6 -0
  38. package/dist/patterns/mobile-action-bar.html +4 -0
  39. package/dist/patterns/multi-choice.html +23 -0
  40. package/dist/patterns/numeric-stepper.html +5 -0
  41. package/dist/patterns/obligation-panel.html +36 -0
  42. package/dist/patterns/operation-status.html +12 -0
  43. package/dist/patterns/ordinal-scale.html +42 -0
  44. package/dist/patterns/pagination.html +12 -0
  45. package/dist/patterns/pairwise-choice.html +21 -0
  46. package/dist/patterns/popover.html +6 -0
  47. package/dist/patterns/preview-surface.html +14 -0
  48. package/dist/patterns/provenance-trail.html +9 -0
  49. package/dist/patterns/question.html +13 -0
  50. package/dist/patterns/range-entry.html +18 -0
  51. package/dist/patterns/ranking.html +32 -0
  52. package/dist/patterns/readiness-checklist.html +12 -0
  53. package/dist/patterns/record-header.html +17 -0
  54. package/dist/patterns/rule-builder.html +37 -0
  55. package/dist/patterns/search.html +8 -0
  56. package/dist/patterns/segmented-control.html +13 -0
  57. package/dist/patterns/select.html +12 -0
  58. package/dist/patterns/semantic-differential.html +23 -0
  59. package/dist/patterns/skeleton.html +7 -0
  60. package/dist/patterns/slider.html +11 -0
  61. package/dist/patterns/special-choice.html +15 -0
  62. package/dist/patterns/status-lozenge.html +6 -0
  63. package/dist/patterns/survey-progress.html +8 -0
  64. package/dist/patterns/switch.html +14 -0
  65. package/dist/patterns/symbol-rating.html +31 -0
  66. package/dist/patterns/tabs.html +11 -0
  67. package/dist/patterns/timeline.html +19 -0
  68. package/dist/patterns/toast.html +10 -0
  69. package/dist/patterns/understanding.html +32 -0
  70. package/dist/patterns/validation-message.html +4 -0
  71. package/dist/patterns/validation-summary.html +10 -0
  72. package/dist/patterns/wizard.html +19 -0
  73. package/dist/patterns/work-queue.html +20 -0
  74. package/dist/skins.css +29 -0
  75. package/dist/tokens.css +99 -0
  76. package/docs/BRANDING.md +148 -0
  77. package/package.json +60 -0
  78. package/patterns/alert.html +8 -0
  79. package/patterns/allocation.html +24 -0
  80. package/patterns/assessment.manifest.md +93 -0
  81. package/patterns/best-worst.html +21 -0
  82. package/patterns/binary-choice.html +15 -0
  83. package/patterns/checkbox.html +13 -0
  84. package/patterns/choice-group.html +27 -0
  85. package/patterns/collection-toolbar.html +22 -0
  86. package/patterns/combobox.html +13 -0
  87. package/patterns/command-palette.html +14 -0
  88. package/patterns/composer.html +19 -0
  89. package/patterns/composer.manifest.md +27 -0
  90. package/patterns/conflict-review.html +17 -0
  91. package/patterns/conversation.html +23 -0
  92. package/patterns/conversation.manifest.md +21 -0
  93. package/patterns/dashboard-grid.html +5 -0
  94. package/patterns/data-grid.html +30 -0
  95. package/patterns/date-range.html +13 -0
  96. package/patterns/dialog.html +15 -0
  97. package/patterns/diff-viewer.html +22 -0
  98. package/patterns/disclosure.html +6 -0
  99. package/patterns/empty-state.html +6 -0
  100. package/patterns/file-upload.html +19 -0
  101. package/patterns/flyout.html +72 -0
  102. package/patterns/flyout.manifest.md +43 -0
  103. package/patterns/hierarchical-choice.html +25 -0
  104. package/patterns/hierarchical-multi-choice.html +27 -0
  105. package/patterns/image-choice.html +25 -0
  106. package/patterns/manifest.md +46 -0
  107. package/patterns/master-detail.html +16 -0
  108. package/patterns/matrix-single.html +26 -0
  109. package/patterns/menu.html +8 -0
  110. package/patterns/metric-card.html +6 -0
  111. package/patterns/mobile-action-bar.html +4 -0
  112. package/patterns/multi-choice.html +23 -0
  113. package/patterns/numeric-stepper.html +5 -0
  114. package/patterns/obligation-panel.html +36 -0
  115. package/patterns/operation-status.html +12 -0
  116. package/patterns/ordinal-scale.html +42 -0
  117. package/patterns/pagination.html +12 -0
  118. package/patterns/pairwise-choice.html +21 -0
  119. package/patterns/popover.html +6 -0
  120. package/patterns/preview-surface.html +14 -0
  121. package/patterns/provenance-trail.html +9 -0
  122. package/patterns/question.html +13 -0
  123. package/patterns/range-entry.html +18 -0
  124. package/patterns/ranking.html +32 -0
  125. package/patterns/readiness-checklist.html +12 -0
  126. package/patterns/record-header.html +17 -0
  127. package/patterns/rule-builder.html +37 -0
  128. package/patterns/search.html +8 -0
  129. package/patterns/segmented-control.html +13 -0
  130. package/patterns/select.html +12 -0
  131. package/patterns/semantic-differential.html +23 -0
  132. package/patterns/skeleton.html +7 -0
  133. package/patterns/slider.html +11 -0
  134. package/patterns/special-choice.html +15 -0
  135. package/patterns/status-lozenge.html +6 -0
  136. package/patterns/survey-progress.html +8 -0
  137. package/patterns/switch.html +14 -0
  138. package/patterns/symbol-rating.html +31 -0
  139. package/patterns/tabs.html +11 -0
  140. package/patterns/timeline.html +19 -0
  141. package/patterns/toast.html +10 -0
  142. package/patterns/understanding.html +32 -0
  143. package/patterns/understanding.manifest.md +26 -0
  144. package/patterns/validation-message.html +4 -0
  145. package/patterns/validation-summary.html +10 -0
  146. package/patterns/wizard.html +19 -0
  147. package/patterns/work-queue.html +20 -0
  148. package/schemas/brand-manifest.schema.json +152 -0
@@ -0,0 +1,91 @@
1
+ /* Generated from echelon.brand.json. Do not edit directly. */
2
+ @layer echelon.brand {
3
+ [data-ef-brand="echelon"] {
4
+ --ef-primitive-font-family-display: Newsreader, Georgia, serif;
5
+ --ef-primitive-font-family-sans: Manrope, system-ui, sans-serif;
6
+ --ef-primitive-font-family-mono: "IBM Plex Mono", ui-monospace, monospace;
7
+ --ef-primitive-radius-small: 4px;
8
+ --ef-primitive-radius-medium: 8px;
9
+ --ef-primitive-radius-pill: 999px;
10
+ --ef-color-text-primary: #171a18;
11
+ --ef-color-text-heading: #202421;
12
+ --ef-color-text-secondary: #686d68;
13
+ --ef-color-text-on-secondary-surface: #3a403c;
14
+ --ef-color-text-inverse: #f2efe7;
15
+ --ef-color-surface-primary: #f2efe7;
16
+ --ef-color-surface-secondary: #e3e0d7;
17
+ --ef-color-surface-inverse: #202421;
18
+ --ef-color-surface-inverse-secondary: #3a403c;
19
+ --ef-color-accent-primary: #905831;
20
+ --ef-color-accent-secondary: #47756b;
21
+ --ef-color-border-subtle: #e3e0d7;
22
+ --ef-color-border-functional: #3a403c;
23
+ --ef-color-focus-ring: #171a18;
24
+ --ef-color-focus-gap: #f2efe7;
25
+ --ef-color-control-track: #686d68;
26
+ --ef-color-control-thumb: #f2efe7;
27
+ --ef-color-control-active: #905831;
28
+ }
29
+ [data-ef-theme="light"] [data-ef-brand="echelon"], [data-ef-brand="echelon"][data-ef-theme="light"] {
30
+ --ef-color-text-primary: #171a18;
31
+ --ef-color-text-heading: #202421;
32
+ --ef-color-text-secondary: #686d68;
33
+ --ef-color-text-on-secondary-surface: #3a403c;
34
+ --ef-color-text-inverse: #f2efe7;
35
+ --ef-color-surface-primary: #f2efe7;
36
+ --ef-color-surface-secondary: #e3e0d7;
37
+ --ef-color-surface-inverse: #202421;
38
+ --ef-color-surface-inverse-secondary: #3a403c;
39
+ --ef-color-accent-primary: #905831;
40
+ --ef-color-accent-secondary: #47756b;
41
+ --ef-color-border-subtle: #e3e0d7;
42
+ --ef-color-border-functional: #3a403c;
43
+ --ef-color-focus-ring: #171a18;
44
+ --ef-color-focus-gap: #f2efe7;
45
+ --ef-color-control-track: #686d68;
46
+ --ef-color-control-thumb: #f2efe7;
47
+ --ef-color-control-active: #905831;
48
+ }
49
+ [data-ef-theme="dark"] [data-ef-brand="echelon"], [data-ef-brand="echelon"][data-ef-theme="dark"] {
50
+ --ef-color-text-primary: #f2efe7;
51
+ --ef-color-text-heading: #f2efe7;
52
+ --ef-color-text-secondary: #e3e0d7;
53
+ --ef-color-text-on-secondary-surface: #f2efe7;
54
+ --ef-color-text-inverse: #171a18;
55
+ --ef-color-surface-primary: #171a18;
56
+ --ef-color-surface-secondary: #202421;
57
+ --ef-color-surface-inverse: #f2efe7;
58
+ --ef-color-surface-inverse-secondary: #e3e0d7;
59
+ --ef-color-accent-primary: #a87e5e;
60
+ --ef-color-accent-secondary: #698d84;
61
+ --ef-color-border-subtle: #3a403c;
62
+ --ef-color-border-functional: #e3e0d7;
63
+ --ef-color-focus-ring: #f2efe7;
64
+ --ef-color-focus-gap: #171a18;
65
+ --ef-color-control-track: #686d68;
66
+ --ef-color-control-thumb: #f2efe7;
67
+ --ef-color-control-active: #a87e5e;
68
+ }
69
+ @media (prefers-color-scheme: dark) {
70
+ :root:not([data-ef-theme]) [data-ef-brand="echelon"]:not([data-ef-theme]), :root[data-ef-brand="echelon"]:not([data-ef-theme]) {
71
+ --ef-color-text-primary: #f2efe7;
72
+ --ef-color-text-heading: #f2efe7;
73
+ --ef-color-text-secondary: #e3e0d7;
74
+ --ef-color-text-on-secondary-surface: #f2efe7;
75
+ --ef-color-text-inverse: #171a18;
76
+ --ef-color-surface-primary: #171a18;
77
+ --ef-color-surface-secondary: #202421;
78
+ --ef-color-surface-inverse: #f2efe7;
79
+ --ef-color-surface-inverse-secondary: #e3e0d7;
80
+ --ef-color-accent-primary: #a87e5e;
81
+ --ef-color-accent-secondary: #698d84;
82
+ --ef-color-border-subtle: #3a403c;
83
+ --ef-color-border-functional: #e3e0d7;
84
+ --ef-color-focus-ring: #f2efe7;
85
+ --ef-color-focus-gap: #171a18;
86
+ --ef-color-control-track: #686d68;
87
+ --ef-color-control-thumb: #f2efe7;
88
+ --ef-color-control-active: #a87e5e;
89
+ }
90
+ }
91
+ }
@@ -0,0 +1,91 @@
1
+ /* Generated from example-harbor.brand.json. Do not edit directly. */
2
+ @layer echelon.brand {
3
+ [data-ef-brand="example-harbor"] {
4
+ --ef-primitive-font-family-display: Georgia, serif;
5
+ --ef-primitive-font-family-sans: Arial, sans-serif;
6
+ --ef-primitive-font-family-mono: "Courier New", monospace;
7
+ --ef-primitive-radius-small: 8px;
8
+ --ef-primitive-radius-medium: 12px;
9
+ --ef-primitive-radius-pill: 999px;
10
+ --ef-color-text-primary: #15212a;
11
+ --ef-color-text-heading: #15212a;
12
+ --ef-color-text-secondary: #43515b;
13
+ --ef-color-text-on-secondary-surface: #24333d;
14
+ --ef-color-text-inverse: #f7f9fb;
15
+ --ef-color-surface-primary: #f7f9fb;
16
+ --ef-color-surface-secondary: #e4ebf0;
17
+ --ef-color-surface-inverse: #20384a;
18
+ --ef-color-surface-inverse-secondary: #31556f;
19
+ --ef-color-accent-primary: #7a4a00;
20
+ --ef-color-accent-secondary: #275d6b;
21
+ --ef-color-border-subtle: #b7c5cf;
22
+ --ef-color-border-functional: #43515b;
23
+ --ef-color-focus-ring: #15212a;
24
+ --ef-color-focus-gap: #f7f9fb;
25
+ --ef-color-control-track: #5d6d78;
26
+ --ef-color-control-thumb: #f7f9fb;
27
+ --ef-color-control-active: #7a4a00;
28
+ }
29
+ [data-ef-theme="light"] [data-ef-brand="example-harbor"], [data-ef-brand="example-harbor"][data-ef-theme="light"] {
30
+ --ef-color-text-primary: #15212a;
31
+ --ef-color-text-heading: #15212a;
32
+ --ef-color-text-secondary: #43515b;
33
+ --ef-color-text-on-secondary-surface: #24333d;
34
+ --ef-color-text-inverse: #f7f9fb;
35
+ --ef-color-surface-primary: #f7f9fb;
36
+ --ef-color-surface-secondary: #e4ebf0;
37
+ --ef-color-surface-inverse: #20384a;
38
+ --ef-color-surface-inverse-secondary: #31556f;
39
+ --ef-color-accent-primary: #7a4a00;
40
+ --ef-color-accent-secondary: #275d6b;
41
+ --ef-color-border-subtle: #b7c5cf;
42
+ --ef-color-border-functional: #43515b;
43
+ --ef-color-focus-ring: #15212a;
44
+ --ef-color-focus-gap: #f7f9fb;
45
+ --ef-color-control-track: #5d6d78;
46
+ --ef-color-control-thumb: #f7f9fb;
47
+ --ef-color-control-active: #7a4a00;
48
+ }
49
+ [data-ef-theme="dark"] [data-ef-brand="example-harbor"], [data-ef-brand="example-harbor"][data-ef-theme="dark"] {
50
+ --ef-color-text-primary: #f7f9fb;
51
+ --ef-color-text-heading: #f7f9fb;
52
+ --ef-color-text-secondary: #dbe6ec;
53
+ --ef-color-text-on-secondary-surface: #f7f9fb;
54
+ --ef-color-text-inverse: #101820;
55
+ --ef-color-surface-primary: #101820;
56
+ --ef-color-surface-secondary: #20303d;
57
+ --ef-color-surface-inverse: #f7f9fb;
58
+ --ef-color-surface-inverse-secondary: #dbe6ec;
59
+ --ef-color-accent-primary: #d7a85b;
60
+ --ef-color-accent-secondary: #6eb3c0;
61
+ --ef-color-border-subtle: #40515f;
62
+ --ef-color-border-functional: #dbe6ec;
63
+ --ef-color-focus-ring: #f7f9fb;
64
+ --ef-color-focus-gap: #101820;
65
+ --ef-color-control-track: #60717e;
66
+ --ef-color-control-thumb: #f7f9fb;
67
+ --ef-color-control-active: #d7a85b;
68
+ }
69
+ @media (prefers-color-scheme: dark) {
70
+ :root:not([data-ef-theme]) [data-ef-brand="example-harbor"]:not([data-ef-theme]), :root[data-ef-brand="example-harbor"]:not([data-ef-theme]) {
71
+ --ef-color-text-primary: #f7f9fb;
72
+ --ef-color-text-heading: #f7f9fb;
73
+ --ef-color-text-secondary: #dbe6ec;
74
+ --ef-color-text-on-secondary-surface: #f7f9fb;
75
+ --ef-color-text-inverse: #101820;
76
+ --ef-color-surface-primary: #101820;
77
+ --ef-color-surface-secondary: #20303d;
78
+ --ef-color-surface-inverse: #f7f9fb;
79
+ --ef-color-surface-inverse-secondary: #dbe6ec;
80
+ --ef-color-accent-primary: #d7a85b;
81
+ --ef-color-accent-secondary: #6eb3c0;
82
+ --ef-color-border-subtle: #40515f;
83
+ --ef-color-border-functional: #dbe6ec;
84
+ --ef-color-focus-ring: #f7f9fb;
85
+ --ef-color-focus-gap: #101820;
86
+ --ef-color-control-track: #60717e;
87
+ --ef-color-control-thumb: #f7f9fb;
88
+ --ef-color-control-active: #d7a85b;
89
+ }
90
+ }
91
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "schemaVersion": "1.0",
3
+ "brands": [
4
+ {
5
+ "id": "echelon",
6
+ "name": "Echelon Foundry",
7
+ "source": "echelon.brand.json",
8
+ "css": "echelon.css"
9
+ },
10
+ {
11
+ "id": "example-harbor",
12
+ "name": "Example Harbor",
13
+ "source": "example-harbor.brand.json",
14
+ "css": "example-harbor.css"
15
+ }
16
+ ]
17
+ }
@@ -0,0 +1,152 @@
1
+ {
2
+ "files": [
3
+ "all.css",
4
+ "assessment.css",
5
+ "brands/echelon.css",
6
+ "brands/example-harbor.css",
7
+ "brands/index.json",
8
+ "components.css",
9
+ "foundations.css",
10
+ "patterns/alert.html",
11
+ "patterns/allocation.html",
12
+ "patterns/best-worst.html",
13
+ "patterns/binary-choice.html",
14
+ "patterns/checkbox.html",
15
+ "patterns/choice-group.html",
16
+ "patterns/collection-toolbar.html",
17
+ "patterns/combobox.html",
18
+ "patterns/command-palette.html",
19
+ "patterns/composer.html",
20
+ "patterns/conflict-review.html",
21
+ "patterns/conversation.html",
22
+ "patterns/dashboard-grid.html",
23
+ "patterns/data-grid.html",
24
+ "patterns/date-range.html",
25
+ "patterns/dialog.html",
26
+ "patterns/diff-viewer.html",
27
+ "patterns/disclosure.html",
28
+ "patterns/empty-state.html",
29
+ "patterns/file-upload.html",
30
+ "patterns/flyout.html",
31
+ "patterns/hierarchical-choice.html",
32
+ "patterns/hierarchical-multi-choice.html",
33
+ "patterns/image-choice.html",
34
+ "patterns/master-detail.html",
35
+ "patterns/matrix-single.html",
36
+ "patterns/menu.html",
37
+ "patterns/metric-card.html",
38
+ "patterns/mobile-action-bar.html",
39
+ "patterns/multi-choice.html",
40
+ "patterns/numeric-stepper.html",
41
+ "patterns/obligation-panel.html",
42
+ "patterns/operation-status.html",
43
+ "patterns/ordinal-scale.html",
44
+ "patterns/pagination.html",
45
+ "patterns/pairwise-choice.html",
46
+ "patterns/popover.html",
47
+ "patterns/preview-surface.html",
48
+ "patterns/provenance-trail.html",
49
+ "patterns/question.html",
50
+ "patterns/range-entry.html",
51
+ "patterns/ranking.html",
52
+ "patterns/readiness-checklist.html",
53
+ "patterns/record-header.html",
54
+ "patterns/rule-builder.html",
55
+ "patterns/search.html",
56
+ "patterns/segmented-control.html",
57
+ "patterns/select.html",
58
+ "patterns/semantic-differential.html",
59
+ "patterns/skeleton.html",
60
+ "patterns/slider.html",
61
+ "patterns/special-choice.html",
62
+ "patterns/status-lozenge.html",
63
+ "patterns/survey-progress.html",
64
+ "patterns/switch.html",
65
+ "patterns/symbol-rating.html",
66
+ "patterns/tabs.html",
67
+ "patterns/timeline.html",
68
+ "patterns/toast.html",
69
+ "patterns/understanding.html",
70
+ "patterns/validation-message.html",
71
+ "patterns/validation-summary.html",
72
+ "patterns/wizard.html",
73
+ "patterns/work-queue.html",
74
+ "skins.css",
75
+ "tokens.css"
76
+ ],
77
+ "bytes": {
78
+ "all.css": 102460,
79
+ "assessment.css": 32070,
80
+ "brands/echelon.css": 3621,
81
+ "brands/example-harbor.css": 3637,
82
+ "brands/index.json": 335,
83
+ "components.css": 62742,
84
+ "foundations.css": 3834,
85
+ "patterns/alert.html": 384,
86
+ "patterns/allocation.html": 1033,
87
+ "patterns/best-worst.html": 1268,
88
+ "patterns/binary-choice.html": 652,
89
+ "patterns/checkbox.html": 503,
90
+ "patterns/choice-group.html": 869,
91
+ "patterns/collection-toolbar.html": 1203,
92
+ "patterns/combobox.html": 583,
93
+ "patterns/command-palette.html": 745,
94
+ "patterns/composer.html": 1074,
95
+ "patterns/conflict-review.html": 854,
96
+ "patterns/conversation.html": 1009,
97
+ "patterns/dashboard-grid.html": 590,
98
+ "patterns/data-grid.html": 1316,
99
+ "patterns/date-range.html": 519,
100
+ "patterns/dialog.html": 622,
101
+ "patterns/diff-viewer.html": 851,
102
+ "patterns/disclosure.html": 222,
103
+ "patterns/empty-state.html": 319,
104
+ "patterns/file-upload.html": 867,
105
+ "patterns/flyout.html": 2488,
106
+ "patterns/hierarchical-choice.html": 919,
107
+ "patterns/hierarchical-multi-choice.html": 1086,
108
+ "patterns/image-choice.html": 878,
109
+ "patterns/master-detail.html": 792,
110
+ "patterns/matrix-single.html": 1422,
111
+ "patterns/menu.html": 377,
112
+ "patterns/metric-card.html": 317,
113
+ "patterns/mobile-action-bar.html": 233,
114
+ "patterns/multi-choice.html": 1174,
115
+ "patterns/numeric-stepper.html": 313,
116
+ "patterns/obligation-panel.html": 1411,
117
+ "patterns/operation-status.html": 583,
118
+ "patterns/ordinal-scale.html": 1917,
119
+ "patterns/pagination.html": 512,
120
+ "patterns/pairwise-choice.html": 811,
121
+ "patterns/popover.html": 358,
122
+ "patterns/preview-surface.html": 798,
123
+ "patterns/provenance-trail.html": 711,
124
+ "patterns/question.html": 590,
125
+ "patterns/range-entry.html": 852,
126
+ "patterns/ranking.html": 1635,
127
+ "patterns/readiness-checklist.html": 772,
128
+ "patterns/record-header.html": 777,
129
+ "patterns/rule-builder.html": 1081,
130
+ "patterns/search.html": 385,
131
+ "patterns/segmented-control.html": 403,
132
+ "patterns/select.html": 589,
133
+ "patterns/semantic-differential.html": 1667,
134
+ "patterns/skeleton.html": 354,
135
+ "patterns/slider.html": 403,
136
+ "patterns/special-choice.html": 568,
137
+ "patterns/status-lozenge.html": 358,
138
+ "patterns/survey-progress.html": 446,
139
+ "patterns/switch.html": 506,
140
+ "patterns/symbol-rating.html": 1493,
141
+ "patterns/tabs.html": 741,
142
+ "patterns/timeline.html": 902,
143
+ "patterns/toast.html": 525,
144
+ "patterns/understanding.html": 1554,
145
+ "patterns/validation-message.html": 180,
146
+ "patterns/validation-summary.html": 530,
147
+ "patterns/wizard.html": 817,
148
+ "patterns/work-queue.html": 971,
149
+ "skins.css": 924,
150
+ "tokens.css": 3811
151
+ }
152
+ }