@mixtint/primer-view-components 0.89.2 → 0.90.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 (54) hide show
  1. package/app/assets/javascripts/primer_view_components.js +1 -1
  2. package/app/assets/javascripts/primer_view_components.js.map +1 -1
  3. package/app/assets/styles/primer_view_components.css +206 -646
  4. package/app/assets/styles/primer_view_components.css.map +1 -1
  5. package/app/components/primer/alpha/action_bar.css +9 -3
  6. package/app/components/primer/alpha/action_list.css +92 -2
  7. package/app/components/primer/alpha/auto_complete.css +4 -22
  8. package/app/components/primer/alpha/auto_complete.css.json +1 -3
  9. package/app/components/primer/alpha/banner.css +0 -1
  10. package/app/components/primer/alpha/button_marketing.css +4 -4
  11. package/app/components/primer/alpha/dialog.css +63 -0
  12. package/app/components/primer/alpha/dropdown.css +0 -6
  13. package/app/components/primer/alpha/layout.css +3 -1
  14. package/app/components/primer/alpha/menu.css +0 -6
  15. package/app/components/primer/alpha/overlay.css +5 -0
  16. package/app/components/primer/alpha/segmented_control.css +0 -4
  17. package/app/components/primer/alpha/tab_nav.css +0 -8
  18. package/app/components/primer/alpha/text_field.css +97 -5
  19. package/app/components/primer/alpha/text_field.css.json +2 -2
  20. package/app/components/primer/alpha/toggle_switch.css +8 -7
  21. package/app/components/primer/alpha/tree_view.css +1 -0
  22. package/app/components/primer/alpha/underline_nav.css +0 -3
  23. package/app/components/primer/beta/avatar.css +0 -1
  24. package/app/components/primer/beta/avatar_stack.css +33 -0
  25. package/app/components/primer/beta/blankslate.css +2 -61
  26. package/app/components/primer/beta/border_box.css +35 -0
  27. package/app/components/primer/beta/breadcrumbs.css +7 -4
  28. package/app/components/primer/beta/breadcrumbs.css.json +2 -1
  29. package/app/components/primer/beta/button.css +51 -1
  30. package/app/components/primer/beta/flash.css +0 -16
  31. package/app/components/primer/beta/label.css +0 -2
  32. package/app/components/primer/beta/link.css +0 -2
  33. package/app/components/primer/beta/popover.css +138 -85
  34. package/app/components/primer/beta/popover.css.json +22 -16
  35. package/app/components/primer/beta/state.css +0 -1
  36. package/app/components/primer/beta/subhead.css +0 -8
  37. package/app/components/primer/beta/timeline_item.css +0 -5
  38. package/app/components/primer/beta/truncate.css +0 -1
  39. package/app/components/primer/open_project/avatar_stack.css +10 -0
  40. package/app/components/primer/open_project/border_box/collapsible_header.css +3 -1
  41. package/app/components/primer/open_project/border_grid.css +11 -9
  42. package/app/components/primer/open_project/collapsible.d.ts +1 -1
  43. package/app/components/primer/open_project/collapsible.js +8 -4
  44. package/app/components/primer/open_project/filterable_tree_view.css +2 -7
  45. package/app/components/primer/open_project/page_header.css +2 -5
  46. package/app/components/primer/open_project/pagination.css +4 -1
  47. package/app/components/primer/open_project/side_panel/section.css +3 -3
  48. package/package.json +31 -11
  49. package/static/classes.json +21 -0
  50. package/static/classnames.cjs +516 -0
  51. package/static/classnames.d.ts +2 -0
  52. package/static/classnames.js +518 -0
  53. package/static/info_arch.json +26 -0
  54. package/static/previews.json +2404 -2378
