primer_view_components 0.25.0 → 0.26.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +28 -0
  3. data/app/assets/javascripts/lib/primer/forms/primer_text_field.d.ts +27 -0
  4. data/app/assets/javascripts/primer_view_components.js +1 -1
  5. data/app/assets/javascripts/primer_view_components.js.map +1 -1
  6. data/app/assets/styles/primer_view_components.css +1 -1
  7. data/app/assets/styles/primer_view_components.css.map +1 -1
  8. data/app/components/primer/alpha/action_menu/action_menu_element.js +13 -43
  9. data/app/components/primer/alpha/action_menu/action_menu_element.ts +13 -51
  10. data/app/components/primer/alpha/tab_nav.css +1 -1
  11. data/app/components/primer/alpha/tab_nav.css.json +2 -0
  12. data/app/components/primer/alpha/tab_nav.css.map +1 -1
  13. data/app/components/primer/alpha/tab_nav.pcss +11 -1
  14. data/app/components/primer/alpha/tab_panels.html.erb +5 -9
  15. data/app/components/primer/alpha/tab_panels.rb +4 -13
  16. data/app/components/primer/alpha/text_field.rb +1 -0
  17. data/app/components/primer/alpha/underline_nav.css +1 -1
  18. data/app/components/primer/alpha/underline_nav.css.json +2 -0
  19. data/app/components/primer/alpha/underline_nav.css.map +1 -1
  20. data/app/components/primer/alpha/underline_nav.pcss +7 -1
  21. data/app/components/primer/alpha/underline_panels.css +1 -0
  22. data/app/components/primer/alpha/underline_panels.css.json +6 -0
  23. data/app/components/primer/alpha/underline_panels.css.map +1 -0
  24. data/app/components/primer/alpha/underline_panels.html.erb +6 -8
  25. data/app/components/primer/alpha/underline_panels.pcss +4 -0
  26. data/app/components/primer/alpha/underline_panels.rb +6 -14
  27. data/app/components/primer/beta/breadcrumbs.css +1 -1
  28. data/app/components/primer/beta/breadcrumbs.css.map +1 -1
  29. data/app/components/primer/beta/breadcrumbs.pcss +0 -1
  30. data/app/components/primer/beta/breadcrumbs.rb +3 -2
  31. data/app/components/primer/beta/icon_button.rb +5 -0
  32. data/app/components/primer/beta/relative_time.rb +3 -0
  33. data/app/components/primer/beta/spinner.html.erb +3 -0
  34. data/app/components/primer/beta/spinner.rb +15 -1
  35. data/app/components/primer/primer.pcss +1 -0
  36. data/lib/primer/forms/dsl/text_field_input.rb +8 -1
  37. data/lib/primer/forms/primer_text_field.d.ts +27 -0
  38. data/lib/primer/forms/primer_text_field.js +17 -5
  39. data/lib/primer/forms/primer_text_field.ts +24 -5
  40. data/lib/primer/forms/text_field.html.erb +6 -2
  41. data/lib/primer/view_components/version.rb +1 -1
  42. data/previews/primer/alpha/banner_preview.rb +1 -1
  43. data/previews/primer/alpha/text_field_preview.rb +13 -2
  44. data/previews/primer/beta/breadcrumbs_preview/with_beta_truncate.html.erb +15 -0
  45. data/previews/primer/beta/breadcrumbs_preview/with_deprecated_truncate.html.erb +14 -0
  46. data/previews/primer/beta/breadcrumbs_preview.rb +21 -0
  47. data/previews/primer/beta/icon_button_preview/summary_as_button.html.erb +12 -0
  48. data/previews/primer/beta/icon_button_preview.rb +95 -14
  49. data/previews/primer/beta/relative_time_preview/link_with_tooltip.html.erb +13 -0
  50. data/previews/primer/beta/relative_time_preview.rb +12 -0
  51. data/previews/primer/beta/spinner_preview.rb +2 -2
  52. data/static/arguments.json +12 -12
  53. data/static/constants.json +1 -0
  54. data/static/info_arch.json +104 -13
  55. data/static/previews.json +91 -0
  56. metadata +11 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c6fc03403ffbd0d032e2f8f0254ed541d9af82dcd17ee7509cccf9b86c57e495
4
- data.tar.gz: b8de5a6acc582ad3d5c2da370f3b56bf061f12b9bf9a7e5cfec1cbfc328cb3bb
3
+ metadata.gz: ca9c10f7e1499a994c2e0ecaf8ba221861b264666020bea67c783292fefa3759
4
+ data.tar.gz: 36b58e2e00f31196c8d0ece833ec849a1ebd680e2edf947f3f9eb7d3c47f5cbe
5
5
  SHA512:
