@supersoniks/concorde 1.1.17 → 1.1.19

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.
@@ -57,13 +57,18 @@ declare const Fetcher: <T extends Constructor<SubscriberInterface>>(superClass:
57
57
  dataProvider: string | null;
58
58
  noShadowDom: string | null;
59
59
  debug: HTMLElement | null;
60
- defferedDebug: boolean | null;
60
+ defferedDebug: boolean | null; /**
61
+ * isLoading vaut true pendant le chargement des données
62
+ */
61
63
  dispatchEvent(event: Event): void;
62
64
  setAttribute(name: string, value: string): void;
63
65
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
64
66
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
65
67
  removeAttribute(name: string): void;
66
- initPublisher(): void;
68
+ initPublisher(): void; /**
69
+ * On peut désactiver le fetch programmatiquement via cette propriété.
70
+ * Cela est le cas pour le composant sonic-list qui ne fetch que si l'attribut fetch est renseigné
71
+ */
67
72
  getApiConfiguration(): import("@supersoniks/concorde/core/utils/api").APIConfiguration;
68
73
  requestUpdate(): void;
69
74
  getAttribute(name: string): string;
@@ -1,4 +1,5 @@
1
1
  import { LitElement } from "lit";
2
+ import "@supersoniks/concorde/core/components/ui/icon/icon";
2
3
  import { APIConfiguration } from "@supersoniks/concorde/core/utils/api";
3
4
  declare type Constructor<T> = new (...args: any[]) => T;
4
5
  export interface SubscriberInterface {
@@ -15,6 +15,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
15
15
  };
16
16
  import { PublisherManager } from "@supersoniks/concorde/core/utils/PublisherProxy.mjs";
17
17
  import { property } from "lit/decorators.js";
18
+ import "@supersoniks/concorde/core/components/ui/icon/icon";
18
19
  import API from "@supersoniks/concorde/core/utils/api";
19
20
  import HTML from "@supersoniks/concorde/core/utils/HTML";
20
21
  import DataBindObserver from "@supersoniks/concorde/core/utils/DataBindObserver";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supersoniks/concorde",
3
- "version": "1.1.17",
3
+ "version": "1.1.19",
4
4
  "customElements": "custom-elements.json",
5
5
  "license": "MIT",
6
6
  "publishConfig": {