@@ -1,3 +1,5 @@
1
+ /* stylelint-disable selector-max-type -- pagination arrows are styled via `.Page[rel] > svg`; the svg icon can only be targeted by its type selector */
2
+
1
3
  .Page {
2
4
  min-width: var(--base-size-32);
3
5
  height: var(--base-size-32);
@@ -7,7 +9,7 @@
7
9
  white-space: nowrap;
8
10
  vertical-align: middle;
9
11
  cursor: pointer;
10
- border-radius: var(--borderRadius-medium,.375rem);
12
+ border-radius: var(--borderRadius-medium);
11
13
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
12
14
  display: inline-flex;
13
15
  align-items: center;
@@ -63,6 +65,7 @@
63
65
 
64
66
  .Page[aria-current]:focus-visible {
65
67
  outline: 2px solid var(--bgColor-accent-emphasis);
68
+ /* stylelint-disable-next-line primer/box-shadow -- custom focus-ring built from Primer size/color primitives; no single Primer box-shadow token matches */
66
69
  box-shadow: inset 0 0 0 var(--base-size-2) var(--fgColor-onEmphasis);
67
70
  }
68
71
 
@@ -4,11 +4,11 @@
4
4
  display: flex;
5
5
  align-items: center;
6
6
  height: 32px;
7
- margin-bottom: 8px;
7
+ margin-bottom: var(--base-size-8);
8
8
  }
9
9
 
10
10
  .SidePanel-sectionCounter {
11
- margin-left: 8px;
11
+ margin-left: var(--base-size-8);
12
12
  }
13
13
 
14
14
  .SidePanel-sectionAction {
@@ -23,5 +23,5 @@
23
23
  }
24
24
 
25
25
  :is(.SidePanel-sectionContent,.SidePanel-sectionDescription):not(:last-child) {
26
- margin-bottom: 16px;
26
+ margin-bottom: var(--base-size-16);
27
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mixtint/primer-view-components",
3
- "version": "0.89.2",
3
+ "version": "0.90.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -8,6 +8,23 @@
8
8
  "main": "app/assets/javascripts/primer_view_components.js",
9
9
  "module": "app/components/primer/primer.js",
10
10
  "types": "app/components/primer/primer.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./app/components/primer/primer.d.ts",
14
+ "import": "./app/components/primer/primer.js",
15
+ "require": "./app/assets/javascripts/primer_view_components.js"
16
+ },
17
+ "./classnames": {
18
+ "types": "./static/classnames.d.ts",
19
+ "import": "./static/classnames.js",
20
+ "require": "./static/classnames.cjs"
21
+ },
22
+ "./app/*": {
23
+ "types": "./app/*.d.ts",
24
+ "default": "./app/*"
25
+ },
26
+ "./*": "./*"
27
+ },
11
28
  "repository": "opf/primer_view_components",
12
29
  "keywords": [
13
30
  "rails",
@@ -24,6 +41,9 @@
24
41
  },
25
42
  "files": [
26
43
  "static/*.json",
44
+ "static/classnames.js",
45
+ "static/classnames.cjs",
46
+ "static/classnames.d.ts",
27
47
  "app/assets/**/*",
28
48
  "app/components/primer/**/*.js",
29
49
  "app/components/primer/**/*.css",
@@ -53,7 +73,7 @@
53
73
  "@github/details-menu-element": "^1.0.13",
54
74
  "@github/image-crop-element": "^5.0.0",
55
75
  "@github/include-fragment-element": "^6.4.1",
56
- "@github/relative-time-element": "^5.2.0",
76
+ "@github/relative-time-element": "^5.3.0",
57
77
  "@github/remote-input-element": "^0.4.0",
58
78
  "@github/tab-container-element": "^3.4.0",
59
79
  "@oddbird/popover-polyfill": "^0.5.2",
@@ -65,13 +85,13 @@
65
85
  },
