impaktapps-ui-builder 0.0.97-alpha.13 → 0.0.97-alpha.15

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.
@@ -374,7 +374,7 @@ const PageMasterUiSchema = (theme) => {
374
374
  elements: [
375
375
  {
376
376
  type: "Control",
377
- scope: "#/properties/label",
377
+ scope: "#/properties/popuplabel",
378
378
  options: {
379
379
  widget: "Box"
380
380
  },
@@ -465,7 +465,7 @@ const PageMasterUiSchema = (theme) => {
465
465
  elements: [
466
466
  {
467
467
  type: "Control",
468
- scope: "#/properties/label",
468
+ scope: "#/properties/popuplabel1",
469
469
  options: {
470
470
  widget: "Box"
471
471
  },
@@ -6616,7 +6616,7 @@ const componentBasicUiSchema = (theme) => {
6616
6616
  elements: [
6617
6617
  {
6618
6618
  type: "Control",
6619
- scope: "#/properties/label",
6619
+ scope: "#/properties/popuplabel",
6620
6620
  options: {
6621
6621
  widget: "Box"
6622
6622
  },
@@ -6707,7 +6707,7 @@ const componentBasicUiSchema = (theme) => {
6707
6707
  elements: [
6708
6708
  {
6709
6709
  type: "Control",
6710
- scope: "#/properties/label",
6710
+ scope: "#/properties/popuplabel1",
6711
6711
  options: {
6712
6712
  widget: "Box"
6713
6713
  },
@@ -7534,8 +7534,6 @@ const buildPropertiesSection = function(type) {
7534
7534
  getSelectField("graphType", "Graph Type"),
7535
7535
  getInputField("leftLabel", "Left Label"),
7536
7536
  getInputField("bottomLabel", "Bottom Label"),
7537
- getInputField("leftLabelMargin", "Left Label Margin"),
7538
- getInputField("leftLabelOffset", "Left Label Offset"),
7539
7537
  emptyBox$1("GraphEmpty1", { xs: 6, sm: 0, md: 0, lg: 0 }),
7540
7538
  getRadioInputField("legendHide", "Legend Hide", ["YES", "No"]),
7541
7539
  getInputField("yAxisValue", "Y-AxisValue"),
@@ -8591,7 +8589,7 @@ const EventUiSchema = (theme) => {
8591
8589
  elements: [
8592
8590
  {
8593
8591
  type: "Control",
8594
- scope: "#/properties/label",
8592
+ scope: "#/properties/popuplabel",
8595
8593
  options: {
8596
8594
  widget: "Box"
8597
8595
  },
@@ -10500,14 +10498,6 @@ const buildStackbarGraph = (config, componentScope) => {
10500
10498
  if (config.leftLabel) {
10501
10499
  barGraph.config.main.leftLabel = config.leftLabel;
10502
10500
  }
10503
- if (config.leftLabelMargin) {
10504
- barGraph.config.style.labelStyle.margin = {
10505
- left: config.leftLabelMargin
10506
- };
10507
- }
10508
- if (config.leftLabelOffset) {
10509
- barGraph.config.style.labelStyle.leftLabelOffset = config.leftLabelOffset;
10510
- }
10511
10501
  barGraph.scope = componentScope;
10512
10502
  return barGraph;
10513
10503
  };
@@ -11368,14 +11358,6 @@ const buildLineGraph = (config, componentScope) => {
11368
11358
  if (config.pieArcColors) {
11369
11359
  lineGraph.config.style.lineStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
11370
11360
  }
11371
- if (config.leftLabelMargin) {
11372
- lineGraph.config.style.labelStyle.margin = {
11373
- left: config.leftLabelMargin
11374
- };
11375
- }
11376
- if (config.leftLabelOffset) {
11377
- lineGraph.config.style.labelStyle.leftLabelOffset = config.leftLabelOffset;
11378
- }
11379
11361
  lineGraph.scope = componentScope;
11380
11362
  return lineGraph;
11381
11363
  };