@nexxtmove/ui 1.0.5 → 1.0.6
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/dist/index.d.ts +1 -0
- package/dist/index.js +5 -0
- package/package.json +1 -1
- package/src/components/Source/Source.vue +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -1897,6 +1897,7 @@ export declare const SOURCE_MAP: {
|
|
|
1897
1897
|
readonly realworks_agenda_api: "Realworks Agenda API";
|
|
1898
1898
|
readonly realworks_api: "Realworks API";
|
|
1899
1899
|
readonly kolibri: "Kolibri";
|
|
1900
|
+
readonly kolibri_agenda_api: "Kolibri Agenda API";
|
|
1900
1901
|
readonly kolibri_app_exchange: "Kolibri App Exchange";
|
|
1901
1902
|
readonly zapier: "Zapier";
|
|
1902
1903
|
readonly bricr: "Bricr";
|
package/dist/index.js
CHANGED
|
@@ -7040,6 +7040,7 @@ var ll = { render: cl }, ul = { class: "flex items-center justify-end self-stret
|
|
|
7040
7040
|
realworks_agenda_api: "Realworks Agenda API",
|
|
7041
7041
|
realworks_api: "Realworks API",
|
|
7042
7042
|
kolibri: "Kolibri",
|
|
7043
|
+
kolibri_agenda_api: "Kolibri Agenda API",
|
|
7043
7044
|
kolibri_app_exchange: "Kolibri App Exchange",
|
|
7044
7045
|
zapier: "Zapier",
|
|
7045
7046
|
bricr: "Bricr",
|
|
@@ -7059,6 +7060,10 @@ var ll = { render: cl }, ul = { class: "flex items-center justify-end self-stret
|
|
|
7059
7060
|
url: gl,
|
|
7060
7061
|
height: "h-6"
|
|
7061
7062
|
},
|
|
7063
|
+
kolibri_agenda_api: {
|
|
7064
|
+
url: gl,
|
|
7065
|
+
height: "h-6"
|
|
7066
|
+
},
|
|
7062
7067
|
kolibri_app_exchange: {
|
|
7063
7068
|
url: _l,
|
|
7064
7069
|
height: "h-6"
|
package/package.json
CHANGED
|
@@ -12,6 +12,7 @@ export const SOURCE_MAP = {
|
|
|
12
12
|
realworks_agenda_api: 'Realworks Agenda API',
|
|
13
13
|
realworks_api: 'Realworks API',
|
|
14
14
|
kolibri: 'Kolibri',
|
|
15
|
+
kolibri_agenda_api: 'Kolibri Agenda API',
|
|
15
16
|
kolibri_app_exchange: 'Kolibri App Exchange',
|
|
16
17
|
zapier: 'Zapier',
|
|
17
18
|
bricr: 'Bricr',
|
|
@@ -32,6 +33,7 @@ interface SourceImage {
|
|
|
32
33
|
const SOURCE_IMAGES: Partial<Record<keyof typeof SOURCE_MAP, SourceImage>> = {
|
|
33
34
|
bricr: { url: imgBricr, height: 'h-5' },
|
|
34
35
|
kolibri: { url: imgKolibri, height: 'h-6' },
|
|
36
|
+
kolibri_agenda_api: { url: imgKolibri, height: 'h-6' },
|
|
35
37
|
kolibri_app_exchange: { url: imgKolibriAppExchange, height: 'h-6' },
|
|
36
38
|
realworks: { url: imgRealworks, height: 'h-4' },
|
|
37
39
|
realworks_agenda_api: { url: imgRealworksAgendaApi, height: 'h-4' },
|