@gandalan/weblibs 1.1.46 → 1.1.48
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.
- package/api/fluentApi.js +1 -1
- package/components/index.js +13 -0
- package/package.json +1 -1
package/api/fluentApi.js
CHANGED
|
@@ -202,7 +202,7 @@ export function api() {
|
|
|
202
202
|
},
|
|
203
203
|
|
|
204
204
|
async ensureBaseUrlIsSet() {
|
|
205
|
-
if (this.env &&
|
|
205
|
+
if (this.env && !this.baseUrl) {
|
|
206
206
|
const envInfo = await fetchEnv(this.env);
|
|
207
207
|
this.baseUrl = envInfo.idas;
|
|
208
208
|
this.authUrl = envInfo.idas;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import AddButton from "./AddButton.svelte";
|
|
2
|
+
import DataGrid from "./DataGrid.svelte";
|
|
3
|
+
import Dialog from "./Dialog.svelte";
|
|
4
|
+
import GanTable from "./GanTable.svelte";
|
|
5
|
+
import Datepicker from "./Datepicker.svelte";
|
|
6
|
+
import Inputbox from "./Inputbox.svelte";
|
|
7
|
+
import RemoveButton from "./RemoveButton.svelte";
|
|
8
|
+
import SaveButton from "./SaveButton.svelte";
|
|
9
|
+
|
|
10
|
+
export {
|
|
11
|
+
DataGrid, Datepicker, Inputbox, Dialog, GanTable,
|
|
12
|
+
AddButton, RemoveButton, SaveButton,
|
|
13
|
+
}
|