openproject-primer_view_components 0.47.1 → 0.48.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e4811e39ec32a7a25b9c24ea1e19d377d90bfbf65be7280a9f81cf846d2118d5
4
- data.tar.gz: eeeca18b3da76233a0f8bca62d3006822f22eb80fe7b7315c798852ad8da8ebc
3
+ metadata.gz: da8d9d93476b49404e887ce45176c8b9ba2973a59605ec277b1333375acee142
4
+ data.tar.gz: 78231baeccce3039caea68069f2540b848c2707736d242a487ecb51977d4f24d
5
5
  SHA512:
6
- metadata.gz: cd469ef66897a448a7a9949fa52c1170483556a39fb18f2ee6b5f71d4753736b8d00efe4ed45598d4056f464edd2e382e62e15891014e3c6cd4ad91dddfc5108
7
- data.tar.gz: d0dc65a216a9dcfc5c8420fe8fc0768c84ba84527eef78981d26f591f4566f3785f9e5d380eaf4db48a3e75e4b5775e17ebb14d3aae4b34b75b46f8a6200503b
6
+ metadata.gz: b77b308b655d5619f550bdbff91209428001293b2b96d327e9f59ce6b71ae2e176021578ee35984ce683d4abd92885da9c9936a450e4d4c9ee012beff4a7fdfa
7
+ data.tar.gz: 95319f37448fdd75a8909fe25928e1f0dd971620dc3b542c0e669d2e7bfff7bd73c300b71a5dedcd2cd1c86131f4c80e4c5f1615d2f8df90e70632b17645a9bb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.48.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`7478ded`](https://github.com/opf/primer_view_components/commit/7478ded485a72f0a35754e4d01b6b1a2a62cc7dc) Thanks [@HDinger](https://github.com/HDinger)! - Change default for model in PageHeader title form to "false"
8
+
9
+ - [#195](https://github.com/opf/primer_view_components/pull/195) [`4e2d051`](https://github.com/opf/primer_view_components/commit/4e2d051f0ed93a95a690468184987caeebd4246d) Thanks [@bsatarnejad](https://github.com/bsatarnejad)! - [58256] Add a click event listener for the button so we can listen to this event and make whatever changes that we want
10
+
11
+ ## 0.48.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#193](https://github.com/opf/primer_view_components/pull/193) [`95cee35`](https://github.com/opf/primer_view_components/commit/95cee353d512e84823761faaba377dedf1c2cc38) Thanks [@HDinger](https://github.com/HDinger)! - Remove support for anchor strings in PageHeader breadcrumbs
16
+
17
+ ### Patch Changes
18
+
19
+ - [#192](https://github.com/opf/primer_view_components/pull/192) [`b57b85c`](https://github.com/opf/primer_view_components/commit/b57b85c39aa17c90fc19fc6902163e30a4c95906) Thanks [@HDinger](https://github.com/HDinger)! - Avoid overlapping tabs in PageHeader tabNav
20
+
3
21
  ## 0.47.1
4
22
 
5
23
  ### Patch Changes
@@ -1,6 +1,7 @@
1
1
  declare class ZenModeButtonElement extends HTMLElement {
2
2
  button: HTMLElement;
3
3
  inZenMode: boolean;
4
+ dispatchZenModeStatus(): void;
4
5
  private deactivateZenMode;
5
6
  private activateZenMode;
6
7
  performAction(): void;