primer_view_components 0.19.0 → 0.20.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +26 -0
  3. data/app/assets/javascripts/app/components/primer/alpha/action_list.d.ts +16 -0
  4. data/app/assets/javascripts/app/components/primer/beta/nav_list.d.ts +3 -0
  5. data/app/assets/javascripts/app/components/primer/primer.d.ts +1 -0
  6. data/app/assets/javascripts/primer_view_components.js +1 -1
  7. data/app/assets/javascripts/primer_view_components.js.map +1 -1
  8. data/app/assets/styles/primer_view_components.css +1 -1
  9. data/app/assets/styles/primer_view_components.css.map +1 -1
  10. data/app/components/primer/alpha/action_list/item.rb +19 -6
  11. data/app/components/primer/alpha/action_list.css +1 -1
  12. data/app/components/primer/alpha/action_list.css.json +2 -0
  13. data/app/components/primer/alpha/action_list.css.map +1 -1
  14. data/app/components/primer/alpha/action_list.d.ts +16 -0
  15. data/app/components/primer/alpha/action_list.html.erb +19 -17
  16. data/app/components/primer/alpha/action_list.js +69 -0
  17. data/app/components/primer/alpha/action_list.pcss +8 -0
  18. data/app/components/primer/alpha/action_list.ts +58 -0
  19. data/app/components/primer/alpha/banner.css +1 -1
  20. data/app/components/primer/alpha/banner.css.map +1 -1
  21. data/app/components/primer/alpha/banner.pcss +4 -4
  22. data/app/components/primer/alpha/dialog.css +1 -1
  23. data/app/components/primer/alpha/dialog.css.json +2 -0
  24. data/app/components/primer/alpha/dialog.css.map +1 -1
  25. data/app/components/primer/alpha/dialog.pcss +9 -0
  26. data/app/components/primer/alpha/text_field.css +1 -1
  27. data/app/components/primer/alpha/text_field.css.json +2 -0
  28. data/app/components/primer/alpha/text_field.css.map +1 -1
  29. data/app/components/primer/alpha/text_field.pcss +10 -0
  30. data/app/components/primer/alpha/toggle_switch.rb +2 -2
  31. data/app/components/primer/beta/auto_complete/auto_complete.html.erb +9 -9
  32. data/app/components/primer/beta/breadcrumbs.css +1 -1
  33. data/app/components/primer/beta/breadcrumbs.css.map +1 -1
  34. data/app/components/primer/beta/breadcrumbs.pcss +3 -1
  35. data/app/components/primer/beta/button.css +1 -1
  36. data/app/components/primer/beta/button.css.json +1 -0
  37. data/app/components/primer/beta/button.css.map +1 -1
  38. data/app/components/primer/beta/button.pcss +4 -0
  39. data/app/components/primer/beta/flash.css +1 -1
  40. data/app/components/primer/beta/flash.css.map +1 -1
  41. data/app/components/primer/beta/flash.pcss +4 -4
  42. data/app/components/primer/beta/nav_list.d.ts +3 -0
  43. data/app/components/primer/beta/nav_list.html.erb +1 -1
  44. data/app/components/primer/beta/nav_list.js +25 -2
  45. data/app/components/primer/beta/nav_list.ts +18 -1
  46. data/app/components/primer/beta/nav_list_group_element.js +4 -1
  47. data/app/components/primer/beta/nav_list_group_element.ts +3 -0
  48. data/app/components/primer/primer.d.ts +1 -0
  49. data/app/components/primer/primer.js +1 -0
  50. data/app/components/primer/primer.ts +1 -0
  51. data/app/forms/auto_complete_form.rb +18 -0
  52. data/app/forms/select_form.rb +10 -0
  53. data/lib/primer/forms/auto_complete.html.erb +6 -0
  54. data/lib/primer/forms/auto_complete.rb +56 -0
  55. data/lib/primer/forms/builder.rb +19 -0
  56. data/lib/primer/forms/check_box_group.html.erb +4 -4
  57. data/lib/primer/forms/check_box_group.rb +0 -3
  58. data/lib/primer/forms/dsl/auto_complete_input.rb +33 -0
  59. data/lib/primer/forms/dsl/check_box_group_input.rb +8 -0
  60. data/lib/primer/forms/dsl/input.rb +8 -2
  61. data/lib/primer/forms/dsl/input_methods.rb +9 -0
  62. data/lib/primer/forms/dsl/radio_button_group_input.rb +8 -0
  63. data/lib/primer/forms/dsl/select_input.rb +5 -1
  64. data/lib/primer/forms/form_control.rb +1 -2
  65. data/lib/primer/forms/primer_text_field.js +2 -2
  66. data/lib/primer/forms/primer_text_field.ts +2 -2
  67. data/lib/primer/forms/radio_button_group.html.erb +4 -4
  68. data/lib/primer/forms/radio_button_group.rb +0 -3
  69. data/lib/primer/forms/select.html.erb +1 -0
  70. data/lib/primer/forms/select.rb +9 -5
  71. data/lib/primer/view_components/version.rb +2 -2
  72. data/previews/primer/alpha/action_list_preview.rb +42 -0
  73. data/previews/primer/alpha/select_preview.rb +12 -1
  74. data/previews/primer/alpha/text_area_preview.rb +7 -1
  75. data/previews/primer/alpha/text_field_preview.rb +7 -1
  76. data/previews/primer/beta/nav_list_preview.rb +43 -0
  77. data/previews/primer/forms_preview/auto_complete_form.html.erb +3 -0
  78. data/previews/primer/forms_preview/select_form.html.erb +1 -1
  79. data/previews/primer/forms_preview.rb +2 -0
  80. data/static/arguments.json +7 -7
  81. data/static/constants.json +15 -0
  82. data/static/info_arch.json +150 -7
  83. data/static/previews.json +143 -0
  84. metadata +11 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abc35352b001e92e0b94cbab1e48c8a99fa49ae888ea4820f0be551cee3462b8
