@evercam/ui 1.0.0-preview-labs-197-ss-status-d62887ecd → 1.0.0-preview-addingGateReportAutomation-62c375ada

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.
@@ -453,11 +453,6 @@
453
453
  "description": "",
454
454
  "default": false
455
455
  },
456
- "ETimeline/axis-height": {
457
- "type": "number",
458
- "description": "",
459
- "default": 22
460
- },
461
456
  "EVideoEmbed/video-url": {
462
457
  "type": "string",
463
458
  "description": ""
@@ -1305,7 +1300,7 @@
1305
1300
  "ESelect/label": {
1306
1301
  "type": "string",
1307
1302
  "description": "",
1308
- "default": "Select an option"
1303
+ "default": null
1309
1304
  },
1310
1305
  "ESelect/disabled": {
1311
1306
  "type": "boolean",
package/dist/index.mjs CHANGED
@@ -12842,10 +12842,6 @@ const U2 = G2.exports, Z2 = F.extend({
12842
12842
  highlightMilestoneOnMatchTimestamp: {
12843
12843
  type: Boolean,
12844
12844
  default: !1
12845
- },
12846
- axisHeight: {
12847
- type: Number,
12848
- default: 22
12849
12845
  }
12850
12846
  },
12851
12847
  data() {
@@ -12855,6 +12851,7 @@ const U2 = G2.exports, Z2 = F.extend({
12855
12851
  timeline: null,
12856
12852
  svgElement: null,
12857
12853
  svg: null,
12854
+ axisHeight: 22,
12858
12855
  isHoveringEvent: !1,
12859
12856
  isHoveringGroupedEvents: !1,
12860
12857
  isAnimating: !1,
@@ -16862,7 +16859,7 @@ const Su = wu.exports, Tu = F.extend({
16862
16859
  },
16863
16860
  label: {
16864
16861
  type: String,
16865
- default: "Select an option"
16862
+ default: null
16866
16863
  },
16867
16864
  withCheckbox: {
16868
16865
  type: Boolean,
@@ -16889,7 +16886,7 @@ const Su = wu.exports, Tu = F.extend({
16889
16886
  },
16890
16887
  computed: {
16891
16888
  customLabel() {
16892
- return this.multiple && Array.isArray(this.value) && this.value.length === 0 || !this.multiple && (this.value === null || this.value === void 0) ? this.label : this.multiple && this.customSelectionLabel.length > 0 ? this.customSelectionLabel : this.localLabel || this.label;
16889
+ return this.multiple && Array.isArray(this.value) && this.value.length === 0 ? this.searchPlaceholder : this.multiple && this.customSelectionLabel.length > 0 ? this.customSelectionLabel : this.localLabel || this.label;
16893
16890
  },
16894
16891
  filteredOptions() {
16895
16892
  if (!this.searchQuery)
@@ -16933,19 +16930,23 @@ const Su = wu.exports, Tu = F.extend({
16933
16930
  var ku = function() {
16934
16931
  var e = this, r = e._self._c;
16935
16932
  return r("EPopover", { directives: [{ name: "resize-observer", rawName: "v-resize-observer", value: e.handleMenuStyle, expression: "handleMenuStyle" }], attrs: { dark: e.dark }, scopedSlots: e._u([{ key: "trigger", fn: function({ isOpen: n, toggle: s }) {
16936
- return [e._t("activator", function() {
16937
- return [r("div", { staticClass: "e-select__trigger-button e-relative e-w-full e-rounded e-border e-border-solid e-py-2 e-pl-3 e-leading-5 e-cursor-pointer e-max-h-[40px] e-flex e-items-center e-bg-gray-900", class: e.radioItemClasses, attrs: { id: `e-select-trigger-${Date.now()}`, "data-test-id": `select-trigger-${Date.now()}`, role: "button" }, on: { click: (i) => e.handleTriggerClick(i, s) } }, [n && e.searchable ? r("div", { staticClass: "e-select__search-input-wrapper e-flex e-items-center e-gap-2 e-w-full e-mr-10" }, [r("input", { directives: [{ name: "model", rawName: "v-model", value: e.searchQuery, expression: "searchQuery" }], ref: "searchInput", staticClass: "e-select__search-input e-w-full e-h-6 e-bg-transparent placeholder:e-text-sm e-text-sm e-outline-none e-border-none", class: {
16933
+ return [e.label ? r("label", { staticClass: "e-select-field__label" }, [e._v(" " + e._s(e.label) + " ")]) : e._e(), e._t("activator", function() {
16934
+ return [r("div", { staticClass: "e-select__trigger-button e-relative e-w-full e-rounded e-border e-border-solid e-py-2 e-pl-3 e-leading-5 e-cursor-pointer e-min-h-[40px] e-flex e-items-center e-bg-gray-900", class: [
16935
+ e.radioItemClasses,
16936
+ e.dark ? "_dark" : "_light",
16937
+ { "e-select--open": n }
16938
+ ], attrs: { id: `e-select-trigger-${Date.now()}`, "data-test-id": `select-trigger-${Date.now()}`, role: "button" }, on: { click: (i) => e.handleTriggerClick(i, s) } }, [n && e.searchable ? r("div", { staticClass: "e-select__search-input-wrapper e-flex e-items-center e-gap-2 e-w-full e-mr-10" }, [r("input", { directives: [{ name: "model", rawName: "v-model", value: e.searchQuery, expression: "searchQuery" }], ref: "searchInput", staticClass: "e-select__search-input e-w-full e-h-6 e-bg-transparent placeholder:e-text-sm e-text-sm e-outline-none e-border-none", class: {
16938
16939
  "e-text-white placeholder:e-text-gray-400": e.dark,
16939
16940
  "e-text-gray-700 placeholder:e-text-gray-500": !e.dark
16940
16941
  }, attrs: { placeholder: e.searchPlaceholder, type: "text" }, domProps: { value: e.searchQuery }, on: { click: function(i) {
16941
16942
  i.stopPropagation();
16942
16943
  }, input: function(i) {
16943
16944
  i.target.composing || (e.searchQuery = i.target.value);
16944
- } } })]) : [e.multiple && e.selectedOption.length === 0 || !e.selectedOption ? e._t("label", function() {
16945
- return [e.customLabel && !e.searchable ? r("span", { staticClass: "e-select-label e-text-sm" }, [e._v(e._s(e.customLabel))]) : r("span", { staticClass: "e-select-label e-text-sm e-text-gray-400" }, [e._v(e._s(e.searchPlaceholder))])];
16946
- }) : e._t("selection", function() {
16947
- return [r("span", { staticClass: "e-capitalize e-select__trigger-button-text e-truncate" }, [e._v(" " + e._s(e.customLabel) + " ")])];
16948
- })], e.showSearchClearButton ? r("button", { staticClass: "e-select__clean-search-button e-flex e-bg-transparent e-z-[2] e-absolute e-right-10 e-cursor-pointer e-border-none e-items-center e-justify-center e-w-5 e-h-5", on: { click: function(i) {
16945
+ } } })]) : [e._t("selection", function() {
16946
+ return [r("span", { staticClass: "e-capitalize e-select__trigger-button-text e-truncate", class: {
16947
+ "e-text-gray-400": e.multiple && e.selectedOption.length === 0
16948
+ } }, [e._v(" " + e._s(e.customLabel) + " ")])];
16949
+ }, { isEmpty: e.multiple ? e.selectedOption.length === 0 : !e.selectedOption, value: e.value })], e.showSearchClearButton ? r("button", { staticClass: "e-select__clean-search-button e-flex e-bg-transparent e-z-[2] e-absolute e-right-10 e-cursor-pointer e-border-none e-items-center e-justify-center e-w-5 e-h-5", on: { click: function(i) {
16949
16950
  return i.stopPropagation(), e.clearSearch.apply(null, arguments);
16950
16951
  } } }, [r("EIcon", { attrs: { color: "e-text-gray-400 hover:e-text-[#1976d2]", icon: "far fa-xmark", size: "lg" } })], 1) : e._e(), e._t("pre-append-icon", function() {
16951
16952
  return [r("span", { staticClass: "e-select__trigger-button-icon e-absolute e-inset-y-0 e-right-0 e-flex e-items-center e-justify-end e-px-3 e-pr-4 e-bg-transparent e-border-transparent e-text-gray-400" }, [r("EIcon", { attrs: { icon: n ? "fas fa-sort-up e-mt-2.5" : "fas fa-sort-down e-mb-1.5" } })], 1)];