openproject-primer_view_components 0.22.2 → 0.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +53 -0
- data/app/assets/javascripts/app/components/primer/alpha/action_list.d.ts +16 -0
- data/app/assets/javascripts/app/components/primer/beta/nav_list.d.ts +3 -0
- data/app/assets/javascripts/app/components/primer/primer.d.ts +1 -0
- data/app/assets/javascripts/primer_view_components.js +1 -1
- data/app/assets/javascripts/primer_view_components.js.map +1 -1
- data/app/assets/styles/primer_view_components.css +1 -1
- data/app/assets/styles/primer_view_components.css.map +1 -1
- data/app/components/primer/alpha/action_bar_element.js +4 -6
- data/app/components/primer/alpha/action_list/item.rb +19 -6
- data/app/components/primer/alpha/action_list.css +1 -1
- data/app/components/primer/alpha/action_list.css.json +2 -0
- data/app/components/primer/alpha/action_list.css.map +1 -1
- data/app/components/primer/alpha/action_list.d.ts +16 -0
- data/app/components/primer/alpha/action_list.html.erb +19 -17
- data/app/components/primer/alpha/action_list.js +69 -0
- data/app/components/primer/alpha/action_list.pcss +8 -0
- data/app/components/primer/alpha/action_list.ts +58 -0
- data/app/components/primer/alpha/action_menu/action_menu_element.js +12 -19
- data/app/components/primer/alpha/banner.css +1 -1
- data/app/components/primer/alpha/banner.css.map +1 -1
- data/app/components/primer/alpha/banner.pcss +4 -4
- data/app/components/primer/alpha/banner.rb +17 -3
- data/app/components/primer/alpha/dialog.css +1 -1
- data/app/components/primer/alpha/dialog.css.json +2 -0
- data/app/components/primer/alpha/dialog.css.map +1 -1
- data/app/components/primer/alpha/dialog.pcss +9 -0
- data/app/components/primer/alpha/dropdown.css +1 -1
- data/app/components/primer/alpha/dropdown.css.map +1 -1
- data/app/components/primer/alpha/dropdown.pcss +1 -1
- data/app/components/primer/alpha/modal_dialog.js +8 -10
- data/app/components/primer/alpha/segmented_control.js +2 -3
- data/app/components/primer/alpha/text_field.css +1 -1
- data/app/components/primer/alpha/text_field.css.json +2 -0
- data/app/components/primer/alpha/text_field.css.map +1 -1
- data/app/components/primer/alpha/text_field.pcss +10 -0
- data/app/components/primer/alpha/toggle_switch.rb +2 -2
- data/app/components/primer/alpha/tool_tip.js +5 -7
- data/app/components/primer/beta/auto_complete/auto_complete.html.erb +9 -9
- data/app/components/primer/beta/breadcrumbs.css +1 -1
- data/app/components/primer/beta/breadcrumbs.css.map +1 -1
- data/app/components/primer/beta/breadcrumbs.pcss +3 -1
- data/app/components/primer/beta/button.css +1 -1
- data/app/components/primer/beta/button.css.json +1 -1
- data/app/components/primer/beta/button.css.map +1 -1
- data/app/components/primer/beta/button.pcss +5 -5
- data/app/components/primer/beta/button_group.rb +53 -1
- data/app/components/primer/beta/flash.css +1 -1
- data/app/components/primer/beta/flash.css.map +1 -1
- data/app/components/primer/beta/flash.pcss +4 -4
- data/app/components/primer/beta/flash.rb +3 -1
- data/app/components/primer/beta/nav_list.d.ts +3 -0
- data/app/components/primer/beta/nav_list.html.erb +1 -1
- data/app/components/primer/beta/nav_list.js +31 -12
- data/app/components/primer/beta/nav_list.ts +18 -1
- data/app/components/primer/beta/nav_list_group_element.js +6 -4
- data/app/components/primer/beta/nav_list_group_element.ts +3 -0
- data/app/components/primer/beta/popover.css +1 -1
- data/app/components/primer/beta/popover.css.map +1 -1
- data/app/components/primer/beta/popover.pcss +3 -0
- data/app/components/primer/beta/popover.rb +0 -1
- data/app/components/primer/dialog_helper.js +5 -7
- data/app/components/primer/focus_group.js +9 -12
- data/app/components/primer/open_project/page_header.css +1 -1
- data/app/components/primer/open_project/page_header.css.json +2 -4
- data/app/components/primer/open_project/page_header.css.map +1 -1
- data/app/components/primer/open_project/page_header.html.erb +15 -3
- data/app/components/primer/open_project/page_header.pcss +4 -17
- data/app/components/primer/open_project/page_header.rb +17 -28
- data/app/components/primer/primer.d.ts +1 -0
- data/app/components/primer/primer.js +1 -0
- data/app/components/primer/primer.ts +1 -0
- data/app/forms/auto_complete_form.rb +18 -0
- data/app/forms/select_form.rb +10 -0
- data/lib/primer/deprecations.yml +5 -0
- data/lib/primer/forms/auto_complete.html.erb +6 -0
- data/lib/primer/forms/auto_complete.rb +56 -0
- data/lib/primer/forms/builder.rb +19 -0
- data/lib/primer/forms/check_box_group.html.erb +4 -4
- data/lib/primer/forms/check_box_group.rb +0 -3
- data/lib/primer/forms/dsl/auto_complete_input.rb +33 -0
- data/lib/primer/forms/dsl/check_box_group_input.rb +8 -0
- data/lib/primer/forms/dsl/input.rb +8 -2
- data/lib/primer/forms/dsl/input_methods.rb +9 -0
- data/lib/primer/forms/dsl/radio_button_group_input.rb +8 -0
- data/lib/primer/forms/dsl/select_input.rb +5 -1
- data/lib/primer/forms/form_control.rb +1 -2
- data/lib/primer/forms/primer_multi_input.js +2 -3
- data/lib/primer/forms/primer_text_field.js +4 -6
- data/lib/primer/forms/primer_text_field.ts +2 -2
- data/lib/primer/forms/radio_button_group.html.erb +4 -4
- data/lib/primer/forms/radio_button_group.rb +0 -3
- data/lib/primer/forms/select.html.erb +1 -0
- data/lib/primer/forms/select.rb +9 -5
- data/lib/primer/view_components/version.rb +2 -2
- data/previews/primer/alpha/action_list_preview.rb +42 -0
- data/previews/primer/alpha/select_preview.rb +12 -1
- data/previews/primer/alpha/text_area_preview.rb +7 -1
- data/previews/primer/alpha/text_field_preview.rb +7 -1
- data/previews/primer/beta/button_group_preview/with_menu_button.html.erb +7 -0
- data/previews/primer/beta/button_group_preview.rb +6 -0
- data/previews/primer/beta/nav_list_preview.rb +43 -0
- data/previews/primer/forms_preview/auto_complete_form.html.erb +3 -0
- data/previews/primer/forms_preview/select_form.html.erb +1 -1
- data/previews/primer/forms_preview.rb +2 -0
- data/previews/primer/open_project/page_header_preview/actions.html.erb +9 -7
- data/previews/primer/open_project/page_header_preview/context_bar_actions.html.erb +8 -6
- data/previews/primer/open_project/page_header_preview/playground.html.erb +4 -4
- data/previews/primer/open_project/page_header_preview.rb +11 -15
- data/static/arguments.json +30 -8
- data/static/audited_at.json +1 -0
- data/static/classes.json +2 -5
- data/static/constants.json +25 -13
- data/static/info_arch.json +226 -25
- data/static/previews.json +161 -5
- data/static/statuses.json +2 -1
- metadata +12 -3
- data/previews/primer/beta/button_group_preview/action_menus.html.erb +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e01f862376137f5e925cd76fa9d1533a43e57766b9f010aec7b8b723411485c
|
4
|
+
data.tar.gz: c500a5dada1c608667e8f272d9054bb645a1386ed694227bd45a7ca0b66901e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8309b01ce25449e99c6580a7417a4d647893a4f09bef54cea961fd6f2ae0e3b7cfeca31d16c3cfbe3ac7dd156c095b43e20c0e9be9486aeddeb8c34296684b2
|
7
|
+
data.tar.gz: bca5107dc093c088264490e28c6126675e3d0984d0a3dd0b6dd61c3daf3fb6112ddb9f210d78c900c0c02f551eceddc80961bf6a89e24ad37a2fd6fb493f6094
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,58 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.24.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- [#2627](https://github.com/primer/view_components/pull/2627) [`226481e`](https://github.com/opf/primer_view_components/commit/226481e51e8c459dcd6d2a49d57c5005a8103aff) Thanks [@camertron](https://github.com/camertron)! - Support `<select>` elements that allow selecting multiple values
|
8
|
+
|
9
|
+
- [#2689](https://github.com/primer/view_components/pull/2689) [`a7f7dad`](https://github.com/opf/primer_view_components/commit/a7f7dad6170afc1dea1071639b5beb3aa20b7918) Thanks [@langermank](https://github.com/langermank)! - - Bug fix: inactive button colors
|
10
|
+
|
11
|
+
- Bug fix: double border/box-shadow on popover and dropdown
|
12
|
+
- Bug fix: text color for primary button in dark dimmed
|
13
|
+
|
14
|
+
- [#81](https://github.com/opf/primer_view_components/pull/81) [`b2011f7`](https://github.com/opf/primer_view_components/commit/b2011f7f2d26a9f364274454aa0f67803133873a) Thanks [@HDinger](https://github.com/HDinger)! - Move the implementation of Primer::OpenProject::PageHeader closer to the specification of Primer
|
15
|
+
|
16
|
+
- [#2610](https://github.com/primer/view_components/pull/2610) [`14890a3`](https://github.com/opf/primer_view_components/commit/14890a30c736a5a01596f0863e36d81861e6d6ac) Thanks [@thesnowrose](https://github.com/thesnowrose)! - Add the ability to show a tooltip for navlists on text truncation
|
17
|
+
|
18
|
+
- [#2609](https://github.com/primer/view_components/pull/2609) [`14d8dc5`](https://github.com/opf/primer_view_components/commit/14d8dc583541879eda26b7f1836d3df7c752507f) Thanks [@camertron](https://github.com/camertron)! - Add an AutoComplete form input
|
19
|
+
|
20
|
+
### Patch Changes
|
21
|
+
|
22
|
+
- [#2673](https://github.com/primer/view_components/pull/2673) [`3a6762d`](https://github.com/opf/primer_view_components/commit/3a6762db6a55b5f918b86c58ee835fe52e66eac3) Thanks [@camertron](https://github.com/camertron)! - Make text field and other form inputs respect the full_width: option
|
23
|
+
|
24
|
+
- [#2665](https://github.com/primer/view_components/pull/2665) [`c7c206a`](https://github.com/opf/primer_view_components/commit/c7c206a5f434ec023aec87623f0dc1e90902d3ee) Thanks [@langermank](https://github.com/langermank)! - Default IconButton text color `muted`
|
25
|
+
|
26
|
+
- [#2629](https://github.com/primer/view_components/pull/2629) [`862f05a`](https://github.com/opf/primer_view_components/commit/862f05ae7a751b87650c72616360cdbabb7504ee) Thanks [@camertron](https://github.com/camertron)! - Fix autofocus behavior for radio button and check box groups
|
27
|
+
|
28
|
+
- [#2642](https://github.com/primer/view_components/pull/2642) [`7f17b7c`](https://github.com/opf/primer_view_components/commit/7f17b7c1686cfa875ae75b58c8ff3245ea08eb24) Thanks [@tbenning](https://github.com/tbenning)! - Unify breadcrumbs
|
29
|
+
|
30
|
+
- [#2666](https://github.com/primer/view_components/pull/2666) [`53a3390`](https://github.com/opf/primer_view_components/commit/53a3390e897b5959e6d38f2f212ac773622c51f7) Thanks [@camertron](https://github.com/camertron)! - Make sure labels and form inputs are properly associated when a custom ID is provided
|
31
|
+
|
32
|
+
- [#2672](https://github.com/primer/view_components/pull/2672) [`f1ab24a`](https://github.com/opf/primer_view_components/commit/f1ab24ab59dd989ef21b0674b7b95189d7b50c2b) Thanks [@orhantoy](https://github.com/orhantoy)! - Fix documented options for ToggleSwitch size and status_label_position
|
33
|
+
|
34
|
+
- [#2643](https://github.com/primer/view_components/pull/2643) [`70a6dee`](https://github.com/opf/primer_view_components/commit/70a6dee654562b505ac17991a53d1039c57f81e3) Thanks [@langermank](https://github.com/langermank)! - Swap bg-gradient with bg-color for Banner/Flash
|
35
|
+
|
36
|
+
## 0.23.0
|
37
|
+
|
38
|
+
### Minor Changes
|
39
|
+
|
40
|
+
- [#2607](https://github.com/primer/view_components/pull/2607) [`1cf14e5`](https://github.com/opf/primer_view_components/commit/1cf14e5034b7461663a982a80c6756f09f4fa968) Thanks [@camertron](https://github.com/camertron)! - Add ability to attach action menus to button group buttons
|
41
|
+
|
42
|
+
- [#2626](https://github.com/primer/view_components/pull/2626) [`1160edf`](https://github.com/opf/primer_view_components/commit/1160edf76c72de4cc71f7b4ed435ebd336feb854) Thanks [@camertron](https://github.com/camertron)! - Upgrade to view_component v3.11.0
|
43
|
+
|
44
|
+
- [#2640](https://github.com/primer/view_components/pull/2640) [`56b2413`](https://github.com/opf/primer_view_components/commit/56b24139e7b58a337cf98203cf7a765adfd20414) Thanks [@khiga8](https://github.com/khiga8)! - Mark `Flash` as deprecated
|
45
|
+
|
46
|
+
- [#2604](https://github.com/primer/view_components/pull/2604) [`8d67631`](https://github.com/opf/primer_view_components/commit/8d67631298b6bbef8efb9acb2ced412253fe0d26) Thanks [@mattcosta7](https://github.com/mattcosta7)! - update tsconfig compile target
|
47
|
+
|
48
|
+
### Patch Changes
|
49
|
+
|
50
|
+
- [#2628](https://github.com/primer/view_components/pull/2628) [`5619810`](https://github.com/opf/primer_view_components/commit/56198108dfb38c1a2a2b52e6798bbbd3ba143090) Thanks [@langermank](https://github.com/langermank)! - Primitives v8 bug fix: `invisible` button hover state in high contrast themes
|
51
|
+
|
52
|
+
- [#2620](https://github.com/primer/view_components/pull/2620) [`59c3396`](https://github.com/opf/primer_view_components/commit/59c3396d4676947ffe98022dc8f7752eecf82cd0) Thanks [@khiga8](https://github.com/khiga8)! - Docs: update accessibility section of PVC Banner
|
53
|
+
|
54
|
+
- [#2611](https://github.com/primer/view_components/pull/2611) [`8c111df`](https://github.com/opf/primer_view_components/commit/8c111df3cbd0c8964ab2376c72db2dc72e288de7) Thanks [@lindseywild](https://github.com/lindseywild)! - Update README docs with instructions to preview docs site locally
|
55
|
+
|
3
56
|
## 0.22.2
|
4
57
|
|
5
58
|
### Patch Changes
|
@@ -0,0 +1,16 @@
|
|
1
|
+
export declare class ActionListTruncationObserver {
|
2
|
+
resizeObserver: ResizeObserver;
|
3
|
+
constructor(el: HTMLElement);
|
4
|
+
unobserve(el: HTMLElement): void;
|
5
|
+
update(el: HTMLElement): void;
|
6
|
+
}
|
7
|
+
export declare class ActionListElement extends HTMLElement {
|
8
|
+
#private;
|
9
|
+
connectedCallback(): void;
|
10
|
+
disconnectedCallback(): void;
|
11
|
+
}
|
12
|
+
declare global {
|
13
|
+
interface Window {
|
14
|
+
ActionListElement: typeof ActionListElement;
|
15
|
+
}
|
16
|
+
}
|
@@ -1,6 +1,9 @@
|
|
1
1
|
export declare class NavListElement extends HTMLElement {
|
2
2
|
#private;
|
3
3
|
items: HTMLElement[];
|
4
|
+
topLevelList: HTMLElement;
|
5
|
+
connectedCallback(): void;
|
6
|
+
disconnectedCallback(): void;
|
4
7
|
selectItemById(itemId: string | null): boolean;
|
5
8
|
selectItemByHref(href: string | null): boolean;
|
6
9
|
selectItemByCurrentLocation(): boolean;
|