@mixtint/primer-view-components 0.72.1 → 0.74.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.
- package/app/assets/javascripts/components/primer/alpha/tree_view/tree_view.d.ts +6 -2
- package/app/assets/javascripts/components/primer/alpha/tree_view/tree_view_sub_tree_node_element.d.ts +2 -0
- package/app/assets/javascripts/components/primer/open_project/danger_dialog_form_helper.d.ts +4 -0
- package/app/assets/javascripts/primer_view_components.js +1 -1
- package/app/assets/javascripts/primer_view_components.js.map +1 -1
- package/app/assets/styles/primer_view_components.css +24 -1
- package/app/assets/styles/primer_view_components.css.map +1 -1
- package/app/components/primer/alpha/action_list.css +14 -0
- package/app/components/primer/alpha/action_list.css.json +3 -0
- package/app/components/primer/alpha/select_panel_element.js +1 -2
- package/app/components/primer/alpha/tree_view/tree_view.d.ts +6 -2
- package/app/components/primer/alpha/tree_view/tree_view.js +52 -2
- package/app/components/primer/alpha/tree_view/tree_view_sub_tree_node_element.d.ts +2 -0
- package/app/components/primer/alpha/tree_view/tree_view_sub_tree_node_element.js +11 -0
- package/app/components/primer/alpha/tree_view.css +6 -0
- package/app/components/primer/alpha/tree_view.css.json +1 -0
- package/app/components/primer/open_project/danger_dialog_form_helper.d.ts +4 -0
- package/app/components/primer/open_project/danger_dialog_form_helper.js +19 -3
- package/app/components/primer/open_project/page_header.css +1 -1
- package/package.json +2 -2
- package/static/arguments.json +1 -1
- package/static/classes.json +6 -0
- package/static/constants.json +6 -2
- package/static/info_arch.json +60 -8
- package/static/previews.json +58 -6
- package/app/assets/images/loading_indicator.svg +0 -1
|
@@ -657,6 +657,23 @@ nav-list {
|
|
|
657
657
|
align-self: flex-start;
|
|
658
658
|
}
|
|
659
659
|
|
|
660
|
+
.ActionList-sectionDividerHeader {
|
|
661
|
+
display: flex;
|
|
662
|
+
align-items: center;
|
|
663
|
+
gap: var(--base-size-8);
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.ActionList-sectionDividerHeader .ActionList-sectionDivider-title {
|
|
667
|
+
align-self: baseline;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.ActionList-sectionDivider-trailingVisual {
|
|
671
|
+
display: inline-flex;
|
|
672
|
+
align-items: center;
|
|
673
|
+
margin-inline-start: auto;
|
|
674
|
+
flex-shrink: 0;
|
|
675
|
+
}
|
|
676
|
+
|
|
660
677
|
.ActionList-sectionDivider--filled {
|
|
661
678
|
/* stylelint-disable-next-line primer/spacing */
|
|
662
679
|
margin-block-start: calc(var(--base-size-8) - var(--borderWidth-thin));
|
|
@@ -4669,6 +4686,12 @@ a.tabnav-extra:hover {
|
|
|
4669
4686
|
animation: checkmarkIn 80ms cubic-bezier(0.65, 0, 0.35, 1) forwards 80ms;
|
|
4670
4687
|
}
|
|
4671
4688
|
|
|
4689
|
+
/* singleselect checkmark */
|
|
4690
|
+
|
|
4691
|
+
[aria-checked='false']:is(.TreeViewRootUlStyles .TreeViewItemContent) .TreeViewItem-singleSelectCheckmark {
|
|
4692
|
+
visibility: hidden;
|
|
4693
|
+
}
|
|
4694
|
+
|
|
4672
4695
|
[aria-checked='mixed']:is(.TreeViewRootUlStyles .TreeViewItemContent) .FormControl-checkbox {
|
|
4673
4696
|
background: var(--control-checked-bgColor-rest);
|
|
4674
4697
|
border-color: var(--control-checked-borderColor-rest);
|
|
@@ -7086,7 +7109,7 @@ select-panel dialog::backdrop {
|
|
|
7086
7109
|
.PageHeader-description {
|
|
7087
7110
|
font-size: var(--text-body-size-medium);
|
|
7088
7111
|
color: var(--fgColor-muted);
|
|
7089
|
-
flex: 1
|
|
7112
|
+
flex: 1 auto;
|
|
7090
7113
|
}
|
|
7091
7114
|
|
|
7092
7115
|
.PageHeader-description--underlined-links a {
|