66
86
  "devDependencies": {
67
87
  "@changesets/changelog-github": "^0.5.2",
68
- "@changesets/cli": "^2.31.0",
88
+ "@changesets/cli": "^2.31.1",
69
89
  "@github/axe-github": "^0.8.1",
70
90
  "@github/browserslist-config": "^1.0.0",
71
91
  "@github/markdownlint-github": "^0.8.3",
72
92
  "@github/prettier-config": "0.0.6",
73
- "@playwright/test": "^1.61.1",
74
- "@primer/css": "22.1.1",
93
+ "@playwright/test": "^1.62.0",
94
+ "@primer/css": "22.3.0",
75
95
  "@primer/primitives": "^11.9.0",
76
96
  "@primer/stylelint-config": "^13.6.0",
77
97
  "@rollup/plugin-node-resolve": "^16.0.3",
@@ -80,24 +100,24 @@
80
100
  "chokidar-cli": "^3.0.0",
81
101
  "css-what": "^8.0.0",
82
102
  "cssnano": "^8.0.2",
83
- "eslint": "^9.39.4",
84
- "eslint-plugin-github": "^6.1.0",
103
+ "eslint": "^9.39.5",
104
+ "eslint-plugin-github": "^6.1.1",
85
105
  "glob": "^11.1.0",
86
106
  "markdownlint-cli2": "^0.22.1",
87
107
  "mocha": "^11.7.6",
88
- "playwright": "^1.61.1",
89
- "postcss": "^8.5.16",
108
+ "playwright": "^1.62.0",
109
+ "postcss": "^8.5.24",
90
110
  "postcss-cli": "^11.0.1",
91
111
  "postcss-import": "^16.1.1",
92
112
  "postcss-mixins": "^12.1.2",
93
113
  "postcss-preset-env": "^11.3.2",
94
- "prettier": "^3.9.5",
114
+ "prettier": "^3.9.6",
95
115
  "rollup": "^2.80.0",
96
116
  "rollup-plugin-terser": "^7.0.2",
97
117
  "stylelint-actions-formatters": "^16.3.1",
98
118
  "tslib": "^2.8.1",
99
119
  "typescript": "^6.0.3",
100
- "vite": "^8.1.4",
120
+ "vite": "^8.1.5",
101
121
  "vite-plugin-ruby": "^5.2.2"
102
122
  },
103
123
  "prettier": "@github/prettier-config",
@@ -566,6 +566,9 @@
566
566
  "Popover-message": [
567
567
  "Primer::Beta::Popover"
568
568
  ],
569
+ "Popover-message--bottom": [
570
+ "Primer::Beta::Popover"
571
+ ],
569
572
  "Popover-message--bottom-left": [
570
573
  "Primer::Beta::Popover"
571
574
  ],
@@ -575,9 +578,27 @@
575
578
  "Popover-message--large": [
576
579
  "Primer::Beta::Popover"
577
580
  ],
581
+ "Popover-message--left": [
582
+ "Primer::Beta::Popover"
583
+ ],
584
+ "Popover-message--left-bottom": [
585
+ "Primer::Beta::Popover"
586
+ ],
587
+ "Popover-message--left-top": [
588
+ "Primer::Beta::Popover"
589
+ ],
578
590
  "Popover-message--no-caret": [
579
591
  "Primer::Beta::Popover"
580
592
  ],
593
+ "Popover-message--right": [
594
+ "Primer::Beta::Popover"
595
+ ],
596
+ "Popover-message--right-bottom": [
597
+ "Primer::Beta::Popover"
598
+ ],
599
+ "Popover-message--right-top": [
600
+ "Primer::Beta::Popover"
601
+ ],
581
602
  "Popover-message--top-left": [
582
603
  "Primer::Beta::Popover"
583
604
  ],
