@empathyco/x-components 3.0.0-alpha.131 → 3.0.0-alpha.132

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/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.0.0-alpha.132](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.131...@empathyco/x-components@3.0.0-alpha.132) (2022-07-14)
7
+
8
+ ### Features
9
+
10
+ - **history-queries:** add `UserClickedDismissDisableHistoryQueries` event
11
+ ([ea0bddc](https://github.com/empathyco/x/commit/ea0bddce87ec1e87b753bb39863cbee903fb9eed)),
12
+ closes [EX-6682](https://searchbroker.atlassian.net/browse/EX-6682)
13
+
14
+ # Change Log
15
+
16
+ All notable changes to this project will be documented in this file. See
17
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
18
+
6
19
  ## [3.0.0-alpha.131](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.130...@empathyco/x-components@3.0.0-alpha.131) (2022-07-13)
7
20
 
8
21
  ### Features
@@ -22,6 +22,7 @@ export interface HistoryQueriesXEvents
22
22
  | [SessionHistoryQueriesChanged](./x-components.historyqueriesxevents.sessionhistoryquerieschanged.md) | HistoryQuery\[\] | The queries made in the current session have changed Payload: The session history queries. |
23
23
  | [UserClickedConfirmDisableHistoryQueries](./x-components.historyqueriesxevents.userclickedconfirmdisablehistoryqueries.md) | void | The user has clicked the confirm button to disable the history queries. Payload: None. |
24
24
  | [UserClickedDisableHistoryQueries](./x-components.historyqueriesxevents.userclickeddisablehistoryqueries.md) | void | The user has clicked a control to disable the history queries. Payload: None. |
25
+ | [UserClickedDismissDisableHistoryQueries](./x-components.historyqueriesxevents.userclickeddismissdisablehistoryqueries.md) | void | The user has clicked the dismiss button to keep enabled the history queries. Payload: None. |
25
26
  | [UserClickedEnableHistoryQueries](./x-components.historyqueriesxevents.userclickedenablehistoryqueries.md) | void | The user has clicked a control to enable the history queries. Payload: None. |
26
27
  | [UserPressedClearHistoryQueries](./x-components.historyqueriesxevents.userpressedclearhistoryqueries.md) | void | The user pressed the button for clearing all the history queries. Payload: none. |
27
28
  | [UserPressedRemoveHistoryQuery](./x-components.historyqueriesxevents.userpressedremovehistoryquery.md) | HistoryQuery | The user pressed the button for removing a single [history query](./x-types.historyquery.md)<!-- -->. Payload: The <code>HistoryQuery</code> to remove. |
@@ -0,0 +1,13 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@empathyco/x-components](./x-components.md) &gt; [HistoryQueriesXEvents](./x-components.historyqueriesxevents.md) &gt; [UserClickedDismissDisableHistoryQueries](./x-components.historyqueriesxevents.userclickeddismissdisablehistoryqueries.md)
4
+
5
+ ## HistoryQueriesXEvents.UserClickedDismissDisableHistoryQueries property
6
+
7
+ The user has clicked the dismiss button to keep enabled the history queries. Payload: None.
8
+
9
+ <b>Signature:</b>
10
+
11
+ ```typescript
12
+ UserClickedDismissDisableHistoryQueries: void;
13
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empathyco/x-components",
3
- "version": "3.0.0-alpha.131",
3
+ "version": "3.0.0-alpha.132",
4
4
  "description": "Empathy X Components",
5
5
  "author": "Empathy Systems Corporation S.L.",
6
6
  "license": "Apache-2.0",
@@ -125,5 +125,5 @@
125
125
  "access": "public",
126
126
  "directory": "dist"
127
127
  },
128
- "gitHead": "6f0c98345eddb2502b7b841c669868a09a4f7762"
128
+ "gitHead": "46a524e6de06d356e8a0a6ab85deda0ee318b8b1"
129
129
  }
@@ -20029,6 +20029,32 @@
20029
20029
  "endIndex": 2
20030
20030
  }
20031
20031
  },
20032
+ {
20033
+ "kind": "PropertySignature",
20034
+ "canonicalReference": "@empathyco/x-components!HistoryQueriesXEvents#UserClickedDismissDisableHistoryQueries:member",
20035
+ "docComment": "/**\n * The user has clicked the dismiss button to keep enabled the history queries. Payload: None.\n */\n",
20036
+ "excerptTokens": [
20037
+ {
20038
+ "kind": "Content",
20039
+ "text": "UserClickedDismissDisableHistoryQueries: "
20040
+ },
20041
+ {
20042
+ "kind": "Content",
20043
+ "text": "void"
20044
+ },
20045
+ {
20046
+ "kind": "Content",
20047
+ "text": ";"
20048
+ }
20049
+ ],
20050
+ "isOptional": false,
20051
+ "releaseTag": "Public",
20052
+ "name": "UserClickedDismissDisableHistoryQueries",
20053
+ "propertyTypeTokenRange": {
20054
+ "startIndex": 1,
20055
+ "endIndex": 2
20056
+ }
20057
+ },
20032
20058
  {
20033
20059
  "kind": "PropertySignature",
20034
20060
  "canonicalReference": "@empathyco/x-components!HistoryQueriesXEvents#UserClickedEnableHistoryQueries:member",
@@ -1960,6 +1960,7 @@ export interface HistoryQueriesXEvents {
1960
1960
  SessionHistoryQueriesChanged: HistoryQuery_2[];
1961
1961
  UserClickedConfirmDisableHistoryQueries: void;
1962
1962
  UserClickedDisableHistoryQueries: void;
1963
+ UserClickedDismissDisableHistoryQueries: void;
1963
1964
  UserClickedEnableHistoryQueries: void;
1964
1965
  UserPressedClearHistoryQueries: void;
1965
1966
  UserPressedRemoveHistoryQuery: HistoryQuery_2;
@@ -57,5 +57,10 @@ export interface HistoryQueriesXEvents {
57
57
  * Payload: None.
58
58
  */
59
59
  UserClickedConfirmDisableHistoryQueries: void;
60
+ /**
61
+ * The user has clicked the dismiss button to keep enabled the history queries.
62
+ * Payload: None.
63
+ */
64
+ UserClickedDismissDisableHistoryQueries: void;
60
65
  }
61
66
  //# sourceMappingURL=events.types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"events.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/history-queries/events.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAElD;;;;;GAKG;AACH,MAAM,WAAW,qBAAqB;IACpC;;;OAGG;IACH,uBAAuB,EAAE,YAAY,EAAE,CAAC;IACxC;;;OAGG;IACH,0BAA0B,EAAE,MAAM,CAAC;IACnC;;;OAGG;IACH,+BAA+B,EAAE,MAAM,CAAC;IACxC;;;OAGG;IACH,4BAA4B,EAAE,YAAY,EAAE,CAAC;IAC7C;;;OAGG;IACH,8BAA8B,EAAE,IAAI,CAAC;IACrC;;;;OAIG;IACH,6BAA6B,EAAE,YAAY,CAAC;IAC5C;;;OAGG;IACH,yBAAyB,EAAE,YAAY,CAAC;IACxC;;;OAGG;IACH,+BAA+B,EAAE,IAAI,CAAC;IACtC;;;OAGG;IACH,gCAAgC,EAAE,IAAI,CAAC;IACvC;;;OAGG;IACH,uCAAuC,EAAE,IAAI,CAAC;CAC/C"}
1
+ {"version":3,"file":"events.types.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/history-queries/events.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAElD;;;;;GAKG;AACH,MAAM,WAAW,qBAAqB;IACpC;;;OAGG;IACH,uBAAuB,EAAE,YAAY,EAAE,CAAC;IACxC;;;OAGG;IACH,0BAA0B,EAAE,MAAM,CAAC;IACnC;;;OAGG;IACH,+BAA+B,EAAE,MAAM,CAAC;IACxC;;;OAGG;IACH,4BAA4B,EAAE,YAAY,EAAE,CAAC;IAC7C;;;OAGG;IACH,8BAA8B,EAAE,IAAI,CAAC;IACrC;;;;OAIG;IACH,6BAA6B,EAAE,YAAY,CAAC;IAC5C;;;OAGG;IACH,yBAAyB,EAAE,YAAY,CAAC;IACxC;;;OAGG;IACH,+BAA+B,EAAE,IAAI,CAAC;IACtC;;;OAGG;IACH,gCAAgC,EAAE,IAAI,CAAC;IACvC;;;OAGG;IACH,uCAAuC,EAAE,IAAI,CAAC;IAC9C;;;OAGG;IACH,uCAAuC,EAAE,IAAI,CAAC;CAC/C"}