@xapps-platform/marketplace-ui 0.1.16 → 0.1.17
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/MarketplaceContext.d.ts.map +1 -1
- package/dist/httpMarketplaceClient.d.ts +25 -0
- package/dist/httpMarketplaceClient.d.ts.map +1 -0
- package/dist/i18n.d.ts.map +1 -1
- package/dist/index.css +2 -7
- package/dist/index.css.map +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +459 -89
- package/dist/index.js.map +4 -4
- package/dist/marketplace.css +9 -2
- package/dist/pages/CatalogPage.d.ts.map +1 -1
- package/dist/pages/MonetizationPage.d.ts.map +1 -1
- package/dist/pages/PublisherDetailPage.d.ts.map +1 -1
- package/dist/pages/RequestDetailPage.d.ts.map +1 -1
- package/dist/pages/RequestsPage.d.ts.map +1 -1
- package/dist/pages/XappDetailPage.d.ts.map +1 -1
- package/dist/utils/installationPolicy.d.ts +7 -0
- package/dist/utils/installationPolicy.d.ts.map +1 -0
- package/package.json +2 -2
package/dist/marketplace.css
CHANGED
|
@@ -18,8 +18,15 @@
|
|
|
18
18
|
--mx-radius-lg: 1rem;
|
|
19
19
|
--mx-radius-md: 0.75rem;
|
|
20
20
|
--mx-radius-sm: 0.5rem;
|
|
21
|
-
--mx-font-family: var(
|
|
22
|
-
|
|
21
|
+
--mx-font-family: var(
|
|
22
|
+
--xapps-font-family,
|
|
23
|
+
"Inter",
|
|
24
|
+
"Segoe UI",
|
|
25
|
+
system-ui,
|
|
26
|
+
-apple-system,
|
|
27
|
+
sans-serif
|
|
28
|
+
);
|
|
29
|
+
--mx-display-font: var(--xapps-display-font, var(--mx-font-family));
|
|
23
30
|
}
|
|
24
31
|
|
|
25
32
|
:root[data-xapps-theme-mode="dark"] {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CatalogPage.d.ts","sourceRoot":"","sources":["../../src/pages/CatalogPage.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CatalogPage.d.ts","sourceRoot":"","sources":["../../src/pages/CatalogPage.tsx"],"names":[],"mappings":"AAUA,OAAO,oBAAoB,CAAC;AA6E5B,wBAAgB,WAAW,4CAiiB1B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MonetizationPage.d.ts","sourceRoot":"","sources":["../../src/pages/MonetizationPage.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MonetizationPage.d.ts","sourceRoot":"","sources":["../../src/pages/MonetizationPage.tsx"],"names":[],"mappings":"AASA,OAAO,oBAAoB,CAAC;AAqG5B,wBAAgB,gBAAgB,4CAuoB/B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PublisherDetailPage.d.ts","sourceRoot":"","sources":["../../src/pages/PublisherDetailPage.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PublisherDetailPage.d.ts","sourceRoot":"","sources":["../../src/pages/PublisherDetailPage.tsx"],"names":[],"mappings":"AASA,OAAO,oBAAoB,CAAC;AAQ5B,wBAAgB,mBAAmB,4CAwQlC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RequestDetailPage.d.ts","sourceRoot":"","sources":["../../src/pages/RequestDetailPage.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RequestDetailPage.d.ts","sourceRoot":"","sources":["../../src/pages/RequestDetailPage.tsx"],"names":[],"mappings":"AAoBA,OAAO,oBAAoB,CAAC;AA2B5B,wBAAgB,iBAAiB,4CA0nChC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RequestsPage.d.ts","sourceRoot":"","sources":["../../src/pages/RequestsPage.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RequestsPage.d.ts","sourceRoot":"","sources":["../../src/pages/RequestsPage.tsx"],"names":[],"mappings":"AASA,OAAO,oBAAoB,CAAC;AAiC5B,wBAAgB,YAAY,4CAqa3B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"XappDetailPage.d.ts","sourceRoot":"","sources":["../../src/pages/XappDetailPage.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"XappDetailPage.d.ts","sourceRoot":"","sources":["../../src/pages/XappDetailPage.tsx"],"names":[],"mappings":"AAiCA,OAAO,oBAAoB,CAAC;AAsX5B,MAAM,CAAC,OAAO,UAAU,cAAc,4CAErC;AAED,OAAO,EAAE,cAAc,EAAE,CAAC;AAE1B,wBAAgB,aAAa,4CAE5B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { MarketplaceInstallationPolicy } from "../types";
|
|
2
|
+
export declare function shouldHideMarketplaceVersions(input: {
|
|
3
|
+
installationPolicy?: MarketplaceInstallationPolicy | null;
|
|
4
|
+
installationPolicyResolved?: boolean;
|
|
5
|
+
subjectId?: string | null;
|
|
6
|
+
}): boolean;
|
|
7
|
+
//# sourceMappingURL=installationPolicy.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"installationPolicy.d.ts","sourceRoot":"","sources":["../../src/utils/installationPolicy.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,UAAU,CAAC;AAE9D,wBAAgB,6BAA6B,CAAC,KAAK,EAAE;IACnD,kBAAkB,CAAC,EAAE,6BAA6B,GAAG,IAAI,CAAC;IAC1D,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3B,GAAG,OAAO,CAOV"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xapps-platform/marketplace-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Daniel Vladescu <daniel.vladescu@gmail.com>",
|
|
6
6
|
"type": "module",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"smoke": "npm run build && node examples/smoke/smoke.mjs"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@xapps-platform/browser-host": "^0.1.
|
|
34
|
+
"@xapps-platform/browser-host": "^0.1.14",
|
|
35
35
|
"@xapps-platform/platform-i18n": "^0.1.3"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|