@supersoniks/concorde 1.1.21 → 1.1.23

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.
@@ -0,0 +1,4 @@
1
+ import * as mySonicToast from "./core/components/ui/toast/toast";
2
+ export declare const SonicToast: typeof mySonicToast.SonicToast;
3
+ import * as myModal from "./core/components/ui/modal/modal";
4
+ export declare const SonicModal: typeof myModal.Modal;
package/components.js ADDED
@@ -0,0 +1,12 @@
1
+ //
2
+ //
3
+ import * as mySonicToast from "./core/components/ui/toast/toast";
4
+ export const SonicToast = mySonicToast.SonicToast;
5
+ import * as myModal from "./core/components/ui/modal/modal";
6
+ export const SonicModal = myModal.Modal;
7
+ let win = window;
8
+ win["concorde-components"] = win["concorde-components"] || {};
9
+ win["concorde-components"] = {
10
+ SonicToast: SonicToast,
11
+ SonicModal: SonicModal,
12
+ };