oolib 2.215.2 → 2.215.4

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.
@@ -48,7 +48,7 @@ var EmptyStatesRenderer = function (_a) {
48
48
  searchListing: searchListing_svg_1.default,
49
49
  mailBoxImg: mailBoxImg_svg_1.default,
50
50
  searchDashBoardListing: searchDashBoardListing_svg_1.default,
51
- dashboardListing: dashboardListing_svg_1.default,
51
+ annoExplorerListing: dashboardListing_svg_1.default,
52
52
  };
53
53
  var localize = (0, utilsOolib_1.useLocale)();
54
54
  //basically image prop can be either the src string or an object with more properties
@@ -83,18 +83,18 @@ var getEmptyStatesConfig = function (_a) {
83
83
  title: "No Notifications Yet",
84
84
  subtitle: "All updates,notifications and alerts will be displayed here ",
85
85
  };
86
- case "dashboardListing":
86
+ case "annoExplorerListing":
87
87
  return {
88
88
  align: "center",
89
89
  image: {
90
- src: "dashboardListing",
90
+ src: "annoExplorerListing",
91
91
  style: {
92
92
  height: 80,
93
93
  opacity: 0.6,
94
94
  },
95
95
  },
96
- title: "No Data Added",
97
- subtitle: "Currently, no data is available. Start exploring insights once data is populated ",
96
+ title: "No Annotations Exist",
97
+ subtitle: "Start exploring Themes Explorer after you add at least a few annotations",
98
98
  };
99
99
  case "successFullyPublish":
100
100
  return {
@@ -446,7 +446,7 @@ var SpainFlag = function (props) {
446
446
  exports.SpainFlag = SpainFlag;
447
447
  var Stars = function (props) {
448
448
  return (react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 22 22", width: props.size || 30, height: props.size || 30, fill: "none" },
449
- react_1.default.createElement("path", { fill: "#000", d: "M17.027 11.35 12.19 9.562l-1.78-4.84a1.493 1.493 0 0 0-2.802 0l-1.793 4.84-4.84 1.78a1.492 1.492 0 0 0 0 2.802l4.84 1.793 1.782 4.839a1.493 1.493 0 0 0 2.8 0l1.793-4.84 4.84-1.78a1.492 1.492 0 0 0 0-2.802l-.004-.006Zm-5.68 3.296a.75.75 0 0 0-.444.444l-1.9 5.146-1.895-5.142a.75.75 0 0 0-.448-.448L1.518 12.75l5.142-1.896a.75.75 0 0 0 .448-.448l1.896-5.142 1.895 5.142a.75.75 0 0 0 .445.445l5.146 1.899-5.142 1.896ZM12.005 3a.75.75 0 0 1 .75-.75h1.5V.75a.75.75 0 1 1 1.5 0v1.5h1.5a.75.75 0 1 1 0 1.5h-1.5v1.5a.75.75 0 1 1-1.5 0v-1.5h-1.5a.75.75 0 0 1-.75-.75Zm9.75 4.5a.75.75 0 0 1-.75.75h-.75V9a.75.75 0 1 1-1.5 0v-.75h-.75a.75.75 0 1 1 0-1.5h.75V6a.75.75 0 1 1 1.5 0v.75h.75a.75.75 0 0 1 .75.75Z" })));
449
+ react_1.default.createElement("path", { fill: props.fill || "#000", d: "M17.027 11.35 12.19 9.562l-1.78-4.84a1.493 1.493 0 0 0-2.802 0l-1.793 4.84-4.84 1.78a1.492 1.492 0 0 0 0 2.802l4.84 1.793 1.782 4.839a1.493 1.493 0 0 0 2.8 0l1.793-4.84 4.84-1.78a1.492 1.492 0 0 0 0-2.802l-.004-.006Zm-5.68 3.296a.75.75 0 0 0-.444.444l-1.9 5.146-1.895-5.142a.75.75 0 0 0-.448-.448L1.518 12.75l5.142-1.896a.75.75 0 0 0 .448-.448l1.896-5.142 1.895 5.142a.75.75 0 0 0 .445.445l5.146 1.899-5.142 1.896ZM12.005 3a.75.75 0 0 1 .75-.75h1.5V.75a.75.75 0 1 1 1.5 0v1.5h1.5a.75.75 0 1 1 0 1.5h-1.5v1.5a.75.75 0 1 1-1.5 0v-1.5h-1.5a.75.75 0 0 1-.75-.75Zm9.75 4.5a.75.75 0 0 1-.75.75h-.75V9a.75.75 0 1 1-1.5 0v-.75h-.75a.75.75 0 1 1 0-1.5h.75V6a.75.75 0 1 1 1.5 0v.75h.75a.75.75 0 0 1 .75.75Z" })));
450
450
  };
451
451
  exports.Stars = Stars;
452
452
  var ArgentinaFlag = function (props) {
@@ -9,7 +9,7 @@ var emptyStatesConfig = [
9
9
  "singleCollectionsListing",
10
10
  "profileListing",
11
11
  "notificationEmpty",
12
- "dashboardListing",
12
+ "annoExplorerListing",
13
13
  "successFullyPublish",
14
14
  "draftsListing",
15
15
  "publishedListing",
@@ -27,7 +27,6 @@ var SelectDropdown = function (_a) {
27
27
  value: value,
28
28
  isTagsStyle: false,
29
29
  });
30
- console.log({ selectConfig: selectConfig, value: value });
31
30
  var showElem = function (elem) {
32
31
  if (selectConfig === "all")
33
32
  return true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oolib",
3
- "version": "2.215.2",
3
+ "version": "2.215.4",
4
4
  "description": " OKE Component Library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",