@supersoniks/concorde 1.1.13 → 1.1.14

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.
@@ -59,23 +59,22 @@ let Submit = class Submit extends Subscriber(LitElement) {
59
59
  this.publisher.disabled = true;
60
60
  let method = ((_a = this.getAttribute("method")) === null || _a === void 0 ? void 0 : _a.toLocaleLowerCase()) || "post";
61
61
  let postData = PublisherManager.getInstance().get(this.getAncestorAttributeValue("formDataProvider")).get();
62
- let headersData = PublisherManager.getInstance().get(this.getAncestorAttributeValue("headersDataProvider")).get();
63
62
  let result = null;
64
63
  let dataProvider = this.getAncestorAttributeValue("dataProvider");
65
64
  let endPoint = this.endPoint || dataProvider;
66
65
  Loader.show();
67
66
  switch (method) {
68
67
  case "put":
69
- result = yield ((_b = this.api) === null || _b === void 0 ? void 0 : _b.put(endPoint, postData, headersData));
68
+ result = yield ((_b = this.api) === null || _b === void 0 ? void 0 : _b.put(endPoint, postData));
70
69
  break;
71
70
  case "delete":
72
- result = yield ((_c = this.api) === null || _c === void 0 ? void 0 : _c.delete(endPoint, postData, headersData));
71
+ result = yield ((_c = this.api) === null || _c === void 0 ? void 0 : _c.delete(endPoint, postData));
73
72
  break;
74
73
  case "get":
75
74
  result = yield ((_d = this.api) === null || _d === void 0 ? void 0 : _d.get(endPoint));
76
75
  break;
77
76
  default:
78
- result = yield ((_e = this.api) === null || _e === void 0 ? void 0 : _e.post(endPoint, postData, headersData));
77
+ result = yield ((_e = this.api) === null || _e === void 0 ? void 0 : _e.post(endPoint, postData));
79
78
  break;
80
79
  }
81
80
  Loader.hide();
@@ -1,5 +1,5 @@
1
1
  import { LitElement } from "lit";
2
- import './legend-description.ts';
2
+ import "@supersoniks/concorde/core/components/ui/form/fieldset/legend-description";
3
3
  export declare class Legend extends LitElement {
4
4
  static styles: import("lit").CSSResult[];
5
5
  description: string;
@@ -6,7 +6,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
6
6
  };
7
7
  import { html, LitElement, css } from "lit";
8
8
  import { customElement, property } from "lit/decorators.js";
9
- import './legend-description.ts';
9
+ import "@supersoniks/concorde/core/components/ui/form/fieldset/legend-description";
10
10
  let Legend = class Legend extends LitElement {
11
11
  constructor() {
12
12
  super(...arguments);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supersoniks/concorde",
3
- "version": "1.1.13",
3
+ "version": "1.1.14",
4
4
  "customElements": "custom-elements.json",
5
5
  "license": "MIT",
6
6
  "publishConfig": {