6
- metadata.gz: f265b2e2abc5df38bd802e9960fd5bfe80ab780af9ac2f030973af66cec04b28458ade622d94c59ecdfa4dbdd60ae5012e631165194d90e3843051a5729c2a4e
7
- data.tar.gz: 2505a5bf9fad5e6bfe757248b3537bb7478cb0ad22762c89f2a28e305a56b0ae0424f1500cf4007f69dec1e8e0e625f2271965da96663b2ec7d9e710a5862013
6
+ metadata.gz: 8f759e2a8d2b86644e7f3a0c274c3ea539ae9c397edd41c37b7b67b13136f16672a844658e67dd1e535693f16144a0e3b99719312d470964bd2ef4bcb87dadea
7
+ data.tar.gz: ce9df0bf62169adf96203f11ba465109da991bc4696d7b2adc72fd45ec53c528c531925433c44b2ba4214a727a52b68b26905afa07827034ba7610af7a0ea03b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.26.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#2884](https://github.com/primer/view_components/pull/2884) [`85f6a01`](https://github.com/primer/view_components/commit/85f6a0193e6d7e8f5f1319d7454da16e1dd191ef) Thanks [@owenniblock](https://github.com/owenniblock)! - Adds default sr-only text to spinner component
8
+
9
+ - [#2855](https://github.com/primer/view_components/pull/2855) [`05159ca`](https://github.com/primer/view_components/commit/05159caa06f59bc679ce2dffcd2f7a69ff9871c8) Thanks [@keithamus](https://github.com/keithamus)! - Upgrade @github/tab-container, using shadowdom
10
+
11
+ - [#2887](https://github.com/primer/view_components/pull/2887) [`5589bcf`](https://github.com/primer/view_components/commit/5589bcfb50cf580690b4d8f46eb9f3ff031544ee) Thanks [@HDinger](https://github.com/HDinger)! - Add support for `target` attribute on links of Primer::Beta::Breadcrumbs
12
+
13
+ - [#2895](https://github.com/primer/view_components/pull/2895) [`bb1a15b`](https://github.com/primer/view_components/commit/bb1a15bc5109c76aee0608cdd9a087866df9424e) Thanks [@camertron](https://github.com/camertron)! - Add a leading spinner to the TextField component.
14
+
15
+ ### Patch Changes
16
+
17
+ - [#2872](https://github.com/primer/view_components/pull/2872) [`5445f2e`](https://github.com/primer/view_components/commit/5445f2e89e20326099fbe5d44b1b16a2c5cedcc3) Thanks [@smockle](https://github.com/smockle)! - chore: Update '@github/relative-time-element' from 4.4.0 to 4.4.1
18
+
19
+ - [#2885](https://github.com/primer/view_components/pull/2885) [`37727e3`](https://github.com/primer/view_components/commit/37727e34aabe6ae39450e56815d6efead3a803c4) Thanks [@camertron](https://github.com/camertron)! - Fix ActionMenu item activation by using PointerEvent instead of MouseEvent and KeyboardEvent.
20
+
21
+ - [#2904](https://github.com/primer/view_components/pull/2904) [`96307bf`](https://github.com/primer/view_components/commit/96307bf3c82f1f70d21b95c5a24759fcb1d70d23) Thanks [@camertron](https://github.com/camertron)! - Fix CSS issue causing scrollbars to appear in tabs
22
+
23
+ ## 0.25.1
24
+
25
+ ### Patch Changes
26
+
27
+ - [#2868](https://github.com/primer/view_components/pull/2868) [`18a0037`](https://github.com/primer/view_components/commit/18a00375a85ff6286c8245f7d6936a4a30243b8f) Thanks [@lumaxis](https://github.com/lumaxis)! - Remove non-existing argument in Banner preview
28
+
29
+ - [#2869](https://github.com/primer/view_components/pull/2869) [`18d5f21`](https://github.com/primer/view_components/commit/18d5f21f9423d261244dc906aff2909f0b769e9d) Thanks [@smockle](https://github.com/smockle)! - fix: Allow breadcrumb items to wrap.
30
+
3
31
  ## 0.25.0
4
32
 
5
33
  ### Minor Changes
@@ -1 +1,28 @@
1
1
  import '@github/auto-check-element';
2
+ import type { AutoCheckErrorEvent, AutoCheckSuccessEvent } from '@github/auto-check-element';
3
+ declare global {
4
+ interface HTMLElementEventMap {
5
+ 'auto-check-success': AutoCheckSuccessEvent;
6
+ 'auto-check-error': AutoCheckErrorEvent;
7
+ }
8
+ }
9
+ export declare class PrimerTextFieldElement extends HTMLElement {
10
+ #private;
11
+ inputElement: HTMLInputElement;
12
+ validationElement: HTMLElement;
13
+ validationMessageElement: HTMLElement;
14
+ validationSuccessIcon: HTMLElement;
15
+ validationErrorIcon: HTMLElement;
16
+ leadingVisual: HTMLElement;
17
+ leadingSpinner: HTMLElement;
18
+ connectedCallback(): void;
19
+ disconnectedCallback(): void;
20
+ clearContents(): void;
21
+ clearError(): void;
22
+ setValidationMessage(message: string): void;
23
+ toggleValidationStyling(isError: boolean): void;
24
+ setSuccess(message: string): void;
25
+ setError(message: string): void;
26
+ showLeadingSpinner(): void;
27
+ hideLeadingSpinner(): void;
28
+ }