@@ -0,0 +1,516 @@
1
+ module.exports = new Set([
2
+ 'ActionBar',
3
+ 'ActionBar--large',
4
+ 'ActionBar--small',
5
+ 'ActionBar-divider',
6
+ 'ActionBar-item',
7
+ 'ActionBar-item-container',
8
+ 'ActionBar-more-menu',
9
+ 'ActionList--subGroup',
10
+ 'ActionList-sectionDivider',
11
+ 'ActionList-sectionDivider--filled',
12
+ 'ActionList-sectionDivider-title',
13
+ 'ActionList-sectionDivider-trailingVisual',
14
+ 'ActionList-sectionDividerHeader',
15
+ 'ActionListContent',
16
+ 'ActionListContent--blockDescription',
17
+ 'ActionListContent--hasActiveSubItem',
18
+ 'ActionListContent--sizeLarge',
19
+ 'ActionListContent--sizeXLarge',
20
+ 'ActionListHeader',
21
+ 'ActionListItem',
22
+ 'ActionListItem--danger',
23
+ 'ActionListItem--hasSubItem',
24
+ 'ActionListItem--navActive',
25
+ 'ActionListItem--subItem',
26
+ 'ActionListItem--trailingActionHover',
27
+ 'ActionListItem--withActions',
28
+ 'ActionListItem-action',
29
+ 'ActionListItem-action--leading',
30
+ 'ActionListItem-action--trailing',
31
+ 'ActionListItem-collapseIcon',
32
+ 'ActionListItem-description',
33
+ 'ActionListItem-descriptionWrap',
34
+ 'ActionListItem-descriptionWrap--inline',
35
+ 'ActionListItem-label',
36
+ 'ActionListItem-label--truncate',
37
+ 'ActionListItem-singleSelectCheckmark',
38
+ 'ActionListItem-trailingAction',
39
+ 'ActionListItem-visual',
40
+ 'ActionListItem-visual--leading',
41
+ 'ActionListItem-visual--trailing',
42
+ 'ActionListWrap',
43
+ 'ActionListWrap--divided',
44
+ 'ActionListWrap--inset',
45
+ 'AvatarStack',
46
+ 'AvatarStack--right',
47
+ 'AvatarStack--three-plus',
48
+ 'AvatarStack--two',
49
+ 'AvatarStack-body',
50
+ 'Banner',
51
+ 'Banner--error',
52
+ 'Banner--full',
53
+ 'Banner--full-whenNarrow',
54
+ 'Banner--success',
55
+ 'Banner--upsell',
56
+ 'Banner--warning',
57
+ 'Banner-actions',
58
+ 'Banner-close',
59
+ 'Banner-message',
60
+ 'Banner-title',
61
+ 'Banner-visual',
62
+ 'BorderGrid',
63
+ 'BorderGrid--spacious',
64
+ 'BorderGrid-cell',
65
+ 'BorderGrid-row',
66
+ 'Box',
67
+ 'Box--blue',
68
+ 'Box--condensed',
69
+ 'Box--danger',
70
+ 'Box--scrollable',
71
+ 'Box--spacious',
72
+ 'Box-body',
73
+ 'Box-btn-octicon',
74
+ 'Box-footer',
75
+ 'Box-header',
76
+ 'Box-header--blue',
77
+ 'Box-list',
78
+ 'Box-row',
79
+ 'Box-row--blue',
80
+ 'Box-row--drag-button',
81
+ 'Box-row--drag-hide',
82
+ 'Box-row--focus-blue',
83
+ 'Box-row--focus-gray',
84
+ 'Box-row--gray',
85
+ 'Box-row--hover-blue',
86
+ 'Box-row--hover-gray',
87
+ 'Box-row--unread',
88
+ 'Box-row--yellow',
89
+ 'Box-row-link',
90
+ 'Box-title',
91
+ 'Button',
92
+ 'Button--danger',
93
+ 'Button--fullWidth',
94
+ 'Button--iconOnly',
95
+ 'Button--inactive',
96
+ 'Button--invisible',
97
+ 'Button--invisible-noVisuals',
98
+ 'Button--labelWrap',
99
+ 'Button--large',
100
+ 'Button--link',
101
+ 'Button--medium',
102
+ 'Button--primary',
103
+ 'Button--secondary',
104
+ 'Button--small',
105
+ 'Button-content',
106
+ 'Button-content--alignStart',
107
+ 'Button-label',
108
+ 'Button-leadingVisual',
109
+ 'Button-trailingAction',
110
+ 'Button-trailingVisual',
111
+ 'Button-visual',
112
+ 'ButtonGroup',
113
+ 'CollapsibleHeader',
114
+ 'CollapsibleHeader--multi-line',
115
+ 'CollapsibleHeader-description',
116
+ 'CollapsibleHeader-title-line',
117
+ 'CollapsibleHeader-triggerArea',
118
+ 'CollapsibleSection--triggerArea',
119
+ 'Counter',
120
+ 'Counter--primary',
121
+ 'Counter--secondary',
122
+ 'DragHandle',
123
+ 'FilterableTreeViewLayout',
124
+ 'FilterableTreeViewLoadingSkeleton',
125
+ 'FilterableTreeViewTreeContainer',
126
+ 'FormControl',
127
+ 'FormControl--fullWidth',
128
+ 'FormControl-caption',
129
+ 'FormControl-check-group-wrap',
130
+ 'FormControl-checkbox',
131
+ 'FormControl-checkbox-labelWrap',
132
+ 'FormControl-checkbox-wrap',
133
+ 'FormControl-error',
134
+ 'FormControl-horizontalGroup',
135
+ 'FormControl-inlineValidation',
136
+ 'FormControl-inlineValidation--success',
137
+ 'FormControl-inlineValidation--visual',
138
+ 'FormControl-input',
139
+ 'FormControl-input-leadingVisual',
140
+ 'FormControl-input-leadingVisualWrap',
141
+ 'FormControl-input-trailingAction',
142
+ 'FormControl-input-trailingAction--divider',
143
+ 'FormControl-input-trailingVisualLabel',
144
+ 'FormControl-input-trailingVisualWrap',
145
+ 'FormControl-input-width--auto',
146
+ 'FormControl-input-width--large',
147
+ 'FormControl-input-width--medium',
148
+ 'FormControl-input-width--small',
149
+ 'FormControl-input-width--xlarge',
150
+ 'FormControl-input-width--xsmall',
151
+ 'FormControl-input-width--xxlarge',
152
+ 'FormControl-input-wrap',
153
+ 'FormControl-input-wrap--large',
154
+ 'FormControl-input-wrap--leadingVisual',
155
+ 'FormControl-input-wrap--small',
156
+ 'FormControl-input-wrap--trailingAction',
157
+ 'FormControl-input-wrap--trailingLabel',
158
+ 'FormControl-input-wrap--trailingText',
159
+ 'FormControl-input-wrap--trailingVisual',
160
+ 'FormControl-input-wrap-trailingAction--divider',
161
+ 'FormControl-inset',
162
+ 'FormControl-label',
163
+ 'FormControl-large',
164
+ 'FormControl-medium',
165
+ 'FormControl-monospace',
166
+ 'FormControl-radio',
167
+ 'FormControl-radio-group-wrap',
168
+ 'FormControl-radio-labelWrap',
169
+ 'FormControl-radio-wrap',
170
+ 'FormControl-select',
171
+ 'FormControl-select-wrap',
172
+ 'FormControl-small',
173
+ 'FormControl-spacingWrapper',
174
+ 'FormControl-success',
175
+ 'FormControl-textarea',
176
+ 'FormControl-toggleSwitchInput',
177
+ 'FormControl-warning',
178
+ 'InlineMessage',
179
+ 'InlineMessageIcon',
180
+ 'InputGroup',
181
+ 'InputGroup-input-width--auto',
182
+ 'InputGroup-input-width--large',
183
+ 'InputGroup-input-width--medium',
184
+ 'InputGroup-input-width--small',
185
+ 'InputGroup-input-width--xlarge',
186
+ 'InputGroup-input-width--xsmall',
187
+ 'InputGroup-input-width--xxlarge',
188
+ 'Label',
189
+ 'Label--accent',
190
+ 'Label--attention',
191
+ 'Label--closed',
192
+ 'Label--danger',
193
+ 'Label--done',
194
+ 'Label--info',
195
+ 'Label--inline',
196
+ 'Label--large',
197
+ 'Label--open',
198
+ 'Label--primary',
199
+ 'Label--secondary',
200
+ 'Label--severe',
201
+ 'Label--sponsors',
202
+ 'Label--success',
203
+ 'Label--warning',
204
+ 'Layout',
205
+ 'Layout--divided',
206
+ 'Layout--flowRow-until-lg',
207
+ 'Layout--flowRow-until-md',
208
+ 'Layout--gutter-condensed',
209
+ 'Layout--gutter-none',
210
+ 'Layout--gutter-spacious',
211
+ 'Layout--sidebar-narrow',
212
+ 'Layout--sidebar-wide',
213
+ 'Layout--sidebarPosition-end',
214
+ 'Layout--sidebarPosition-flowRow-end',
215
+ 'Layout--sidebarPosition-flowRow-none',
216
+ 'Layout--sidebarPosition-flowRow-start',
217
+ 'Layout--sidebarPosition-start',
218
+ 'Layout-divider',
219
+ 'Layout-divider--flowRow-hidden',
220
+ 'Layout-divider--flowRow-shallow',
221
+ 'Layout-main',
222
+ 'Layout-main-centered-lg',
223
+ 'Layout-main-centered-md',
224
+ 'Layout-main-centered-xl',
225
+ 'Layout-sidebar',
226
+ 'Link',
227
+ 'Link--muted',
228
+ 'Link--onHover',
229
+ 'Link--primary',
230
+ 'Link--secondary',
231
+ 'Link--underline',
232
+ 'Link-content',
233
+ 'Overlay',
234
+ 'Overlay--full',
235
+ 'Overlay--full-whenNarrow',
236
+ 'Overlay--fullscreen-whenNarrow',
237
+ 'Overlay--height-auto',
238
+ 'Overlay--height-large',
239
+ 'Overlay--height-medium',
240
+ 'Overlay--height-small',
241
+ 'Overlay--height-xlarge',
242
+ 'Overlay--height-xsmall',
243
+ 'Overlay--hidden',
244
+ 'Overlay--motion-scaleFade',
245
+ 'Overlay--placement-bottom-whenNarrow',
246
+ 'Overlay--placement-left',
247
+ 'Overlay--placement-left-whenNarrow',
248
+ 'Overlay--placement-right',
249
+ 'Overlay--placement-right-whenNarrow',
250
+ 'Overlay--size-auto',
251
+ 'Overlay--size-full',
252
+ 'Overlay--size-large',
253
+ 'Overlay--size-medium',
254
+ 'Overlay--size-medium-portrait',
255
+ 'Overlay--size-small',
256
+ 'Overlay--size-small-portrait',
257
+ 'Overlay--size-xlarge',
258
+ 'Overlay--size-xsmall',
259
+ 'Overlay--visibilityHidden',
260
+ 'Overlay--width-auto',
261
+ 'Overlay--width-large',
262
+ 'Overlay--width-medium',
263
+ 'Overlay--width-small',
264
+ 'Overlay--width-xlarge',
265
+ 'Overlay--width-xxlarge',
266
+ 'Overlay-actionWrap',
267
+ 'Overlay-body',
268
+ 'Overlay-body--paddingCondensed',
269
+ 'Overlay-body--paddingNone',
270
+ 'Overlay-closeButton',
271
+ 'Overlay-description',
272
+ 'Overlay-footer',
273
+ 'Overlay-footer--alignCenter',
274
+ 'Overlay-footer--alignEnd',
275
+ 'Overlay-footer--alignStart',
276
+ 'Overlay-footer--divided',
277
+ 'Overlay-form',
278
+ 'Overlay-header',
279
+ 'Overlay-header--divided',
280
+ 'Overlay-headerContentWrap',
281
+ 'Overlay-headerFilter',
282
+ 'Overlay-title',
283
+ 'Overlay-titleWrap',
284
+ 'Page',
285
+ 'PageHeader',
286
+ 'PageHeader--noBreadcrumb',
287
+ 'PageHeader--withTabNav',
288
+ 'PageHeader-actions',
289
+ 'PageHeader-breadcrumbs',
290
+ 'PageHeader-contextBar',
291
+ 'PageHeader-description',
292
+ 'PageHeader-description--underlined-links',
293
+ 'PageHeader-leadingAction',
294
+ 'PageHeader-parentLink',
295
+ 'PageHeader-tabNav',
296
+ 'PageHeader-tabNavBar',
297
+ 'PageHeader-title',
298
+ 'PageHeader-title--large',
299
+ 'PageHeader-titleBar',
300
+ 'PaginationContainer',
301
+ 'Popover',
302
+ 'Popover-message',
303
+ 'Popover-message--bottom',
304
+ 'Popover-message--bottom-left',
305
+ 'Popover-message--bottom-right',
306
+ 'Popover-message--large',
307
+ 'Popover-message--left',
308
+ 'Popover-message--left-bottom',
309
+ 'Popover-message--left-top',
310
+ 'Popover-message--no-caret',
311
+ 'Popover-message--right',
312
+ 'Popover-message--right-bottom',
313
+ 'Popover-message--right-top',
314
+ 'Popover-message--top-left',
315
+ 'Popover-message--top-right',
316
+ 'Progress',
317
+ 'Progress--large',
318
+ 'Progress--small',
319
+ 'Progress-item',
320
+ 'SegmentedControl',
321
+ 'SegmentedControl--fullWidth',
322
+ 'SegmentedControl--iconOnly',
323
+ 'SegmentedControl--medium',
324
+ 'SegmentedControl--small',
325
+ 'SegmentedControl-item',
326
+ 'SegmentedControl-item--selected',
327
+ 'SelectPanel-emptyPanel',
328
+ 'SelectPanel-loadingPanel',
329
+ 'SidePanel-sectionAction',
330
+ 'SidePanel-sectionContent',
331
+ 'SidePanel-sectionCounter',
332
+ 'SidePanel-sectionDescription',
333
+ 'SidePanel-sectionHeader',
334
+ 'SkeletonBox',
335
+ 'Stack',
336
+ 'StackItem',
337
+ 'State',
338
+ 'State--closed',
339
+ 'State--draft',
340
+ 'State--merged',
341
+ 'State--open',
342
+ 'State--small',
343
+ 'SubHeader',
344
+ 'SubHeader--emptyLeftPane',
345
+ 'SubHeader--expandedSearch',
346
+ 'SubHeader-bottomPane',
347
+ 'SubHeader-filterContainer',
348
+ 'SubHeader-filterInput_hiddenClearButton',
349
+ 'SubHeader-hiddenOnExpand',
350
+ 'SubHeader-leftPane',
351
+ 'SubHeader-middlePane',
352
+ 'SubHeader-rightPane',
353
+ 'Subhead',
354
+ 'Subhead--spacious',
355
+ 'Subhead-actions',
356
+ 'Subhead-description',
357
+ 'Subhead-heading',
358
+ 'Subhead-heading--danger',
359
+ 'Subhead-heading--large',
360
+ 'Subhead-heading--medium',
361
+ 'TimelineItem',
362
+ 'TimelineItem--condensed',
363
+ 'TimelineItem-avatar',
364
+ 'TimelineItem-badge',
365
+ 'TimelineItem-badge--success',
366
+ 'TimelineItem-body',
367
+ 'TimelineItem-break',
368
+ 'ToggleSwitch',
369
+ 'ToggleSwitch--checked',
370
+ 'ToggleSwitch--disabled',
371
+ 'ToggleSwitch--small',
372
+ 'ToggleSwitch--statusAtEnd',
373
+ 'ToggleSwitch-circleIcon',
374
+ 'ToggleSwitch-icons',
375
+ 'ToggleSwitch-knob',
376
+ 'ToggleSwitch-lineIcon',
377
+ 'ToggleSwitch-status',
378
+ 'ToggleSwitch-statusIcon',
379
+ 'ToggleSwitch-statusOff',
380
+ 'ToggleSwitch-statusOn',
381
+ 'ToggleSwitch-track',
382
+ 'TreeItemSkeletonTextStyles',
383
+ 'TreeViewFailureMessage',
384
+ 'TreeViewItem',
385
+ 'TreeViewItem-singleSelectCheckmark',
386
+ 'TreeViewItemCheckbox',
387
+ 'TreeViewItemContainer',
388
+ 'TreeViewItemContent',
389
+ 'TreeViewItemContentText',
390
+ 'TreeViewItemLeadingAction',
391
+ 'TreeViewItemLevelLine',
392
+ 'TreeViewItemToggle',
393
+ 'TreeViewItemToggleEnd',
394
+ 'TreeViewItemToggleHover',
395
+ 'TreeViewItemTrailingAction',
396
+ 'TreeViewItemVisual',
397
+ 'TreeViewRootUlStyles',
398
+ 'TreeViewSkeletonItemContainerStyle',
399
+ 'TreeViewVisuallyHidden',
400
+ 'Truncate',
401
+ 'Truncate-text',
402
+ 'Truncate-text--expandable',
403
+ 'Truncate-text--primary',
404
+ 'UnderlineNav',
405
+ 'UnderlineNav--full',
406
+ 'UnderlineNav--right',
407
+ 'UnderlineNav-actions',
408
+ 'UnderlineNav-body',
409
+ 'UnderlineNav-container',
410
+ 'UnderlineNav-item',
411
+ 'UnderlineNav-octicon',
412
+ 'alert',
413
+ 'autocomplete-body',
414
+ 'autocomplete-embedded-icon-wrap',
415
+ 'autocomplete-item',
416
+ 'autocomplete-label-inline',
417
+ 'autocomplete-label-stacked',
418
+ 'autocomplete-results',
419
+ 'avatar',
420
+ 'avatar-1',
421
+ 'avatar-2',
422
+ 'avatar-3',
423
+ 'avatar-4',
424
+ 'avatar-5',
425
+ 'avatar-6',
426
+ 'avatar-7',
427
+ 'avatar-8',
428
+ 'avatar-group-item',
429
+ 'avatar-link',
430
+ 'avatar-more',
431
+ 'avatar-small',
432
+ 'blankslate',
433
+ 'blankslate-action',
434
+ 'blankslate-capped',
435
+ 'blankslate-clean-background',
436
+ 'blankslate-container',
437
+ 'blankslate-description',
438
+ 'blankslate-heading',
439
+ 'blankslate-icon',
440
+ 'blankslate-image',
441
+ 'blankslate-large',
442
+ 'blankslate-narrow',
443
+ 'blankslate-spacious',
444
+ 'breadcrumb-item',
445
+ 'breadcrumb-item-selected',
446
+ 'btn',
447
+ 'btn-large-mktg',
448
+ 'btn-link',
449
+ 'btn-mktg',
450
+ 'btn-muted-mktg',
451
+ 'btn-octicon',
452
+ 'btn-primary',
453
+ 'btn-signup-mktg',
454
+ 'btn-small-mktg',
455
+ 'btn-subtle-mktg',
456
+ 'close-button',
457
+ 'container-lg',
458
+ 'container-md',
459
+ 'container-xl',
460
+ 'css-truncate',
461
+ 'css-truncate-overflow',
462
+ 'css-truncate-target',
463
+ 'disabled',
464
+ 'dropdown',
465
+ 'dropdown-caret',
466
+ 'dropdown-divider',
467
+ 'dropdown-header',
468
+ 'dropdown-item',
469
+ 'dropdown-menu',
470
+ 'dropdown-menu-e',
471
+ 'dropdown-menu-ne',
472
+ 'dropdown-menu-no-overflow',
473
+ 'dropdown-menu-s',
474
+ 'dropdown-menu-se',
475
+ 'dropdown-menu-sw',
476
+ 'dropdown-menu-w',
477
+ 'dropdown-signout',
478
+ 'expandable',
479
+ 'flash',
480
+ 'flash-action',
481
+ 'flash-banner',
482
+ 'flash-close',
483
+ 'flash-error',
484
+ 'flash-full',
485
+ 'flash-messages',
486
+ 'flash-success',
487
+ 'flash-warn',
488
+ 'form--label',
489
+ 'form--select',
490
+ 'form-control',
491
+ 'has-modal',
492
+ 'has-modal-disable-scroll',
493
+ 'is-dragging',
494
+ 'label',
495
+ 'labels',
496
+ 'menu',
497
+ 'menu-heading',
498
+ 'menu-item',
499
+ 'menu-warning',
500
+ 'navigation-focus',
501
+ 'not-anchored',
502
+ 'octicon',
503
+ 'octicon-check',
504
+ 'selected',
505
+ 'sortable-chosen',
506
+ 'sortable-ghost',
507
+ 'state',
508
+ 'tabnav',
509
+ 'tabnav-btn',
510
+ 'tabnav-extra',
511
+ 'tabnav-tab',
512
+ 'tabnav-tabs',
513
+ 'unread',
514
+ 'warning',
515
+ 'zeroclipboard-is-hover',
516
+ ])
@@ -0,0 +1,2 @@
1
+ declare const classNames: Set<string>
2
+ export default classNames