4
- data.tar.gz: 6be3193a81e8d5568cb966903d95badfbfae93a86367343d080e453adc3ed1c5
3
+ metadata.gz: 67cd538e5c6104975ae7377a3d629436c5d0a78d62709427eba5f20ff9c8106f
4
+ data.tar.gz: 44f0bbbdfbd0390aaedb2c3228824a010cea4b883d50e2b51e18d65cbf390397
5
5
  SHA512:
6
- metadata.gz: 5a68ec0b19edcaa3fdb92c8c3f94882f944cd6479c43db896de93a20f7341f31f496476e08b7e3a075882fb7afc1eb6f5c5bfe5b0717ce2efe6128100ba35781
7
- data.tar.gz: 9aa9117b1ab51178f39d401f7ff9330e9b3b0259598e92c7bf25575fd21ae11e5128aaed1687155038c1c91f834d8db9051ec98104e1212de37bca0c9e9225be
6
+ metadata.gz: 6cde777b3aadd799dd73ccf29c730c951e585dd592f3acc3a3dd9538834b40b595d899a39867503fa88f270fb1ea60488c1f4f88439bc44f484b98293db736cb
7
+ data.tar.gz: c06bbf9fc61866111a8ca0be763120c41b1b15df4d93381aecae7b75df966d5d0412c47ec24f6fc1e636548ecea37576c165168d87cd6a9f43b2572355bd3411
data/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.20.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#2627](https://github.com/primer/view_components/pull/2627) [`226481e`](https://github.com/primer/view_components/commit/226481e51e8c459dcd6d2a49d57c5005a8103aff) Thanks [@camertron](https://github.com/camertron)! - Support `<select>` elements that allow selecting multiple values
8
+
9
+ - [#2610](https://github.com/primer/view_components/pull/2610) [`14890a3`](https://github.com/primer/view_components/commit/14890a30c736a5a01596f0863e36d81861e6d6ac) Thanks [@thesnowrose](https://github.com/thesnowrose)! - Add the ability to show a tooltip for navlists on text truncation
10
+
11
+ - [#2609](https://github.com/primer/view_components/pull/2609) [`14d8dc5`](https://github.com/primer/view_components/commit/14d8dc583541879eda26b7f1836d3df7c752507f) Thanks [@camertron](https://github.com/camertron)! - Add an AutoComplete form input
12
+
13
+ ### Patch Changes
14
+
15
+ - [#2673](https://github.com/primer/view_components/pull/2673) [`3a6762d`](https://github.com/primer/view_components/commit/3a6762db6a55b5f918b86c58ee835fe52e66eac3) Thanks [@camertron](https://github.com/camertron)! - Make text field and other form inputs respect the full_width: option
16
+
17
+ - [#2665](https://github.com/primer/view_components/pull/2665) [`c7c206a`](https://github.com/primer/view_components/commit/c7c206a5f434ec023aec87623f0dc1e90902d3ee) Thanks [@langermank](https://github.com/langermank)! - Default IconButton text color `muted`
18
+
19
+ - [#2629](https://github.com/primer/view_components/pull/2629) [`862f05a`](https://github.com/primer/view_components/commit/862f05ae7a751b87650c72616360cdbabb7504ee) Thanks [@camertron](https://github.com/camertron)! - Fix autofocus behavior for radio button and check box groups
20
+
21
+ - [#2642](https://github.com/primer/view_components/pull/2642) [`7f17b7c`](https://github.com/primer/view_components/commit/7f17b7c1686cfa875ae75b58c8ff3245ea08eb24) Thanks [@tbenning](https://github.com/tbenning)! - Unify breadcrumbs
22
+
23
+ - [#2666](https://github.com/primer/view_components/pull/2666) [`53a3390`](https://github.com/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
24
+
25
+ - [#2672](https://github.com/primer/view_components/pull/2672) [`f1ab24a`](https://github.com/primer/view_components/commit/f1ab24ab59dd989ef21b0674b7b95189d7b50c2b) Thanks [@orhantoy](https://github.com/orhantoy)! - Fix documented options for ToggleSwitch size and status_label_position
26
+
27
+ - [#2643](https://github.com/primer/view_components/pull/2643) [`70a6dee`](https://github.com/primer/view_components/commit/70a6dee654562b505ac17991a53d1039c57f81e3) Thanks [@langermank](https://github.com/langermank)! - Swap bg-gradient with bg-color for Banner/Flash
28
+
3
29
  ## 0.19.0
4
30
 
5
31
  ### Minor 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;
@@ -1,4 +1,5 @@
1
1
  import '@github/include-fragment-element';
2
+ import './alpha/action_list';
2
3
  import './alpha/action_bar_element';
3
4
  import './alpha/dropdown';
4
5
  import './anchored_position';